branch_name
stringclasses
149 values
text
stringlengths
23
89.3M
directory_id
stringlengths
40
40
languages
listlengths
1
19
num_files
int64
1
11.8k
repo_language
stringclasses
38 values
repo_name
stringlengths
6
114
revision_id
stringlengths
40
40
snapshot_id
stringlengths
40
40
refs/heads/master
<file_sep>import cv2 import mediapipe as mp import time mp_draw = mp.solutions.drawing_utils mp_pose = mp.solutions.pose pose = mp_pose.Pose() video = cv2.VideoCapture('Pose_videos/pexels-kampus-production-8636818.mp4') prev_time = 0 while True: success, img = video.read() rgb_img = cv2.cvtColor(img, cv2.COLOR_BGR2RGB) results = pose.process(rgb_img) if results.pose_landmarks: mp_draw.draw_landmarks(img, results.pose_landmarks, mp_pose.POSE_CONNECTIONS) for id, landmark in enumerate(results.pose_landmarks.landmark): height, width, channel = img.shape cx, cy = int(landmark.x * width), int(landmark.y * height) cv2.circle(img, (cx, cy), 10, (255, 0, 0)) curr_time = time.time() fps = 1/(curr_time - prev_time) prev_time = curr_time cv2.putText(img, str(int(fps)), (70, 50), cv2.FONT_HERSHEY_PLAIN, 3, (255, 0, 255), 3) cv2.imshow("Image", img) cv2.waitKey(1) <file_sep>import cv2 import mediapipe as mp import numpy as np import time class pose_detector(): def __init__(self, mode = False, max_hands = 2, detection_conf = 0.5, track_conf = 0.5): # Do i need self variables? -- Check for static self.mp_draw = mp.solutions.drawing_utils self.mp_pose = mp.solutions.pose self.pose = self.mp_pose.Pose() self.prev_time = 0 def find_lms(self, img, draw = True, lm_id = None): rgb_img = cv2.cvtColor(img, cv2.COLOR_BGR2RGB) results = self.pose.process(rgb_img) lm_list = [] if results.pose_landmarks: self.mp_draw.draw_landmarks(img, results.pose_landmarks, self.mp_pose.POSE_CONNECTIONS) for id, landmark in enumerate(results.pose_landmarks.landmark): height, width, channel = img.shape cx, cy = int(landmark.x * width), int(landmark.y * height) lm_list.append([id, cx, cy]) if draw: cv2.circle(img, (cx, cy), 10, (255, 0, 0)) if lm_id != None: print(lm_list[lm_id]) return img, lm_list def display_img(self, img, fps = True): if fps: curr_time = time.time() fps = 1/(curr_time - self.prev_time) self.prev_time = curr_time cv2.putText( img, text = str(int(fps)), org = (10, 70), fontFace = cv2.FONT_HERSHEY_COMPLEX, fontScale = 3, color = (150, 150, 150), thickness = 3) cv2.imshow("Image", img) cv2.waitKey(1) def main(): detector = pose_detector() cap = cv2.VideoCapture('pose_tracking/Pose_videos/pexels-rodnae-productions-7187087.mp4') # Check for error while True: success, img = cap.read() img, lm_list = detector.find_lms(img, lm_id=4) detector.display_img(img) if __name__ == '__main__': main() <file_sep>import cv2 from pose_tracking_utils import pose_detector detector = pose_detector() cap = cv2.VideoCapture('pose_tracking/Pose_videos/pexels-rodnae-productions-7187087.mp4') # Check for error while True: success, img = cap.read() img, lm_list = detector.find_lms(img, lm_id=4) detector.display_img(img) <file_sep># Pose_tracking Pose tracking using cv2 and mediapipe
e0e741b758a3cf330b8e7ecaa655f3b66bf67772
[ "Markdown", "Python" ]
4
Python
kaustubh-karthik/Pose_tracking
6494f9112f6f5908723a1e11c243120f9f6be8f3
cca74e9fb2f4e6cad45905c9d9d2d54a69473f2a
refs/heads/main
<file_sep>SVN-Util ======== [![Issues](http://img.shields.io/github/issues/macmade/SVN-Util.svg?style=flat)](https://github.com/macmade/SVN-Util/issues) ![Status](https://img.shields.io/badge/status-inactive-lightgray.svg?style=flat) ![License](https://img.shields.io/badge/license-bsd-brightgreen.svg?style=flat) [![Contact](https://img.shields.io/badge/contact-@macmade-blue.svg?style=flat)](https://twitter.com/macmade) [![Donate-Patreon](https://img.shields.io/badge/donate-patreon-yellow.svg?style=flat)](https://patreon.com/macmade) [![Donate-Gratipay](https://img.shields.io/badge/donate-gratipay-yellow.svg?style=flat)](https://www.gratipay.com/macmade) [![Donate-Paypal](https://img.shields.io/badge/donate-paypal-yellow.svg?style=flat)](https://paypal.me/xslabs) About ----- SVN-Util is a small but useful shell script to simplify some operations on SVN working-copies. Documentation ------------- ### 1. Features #### 1.1. Automatic SVN keywords SVN-Util can be used to automatically set the «svn:keywords» property on all regular files of a working-copy. The `svn:keywords` property is used to automatically replace some keywords in your files. For instance, the `$Id$` keyword that is automatically expanded with the commit's date and author, revision number, etc. With Subversion, you need to set the list of available keywords on all files. SVN-Util can do this automatically for all the files in a working-copy. To do this, simply invoke the script with the `-k` or `--keywords` command: svn-util -k ~/myProject #### 1.2. SVN removal Subversion stores informations about a working-copy in hidden directories named `.svn`. Such a directory is present in every directory of a working-copy. SVN-Util can automatically delete all that `.svn` directories in a working-copy, making it a standard, unversionned directory. This can be useful for instance if you want to copy a working-copy over FTP, or create an archive. To do this, simply invoke the script with the `-d` or `--delete` command: svn-util -d ~/myProject #### 1.3. Mac OS X cleanup Mac OS X stores the Finder view's settings per directory in hidden files named `.DS_Store`. When manipulating files from the Finder, those files are automatically created in the directories you are working in. It can be very embarrassing when using a SVN working-copy, as you will see all that `.DS_Store` files reported as unversionned files. SVN-Util can clean all the `.DS_Store` files in a working-copy. To do this, simply invoke the script with the `-c` or `--clean` command: svn-util -c ~/myProject #### 1.4. Automatic SVN add SVN-Util can be used to automatically mark all unversionned files present in working-copy, so they will be added to the repository with the next commit. To do this, simply invoke the script with the `-a` or `--add` command: svn-util -a ~/myProject ### 2. Usage The script has to be invoked from the command line. It takes two arguments: a command name and the path to a SVN working-copy. Please refer to the features list to learn more about the available commands. For instance: bash svn-util.sh -k ~/myProject Note that you can also make the SVN-Util script available like standard Unix commands. Simply copy it in a directory that's included in your executable path (like `/usr/local/bin/`), and make sure the executable flag is set. For instance: sudo cp svn-util.sh /usr/local/bin/svn-util sudo chmod 755 /usr/local/bin/svn-util You'll then be able to call the script as a normal executable: svn-util -k ~/myProject License ------- SVN-Util is released under the terms of the BSD license. Repository Infos ---------------- Owner: <NAME> - XS-Labs Web: www.xs-labs.com Blog: www.noxeos.com Twitter: @macmade GitHub: github.com/macmade LinkedIn: ch.linkedin.com/in/macmade/ StackOverflow: stackoverflow.com/users/182676/macmade <file_sep>#!/bin/bash ################################################################################ # Copyright (c) 2010, <NAME> - www.xs-labs.com # # All rights reserved. # # # # Redistribution and use in source and binary forms, with or without # # modification, are permitted provided that the following conditions are met: # # # # - Redistributions of source code must retain the above copyright notice, # # this list of conditions and the following disclaimer. # # - Redistributions in binary form must reproduce the above copyright # # notice, this list of conditions and the following disclaimer in the # # documentation and/or other materials provided with the distribution. # # - Neither the name of '<NAME>' nor the names of its # # contributors may be used to endorse or promote products derived from # # this software without specific prior written permission. # # # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" # # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE # # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR # # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF # # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS # # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN # # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) # # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE # # POSSIBILITY OF SUCH DAMAGE. # ################################################################################ # $Id$ SvnUtil_Usage() { echo '' echo 'Usage: '$1' command working-copy' echo '' echo 'Commands:' echo ' ' echo ' -k / --auto-keywords' echo ' Sets the svn:keywords property to all the regular files of the working-copy.' echo ' ' echo ' -d / --delete' echo ' Deletes the .svn directories, making the working-copy an unversioned directory.' echo ' ' echo ' -c / --clean' echo ' Cleans-up the working-copy by removing Mac OS X .DS_Store files.' echo ' ' echo ' -a / --add' echo ' Adds every unversioned files in the working-copy.' echo '' } SvnUtil_AutoKeywords() { for subFile in "$1"/*; do if [ -d "$subFile" ]; then SvnUtil_AutoKeywords "$subFile" elif [ -f "$subFile" ]; then svn propset svn:keywords "Date Revision Author HeadURL Id" "$subFile" fi done } SvnUtil_Delete() { if [ -d "$1/.svn" ]; then echo "Deleting $1/.svn" rm -rf "$1/.svn" fi for subFile in "$1"/*; do if [ -d "$subFile" ]; then SvnUtil_Delete "$subFile" fi done } SvnUtil_Clean() { if [ -f "$1/.DS_Store" ]; then echo "Deleting $1/.DS_Store" rm -f "$1/.DS_Store" fi for subFile in "$1"/*; do if [ -d "$subFile" ]; then SvnUtil_Clean "$subFile" fi done } SvnUtil_Add() { local svnStatus=$(svn status "$1") local add=0 for svnFile in $svnStatus; do if [ $add -eq 1 ]; then svn add "$svnFile" fi if [ "$svnFile" == "?" ]; then add=1 else add=0 fi done } if [ $# -ne 2 ]; then SvnUtil_Usage $0 elif [ ! -d "$2" ]; then echo 'Error: the specified directory does not exist' elif [ ! -d "$2/.svn" ]; then echo 'Error: the specified directory does not seem to be a SVN working copy' elif [ $1 == '-k' ] || [ $1 == '--auto-keywords' ]; then SvnUtil_AutoKeywords $2 elif [ $1 == '-d' ] || [ $1 == '--delete' ]; then SvnUtil_Delete $2 elif [ $1 == '-c' ] || [ $1 == '--clean' ]; then SvnUtil_Clean $2 elif [ $1 == '-a' ] || [ $1 == '--add' ]; then SvnUtil_Add $2 else SvnUtil_Usage $0 fi
6298d9bfb37f29743ccaec9a3e318159e9428046
[ "Markdown", "Shell" ]
2
Markdown
macmade/SVN-Util
29606477bac83490de2856ed15cbc87f9671c51e
7e104a38d3d2363d11ba6e3ecf6dc8c922e31f29
refs/heads/master
<repo_name>alesage/py-retrosheet<file_sep>/scripts/config.ini [database] engine = mysql host = localhost database = retrosheet schema = retrosheet user = user password = <PASSWORD> [download] directory = files num_threads = 20 [processing] num_threads = 20 [chadwick] directory = /usr/local/bin/ # Don't change this unless you know what you're doing [retrosheet] url = http://www.retrosheet.org/game.htm [debug] verbose = True <file_sep>/scripts/download.py import urllib import os import ConfigParser import threading import Queue import zipfile import re import getopt import sys class Fetcher(threading.Thread): def __init__(self, queue, path, options): threading.Thread.__init__(self) self.queue = queue self.path = path self.options = options def run(self): while 1: try: url = self.queue.get_nowait() except Queue.Empty: break filename = os.path.basename(url) if(self.options['verbose']): print "fetching " + filename f = "%s/%s" % (self.path, filename) urllib.urlretrieve(url, f) if (zipfile.is_zipfile(f)): zip = zipfile.ZipFile(f, "r") zip.extractall(self.path) if(self.options['verbose']): print "extracting " + filename os.remove(f) def main(): config = ConfigParser.ConfigParser() config.readfp(open('config.ini')) options = {} options['verbose'] = config.get('debug', 'verbose') path = config.get('download', 'directory') absolute_path = os.path.abspath(path) try: os.chdir(absolute_path) except OSError: print "Directory %s does not exist, creating..." % absolute_path os.makedirs(absolute_path) YEAR = False try: opts, args = getopt.getopt(sys.argv[1:], "y:", ["year="]) except getopt.GetoptError: print 'invalid arguments' raise SystemExit for o, a in opts: if o in ('-y', '--year'): YEAR = a if YEAR: print "fetching retrosheet files for year %s..." % YEAR else: print "fetching retrosheet files..." queue = Queue.Queue() retrosheet_url = config.get('retrosheet', 'url') pattern = r'(\d{4}?)eve\.zip' for match in re.finditer(pattern, urllib.urlopen(retrosheet_url).read(), re.S): if YEAR and match.group(1) != YEAR: continue url = 'http://www.retrosheet.org/events/%seve.zip' % match.group(1) queue.put(url) threads = [] num_threads = config.getint('download', 'num_threads') for i in range(num_threads): t = Fetcher(queue, absolute_path, options) t.start() threads.append(t) # finish fetching before processing events into CSV for thread in threads: thread.join() if __name__ == '__main__': main()
41d102063cccfcc52dd0da8c0dca9282c120cbb8
[ "Python", "INI" ]
2
INI
alesage/py-retrosheet
faa3de332207ea9784356ffe6dc0bafb61739d6f
240fce5dcc8fbf001fb9fcf007480740fb63be98
refs/heads/master
<repo_name>CodeAlyx/ruby-collaborating-objects-lab-cb-000<file_sep>/lib/song.rb class Song attr_accessor :name, :artist, :genre def initialize(name) @name = name end def name @name end def self.new_by_filename(file) data = file.split(" - ") song = Song.new(data[1]) song.artist = Artist.find_or_create_by_name(data[0]) song.artist.add_song(song) song end end
82b32024439cf0aa75d22ba757f26d7034a28e9e
[ "Ruby" ]
1
Ruby
CodeAlyx/ruby-collaborating-objects-lab-cb-000
6ccd0271e5c80425d906639f78a4e68bdf446f5a
7a669d1596ba452fb3f22adfd7e18bf86be5c901
refs/heads/master
<file_sep>## ----setup, include=FALSE----------------------------------------------------- knitr::opts_chunk$set(echo = TRUE, message = FALSE, fig.width=7, fig.height=4) library(knitr) prop_train <- 0.2 ## ----install, eval=FALSE------------------------------------------------------ # # install from CRAN # install.packages("varycoef") # # # install from Github (make sure that you installed the package "devtools") # devtools::install_github("jakobdambon/varycoef") ## ----help and vignettes, warning=FALSE---------------------------------------- # attach package library(varycoef) # general package help file help("varycoef") # where you find this vignette vignette("Introduction", package = "varycoef") ## ----synthetic data----------------------------------------------------------- str(SVCdata) help(SVCdata) # number of observations, number of coefficients n <- nrow(SVCdata$X); p <- ncol(SVCdata$X) ## ----synthetic data train and test-------------------------------------------- # create data frame df <- with(SVCdata, data.frame(y = y, x = X[, 2], locs = locs)) set.seed(123) idTrain <- sort(sample(n, n*prop_train)) df_train <- df[idTrain, ] df_test <- df[-idTrain, ] ## ----synthetic data EDA------------------------------------------------------- par(mfrow = 1:2) plot(y ~ x, data = df_train, xlab = "x", ylab = "y", main = "Scatter Plot of Response and Covariate") plot(y ~ locs, data = df_train, xlab = "s", ylab = "y", main = "Scatter Plot of Response and Locations") par(mfrow = c(1, 1)) ## ----synthetic data linear model---------------------------------------------- fit_lm <- lm(y ~ x, data = df_train) coef(fit_lm) # residual plots par(mfrow = 1:2) plot(x = fitted(fit_lm), y = resid(fit_lm), xlab = "Fitted Values", ylab = "Residuals", main = "Residuals vs Fitted") abline(h = 0, lty = 2, col = "grey") plot(x = df_train$locs, y = resid(fit_lm), xlab = "Location", ylab = "Residuals", main = "Residuals vs Locations") abline(h = 0, lty = 2, col = "grey") par(mfrow = c(1, 1)) ## ----synthetic data svc model------------------------------------------------- fit_svc <- SVC_mle(y ~ x, data = df_train, locs = df_train$locs) coef(fit_svc) ## ----methods------------------------------------------------------------------ # summary output summary(fit_svc) # fitted output head(fitted(fit_svc)) # residual plots par(mfrow = 1:2) plot(x = fitted(fit_svc)$y.pred, y = resid(fit_svc), xlab = "Fitted Values", ylab = "Residuals", main = "Residuals vs Fitted") abline(h = 0, lty = 2, col = "grey") plot(x = df_train$locs, y = resid(fit_svc), xlab = "Location", ylab = "Residuals", main = "Residuals vs Locations") abline(h = 0, lty = 2, col = "grey") par(mfrow = c(1, 1)) ## ----synthetic data model fit------------------------------------------------ kable(data.frame( Model = c("linear", "SVC"), # using method logLik `log Likelihood` = round(as.numeric(c(logLik(fit_lm), logLik(fit_svc))), 2), # using method AIC AIC = round(c(AIC(fit_lm), AIC(fit_svc)), 2), # using method BIC BIC = round(c(BIC(fit_lm), BIC(fit_svc)), 2) )) ## ----synthetic data fitted---------------------------------------------------- head(fitted(fit_svc)) ## ----synthetic data SVC plot-------------------------------------------------- mat_coef <- cbind( # constant coefficients from lm lin1 = coef(fit_lm)[1], lin2 = coef(fit_lm)[2], # SVCs svc1 = coef(fit_svc)[1] + fitted(fit_svc)[, 1], svc2 = coef(fit_svc)[2] + fitted(fit_svc)[, 2] ) matplot( x = df_train$locs, y = mat_coef, pch = c(1, 2, 1, 2), col = c(1, 1, 2, 2), xlab = "Location", ylab = "Beta", main = "Estimated Coefficients") legend("topright", legend = c("Intercept", "covariate x", "linear model", "SVC model"), pch = c(1, 2, 19, 19), col = c("grey", "grey", "black", "red")) ## ----synthetic data predictive performance------------------------------------ # using method predict with whole data and corresponding locations df_svc_pred <- predict(fit_svc, newdata = df, newlocs = df$locs) # combining mean values and deviations mat_coef_pred <- cbind( svc1_pred = coef(fit_svc)[1] + df_svc_pred[, 1], svc2_pred = coef(fit_svc)[2] + df_svc_pred[, 2] ) # plot matplot(x = df$locs, y = mat_coef_pred, xlab = "Location", ylab = "Beta", main = "Predicted vs Actual Coefficients", col = c(1, 2), lty = c(1, 1), type = "l") points(x = df$locs, y = SVCdata$beta[, 1], col = 1, pch = ".") points(x = df$locs, y = SVCdata$beta[, 2], col = 2, pch = ".") legend("topright", legend = c("Intercept", "Covariate", "Actual"), col = c("black", "red", "black"), pch = c(NA, NA, "."), lty = c(1, 1, NA)) ## ----sample location---------------------------------------------------------- (s_id <- sample(n, 1)) ## ----synthetic data RMSE------------------------------------------------------ SE_lm <- (predict(fit_lm, newdata = df) - df$y)^2 # df_svc_pred from above SE_svc <- (df_svc_pred$y.pred - df$y)^2 kable(data.frame( model = c("linear", "SVC"), `in-sample RMSE` = round(sqrt(c(mean(SE_lm[idTrain]), mean(SE_svc[idTrain]))), 3), `out-of-sample RMSE` = round(sqrt(c(mean(SE_lm[-idTrain]), mean(SE_svc[-idTrain]))), 3) )) ## ----meuse intro-------------------------------------------------------------- library(sp) # attach sp and load data data("meuse") # documentation help("meuse") # overview summary(meuse) dim(meuse) ## ----meuse data and location of interest-------------------------------------- df_meuse <- meuse[, c("dist", "lime", "elev")] df_meuse$l_cad <- log(meuse$cadmium) df_meuse$lime <- as.numeric(as.character(df_meuse$lime)) locs <- as.matrix(meuse[, c("x", "y")]) ## ----meuse data spatial plot, echo = FALSE, message=FALSE, warning=FALSE------ # load meuse river outlines data("meuse.riv") # create spatial object to create spplot sp_meuse <- df_meuse coordinates(sp_meuse) <- ~ locs # visualize log Cadmium measurements along river spplot( sp_meuse, zcol = "l_cad", main = "Meuse River and Log Cadmium Measurements" ) + latticeExtra::layer(panel.lines(meuse.riv)) ## ----meuse data pairs--------------------------------------------------------- pairs(df_meuse) ## ----meuse linear model------------------------------------------------------- fit_lm <- lm(l_cad ~ ., data = df_meuse) coef(fit_lm) ## ----LM residuals------------------------------------------------------------- oldpar <- par(mfrow = c(1, 2)) plot(fit_lm, which = 1:2) par(oldpar) ## ----LM spatial residuals, echo=FALSE----------------------------------------- # add residuals to spatial object sp_meuse$res_lm <- resid(fit_lm) # visualize linear model residuals along river spplot(sp_meuse, zcol = "res_lm", main = "Meuse River and Residuals of Linear Model" ) + latticeExtra::layer(panel.lines(meuse.riv)) ## ----meuse SVC model, warning=FALSE------------------------------------------- fit_svc <- SVC_mle(l_cad ~ ., data = df_meuse, locs = locs, control = SVC_mle_control( profileLik = TRUE, parscale = TRUE )) coef(fit_svc) ## ----meuse fixed effects, echo = FALSE---------------------------------------- kable(t(data.frame( round(cbind(`linear` = coef(fit_lm), `SVC`= coef(fit_svc)), 3) ))) ## ----varycoef predict locations----------------------------------------------- # study area data("meuse.grid") # prediction df_svc_pred <- predict(fit_svc, newlocs = as.matrix(meuse.grid[, c("x", "y")])) colnames(df_svc_pred)[1:4] <- c("Intercept", "dist", "lime", "elev") head(df_svc_pred)
32f672893d60133947c654ff8ca2721d98f6bac5
[ "R" ]
1
R
cran/varycoef
5583d103ef74ec7fa5d4e0700c3803eeab844a94
cdae10e4cd0e3bcc8a1217519adfd19379f4e77f
refs/heads/master
<repo_name>tcable/facewall<file_sep>/facewall-database-utils/src/main/java/uk/co/o2/facewall/databaseutils/DatabaseOperation.java package uk.co.o2.facewall.databaseutils; import org.neo4j.graphdb.GraphDatabaseService; import org.neo4j.graphdb.Transaction; abstract class DatabaseOperation { DatabaseOperation() {} abstract protected void performOperation(GraphDatabaseService db); public final void execute(GraphDatabaseService db) { Transaction tx = db.beginTx(); try { performOperation(db); tx.success(); } finally { tx.finish(); } } } <file_sep>/functional-tests/src/test/java/uk/co/o2/facewall/functionaltests/selenium/journeys/TeamDetailsTest.java package uk.co.o2.facewall.functionaltests.selenium.journeys; import org.junit.Test; import uk.co.o2.facewall.functionaltests.selenium.common.SeleniumBase; import uk.co.o2.facewall.functionaltests.selenium.pages.HomePage; import uk.co.o2.facewall.functionaltests.selenium.pages.LoginPage; import uk.co.o2.facewall.functionaltests.selenium.pages.TeamDetailsPage; import uk.co.o2.facewall.functionaltests.selenium.pages.TeamListPage; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; public class TeamDetailsTest extends SeleniumBase{ private HomePage homePage; private LoginPage loginPage; private TeamListPage teamListPage; private TeamDetailsPage teamDetailsPage; @Test public void team_details() { homePage = new HomePage(); homePage.navigateToHomePage(); loginPage = new LoginPage(); homePage = loginPage.enterLoginDetails(); // initial landing on homepage teamListPage = homePage.clickTeamTab(); //click team list tab teamDetailsPage = teamListPage.clickOPPTeam(); //click through to team details page assertThat(teamDetailsPage.isOnPageForTeam("OPP"), is(true)); assertThat(teamDetailsPage.personIsInTeam("<NAME>"), is(true)); } } <file_sep>/src/main/java/uk/co/o2/facewall/facade/modelmapper/OverviewModelMapper.java package uk.co.o2.facewall.facade.modelmapper; import uk.co.o2.facewall.domain.Person; import uk.co.o2.facewall.model.OverviewEntryModel; public class OverviewModelMapper { public OverviewEntryModel map(Person person) { String link = person.getId().value; return new OverviewEntryModel(person.team().name(), person.name(), person.picture(), person.team().colour(), link); } } <file_sep>/src/main/java/uk/co/o2/facewall/domain/datatype/QueryString.java package uk.co.o2.facewall.domain.datatype; import uk.co.o2.facewall.util.AbstractWrappingDataType; public class QueryString extends AbstractWrappingDataType<String> { private QueryString(String value) { super(value); } public static QueryString newQueryString(String queryString) { return new QueryString(queryString); } } <file_sep>/src/test/java/uk/co/o2/facewall/data/dto/PersonInformationMatcher.java package uk.co.o2.facewall.data.dto; import org.hamcrest.Description; import org.hamcrest.TypeSafeMatcher; import uk.co.o2.facewall.util.CompositeMatcher; import static uk.co.o2.facewall.data.datatype.PersonId.newPersonId; public class PersonInformationMatcher extends CompositeMatcher<PersonInformation> { private PersonInformationMatcher() {} public static PersonInformationMatcher aPersonInformation() { return new PersonInformationMatcher(); } public PersonInformationMatcher withId(final String id) { add(new TypeSafeMatcher<PersonInformation>() { @Override public boolean matchesSafely(PersonInformation personInformation) { return newPersonId(id).equals(personInformation.getId()); } @Override public void describeTo(Description description) { description.appendText(" with the id ").appendValue(id); } }); return this; } public PersonInformationMatcher named(final String name) { add(new TypeSafeMatcher<PersonInformation>() { @Override public boolean matchesSafely(PersonInformation personInformation) { return name.equals(personInformation.getName()); } @Override public void describeTo(Description description) { description.appendText(" with the name ").appendValue(name); } }); return this; } public PersonInformationMatcher withPicture(final String picture) { add(new TypeSafeMatcher<PersonInformation>() { @Override public boolean matchesSafely(PersonInformation personInformation) { return picture.equals(personInformation.getPicture()); } @Override public void describeTo(Description description) { description.appendText(" with the picture ").appendValue(picture); } }); return this; } public PersonInformationMatcher withEmail(final String email) { add(new TypeSafeMatcher<PersonInformation>() { @Override public boolean matchesSafely(PersonInformation personInformation) { return email.equals(personInformation.getEmail()); } @Override public void describeTo(Description description) { description.appendText(" with the email ").appendValue(email); } }); return this; } public PersonInformationMatcher withRole(final String role) { add(new TypeSafeMatcher<PersonInformation>() { @Override public boolean matchesSafely(PersonInformation personInformation) { return role.equals(personInformation.getRole()); } @Override public void describeTo(Description description) { description.appendText(" with the role ").appendValue(role); } }); return this; } } <file_sep>/settings.gradle include 'functional-tests', 'facewall-database-utils'<file_sep>/src/test/java/uk/co/o2/facewall/data/dao/TeamDTOsTest.java package uk.co.o2.facewall.data.dao; import org.junit.Before; import org.junit.Test; import uk.co.o2.facewall.data.dto.PersonInformation; import uk.co.o2.facewall.data.dto.TeamInformation; import java.util.List; import static org.hamcrest.MatcherAssert.assertThat; import static uk.co.o2.facewall.data.dto.PersonInformation.newPersonInformation; import static uk.co.o2.facewall.data.dto.PersonInformationMatcher.aPersonInformation; import static uk.co.o2.facewall.data.dto.TeamInformation.newTeamInformation; import static uk.co.o2.facewall.util.IterableMatchers.contains; import static uk.co.o2.facewall.util.IterableMatchers.containsExhaustivelyInAnyOrder; public class TeamDTOsTest { private TeamDTOs dtos; private PersonInformation firstPersonInformation; private PersonInformation secondPersonInformation; private TeamInformation aTeamInformation; private static final String PERSON1_ID = "12345"; private static final String PERSON2_ID = "678910"; private static final String TEAM_ID = "23456"; private static final String TEAM_NAME = "Farmers"; private static final String TEAM_COLOUR = "Green"; @Before public void setup_each() { dtos = new TeamDTOs(); firstPersonInformation = newPersonInformation().withId(PERSON1_ID).build(); secondPersonInformation = newPersonInformation().withId(PERSON2_ID).build(); aTeamInformation = newTeamInformation().named(TEAM_NAME).coloured(TEAM_COLOUR).withId(TEAM_ID).build(); } @Test public void add_member_to_team_adds_member_to_existing_team() throws Exception { dtos.addMemberToTeam(aTeamInformation, firstPersonInformation); List<PersonInformation> result = dtos.iterator().next().memberInformation; assertThat(result, containsExhaustivelyInAnyOrder( aPersonInformation().withId(PERSON1_ID))); } @Test public void add_member_to_team_adds_team_and_member_for_new_team() throws Exception { dtos.addMemberToTeam(aTeamInformation, firstPersonInformation); dtos.addMemberToTeam(aTeamInformation, secondPersonInformation); List<PersonInformation> result = dtos.iterator().next().memberInformation; assertThat(result, contains( aPersonInformation().withId(PERSON2_ID))); } } <file_sep>/javascript-unit-tests/resources/snake-order-tests.js module("snake order tests"); test("reverse second row of 2 full rows", function() { var rowSize = 3; var list = [1, 2, 3, 4, 5, 6]; var result = snakeOrder(list, rowSize); deepEqual(result, [1, 2, 3, 6, 5, 4], "The second row should be reversed."); }); test("reverse when final row incomplete", function() { var rowSize = 3; var list = [1, 2, 3, 4, 5]; var result = snakeOrder(list, rowSize); deepEqual(result, [1, 2, 3, 5, 4], "The second row should be reversed."); }); test("don't reverse third row", function() { var rowSize = 3; var list = [1, 2, 3, 4, 5, 6, 7, 8]; var result = snakeOrder(list, rowSize); deepEqual(result, [1, 2, 3, 6, 5, 4, 7, 8], "The third row should not be reversed."); }); test("reverse only second and fourth rows of five rows", function() { var rowSize = 3; var list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]; var result = snakeOrder(list, rowSize); deepEqual(result, [1, 2, 3, 6, 5, 4, 7, 8, 9, 12, 11, 10, 13, 14, 15], "The third row should not be reversed."); });<file_sep>/functional-tests/src/test/java/uk/co/o2/facewall/functionaltests/selenium/pages/PersonDetailsPage.java package uk.co.o2.facewall.functionaltests.selenium.pages; import org.openqa.selenium.By; import uk.co.o2.facewall.functionaltests.selenium.common.WebBrowser; public class PersonDetailsPage { public String getPersonName() { return WebBrowser.findElementWithFluentWait(By.className("personName")).getText(); } public Boolean imageExists() { return WebBrowser.elementExists(By.className("single-person-pic")); } public Boolean hasEmail(String personEmail){ return WebBrowser.findElement(By.className("personEmail")).getText().contains(personEmail); } public Boolean hasRole(String personRole){ return WebBrowser.elementExists(By.xpath("//*[contains(text(), '" + personRole + "')]")); } public Boolean hasTeam(String teamName){ return WebBrowser.elementExists(By.xpath("//*[contains(text(), '" + teamName + "')]")); } } <file_sep>/facewall-database-utils/src/main/java/uk/co/o2/facewall/databaseutils/fixture/PersonData.java package uk.co.o2.facewall.databaseutils.fixture; import uk.co.o2.facewall.databaseutils.util.ForwardingMap; import java.util.HashMap; import java.util.Map; public class PersonData extends ForwardingMap<String, Object> { private PersonData(Builder builder) { super(new HashMap<>(builder.properties)); } public static Builder newPersonData() { return new Builder(); } public static class Builder { private Map<String, Object> properties = new HashMap<>(); public Builder withProperty(String key, String value) { this.properties.put(key, value); return this; } public PersonData build() { return new PersonData(this); } } } <file_sep>/src/main/java/uk/co/o2/facewall/facade/SignUpFacade.java package uk.co.o2.facewall.facade; import uk.co.o2.facewall.data.PersonRepository; import uk.co.o2.facewall.data.TeamRepository; import uk.co.o2.facewall.data.dao.AdminDAO; import uk.co.o2.facewall.data.dto.PersonInformation; import uk.co.o2.facewall.domain.Person; import uk.co.o2.facewall.domain.Team; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.List; import static java.lang.String.CASE_INSENSITIVE_ORDER; public class SignUpFacade { private final AdminDAO adminDAO; private final PersonRepository personRepository; private final TeamRepository teamRepository; public SignUpFacade(AdminDAO adminDAO, PersonRepository personRepository, TeamRepository teamRepository) { this.adminDAO = adminDAO; this.personRepository = personRepository; this.teamRepository = teamRepository; } public void registerPerson(PersonInformation personInformation, Team team) { adminDAO.savePersonInformation(personInformation); Person person = personRepository.findPersonById(personInformation.getId()); team.addMember(person); } public List<Team> getSortedAvailableTeams() { List<Team> availableTeams = getAvailableTeams(); Collections.sort(availableTeams, new Comparator<Team>() { @Override public int compare(Team team1, Team team2) { int result = 0; if (team1.name() != null && team2.name() != null) { result = CASE_INSENSITIVE_ORDER.compare(team1.name(), team2.name()); } return result; } }); return availableTeams; } public List<String> getSortedAvailableTeamNames() { List<String> teamNamesList = new ArrayList<>(); for ( Team team : getSortedAvailableTeams()) { teamNamesList.add(team.name()); } return teamNamesList; } private List<Team> getAvailableTeams() { return teamRepository.listTeams(); } }<file_sep>/src/main/java/uk/co/o2/facewall/data/dao/database/query/TeamDatabaseQueryBuilder.java package uk.co.o2.facewall.data.dao.database.query; import uk.co.o2.facewall.data.datatype.TeamId; import uk.co.o2.facewall.domain.datatype.QueryString; import java.util.HashMap; import java.util.Map; public class TeamDatabaseQueryBuilder implements DatabaseQueryBuilder { private final FacewallQueryResultsMapper queryResultsMapper; private String id = "*"; private Map<String, String> propertyCriteria = new HashMap<>(); TeamDatabaseQueryBuilder(FacewallQueryResultsMapper queryResultsMapper) { this.queryResultsMapper = queryResultsMapper; } public DatabaseQuery build() { return new TeamDatabaseQuery(queryResultsMapper, id, propertyCriteria); } public TeamDatabaseQueryBuilder withId(TeamId id) { this.id = id.value; return this; } public TeamDatabaseQueryBuilder named(QueryString queryString) { propertyCriteria.put("name", queryString.value); return this; } } <file_sep>/src/main/java/uk/co/o2/facewall/facade/TeamFacade.java package uk.co.o2.facewall.facade; import uk.co.o2.facewall.data.TeamRepository; import uk.co.o2.facewall.domain.Team; import uk.co.o2.facewall.facade.modelmapper.TeamDetailsModelMapper; import uk.co.o2.facewall.model.TeamDetailsModel; import uk.co.o2.facewall.model.TeamListModel; import java.util.ArrayList; import java.util.List; public class TeamFacade { private TeamRepository teamRepository; private TeamDetailsModelMapper teamDetailsModelMapper; public TeamFacade(TeamRepository teamRepository, TeamDetailsModelMapper teamDetailsModelMapper) { this.teamRepository = teamRepository; this.teamDetailsModelMapper = teamDetailsModelMapper; } public TeamListModel createTeamListModel() { List<TeamDetailsModel> teamDetailsModels = new ArrayList<>(); List<Team> teamList = teamRepository.listTeams(); for(Team team : teamList) { teamDetailsModels.add(teamDetailsModelMapper.map(team)); } return new TeamListModel(teamDetailsModels); } } <file_sep>/src/test/java/uk/co/o2/facewall/data/dao/database/DatabaseQueryMatchers.java package uk.co.o2.facewall.data.dao.database; import uk.co.o2.facewall.data.dao.database.query.DatabaseQuery; import org.hamcrest.Description; import org.hamcrest.Matcher; import org.hamcrest.TypeSafeMatcher; import org.mockito.ArgumentCaptor; import org.neo4j.rest.graphdb.query.QueryEngine; import org.neo4j.rest.graphdb.util.QueryResultBuilder; import java.util.Map; import static uk.co.o2.facewall.data.dao.database.NodeIndex.Persons; import static uk.co.o2.facewall.data.dao.database.NodeIndex.Teams; import static uk.co.o2.facewall.data.dao.database.RelationshipTypes.TEAMMEMBER_OF; import static java.util.Collections.emptyList; import static org.mockito.ArgumentCaptor.forClass; import static org.mockito.Matchers.any; import static org.mockito.Matchers.anyMap; import static org.mockito.Matchers.anyString; import static org.mockito.Mockito.*; public class DatabaseQueryMatchers { private DatabaseQueryMatchers() {} public static Matcher<DatabaseQuery> aQueryForAllTeams() { return new TypeSafeMatcher<DatabaseQuery>() { @Override public boolean matchesSafely(DatabaseQuery databaseQuery) { String cypherStatement = captureCypherStatement(databaseQuery); return cypherStatement.contains( "START person = node:" + Persons.getName() + "('" + Persons.getKey() + ":*'), " + "team = node:" + Teams.getName() + "('" + Teams.getKey() + ":*') " + "WHERE person-[:" + TEAMMEMBER_OF.name() + "]->team " + "RETURN person, team" ); } @Override public void describeTo(Description description) { description.appendText("a query for all teams."); } }; } public static Matcher<DatabaseQuery> aQueryForTeamWithId(final String teamId) { return new TypeSafeMatcher<DatabaseQuery>() { @Override public boolean matchesSafely(DatabaseQuery databaseQuery) { String cypherStatement = captureCypherStatement(databaseQuery); return cypherStatement.contains( "START person = node:" + Persons.getName() + "('" + Persons.getKey() + ":*'), " + "team = node:" + Teams.getName() + "('" + Teams.getKey() + ":" + teamId + "') " + "WHERE person-[:" + TEAMMEMBER_OF.name() + "]->team " + "RETURN person, team" ); } @Override public void describeTo(Description description) { description.appendText("a query for the team with the id ").appendValue(teamId); } }; } public static Matcher<DatabaseQuery> aQueryForTeamsWithName(final String name) { return new TypeSafeMatcher<DatabaseQuery>() { @Override public boolean matchesSafely(DatabaseQuery databaseQuery) { String cypherStatement = captureCypherStatement(databaseQuery); return cypherStatement.contains( "START person = node:" + Persons.getName() + "('" + Persons.getKey() + ":*'), " + "team = node:" + Teams.getName() + "('" + Teams.getKey() + ":*') " + "WHERE person-[:" + TEAMMEMBER_OF.name() + "]->team " + "AND team.name =~ '" + name + "' " + "RETURN person, team" ); } @Override public void describeTo(Description description) { description.appendText("a query teams with a name matching ").appendValue(name); } }; } public static Matcher<DatabaseQuery> aQueryForAllPersons() { return new TypeSafeMatcher<DatabaseQuery>() { @Override public boolean matchesSafely(DatabaseQuery databaseQuery) { String cypherStatement = captureCypherStatement(databaseQuery); return cypherStatement.contains( "START person = node:" + Persons.getName() + "('" + Persons.getKey() + ":*') " + "MATCH (person)-[r?]->(team) " + "WHERE 1=1 " + "RETURN person, team" ); } @Override public void describeTo(Description description) { description.appendText("a query for all persons."); } }; } public static Matcher<DatabaseQuery> aQueryForPersonsNamed(final String name) { return new TypeSafeMatcher<DatabaseQuery>() { @Override public boolean matchesSafely(DatabaseQuery databaseQuery) { String cypherStatement = captureCypherStatement(databaseQuery); return cypherStatement.contains( "START person = node:" + Persons.getName() + "('" + Persons.getKey() + ":*') " + "MATCH (person)-[r?]->(team) " + "WHERE 1=1 " + "AND person.name =~ '" + name + "' " + "RETURN person, team" ); } @Override public void describeTo(Description description) { description.appendText("a query persons with a name matching ").appendValue(name); } }; } public static Matcher<DatabaseQuery> aQueryForPersonWithId(final String personId) { return new TypeSafeMatcher<DatabaseQuery>() { @Override public boolean matchesSafely(DatabaseQuery databaseQuery) { String cypherStatement = captureCypherStatement(databaseQuery); return cypherStatement.contains( "START person = node:" + Persons.getName() + "('" + Persons.getKey() + ":" + personId + "') " + "MATCH (person)-[r?]->(team) " + "WHERE 1=1 " + "RETURN person, team" ); } @Override public void describeTo(Description description) { description.appendText("a query for a person with the id ").appendValue(personId); } }; } private static String captureCypherStatement(DatabaseQuery databaseQuery) { QueryEngine mockEngine = mock(QueryEngine.class); when(mockEngine.query(anyString(), anyMap())).thenReturn( new QueryResultBuilder(emptyList()) ); databaseQuery.execute(mockEngine); ArgumentCaptor<String> cypherStatement = forClass(String.class); verify(mockEngine).query(cypherStatement.capture(), any(Map.class)); return cypherStatement.getValue(); } } <file_sep>/src/main/java/uk/co/o2/facewall/model/OverviewModel.java package uk.co.o2.facewall.model; import java.util.List; public class OverviewModel { public List<OverviewEntryModel> entries; public OverviewModel(List<OverviewEntryModel> entries) { this.entries = entries; } } <file_sep>/src/test/java/uk/co/o2/facewall/facade/validators/UserModelValidatorTest.java package uk.co.o2.facewall.facade.validators; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.InjectMocks; import org.mockito.Mock; import org.mockito.runners.MockitoJUnitRunner; import uk.co.o2.facewall.data.TeamRepository; import uk.co.o2.facewall.data.dto.PersonInformation; import uk.co.o2.facewall.domain.NoTeam; import uk.co.o2.facewall.domain.Person; import uk.co.o2.facewall.domain.Query; import uk.co.o2.facewall.domain.StubbedTeam; import uk.co.o2.facewall.domain.Team; import uk.co.o2.facewall.model.UserModel; import java.util.Arrays; import java.util.Collections; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.instanceOf; import static org.hamcrest.Matchers.is; import static org.mockito.Matchers.any; import static org.mockito.Mockito.when; import static uk.co.o2.facewall.data.dto.PersonInformationMatcher.aPersonInformation; import static uk.co.o2.facewall.domain.TeamMatcher.aTeam; import static uk.co.o2.facewall.model.UserModelBuilder.aUserModel; @RunWith(MockitoJUnitRunner.class) public class UserModelValidatorTest { @Mock UserModel mockUserModel; @Mock TeamRepository mockTeamRepository; @InjectMocks private UserModelValidator userModelValidator; @Test public void validate_returns_validated_user_model_with_correct_person_information() { UserModel userModel = aUserModel() .withEmail("<EMAIL>") .withImageURL("http://www.image.com") .named("fred") .withRole("pilot").build(); when(mockTeamRepository.queryTeams(any(Query.class))) .thenReturn(Collections.<Team>emptyList()); ValidatedUserModel validatedUserModel = userModelValidator.validate(userModel); PersonInformation result = validatedUserModel.getPersonInformation(); assertThat(result, is(aPersonInformation() .withEmail("<EMAIL>") .withPicture("http://www.image.com") .named("fred") .withRole("pilot"))); } @Test public void validate_returns_validated_user_model_with_correct_team() { Team stubbedTeam = new StubbedTeam("eCom", "red", Collections.<Person>emptyList()); when(mockTeamRepository.queryTeams(any(Query.class))) .thenReturn(Arrays.asList(stubbedTeam)); ValidatedUserModel result = userModelValidator.validate(mockUserModel); assertThat(result.getTeam(), is(aTeam().named("eCom").withColour("red"))); } @Test public void validate_returns_validated_user_model_with_noteam() { when(mockTeamRepository.queryTeams(any(Query.class))) .thenReturn(Collections.<Team>emptyList()); ValidatedUserModel result = userModelValidator.validate(mockUserModel); assertThat(result.getTeam(), is(instanceOf(NoTeam.class))); } }<file_sep>/src/test/java/uk/co/o2/facewall/requestmapper/PersonMapperTest.java package uk.co.o2.facewall.requestmapper; import uk.co.o2.facewall.domain.Person; import uk.co.o2.facewall.domain.StubbedTeam; import uk.co.o2.facewall.domain.Team; import uk.co.o2.facewall.model.UserModel; import org.junit.Test; import java.util.ArrayList; import static uk.co.o2.facewall.domain.PersonMatcher.aPerson; import static uk.co.o2.facewall.domain.TeamMatcher.aTeam; import static uk.co.o2.facewall.model.UserModelBuilder.aUserModel; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.is; public class PersonMapperTest { PersonMapper personMapper = new PersonMapper(); String imageURL = "http://www.image.jpeg"; String email = "<EMAIL>"; UserModel userModel = aUserModel() .named("bob") .withImageURL(imageURL) .inTeam("ecom") .withEmail(email) .build(); @Test public void user_model_maps_to_person() { Person result = personMapper.map(userModel, null); assertThat(result, is(aPerson() .named("bob") .withPicture(imageURL) .withEmail(email) )); } @Test public void user_model_with_accompanying_team_maps_to_person_with_same_team() { Team mockTeam = new StubbedTeam("ecom", "blue", new ArrayList<Person>()); Person result = personMapper.map(userModel, mockTeam); assertThat(result, is(aPerson().inTeam(aTeam().named("ecom").withColour("blue")))); } }<file_sep>/src/main/java/uk/co/o2/facewall/data/dao/database/RelationshipTypes.java package uk.co.o2.facewall.data.dao.database; import org.neo4j.graphdb.RelationshipType; public enum RelationshipTypes implements RelationshipType { TEAMMEMBER_OF } <file_sep>/src/test/java/uk/co/o2/facewall/domain/PersonMatcher.java package uk.co.o2.facewall.domain; import org.hamcrest.Description; import org.hamcrest.Matcher; import org.hamcrest.TypeSafeMatcher; import uk.co.o2.facewall.util.CompositeMatcher; import static uk.co.o2.facewall.domain.NoTeam.noTeam; public class PersonMatcher extends CompositeMatcher<Person> { private PersonMatcher(){ super(); } public static PersonMatcher aPerson() { return new PersonMatcher(); } public PersonMatcher named(final String name) { add(new TypeSafeMatcher<Person>() { @Override public boolean matchesSafely(Person target) { return target.name().equals(name); } @Override public void describeTo(Description description) { description.appendText("named ").appendValue(name); } }); return this; } public PersonMatcher withPicture(final String picture) { add(new TypeSafeMatcher<Person>() { @Override public boolean matchesSafely(Person target) { return picture.equals(target.picture()); } @Override public void describeTo(Description description) { description.appendText("whose picture is at ").appendValue(picture); } }); return this; } public PersonMatcher withEmail(final String email) { add(new TypeSafeMatcher<Person>() { @Override public boolean matchesSafely(Person target) { return email.equals(target.email()); } @Override public void describeTo(Description description) { description.appendText("whose email is at ").appendValue(email); } }); return this; } public PersonMatcher withRole(final String role) { add(new TypeSafeMatcher<Person>() { @Override public boolean matchesSafely(Person target) { return role.equals(target.role()); } @Override public void describeTo(Description description) { description.appendText("whose role is ").appendValue(role); } }); return this; } public PersonMatcher inTeam(final Matcher<Team> team) { add(new TypeSafeMatcher<Person>() { @Override public boolean matchesSafely(Person target) { return team.matches(target.team()); } @Override public void describeTo(Description description) { description.appendText("in: ").appendDescriptionOf(team); } }); return this; } public PersonMatcher whoIsNotInATeam() { add(new TypeSafeMatcher<Person>() { @Override public boolean matchesSafely(Person person) { return noTeam() == person.team(); } @Override public void describeTo(Description description) { description.appendText("who does not belong to a team"); } }); return this; } } <file_sep>/src/main/java/uk/co/o2/facewall/facade/modelmapper/PersonDetailsModelMapper.java package uk.co.o2.facewall.facade.modelmapper; import uk.co.o2.facewall.domain.Person; import uk.co.o2.facewall.model.PersonDetailsModel; public class PersonDetailsModelMapper { public PersonDetailsModel map(Person person) { return new PersonDetailsModel(person.name(), person.team().name(), person.picture(), person.email(), person.password(), person.role(), person.scrum(), person.details(), person.location(), person.officeLocation()); } } <file_sep>/functional-tests/build.gradle apply plugin: 'java' apply plugin: 'idea' dependencies { testCompile project(':facewall-database-utils') testCompile "org.neo4j:neo4j-kernel:1.9.8" testCompile "org.neo4j:neo4j-rest-graphdb:1.9" testCompile "org.seleniumhq.selenium:selenium-java:2.45.0" testCompile "org.hamcrest:hamcrest-all:1.1" testCompile "junit:junit:4.11" testCompile "org.mockito:mockito-all:1.9.5" } task ('integrationRemote', dependsOn: ['test'], description: 'runs functional tests against facewalltest.herokuapp.com') << { // Outputs.upToDateWhen { false } } task ('integrationLocal', type: Test, description: 'runs functional tests against local build') { // Outputs.upToDateWhen { false } } test { outputs.upToDateWhen { false } // Excludes functional tests from running during build. // excludes = ["*"] systemProperty 'where', 'remote' systemProperty 'testUrl', 'http://facewalltest.herokuapp.com' // println systemProperties onOutput { descriptor, event -> logger.lifecycle("Test: " + descriptor + " produced standard out/err: " + event.message ) } } // You need << to deploy on heroku. Remove << to deploy to local. TODO fix pending task ('defaultSchema', dependsOn:['classes'], type:JavaExec, description:'Insert default schema into database.') << { if (!dbRunning()) { dependsOn ':startDb' } classpath = sourceSets.test.runtimeClasspath main = 'uk.co.o2.facewall.functionaltests.data.InsertFixturesUtility' } defaultSchema.mustRunAfter ':startDb' <file_sep>/src/main/java/uk/co/o2/facewall/data/MutablePerson.java package uk.co.o2.facewall.data; import uk.co.o2.facewall.data.datatype.PersonId; import uk.co.o2.facewall.data.dto.PersonInformation; import uk.co.o2.facewall.domain.Person; import uk.co.o2.facewall.domain.Team; class MutablePerson implements Person { private final PersonInformation personInformation; private Team team; public MutablePerson(PersonInformation personInformation) { this.personInformation = personInformation; } @Override final public PersonId getId() { return personInformation.getId(); } @Override final public String name() { return personInformation.getName(); } @Override final public String picture() { return personInformation.getPicture(); } @Override final public String email() { return personInformation.getEmail(); } @Override final public String password() { return personInformation.<PASSWORD>(); } @Override final public String role() { return personInformation.getRole(); } @Override public Team team() { return team; } @Override final public String scrum() { return personInformation.getScrum(); } @Override final public String details() { return personInformation.getDetails(); } @Override final public String location() { return personInformation.getLocation(); } @Override final public String officeLocation() { return personInformation.getOfficeLocation(); } public void setTeam(Team team) { this.team = team; } } <file_sep>/src/main/java/uk/co/o2/facewall/facade/AccountsFacade.java package uk.co.o2.facewall.facade; import org.glassfish.jersey.server.mvc.Viewable; import uk.co.o2.facewall.data.PersonRepository; import uk.co.o2.facewall.domain.Person; import uk.co.o2.facewall.domain.Query; import javax.ws.rs.core.NewCookie; import javax.ws.rs.core.Response; import java.net.URI; import java.net.URISyntaxException; import java.util.HashMap; import java.util.List; import java.util.Map; /** * Created by tom on 05/02/15. */ public class AccountsFacade { private final PersonRepository personRepository; public AccountsFacade(PersonRepository personRepository) { this.personRepository = personRepository; } public boolean isMatching(String email) { // check the db for matching email // if present return true Query query = Query.newExactQuery(email); List<Person> persons = personRepository.queryPersonsEmail(query); return !persons.isEmpty(); } } <file_sep>/src/test/java/uk/co/o2/facewall/view/FreemarkerTemplateProcessorTest.java package uk.co.o2.facewall.view; import freemarker.template.Template; import org.glassfish.jersey.server.mvc.Viewable; import org.junit.Test; import javax.ws.rs.core.MediaType; import java.io.ByteArrayOutputStream; import java.util.HashMap; import static com.google.common.base.Charsets.UTF_8; import static javax.ws.rs.core.MediaType.TEXT_HTML_TYPE; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.notNullValue; import static org.hamcrest.core.Is.is; public class FreemarkerTemplateProcessorTest { private static final String testTemplateName = "/test.ftl"; private static final MediaType someMediaType = TEXT_HTML_TYPE; private final FreemarkerTemplateProcessor templateProcessor = new FreemarkerTemplateProcessor(); @Test public void should_resolve_template() { Template template = templateProcessor.resolve(testTemplateName, someMediaType); assertThat(template, is(notNullValue())); } @Test public void should_render_with_model_and_utf8_encoded() throws Exception { Viewable viewable = new Viewable(testTemplateName, new HashMap<String, String>() {{ put("greeting", "Hello,"); }}); Template template = templateProcessor.resolve(testTemplateName, TEXT_HTML_TYPE); ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); templateProcessor.writeTo(template, viewable, someMediaType, outputStream); String result = outputStream.toString(UTF_8.name()); assertThat(result , is("<h1>Hello, world!</h1>")); } } <file_sep>/functional-tests/src/test/java/uk/co/o2/facewall/functionaltests/selenium/journeys/PersonDetailsTest.java package uk.co.o2.facewall.functionaltests.selenium.journeys; import org.junit.Before; import org.junit.Test; import uk.co.o2.facewall.functionaltests.selenium.common.SeleniumBase; import uk.co.o2.facewall.functionaltests.selenium.pages.HomePage; import uk.co.o2.facewall.functionaltests.selenium.pages.LoginPage; import uk.co.o2.facewall.functionaltests.selenium.pages.PersonDetailsPage; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; public class PersonDetailsTest extends SeleniumBase { private static final String PERSON_NAME = "<NAME>"; private static final String EMAIL = "<EMAIL>"; private static final String ROLE = "Developer"; private static final String TEAM = "Ecom Ars"; private HomePage homePage; private LoginPage loginPage; private PersonDetailsPage personDetailsPage; @Before public void beforeTest() { homePage = new HomePage(); homePage.navigateToHomePage(); loginPage = new LoginPage(); homePage = loginPage.enterLoginDetails(); } @Test public void person_has_a_name() { personDetailsPage = homePage.clickPerson(PERSON_NAME); assertThat(personDetailsPage.getPersonName(), is(PERSON_NAME)); } @Test public void person_has_an_img_tag() { personDetailsPage = homePage.clickPerson(PERSON_NAME); assertThat(personDetailsPage.imageExists(), is(true)); } @Test public void person_has_an_email() { personDetailsPage = homePage.clickPerson(PERSON_NAME); assertThat(personDetailsPage.hasEmail(EMAIL), is(true)); } @Test public void person_has_a_role() { personDetailsPage = homePage.clickPerson(PERSON_NAME); assertThat(personDetailsPage.hasRole(ROLE), is(true)); } @Test public void person_has_a_team() { personDetailsPage = homePage.clickPerson(PERSON_NAME); assertThat(personDetailsPage.hasTeam(TEAM), is(true)); } } <file_sep>/src/test/java/uk/co/o2/facewall/data/dao/MockNodeFactory.java package uk.co.o2.facewall.data.dao; import org.neo4j.graphdb.Node; import java.util.Map; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; abstract public class MockNodeFactory { private MockNodeFactory() {} public static Node createMockNodeWithProperties(Map<String, Object> properties) { Node mockNode = mock(Node.class); when(mockNode.getPropertyKeys()).thenReturn(properties.keySet()); for (Map.Entry<String, Object> entry : properties.entrySet()) { when(mockNode.getProperty(entry.getKey())).thenReturn(entry.getValue()); } return mockNode; } } <file_sep>/src/test/java/uk/co/o2/facewall/domain/PersonsMatcher.java package uk.co.o2.facewall.domain; import org.hamcrest.Description; import org.hamcrest.Matcher; import org.hamcrest.TypeSafeMatcher; import uk.co.o2.facewall.util.CompositeMatcher; import java.util.List; import static uk.co.o2.facewall.util.IterableMatchers.contains; import static uk.co.o2.facewall.util.IterableMatchers.containsExhaustivelyInAnyOrder; public class PersonsMatcher extends CompositeMatcher<List<Person>> { private PersonsMatcher() {} public static PersonsMatcher arePersons() { return new PersonsMatcher(); } public PersonsMatcher whichContainExhaustively(final Matcher<Person>... matchers) { add(new TypeSafeMatcher<List<Person>>() { private Matcher<Iterable<Person>> iterableMatcher = containsExhaustivelyInAnyOrder(matchers); @Override public boolean matchesSafely(List<Person> persons) { return iterableMatcher.matches(persons); } @Override public void describeTo(Description description) { description.appendDescriptionOf(iterableMatcher); } }); return this; } public PersonsMatcher numbering(final int count) { add(new TypeSafeMatcher<List<Person>>() { @Override public boolean matchesSafely(List<Person> persons) { return count == persons.size(); } @Override public void describeTo(Description description) { description.appendText(" which contains ").appendValue(count).appendText(" persons"); } }); return this; } public PersonsMatcher whichContains(final Matcher<Person> personMatcher) { add(new TypeSafeMatcher<List<Person>>() { @Override public boolean matchesSafely(List<Person> persons) { return contains(personMatcher).matches(persons); } @Override public void describeTo(Description description) { description.appendText(" contains a person which is ").appendDescriptionOf(personMatcher); } }); return this; } } <file_sep>/functional-tests/src/test/java/uk/co/o2/facewall/functionaltests/selenium/journeys/SearchTest.java package uk.co.o2.facewall.functionaltests.selenium.journeys; import org.junit.Before; import org.junit.Ignore; import org.junit.Test; import uk.co.o2.facewall.functionaltests.selenium.common.SeleniumBase; import uk.co.o2.facewall.functionaltests.selenium.pages.HomePage; import uk.co.o2.facewall.functionaltests.selenium.pages.LoginPage; import uk.co.o2.facewall.functionaltests.selenium.pages.SearchPage; import uk.co.o2.facewall.functionaltests.selenium.pages.SearchResultsPage; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.core.Is.is; public class SearchTest extends SeleniumBase { private SearchPage searchPage; private SearchResultsPage searchResultsPage; @Before public void beforeTest() { HomePage homePage = new HomePage(); homePage.navigateToHomePage(); LoginPage loginPage = new LoginPage(); loginPage.enterLoginDetails(); searchPage = homePage.clickSearchTab(); } //TODO Reinstate these tests @Ignore @Test public void search_for_person() throws Exception { searchResultsPage = searchPage.searchPerson("<NAME>"); // assertThat(searchResultsPage.getPersonName(), is("<NAME>")); } //TODO Reinstate these tests @Ignore @Test public void search_for_person_with_mixed_casing() throws Exception { searchResultsPage = searchPage.searchPerson("fReD JiMMY WeasLeY"); // assertThat(searchResultsPage.getPersonName(), is("<NAME>")); } @Test public void search_for_team() throws Exception { searchResultsPage = searchPage.searchTeam("Ecom Ars"); assertThat(searchResultsPage.teamExists("Ecom Ars"), is(true)); } //TODO Reinstate these tests @Ignore @Test public void no_person_search_results() throws Exception { searchResultsPage = searchPage.searchPerson("<NAME>"); // assertThat(searchResultsPage.personExists("<NAME>"), is(false)); } @Test public void no_team_search_results() throws Exception { searchResultsPage = searchPage.searchTeam("Team Unknown"); assertThat(searchResultsPage.teamExists("Team Unknown"), is(false)); } @Test public void no_team_and_no_person_search_results_displays_message() throws Exception { searchResultsPage = searchPage.searchTeam("No results"); assertThat(searchResultsPage.hasNoResultsMessage(), is(true)); } //TODO Write test that selects person and checks page } <file_sep>/src/test/java/uk/co/o2/facewall/util/IterableMatchers.java package uk.co.o2.facewall.util; import org.hamcrest.Description; import org.hamcrest.Matcher; import org.hamcrest.TypeSafeMatcher; import java.util.Iterator; public class IterableMatchers<T> { private IterableMatchers() {} public static <T> Matcher<Iterable<T>> containsExhaustivelyInOrder(final Matcher<T>... itemMatchers) { return new TypeSafeMatcher<Iterable<T>> () { @Override public boolean matchesSafely(Iterable<T> targetIterable) { boolean result = true; Iterator<T> iterator = targetIterable.iterator(); for (Matcher<T> itemMatcher : itemMatchers) { if (iterator.hasNext()){ T nextItem = iterator.next(); result = result && itemMatcher.matches(nextItem); } else { result = false; } } return result && !iterator.hasNext(); } @Override public void describeTo(Description description) { description.appendText("which contains exhaustively, in order:\n"); for (Matcher matcher : itemMatchers) { description.appendDescriptionOf(matcher); description.appendText("\n\n"); } } }; } public static <T> Matcher<Iterable<T>> containsExhaustivelyInAnyOrder(final Matcher<T>... matchers) { return new TypeSafeMatcher<Iterable<T>>() { @Override public boolean matchesSafely(Iterable<T> iterable) { boolean result = true; for(Matcher<T> matcher : matchers) { result = result && contains(matcher).matches(iterable); } return result && hasElementCount(matchers.length).matches(iterable); } @Override public void describeTo(Description description) { description.appendText("which contains exhaustively, in any order:\n"); for (Matcher matcher : matchers) { description.appendDescriptionOf(matcher); description.appendText("\n\n"); } } }; } public static <T> Matcher<Iterable<T>> contains(final Matcher<T> matcher) { return new TypeSafeMatcher<Iterable<T>>() { @Override public boolean matchesSafely(Iterable<T> iterable) { boolean result = false; for (T item : iterable) { result = result || matcher.matches(item); } return result; } @Override public void describeTo(Description description) { description.appendText("which contains ").appendDescriptionOf(matcher); } }; } public static <T> Matcher<Iterable<T>> hasElementCount(final int expectedCount) { return new TypeSafeMatcher<Iterable<T>>() { @Override public boolean matchesSafely(Iterable<T> iterable) { int elementCount = 0; for (T ignored : iterable) { elementCount++; } return expectedCount == elementCount; } @Override public void describeTo(Description description) { description.appendText("which contains ").appendValue(expectedCount).appendText(" elements"); } }; } } <file_sep>/build.gradle apply plugin: 'idea' apply plugin: 'war' apply plugin: 'tomcat' apply plugin: 'java' buildscript { repositories { maven { url "http://jcenter.bintray.com/" } } dependencies { classpath 'org.gradle.api.plugins:gradle-tomcat-plugin:1.0' } } allprojects { repositories { mavenCentral() maven { url "http://m2.neo4j.org/content/repositories/releases/" } maven { url "http://mvnrepository.com" } } } idea { project { jdkName = '1.7' languageLevel = '1.7' ipr.withXml { provider -> provider.node.component.find { it.@name == 'VcsDirectoryMappings' }.mapping.@vcs = 'Git' } } module { downloadSources = true } } configurations { runtimeOnly } dependencies { // to run facewall on Heroku runtimeOnly "com.github.jsimone:webapp-runner:7.0.22" // monitoring on Heroku runtimeOnly "com.newrelic.agent.java:newrelic-agent:2.18.0" // start Embedded Tomcat dependencies def tomcatVersion = '7.0.50' tomcat "org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}", "org.apache.tomcat.embed:tomcat-embed-logging-juli:${tomcatVersion}" tomcat("org.apache.tomcat.embed:tomcat-embed-jasper:${tomcatVersion}") { exclude group: 'org.eclipse.jdt.core.compiler', module: 'ecj' } // end Embedded Tomcat dependencies compile "org.neo4j:neo4j-rest-graphdb:1.9" compile "org.neo4j:neo4j-kernel:1.9.8" compile "org.freemarker:freemarker:2.3.20" compile "org.glassfish.jersey.core:jersey-server:2.5.1" compile 'org.glassfish.jersey.containers:jersey-container-servlet:2.5.1' compile 'org.glassfish.jersey.ext:jersey-mvc:2.5.1' compile 'org.apache.commons:commons-io:1.3.2' // begin Hibernate Validator dependencies compile 'org.hibernate:hibernate-validator:5.1.0.CR1' compile 'org.hibernate:hibernate-validator-annotation-processor:5.0.3.Final' compile 'javax.el:javax.el-api:2.2.4' compile 'org.glassfish.web:javax.el:2.2.4' // end Hibernate Validator dependencies def slf4jVersion = "1.7.4" compile "org.slf4j:slf4j-api:${slf4jVersion}" compile "org.slf4j:slf4j-log4j12:${slf4jVersion}" // compile "ch.qos.logback:logback-core:1.0.12" // compile "ch.qos.logback:logback-classic:1.0.12" testCompile "junit:junit:4.11" testCompile "org.hamcrest:hamcrest-all:1.1" testCompile "org.mockito:mockito-all:1.9.5" testCompile "org.neo4j:neo4j-kernel:1.9.8:tests" testCompile "org.neo4j.app:neo4j-server:1.9.8" testCompile "org.neo4j.app:neo4j-server:1.9.8:static-web" testCompile project(':facewall-database-utils') } tomcatRunWar { httpPort = 9000 } task ('tomcatDaemonRunWar', type: org.gradle.api.plugins.tomcat.TomcatRunWar, description: 'Only used as part of the task integration') { httpPort = 9001 daemon = true // tasks[':functional-tests:integration'].execute() } war { archiveName = "facewall.war" from 'public' } //task('checkDatabase', type:Exec) { // ignoreExitValue = true // // //on windows: // commandLine 'cmd', '/c', 'neo4j', 'status' // // //store the output instead of printing to the console: // standardOutput = new ByteArrayOutputStream() // // //extension method checkDatabase.output() can be used to obtain the output: // ext.output = { // return (standardOutput.toString() + "***") // } // // //check the output // if (standardOutput.toString().contains("RUNNING")) { // println "pass" // } else { // println "fail" // } //} //task print (dependsOn: ['checkDatabase']) { // println ("***" + standardOutput.toString() + "***") //} //task('hello', dependsOn: ['checkDatabase']) << { // //println "hello" // println tasks.checkDatabase.output //} private boolean dbRunning() { // on linux Process p = "neo4j status".execute() BufferedReader reader = new BufferedReader(new InputStreamReader(p.inputStream)) String line while ((line = reader.readLine()) != null) { println line } int exitCode = p.waitFor() if (exitCode == 0) { return true } else if (exitCode == 3) { return false } else { throw new Exception("Unexpected exit code from command '$command' was $exitCode") } } task ('checkDb', description:'Checks whether or not the database is running.') << { dbRunning() } task ('startDb', description:'Starts the database. If already running restarts the database.') << { Process p if (dbRunning()) { // restart p = "neo4j restart".execute() } else { // start p = "neo4j start".execute() } BufferedReader reader = new BufferedReader(new InputStreamReader(p.inputStream)) String line while ((line = reader.readLine()) != null) { println line } } task ('stopDb', description:'Stops the database.') << { Process p if (dbRunning()) { //stop p = "neo4j stop".execute() BufferedReader reader = new BufferedReader(new InputStreamReader(p.inputStream)) String line while ((line = reader.readLine()) != null) { println line } } } task ('startPopDb', dependsOn:['startDb',':functional-tests:defaultSchema'], description: 'Starts the database. If already running restarts the database. (gradle startDb) Then populates the database with the default schema.') << { //dependsOn 'startDb',':functional-tests:defaultSchema' } // WEBAPP_RUNNER HEROKU STUFF task copyToLib << { copy { from configurations.runtimeOnly.copy().setTransitive(false) into "$buildDir/libs" rename { name -> def artifacts = configurations.runtimeOnly.resolvedConfiguration.resolvedArtifacts def artifact = artifacts.find { it.file.name == name } "${artifact.name}.${artifact.extension}" } } } task ('facewallDeploy', type: Exec, dependsOn:['war', 'copyToLib', 'startPopDb'], ) { commandLine 'java' //-jar webapp-runner-7.0.22.jar --port 9000 ./build/libs/facewall.war' args = ['-jar', 'build/libs/webapp-runner.jar', '--port', '9000', 'build/libs/facewall.war'] } task ('stage', dependsOn: ['clean', 'war', 'copyToLib']) << { println "Running stage" } <file_sep>/src/main/java/uk/co/o2/facewall/data/PersonRepository.java package uk.co.o2.facewall.data; import uk.co.o2.facewall.data.dao.FacewallDAO; import uk.co.o2.facewall.data.datatype.PersonId; import uk.co.o2.facewall.data.dto.PersonDTO; import uk.co.o2.facewall.data.dto.TeamInformation; import uk.co.o2.facewall.domain.Person; import uk.co.o2.facewall.domain.Persons; import uk.co.o2.facewall.domain.Query; import uk.co.o2.facewall.domain.Team; import java.util.ArrayList; import java.util.List; import static uk.co.o2.facewall.data.dto.TeamInformation.noTeamInformation; import static uk.co.o2.facewall.domain.NoTeam.noTeam; public class PersonRepository { private final TeamRepository teamRepository; private final FacewallDAO dao; public PersonRepository(TeamRepository teamRepository, FacewallDAO dao) { this.teamRepository = teamRepository; this.dao = dao; } public List<Person> listPersons() { return createPersons(dao.fetchPersons()); } public List<Person> queryPersons(Query query) { return createPersons(dao.queryPersons(query)); } public List<Person> queryPersonsEmail(Query query) { return createPersons(dao.queryPersonsEmail(query)); } public Person findPersonById(PersonId id) { return createPerson(dao.fetchPerson(id)); } private List<Person> createPersons(Iterable<PersonDTO> dtos) { List<Person> result = new ArrayList<>(); for (PersonDTO dto : dtos) { result.add(createPerson(dto)); } return result; } private Person createPerson(PersonDTO dto) { MutablePerson person = new MutablePerson(dto.personInformation); Team team = dto.teamInformation == noTeamInformation() ? noTeam() : new LazyTeam(dto.teamInformation); person.setTeam(team); return person; } private class LazyTeam extends AbstractTeam { private LazyTeam(TeamInformation teamInformation) { super(teamInformation); } @Override public List<Person> members() { return teamRepository.findTeamById(teamInformation.getId()).members(); } //TODO implement this @Override public void addMember(Person member) { throw new UnsupportedOperationException(); } } } <file_sep>/src/test/java/uk/co/o2/facewall/data/MutablePersonMatcher.java package uk.co.o2.facewall.data; import uk.co.o2.facewall.domain.Team; import org.hamcrest.Description; import org.hamcrest.Matcher; import org.hamcrest.TypeSafeMatcher; import uk.co.o2.facewall.util.CompositeMatcher; public class MutablePersonMatcher extends CompositeMatcher<MutablePerson> { private MutablePersonMatcher() {} public static MutablePersonMatcher aMutablePerson() { return new MutablePersonMatcher(); } public MutablePersonMatcher whoseTeamHasBeenSetTo(final Matcher<Team> teamMatcher) { add(new TypeSafeMatcher<MutablePerson>() { @Override public boolean matchesSafely(MutablePerson mutablePerson) { return teamMatcher.matches(mutablePerson.team()); } @Override public void describeTo(Description description) { description.appendText("whose team has been set to: ").appendDescriptionOf(teamMatcher); } }); return this; } } <file_sep>/src/test/java/uk/co/o2/facewall/data/PersonRepositoryTest.java package uk.co.o2.facewall.data; import uk.co.o2.facewall.domain.Person; import uk.co.o2.facewall.domain.Query; import uk.co.o2.facewall.databaseutils.FacewallTestDatabase; import org.junit.Before; import org.junit.Test; import java.util.List; import static uk.co.o2.facewall.data.DataModule.createDataModule; import static uk.co.o2.facewall.domain.PersonMatcher.aPerson; import static uk.co.o2.facewall.domain.PersonsMatcher.arePersons; import static uk.co.o2.facewall.domain.TeamMatcher.aTeam; import static uk.co.o2.facewall.domain.datatype.QueryString.newQueryString; import static uk.co.o2.facewall.databaseutils.FacewallTestDatabaseFactory.createImpermanentFacewallTestDatabase; import static uk.co.o2.facewall.databaseutils.fixture.Fixtures.newFixtures; import static uk.co.o2.facewall.databaseutils.fixture.FixturesFactory.defaultFixtures; import static uk.co.o2.facewall.databaseutils.fixture.PersonDataFactory.defaultPerson; import static uk.co.o2.facewall.databaseutils.fixture.PersonDataFactory.defaultPersons; import static uk.co.o2.facewall.databaseutils.fixture.TeamDataFactory.defaultTeam; import static uk.co.o2.facewall.databaseutils.fixture.TeamDataFactory.defaultTeamWithDefaultMembers; import static org.hamcrest.MatcherAssert.assertThat; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; public class PersonRepositoryTest { private FacewallTestDatabase facewallTestDatabase; private PersonRepository repository; private List<Person> result; @Before public void setUp() throws Exception { facewallTestDatabase = createImpermanentFacewallTestDatabase(); repository = createDataModule(facewallTestDatabase.createQueryEngine(), facewallTestDatabase).personRepository; } @Test public void list_persons_retrieves_person_names_from_db() { facewallTestDatabase.seedFixtures(newFixtures() .withTeamlessPersons(defaultPerson() .withProperty("name", "Bill") ).withTeams(defaultTeam() .withMembers(defaultPerson() .withProperty("name", "Ben") ) ) ); result = repository.listPersons(); assertThat(result, arePersons() .whichContainExhaustively( aPerson().named("Bill"), aPerson().named("Ben") ) ); } @Test public void list_persons_retrieves_person_pictures_from_db() { facewallTestDatabase.seedFixtures(newFixtures() .withTeamlessPersons(defaultPerson() .withProperty("picture", "Bill.img") ).withTeams(defaultTeam() .withMembers(defaultPerson() .withProperty("picture", "Ben.img") ) ) ); result = repository.listPersons(); assertThat(result, arePersons() .whichContainExhaustively( aPerson().withPicture("Bill.img"), aPerson().withPicture("Ben.img") ) ); } @Test public void list_persons_retrieves_persons_with_emails_from_db() { facewallTestDatabase.seedFixtures(newFixtures() .withTeamlessPersons(defaultPerson() .withProperty("email", "<EMAIL>") ).withTeams(defaultTeam() .withMembers(defaultPerson() .withProperty("email", "<EMAIL>") ) ) ); result = repository.listPersons(); assertThat(result, arePersons() .whichContainExhaustively( aPerson().withEmail("<EMAIL>"), aPerson().withEmail("<EMAIL>") ) ); } @Test public void list_persons_retrieves_persons_with_roles_from_db() { facewallTestDatabase.seedFixtures(newFixtures() .withTeamlessPersons(defaultPerson() .withProperty("role", "candlestickmaker") ).withTeams(defaultTeam() .withMembers(defaultPerson() .withProperty("role", "butcher") ) ) ); result = repository.listPersons(); assertThat(result, arePersons() .whichContainExhaustively( aPerson().withRole("candlestickmaker"), aPerson().withRole("butcher") ) ); } @Test public void list_persons_lists_all_persons_in_db() { facewallTestDatabase.seedFixtures(newFixtures() .withTeams( defaultTeam() .withMembers(defaultPersons(8)), defaultTeam() .withMembers(defaultPersons(3)), defaultTeam() .withMembers(defaultPersons(5)) ) ); result = repository.listPersons(); assertThat(result, arePersons().numbering(16)); } @Test public void list_persons_lists_teamless_persons() { facewallTestDatabase.seedFixtures(newFixtures() .withTeams( defaultTeam() .withMembers(defaultPersons(8))) .withTeamlessPersons( defaultPersons(2) ) ); result = repository.listPersons(); assertThat(result, arePersons().numbering(10)); } @Test public void list_persons_contains_persons_with_data_from_db() { facewallTestDatabase.seedFixtures(defaultFixtures() .withTeams( defaultTeam() .withMembers( defaultPerson() .withProperty("name", "<NAME>") .withProperty("picture", "whittard-earl-grey.png") .withProperty("email", "<EMAIL>") .withProperty("role", "a poor tea"), defaultPerson() .withProperty("name", "<NAME>") .withProperty("picture", "The North.png") .withProperty("email", "<EMAIL>") .withProperty("role", "a good tea") ), defaultTeam() .withMembers( defaultPerson() .withProperty("name", "<NAME>") .withProperty("picture", "nescafe-gold-blend.img") .withProperty("email", "<EMAIL>") .withProperty("role", "awakeness") ) ) ); result = repository.listPersons(); assertThat(result, arePersons() .whichContains(aPerson() .named("<NAME>") .withPicture("whittard-earl-grey.png") .withEmail("<EMAIL>") .withRole("a poor tea")) .whichContains(aPerson() .named("<NAME>") .withPicture("The North.png") .withEmail("<EMAIL>") .withRole("a good tea")) .whichContains(aPerson() .named("<NAME>") .withPicture("nescafe-gold-blend.img") .withEmail("<EMAIL>") .withRole("awakeness")) ); } @Test public void list_persons_contains_persons_in_teams_from_db() { facewallTestDatabase.seedFixtures(defaultFixtures() .withTeams( defaultTeam() .withProperty("name", "teas") .withMembers( defaultPerson() .withProperty("name", "<NAME>"), defaultPerson() .withProperty("name", "<NAME>") ), defaultTeam() .withProperty("name", "coffees") .withMembers( defaultPerson() ) ) ); result = repository.listPersons(); assertThat(result, arePersons() .whichContains(aPerson() .named("<NAME>") .inTeam(aTeam().named("teas"))) .whichContains(aPerson() .named("<NAME>") .inTeam(aTeam().named("teas"))) .whichContains(aPerson() .inTeam(aTeam().named("coffees"))) ); } @Test public void list_persons_contains_teamless_persons_with_data_from_db() { facewallTestDatabase.seedFixtures(defaultFixtures() .withTeamlessPersons( defaultPerson() .withProperty("name", "development manager") .withProperty("picture", "important-looking-person1.img") .withProperty("email", "<EMAIL>"), defaultPerson() .withProperty("name", "delivery manager") .withProperty("picture", "important-looking-person2.img") .withProperty("email", "<EMAIL>") ) ); result = repository.listPersons(); assertThat(result, arePersons() .whichContains(aPerson() .named("development manager") .withPicture("important-looking-person1.img") .withEmail("<EMAIL>") .whoIsNotInATeam()) .whichContains(aPerson() .named("delivery manager") .withPicture("important-looking-person2.img") .withEmail("<EMAIL>") .whoIsNotInATeam()) ); } @Test public void persons_teams_members_contains_itself() { facewallTestDatabase.seedFixtures(defaultFixtures() .withTeams( defaultTeam() .withProperty("name", "woodwind") .withMembers( defaultPerson() .withProperty("name", "flute") ) ) ); result = repository.listPersons(); assertThat(result, arePersons() .whichContains(aPerson() .named("flute") .inTeam(aTeam() .named("woodwind") .whereMembers(arePersons() .whichContains(aPerson() .named("flute") ))))); } @Test public void query_persons_for_name_matching_string() { facewallTestDatabase.seedFixtures(newFixtures() .withTeams( defaultTeamWithDefaultMembers() .withMembers( defaultPerson() .withProperty("name", "<NAME>"), defaultPerson() .withProperty("name", "<NAME>"), defaultPerson() .withProperty("name", "<NAME>"), defaultPerson() .withProperty("name", "lizard") ) )); Query query = mock(Query.class); when(query.queryString()).thenReturn(newQueryString(".*oodle.*")); result = repository.queryPersons(query); assertThat(result, arePersons().whichContainExhaustively( aPerson().named("<NAME>"), aPerson().named("<NAME>") )); } } <file_sep>/src/main/java/uk/co/o2/facewall/view/FreemarkerTemplateProcessor.java package uk.co.o2.facewall.view; import freemarker.cache.ClassTemplateLoader; import freemarker.template.Configuration; import freemarker.template.DefaultObjectWrapper; import freemarker.template.Template; import freemarker.template.TemplateException; import org.glassfish.jersey.server.ContainerException; import org.glassfish.jersey.server.mvc.Viewable; import org.glassfish.jersey.server.mvc.spi.TemplateProcessor; import javax.ws.rs.core.MediaType; import java.io.IOException; import java.io.OutputStream; import java.io.OutputStreamWriter; import static com.google.common.base.Charsets.UTF_8; public class FreemarkerTemplateProcessor implements TemplateProcessor<Template> { private final static Configuration configuration = initConfig(); private static Configuration initConfig() { Configuration configuration = new Configuration(); configuration.setTemplateLoader(new HtmlTemplateLoader( new ClassTemplateLoader(FreemarkerTemplateProcessor.class, "/views"))); DefaultObjectWrapper objectWrapper = new DefaultObjectWrapper(); objectWrapper.setExposeFields(true); configuration.setObjectWrapper(objectWrapper); configuration.setDefaultEncoding(UTF_8.name()); return configuration; } @Override public Template resolve(String name, MediaType mediaType) { try { return configuration.getTemplate(name); } catch (IOException e) { throw new RuntimeException("Could not load template: " + name, e); } } @Override public void writeTo(Template template, final Viewable viewable, MediaType mediaType, OutputStream out) throws IOException { try { template.process(viewable.getModel(), new OutputStreamWriter(out)); } catch (TemplateException te) { throw new ContainerException(te); } } } <file_sep>/public/assets/javascripts/snake-order.js function snakeOrder(array, rowSize) { var groupBy = function (array, groupSize) { var result = []; for (i = 0; i < array.length; i += groupSize) { result.push(array.slice(i, i + groupSize)); } return result; } var sizeOfTwoRows = rowSize * 2; var twoRowGroups = groupBy(array, sizeOfTwoRows); var reverseSecondRow = function(group, index, array) { var firstRow = group.slice(0, Math.min(group.length, rowSize)); var secondRow = []; if (group.length > rowSize) { secondRow = group.slice(rowSize).reverse(); } return firstRow.concat(secondRow); } var orderedGroups = twoRowGroups.map(reverseSecondRow); return [].concat.apply([], orderedGroups) } <file_sep>/src/main/java/uk/co/o2/facewall/facade/validators/ValidatedUserModel.java package uk.co.o2.facewall.facade.validators; import uk.co.o2.facewall.data.dto.PersonInformation; import uk.co.o2.facewall.domain.Team; import uk.co.o2.facewall.facade.validators.annotations.ValidTeam; import javax.validation.*; import java.util.HashMap; import java.util.Iterator; import java.util.Map; public class ValidatedUserModel { @Valid private final PersonInformation personInformation; @ValidTeam private final Team team; private final ValidatorFactory validatorFactory = Validation.buildDefaultValidatorFactory(); private final Validator validator = validatorFactory.getValidator(); public ValidatedUserModel(PersonInformation personInformation, Team team) { this.personInformation = personInformation; this.team = team; } public PersonInformation getPersonInformation() { return personInformation; } public Team getTeam() { return team; } public Map<String, String> getErrors() { Map<String, String> errorMap = new HashMap<>(); for (ConstraintViolation<ValidatedUserModel> thisError : validator.validate(this)) { errorMap.put(thisError.getPropertyPath().toString(), thisError.getMessage()); } return errorMap; } public boolean hasErrors() { return !validator.validate(this).isEmpty(); } }<file_sep>/src/test/java/uk/co/o2/facewall/data/dto/PersonInformationMapperTest.java package uk.co.o2.facewall.data.dto; import org.junit.Test; import org.neo4j.graphdb.Node; import java.util.HashMap; import static uk.co.o2.facewall.data.dao.MockNodeFactory.createMockNodeWithProperties; import static uk.co.o2.facewall.data.datatype.PersonId.newPersonId; import static uk.co.o2.facewall.data.dto.PersonInformation.noPersonInformation; import static org.hamcrest.CoreMatchers.sameInstance; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.core.Is.is; public class PersonInformationMapperTest { private Node mockNode; private PersonInformation result; private final PersonInformationMapper personInformationMapper = new PersonInformationMapper(); @Test public void map_id() throws Exception { mockNode = createMockNodeWithProperties(new HashMap<String, Object>() {{ put("id", "some-id"); }}); result = personInformationMapper.map(mockNode); assertThat(result.getId(), is(newPersonId("some-id"))); } @Test public void map_name() throws Exception { mockNode = createMockNodeWithProperties(new HashMap<String, Object>() {{ put("name", "blinky"); }}); result = personInformationMapper.map(mockNode); assertThat(result.getName(), is("blinky")); } @Test public void map_picture() throws Exception { mockNode = createMockNodeWithProperties(new HashMap<String, Object>() {{ put("picture", "blinky.img"); }}); result = personInformationMapper.map(mockNode); assertThat(result.getPicture(), is("blinky.img")); } @Test public void map_email() throws Exception { mockNode = createMockNodeWithProperties(new HashMap<String, Object>() {{ put("email", "<EMAIL>"); }}); result = personInformationMapper.map(mockNode); assertThat(result.getEmail(), is("<EMAIL>")); } @Test public void map_role() throws Exception { mockNode = createMockNodeWithProperties(new HashMap<String, Object>() {{ put("role", "baker"); }}); result = personInformationMapper.map(mockNode); assertThat(result.getRole(), is("baker")); } @Test public void map_null_to_no_person_information() throws Exception { result = personInformationMapper.map(null); assertThat(result, is(sameInstance(noPersonInformation()))); } } <file_sep>/src/main/java/uk/co/o2/facewall/model/TeamDetailsWithPersonsModel.java package uk.co.o2.facewall.model; import java.util.List; public class TeamDetailsWithPersonsModel { public String name; public String colour; public int size; public List<OverviewEntryModel> entries; public TeamDetailsWithPersonsModel(String name, String colour, int size, List<OverviewEntryModel> entries) { this.name = name; this.colour = colour; this.size = size; this.entries = entries; } } <file_sep>/src/test/java/uk/co/o2/facewall/data/dao/QueryingDAOTest.java package uk.co.o2.facewall.data.dao; import uk.co.o2.facewall.data.dao.database.FacewallDB; import uk.co.o2.facewall.data.dao.database.QueryResultRow; import uk.co.o2.facewall.data.dao.database.query.DatabaseQueryBuilder; import uk.co.o2.facewall.data.datatype.PersonId; import uk.co.o2.facewall.data.datatype.TeamId; import uk.co.o2.facewall.data.dto.PersonDTO; import uk.co.o2.facewall.data.dto.TeamDTO; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.InjectMocks; import org.mockito.Mock; import org.mockito.runners.MockitoJUnitRunner; import static uk.co.o2.facewall.data.dao.database.QueryResultRowBuilder.blankRow; import static uk.co.o2.facewall.data.dao.database.QueryResultRowBuilder.defaultRow; import static uk.co.o2.facewall.data.dao.database.QueryResultsBuilder.results; import static uk.co.o2.facewall.data.datatype.PersonId.newPersonId; import static uk.co.o2.facewall.data.datatype.TeamId.newTeamId; import static uk.co.o2.facewall.data.dto.PersonDTOMatcher.aPersonDTO; import static uk.co.o2.facewall.data.dto.PersonInformation.newPersonInformation; import static uk.co.o2.facewall.data.dto.PersonInformationMatcher.aPersonInformation; import static uk.co.o2.facewall.data.dto.TeamDTOMatcher.aTeamDTO; import static uk.co.o2.facewall.data.dto.TeamInformation.newTeamInformation; import static uk.co.o2.facewall.data.dto.TeamInformationMatcher.aTeamInformation; import static org.hamcrest.MatcherAssert.assertThat; import static org.mockito.Matchers.any; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; import static uk.co.o2.facewall.util.IterableMatchers.containsExhaustivelyInAnyOrder; @RunWith(MockitoJUnitRunner.class) public class QueryingDAOTest { private static final TeamId someTeamId = newTeamId("blah"); private static final PersonId somePersonId = newPersonId("bloom"); private static final DatabaseQueryBuilder someQuery = mock(DatabaseQueryBuilder.class); @Mock FacewallDB mockDb; @InjectMocks private QueryingDAO facewallDAO; @Test public void fetch_persons_retrieves_person_nodes() { stubDb(results().withRows( defaultRow().withPerson(newPersonInformation().withId("jim")), defaultRow().withPerson(newPersonInformation().withId("bob")) ).build()); Iterable<PersonDTO> result = facewallDAO.queryPersons(someQuery); assertThat(result, containsExhaustivelyInAnyOrder( aPersonDTO().withPerson(aPersonInformation().withId("jim")), aPersonDTO().withPerson(aPersonInformation().withId("bob")) )); } @Test public void fetch_persons_retrieves_team_node() { stubDb(results().withRows( defaultRow().withTeam(newTeamInformation().withId("reds")) ).build()); Iterable<PersonDTO> result = facewallDAO.queryPersons(someQuery); assertThat(result, containsExhaustivelyInAnyOrder( aPersonDTO().withTeam(aTeamInformation() .withId("reds") ))); } @Test public void fetch_teams_retrieves_team_nodes() { stubDb(results().withRows( defaultRow().withTeam(newTeamInformation().withId("blues")), defaultRow().withTeam(newTeamInformation().withId("light blues")) ).build()); Iterable<TeamDTO> result = facewallDAO.queryTeams(someQuery); assertThat(result, containsExhaustivelyInAnyOrder( aTeamDTO().withTeamInformation(aTeamInformation().withId("blues")), aTeamDTO().withTeamInformation(aTeamInformation().withId("light blues")) )); } @Test public void fetch_teams_retrieves_members_nodes() { stubDb(results().withRows( blankRow() .withPerson(newPersonInformation().withId("henry")) .withTeam(newTeamInformation().withId("first team")), blankRow() .withPerson(newPersonInformation().withId("percy")) .withTeam(newTeamInformation().withId("first team")), blankRow() .withPerson(newPersonInformation().withId("edward")) .withTeam(newTeamInformation().withId("second team")) ).build()); Iterable<TeamDTO> result = facewallDAO.queryTeams(someQuery); assertThat(result, containsExhaustivelyInAnyOrder( aTeamDTO().withTeamInformation(aTeamInformation().withId("first team")) .whereMemberInformation(containsExhaustivelyInAnyOrder( aPersonInformation().withId("henry"), aPersonInformation().withId("percy") )), aTeamDTO().withTeamInformation(aTeamInformation().withId("second team")) .whereMemberInformation(containsExhaustivelyInAnyOrder( aPersonInformation().withId("edward") )))); } private void stubDb(Iterable<QueryResultRow> queryResults) { when(mockDb.query(any(DatabaseQueryBuilder.class))) .thenReturn(queryResults); } } <file_sep>/src/test/java/uk/co/o2/facewall/model/PersonSearchResultMatcher.java package uk.co.o2.facewall.model; import org.hamcrest.Description; import org.hamcrest.TypeSafeMatcher; import uk.co.o2.facewall.util.CompositeMatcher; public class PersonSearchResultMatcher extends CompositeMatcher<PersonSearchResult> { private PersonSearchResultMatcher() { super(); } public static PersonSearchResultMatcher aPersonSearchResult() { return new PersonSearchResultMatcher(); } public PersonSearchResultMatcher named(final String name) { add(new TypeSafeMatcher<PersonSearchResult>() { @Override public boolean matchesSafely(PersonSearchResult target) { return target.name.equals(name); } @Override public void describeTo(Description description) { description.appendText(String.format("whose name is %s", name)); } }); return this; } public PersonSearchResultMatcher withPicture(final String picture) { add(new TypeSafeMatcher<PersonSearchResult>() { @Override public boolean matchesSafely(PersonSearchResult target) { return target.picture.equals(picture); } @Override public void describeTo(Description description) { description.appendText(String.format("whose has picture %s", picture)); } }); return this; } public PersonSearchResultMatcher withEmail(final String email) { add(new TypeSafeMatcher<PersonSearchResult>() { @Override public boolean matchesSafely(PersonSearchResult target) { return target.email.equals(email); } @Override public void describeTo(Description description) { description.appendText(String.format("whose has email %s", email)); } }); return this; } public PersonSearchResultMatcher withRole(final String role) { add(new TypeSafeMatcher<PersonSearchResult>() { @Override public boolean matchesSafely(PersonSearchResult target) { return target.role.equals(role); } @Override public void describeTo(Description description) { description.appendText(String.format("whose has role %s", role)); } }); return this; } public PersonSearchResultMatcher inTeam(final String teamName) { add(new TypeSafeMatcher<PersonSearchResult>() { @Override public boolean matchesSafely(PersonSearchResult target) { return target.teamName.equals(teamName); } @Override public void describeTo(Description description) { description.appendText(String.format("whose team is named %s", teamName)); } }); return this; } } <file_sep>/src/test/java/uk/co/o2/facewall/model/OverviewEntryModelMatcher.java package uk.co.o2.facewall.model; import org.hamcrest.Description; import org.hamcrest.TypeSafeMatcher; import uk.co.o2.facewall.util.CompositeMatcher; public class OverviewEntryModelMatcher extends CompositeMatcher<OverviewEntryModel> { private OverviewEntryModelMatcher(){ super(); } public static OverviewEntryModelMatcher anOverviewEntryModel() { return new OverviewEntryModelMatcher(); } public OverviewEntryModelMatcher withTeamHeader(final String teamHeader) { add(new TypeSafeMatcher<OverviewEntryModel>() { @Override public boolean matchesSafely(OverviewEntryModel target) { return target.teamHeader.equals(teamHeader); } @Override public void describeTo(Description description) { description.appendText("with a teamHead of " + teamHeader); } }); return this; } public OverviewEntryModelMatcher named(final String name) { add(new TypeSafeMatcher<OverviewEntryModel>() { @Override public boolean matchesSafely(OverviewEntryModel target) { return target.name.equals(name); } @Override public void describeTo(Description description) { description.appendText("with name " + name); } }); return this; } public OverviewEntryModelMatcher withPicture(final String picture) { add(new TypeSafeMatcher<OverviewEntryModel>() { @Override public boolean matchesSafely(OverviewEntryModel target) { return target.picture.equals(picture); } @Override public void describeTo(Description description) { description.appendText("with has picture " + picture); } }); return this; } public OverviewEntryModelMatcher withColour(final String colour) { add(new TypeSafeMatcher<OverviewEntryModel>() { @Override public boolean matchesSafely(OverviewEntryModel target) { return target.colour.equals(colour); } @Override public void describeTo(Description description) { description.appendText("with has colour " + colour); } }); return this; } } <file_sep>/functional-tests/src/test/java/uk/co/o2/facewall/functionaltests/selenium/common/WebBrowser.java package uk.co.o2.facewall.functionaltests.selenium.common; import com.google.common.base.Function; import com.thoughtworks.selenium.DefaultSelenium; import org.openqa.selenium.*; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium.remote.DesiredCapabilities; import org.openqa.selenium.support.ui.FluentWait; import org.openqa.selenium.support.ui.Wait; import java.util.List; import java.util.Set; import java.util.concurrent.TimeUnit; import static java.util.concurrent.TimeUnit.MILLISECONDS; public class WebBrowser { private static WebDriver driver = null; public static DefaultSelenium selenium = null; public static String browserName = ""; public WebBrowser() { } public static WebDriver start(String browser, String browserVersion) { DesiredCapabilities capabillities = null; System.out.println("Setting up WebDriver using: " + browser + " with version " + browserVersion); driver = null; browserName = browser; if (browser.equalsIgnoreCase("firefox")) { capabillities = DesiredCapabilities.firefox(); capabillities.setCapability("version", browserVersion); capabillities.setCapability("platform", Platform.LINUX); capabillities.setJavascriptEnabled(true); driver = new FirefoxDriver(capabillities); } //TODO Implement chrome driver // else if (browser.equalsIgnoreCase("chrome")) { // capabillities = DesiredCapabilities.chrome(); // capabillities.setCapability("platform", Platform.XP); // capabillities.setJavascriptEnabled(true); // } //TODO Look into browser timeouts driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS); return driver; } public static void closeBrowser() { driver.close(); } public static void deleteCookieNamed(String named) { driver.manage().deleteCookieNamed(named); } public static Set<Cookie> getCookies() { return driver.manage().getCookies(); } public static JavascriptExecutor getJavascriptExecutor(){ return (JavascriptExecutor)driver; } public static void deleteAllCookies() { try { driver.manage().deleteAllCookies(); } catch (final Exception e) { System.out.println("Could not delete cookies " + e); } } public static void navigateTo(final String url) { driver.get(url); } public static WebElement findElement(final By by) { return driver.findElement(by); } public static WebElement findElementWithFluentWait(final By by) { Wait<WebDriver> wait = new FluentWait<>(driver) .withTimeout(6000, MILLISECONDS) .pollingEvery(250, MILLISECONDS) .ignoring(NoSuchElementException.class); return wait.until(new Function<WebDriver, WebElement>() { public WebElement apply(WebDriver driver) { return driver.findElement(by); } }); }; public static boolean elementExists(final By by) { try { findElementWithFluentWait(by); return true; } catch (Exception e) { return false; } } public static String getUrl() { return driver.getCurrentUrl(); } public static String getTitle() { return driver.getTitle(); } public static void refresh(){ driver.navigate().refresh(); } public static String getPageSource() { return driver.getPageSource(); } public static List<WebElement> findElements(final By by) { return driver.findElements(by); } public static void browserBack() { driver.navigate().back(); try { Thread.sleep(1000); } catch (InterruptedException e) { } } } <file_sep>/src/main/java/uk/co/o2/facewall/facade/PersonDetailsFacade.java package uk.co.o2.facewall.facade; import uk.co.o2.facewall.data.PersonRepository; import uk.co.o2.facewall.data.datatype.PersonId; import uk.co.o2.facewall.domain.Person; import uk.co.o2.facewall.facade.modelmapper.PersonDetailsModelMapper; import uk.co.o2.facewall.model.PersonDetailsModel; public class PersonDetailsFacade { private final PersonRepository repository; private final PersonDetailsModelMapper personDetailsModelMapper; public PersonDetailsFacade(PersonRepository repository, PersonDetailsModelMapper personDetailsModelMapper) { this.repository = repository; this.personDetailsModelMapper = personDetailsModelMapper; } public PersonDetailsModel createPersonDetailsModel(PersonId id) { Person person = repository.findPersonById(id); return personDetailsModelMapper.map(person); } } <file_sep>/src/main/java/uk/co/o2/facewall/facade/validators/TeamValidator.java package uk.co.o2.facewall.facade.validators; import uk.co.o2.facewall.domain.Team; import uk.co.o2.facewall.facade.validators.annotations.ValidTeam; import javax.validation.ConstraintValidator; import javax.validation.ConstraintValidatorContext; import static uk.co.o2.facewall.domain.NoTeam.noTeam; public class TeamValidator implements ConstraintValidator<ValidTeam, Team> { @Override public void initialize(ValidTeam constraintAnnotation) { } @Override public boolean isValid(Team team, ConstraintValidatorContext context) { return !team.equals(noTeam()); } } <file_sep>/src/test/java/uk/co/o2/facewall/facade/TeamFacadeTest.java package uk.co.o2.facewall.facade; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mock; import org.mockito.runners.MockitoJUnitRunner; import uk.co.o2.facewall.data.TeamRepository; import uk.co.o2.facewall.domain.Person; import uk.co.o2.facewall.domain.StubbedTeam; import uk.co.o2.facewall.domain.Team; import uk.co.o2.facewall.facade.modelmapper.TeamDetailsModelMapper; import uk.co.o2.facewall.model.TeamDetailsModelMatcher; import uk.co.o2.facewall.model.TeamListModel; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import static org.hamcrest.MatcherAssert.assertThat; import static org.mockito.Mockito.*; import static uk.co.o2.facewall.model.TeamDetailsModelMatcher.aTeamDetailsModel; import static uk.co.o2.facewall.util.IterableMatchers.containsExhaustivelyInAnyOrder; @RunWith(MockitoJUnitRunner.class) public class TeamFacadeTest { @Mock TeamRepository teamRepository; private TeamFacade teamFacade; @Before public void setUp() throws Exception { teamFacade = new TeamFacade(teamRepository, new TeamDetailsModelMapper()); } @Test public void map_teams_to_teamlist_test() { Person person1 = mock(Person.class); Person person2 = mock(Person.class); Person person3 = mock(Person.class); Person person4 = mock(Person.class); Person person5 = mock(Person.class); Person person6 = mock(Person.class); Team team1 = new StubbedTeam("team1", "blue", new ArrayList<>(Arrays.asList(person1))); Team team2 = new StubbedTeam("team2", "red", new ArrayList<>(Arrays.asList(person2,person3))); Team team3 = new StubbedTeam("team3", "green", new ArrayList<>(Arrays.asList(person4,person5,person6))); List<Team> teams = new ArrayList<Team>(Arrays.asList(team1, team2, team3)); when(teamRepository.listTeams()).thenReturn(teams); TeamDetailsModelMatcher team1Matcher = aTeamDetailsModel().named("team1").withColour("blue").sized(1); TeamDetailsModelMatcher team2Matcher = aTeamDetailsModel().named("team2").withColour("red").sized(2); TeamDetailsModelMatcher team3Matcher = aTeamDetailsModel().named("team3").withColour("green").sized(3); TeamListModel result = teamFacade.createTeamListModel(); assertThat(result.entries, containsExhaustivelyInAnyOrder(team1Matcher, team2Matcher, team3Matcher)); verify(teamRepository).listTeams(); } } <file_sep>/src/test/java/uk/co/o2/facewall/model/TeamSearchResultMatcher.java package uk.co.o2.facewall.model; import org.hamcrest.Description; import org.hamcrest.TypeSafeMatcher; import uk.co.o2.facewall.util.CompositeMatcher; public class TeamSearchResultMatcher extends CompositeMatcher<TeamSearchResult> { private TeamSearchResultMatcher() { super(); } public static TeamSearchResultMatcher aTeamSearchResult() { return new TeamSearchResultMatcher(); } public TeamSearchResultMatcher named(final String name) { add(new TypeSafeMatcher<TeamSearchResult>() { @Override public boolean matchesSafely(TeamSearchResult target) { return target.name.equals(name); } @Override public void describeTo(Description description) { description.appendText(String.format("whose name is %s", name)); } }); return this; } } <file_sep>/src/main/java/uk/co/o2/facewall/facade/validators/annotations/ValidTeam.java package uk.co.o2.facewall.facade.validators.annotations; import uk.co.o2.facewall.facade.validators.TeamValidator; import javax.validation.Constraint; import javax.validation.Payload; import java.lang.annotation.Documented; import java.lang.annotation.Retention; import java.lang.annotation.Target; import static java.lang.annotation.ElementType.*; import static java.lang.annotation.ElementType.PARAMETER; import static java.lang.annotation.RetentionPolicy.RUNTIME; @Target({ METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER }) @Retention(RUNTIME) @Documented @Constraint(validatedBy = TeamValidator.class) public @interface ValidTeam { String message() default "Team is not valid."; Class<?>[] groups() default { }; Class<? extends Payload>[] payload() default { }; @Target({ FIELD, METHOD, PARAMETER, ANNOTATION_TYPE }) @Retention(RUNTIME) @Documented @interface List { ValidTeam[] value(); } }<file_sep>/src/main/java/uk/co/o2/facewall/facade/validators/UserModelValidator.java package uk.co.o2.facewall.facade.validators; import uk.co.o2.facewall.data.TeamRepository; import uk.co.o2.facewall.data.dto.PersonInformation; import uk.co.o2.facewall.domain.Team; import uk.co.o2.facewall.facade.AccountsFacade; import uk.co.o2.facewall.model.UserModel; import java.util.InputMismatchException; import java.util.List; import static uk.co.o2.facewall.application.Facewall.facewall; import static uk.co.o2.facewall.data.dto.PersonInformation.newPersonInformation; import static uk.co.o2.facewall.domain.NoTeam.noTeam; import static uk.co.o2.facewall.domain.Query.newExactQuery; import static java.util.UUID.randomUUID; public class UserModelValidator { private final TeamRepository teamRepository; public UserModelValidator(TeamRepository teamRepository) { this.teamRepository = teamRepository; } public ValidatedUserModel validate(UserModel userModel) { PersonInformation personInformation = createPersonInformation(userModel); Team team = createTeam(userModel); return new ValidatedUserModel(personInformation, team); } private Team createTeam(UserModel userModel) { Team team; List<Team> teamsList = teamRepository.queryTeams(newExactQuery(userModel.team)); if(teamsList.isEmpty()) { team = noTeam(); } else { team = teamsList.get(0); } return team; } private PersonInformation createPersonInformation(UserModel userModel) { return newPersonInformation() .withId(randomUUID().toString()) // TODO: change to user-chosen permalink (or email) .named(userModel.name) .withPicture(userModel.imgUrl) .withEmail(userModel.email) .withPassword(userModel.password) .withRole(userModel.role) .withScrum(userModel.scrum) .withDetails(userModel.details) .withLocation(userModel.location) .withOfficeLocation(userModel.officeLocation) .build(); } } <file_sep>/src/main/java/uk/co/o2/facewall/model/Location.java package uk.co.o2.facewall.model; import java.util.LinkedHashMap; import java.util.Map; public enum Location { PUNE ("Pune, India"), BATH_ROAD ("Bath Road, Slough, UK"), BUCKINGHAM_AVENUE ("Buckingham Avenue, Slough, UK"), LEEDS ("Leeds, UK"); private String locationName; Location(String locationName) { this.locationName = locationName; } private String getLocationName() { return locationName; } public Map<String, String> options() { LinkedHashMap<String, String> vals = new LinkedHashMap<>(); for(Location location : Location.values()) { vals.put(location.name(), location.locationName); } return vals; } } <file_sep>/functional-tests/src/test/java/uk/co/o2/facewall/functionaltests/selenium/pages/TeamListPage.java package uk.co.o2.facewall.functionaltests.selenium.pages; import org.openqa.selenium.By; import org.openqa.selenium.WebElement; import uk.co.o2.facewall.functionaltests.selenium.common.WebBrowser; import java.util.List; public class TeamListPage { public TeamDetailsPage clickOPPTeam() { WebBrowser.findElement(By.linkText("OPP")).click(); return new TeamDetailsPage(); } public boolean isOnPageForTeam(String teamName) { List<WebElement> teamArray = WebBrowser.findElements(By.className("entry")); boolean result = false; for(int i = 0; i < teamArray.size(); i++) { if(teamArray.get(i).getAttribute("data-qa-team-name").contains(teamName)) { result = true; break; } } return result; } } <file_sep>/src/main/java/uk/co/o2/facewall/data/dao/database/query/DatabaseQueryFactory.java package uk.co.o2.facewall.data.dao.database.query; public class DatabaseQueryFactory { private final FacewallQueryResultsMapper queryResultsMapper; public DatabaseQueryFactory(FacewallQueryResultsMapper queryResultsMapper) { this.queryResultsMapper = queryResultsMapper; } public PersonDatabaseQueryBuilder forPersons() { return new PersonDatabaseQueryBuilder(queryResultsMapper); } public TeamDatabaseQueryBuilder forTeams() { return new TeamDatabaseQueryBuilder(queryResultsMapper); } } <file_sep>/src/test/java/uk/co/o2/facewall/data/dao/TeamNodeMatcher.java package uk.co.o2.facewall.data.dao; import uk.co.o2.facewall.data.dao.database.RelationshipTypes; import org.hamcrest.Description; import org.hamcrest.Matcher; import org.hamcrest.TypeSafeMatcher; import org.neo4j.graphdb.Direction; import org.neo4j.graphdb.Node; import uk.co.o2.facewall.util.CompositeMatcher; import java.util.List; public class TeamNodeMatcher extends CompositeMatcher<Node> { private TeamNodeMatcher(){ super(); } public static TeamNodeMatcher aTeamNode() { return new TeamNodeMatcher(); } public TeamNodeMatcher withId(final String id) { add(new TypeSafeMatcher<Node>() { @Override public boolean matchesSafely(Node target) { return id.equals(target.getProperty("id")); } @Override public void describeTo(Description description) { description.appendText("with an id of ").appendValue(id); } }); return this; } public TeamNodeMatcher withName(final String name) { add(new TypeSafeMatcher<Node>() { @Override public boolean matchesSafely(Node target) { return name.equals(target.getProperty("name")); } @Override public void describeTo(Description description) { description.appendText("named ").appendValue(name); } }); return this; } public TeamNodeMatcher withColour(final String colour) { add(new TypeSafeMatcher<Node>() { @Override public boolean matchesSafely(Node target) { return colour.equals(target.getProperty("colour")); } @Override public void describeTo(Description description) { description.appendText("with colour: ").appendValue(colour); } }); return this; } public TeamNodeMatcher relatedToPersonNodes(final Matcher<List<Node>> personNodes) { add(new TypeSafeMatcher<Node>() { @Override public boolean matchesSafely(Node target) { return personNodes.matches(target.getRelationships(RelationshipTypes.TEAMMEMBER_OF, Direction.INCOMING)); } @Override public void describeTo(Description description) { description.appendText("with members: ").appendDescriptionOf(personNodes); } }); return this; } }<file_sep>/src/test/java/uk/co/o2/facewall/domain/QueryTest.java package uk.co.o2.facewall.domain; import org.junit.Test; import static uk.co.o2.facewall.domain.Query.*; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.core.Is.is; public class QueryTest { @Test public void case_sensitive_query_for_keywords() { Query result = newCaseSensitiveQuery("keywords"); assertThat(result.queryString().value, is( ".*keywords.*" )); } @Test public void case_insensitive_query_for_keywords() { Query result = newCaseInsensitiveQuery("keywords"); assertThat(result.queryString().value, is( "(?i).*keywords.*" )); } @Test public void empty_query() { Query result = emptyQuery(); assertThat(result.queryString().value, is( "" )); } } <file_sep>/src/main/java/uk/co/o2/facewall/data/dao/AdminDAO.java package uk.co.o2.facewall.data.dao; import uk.co.o2.facewall.data.dao.database.ItemNotFoundException; import uk.co.o2.facewall.data.dao.database.NodeIndex; import uk.co.o2.facewall.data.dao.database.PersonNode; import uk.co.o2.facewall.data.dao.database.RelationshipTypes; import uk.co.o2.facewall.data.datatype.PersonId; import uk.co.o2.facewall.data.datatype.TeamId; import uk.co.o2.facewall.data.dto.PersonInformation; import org.neo4j.graphdb.GraphDatabaseService; import org.neo4j.graphdb.Node; import org.neo4j.graphdb.Transaction; import org.neo4j.graphdb.index.Index; import org.neo4j.graphdb.index.IndexHits; import org.neo4j.graphdb.index.IndexManager; import java.util.Map; import static uk.co.o2.facewall.data.dao.database.NodeIndex.Persons; import static uk.co.o2.facewall.data.dao.database.NodeIndex.Teams; import static uk.co.o2.facewall.data.dao.database.PersonNode.newPersonNode; public class AdminDAO { private final GraphDatabaseService graphDatabaseService; public AdminDAO(GraphDatabaseService graphDatabaseService) { this.graphDatabaseService = graphDatabaseService; } public void savePersonInformation(PersonInformation personInformation) { Transaction tx = graphDatabaseService.beginTx(); try { PersonNode personNode = newPersonNode(graphDatabaseService.createNode()); personNode.setProperties(personInformation); Index<Node> personIndex = graphDatabaseService.index().forNodes(Persons.getName()); personIndex.add(personNode.wrappedNode, Persons.getKey(), personInformation.getId().value); tx.success(); } finally { tx.finish(); } } public void addPersonToTeam(PersonId personId, TeamId teamId) throws ItemNotFoundException { Transaction tx = graphDatabaseService.beginTx(); try { Node personNode = findPersonNode(personId); Node teamNode = findTeamNode(teamId); personNode.createRelationshipTo(teamNode, RelationshipTypes.TEAMMEMBER_OF); tx.success(); } finally { tx.finish(); } } private Node findPersonNode(PersonId personId) throws ItemNotFoundException { Node personNode = lookupNodeInIndex(Persons, personId.value); if (personNode != null) { return personNode; } else { throw new ItemNotFoundException("No such person with id <" + personId.value + ">"); } } private Node findTeamNode(TeamId teamId) throws ItemNotFoundException { Node teamNode = lookupNodeInIndex(Teams, teamId.value); if (teamNode != null) { return teamNode; } else { throw new ItemNotFoundException("No such team with id <" + teamId.value + ">"); } } private Node lookupNodeInIndex(NodeIndex index, Object indexedValue) { IndexManager indexManager = graphDatabaseService.index(); IndexHits<Node> indexHits = indexManager.forNodes(index.getName()).get(index.getKey(), indexedValue); return indexHits.getSingle(); } public void addPropertiesToNode(Node node, Map<String, String> propertiesList) { for (Map.Entry<String, String> property : propertiesList.entrySet()) { node.setProperty(property.getKey(), property.getValue()); } } public void addRelationshipsToNode(Node startNode, Map<Node, RelationshipTypes> relationshipList) { for (Map.Entry<Node, RelationshipTypes> relation : relationshipList.entrySet()) { startNode.createRelationshipTo(relation.getKey(), relation.getValue()); } } public Node createNode() { return graphDatabaseService.createNode(); } } <file_sep>/src/main/java/uk/co/o2/facewall/web/OverviewController.java package uk.co.o2.facewall.web; import org.glassfish.jersey.server.mvc.Viewable; import uk.co.o2.facewall.facade.AccountsFacade; import uk.co.o2.facewall.facade.OverviewFacade; import uk.co.o2.facewall.facade.SearchFacade; import uk.co.o2.facewall.model.*; import javax.ws.rs.*; import javax.ws.rs.core.*; import java.net.URI; import java.net.URISyntaxException; import static javax.ws.rs.core.Response.ok; import static javax.ws.rs.core.Response.serverError; import static uk.co.o2.facewall.application.Facewall.facewall; import static uk.co.o2.facewall.domain.Query.newCaseInsensitiveQuery; @Path("/") public class OverviewController { private final OverviewFacade overviewFacade = facewall().overviewFacade; private final SearchFacade searchFacade = facewall().searchFacade; private final AccountsFacade accountsFacade = facewall().accountsFacade; @GET public Response overview(@CookieParam(value = "facewallLoggedIn") Cookie loginCookie) { if(loginCookie != null && accountsFacade.isMatching(loginCookie.getValue())) { //OverviewModel model = overviewFacade.createOverviewModel(); //return Response.ok().entity(new Viewable("/overview.ftl", model)).build(); return Response.ok().entity(new Viewable("/homepage.ftl")).build(); } else { URI login = null; try { login = new URI("/login"); } catch (URISyntaxException e) { e.printStackTrace(); } return Response.seeOther(login).build(); } } @GET @Path("/results") public Response searchResults(@DefaultValue("") @QueryParam("keywords") String keywords, @CookieParam(value = "facewallLoggedIn") Cookie loginCookie) { if(loginCookie != null && accountsFacade.isMatching(loginCookie.getValue())) { final SearchResultsModel searchResults = searchFacade.createSearchResultsModel(newCaseInsensitiveQuery(keywords)); //TODO: This looks like scala code that has been translated into java. That's fine, but this kind of java code should be avoided if possible. Hopefully we can design it away. Response.ResponseBuilder response = serverError(); if (searchResults instanceof DefaultSearchResultsModel) { response = ok(new Viewable("/searchresults.ftl", searchResults)); } else if (searchResults instanceof PersonDetailsModel) { response = ok(new Viewable("/persondetails.ftl", searchResults)); } else if (searchResults instanceof TeamDetailsModel) { response = ok(new Viewable("/teamdetails.ftl", searchResults)); } return response.build(); } else { URI login = null; try { login = new URI("/login"); } catch (URISyntaxException e) { e.printStackTrace(); } return Response.seeOther(login).build(); } } } <file_sep>/src/test/java/uk/co/o2/facewall/facade/SignUpFacadeTest.java package uk.co.o2.facewall.facade; import uk.co.o2.facewall.data.PersonRepository; import uk.co.o2.facewall.data.TeamRepository; import uk.co.o2.facewall.data.dao.AdminDAO; import uk.co.o2.facewall.data.datatype.PersonId; import uk.co.o2.facewall.data.dto.PersonInformation; import uk.co.o2.facewall.domain.Person; import uk.co.o2.facewall.domain.StubbedTeam; import uk.co.o2.facewall.domain.Team; import uk.co.o2.facewall.domain.TeamMatcher; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.InjectMocks; import org.mockito.Mock; import org.mockito.runners.MockitoJUnitRunner; import java.util.ArrayList; import java.util.List; import static uk.co.o2.facewall.data.datatype.PersonId.newPersonId; import static uk.co.o2.facewall.data.dto.PersonInformation.newPersonInformation; import static uk.co.o2.facewall.domain.TeamMatcher.aTeam; import static java.util.Arrays.asList; import static org.hamcrest.MatcherAssert.assertThat; import static org.junit.Assert.assertEquals; import static org.mockito.Matchers.any; import static org.mockito.Mockito.*; import static uk.co.o2.facewall.util.IterableMatchers.containsExhaustivelyInOrder; @RunWith(MockitoJUnitRunner.class) public class SignUpFacadeTest { private static final Team someTeam = mock(Team.class); @Mock private PersonRepository mockPersonRepository; @Mock private TeamRepository mockTeamRepository; @Mock private AdminDAO adminDAO; @InjectMocks private SignUpFacade signUpFacade; @Test public void register_person_saves_person_to_the_database() throws Exception { PersonInformation expectedPersonInformation = newPersonInformation().build(); signUpFacade.registerPerson(expectedPersonInformation, someTeam); verify(adminDAO).savePersonInformation(expectedPersonInformation); } @Test public void register_person_retrieves_saved_person_and_adds_to_team() throws Exception { PersonInformation personInformation = newPersonInformation() .withId("person-id") .build(); Person expectedPerson = mock(Person.class); when(mockPersonRepository.findPersonById(any(PersonId.class))).thenReturn(expectedPerson); Team mockTeam = mock(Team.class); signUpFacade.registerPerson(personInformation, mockTeam); verify(mockPersonRepository).findPersonById(newPersonId("person-id")); verify(mockTeam).addMember(expectedPerson); } @Test public void get_available_sorted_teams_sorts_correctly() throws Exception { List<Person> emptyPersonList = new ArrayList<>(); Team stubbedTeam1 = new StubbedTeam("zCommerce", "blue", emptyPersonList); Team stubbedTeam2 = new StubbedTeam("eCom", "red", emptyPersonList); Team stubbedTeam3 = new StubbedTeam("Ars", "green", emptyPersonList); Team stubbedTeam4 = new StubbedTeam("Portal", "grey", emptyPersonList); when(mockTeamRepository.listTeams()).thenReturn( asList(stubbedTeam1, stubbedTeam2, stubbedTeam3, stubbedTeam4)); List<Team> result = signUpFacade.getSortedAvailableTeams(); TeamMatcher expectedTeam1 = aTeam().named("Ars").withColour("green"); TeamMatcher expectedTeam2 = aTeam().named("eCom").withColour("red"); TeamMatcher expectedTeam3 = aTeam().named("Portal").withColour("grey"); TeamMatcher expectedTeam4 = aTeam().named("zCommerce").withColour("blue"); assertThat(result, containsExhaustivelyInOrder( expectedTeam1, expectedTeam2, expectedTeam3, expectedTeam4)); } @Test public void get_sorted_available_team_names_returns_list_of_expected_names() throws Exception { List<Person> emptyPersonList = new ArrayList<>(); Team stubbedTeam1 = new StubbedTeam("Ars", "green", emptyPersonList); Team stubbedTeam2 = new StubbedTeam("eCom", "red", emptyPersonList); Team stubbedTeam3 = new StubbedTeam("Portal", "grey", emptyPersonList); Team stubbedTeam4 = new StubbedTeam("zCommerce", "blue", emptyPersonList); when(mockTeamRepository.listTeams()).thenReturn( asList(stubbedTeam1, stubbedTeam2, stubbedTeam3, stubbedTeam4)); List<String> expectedResult = new ArrayList<>(asList("Ars", "eCom", "Portal", "zCommerce")); List<String> result = signUpFacade.getSortedAvailableTeamNames(); assertEquals(expectedResult, result); } @Test public void get_sortedAvailable_teams_delegates_to_team_repository() throws Exception { signUpFacade.getSortedAvailableTeams(); verify(mockTeamRepository).listTeams(); } } <file_sep>/facewall-database-utils/src/main/java/uk/co/o2/facewall/databaseutils/config/FacewallDatabaseConfiguration.java package uk.co.o2.facewall.databaseutils.config; import org.neo4j.graphdb.RelationshipType; import static org.neo4j.graphdb.DynamicRelationshipType.withName; public class FacewallDatabaseConfiguration { public final static RelationshipType MEMBER_OF = withName("TEAMMEMBER_OF"); public enum IndexConfiguration { Persons("Persons", "id"), Teams("Teams", "id"); public final String indexName; public final String key; private IndexConfiguration(String indexName, String key) { this.indexName = indexName; this.key = key; } } } <file_sep>/src/main/java/uk/co/o2/facewall/model/TeamSearchResult.java package uk.co.o2.facewall.model; public class TeamSearchResult { public String name; public String colour; public TeamSearchResult(String name, String colour) { this.name = name; this.colour = colour; } } <file_sep>/src/main/java/uk/co/o2/facewall/facade/modelmapper/TeamDetailsModelMapper.java package uk.co.o2.facewall.facade.modelmapper; import uk.co.o2.facewall.domain.Team; import uk.co.o2.facewall.model.OverviewEntryModel; import uk.co.o2.facewall.model.TeamDetailsModel; import uk.co.o2.facewall.model.TeamDetailsWithPersonsModel; import java.util.List; public class TeamDetailsModelMapper { public TeamDetailsModel map(Team team) { return new TeamDetailsModel(team.name(), team.colour(), team.members().size()); } public TeamDetailsWithPersonsModel mapWithPersons(Team team, List<OverviewEntryModel> entries ) { return new TeamDetailsWithPersonsModel(team.name(), team.colour(), team.members().size(), entries); } } <file_sep>/src/main/java/uk/co/o2/facewall/data/dao/database/query/FacewallQueryResultsMapper.java package uk.co.o2.facewall.data.dao.database.query; import uk.co.o2.facewall.data.dao.database.QueryResultRow; import uk.co.o2.facewall.data.dto.PersonInformation; import uk.co.o2.facewall.data.dto.PersonInformationMapper; import uk.co.o2.facewall.data.dto.TeamInformation; import uk.co.o2.facewall.data.dto.TeamInformationMapper; import org.neo4j.graphdb.Node; import java.util.Map; public class FacewallQueryResultsMapper { private final PersonInformationMapper personInformationMapper; private final TeamInformationMapper teamInformationMapper; public FacewallQueryResultsMapper(PersonInformationMapper personInformationMapper, TeamInformationMapper teamInformationMapper) { this.personInformationMapper = personInformationMapper; this.teamInformationMapper = teamInformationMapper; } public Iterable<QueryResultRow> map(PersonNodeKey personNodeKey, TeamNodeKey teamNodeKey, Iterable<Map<String, Object>> cypherQueryResults) { FacewallQueryResults results = new FacewallQueryResults(); for (Map<String, Object> cypherQueryResultRow : cypherQueryResults) { PersonInformation personInformation = personInformationMapper.map((Node) cypherQueryResultRow.get(personNodeKey.value)); TeamInformation teamInformation = teamInformationMapper.map((Node) cypherQueryResultRow.get(teamNodeKey.value)); results.add(personInformation, teamInformation); } return results; } } <file_sep>/src/test/java/uk/co/o2/facewall/model/TeamDetailsWithPersonsModelMatcher.java package uk.co.o2.facewall.model; import org.hamcrest.Description; import org.hamcrest.TypeSafeMatcher; import uk.co.o2.facewall.util.CompositeMatcher; import java.util.List; public class TeamDetailsWithPersonsModelMatcher extends CompositeMatcher<TeamDetailsWithPersonsModel> { private TeamDetailsWithPersonsModelMatcher() { super(); } public static TeamDetailsWithPersonsModelMatcher aTeamDetailsWithPersonsModel() { return new TeamDetailsWithPersonsModelMatcher(); } public TeamDetailsWithPersonsModelMatcher named(final String name) { add(new TypeSafeMatcher<TeamDetailsWithPersonsModel>() { @Override public boolean matchesSafely(TeamDetailsWithPersonsModel target) { return target.name.equals(name); } @Override public void describeTo(Description description) { description.appendText(String.format("whose name is %s", name)); } }); return this; } public TeamDetailsWithPersonsModelMatcher withColour(final String colour) { add(new TypeSafeMatcher<TeamDetailsWithPersonsModel>() { @Override public boolean matchesSafely(TeamDetailsWithPersonsModel target) { return target.colour.equals(colour); } @Override public void describeTo(Description description) { description.appendText(String.format("whose colour is %s", colour)); } }); return this; } public TeamDetailsWithPersonsModelMatcher sized(final int size) { add(new TypeSafeMatcher<TeamDetailsWithPersonsModel>() { @Override public boolean matchesSafely(TeamDetailsWithPersonsModel target) { return target.size == size; } @Override public void describeTo(Description description) { description.appendText(String.format("whose size is %s", size)); } }); return this; } public TeamDetailsWithPersonsModelMatcher containing(final List<OverviewEntryModel> entries) { add(new TypeSafeMatcher<TeamDetailsWithPersonsModel>() { @Override public boolean matchesSafely(TeamDetailsWithPersonsModel target) { return target.entries.equals(entries); } @Override public void describeTo(Description description) { description.appendText(String.format("which contains entries: %s", entries.toString())); } }); return this; } } <file_sep>/src/test/java/uk/co/o2/facewall/facade/TeamDetailsFacadeTest.java package uk.co.o2.facewall.facade; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mock; import org.mockito.runners.MockitoJUnitRunner; import uk.co.o2.facewall.data.TeamRepository; import uk.co.o2.facewall.domain.*; import uk.co.o2.facewall.facade.modelmapper.OverviewModelMapper; import uk.co.o2.facewall.facade.modelmapper.TeamDetailsModelMapper; import uk.co.o2.facewall.model.OverviewEntryModelMatcher; import uk.co.o2.facewall.model.TeamDetailsWithPersonsModel; import java.util.ArrayList; import java.util.Arrays; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.core.Is.is; import static org.mockito.Mockito.when; import static uk.co.o2.facewall.data.datatype.PersonId.newPersonId; import static uk.co.o2.facewall.model.OverviewEntryModelMatcher.anOverviewEntryModel; import static uk.co.o2.facewall.util.IterableMatchers.containsExhaustivelyInOrder; @RunWith(MockitoJUnitRunner.class) public class TeamDetailsFacadeTest { @Mock TeamRepository teamRepository; TeamDetailsFacade teamDetailsFacade; @Before public void setUp() throws Exception { teamDetailsFacade = new TeamDetailsFacade(teamRepository, new TeamDetailsModelMapper(), new OverviewModelMapper()); } @Test public void returns_team_when_querying_repository() { PersonStub person1 = new PersonStub(newPersonId("1"), "person1", "pic1.img", "<EMAIL>", "BA", null); PersonStub person2 = new PersonStub(newPersonId("2"), "person2", "pic2.img", "<EMAIL>", "BA", null); Team team = new StubbedTeam("test", "blue", new ArrayList<Person>(Arrays.asList(person1, person2))); person1.setTeam(team); person2.setTeam(team); Query name = Query.newExactQuery(team.name()); when(teamRepository.findTeamByName(name)).thenReturn(team); OverviewEntryModelMatcher person1Matcher = anOverviewEntryModel().withTeamHeader("test").named("person1"); OverviewEntryModelMatcher person2Matcher = anOverviewEntryModel().withTeamHeader("test").named("person2"); TeamDetailsWithPersonsModel result = teamDetailsFacade.createTeamDetailsModel(name); assertThat(result.name, is("test")); assertThat(result.colour, is("blue")); assertThat(result.size, is(2)); assertThat(result.entries, containsExhaustivelyInOrder(person1Matcher,person2Matcher)); } } <file_sep>/src/test/java/uk/co/o2/facewall/facade/OverviewFacadeTest.java package uk.co.o2.facewall.facade; import uk.co.o2.facewall.data.PersonRepository; import uk.co.o2.facewall.domain.PersonStub; import uk.co.o2.facewall.domain.StubbedTeam; import uk.co.o2.facewall.domain.Person; import uk.co.o2.facewall.domain.Team; import uk.co.o2.facewall.facade.modelmapper.OverviewModelMapper; import uk.co.o2.facewall.model.OverviewEntryModel; import uk.co.o2.facewall.model.OverviewEntryModelMatcher; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mock; import org.mockito.runners.MockitoJUnitRunner; import uk.co.o2.facewall.model.OverviewModel; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import static uk.co.o2.facewall.data.datatype.PersonId.newPersonId; import static uk.co.o2.facewall.domain.NoTeam.noTeam; import static uk.co.o2.facewall.model.OverviewEntryModelMatcher.anOverviewEntryModel; import static org.junit.Assert.assertThat; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; import static uk.co.o2.facewall.util.IterableMatchers.containsExhaustivelyInOrder; @RunWith(MockitoJUnitRunner.class) public class OverviewFacadeTest { @Mock PersonRepository mockRepo; private OverviewFacade overviewFacade; @Before public void setUp() throws Exception { overviewFacade = new OverviewFacade(mockRepo, new OverviewModelMapper()); } @Test public void map_repo_to_domain_objects_to_overview_model_test() { PersonStub ecom_member1 = new PersonStub(newPersonId("3"), "ecom_member1", "pic1.img", "email1@testemail.com", "BA", null); PersonStub ecom_member2 = new PersonStub(newPersonId("4"), "ecom_member2", "pic2.img", "<EMAIL>", "BA", null); PersonStub pr_member = new PersonStub(newPersonId("5"), "pr_member", "pic3.img", "<EMAIL>", "BA", null); Team ecom = new StubbedTeam("ecom", "blue", new ArrayList<Person>(Arrays.asList(ecom_member1, ecom_member2))); Team productResources = new StubbedTeam("productResources", "green", new ArrayList<Person>(Arrays.asList(pr_member))); ecom_member1.setTeam(ecom); ecom_member2.setTeam(ecom); pr_member.setTeam(productResources); List<Person> persons = new ArrayList<Person>(Arrays.asList(ecom_member1, ecom_member2, pr_member)); when(mockRepo.listPersons()).thenReturn(persons); OverviewEntryModelMatcher ecom1Matcher = anOverviewEntryModel().withTeamHeader("ecom").named("ecom_member1"); OverviewEntryModelMatcher ecom2Matcher = anOverviewEntryModel().withTeamHeader("ecom").named("ecom_member2"); OverviewEntryModelMatcher productResourcesMatcher = anOverviewEntryModel().withTeamHeader("productResources").named("pr_member"); OverviewModel result = overviewFacade.createOverviewModel(); assertThat(result.entries, containsExhaustivelyInOrder(ecom1Matcher, ecom2Matcher, productResourcesMatcher)); verify(mockRepo).listPersons(); } @Test public void orders_overview_alphabetically_by_name_when_same_team(){ PersonStub ecom_member1 = new PersonStub(newPersonId("3"), "bob", "pic1.img", "<EMAIL>", "BA", null); PersonStub ecom_member2 = new PersonStub(newPersonId("4"), "dave", "pic2.img", "<EMAIL>", "BA", null); PersonStub ecom_member3 = new PersonStub(newPersonId("4"), "dave2", "pic2.img", "<EMAIL>", "BA", null); PersonStub ecom_member4 = new PersonStub(newPersonId("7"), "rick", "pic5.img", "<EMAIL>", "BA", null); Team ecom = new StubbedTeam("ecom", "blue", new ArrayList<Person>(Arrays.asList(ecom_member1))); ecom_member1.setTeam(ecom); ecom_member2.setTeam(ecom); ecom_member3.setTeam(ecom); ecom_member4.setTeam(ecom); List<Person> persons = new ArrayList<Person>(Arrays.asList(ecom_member3, ecom_member2, ecom_member1, ecom_member4)); when(mockRepo.listPersons()).thenReturn(persons); OverviewEntryModelMatcher ecom1Matcher = anOverviewEntryModel().withTeamHeader("ecom").named("bob"); OverviewEntryModelMatcher ecom2Matcher = anOverviewEntryModel().withTeamHeader("ecom").named("dave"); OverviewEntryModelMatcher ecom3Matcher = anOverviewEntryModel().withTeamHeader("ecom").named("dave2"); OverviewEntryModelMatcher ecom4Matcher = anOverviewEntryModel().withTeamHeader("ecom").named("rick"); OverviewModel result = overviewFacade.createOverviewModel(); assertThat(result.entries, containsExhaustivelyInOrder(ecom1Matcher, ecom2Matcher, ecom3Matcher, ecom4Matcher)); verify(mockRepo).listPersons(); } @Test public void orders_overviews_alphabetically_by_team_test() { PersonStub ecom_member1 = new PersonStub(newPersonId("3"), "ecom_member1", "pic1.img", "<EMAIL>", "BA", null); PersonStub ecom_member2 = new PersonStub(newPersonId("7"), "ecom_member2", "pic5.img", "<EMAIL>", "BA", null); PersonStub pr_member = new PersonStub(newPersonId("4"), "pr_member", "pic2.img", "email<EMAIL>", "BA", null); Team ecom = new StubbedTeam("ecom", "blue", new ArrayList<Person>(Arrays.asList(ecom_member1))); Team productResources = new StubbedTeam("productResources", "green", new ArrayList<Person>(Arrays.asList(pr_member))); ecom_member1.setTeam(ecom); ecom_member2.setTeam(ecom); pr_member.setTeam(productResources); List<Person> persons = new ArrayList<Person>(Arrays.asList(ecom_member2, pr_member, ecom_member1)); when(mockRepo.listPersons()).thenReturn(persons); OverviewEntryModelMatcher ecom1Matcher = anOverviewEntryModel().withTeamHeader("ecom").named("ecom_member1"); OverviewEntryModelMatcher ecom2Matcher = anOverviewEntryModel().withTeamHeader("ecom").named("ecom_member2"); OverviewEntryModelMatcher productResourcesMatcher = anOverviewEntryModel().withTeamHeader("productResources").named("pr_member"); OverviewModel result = overviewFacade.createOverviewModel(); assertThat(result.entries, containsExhaustivelyInOrder(ecom1Matcher, ecom2Matcher, productResourcesMatcher)); verify(mockRepo).listPersons(); } @Test public void orders_overview_alphabetically_by_team_with_teamless_last_test() { PersonStub ecom_member1 = new PersonStub(newPersonId("3"), "ecom_member1", "pic1.img", "<EMAIL>", "BA", null); PersonStub ecom_member2 = new PersonStub(newPersonId("7"), "ecom_member2", "pic5.img", "<EMAIL>", "BA", null); PersonStub pr_member = new PersonStub(newPersonId("4"), "pr_member", "pic2.img", "<EMAIL>", "BA", null); PersonStub teamless_member1 = new PersonStub(newPersonId("5"), "teamless_member1", "pic3.img", "<EMAIL>", "BA", null); PersonStub teamless_member2 = new PersonStub(newPersonId("6"), "teamless_member2", "pic4.img", "<EMAIL>", "BA", null); Team ecom = new StubbedTeam("ecom", "blue", new ArrayList<Person>(Arrays.asList(ecom_member1))); Team productResources = new StubbedTeam("productResources", "green", new ArrayList<Person>(Arrays.asList(pr_member))); ecom_member1.setTeam(ecom); ecom_member2.setTeam(ecom); pr_member.setTeam(productResources); teamless_member1.setTeam(noTeam()); teamless_member2.setTeam(noTeam()); List<Person> persons = new ArrayList<Person>(Arrays.asList(teamless_member1, ecom_member1, teamless_member2, ecom_member2, pr_member)); when(mockRepo.listPersons()).thenReturn(persons); OverviewEntryModelMatcher ecom1Matcher = anOverviewEntryModel().withTeamHeader("ecom").named("ecom_member1"); OverviewEntryModelMatcher ecom2Matcher = anOverviewEntryModel().withTeamHeader("ecom").named("ecom_member2"); OverviewEntryModelMatcher productResourcesMatcher = anOverviewEntryModel().withTeamHeader("productResources").named("pr_member"); OverviewEntryModelMatcher teamless1Matcher = anOverviewEntryModel().withTeamHeader("").named("teamless_member1"); OverviewEntryModelMatcher teamless2Matcher = anOverviewEntryModel().withTeamHeader("").named("teamless_member2"); OverviewModel result = overviewFacade.createOverviewModel(); assertThat(result.entries, containsExhaustivelyInOrder(ecom1Matcher, ecom2Matcher, productResourcesMatcher, teamless1Matcher, teamless2Matcher)); verify(mockRepo).listPersons(); } } <file_sep>/src/test/java/uk/co/o2/facewall/data/dto/TeamDTOMatcher.java package uk.co.o2.facewall.data.dto; import org.hamcrest.Description; import org.hamcrest.Matcher; import org.hamcrest.TypeSafeMatcher; import uk.co.o2.facewall.util.CompositeMatcher; public class TeamDTOMatcher extends CompositeMatcher<TeamDTO> { private TeamDTOMatcher() {} public static TeamDTOMatcher aTeamDTO() { return new TeamDTOMatcher(); } public TeamDTOMatcher withTeamInformation(final Matcher<TeamInformation> teamInformationMatcher) { add(new TypeSafeMatcher<TeamDTO>() { @Override public boolean matchesSafely(TeamDTO teamDTO) { return teamInformationMatcher.matches(teamDTO.teamInformation); } @Override public void describeTo(Description description) { description.appendText("where the team information is: ").appendDescriptionOf(teamInformationMatcher); } }); return this; } public TeamDTOMatcher whereMemberInformation(final Matcher<Iterable<PersonInformation>> memberInformationMatcher) { add(new TypeSafeMatcher<TeamDTO>() { @Override public boolean matchesSafely(TeamDTO teamDTO) { return memberInformationMatcher.matches(teamDTO.memberInformation); } @Override public void describeTo(Description description) { description.appendText("where the members' information: ").appendDescriptionOf(memberInformationMatcher); } }); return this; } } <file_sep>/facewall-database-utils/build.gradle apply plugin: 'java' apply plugin: 'idea' dependencies { compile "org.neo4j:neo4j-kernel:1.9.8:tests" compile "org.neo4j:neo4j-rest-graphdb:1.9" compile "org.neo4j:neo4j-cypher:1.9.8" }<file_sep>/src/main/java/uk/co/o2/facewall/domain/Persons.java package uk.co.o2.facewall.domain; import java.util.Comparator; import java.util.Iterator; import java.util.List; import static uk.co.o2.facewall.domain.NoTeam.noTeam; import static java.lang.String.CASE_INSENSITIVE_ORDER; import static java.util.Collections.sort; public class Persons implements Iterable<Person> { private static final Comparator<Person> teamNameThenName = new TeamNameThenNamePersonComparator(); private final List<Person> persons; private Persons(List<Person> persons) { this.persons = persons; } public static Persons newPersons(List<Person> personList) { return new Persons(personList); } @Override public Iterator<Person> iterator() { return persons.iterator(); } public void sortByTeamNameThenName() { sort(persons, teamNameThenName); } private static class TeamNameThenNamePersonComparator implements Comparator<Person> { @Override public int compare(Person person1, Person person2) { int result = compareLackOfTeams(person1, person2); if (result == 0) { result = CASE_INSENSITIVE_ORDER.compare(person1.team().name(), person2.team().name()); if (result == 0) { result = CASE_INSENSITIVE_ORDER.compare(person1.name(), person2.name()); } } return result; } private static int compareLackOfTeams(Person person1, Person person2) { int result = 0; if (person1.team() == noTeam()) { result++; } if (person2.team() == noTeam()) { result--; } return result; } } } <file_sep>/facewall-database-utils/src/main/java/uk/co/o2/facewall/databaseutils/fixture/PersonDataFactory.java package uk.co.o2.facewall.databaseutils.fixture; import java.util.ArrayList; import java.util.List; import static uk.co.o2.facewall.databaseutils.fixture.PersonData.newPersonData; import static java.util.Arrays.asList; import static java.util.UUID.randomUUID; import static java.util.concurrent.ThreadLocalRandom.current; abstract public class PersonDataFactory { private static final List<String> firstNames = asList( "Bertrand", "Friedrich", "Jonathan", "Rene", "David", "Ludwig", "Donald", "Hilary", "Immanuel", "George", "John", "Gottfried", "<NAME>", "Gottlob", "Willard", "Rudolf" ); private static final List<String> lastNames = asList( "Russell", "Nietzshe", "Searle", "Descartes", "Hume", "Wittgenstein", "Davidson", "Putnam", "Kant", "Berkeley", "Locke", "Leibniz", "Moore", "Frege", "Quine", "Carnap" ); private static final List<String> roles = asList( "Happy", "Space", "Black", "Negative", "Positive", "Cynical", "Daring", "Useless", "Crazy", "Outcast" ); private static final List<String> scrums = asList( "BAU", "BAU2", "BAU3", "BAU4", "BAU5" ); private static final List<String> locations = asList( "Bath Road, Slough", "Buckingham Avenue", "Leeds", "Pune, India", "Canada", "Air Street, London" ); private PersonDataFactory() { } public static List<PersonData.Builder> defaultPersons(int number) { List<PersonData.Builder> result = new ArrayList<>(); for (int i = 0; i < number; i++) { result.add(defaultPerson()); } return result; } public static PersonData.Builder defaultPerson() { final String name = randomName(); final String email = emailFromName(name); final String role = randomRole(); final String location = randomLocation(); final String scrum = randomScrum(); return newPersonData() .withProperty("id", randomUUID().toString()) .withProperty("name", name) .withProperty("picture", "http://dummyimage.com/200x200/000/fff.png&text=" + name) .withProperty("email", email) .withProperty("role", role) .withProperty("scrum", scrum) .withProperty("location", location); } private static String randomRole() { return roles.get(randomInt(roles.size())) + " Philosopher"; } private static String randomName() { String firstName = firstNames.get(randomInt(firstNames.size())); String lastName = lastNames.get(randomInt(lastNames.size())); return firstName + " " + lastName; } private static String randomScrum() { String scrum = scrums.get(randomInt(scrums.size())); return scrum; } private static String randomLocation() { String location = locations.get(randomInt(locations.size())); return location; } private static int randomInt(int bound) { return current().nextInt(bound); } private static String emailFromName(String name) { String names[] = name.split(" "); return names[0] + "@" + names[1] + ".edu.net"; } } <file_sep>/src/main/java/uk/co/o2/facewall/data/dao/database/query/DatabaseQuery.java package uk.co.o2.facewall.data.dao.database.query; import uk.co.o2.facewall.data.dao.database.QueryResultRow; import org.neo4j.rest.graphdb.query.QueryEngine; import java.util.Map; public interface DatabaseQuery { Iterable<QueryResultRow> execute(QueryEngine<Map<String, Object>> queryEngine); } <file_sep>/src/main/java/uk/co/o2/facewall/data/dao/database/query/TeamNodeKey.java package uk.co.o2.facewall.data.dao.database.query; import uk.co.o2.facewall.util.AbstractWrappingDataType; public class TeamNodeKey extends AbstractWrappingDataType<String> { protected TeamNodeKey(String value) { super(value); } static public TeamNodeKey newTeamNodeKey(String value) { return new TeamNodeKey(value); } } <file_sep>/src/test/java/uk/co/o2/facewall/data/dto/PersonDTOMatcher.java package uk.co.o2.facewall.data.dto; import org.hamcrest.Description; import org.hamcrest.Matcher; import org.hamcrest.TypeSafeMatcher; import uk.co.o2.facewall.util.CompositeMatcher; public class PersonDTOMatcher extends CompositeMatcher<PersonDTO> { private PersonDTOMatcher() {} public static PersonDTOMatcher aPersonDTO() { return new PersonDTOMatcher(); } public PersonDTOMatcher withPerson(final Matcher<PersonInformation> personMatcher) { add(new TypeSafeMatcher<PersonDTO>() { @Override public boolean matchesSafely(PersonDTO personDTO) { return personMatcher.matches(personDTO.personInformation); } @Override public void describeTo(Description description) { description.appendText("with a person node matching: ").appendDescriptionOf(personMatcher); } }); return this; } public PersonDTOMatcher withTeam(final Matcher<TeamInformation> teamMatcher) { add(new TypeSafeMatcher<PersonDTO>() { @Override public boolean matchesSafely(PersonDTO personDTO) { return teamMatcher.matches(personDTO.teamInformation); } @Override public void describeTo(Description description) { description.appendText("with a team node matching: ").appendDescriptionOf(teamMatcher); } }); return this; } } <file_sep>/src/main/java/uk/co/o2/facewall/web/PersonController.java package uk.co.o2.facewall.web; import org.glassfish.jersey.server.mvc.Viewable; import uk.co.o2.facewall.facade.AccountsFacade; import uk.co.o2.facewall.facade.PersonDetailsFacade; import uk.co.o2.facewall.model.PersonDetailsModel; import javax.ws.rs.CookieParam; import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.PathParam; import javax.ws.rs.core.Cookie; import javax.ws.rs.core.Response; import java.net.URI; import java.net.URISyntaxException; import static uk.co.o2.facewall.application.Facewall.facewall; import static uk.co.o2.facewall.data.datatype.PersonId.newPersonId; @Path("/person") public class PersonController { private final PersonDetailsFacade personDetailsFacade = facewall().personDetailsFacade; private final AccountsFacade accountsFacade = facewall().accountsFacade; @GET @Path("/{id}") public Response getPerson(@PathParam("id") String id, @CookieParam(value = "facewallLoggedIn") Cookie loginCookie) { final PersonDetailsModel person = personDetailsFacade.createPersonDetailsModel(newPersonId(id)); if(loginCookie != null && accountsFacade.isMatching(loginCookie.getValue())) { return Response.ok().entity(new Viewable("/singleperson.ftl", person)).build(); } else { URI login = null; try { login = new URI("/login"); } catch (URISyntaxException e) { e.printStackTrace(); } return Response.seeOther(login).build(); } } }
e8cf1d876ca634d54a98faeeeea1c6694a7a2d08
[ "JavaScript", "Java", "Gradle" ]
71
Java
tcable/facewall
9588119652fab3b3a2790e91d8d2a5ad3c619f5f
a2b8f302ea1f0ecb90f39f0790ff90b7c6017586
refs/heads/master
<repo_name>stemid/siptrack-contrib<file_sep>/export_user_keys/import.py #!/usr/bin/env python # coding: utf-8 # # Import keys from json by connecting them to a user in siptrack from __future__ import print_function try: from configparser import RawConfigParser except ImportError: from ConfigParser import RawConfigParser from json import loads from argparse import ArgumentParser, FileType from pprint import pprint as pp from sys import exit, stderr, stdin from getpass import getpass import siptracklib parser = ArgumentParser( description='Export a list of password keys to a user in siptrack', epilog='Example: cat keys.json | ./import.py --user stemid' ) config = RawConfigParser() parser.add_argument( '-v', '--verbose', action='count', default=False, dest='verbose', help='Verbose output, use more v\'s to increase level' ) parser.add_argument( '-u', '--user', '--username', required=True, help='Username of user to export keys from' ) parser.add_argument( '-p', '--password', action='store_true', help='Provide a user password for key connection' ) parser.add_argument( '-c', '--configuration', '--config', type=FileType('r'), help='Configuration with siptrack connection credentials' ) def main(): args = parser.parse_args() if args.configuration: config.readfp(args.configuration) else: config.read( [ './siptrack.conf', './siptrack_local.conf', '/etc/siptrack.conf' ] ) st = siptracklib.connect( config.get('siptrack', 'hostname'), config.get('siptrack', 'username'), config.get('siptrack', 'password'), config.getint('siptrack', 'port'), use_ssl=config.getboolean('siptrack', 'ssl') ) st_view = st.view_tree.getChildByName( config.get('siptrack', 'base_view'), include=['view'] ) # Take the first matching user user = st.view_tree.user_manager.getUserByName(args.user)[0] # Get the users connected subkeys connected_subkeys = [ x.password_key.oid for x in user.listChildren(include=['sub key']) ] if args.password: user_password = getpass('{user}\'s password: '.format(user=user.username)) else: user_password = None subkey_json = stdin.read() subkeys = loads(subkey_json) for subkey in subkeys: key_oid = subkey.keys()[0] key_name = subkey[key_oid].get('name').encode('utf-8') if key_oid in connected_subkeys: # Key is already connected if args.verbose: print('{key} key is already connected'.format(key=key_name)) continue elif args.verbose: print('Connecting {key} to {user}'.format( key=key_name, user=user.username )) pw_key = st.getOID(key_oid) key_password = getpass('{key} Password: '.format(key=key_name)) user.connectPasswordKey(pw_key, user_password, key_password) if __name__ == '__main__': main() <file_sep>/repl.py # coding: utf-8 # REPL loaded with Siptrack connection. # # Run like: ipython -i -- repl.py --config siptrack_local.cfg # by <NAME> <<EMAIL>> - 2015 from argparse import ArgumentParser from ConfigParser import RawConfigParser from pprint import pprint as pp import siptracklib import siptracklib.errors parser = ArgumentParser() config = RawConfigParser() def st_connect(): args = parser.parse_args() config.readfp(args.configuration) st = siptracklib.connect( config.get('siptrack', 'hostname'), config.get('siptrack', 'username'), config.get('siptrack', 'password'), config.get('siptrack', 'port'), use_ssl=config.getboolean('siptrack', 'ssl') ) return(st) # TODO: Under construction 🏗 def st_refresh(): siptracklib.cm.disconnect() return(st_connect()) parser.add_argument( '-v', '--verbose', action='count', default=False, dest='verbose', help='Verbose output, use more v\'s to increase level' ) parser.add_argument( '-c', '--configuration', type=file, required=True, help='Configuration with siptrack connection credentials' ) st = st_connect() st_view = st.view_tree.getChildByName( config.get('siptrack', 'base_view'), include=['view'] ) st_local_users = st.view_tree.user_manager.listChildren(include=['user local']) st_passtree = st_view.listChildren(include=['password tree'])[0] session_user = st.getSessionUser() device_tree = st_view.listChildren(include=['device tree'])[0] user_manager = st.view_tree.user_manager print( '''Available pre-defined variables: pp = pprint() alias st = {st} st_view = {st_view} device_tree = {device_tree} st_local_users = {st_local_users} st_passtree = {st_passtree} session_user = {session_user} user_manager = {user_manager} '''.format( st=st, st_view=st_view, st_local_users=st_local_users, st_passtree=st_passtree, session_user=session_user, device_tree=device_tree, user_manager=user_manager ) ) <file_sep>/objectsearch/objectsearch.py #!/usr/bin/env python # coding: utf-8 # # Search objects in Siptrack by attribute value. # This is the slow approach and does not use the search index. Because we want # to find any kind of attribute we must recursively search the entire object # tree. # # by <NAME> <swehack [at] gmail [dot] com> from __future__ import print_function import json from sys import exit, stderr from fnmatch import fnmatch from argparse import ArgumentParser, FileType try: from configparser import RawConfigParser except ImportError: from ConfigParser import RawConfigParser import siptracklib # Object classes defined in Siptrackdlib object_classes = [ 'D', 'C', 'CT', 'DT', 'DC', 'CQ', 'CNT', 'TMPL', 'CFGNETAUTO', 'VT', 'V', 'CA', 'PERM', 'DCTMPL', 'PT', 'PC', 'UM', 'UML', 'NT', 'IP6N', 'IP6NR', 'IP4N', 'IP4NR' ] _classes = {} for _class in object_classes: _classes[_class] = {'class types': []} _classes['D']['class types'] = ['device tree', 'device category', 'device'] _classes['DC']['class types'] = ['device tree', 'device category'] parser = ArgumentParser() config = RawConfigParser() total_values = 0 found_values = 0 def get_category_by_path(st_dt, path, separator=':'): st_category = st_dt for com in path.split(separator): st_category = st_category.getChildByName(com.encode('utf-8')) if not st_category: break else: return st_category def traverse_objects(st_object, depth=1): global total_values global found_values total_values += 1 args = parser.parse_args() maxdepth = args.max_depth if depth > maxdepth: if args.verbose > 1: print('Max recursion depth', file=stderr) return # Check if class_id matches if st_object.class_id == args.object_type: attribute = st_object.attributes.get( args.attribute_name, '' ) # Check if attribute value matches if fnmatch(attribute, args.attribute_value): print(u'{oid};{name};{attr};{val};'.format( oid=st_object.oid, name=st_object.attributes.get('name', 'UNKNOWN'), attr=args.attribute_name, val=attribute )) search_classes = [] try: search_classes = _classes[args.object_type]['class types'] except KeyError as e: if args.verbose > 1: print(str(e)) pass # Now continue recursive search for child in st_object.listChildren(include=search_classes): traverse_objects(child, depth+1) def search_objects(st_object): total_values = 0 found_values = 0 args = parser.parse_args() search_classes = [] try: search_classes = _classes[args.object_type]['class types'] except KeyError as e: if args.verbose > 1: print(str(e)) pass for node in st_object.traverse(include=search_classes): total_values += 1 print(json.dumps(node.dictDescribe())) # Continue searching if attribute does not exist attribute_value = node.attributes.get(args.attribute_name, None) if not attribute_value: continue # See if attribute value matches if fnmatch(attribute_value, args.attribute_value): found_values += 1 print('{oid};{name};{attr};{val};'.format( oid=node.oid, name=node.attributes.get('name', 'UNKNOWN'), attr=args.attribute_name, val=attribute_value )) return total_values, found_values parser.add_argument( '-v', '--verbose', action='count', default=False, dest='verbose', help='Verbose output, use more v\'s to increase verbosity' ) parser.add_argument( '-c', '--configuration', type=FileType('r'), required=True, help='Configuration with siptrack connection credentials' ) parser.add_argument( '-d', '--device-path', action='store', default=None, dest='device_path', help=('Path to the device category to use as root for the import. ' 'Separate path components with : (semicolon) by default.' 'Example: -d \'Public Cloud:Devices\'') ) parser.add_argument( '-m', '--max-depth', default=16, help='Maximum recursive depth for searching' ) parser.add_argument( '--no-csv-header', action='store_true', help='Disable CSV header' ) parser.add_argument( '-T', '--object-type', choices=object_classes, default='D', metavar='OBJECT_TYPE', help='Object type to search for, use --list-object-types to see list' ) parser.add_argument( '--list-object-types', action='store_true', help='List available object types' ) parser.add_argument( '-A', '--attribute-name', default='name', help='Attribute name to search for' ) parser.add_argument( '-V', '--attribute-value', default='?*', help=('Attribute value to search for, takes wildcards like fnmatch. ' 'Default will list any non-empty name attribute.') ) args = parser.parse_args() config.readfp(args.configuration) # Only list object class types and exit if args.list_object_types: print(object_classes) exit(0) st = siptracklib.connect( config.get('siptrack', 'hostname'), config.get('siptrack', 'username'), config.get('siptrack', '<PASSWORD>'), config.get('siptrack', 'port'), use_ssl=config.getboolean('siptrack', 'ssl') ) # Use the base view defined in the configuration st_view = st.view_tree.getChildByName( config.get('siptrack', 'base_view'), include=['view'] ) # Siptrack device tree st_dt = st_view.listChildren(include=['device tree'])[0] if args.device_path: st_root = get_category_by_path(st_dt, args.device_path) else: st_root = st_view if not st_root: if args.verbose > 1: print('{path}: not found in siptrack'.format( path=args.device_path ), file=stderr) exit(1) if not args.no_csv_header: print('oid;name;attribute;value;') #total_values, found_values = search_objects(st_root) traverse_objects(st_root) if args.verbose: print('Found {found} out of {total} values searched'.format( found=found_values, total=total_values )) <file_sep>/export_user_keys/README.md # Exporting user keys This is good as a backup for user keys until we solve other issues in Siptrackd that right now cause problems when connecting a user to a password key. The problems are often solved by restarting siptrackd but on rare occasions a user must be deleted from siptrack and re-synced with LDAP, in those cases it's good to have a backup of the users keys and a way to re-import them. <file_sep>/objectsearch/README.md # Objectsearch Searches all objects in [Siptrack](https://github.com/sii/siptrackweb) recursively for an attribute and its value. Siptrack by default only indexes a few attributes so this tool enables you to slowly search for any attribute value. The attribute value argument takes wildcards like [fname](https://docs.python.org/2/library/fnmatch.html). # Usage See ``./objectsearch.py --help`` for more info. The -T argument is the least finished feature, right now it defaults to D which is devices. I've hard coded class types ``device`` and ``device category`` to the D type so that's all it can search for. Adding more object types and their class types is trivial. ## Output Output is also subject to change but right now it's CSV with semicolon as separator and a simple header naming each column even if there are no results. ## Example python objectsearch.py -c ../siptrack_live.cfg -d 'Sweden:Stockholm' -A model -V 'UCS*' Show all devices with a model attribute that starts with UCS. python objectsearch.py -c ../siptrack_live.cfg -d 'Sweden:Stockholm' -A model -V 'UCS*' --no-csv-header | sed -n 's/^\([[:digit:]]*\);.*/http:\/\/siptrack.localhost\/display\/\1/p' Search for all devices with a model attribute matching UCS and create siptrack-links from the OID. <file_sep>/README.md # Siptrack Contributed tools Any tools people can use to work with [Siptrack](https://github.com/sii/siptrackweb). # How to get started with Siptrack ## Create virtualenv for siptrack Create a virtualenv for siptrack in ``~/.venv/siptrack`` and activate it in your shell. virtualenv ~/.venv/siptrack . ~/.venv/siptrack/bin/activate ## Download siptrack client library git clone https://github.com/sii/siptrack cd siptrack ## Install Siptrack client library in your virtualenv python setup.py install Now you should be able to run any of the tools here that require the siptrack library. Also configure the file ``siptrack_sample.cfg`` to point to your own siptrack and the base view you normally use.
9fc21cc96de09c3e07dac74b49a10972d3a4982c
[ "Markdown", "Python" ]
6
Python
stemid/siptrack-contrib
7bd31dab9aa5d4eac42d82ab1f5950bbb7a0f942
231e2ec11681d45fe4e5ce769d57ba99742bfdae
refs/heads/main
<file_sep>import { createSelector } from 'reselect'; const getTodos = (todos) => { return todos }; export const selectTodos = createSelector((state) => state.todos, getTodos); <file_sep>import combineReducers from 'react-combine-reducers'; import { TodoReducer } from './todos/TodosReducer'; export const useRootReducer = () => { const reducerMap = { todos: [TodoReducer, []] }; return combineReducers(reducerMap); }<file_sep>import React from 'react' import { MainLayout } from './layouts/MainLayout'; export const App = () => <MainLayout /> <file_sep>import React from 'react' export const Row = ({ children }) => { return ( <div className="row w-100"> {children} </div> ) } <file_sep>import React, { useContext } from 'react' import { v4 as uuidv4 } from 'uuid'; import * as TodosAction from '../../../../../stores/todos/TodosAction'; import { useForm } from '../../../../hooks/useForm' import { Container } from '../../../../components/ui/Container'; import { AppContextState } from '../../../../../context'; export const TodoFrom = () => { const { state, dispatch } = useContext(AppContextState); const [todo, handleInputChange, reset] = useForm({ description: '', author: '' }); const { description, author } = todo; const onSubmit = (e) => { e.preventDefault(); const newTodo = { ...todo, id: state.todos.length + 1 } dispatch(TodosAction.addTodo(newTodo)); reset(); } return ( <> <Container justify="center"> <h3 className="d-block">Crear una tarea</h3> </Container> <form className="pr-5 pl-5" onSubmit={onSubmit}> <div className="mb-3"> <label htmlFor="description" className="form-label">Descripción de tarea</label> <input id="description" name="description" className="form-control" placeholder="descripción..." value={description} onChange={handleInputChange} required /> </div> <div className="mb-3"> <label htmlFor="description" className="form-label">Nombre de autor</label> <input id="author" name="author" className="form-control" placeholder="Autor..." value={author} onChange={handleInputChange} required /> </div> <div className="d-grid gap-2 pr-5 pl-5"> <button className="btn btn-primary" type="submit">Guardar Tarea</button> </div> </form> </> ) } <file_sep> import { createContext } from 'react'; export const AppContextState = createContext({}); <file_sep>import React from 'react' import { Col } from '../../components/ui/Col' import { Container } from '../../components/ui/Container' import { Row } from '../../components/ui/Row' import { TodoFrom } from './components/form/TodoFrom' import { ListTodos } from './components/list/ListTodos' export const TodosPage = () => { return ( <Container> <Row> <Col> <Container className="mt-5"> <ListTodos /> </Container> </Col> <Col> <Container className="mt-5"> <TodoFrom /> </Container> </Col> </Row> </Container> ) } <file_sep>import React from 'react' import { Container } from '../components/ui/Container' import { Navbar } from '../components/ui/Navbar' import { TodosPage } from '../pages/todos/TodosPage' export const MainLayout = () => { return ( <> <Navbar /> <Container> <TodosPage /> </Container> </> ) } <file_sep> import * as ActionUtility from '../../utilities/ActionUtility'; export const ADD_TODO = 'TodosAction.ADD_TODO'; export const addTodo = (todo) => { return ActionUtility.createAction(ADD_TODO, todo); } export const UPDATE_TODO = 'TodosAction.UPDATE_TODO'; export const updateTodo = (todo) => { return ActionUtility.createAction(UPDATE_TODO, todo); } export const REMOVE_TODO = 'TodosAction.REMOVE_TODO'; export const removeTodo = (id) => { return ActionUtility.createAction(REMOVE_TODO, id); }<file_sep>import React from 'react' import PropTypes from 'prop-types' export const Container = ({ children, justify = false, className = '', ...reset }) => { return ( <div className={`container${justify ? ` d-flex justify-content-${justify}` : ''} ${className}`} {...reset}> {children} </div> ) } Container.propTypes = { children: PropTypes.node, justify: PropTypes.string, className: PropTypes.string }
d766cfaf5e33a17fdee4eeb4e37ed6c758fb2fb0
[ "JavaScript" ]
10
JavaScript
ItsRicmor/react-contex-scaffold
07f5a137b2b3f90555d8125280016766949c4225
98fd0c1a904b65150ba354751f3635396f27d273
refs/heads/master
<file_sep>using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Color_Picker { struct color { public byte r { get; set; } public byte g { get; set; } public byte b { get; set; } } public partial class Form1 : Form { public Form1() { InitializeComponent(); colorsRising(); } private void button1_Click(object sender, EventArgs e) { colors(); } private void colors() { Random rng = new Random(); color start = new color(); start.r = (byte) rng.Next(256); start.g = (byte) rng.Next(256); start.b = (byte) rng.Next(256); setColor(dom1, start, r1, g1, b1); color cl2 = newColor(start, rng); setColor(dom2, cl2, r2, g2, b2); color cl3 = newColor(cl2, rng); setColor(dom3, cl3, r3, g3, b3); color cl4 = newColor(cl3, rng); setColor(dom4, cl4, r4, g4, b4); color cl5 = newColor(cl4, rng); setColor(dom5, cl5, r5, g5, b5); color cl6 = newColor(cl5, rng); setColor(dom6, cl6, r6, g6, b6); color cl7 = newColor(cl6, rng); setColor(dom7, cl7, r7, g7, b7); color cl8 = newColor(cl7, rng); setColor(dom8, cl8, r8, g8, b8); color cl9 = newColor(cl8, rng); setColor(dom9, cl9, r9, g9, b9); color cl10 = newColor(cl9, rng); setColor(dom10, cl10, r10, g10, b10); } private void colorsRising() { Random rng = new Random(); color start = new color(); start.r = (byte)rng.Next(196); start.g = (byte)rng.Next(196); start.b = (byte)rng.Next(196); setColor(dom1, start, r1, g1, b1); color cl2 = newColorRising(start); setColor(dom2, cl2, r2, g2, b2); color cl3 = newColorRising(cl2); setColor(dom3, cl3, r3, g3, b3); color cl4 = newColorRising(cl3); setColor(dom4, cl4, r4, g4, b4); color cl5 = newColorRising(cl4); setColor(dom5, cl5, r5, g5, b5); color cl6 = newColorRising(cl5); setColor(dom6, cl6, r6, g6, b6); color cl7 = newColorRising(cl6); setColor(dom7, cl7, r7, g7, b7); color cl8 = newColorRising(cl7); setColor(dom8, cl8, r8, g8, b8); color cl9 = newColorRising(cl8); setColor(dom9, cl9, r9, g9, b9); color cl10 = newColorRising(cl9); setColor(dom10, cl10, r10, g10, b10); } private color newColor(color cl, Random rng) { color newCl = new color(); int r = rng.Next(0, 256); int g = rng.Next(0, 256); int b = rng.Next(0, 256); r = (r + cl.r) / 2; g = (g + cl.g) / 2; b = (b + cl.b) / 2; newCl.r = (byte) r; newCl.g = (byte) g; newCl.b = (byte) b; return newCl; } private color newColorRising(color cl) { color newCl = new color(); int r = (int) (cl.r + 0.15 * cl.r); int g = (int)(cl.g + 0.15 * cl.g); int b = (int)(cl.b + 0.15 * cl.b); if (r > 255) r = 255; if (g > 255) g = 255; if (b > 255) b = 255; newCl.r = (byte)r; newCl.g = (byte)g; newCl.b = (byte)b; return newCl; } private void setColor(PictureBox pb, color cl, TextBox r, TextBox g, TextBox b) { pb.BackColor = Color.FromArgb(cl.r, cl.g, cl.b); r.Text = cl.r.ToString(); g.Text = cl.g.ToString(); b.Text = cl.b.ToString(); } private void button2_Click(object sender, EventArgs e) { Form2 form2 = new Form2(); form2.Show(); } private void button3_Click(object sender, EventArgs e) { colorsRising(); } } }
30817f668a24334116da9b9b2963343b43ce9494
[ "C#" ]
1
C#
Nasus20202/Color-Picker
85b7bd2466a46198b6687e542ea7778a44e7e57b
486f2efa50d881e46917cfb573900bf1fb645a72
refs/heads/main
<repo_name>arnoldjin0123/ASIA_3D_End_107051043<file_sep>/3D_End_107051043/Assets/Script/TeacherScripts/part02/MoveToGoal2Class.cs using System.Collections; using System.Collections.Generic; using UnityEngine; public class MoveToGoal2Class : MonoBehaviour { public float speed = 0.3f; public Transform goal; public Vector3 direction; [Header("追蹤距離"), Range(0, 5)] public float distance = 0.5f; //新增旋轉變數 [Header("旋轉速度"), Range(0, 5)] public float rotSpeed = 1; //新增面向目標的3軸變數 Vector3 lookAtGoal; // Update is called once per frame void Update() { //this.transform.LookAt(goal.position); //修正移動物件會偏移 Y 軸 lookAtGoal = new Vector3(goal.position.x, this.transform.position.y, goal.position.z); direction = lookAtGoal - this.transform.position; Debug.DrawRay(this.transform.position, direction, Color.red); //使用 Slerp 方法,使移動物件,旋轉朝向目標物 this.transform.rotation = Quaternion.Slerp(this.transform.rotation, Quaternion.LookRotation(direction), Time.deltaTime * rotSpeed); //if (direction.magnitude > distance) //{ // this.transform.Translate(direction.normalized * speed * Time.deltaTime, Space.World); //} } } <file_sep>/3D_End_107051043/Assets/Script/MySript/MonsterHurt.cs using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class MonsterHurt : MonoBehaviour { static public bool GetHurt = false; private Animator MonsterANI; private Slider MonsterHPSL; private GameObject MonsterTopUI; private void Awake() { MonsterTopUI = GameObject.Find("MonsterImage"); MonsterHPSL = GameObject.Find("MonsterHPSlider").GetComponent<Slider>(); MonsterANI = GetComponent<Animator>(); } private void Update() { MonsterHPSL.value = PlayGameData.MonsterHP; MonsterGetHurt(); MonsterDie(); } private void MonsterGetHurt() { if (GetHurt == true && PlayGameData.MonsterHP > 0) { MonsterANI.SetTrigger("Hurt"); PlayGameData.MonsterHP -= 30; GetHurt = false; Debug.Log("Monster's HP have: " + PlayGameData.MonsterHP); } } private void MonsterDie() { if (PlayGameData.MonsterHP <= 0) { MonsterANI.SetTrigger("Die"); } if (PlayGameData.MonsterHP <= 0 && PlayGameData.playerIn == true) { Debug.Log("Monster Die"); GameObject.Find("Alert").GetComponent<AlertTouchEvent>().enabled = false; PlayGameData.playerIn = false; MonsterTopUI.SetActive(false); GameObject.Find("PlayGameData").GetComponent<PlayGameData>().MISKillMonster_FIN(); } } } <file_sep>/3D_End_107051043/Assets/Script/TeacherScripts/part03/WaypointsFollow2.cs using System.Collections; using System.Collections.Generic; using UnityEngine; public class WaypointsFollow2 : MonoBehaviour { // 定義 waypoint 取代原本的 goal,並使用陣列[],因為可能有多個waypoints要跟隨 //public GameObject[] waypoints; // 使用 Unity 內建 circuit 取代原本 waypoint 程式 public UnityStandardAssets.Utility.WaypointCircuit circuit; int currentWP = 0; // 作為 waypoints[] 陣列使用的 索引index //public Transform goal; //不使用單一 goal 方法 [Header("面對目標方向")] public Vector3 direction; [Header("移動速度"), Range(0, 10)] public float speed = 2.0f; [Header("追蹤距離"), Range(0, 5)] public float distance = 1.0f; [Header("旋轉速度"), Range(0, 5)] public float rotSpeed = 2f; [Header("目標WP邊號")] public string currentWPname = ""; // Use this for initialization void Start() { // 尋找具有 waypoint 標籤的 遊戲物件(sphere) //不再使用 tag = waypoints 方式,改用 Circuit 方式 //waypoints = GameObject.FindGameObjectsWithTag("waypoint"); } // Update is called once per frame void Update() { //如果場景沒有任何 waypoint 則回傳 0 (不動作) //if (waypoints.Length == 0) return; if (circuit.Waypoints.Length == 0) return; //原本的 goal.position.x 修改為 waypoints[] 陣列使用 Vector3 lookAtGoal = new Vector3(circuit.Waypoints[currentWP].transform.position.x, this.transform.position.y, circuit.Waypoints[currentWP].transform.position.z); direction = lookAtGoal - this.transform.position; Debug.DrawRay(this.transform.position, direction, Color.red); currentWPname = ("WP目標編號: " + currentWP); //使用 Slerp 方法,使移動物件,旋轉朝向目標物 this.transform.rotation = Quaternion.Slerp(this.transform.rotation, Quaternion.LookRotation(direction), Time.deltaTime * rotSpeed); //this.transform.LookAt(lookAtGoal); // 當追到第一個目標時 if (direction.magnitude < distance) { //新增管理waypoints 索引序號 currentWP++; if (currentWP >= circuit.Waypoints.Length) { currentWP = 0; //序號歸零,從頭開始 } } this.transform.Translate(0, 0, speed * Time.deltaTime); } } <file_sep>/3D_End_107051043/Assets/Script/MySript/TitleGameData.cs using System.Collections; using System.Collections.Generic; using UnityEngine; public class TitleGameData : MonoBehaviour { static public bool StartWalking = false; static public bool MonsterStop = false; } <file_sep>/3D_End_107051043/Assets/Script/MySript/PlayerAttack.cs using System.Collections; using System.Collections.Generic; using UnityEngine; public class PlayerAttack : MonoBehaviour { private Animator PlayerANI; private bool Combo1_P_ANI = false; private bool Combo2_P_ANI = false; private int NowCombo = 0; private bool CanGoNext = false; //Slow speed tools private bool Combo2SPGate = false; private float BugTimer_f = 0f; private int Waitani_P = 0; public Transform ATKPoint; public float ATKLengh; private RaycastHit HitObject; private void Awake() { PlayerANI = GetComponent<Animator>(); } private void Update() { UpdateCombo(); CheckComboGo(); BugTimer(); } private void BugTimer() { if (Combo1_P_ANI ==true) { BugTimer_f += Time.deltaTime; } else if (Combo2_P_ANI == true) { BugTimer_f += Time.deltaTime; } else if (Combo1_P_ANI == false && Combo2_P_ANI == false) { BugTimer_f += Time.deltaTime; } if (BugTimer_f> 1.5f ) { NowCombo = 0; BugTimer_f = 0f; CanGoNext = false; Combo1_P_ANI = false; Combo2_P_ANI = false; } } private void UpdateCombo() { switch (NowCombo) { case 0: AttackStart(); break; case 1: Combo1(); break; case 2: Combo2(); break; } } private void AttackStart() { Debug.Log("Now is AttakStart"); PlayerANI.SetInteger("Combo", 0); if (Input.GetKeyDown(KeyCode.Mouse0)) { NowCombo=1; if (Physics.Raycast(ATKPoint.position, ATKPoint.forward, out HitObject, ATKLengh, 1 << 9)) { MonsterHurt.GetHurt = true; Debug.Log(HitObject.collider.name + "is get hurt"); } Debug.Log("you has right click"); }//進COMBO1 } private void Combo1() { Debug.Log("Now is Combo1"); PlayerANI.SetInteger("Combo", 1); if (Waitani_P == 1) { Debug.Log("You are in wait room"); if (Combo1_P_ANI == true && Input.GetKey(KeyCode.Mouse0)) { Debug.Log("You can from combo1 go next combo"); CanGoNext = true; } if (Combo1_P_ANI == false && CanGoNext == false) { Debug.Log("You will from combo1 go back to 0"); ResetCombo(); } } } private void Combo2() { Debug.Log("Now is Combo2"); PlayerANI.SetInteger("Combo", 2); if (Waitani_P == 1) { Debug.Log("Combo2: You are in wait room"); if (Combo1_P_ANI == true && Input.GetKey(KeyCode.Mouse0)) { Debug.Log("Combo2: You can from combo1 go next combo"); CanGoNext = true; Combo2SPGate = true; } if (Combo1_P_ANI == false && CanGoNext == false) { Debug.Log("Combo2: You will from combo1 go back to 0"); ResetCombo(); } } } private void CheckComboGo() { Debug.Log("You are in check combo"); if (CanGoNext == true && Combo1_P_ANI == false && Combo2_P_ANI == false) { Debug.Log("You are overing check combo"); Waitani_P = 0; CanGoNext = false; if (NowCombo < 2) { if (Physics.Raycast(ATKPoint.position, ATKPoint.forward, out HitObject, ATKLengh, 1 << 9)) { MonsterHurt.GetHurt = true; Debug.Log(HitObject.collider.name + "is get hurt"); } NowCombo = 2; //進入COMBO2 Debug.Log("You will go to combo 2"); } if (NowCombo == 2 && Combo2SPGate == true) { if (Physics.Raycast(ATKPoint.position, ATKPoint.forward, out HitObject, ATKLengh, 1 << 9)) { MonsterHurt.GetHurt = true; Debug.Log(HitObject.collider.name + "is get hurt"); } Combo2SPGate = false; NowCombo = 1; //進入COMBO1 Debug.Log("You will go to combo 1"); } } } private void ResetCombo() { Waitani_P = 0; NowCombo = 0; } private void Combo1Start() { Combo1_P_ANI = true; Waitani_P = 1; Debug.Log("Combo 1 has start"); } private void Combo1Finish() { Combo1_P_ANI = false; Debug.Log("Combo 1 has finish"); } private void Combo2Start() { Combo2_P_ANI = true; Waitani_P = 1; Debug.Log("Combo 2 has start"); } private void Combo2Finish() { Combo2_P_ANI = false; Waitani_P = 0; Debug.Log("Combo 2 has finish"); } private void OnDrawGizmos() { Gizmos.color = Color.red; Gizmos.DrawRay(ATKPoint.position, ATKPoint.forward * ATKLengh); } } <file_sep>/3D_End_107051043/Assets/Script/TeacherScripts/part01/MoveToGoal.cs using System.Collections; using System.Collections.Generic; using UnityEngine; public class MoveToGoal : MonoBehaviour { public float speed = 2.0f; public Transform goal; public Vector3 direction; [Header("追蹤距離"), Range(0, 5)] public float distance = 0; // Start is called before the first frame update void Start() { } // Update is called once per frame void Update() { this.transform.LookAt(goal.position); //goal.position: 我們想去的目標位置 //this.transform.position: 我們目前正所在的位置 Debug.DrawRay(this.transform.position, direction, Color.red); direction = goal.position - this.transform.position; //if (direction.magnitude > distance) //{ // this.transform.Translate(direction.normalized * speed * Time.deltaTime, Space.World); //} } } <file_sep>/3D_End_107051043/Assets/Script/MySript/UIStateUpdate.cs using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; using UnityEngine.SceneManagement; public class UIStateUpdate : MonoBehaviour { private GameObject GameOverPannel; private Slider PlayerHPSlider; private Slider PlayerBRSlider; private float DeadTime_f = 0; private bool DeadTimer_On = false; private void Awake() { PlayerHPSlider = GameObject.Find("HPBar").GetComponent<Slider>(); PlayerBRSlider = GameObject.Find("BreathBar").GetComponent<Slider>(); GameOverPannel = GameObject.Find("GameOverPanel"); } private void Start() { GameOverPannel.SetActive(false); } private void Update() { PlayerHPSlider.value = PlayGameData.PlayerHP; PlayerBRSlider.value = PlayGameData.PlayerBreath; DeadTimer(); if (PlayGameData.PlayerHP <= 0) { DeadTimer_On = true; if (DeadTime_f > 6f){ GameOverPannel.SetActive(true); } } } private void DeadTimer() { if (DeadTimer_On == true) { DeadTime_f += Time.deltaTime; } } public void BackToTitle(){ SceneManager.LoadScene("Title"); } public void ExitGame() { Application.Quit(); } public void ResetGame(){ SceneManager.LoadScene("BaseLevel"); } } <file_sep>/3D_End_107051043/Assets/Script/MySript/SingTrigger.cs using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class SingTrigger : MonoBehaviour { [Header("Title Messege"), TextArea(0, 5)] public string SignTitleText; [Header("Detail Messege"),TextArea(0,5)] public string SignDetailText; private GameObject SignPannel; private Text UISignTitleText; private Text UISignDetailText; private int PlayerClick = 0; private float Timer_f; private bool Timer_On = false; private void Awake() { SignPannel = GameObject.Find("SignPanel"); UISignTitleText = GameObject.Find("SignPanelTitleText").GetComponent<Text>(); UISignDetailText = GameObject.Find("SignPanelDetailText").GetComponent<Text>(); } private void Start() { SignPannel.SetActive(false); } private void Timer() { if (Timer_On == true) { Timer_f += Time.deltaTime; } if (Timer_f > 1) { Timer_On = false; Timer_f = 0f; } } private void OnTriggerStay(Collider col) { Timer(); if (col.gameObject.name == "Player") { if (Input.GetKeyDown(KeyCode.Mouse1) && Timer_On == false) { Timer_On = true; PlayerClick++; } } if (PlayerClick %2 == 1 ) { UISignTitleText.text = SignTitleText; UISignDetailText.text = SignDetailText; SignPannel.SetActive(true); } if (PlayerClick % 2 == 0) { SignPannel.SetActive(false); } } } <file_sep>/3D_End_107051043/Assets/Script/MySript/MonsterAttackDesire.cs using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.AI; public class MonsterAttackDesire : MonoBehaviour { [Header("MoveingSpeed"), Range(0, 50)] public float MonsterSpeed = 2.5f; [Header("StopDistance"), Range(0, 10)] public float StopDistance = 5f; //指定欄位 private Animator MonsterANI; private Transform player; private Transform NoTarget; private NavMeshAgent nav; //記時器 [Header("Attack Cool Down Time"),Range(0,5)] public float ATKCD=0.5f; private float Timer_f=0f; //攻擊射線 public Transform ATKPoint; public float ATKLengh; private RaycastHit HitObject; //無目標時,亂走 [Header("No target random walk change direction trigger time")] public float RW_ChangeTime = 5f; //每幾秒切換一次方向 [Header("No target random walk speed"),Range(0f,1f)] public float RW_Speed = 0.1f; //閒置亂走時的速度 private float RW_Timer_f = 0f; //切換方向計時器 private bool RW_Timer_On = false; // 切換方向計時器開關 private bool RW_DirectionChange = false; //是否可以變換方向了 private int RW_Direction = 0; //1234=前後左右 private bool RW_StartWalking = false; private void Awake() { nav = GetComponent<NavMeshAgent>(); MonsterANI = GetComponent<Animator>(); player = GameObject.Find("Player").transform; NoTarget = GameObject.Find("Alert").transform; nav.speed = MonsterSpeed; nav.stoppingDistance = StopDistance; } private void Update() { Track(); RW_Walking(); Attack(); } private void Track() { if (PlayGameData.playerIn == true && PlayGameData.MonsterHP > 0) { RW_StartWalking = false; RW_Timer_On = false; MonsterANI.SetBool("Walk", false); MonsterANI.SetBool("Run", nav.remainingDistance > StopDistance); nav.SetDestination(player.position); Debug.Log("Target is Player"); if (PlayGameData.PlayerHP < 0) { PlayGameData.playerIn = false; } } if (PlayGameData.playerIn == false && PlayGameData.MonsterHP > 0) { MonsterANI.SetBool("Run", false); nav.SetDestination(NoTarget.position); RW_Timer_On = true; RandomWalkTimer(); NoTargetWalk(); Debug.Log("None Target"); } else if (PlayGameData.playerIn == false) { nav.SetDestination(NoTarget.position); } } private void NoTargetWalk() { if (RW_DirectionChange == true) { RW_DirectionChange = false; transform.rotation = Quaternion.Euler(0, 0, 0); MonsterANI.SetBool("Walk", true); RW_Direction = Random.Range(-181, 181); transform.rotation = Quaternion.Euler(0, RW_Direction, 0); RW_StartWalking = true; } } private void RW_Walking() { if (RW_StartWalking == true) { transform.Translate(0, 0, RW_Speed); } } private void RandomWalkTimer() { if (RW_Timer_On == true) { RW_Timer_f += Time.deltaTime; if (RW_Timer_f > RW_ChangeTime) { RW_DirectionChange = true; RW_Timer_f = 0f; } } } private void Attack() { if (PlayGameData.playerIn==true && nav.remainingDistance <= StopDistance) { ATKTimer(); if (Timer_f >= ATKCD) { Timer_f = 0; MonsterANI.SetTrigger("Attack"); if (Physics.Raycast(ATKPoint.position, ATKPoint.forward, out HitObject, ATKLengh, 1 << 8)) { PlayerHurt.GetHurt = true; Debug.Log(HitObject.collider.name+"is get hurt"); } } } } private void ATKTimer() { Timer_f += Time.deltaTime; } private void OnDrawGizmos() { Gizmos.color = Color.red; Gizmos.DrawRay(ATKPoint.position, ATKPoint.forward * ATKLengh); } } <file_sep>/3D_End_107051043/Assets/Script/MySript/TeleportPoint.cs using System.Collections; using System.Collections.Generic; using UnityEngine; using Invector.vCharacterController; public class TeleportPoint : MonoBehaviour { private GameObject Player; private GameObject FinishGamePannel; private Rigidbody PlayerGravity; private bool PlayerFly; private Animator FinishANI; private void Awake() { Player = GameObject.Find("Player"); PlayerGravity = GameObject.Find("Player").GetComponent<Rigidbody>(); FinishANI = GameObject.Find("FinishGamePannel").GetComponent<Animator>(); FinishGamePannel = GameObject.Find("FinishGamePannel"); } private void Start() { FinishGamePannel.SetActive(false); } private void Update() {Fly(); } private void Fly() { if (PlayerFly == true) { Player.transform.Translate(0, 0.5f, 0); } } private void OnTriggerEnter(Collider col) { if (col.tag == "Player") { Debug.Log("Exit"); FinishGamePannel.SetActive(true); FinishANI.SetTrigger("FinishAppear"); PlayerGravity.useGravity = false; PlayerFly = true; } } } <file_sep>/3D_End_107051043/Assets/Script/MySript/NoneEvent.cs using System.Collections; using System.Collections.Generic; using UnityEngine; public class NoneEvent : MonoBehaviour { public void LetTitleCameraShake1() { } public void LetTitleCameraShake2(){ } public void NextSence() { } } <file_sep>/3D_End_107051043/Assets/Script/TeacherScripts/part00/KeyTest.cs using System.Collections; using System.Collections.Generic; using UnityEngine; public class KeyTest : MonoBehaviour { public float movespeed = 0.3f; // Start is called before the first frame update void Start() { Debug.Log("遊戲開始"); } // Update is called once per frame void Update() { //按鍵只偵測一次 if (Input.GetKey("w")) { transform.Translate(0, 0, movespeed); //Debug.Log("遊戲進行時間[幀數]為(deltaTime):" + Time.deltaTime + "秒"); } if (Input.GetKey("s")) { transform.Translate(0, 0, -movespeed); //Debug.Log("遊戲進行時間[幀數]為(deltaTime):" + Time.deltaTime + "秒"); } if (Input.GetKey("a")) { transform.Translate(-movespeed, 0, 0); //Debug.Log("遊戲進行時間「秒數」為Time.time:" + Time.time + "秒"); } if (Input.GetKey("d")) { transform.Translate(movespeed, 0, 0); //Debug.Log("遊戲進行時間「秒數」為Time.time:" + Time.time + "秒"); } } } <file_sep>/3D_End_107051043/Assets/Script/MySript/NPCNewTalk.cs using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class NPCNewTalk : MonoBehaviour { [Header("NPC")] public string ThisNPCName; public Animator NPCANI; [Header("Panel")] public GameObject TalkingPanel; public Text NPCName; public Text Daiolouge; public GameObject MissionPanel; [Header("MissionData")] public Misssion1 MissionData; [Header("MissionFinishData")] public Mission1Finish MissionFinishData; [Header("TalkingSpeed")] public float TalkingSpeed; private string NPCTalkingWord; [Header("No Misstion Daiolouge"), TextArea(0, 5)] public string NormalDaiolouge = ""; private bool PlayerInTalkingArea = false; private bool NPCIsTalking = false; private bool Skip = false; private int normalParagraph = 0; private int paragraph = 0; private int FinishMISParagraph = 0; private float Timer_f = 0f; private bool Timer_On = false; private void Start() { NPCName.text = ThisNPCName; } private void Update() { Daiolouge.text = NPCTalkingWord; Timer(); ParagraphPlus(); ClickToSkip(); } private void OnTriggerEnter(Collider col) { if (col.tag == "Player") { Debug.Log("Player Enter"); PlayerInTalkingArea = true; NPCANI.SetBool("Talking", true); } } private void OnTriggerExit(Collider col) { if (col.tag == "Player") { Debug.Log("Player Exit"); PlayerInTalkingArea = false; NPCANI.SetBool("Talking", false); StopAllCoroutines(); TalkingPanel.SetActive(false); } } private void ParagraphPlus() { if (PlayerInTalkingArea == true) { if (Input.GetKeyDown(KeyCode.Mouse1) && NPCIsTalking == false && Skip == false) { Timer_On = true; if (PlayGameData.NowMIS_NUM == 1) { paragraph++; SwitchDaiolouge(); } if (PlayGameData.NowMIS_NUM == 2) { normalParagraph++; SwitchDaiolouge(); } if (PlayGameData.NowMIS_NUM == 3) { FinishMISParagraph++; SwitchDaiolouge(); } } } } private void SwitchDaiolouge() { if (PlayGameData.NowMIS_NUM == 1) { switch (paragraph) { case 1: StartCoroutine(NPCTalkingDaiolouge1()); break; case 2: StartCoroutine(NPCTalkingDaiolouge2()); break; case 3: StartCoroutine(NPCTalkingDaiolouge3()); break; case 4: ClosePannel(); break; } } else if (PlayGameData.NowMIS_NUM == 2) { if (normalParagraph%2 == 1){StartCoroutine(NormalTalking());} else if (normalParagraph % 2 == 0){ ClosePannel(); } } else if (PlayGameData.NowMIS_NUM == 3) { switch (FinishMISParagraph) { case 1: StartCoroutine (NPCFinishMISDaiolouge1()); break; case 2: StartCoroutine(NPCFinishMISDaiolouge2()); break; case 3: StartCoroutine(NPCFinishMISDaiolouge3()); break; case 4: ClosePannel(); break; } } } private void Timer() { if (Timer_f<0.2f) { Timer_On = false; } if (Timer_On == true) {Timer_f += Time.deltaTime; } } private void ClickToSkip() { if (Input.GetKeyDown(KeyCode.Mouse1) && NPCIsTalking == true && Skip == false && Timer_On == false) { Skip = true; } } private void ClosePannel() { Debug.Log("ClosePannel"); NPCTalkingWord = ""; NPCANI.SetBool("Talking", false); MissionPanel.SetActive(true); TalkingPanel.SetActive(false); if (PlayGameData.NowMIS_NUM == 1) { GameObject.Find("PlayGameData").GetComponent<PlayGameData>().MISTalkToNPC_FIN(); } if (PlayGameData.NowMIS_NUM == 2) { TalkingPanel.SetActive(false);} if (PlayGameData.NowMIS_NUM == 3) { GameObject.Find("PlayGameData").GetComponent<PlayGameData>().MISBackToNOC_FIN(); } } private IEnumerator NormalTalking() { Debug.Log("Normal daiolouge"); TalkingPanel.SetActive(true); MissionPanel.SetActive(false); NPCTalkingWord = ""; Skip = false; for (int i = 0; i < NormalDaiolouge.Length; i++) { NPCIsTalking = true; NPCTalkingWord += NormalDaiolouge[i] + ""; if (Skip == true) { NPCTalkingWord = NormalDaiolouge; Skip = false; NPCIsTalking = false; yield break; } yield return new WaitForSeconds(TalkingSpeed); } NPCIsTalking = false; Skip = false; } private IEnumerator NPCTalkingDaiolouge1() { Debug.Log("Finish daiolouge1"); TalkingPanel.SetActive(true); MissionPanel.SetActive(false); NPCTalkingWord = ""; Skip = false; for (int i = 0; i < MissionData.Daiolouge1.Length; i++) { NPCIsTalking = true; NPCTalkingWord += MissionData.Daiolouge1[i] + ""; if (Skip == true) { NPCTalkingWord = MissionData.Daiolouge1; Skip = false; NPCIsTalking = false; yield break; } yield return new WaitForSeconds(TalkingSpeed); } NPCIsTalking = false; Skip = false; } private IEnumerator NPCTalkingDaiolouge2() { NPCTalkingWord = ""; for (int i = 0; i < MissionData.Daiolouge2.Length; i++) { NPCIsTalking = true; NPCTalkingWord += MissionData.Daiolouge2[i] + ""; if (Skip == true) { NPCTalkingWord = MissionData.Daiolouge2; Skip = false; NPCIsTalking = false; yield break; } yield return new WaitForSeconds(TalkingSpeed); } NPCIsTalking = false; Skip = false; } private IEnumerator NPCTalkingDaiolouge3() { NPCTalkingWord = ""; for (int i = 0; i < MissionData.Daiolouge3.Length; i++) { NPCIsTalking = true; NPCTalkingWord += MissionData.Daiolouge3[i] + ""; if (Skip == true) { NPCTalkingWord = MissionData.Daiolouge3; Skip = false; NPCIsTalking = false; yield break; } yield return new WaitForSeconds(TalkingSpeed); } NPCIsTalking = false; Skip = false; } private IEnumerator NPCFinishMISDaiolouge1() { TalkingPanel.SetActive(true); MissionPanel.SetActive(false); NPCTalkingWord = ""; for (int i = 0; i < MissionFinishData.Daiolouge1.Length; i++) { Debug.Log("Finish mission daiolouge1"); NPCIsTalking = true; NPCTalkingWord += MissionFinishData.Daiolouge1[i] + ""; if (Skip == true) { NPCTalkingWord = MissionFinishData.Daiolouge1; Skip = false; NPCIsTalking = false; yield break; } yield return new WaitForSeconds(TalkingSpeed); } NPCIsTalking = false; Skip = false; } private IEnumerator NPCFinishMISDaiolouge2() { Debug.Log("Finish mission daiolouge2"); NPCTalkingWord = ""; for (int i = 0; i < MissionFinishData.Daiolouge2.Length; i++) { NPCIsTalking = true; NPCTalkingWord += MissionFinishData.Daiolouge2[i] + ""; if (Skip == true) { NPCTalkingWord = MissionFinishData.Daiolouge2; Skip = false; NPCIsTalking = false; yield break; } yield return new WaitForSeconds(TalkingSpeed); } NPCIsTalking = false; Skip = false; } private IEnumerator NPCFinishMISDaiolouge3() { NPCTalkingWord = ""; for (int i = 0; i < MissionFinishData.Daiolouge3.Length; i++) { Debug.Log("Finish mission daiolouge3"); NPCIsTalking = true; NPCTalkingWord += MissionFinishData.Daiolouge3[i] + ""; if (Skip == true) { NPCTalkingWord = MissionFinishData.Daiolouge3; NPCIsTalking = false; Skip = false; yield break; } yield return new WaitForSeconds(TalkingSpeed); } NPCIsTalking = false; Skip = false; } } <file_sep>/3D_End_107051043/Assets/Script/MySript/TitleMonsterTouchEvent.cs using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.SceneManagement; public class TitleMonsterTouchEvent : MonoBehaviour { [Header("WalkingSpeed"), Range(0, 20f)] public float Speed = 0.1f; private bool Walking = false; private Transform MonsterPossition; private Animator MonsterANI; private Animator TitleCameraANI; private GameObject SkyGround; private void Awake() { MonsterANI = GetComponent<Animator>(); TitleCameraANI = GameObject.Find("Main Camera").GetComponent<Animator>(); SkyGround = GameObject.Find("SkyGround"); MonsterPossition = transform; } //在場景開始時導入物件 private void Update() { StartWalking(); StopWalking(); } //持續執行 StartWalking, StopWalking, Timer public void LetTitleCameraShake1() { TitleCameraANI.SetTrigger("Shake1"); } public void LetTitleCameraShake2() { TitleCameraANI.SetTrigger("Shake2"); } public void NextSence() { SceneManager.LoadScene("BaseLevel"); } private void StartWalking() { if (Walking == true) { MonsterPossition.transform.Translate(0, 0, Speed); } } //當Walking=true 怪物向前移動 private void StopWalking() { if (Walking == false) { MonsterPossition.transform.Translate(0, 0, 0); MonsterANI.SetBool("Walk", false); } } //當Walking=false 怪物停止移動 public void StartButtonPress() { SkyGround.SetActive(false); MonsterANI.SetBool("Walk", true); Walking = true; Debug.Log("Start Wlking"); } //按下開始鈕時,天空地板消失,Monster開始Walk動畫 private void OnTriggerEnter(Collider col) { if (col.gameObject.name=="MonsterStop") { Walking = false; MonsterANI.SetTrigger("Attack"); } } //碰到MonsterStop時,停止走路,攻擊一次,Timer開始記時 } <file_sep>/3D_End_107051043/Assets/Script/TeacherScripts/part00/ShowPosition.cs using System.Collections; using System.Collections.Generic; using UnityEngine; public class ShowPosition : MonoBehaviour { Vector3 Stevie = new Vector3(0, 0, 0); Vector3 Granny = new Vector3(2, 0, 5); // Start is called before the first frame update void Start() { } // Update is called once per frame void Update() { //Stevie.transform.position = } } <file_sep>/3D_End_107051043/Assets/Script/MySript/Mission1Finish.cs using System.Collections; using System.Collections.Generic; using UnityEngine; [CreateAssetMenu(fileName = "MissionData", menuName = "MisionData/Mission1Finish")] public class Mission1Finish : ScriptableObject { [Header("Daiolouge 1"), TextArea(1, 10)] public string Daiolouge1; [Header("Daiolouge 2"), TextArea(1, 10)] public string Daiolouge2; [Header("Daiolouge 3"), TextArea(1, 10)] public string Daiolouge3; } <file_sep>/3D_End_107051043/Assets/Script/TeacherScripts/part00/rotateCube.cs using System.Collections; using System.Collections.Generic; using UnityEngine; public class rotateCube : MonoBehaviour { public Vector3 editRoate; // Start is called before the first frame update void Start() { } // Update is called once per frame void Update() { if (Input.GetKey("down")) { transform.Rotate(-10, 0, 0); Debug.Log("啊咿呀!向下囉~"); } if (Input.GetKey("up")) { transform.Rotate(10, 0, 0); Debug.Log("喔喔喔!向上轉向上啦!"); } if (Input.GetKey("left")) { transform.Rotate(0, -10, 0); Debug.Log("喔喔喔!向上轉向上啦!"); } if (Input.GetKey("right")) { transform.Rotate(0, 10, 0); } if (Input.GetKey("w")) { transform.Translate(0, 0, -0.2f); } if (Input.GetKey("s")) { transform.Translate(0, 0, 0.2f); } if (Input.GetKey("a")) { transform.Translate(-0.2f, 0, 0); } if (Input.GetKey("d")) { transform.Translate(0.2f, 0, 0); } } } <file_sep>/3D_End_107051043/Assets/Script/MySript/AlertTouchEvent.cs using System.Collections; using System.Collections.Generic; using UnityEngine; public class AlertTouchEvent : MonoBehaviour { private void OnTriggerEnter(Collider col) { if (col.tag == "Player" && PlayGameData.PlayerHP > 0) { PlayGameData.playerIn = true; Debug.Log("Player in"); } } private void OnTriggerExit(Collider col) { if (col.tag == "Player") { PlayGameData.playerIn = false; Debug.Log("Player out"); } } } <file_sep>/3D_End_107051043/Assets/Script/MySript/UFO_Switch_Script.cs using System.Collections; using System.Collections.Generic; using UnityEngine; public class UFO_Switch_Script : MonoBehaviour { public LayerMask PlayerLayer; public float NearByCubeRedius = 3f; void Update() { Collider[] HitCollider = Physics.OverlapBox (transform.position, new Vector3(NearByCubeRedius, NearByCubeRedius, NearByCubeRedius), Quaternion.identity, PlayerLayer); if (HitCollider.Length >= 1) { this.GetComponent<WaypointsFollow>().enabled = false; this.GetComponent<MoveToGoal2>().enabled = true; } else if (HitCollider.Length == 0) { this.GetComponent<WaypointsFollow>().enabled = true; this.GetComponent<MoveToGoal2>().enabled = false; } } private void OnDrawGizmos() { Gizmos.color = Color.green; Gizmos.DrawWireCube(transform.position, new Vector3(NearByCubeRedius, NearByCubeRedius, NearByCubeRedius)); } } <file_sep>/3D_End_107051043/Assets/Script/MySript/PlayGameData.cs using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class PlayGameData : MonoBehaviour { //玩家資料 static public bool playerIn = false; static public int PlayerHP = 100; static public int PlayerBreath = 100; //怪物資料 static public int MonsterHP = 100; //UI資料 private Text UIMISName; private Text UIMISDetal; private Text UIFinishWord; private GameObject FinishWordActive; //任務群組資訊 static public int NowMIS_NUM = 0; private string MISName = " 目前沒有任何任務 "; private string MISDetal = " 想幹嘛就幹嘛~ "; private string FinishWord = " "; //記時器 public float UIFinishWord_ContinueTime = 7f; private float Timer_f; private bool TimerOn = false; public GameObject Teleportdoor; private void Awake() { UIMISName = GameObject.Find("MissionText").GetComponent<Text>(); UIMISDetal = GameObject.Find("MissionDetal").GetComponent<Text>(); UIFinishWord = GameObject.Find("FinishMissionText").GetComponent<Text>(); FinishWordActive = GameObject.Find("FinishMissionText"); FinishWordActive.SetActive(false); } private void Start() { PlayerHP = 100; MISTalkToNPC_Take(); Teleportdoor.SetActive(false); } private void Update() { UIMISName.text = MISName; UIMISDetal.text = MISDetal; UIFinishWord.text = FinishWord; Timer(); FinishWordDisapear(); } private void Timer() { if (TimerOn == true) {Timer_f += Time.deltaTime;} } private void FinishWordDissplay() { FinishWordActive.SetActive(true); TimerOn = true; } private void FinishWordDisapear() { if (Timer_f > UIFinishWord_ContinueTime) { FinishWordActive.SetActive(false); TimerOn = false; Timer_f = 0; } } private void ClearMIS() { MISName = ("目前沒有任何任務"); MISDetal = ("想幹嘛就幹嘛~"); } public void MISTalkToNPC_Take() { MISName = ("這裡是誰,我是哪裡?"); MISDetal = ("尋找綠衣村名並和他對話"); NowMIS_NUM = 1; Debug.Log("You have take the NPCtalk mission"); } public void MISTalkToNPC_FIN() { FinishWord = ("完成與村民的對話"); Debug.Log("You have finish the NPCtalk missioin"); FinishWordDissplay(); MISKiilMonster_Take(); } public void MISKiilMonster_Take() { MISName = ("討伐從天而降的獸人"); MISDetal = ("跟著路牌尋找獸人並擊敗他"); Debug.Log("You have take the KillMoster mission"); NowMIS_NUM = 2; } public void MISKillMonster_FIN() { FinishWord = ("完成獸人討伐"); Debug.Log("You have finish the KillMoster missioin"); FinishWordDissplay(); MISBackToNPC_Take(); } public void MISBackToNPC_Take() { MISName = ("回報任務"); MISDetal = ("去綠衣村民那裡回報任務"); Debug.Log("You have take the BackToNPC mission"); NowMIS_NUM = 3; } public void MISBackToNOC_FIN() { FinishWord = ("你將回到你應待的世界"); FinishWordDissplay(); ClearMIS(); Debug.Log("You have finish the BackToNPC missioin"); Teleportdoor.SetActive(true); NowMIS_NUM = 4; } } <file_sep>/3D_End_107051043/Assets/Script/MySript/PlayerHurt.cs using System.Collections; using System.Collections.Generic; using UnityEngine; using Invector.vCharacterController; public class PlayerHurt : MonoBehaviour { [Header("Dead Need Time"),Range(0,5)] public float deadTime = 2.5f; static public bool GetHurt = false; private Animator PlayerANI; //記時器 private float Timer_f = 0f; private bool TimerOn = false; private void Awake() { PlayerANI = GetComponent<Animator>(); } private void Update() { PlayerGetHurt(); PlayerDie(); Timer(); PlayerCannotControl(); } private void PlayerGetHurt() { if (GetHurt == true && PlayGameData.PlayerHP > 0) { PlayerANI.SetTrigger("Hurt"); PlayGameData.PlayerHP -= 30; GetHurt = false; Debug.Log("Player's HP have: " + PlayGameData.PlayerHP); } } private void PlayerDie() { if (PlayGameData.PlayerHP <= 0) { PlayerANI.SetTrigger("Die"); TimerOn = true; vThirdPersonController vt = GetComponent<vThirdPersonController>(); vt.lockMovement = true; vt.lockRotation = true; Debug.Log("Player Die"); } } private void PlayerCannotControl() { if (Timer_f >= deadTime) { PlayerANI.enabled = false; Debug.Log("You can't control"); TimerOn = false; } } private void Timer() { if (TimerOn == true) { Timer_f += Time.deltaTime; Debug.Log("Die Timer On"); } } } <file_sep>/3D_End_107051043/Assets/Script/TeacherScripts/part00/DirectionTest.cs using System.Collections; using System.Collections.Generic; using UnityEngine; public class DirectionTest : MonoBehaviour { private Vector3 v1, v2; private Vector3 directionToGranny; private void Awake() { v1 = this.transform.position; v2 = GameObject.Find("Granny").transform.position; print("v1- Stevie: " + v1); print("v2- Granny: " + v2); directionToGranny = v2 - v1; print("directionToGranny:" + directionToGranny); this.transform.position += directionToGranny.normalized; } private void Update() { //v1 = GameObject.Find("Stevie").transform.position; } }
1c9fe274ab4589b910fe675176db8e248640a78e
[ "C#" ]
22
C#
arnoldjin0123/ASIA_3D_End_107051043
e35b6d9d44767a6a47f2be160771bf564f6828f1
74a739017f87aee98fa9fca2352ca0f72bb02e65
refs/heads/master
<repo_name>meloncargo/melicategories<file_sep>/src/components/Main.jsx require('normalize.css/normalize.css'); require('styles/App.css'); import React from 'react'; import Box from './Box' import Category from './Category'; class AppComponent extends React.Component { constructor(props) { super(props) this.state = { categories: [], country_id: "MLC", sites: [] } this.getSites() } componentDidMount() { this.getCategories(this.state.country_id) } change(event) { this.getCategories(event.target.value) } getCategories(country) { var self = this fetch('https://api.mercadolibre.com/sites/' + country + '/categories', { mode: 'cors' }) .then(function (response) { return response.json() }) .then(function (json) { self.setState({ categories: json }) }) } getSites() { var self = this fetch('https://api.mercadolibre.com/sites', { mode: 'cors' }) .then(function (response) { return response.json() }) .then(function (json) { self.setState({ sites: json }) }) } render() { var country_id = this.state.country_id return ( <div className="index"> <select id="country_id" onChange={this.change.bind(this)} value={this.state.value} style={{ marginBottom: 5, marginLeft: 20 }} defaultValue={country_id}> {this.state.sites.map(function (site, index) { return <option value={site["id"]} key={index}>{site["name"]}</option> }) } </select> <Box category={{ name: 'Root', id: '0' }} categories={this.state.categories} /> </div> ); } } export default AppComponent; <file_sep>/README.md ## Mercado Libre's category inspector by MelonCargo Built with React. To start the server: ``` npm install npm start ``` Thanks to <NAME>. <file_sep>/src/components/Trend.jsx require('styles/App.css'); import React from 'react'; import swal from 'sweetalert2'; export default class Trend extends React.Component{ getTrends() { fetch(`https://api.mercadolibre.com/sites/MLC/trends/search?category=${this.props.id}`, {mode: 'cors'}) .then(function(response){ return response.json() }) .then(function(response){ /*console.log(response.map((x) => x.keyword))*/ var trends = response.map((x) => x.keyword).join(' \n') console.log(trends) swal({ title: "Frases más buscadas: ", text: trends }); }) .catch(function(error) { swal({ title: '¡Oh no! 🙊', text: 'Esta categoría no tiene frases más buscadas.', type: 'error', confirmButtonText: 'Sácame de acá. 🏃' }) }); } render() { return( <span onClick={this.getTrends.bind(this)} className="cursor-pointer"> 🔍</span> ) } } <file_sep>/src/components/Box.jsx require('styles/App.css'); import React from 'react'; import Category from './Category'; export default class Box extends React.Component { constructor(props) { super(props); this.state = { categories: [], category: {} } } handleCategoryClick(id) { var self = this fetch(`https://api.mercadolibre.com/categories/${id}`, { mode: 'cors' }) .then(function (response) { return response.json() }) .then(function (json) { if (json.settings.listing_allowed) { prompt(json.name, json.id) } self.setState({ categories: json.children_categories, category: { id: json.id, name: json.name } }) }) } render() { var self = this var categories = this.props.categories.map(function (c) { return (<Category key={c.id} categorie={c} handleClick={self.handleCategoryClick.bind(self)} />) }) var box; if (this.state.categories.length > 0) { box = <Box key={self.state.category.id} category={self.state.category} categories={self.state.categories} /> } return ( <div className="boss-box"> <div className="category-box"> <h3>{this.props.category.name}</h3> {categories} </div> {box} </div> ) } } <file_sep>/src/components/Category.jsx import React from 'react'; import Trend from './Trend'; export default class Category extends React.Component{ render(){ var {id, name} = this.props.categorie return( <li> <a className="cursor-pointer" onClick={this.props.handleClick.bind(this, id)}>{name}</a> <Trend {...this.props.categorie} /> </li> ) } }
c5f0ab5898be1380a72a6f5f7cf0c8591804e74b
[ "JavaScript", "Markdown" ]
5
JavaScript
meloncargo/melicategories
96e2f2e249c4252bfc766e18f64dfbbb0513c6db
866692d02bcf3972e329e8cd3ffc4d6fb919e5b6
refs/heads/master
<repo_name>lesphp/satisfied<file_sep>/src/AppBundle/Entity/User.php <?php namespace AppBundle\Entity; use FOS\UserBundle\Model\User as BaseUser; class User extends BaseUser { /** * @var integer */ protected $id; }
f1618a887238e7ed2cb3fdb9558c0d2cf764e420
[ "PHP" ]
1
PHP
lesphp/satisfied
83d5a34c4335c055c9e48716b6c1befe9886c7be
c46f4dfc295d80267156a29816696b1a89ad946e
refs/heads/master
<file_sep>'use strict'; import * as der from './der'; export { der }; <file_sep>'use strict'; /* global describe it */ import assert from 'assert'; import { BigNumber, define } from '../lib/asn1'; import fixtures from './fixtures'; const jsonEqual = fixtures.jsonEqual; describe('asn1.js ping/pong', function() { function test(name, model, input, expected) { it('should support ' + name, function() { const M = define('TestModel', model); const encoded = M.encode(input, 'der'); const decoded = M.decode(encoded, 'der'); jsonEqual(decoded, expected !== undefined ? expected : input); }); } describe('primitives', function() { test( 'bigint', function() { this.int(); }, new BigNumber('0102030405060708', 16) ); test( 'enum', function() { this.enum({ 0: 'hello', 1: 'world' }); }, 'world' ); test( 'octstr', function() { this.octstr(); }, new Buffer('hello') ); test( 'objDesc', function() { this.objDesc(); }, new Buffer('hello') ); test( 'bitstr', function() { this.bitstr(); }, { unused: 4, data: new Buffer('hello!') } ); test( 'ia5str', function() { this.ia5str(); }, 'hello' ); test( 'utf8str', function() { this.utf8str(); }, 'hello' ); test( 'bmpstr', function() { this.bmpstr(); }, 'hello' ); test( 'numstr', function() { this.numstr(); }, '1234 5678 90' ); test( 'printstr', function() { this.printstr(); }, 'hello' ); test( 'gentime', function() { this.gentime(); }, 1385921175000 ); test( 'utctime', function() { this.utctime(); }, 1385921175000 ); test( 'utctime regression', function() { this.utctime(); }, 1414454400000 ); test( 'null', function() { this.null_(); }, null ); test( 'objid', function() { this.objid({ '1 3 6 1 5 5 7 48 1 1': 'id-pkix-ocsp-basic' }); }, 'id-pkix-ocsp-basic' ); test( 'true', function() { this.bool(); }, true ); test( 'false', function() { this.bool(); }, false ); test( 'any', function() { this.any(); }, new Buffer( '02210081347a0d3d674aeeb563061d94a3aea5f6a7' + 'c6dc153ea90a42c1ca41929ac1b9', 'hex' ) ); test( 'default explicit', function() { this.seq().obj( this.key('version') .def('v1') .explicit(0) .int({ 0: 'v1', 1: 'v2' }) ); }, {}, { version: 'v1' } ); test( 'implicit', function() { this.implicit(0).int({ 0: 'v1', 1: 'v2' }); }, 'v2', 'v2' ); }); describe('composite', function() { test( '2x int', function() { this.seq().obj(this.key('hello').int(), this.key('world').int()); }, { hello: 4, world: 2 } ); test( 'enum', function() { this.seq().obj(this.key('hello').enum({ 0: 'world', 1: 'devs' })); }, { hello: 'devs' } ); test( 'optionals', function() { this.seq().obj( this.key('hello').enum({ 0: 'world', 1: 'devs' }), this.key('how') .optional() .def('are you') .enum({ 0: 'are you', 1: 'are we?!' }) ); }, { hello: 'devs', how: 'are we?!' } ); test( 'optionals #2', function() { this.seq().obj( this.key('hello').enum({ 0: 'world', 1: 'devs' }), this.key('how') .optional() .def('are you') .enum({ 0: 'are you', 1: 'are we?!' }) ); }, { hello: 'devs' }, { hello: 'devs', how: 'are you' } ); test( 'optionals #3', function() { this.seq().obj( this.key('content') .optional() .int() ); }, {}, {} ); test( 'optional + any', function() { this.seq().obj( this.key('content') .optional() .any() ); }, { content: new Buffer('0500', 'hex') } ); test( 'seqof', function() { const S = define('S', function() { this.seq().obj( this.key('a') .def('b') .int({ 0: 'a', 1: 'b' }), this.key('c') .def('d') .int({ 2: 'c', 3: 'd' }) ); }); this.seqof(S); }, [{}, { a: 'a', c: 'c' }], [{ a: 'b', c: 'd' }, { a: 'a', c: 'c' }] ); test( 'choice', function() { this.choice({ apple: this.bool() }); }, { type: 'apple', value: true } ); }); }); <file_sep>import Node from './node'; import { EncoderBuffer, DecoderBuffer } from './buffer'; import Reporter from './reporter'; export { Node, Reporter, EncoderBuffer, DecoderBuffer }; <file_sep>'use strict'; import DEREncoder from './der'; import PEMEncoder from './pem'; export { DEREncoder as der, PEMEncoder as pem }; <file_sep>import babel from 'rollup-plugin-babel'; import nodeResolve from 'rollup-plugin-node-resolve'; import babelrc from 'babelrc-rollup'; const pkg = require('./package.json'); export default { input: 'lib/asn1.js', external: Object.keys(pkg.dependencies), plugins: [ babel( Object.assign( { include: ['lib/**'] }, babelrc() ) ), nodeResolve({ jsnext: true, preferBuiltins: true }) ], output: { file: pkg.main, format: 'cjs' } }; <file_sep>import DERDecoder from './der'; import PEMDecoder from './pem'; export { DERDecoder as der, PEMDecoder as pem }; <file_sep>'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; } var inherits = _interopDefault(require('inherits')); var assert = _interopDefault(require('minimalistic-assert')); var bignum = _interopDefault(require('bn.js')); var vm = require('vm'); function Reporter(options) { this._reporterState = { obj: null, path: [], options: options || {}, errors: [] }; } Reporter.prototype.isError = function isError(obj) { return obj instanceof ReporterError; }; Reporter.prototype.save = function save() { var state = this._reporterState; return { obj: state.obj, pathLen: state.path.length }; }; Reporter.prototype.restore = function restore(data) { var state = this._reporterState; state.obj = data.obj; state.path = state.path.slice(0, data.pathLen); }; Reporter.prototype.enterKey = function enterKey(key) { return this._reporterState.path.push(key); }; Reporter.prototype.exitKey = function exitKey(index) { var state = this._reporterState; state.path = state.path.slice(0, index - 1); }; Reporter.prototype.leaveKey = function leaveKey(index, key, value) { var state = this._reporterState; this.exitKey(index); if (state.obj !== null) state.obj[key] = value; }; Reporter.prototype.path = function path() { return this._reporterState.path.join('/'); }; Reporter.prototype.enterObject = function enterObject() { var state = this._reporterState; var prev = state.obj; state.obj = {}; return prev; }; Reporter.prototype.leaveObject = function leaveObject(prev) { var state = this._reporterState; var now = state.obj; state.obj = prev; return now; }; Reporter.prototype.error = function error(msg) { var err = void 0; var state = this._reporterState; var inherited = msg instanceof ReporterError; if (inherited) { err = msg; } else { err = new ReporterError(state.path.map(function (elem) { return '[' + JSON.stringify(elem) + ']'; }).join(''), msg.message || msg, msg.stack); } if (!state.options.partial) throw err; if (!inherited) state.errors.push(err); return err; }; Reporter.prototype.wrapResult = function wrapResult(result) { var state = this._reporterState; if (!state.options.partial) return result; return { result: this.isError(result) ? null : result, errors: state.errors }; }; function ReporterError(path, msg) { this.path = path; this.rethrow(msg); } inherits(ReporterError, Error); ReporterError.prototype.rethrow = function rethrow(msg) { this.message = msg + ' at: ' + (this.path || '(shallow)'); if (Error.captureStackTrace) Error.captureStackTrace(this, ReporterError); if (!this.stack) { try { // IE only adds stack when thrown throw new Error(this.message); } catch (e) { this.stack = e.stack; } } return this; }; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; function DecoderBuffer(base, options) { Reporter.call(this, options); if (!Buffer.isBuffer(base)) { this.error('Input not Buffer'); return; } this.base = base; this.offset = 0; this.length = base.length; } inherits(DecoderBuffer, Reporter); DecoderBuffer.prototype.save = function save() { return { offset: this.offset, reporter: Reporter.prototype.save.call(this) }; }; DecoderBuffer.prototype.restore = function restore(save) { // Return skipped data var res = new DecoderBuffer(this.base); res.offset = save.offset; res.length = this.offset; this.offset = save.offset; Reporter.prototype.restore.call(this, save.reporter); return res; }; DecoderBuffer.prototype.isEmpty = function isEmpty() { return this.offset === this.length; }; DecoderBuffer.prototype.readUInt8 = function readUInt8(fail) { if (this.offset + 1 <= this.length) return this.base.readUInt8(this.offset++, true);else return this.error(fail || 'DecoderBuffer overrun'); }; DecoderBuffer.prototype.skip = function skip(bytes, fail) { if (!(this.offset + bytes <= this.length)) return this.error(fail || 'DecoderBuffer overrun'); var res = new DecoderBuffer(this.base); // Share reporter state res._reporterState = this._reporterState; res.offset = this.offset; res.length = this.offset + bytes; this.offset += bytes; return res; }; DecoderBuffer.prototype.raw = function raw(save) { return this.base.slice(save ? save.offset : this.offset, this.length); }; function EncoderBuffer(value, reporter) { if (Array.isArray(value)) { this.length = 0; this.value = value.map(function (_item) { var item = _item; if (!(item instanceof EncoderBuffer)) item = new EncoderBuffer(item, reporter); this.length += item.length; return item; }, this); } else if (typeof value === 'number') { if (!(0 <= value && value <= 0xff)) return reporter.error('non-byte EncoderBuffer value'); this.value = value; this.length = 1; } else if (typeof value === 'string') { this.value = value; this.length = Buffer.byteLength(value); } else if (Buffer.isBuffer(value)) { this.value = value; this.length = value.length; } else { return reporter.error('Unsupported type: ' + (typeof value === 'undefined' ? 'undefined' : _typeof(value))); } } EncoderBuffer.prototype.join = function join(_out, _offset) { var out = _out; var offset = _offset; if (!out) out = new Buffer(this.length); if (!offset) offset = 0; if (this.length === 0) return out; if (Array.isArray(this.value)) { this.value.forEach(function (item) { item.join(out, offset); offset += item.length; }); } else { if (typeof this.value === 'number') out[offset] = this.value;else if (typeof this.value === 'string') out.write(this.value, offset);else if (Buffer.isBuffer(this.value)) this.value.copy(out, offset); offset += this.length; } return out; }; // Supported tags var tags = ['seq', 'seqof', 'set', 'setof', 'objid', 'bool', 'gentime', 'utctime', 'null_', 'enum', 'int', 'objDesc', 'bitstr', 'bmpstr', 'charstr', 'genstr', 'graphstr', 'ia5str', 'iso646str', 'numstr', 'octstr', 'printstr', 't61str', 'unistr', 'utf8str', 'videostr']; // Public methods list var methods = ['key', 'obj', 'use', 'optional', 'explicit', 'implicit', 'def', 'choice', 'any', 'contains'].concat(tags); // Overrided methods list var overrided = ['_peekTag', '_decodeTag', '_use', '_decodeStr', '_decodeObjid', '_decodeTime', '_decodeNull', '_decodeInt', '_decodeBool', '_decodeList', '_encodeComposite', '_encodeStr', '_encodeObjid', '_encodeTime', '_encodeNull', '_encodeInt', '_encodeBool']; function Node(enc, parent) { var state = {}; this._baseState = state; state.enc = enc; state.parent = parent || null; state.children = null; // State state.tag = null; state.args = null; state.reverseArgs = null; state.choice = null; state.optional = false; state.any = false; state.obj = false; state.use = null; state.useDecoder = null; state.key = null; state['default'] = null; state.explicit = null; state.implicit = null; state.contains = null; // Should create new instance on each method if (!state.parent) { state.children = []; this._wrap(); } } var stateProps = ['enc', 'parent', 'children', 'tag', 'args', 'reverseArgs', 'choice', 'optional', 'any', 'obj', 'use', 'alteredUse', 'key', 'default', 'explicit', 'implicit', 'contains']; Node.prototype.clone = function clone() { var state = this._baseState; var cstate = {}; stateProps.forEach(function (prop) { cstate[prop] = state[prop]; }); var res = new this.constructor(cstate.parent); res._baseState = cstate; return res; }; Node.prototype._wrap = function wrap() { var state = this._baseState; methods.forEach(function (method) { this[method] = function _wrappedMethod() { var clone = new this.constructor(this); state.children.push(clone); return clone[method].apply(clone, arguments); }; }, this); }; Node.prototype._init = function init(body) { var state = this._baseState; assert(state.parent === null); body.call(this); // Filter children state.children = state.children.filter(function (child) { return child._baseState.parent === this; }, this); assert.equal(state.children.length, 1, 'Root node can have only one child'); }; Node.prototype._useArgs = function useArgs(_args) { var args = _args; var state = this._baseState; // Filter children and args var children = args.filter(function (arg) { return arg instanceof this.constructor; }, this); args = args.filter(function (arg) { return !(arg instanceof this.constructor); }, this); if (children.length !== 0) { assert(state.children === null); state.children = children; // Replace parent to maintain backward link children.forEach(function (child) { child._baseState.parent = this; }, this); } if (args.length !== 0) { assert(state.args === null); state.args = args; state.reverseArgs = args.map(function (arg) { if ((typeof arg === 'undefined' ? 'undefined' : _typeof(arg)) !== 'object' || arg.constructor !== Object) return arg; var res = {}; Object.keys(arg).forEach(function (_key) { var key = _key; if (key == (key | 0)) key |= 0; var value = arg[key]; res[value] = key; }); return res; }); } }; // // Overrided methods // overrided.forEach(function (method) { Node.prototype[method] = function _overrided() { var state = this._baseState; throw new Error(method + ' not implemented for encoding: ' + state.enc); }; }); // // Public methods // tags.forEach(function (tag) { Node.prototype[tag] = function _tagMethod() { var state = this._baseState; var args = Array.prototype.slice.call(arguments); assert(state.tag === null); state.tag = tag; this._useArgs(args); return this; }; }); Node.prototype.use = function use(item) { assert(item); var state = this._baseState; assert(state.use === null); state.use = item; return this; }; Node.prototype.optional = function optional() { var state = this._baseState; state.optional = true; return this; }; Node.prototype.def = function def(val) { var state = this._baseState; assert(state['default'] === null); state['default'] = val; state.optional = true; return this; }; Node.prototype.explicit = function explicit(num) { var state = this._baseState; assert(state.explicit === null && state.implicit === null); state.explicit = num; return this; }; Node.prototype.implicit = function implicit(num) { var state = this._baseState; assert(state.explicit === null && state.implicit === null); state.implicit = num; return this; }; Node.prototype.obj = function obj() { var state = this._baseState; var args = Array.prototype.slice.call(arguments); state.obj = true; if (args.length !== 0) this._useArgs(args); return this; }; Node.prototype.key = function key(newKey) { var state = this._baseState; assert(state.key === null); state.key = newKey; return this; }; Node.prototype.any = function any() { var state = this._baseState; state.any = true; return this; }; Node.prototype.choice = function choice(obj) { var state = this._baseState; assert(state.choice === null); state.choice = obj; this._useArgs(Object.keys(obj).map(function (key) { return obj[key]; })); return this; }; Node.prototype.contains = function contains(item) { var state = this._baseState; assert(state.use === null); state.contains = item; return this; }; // // Decoding // Node.prototype._decode = function decode(_input, options) { var state = this._baseState; var input = _input; // Decode root node if (state.parent === null) return input.wrapResult(state.children[0]._decode(input, options)); var result = state['default']; var present = true; var prevKey = null; if (state.key !== null) prevKey = input.enterKey(state.key); // Check if tag is there if (state.optional) { var tag = null; if (state.explicit !== null) tag = state.explicit;else if (state.implicit !== null) tag = state.implicit;else if (state.tag !== null) tag = state.tag; if (tag === null && !state.any) { // Trial and Error var save = input.save(); try { if (state.choice === null) this._decodeGeneric(state.tag, input, options);else this._decodeChoice(input, options); present = true; } catch (e) { present = false; } input.restore(save); } else { present = this._peekTag(input, tag, state.any); if (input.isError(present)) return present; } } // Push object on stack var prevObj = void 0; if (state.obj && present) prevObj = input.enterObject(); if (present) { // Unwrap explicit values if (state.explicit !== null) { var explicit = this._decodeTag(input, state.explicit); if (input.isError(explicit)) return explicit; input = explicit; } var start = input.offset; // Unwrap implicit and normal values if (state.use === null && state.choice === null) { var _save = void 0; if (state.any) _save = input.save(); var body = this._decodeTag(input, state.implicit !== null ? state.implicit : state.tag, state.any); if (input.isError(body)) return body; if (state.any) result = input.raw(_save);else input = body; } if (options && options.track && state.tag !== null) options.track(input.path(), start, input.length, 'tagged'); if (options && options.track && state.tag !== null) options.track(input.path(), input.offset, input.length, 'content'); // Select proper method for tag if (state.any) { // no-op } else if (state.choice === null) { result = this._decodeGeneric(state.tag, input, options); } else { result = this._decodeChoice(input, options); } if (input.isError(result)) return result; // Decode children if (!state.any && state.choice === null && state.children !== null) { state.children.forEach(function decodeChildren(child) { // NOTE: We are ignoring errors here, to let parser continue with other // parts of encoded data child._decode(input, options); }); } // Decode contained/encoded by schema, only in bit or octet strings if (state.contains && (state.tag === 'octstr' || state.tag === 'bitstr')) { var data = new DecoderBuffer(result); result = this._getUse(state.contains, input._reporterState.obj)._decode(data, options); } } // Pop object if (state.obj && present) result = input.leaveObject(prevObj); // Set key if (state.key !== null && (result !== null || present === true)) input.leaveKey(prevKey, state.key, result);else if (prevKey !== null) input.exitKey(prevKey); return result; }; Node.prototype._decodeGeneric = function decodeGeneric(tag, input, options) { var state = this._baseState; if (tag === 'seq' || tag === 'set') return null; if (tag === 'seqof' || tag === 'setof') return this._decodeList(input, tag, state.args[0], options);else if (/str$/.test(tag)) return this._decodeStr(input, tag, options);else if (tag === 'objid' && state.args) return this._decodeObjid(input, state.args[0], state.args[1], options);else if (tag === 'objid') return this._decodeObjid(input, null, null, options);else if (tag === 'gentime' || tag === 'utctime') return this._decodeTime(input, tag, options);else if (tag === 'null_') return this._decodeNull(input, options);else if (tag === 'bool') return this._decodeBool(input, options);else if (tag === 'objDesc') return this._decodeStr(input, tag, options);else if (tag === 'int' || tag === 'enum') return this._decodeInt(input, state.args && state.args[0], options); if (state.use !== null) { return this._getUse(state.use, input._reporterState.obj)._decode(input, options); } else { return input.error('unknown tag: ' + tag); } }; Node.prototype._getUse = function _getUse(entity, obj) { var state = this._baseState; // Create altered use decoder if implicit is set state.useDecoder = this._use(entity, obj); assert(state.useDecoder._baseState.parent === null); state.useDecoder = state.useDecoder._baseState.children[0]; if (state.implicit !== state.useDecoder._baseState.implicit) { state.useDecoder = state.useDecoder.clone(); state.useDecoder._baseState.implicit = state.implicit; } return state.useDecoder; }; Node.prototype._decodeChoice = function decodeChoice(input, options) { var state = this._baseState; var result = null; var match = false; Object.keys(state.choice).some(function (key) { var save = input.save(); var node = state.choice[key]; try { var value = node._decode(input, options); if (input.isError(value)) return false; result = { type: key, value: value }; match = true; } catch (e) { input.restore(save); return false; } return true; }, this); if (!match) return input.error('Choice not matched'); return result; }; // // Encoding // Node.prototype._createEncoderBuffer = function createEncoderBuffer(data) { return new EncoderBuffer(data, this.reporter); }; Node.prototype._encode = function encode(data, reporter, parent) { var state = this._baseState; if (state['default'] !== null && state['default'] === data) return; var result = this._encodeValue(data, reporter, parent); if (result === undefined) return; if (this._skipDefault(result, reporter, parent)) return; return result; }; Node.prototype._encodeValue = function encode(_data, reporter, parent) { var state = this._baseState; var data = _data; // Decode root node if (state.parent === null) return state.children[0]._encode(data, reporter || new Reporter()); var result = null; // Set reporter to share it with a child class this.reporter = reporter; // Check if data is there if (state.optional && data === undefined) { if (state['default'] !== null) data = state['default'];else return; } // Encode children first var content = null; var primitive = false; if (state.any) { // Anything that was given is translated to buffer result = this._createEncoderBuffer(data); } else if (state.choice) { result = this._encodeChoice(data, reporter); } else if (state.contains) { content = this._getUse(state.contains, parent)._encode(data, reporter); primitive = true; } else if (state.children) { content = state.children.map(function (child) { if (child._baseState.tag === 'null_') return child._encode(null, reporter, data); if (child._baseState.key === null) return reporter.error('Child should have a key'); var prevKey = reporter.enterKey(child._baseState.key); if ((typeof data === 'undefined' ? 'undefined' : _typeof(data)) !== 'object') return reporter.error('Child expected, but input is not object'); var res = child._encode(data[child._baseState.key], reporter, data); reporter.leaveKey(prevKey); return res; }, this).filter(function (child) { return child; }); content = this._createEncoderBuffer(content); } else { if (state.tag === 'seqof' || state.tag === 'setof') { // TODO(indutny): this should be thrown on DSL level if (!(state.args && state.args.length === 1)) return reporter.error('Too many args for : ' + state.tag); if (!Array.isArray(data)) return reporter.error('seqof/setof, but data is not Array'); var child = this.clone(); child._baseState.implicit = null; content = this._createEncoderBuffer(data.map(function (item) { var state = this._baseState; return this._getUse(state.args[0], data)._encode(item, reporter); }, child)); } else if (state.use !== null) { result = this._getUse(state.use, parent)._encode(data, reporter); } else { content = this._encodePrimitive(state.tag, data); primitive = true; } } // Encode data itself if (!state.any && state.choice === null) { var tag = state.implicit !== null ? state.implicit : state.tag; var cls = state.implicit === null ? 'universal' : 'context'; if (tag === null) { if (state.use === null) reporter.error('Tag could be omitted only for .use()'); } else { if (state.use === null) result = this._encodeComposite(tag, primitive, cls, content); } } // Wrap in explicit if (state.explicit !== null) result = this._encodeComposite(state.explicit, false, 'context', result); return result; }; Node.prototype._encodeChoice = function encodeChoice(data, reporter) { var state = this._baseState; var node = state.choice[data.type]; if (!node) { assert(false, data.type + ' not found in ' + JSON.stringify(Object.keys(state.choice))); } return node._encode(data.value, reporter); }; Node.prototype._encodePrimitive = function encodePrimitive(tag, data) { var state = this._baseState; if (/str$/.test(tag)) return this._encodeStr(data, tag);else if (tag === 'objid' && state.args) return this._encodeObjid(data, state.reverseArgs[0], state.args[1]);else if (tag === 'objid') return this._encodeObjid(data, null, null);else if (tag === 'gentime' || tag === 'utctime') return this._encodeTime(data, tag);else if (tag === 'null_') return this._encodeNull();else if (tag === 'int' || tag === 'enum') return this._encodeInt(data, state.args && state.reverseArgs[0]);else if (tag === 'bool') return this._encodeBool(data);else if (tag === 'objDesc') return this._encodeStr(data, tag);else throw new Error('Unsupported tag: ' + tag); }; Node.prototype._isNumstr = function isNumstr(str) { return (/^[0-9 ]*$/.test(str) ); }; Node.prototype._isPrintstr = function isPrintstr(str) { return (/^[A-Za-z0-9 '()+,-./:=?]*$/.test(str) ); }; var index = /*#__PURE__*/Object.freeze({ Node: Node, Reporter: Reporter, EncoderBuffer: EncoderBuffer, DecoderBuffer: DecoderBuffer }); // Helper var _reverse = function _reverse(map) { var res = {}; Object.keys(map).forEach(function (_key) { // Convert key to integer if it is stringified var key = _key; if ((key | 0) == key) key = key | 0; var value = map[key]; res[value] = key; }); return res; }; var tagClass = { 0: 'universal', 1: 'application', 2: 'context', 3: 'private' }; var tagClassByName = _reverse(tagClass); var tag = { 0x00: 'end', 0x01: 'bool', 0x02: 'int', 0x03: 'bitstr', 0x04: 'octstr', 0x05: 'null_', 0x06: 'objid', 0x07: 'objDesc', 0x08: 'external', 0x09: 'real', 0x0a: 'enum', 0x0b: 'embed', 0x0c: 'utf8str', 0x0d: 'relativeOid', 0x10: 'seq', 0x11: 'set', 0x12: 'numstr', 0x13: 'printstr', 0x14: 't61str', 0x15: 'videostr', 0x16: 'ia5str', 0x17: 'utctime', 0x18: 'gentime', 0x19: 'graphstr', 0x1a: 'iso646str', 0x1b: 'genstr', 0x1c: 'unistr', 0x1d: 'charstr', 0x1e: 'bmpstr' }; var tagByName = _reverse(tag); var der = /*#__PURE__*/Object.freeze({ tagClass: tagClass, tagClassByName: tagClassByName, tag: tag, tagByName: tagByName }); var index$1 = /*#__PURE__*/Object.freeze({ der: der }); function DEREncoder(entity) { this.enc = 'der'; this.name = entity.name; this.entity = entity; // Construct base tree this.tree = new DERNode(); this.tree._init(entity.body); } DEREncoder.prototype.encode = function encode(data, reporter) { return this.tree._encode(data, reporter).join(); }; // Tree methods function DERNode(parent) { Node.call(this, 'der', parent); } inherits(DERNode, Node); DERNode.prototype._encodeComposite = function encodeComposite(tag$$1, primitive, cls, content) { var encodedTag = encodeTag(tag$$1, primitive, cls, this.reporter); // Short form if (content.length < 0x80) { var _header = new Buffer(2); _header[0] = encodedTag; _header[1] = content.length; return this._createEncoderBuffer([_header, content]); } // Long form // Count octets required to store length var lenOctets = 1; for (var i = content.length; i >= 0x100; i >>= 8) { lenOctets++; }var header = new Buffer(1 + 1 + lenOctets); header[0] = encodedTag; header[1] = 0x80 | lenOctets; for (var _i = 1 + lenOctets, j = content.length; j > 0; _i--, j >>= 8) { header[_i] = j & 0xff; }return this._createEncoderBuffer([header, content]); }; DERNode.prototype._encodeStr = function encodeStr(str, tag$$1) { if (tag$$1 === 'bitstr') { return this._createEncoderBuffer([str.unused | 0, str.data]); } else if (tag$$1 === 'bmpstr') { var buf = new Buffer(str.length * 2); for (var i = 0; i < str.length; i++) { buf.writeUInt16BE(str.charCodeAt(i), i * 2); } return this._createEncoderBuffer(buf); } else if (tag$$1 === 'numstr') { if (!this._isNumstr(str)) { return this.reporter.error('Encoding of string type: numstr supports ' + 'only digits and space'); } return this._createEncoderBuffer(str); } else if (tag$$1 === 'printstr') { if (!this._isPrintstr(str)) { return this.reporter.error('Encoding of string type: printstr supports ' + 'only latin upper and lower case letters, ' + 'digits, space, apostrophe, left and rigth ' + 'parenthesis, plus sign, comma, hyphen, ' + 'dot, slash, colon, equal sign, ' + 'question mark'); } return this._createEncoderBuffer(str); } else if (/str$/.test(tag$$1)) { return this._createEncoderBuffer(str); } else if (tag$$1 === 'objDesc') { return this._createEncoderBuffer(str); } else { return this.reporter.error('Encoding of string type: ' + tag$$1 + ' unsupported'); } }; DERNode.prototype._encodeObjid = function encodeObjid(_id, values, relative) { var id = _id; if (typeof id === 'string') { if (!values) return this.reporter.error('string objid given, but no values map found'); if (!values.hasOwnProperty(id)) return this.reporter.error('objid not found in values map'); id = values[id].split(/[\s.]+/g); for (var i = 0; i < id.length; i++) { id[i] |= 0; } } else if (Array.isArray(id)) { id = id.slice(); for (var _i2 = 0; _i2 < id.length; _i2++) { id[_i2] |= 0; } } if (!Array.isArray(id)) { return this.reporter.error('objid() should be either array or string, ' + 'got: ' + JSON.stringify(id)); } if (!relative) { if (id[1] >= 40) return this.reporter.error('Second objid identifier OOB'); id.splice(0, 2, id[0] * 40 + id[1]); } // Count number of octets var size = 0; for (var _i3 = 0; _i3 < id.length; _i3++) { var ident = id[_i3]; for (size++; ident >= 0x80; ident >>= 7) { size++; } } var objid = new Buffer(size); var offset = objid.length - 1; for (var _i4 = id.length - 1; _i4 >= 0; _i4--) { var _ident = id[_i4]; objid[offset--] = _ident & 0x7f; while ((_ident >>= 7) > 0) { objid[offset--] = 0x80 | _ident & 0x7f; } } return this._createEncoderBuffer(objid); }; function two(num) { if (num < 10) return '0' + num;else return num; } DERNode.prototype._encodeTime = function encodeTime(time, tag$$1) { var str = void 0; var date = new Date(time); if (tag$$1 === 'gentime') { str = [two(date.getFullYear()), two(date.getUTCMonth() + 1), two(date.getUTCDate()), two(date.getUTCHours()), two(date.getUTCMinutes()), two(date.getUTCSeconds()), 'Z'].join(''); } else if (tag$$1 === 'utctime') { str = [two(date.getFullYear() % 100), two(date.getUTCMonth() + 1), two(date.getUTCDate()), two(date.getUTCHours()), two(date.getUTCMinutes()), two(date.getUTCSeconds()), 'Z'].join(''); } else { this.reporter.error('Encoding ' + tag$$1 + ' time is not supported yet'); } return this._encodeStr(str, 'octstr'); }; DERNode.prototype._encodeNull = function encodeNull() { return this._createEncoderBuffer(''); }; DERNode.prototype._encodeInt = function encodeInt(_num, values) { var num = _num; if (typeof num === 'string') { if (!values) return this.reporter.error('String int or enum given, but no values map'); if (!values.hasOwnProperty(num)) { return this.reporter.error("Values map doesn't contain: " + JSON.stringify(num)); } num = values[num]; } // Bignum, assume big endian if (typeof num !== 'number' && !Buffer.isBuffer(num)) { var numArray = num.toArray(); if (!num.sign && numArray[0] & 0x80) { numArray.unshift(0); } num = new Buffer(numArray); } if (Buffer.isBuffer(num)) { var _size = num.length; if (num.length === 0) _size++; var _out = new Buffer(_size); num.copy(_out); if (num.length === 0) _out[0] = 0; return this._createEncoderBuffer(_out); } if (num < 0x80) return this._createEncoderBuffer(num); if (num < 0x100) return this._createEncoderBuffer([0, num]); var size = 1; for (var i = num; i >= 0x100; i >>= 8) { size++; }var out = new Array(size); for (var _i5 = out.length - 1; _i5 >= 0; _i5--) { out[_i5] = num & 0xff; num >>= 8; } if (out[0] & 0x80) { out.unshift(0); } return this._createEncoderBuffer(new Buffer(out)); }; DERNode.prototype._encodeBool = function encodeBool(value) { return this._createEncoderBuffer(value ? 0xff : 0); }; DERNode.prototype._use = function use(_entity, obj) { var entity = _entity; if (typeof entity === 'function') entity = entity(obj); return entity._getEncoder('der').tree; }; DERNode.prototype._skipDefault = function skipDefault(dataBuffer, reporter, parent) { var state = this._baseState; var i = void 0; if (state['default'] === null) return false; var data = dataBuffer.join(); if (state.defaultBuffer === undefined) state.defaultBuffer = this._encodeValue(state['default'], reporter, parent).join(); if (data.length !== state.defaultBuffer.length) return false; for (i = 0; i < data.length; i++) { if (data[i] !== state.defaultBuffer[i]) return false; }return true; }; // Utility methods function encodeTag(_tag, primitive, cls, reporter) { var tag$$1 = _tag; var res = void 0; if (tag$$1 === 'seqof') tag$$1 = 'seq';else if (tag$$1 === 'setof') tag$$1 = 'set'; if (tagByName.hasOwnProperty(tag$$1)) res = tagByName[tag$$1];else if (typeof tag$$1 === 'number' && (tag$$1 | 0) === tag$$1) res = tag$$1;else return reporter.error('Unknown tag: ' + tag$$1); if (res >= 0x1f) return reporter.error('Multi-octet tag encoding unsupported'); if (!primitive) res |= 0x20; res |= tagClassByName[cls || 'universal'] << 6; return res; } function PEMEncoder(entity) { DEREncoder.call(this, entity); this.enc = 'pem'; } inherits(PEMEncoder, DEREncoder); PEMEncoder.prototype.encode = function encode(data, options) { var buf = DEREncoder.prototype.encode.call(this, data); var p = buf.toString('base64'); var out = ['-----BEGIN ' + options.label + '-----']; for (var i = 0; i < p.length; i += 64) { out.push(p.slice(i, i + 64)); }out.push('-----END ' + options.label + '-----'); return out.join('\n'); }; var encoders = /*#__PURE__*/Object.freeze({ der: DEREncoder, pem: PEMEncoder }); function DERDecoder(entity) { this.enc = 'der'; this.name = entity.name; this.entity = entity; // Construct base tree this.tree = new DERNode$1(); this.tree._init(entity.body); } DERDecoder.prototype.decode = function decode(_data, options) { var data = _data; if (!(data instanceof DecoderBuffer)) data = new DecoderBuffer(data, options); return this.tree._decode(data, options); }; // Tree methods function DERNode$1(parent) { Node.call(this, 'der', parent); } inherits(DERNode$1, Node); DERNode$1.prototype._peekTag = function peekTag(buffer, tag$$1, any) { if (buffer.isEmpty()) return false; var state = buffer.save(); var decodedTag = derDecodeTag(buffer, 'Failed to peek tag: "' + tag$$1 + '"'); if (buffer.isError(decodedTag)) return decodedTag; buffer.restore(state); return decodedTag.tag === tag$$1 || decodedTag.tagStr === tag$$1 || decodedTag.tagStr + 'of' === tag$$1 || any; }; DERNode$1.prototype._decodeTag = function decodeTag(buffer, tag$$1, any) { var decodedTag = derDecodeTag(buffer, 'Failed to decode tag of "' + tag$$1 + '"'); if (buffer.isError(decodedTag)) return decodedTag; var len = derDecodeLen(buffer, decodedTag.primitive, 'Failed to get length of "' + tag$$1 + '"'); // Failure if (buffer.isError(len)) return len; if (!any && decodedTag.tag !== tag$$1 && decodedTag.tagStr !== tag$$1 && decodedTag.tagStr + 'of' !== tag$$1) { return buffer.error('Failed to match tag: "' + tag$$1 + '"'); } if (decodedTag.primitive || len !== null) return buffer.skip(len, 'Failed to match body of: "' + tag$$1 + '"'); // Indefinite length... find END tag var state = buffer.save(); var res = this._skipUntilEnd(buffer, 'Failed to skip indefinite length body: "' + this.tag + '"'); if (buffer.isError(res)) return res; len = buffer.offset - state.offset; buffer.restore(state); return buffer.skip(len, 'Failed to match body of: "' + tag$$1 + '"'); }; DERNode$1.prototype._skipUntilEnd = function skipUntilEnd(buffer, fail) { for (;;) { var tag$$1 = derDecodeTag(buffer, fail); if (buffer.isError(tag$$1)) return tag$$1; var len = derDecodeLen(buffer, tag$$1.primitive, fail); if (buffer.isError(len)) return len; var res = void 0; if (tag$$1.primitive || len !== null) res = buffer.skip(len);else res = this._skipUntilEnd(buffer, fail); // Failure if (buffer.isError(res)) return res; if (tag$$1.tagStr === 'end') break; } }; DERNode$1.prototype._decodeList = function decodeList(buffer, tag$$1, decoder, options) { var result = []; while (!buffer.isEmpty()) { var possibleEnd = this._peekTag(buffer, 'end'); if (buffer.isError(possibleEnd)) return possibleEnd; var res = decoder.decode(buffer, 'der', options); if (buffer.isError(res) && possibleEnd) break; result.push(res); } return result; }; DERNode$1.prototype._decodeStr = function decodeStr(buffer, tag$$1) { if (tag$$1 === 'bitstr') { var unused = buffer.readUInt8(); if (buffer.isError(unused)) return unused; return { unused: unused, data: buffer.raw() }; } else if (tag$$1 === 'bmpstr') { var raw = buffer.raw(); if (raw.length % 2 === 1) return buffer.error('Decoding of string type: bmpstr length mismatch'); var str = ''; for (var i = 0; i < raw.length / 2; i++) { str += String.fromCharCode(raw.readUInt16BE(i * 2)); } return str; } else if (tag$$1 === 'numstr') { var numstr = buffer.raw().toString('ascii'); if (!this._isNumstr(numstr)) { return buffer.error('Decoding of string type: ' + 'numstr unsupported characters'); } return numstr; } else if (tag$$1 === 'octstr') { return buffer.raw(); } else if (tag$$1 === 'objDesc') { return buffer.raw(); } else if (tag$$1 === 'printstr') { var printstr = buffer.raw().toString('ascii'); if (!this._isPrintstr(printstr)) { return buffer.error('Decoding of string type: ' + 'printstr unsupported characters'); } return printstr; } else if (/str$/.test(tag$$1)) { return buffer.raw().toString(); } else { return buffer.error('Decoding of string type: ' + tag$$1 + ' unsupported'); } }; DERNode$1.prototype._decodeObjid = function decodeObjid(buffer, values, relative) { var result = void 0; var identifiers = []; var ident = 0; var subident = 0; while (!buffer.isEmpty()) { subident = buffer.readUInt8(); ident <<= 7; ident |= subident & 0x7f; if ((subident & 0x80) === 0) { identifiers.push(ident); ident = 0; } } if (subident & 0x80) identifiers.push(ident); var first = identifiers[0] / 40 | 0; var second = identifiers[0] % 40; if (relative) result = identifiers;else result = [first, second].concat(identifiers.slice(1)); if (values) { var tmp = values[result.join(' ')]; if (tmp === undefined) tmp = values[result.join('.')]; if (tmp !== undefined) result = tmp; } return result; }; DERNode$1.prototype._decodeTime = function decodeTime(buffer, tag$$1) { var str = buffer.raw().toString(); var year = void 0; var mon = void 0; var day = void 0; var hour = void 0; var min = void 0; var sec = void 0; if (tag$$1 === 'gentime') { year = str.slice(0, 4) | 0; mon = str.slice(4, 6) | 0; day = str.slice(6, 8) | 0; hour = str.slice(8, 10) | 0; min = str.slice(10, 12) | 0; sec = str.slice(12, 14) | 0; } else if (tag$$1 === 'utctime') { year = str.slice(0, 2) | 0; mon = str.slice(2, 4) | 0; day = str.slice(4, 6) | 0; hour = str.slice(6, 8) | 0; min = str.slice(8, 10) | 0; sec = str.slice(10, 12) | 0; if (year < 70) year = 2000 + year;else year = 1900 + year; } else { return buffer.error('Decoding ' + tag$$1 + ' time is not supported yet'); } return Date.UTC(year, mon - 1, day, hour, min, sec, 0); }; DERNode$1.prototype._decodeNull = function decodeNull() { return null; }; DERNode$1.prototype._decodeBool = function decodeBool(buffer) { var res = buffer.readUInt8(); if (buffer.isError(res)) return res;else return res !== 0; }; DERNode$1.prototype._decodeInt = function decodeInt(buffer, values) { // Bigint, return as it is (assume big endian) var raw = buffer.raw(); var res = new bignum(raw); if (values) res = values[res.toString(10)] || res; return res; }; DERNode$1.prototype._use = function use(_entity, obj) { var entity = _entity; if (typeof entity === 'function') entity = entity(obj); return entity._getDecoder('der').tree; }; // Utility methods function derDecodeTag(buf, fail) { var tag$$1 = buf.readUInt8(fail); if (buf.isError(tag$$1)) return tag$$1; var cls = tagClass[tag$$1 >> 6]; var primitive = (tag$$1 & 0x20) === 0; // Multi-octet tag - load if ((tag$$1 & 0x1f) === 0x1f) { var oct = tag$$1; tag$$1 = 0; while ((oct & 0x80) === 0x80) { oct = buf.readUInt8(fail); if (buf.isError(oct)) return oct; tag$$1 <<= 7; tag$$1 |= oct & 0x7f; } } else { tag$$1 &= 0x1f; } var tagStr = tag[tag$$1]; return { cls: cls, primitive: primitive, tag: tag$$1, tagStr: tagStr }; } function derDecodeLen(buf, primitive, fail) { var len = buf.readUInt8(fail); if (buf.isError(len)) return len; // Indefinite form if (!primitive && len === 0x80) return null; // Definite form if ((len & 0x80) === 0) { // Short form return len; } // Long form var num = len & 0x7f; if (num > 4) return buf.error('length octect is too long'); len = 0; for (var i = 0; i < num; i++) { len <<= 8; var j = buf.readUInt8(fail); if (buf.isError(j)) return j; len |= j; } return len; } function PEMDecoder(entity) { DERDecoder.call(this, entity); this.enc = 'pem'; } inherits(PEMDecoder, DERDecoder); PEMDecoder.prototype.decode = function decode(data, options) { var lines = data.toString().split(/[\r\n]+/g); var label = options.label.toUpperCase(); var re = /^-----(BEGIN|END) ([^-]+)-----$/; var start = -1; var end = -1; for (var i = 0; i < lines.length; i++) { var match = lines[i].match(re); if (match === null) continue; if (match[2] !== label) continue; if (start === -1) { if (match[1] !== 'BEGIN') break; start = i; } else { if (match[1] !== 'END') break; end = i; break; } } if (start === -1 || end === -1) throw new Error('PEM section not found for: ' + label); var base64 = lines.slice(start + 1, end).join(''); // Remove excessive symbols base64.replace(/[^a-z0-9+/=]+/gi, ''); var input = new Buffer(base64, 'base64'); return DERDecoder.prototype.decode.call(this, input, options); }; var decoders = /*#__PURE__*/Object.freeze({ der: DERDecoder, pem: PEMDecoder }); var define = function define(name, body) { return new Entity(name, body); }; function Entity(name, body) { this.name = name; this.body = body; this.decoders = {}; this.encoders = {}; } Entity.prototype._createNamed = function createNamed(base) { var named = void 0; try { named = vm.runInThisContext('(function ' + this.name + '(entity) {\n' + ' this._initNamed(entity);\n' + '})'); } catch (e) { named = function named(entity) { this._initNamed(entity); }; } inherits(named, base); named.prototype._initNamed = function initnamed(entity) { base.call(this, entity); }; return new named(this); }; Entity.prototype._getDecoder = function _getDecoder(enc) { var encoding = enc || 'der'; // Lazily create decoder if (!this.decoders.hasOwnProperty(encoding)) this.decoders[encoding] = this._createNamed(decoders[encoding]); return this.decoders[encoding]; }; Entity.prototype.decode = function decode(data, enc, options) { return this._getDecoder(enc).decode(data, options); }; Entity.prototype._getEncoder = function _getEncoder(enc) { var encoding = enc || 'der'; // Lazily create encoder if (!this.encoders.hasOwnProperty(encoding)) this.encoders[encoding] = this._createNamed(encoders[encoding]); return this.encoders[encoding]; }; Entity.prototype.encode = function encode(data, enc, /* internal */reporter) { return this._getEncoder(enc).encode(data, reporter); }; exports.BigNumber = bignum; exports.define = define; exports.constants = index$1; exports.base = index; exports.encoders = encoders; exports.decoders = decoders;
1fb3814a857370525af51013f934c808006664e6
[ "JavaScript" ]
7
JavaScript
stratumn/asn1.js
663adde1558d8a9b97d1109a029cfc6690e85268
74eecb02ba017b5a05be8644e6ea41096443f06b
refs/heads/master
<repo_name>transliterate/School_assignment<file_sep>/Periode_4/Les_6/product.php <?php class Product { public $name; public $description; public $stock; private $price; public $image; protected $vat; public function __construct(){ echo '__construct called'; } public function __set($name, $value){ echo '__set() called for ' . $name . ' with value ' . $value; } public function __get($name) { echo '__get() called for ' . $name; } } ?><file_sep>/Periode_4/Les_3/php/function.php <?php function slug($z){ $z = strtolower($z); $z = preg_replace('/[^a-z0-9 -]+/', '', $z); $z = str_replace(' ', '-', $z); return trim($z, '-'); } ?><file_sep>/Periode_3/PHP_les_5/classfunction.php <?php class Notebook { public $brand; public $type; public $color; public $ram; public $processor; public $OS; public function __construct($brand, $type, $color, $ram, $processor, $OS) { $this->brand = $brand; $this->type = $type; $this->color = $color; $this->ram = $ram; $this->processor = $processor; $this->OS = $OS; } public function openFile() { return "Ik open $this->file omdat ik dat leuk vindt <br>"; } public function myNotebook(){ return "I have a $this->brand wich is a $this->type. It's $this->color"; } } ?><file_sep>/Periode_3/PHP_Robben_Les_2/autophp/togheter.php <!DOCTYPE html> <html> <head> <title> DEAD LINK </title> <body> <p></p> <?php date_default_timezone_set('Europe/Amsterdam'); $t=time(); echo date ('d-m-Y'); echo ('<br>'); echo date ('h:i:sa'); ?> </body> </html><file_sep>/Periode_3/PHP_Robben_Les_2/fruitphp/percentage.php <!doctype html> <html> <head> </head> <body> <form> <label> Bedrag </label> <input type="text" name="bedrag"> <label> Percentage </label> <input type="text" name="percent"> <button type="submit">Submit</button> </form> <?php class percentage { public $bedrag; public $percentage; private $_uitkomst; private $_extraData = array(); } ?> </body> </html><file_sep>/Periode_3/PHP_Les_2/arrays.php <?php $games = ['name' => 'Counter-strike', 'studio' => 'valve']; echo $games ['name']; echo $games ['studio']; echo '<br>'; $array = ['booleans','strings','arrays']; echo "I like " . $array[0] . ", " . $array[1] . " and " . $array[2] . "."; echo '<br>'; $characters= [ ['first_name' => '<NAME>', 'game' => 'A game'], ['first_name' => '<NAME>', 'game' => 'The game'] ]; echo "<br>"; echo "hal<NAME> is" . $characters['first_name']; echo "<br>"; var_dump($characters); ?><file_sep>/Periode_3/ala_pizzaplace/assets/includes/class-cart.php <?php class Cart { public $cart_items = array(); function __construct(argument) { get_cart_from_session() } public function get_cart_from_session() { //We get products and amounts from session here } } ?><file_sep>/Periode_4/Les_5/cat.php <?php class Cat extends Animal{ public function purr(){ return 'making a sound'; } } ?><file_sep>/Periode_3/PHP_les_5/class.php <?php class Notebook { public $brand; public $type; public $color; public $ram; public $processor; public $OS; } ?><file_sep>/Periode_4/Les_4/pdoparam.php <?php // Setting username and password $username = 'root'; $password = '<PASSWORD>'; try{ // New PDO $conn = new PDO('mysql:host=localhost:3307;dbname=test', $username, $password); $data = 'leeuw'. rand(); //Insert new data into table users $insert = ("INSERT INTO users (email, username, password) VALUES (:email, :username, :password)"); $insert = $conn->prepare($insert); $insert->bindValue(':email', 'henk'); $insert->bindValue(':username', $data); $insert->bindValue(':password', '<PASSWORD>'); $insert->execute(); //Insert new data into table users $insert = ("INSERT INTO users (email, username, password) VALUES (?, ?, ?)"); $insert = $conn->prepare($insert); $insert->bindValue('1', 'henk'); $insert->bindValue('2', $data); $insert->bindValue('3', 'hallo'); $insert->execute(); //If connection fails, makes error message }catch(PDOWarning $e){ print_r( 'Connection Failed!' . $e->getMessage()); } ?><file_sep>/Periode_3/PHP_les_5/filefunction.php <?php include 'classfunction.php'; //$notebook1 = new Notebook(); //$notebook2 = new Notebook(); //$notebook1->file = 'word'; //$notebook2->file = 'excel'; //$notebook1->openFile(); //$notebook2->openFile(); //echo $notebook1->openFile(); //echo $notebook2->openFile(); $notebook3 = new Notebook('msi', 'ghostpro', 'black', 16, 'inteli7', 'linux'); ?><file_sep>/Periode_3/PHP_les_5/objectfakes.php <?php $person = ['first_name' => '', 'last_name' => ''] $person1 = $person; $person2 = $person; var_dump ($person1); var_dump ($person2); ?><file_sep>/Periode_3/Games/game2.php <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> <title>Bootstrap 101 Template</title> <link href="../assets/stylesheets/bootstrap.min.css" rel="stylesheet"> </head> <body> <div class="container"> <h1>Hoger en lager</h1> <?php session_start(); if ( !isset($_SESSION['randomGetal']) ) { $_SESSION['randomGetal'] = rand(0, 100); } ?> <form method="POST"> <input name='guess' type="number"> <input type="submit" value="Probeer" class="btn btn-primary"> </form> <?php if ($_SERVER['REQUEST_METHOD'] == 'POST') { if ( isset( $_POST['guess'] ) ) { if ($_SESSION['randomGetal'] == $_POST['guess']) { unset( $_SESSION['randomGetal'] ); echo correct(); } else { echo $_POST['guess'] < $_SESSION['randomGetal'] ? tooHigh() : tooLow(); } } } function tooLow(){ return "Wrong! Your guess was too low."; } function tooHigh(){ return "Wrong! Your guess was too high."; } function correct(){ return "Bitch you guessed it!"; } $number_of_tries = 0; $min = 0; $max = 100; $number_to_guess = 33; do { $number_of_tries++; # run untill guess is correct echo "<strong>poging $number_of_tries</strong><br>"; echo "minimaal is nu $min<br>"; echo "maximaal is nu $max<br>"; $guess = ceil( ( ( $min + $max ) / 2 ) ); echo "het getal wat ik raad is: $guess<br>"; if ( $number_to_guess < $guess) { echo 'het getal is te hoog'; $max = $guess; } elseif ( $number_to_guess > $guess) { echo 'het getal is te laag'; $min = $guess; } echo '<br><br>'; } while ( $number_to_guess != $guess ) ?> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <script src="../assets/javascripts/bootstrap.min.js"></script> </body> </html><file_sep>/Periode_3/ala_pizzaplace/assets/javascript/main.js var qi = $('input#quantity-input'); $('input#quantity-input').on('keyup', function(event) { if ($('input#quantity-input').val() != '') { $('input#add-to-cart').removeAttr('disabled'); } else { $('input#add-to-cart').attr('disabled', 'disabled'); } }); if ($('input#quantity-input').val() == '') { $('input#add-to-cart').attr('disabled', 'disabled'); }<file_sep>/Periode_3/ala_pizzaplace/assets/includes/mysqli.php <?php $conn = new mysqli('localhost', 'usbw', 'root'); $result = mysqli_query(SELECT * FROM `users` WHERE 1); var_dump($result); ?><file_sep>/Periode_3/Games/game1.php <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>HoL</title> <link href="assets/stylesheets/bootstrap.min.css" rel="stylesheet"> <link href="assets/stylesheets/index.css" rel="stylesheet"> </head> <body> <div class="logo"> <img src="assets/images/icon.png"> <h1> Welcome to Higher Lower </h1> </div> <?php session_start(); if ( !isset($_SESSION['randomGetal']) ) { $_SESSION['randomGetal'] = rand(0, 100); } ?> <div class="container"> <div class="row mainframe"> <form method="POST"> <input name='guess' type="number"> <input type="submit" value="Probeer" class="btn btn-primary"> </form> </div> <div class="row mainframe"> <?php if ($_SERVER['REQUEST_METHOD'] == 'POST') { if ( isset( $_POST['guess'] ) ) { if ($_SESSION['randomGetal'] == $_POST['guess']) { unset( $_SESSION['randomGetal'] ); echo correct(); } else { echo $_POST['guess'] < $_SESSION['randomGetal'] ? tooHigh() : tooLow(); } } } function tooLow(){ return "Wrong! Your guess was too high."; } function tooHigh(){ return "Wrong! Your guess was too low."; } function correct(){ return "Bitch you guessed it!"; } ?> </div> </div> <!-- scripts --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <script src="assets/javascripts/bootstrap.js"></script> <!-- end scripts --> </body> </html><file_sep>/Periode_4/Les_5/animal.php <?php class Animal { public $name; public $color; public $numLegs; public $gender; public function introduce(){ return "hi, my name is $this->name"; } } ?><file_sep>/Periode_3/PHP_Les_3/functions.php <?php function loopdoodle(){ for($i=0;$i <11; $i++){ echo "$i x $i =" . $i*$i . " <br>"; } } //loopdoodle(); function say_houme(){ $Houme = 'Houme&nbsp;Paalvast'; echo $Houme; } echo '<br>'; function bands ($name, $date){ echo "We have $name on $date <br>"; } ?><file_sep>/Periode_3/PHP_Les_2/loops.php <?php $x = 0; while ($x <= 50) { //echo ($x . "x" . $x . "=" . $x*$x . "<br>"); $x++; } for ($i=0; $i < 31; $i++){ //echo ($i . "x" . $i . "=" . $i*$i . "<br>"); } $books; $books["The art of war"] = "Sun Tzu"; $books["Dont make me think"] = "<NAME>"; $books["A brief history of time"] = "<NAME>"; foreach( $books as $name => $writers){ echo "<b>Name:</b> $name, <b>Writer:</b> $writers <br>"; }; ?> <file_sep>/Periode_3/PHP_Les_3/include.php <?php require 'functions.php'; Bands('The&nbsp;Front&nbsp;bottoms', '27-12'); Bands('Above&nbsp;Them', '27-12'); echo '<hr>'; say_Houme(); echo '<hr>'; loopdoodle(); echo'<hr>'; ?><file_sep>/Periode_4/robben_superclass/superclassexample.php <?php class Calculate{ // declaration of private variables private $_number; private $_percentage; public function __construct($number, $percentage) { // Class gets instantiated with this function it fills a number and a percentage $this->_number = $number; $this->_percentage = $percentage; } public function setPercentage($percentage) { // Here i can do some checks before filling the private var $_number $this->_percentage = $percentage; } public function getPercentage(){ // returns private percentage return $this->_percentage; } public function getNumber() { // returns the number set in the constructor/set method return $this->_number; } public function setNumber($number) { // Here i can do some checks before filling the private var $_number $this->_number = $number; } public function percentage() { // the if statement is to make sure the set method is not used incorrectly // this returns false if num is unset and returns the outcome of the percentage over the set number if (isset($this->_number)){ return ($this->_number/100*$this->_percentage); } return false; } public function getPostPercentage($newNum) { // this method returns the percentage difference between a new number given to the method and the set number if (isset($this->_number)){ return ($newNum/$this->_number*100); } return false; } public function addToNum($amount) { // this method need a number to be added to the set number and sets the set number + amount to a new set number if (isset($this->_number)){ $this->_number = $this->_number+$amount; return $this->_number; } return false; } }<file_sep>/Periode_4/Les_5/user.php <?php class User{ public $email; public $name; public $username; protected $password; private $userdata; public function __Construct ($email,$name, $username, $password, $userdata){ $this->$email = $email; $this->$name = $name; $this->$username = $username; $this->$password = $password; $this->$userdata = $userdata; } public function showName(){ return "Welcome $username, your last login was $userdata"; } }<file_sep>/Periode_4/robben_superclass/superclass.php <?php class DoSums { private $_number; private $_percentage; public function getNumber() { return $this->_number; } public function setNumber() { $this->_number = $_number; } public function getPercentage() { return $this->_percentage; } public function setPercentage() { $this->_percentage = $_percentage; } public function __construct($_number, $_percentage) { $this->_number = $_number; $this->_percentage = $_percentage; } public function calculate() { return ($this->_number/100*$this->_percentage); } } <file_sep>/Periode_3/ala_pizzaplace/index.php <?php require 'assets/includes/init.php'; require 'pizzas.php'; require 'functions.php'; ?> <!doctype html> <html class="no-js" lang=""> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title>Pizza Place - Mario</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="css/bootstrap.min.css"> </head> <body> <div class="container"> <div class="page-header"> <h1>I'll take you to the pizza shop <small>I'll let you lick the lollipop</small></h1> </div> <div class="row"> <?php foreach ($pizzas as $key => $pizza) : ?> <div class="col-md-4"> <div class="thumbnail"> <img src="images/pizzas/<?php echo slug($pizza['name']); ?>.jpg" alt="afbeelding van <?php echo $pizza['name']; ?>"> <div class="caption"> <h3><?php echo $pizza['name']; ?></h3> <p><?php echo $pizza['description']; ?></p> <p>€ v.a. <?php echo $pizza['price']; ?>,-</p> <p> <a href="show-pizza.php?pizza_id=<?php echo $key; ?>" class="btn btn-primary" role="button">Bekijk pizza</a> </p> </div> </div> </div> <?php endforeach; ?> </div> </div> <script src="https://code.jquery.com/jquery-1.12.0.min.js"></script> <script src="js/bootstrap.min.js"></script> </body> </html><file_sep>/Periode_3/PHP_les_5/classindex.php <?php include 'class.php'; $notebook1 = new Notebook(); $notebook2 = new Notebook(); $notebook1->brand = 'msi'; var_dump($notebook1->brand); $notebook2->brand = 'asus'; var_dump($notebook2->brand); ?><file_sep>/Periode_3/Toets/opdracht5.php <?php Class Shirt { public $material; public $color; public $size; public $brand; public $price; public function weaving() { return "I'm weaving a $this->color shirt, wich will be size $this->size."; } public function makingbrand() { return "Placing the brand, which is $this->brand."; } public function pricetag() { return "The price of the shirt will lay around $this->price."; } } //static class //Much too learn in the following area: class ball { public static $my_static = 'ball'; public function staticValue() { return self::$my_static; } } class goal extends ball { public function fooStatic() { return parent::$my_static; } } ?><file_sep>/Periode_4/Les_4/pdostatement.php <?php // Setting username and password $username = 'root'; $password = '<PASSWORD>'; try{ // New PDO $conn = new PDO('mysql:host=localhost:3307;dbname=test', $username, $password); $data = 'leeuw'. rand(); //Insert new data into table users $insert = ("INSERT INTO users (email, username, password) VALUES ('henk', '$data', '<PASSWORD>')"); $insert = $conn->query($insert); //PDOStatement, counts affected rows $count = $insert->rowCount(); print_r("made $count rows.\n"); print_r ("<br>"); //Select data from table Users $sql = ('SELECT * FROM users'); $select = $conn->query($sql); //PDOStatement, counts affected rows $count = $select->rowCount(); print_r("We found $count rows.\n"); print_r ("<br>"); //gets metadata from table users $meta = $select->getColumnMeta(0); var_dump($meta); //If connection fails, makes error message }catch(PDOWarning $e){ print_r( 'Connection Failed!' . $e->getMessage()); } ?><file_sep>/Periode_4/Les_5/superuser.php <?php class Superuser extends User{ public $permissions; public function kickUser(){ return "You can $permissions"; } } ?><file_sep>/Periode_4/Les_6/product_book.php <?php class ProductBook extends Product{ public $author; public $category; public $isbn; } ?><file_sep>/Periode_3/PHP_Les_3/alaoefen.php <?php include 'header.php'; ?> <?php $servername = "localhost"; $username = "root@localhost"; $password = ""; $dbname = "test"; $mysqli = mysqli_connect($servername, $username, $password, $dbname); if (mysqli_connect_error($mysqli)) { echo 'failed to connect to MySQL:' . mysqli_connect_error(); } else { echo 'connected to MySQL'; echo "<br>"; echo "<br>"; $res = mysqli_query($mysqli, "SELECT * FROM users"); while ($persons = mysqli_fetch_assoc($res)){ $persons['Username']; } } ?> <table> <thead> <tr> <th>Voornaam </th> <th>Achternaam </th> <th>GeboorteDatum </th> <th>Adress </th> <th>Telefoon </th> <th>Email </th> </tr> </thead> <tbody> <?php foreach ($persons as $person) { ?> <tr> <td><?php echo $person['Username'] ?></td> <td>... </td> <td> ...</td> <td> ..</td> <td> ...</td> <td> </td> <?php } ?> </tr> </table> <?php include 'footer.php';?> <file_sep>/Periode_3/PHP_Les_Berkien/index.php <?php class airRefresh{ $percentagemosture = 50; $temperature = "20C"; public function airRefreshing() { goRun($this->percentagemosture; $this->temperature); } public function setTemperature($setTemp){ if($setTemp >= 10 && $setTemp < 50){ $this->temperature = $setTemp; } } private function goRun($p, $t){ } } ////////////// $airco = new airRefresh(); ?><file_sep>/Periode_3/PHP_Les_7/classes.php <?php Class Shirt { public $material; public $color; public $size; public $brand; public $price; public function weaving() { return "I'm weaving a $this->color shirt, wich will be size $this->size."; } public function makingbrand() { return "Placing the brand, which is $this->brand."; } public function pricetag() { return "The price of the shirt will lay around $this->price."; } } ?><file_sep>/Periode_4/Les_6/clothing.php <?php class Shirt extends Product{ public $fabric; public $print; public $bulk; public $size; public function weaving(){ return "the shirt is textiled from $fabric, with a print of $print."; } public function buy(){ return "Is this shirt availble for bulk? $bulk"; } } ?><file_sep>/Periode_3/PHP_les_5/index.php <?php include 'car.php'; $car1 = new Car(); ?><file_sep>/Periode_4/Les_6/index.php <?php include 'product.php'; include 'clothing.php'; include 'product_book.php'; $product = new Product(); echo "<br>"; $product->price = 10; echo "<br>"; $product->vat; echo "<br>"; var_dump($product); ?> <file_sep>/Periode_3/Toets/opdracht1.php <?php //Variables //string $string = 'String'; var_dump($string); echo "<br>"; //boolean $booly = true; $booln = false; var_dump($booly); echo "<br>"; var_dump($booln); echo "<br>"; //integar $int = 1; var_dump($int); echo "<br>"; //array $array = array("boolean","string","array"); var_dump($array); //Array's //Associative Array $games = ['name' => 'Counter-strike', 'studio' => 'valve']; echo "<br>"; echo $games ['name']; echo "<br>"; echo $games ['studio']; echo '<br>'; //Indexed Array $array = ['booleans','strings','arrays']; echo "I like " . $array[0] . ", " . $array[1] . " and " . $array[2] . "."; var_dump($array); echo "<br>"; //Indexed Array Count $books = array("Dont make me think", "The art of war", "Webdesign 4"); echo count($books); var_dump($books); echo "<br>"; //Associative Array In sentence $shirts = array("Bandshirt"=>"Cage the Elephant", "Bandshirt"=>"Alt-J", "Bandshirt"=>"Arctic Monkeys"); echo "I wear " . $shirts['Bandshirt']; var_dump($shirts); echo "<br>"; //multidemensional array $products = array ( array("Apple",100,50), array("Books",20,6), array("Bags",25,10), array("Phones",13,3) ); echo $products[0][0].": In stock: ".$products[0][1].", sold: ".$products[0][2].".<br>"; echo $products[1][0].": In stock: ".$products[1][1].", sold: ".$products[1][2].".<br>"; echo $products[2][0].": In stock: ".$products[2][1].", sold: ".$products[2][2].".<br>"; echo $products[3][0].": In stock: ".$products[3][1].", sold: ".$products[3][2].".<br>"; ?><file_sep>/Periode_4/Les_5/index.php <?php include 'animal.php'; include 'cat.php'; $animal = new Animal(); var_dump($animal); ?><file_sep>/Periode_3/PHP_Les_2/typevar.php <?php $string = 'String'; var_dump($string); echo "<br>"; $booly = true; $booln = false; var_dump($booly); echo "<br>"; var_dump($booln); echo "<br>"; $array = array("boolean","string","array"); var_dump($array); ?><file_sep>/README.md This repository is made for school purpose only! It's used to store assignments and a map for the test :) <file_sep>/Periode_3/Toets/opdracht5_1.php <?php //printing class include 'opdracht5.php'; $bandshirt = new Shirt(); $bandshirt->material = 'Fabric'; $bandshirt->color = 'Black'; $bandshirt->size = 'Medium'; $bandshirt->brand = 'Above Them'; $bandshirt->price = '20.99'; echo "<pre>"; var_dump($bandshirt); echo "</pre>"; echo $bandshirt->weaving(); echo "<br>"; echo $bandshirt->makingbrand(); echo "<br>"; echo $bandshirt->pricetag(); $shirt = new Shirt(); $shirt->material = 'Cotton'; $shirt->color = 'Red, White'; $shirt->size = 'Small'; $shirt->brand = 'Nordstorm'; $shirt->price = '50.30'; echo "<pre>"; var_dump($shirt); echo "</pre>"; echo $shirt->weaving(); echo "<br>"; echo $shirt->makingbrand(); echo "<br>"; echo $shirt->pricetag(); //printing class method echo "<hr>"; print ball::$my_static . "\n"; print goal::$my_static . "\n"; $goal = new goal(); print $goal->fooStatic() . "\n"; ?><file_sep>/Periode_3/PHP_les_5/function.php <?php function sayMyName($name) { return "&nbsp;my name is: $name"; } echo "Hallo"; $name1 = 'what?'; $name2 = 'who?'; $name3 = '<NAME>'; $name4 = 'adriaan'; echo sayMyName($name1); echo sayMyName($name2); echo sayMyName($name3); ?><file_sep>/Periode_3/PHP_Les_7/classfunction.php <?php include 'classes.php'; $bandshirt = new Shirt(); $bandshirt->material = 'Fabric'; $bandshirt->color = 'Black'; $bandshirt->size = 'Medium'; $bandshirt->brand = 'Above Them'; $bandshirt->price = '20.99'; echo "<pre>"; var_dump($bandshirt); echo "</pre>"; echo $bandshirt->weaving(); echo "<br>"; echo $bandshirt->makingbrand(); echo "<br>"; echo $bandshirt->pricetag(); $shirt = new Shirt(); $shirt->material = 'Cotton'; $shirt->color = 'Red, White'; $shirt->size = 'Small'; $shirt->brand = 'Nordstorm'; $shirt->price = '50.30'; echo "<pre>"; var_dump($shirt); echo "</pre>"; echo $shirt->weaving(); echo "<br>"; echo $shirt->makingbrand(); echo "<br>"; echo $shirt->pricetag(); ?><file_sep>/Periode_4/Les_3/conn.php <?php $username = 'root'; $password = '<PASSWORD>'; try{ $conn = new PDO('mysql:host=localhost:3307;dbname=pizzaplace', $username, $password); $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING); } catch(PDOWarning $e) { echo 'Connection Failed!' . $e->getMessage(); } ?> <file_sep>/Periode_3/PHP_Les_3/get.php <?php Var_dump($_GET); $firstKey = RESET($_GET); echo $firstKey; ?> <a href="?Property=unique">Property</a> <a href="?bands=thefrontbottoms">Bands</a> <a href="?variable=variable character">Variable</a><file_sep>/Periode_3/Toets/opdracht4.php <?php //database connection $servername = "servername"; $username = "username"; $password = "<PASSWORD>"; $dbname = "databasename"; //make connection $conn = new mysqli($servername, $username, $password, $dbname); // Check connection if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); echo "connection failed"; } echo "connection succesfully"; //select a record within a row //In this case it selects everything from a row where the record = $recordname $usernamequery = mysqli_query($conn, "SELECT * FROM row WHERE record='".$recordname."'"); $passwordquery = mysqli_query($conn, "SELECT * FROM row WHERE record='".$recordname."'"); //insert a record within a row $registerquery = "INSERT INTO row (somedata, somemoredata, evenmoredata) VALUES ('$somedata', '$somemoredata', '$evenmoredata')"; //data handling //a login script if(mysqli_num_rows($usernamequery) > 0 && mysqli_num_rows($passwordquery) > 0){ //go to an accountpage if login == true // in this case, if the loginname and password are existing in the database header("location: exampleaccountpage.php"); exit(); } ?><file_sep>/Periode_3/PHP_Les_2/connection.php <?php $servername = "localhost"; $username = "root@localhost"; $password = ""; $dbname = "test"; $mysqli = mysqli_connect($servername, $username, $password, $dbname); if (mysqli_connect_error($mysqli)) { echo 'failed to connect to MySQL:' . mysqli_connect_error(); } else { echo 'connected to MySQL'; echo "<br>"; echo "<br>"; $res = mysqli_query($mysqli, "SELECT * FROM users"); while ($person = mysqli_fetch_assoc($res)){ var_dump("sd <br>"); var_dump($person); } } ?><file_sep>/Periode_3/PHP_Les_4/request.php <form method="get"> <label> Name: </label> <input type="text" name="pre_name"/> <br> <label> Surname: </label> <input type="text" name="sur_name"/> <br> <label> Band: </label> <input type="text" name="band"/> <br> <label> Date: </label> <input type="date" name="DATE"/> <br> <label> Time: </label> <input type="time" name="THETIME"/> <br> <label> File: </label> <input type="file" name="FILE"/> <br> <input type="submit"/> </form> <form method="post"> <label> Name: </label> <input type="text" name="pre_name"/> <br> <label> Surname: </label> <input type="text" name="sur_name"/> <br> <label> Band: </label> <input type="text" name="band"/> <br> <label> Date: </label> <input type="date" name="DATE"/> <br> <label> Time: </label> <input type="time" name="THETIME"/> <br> <label> File: </label> <input type="file" name="FILE"/> <br> <input type="submit"/> </form> <?php if($_SERVER['REQUEST_METHOD'] == 'GET'){ ?> <?php if ((isset($_GET['pre_name'])) && (isset($_GET['sur_name'])) && (isset($_GET['band'])) && (isset($_GET['DATE'])) && (isset($_GET['THETIME'])) && (isset($_GET['FILE']))) { ?> Dit noemen we GET <br> Goededag <?php echo $_GET['pre_name'],'&nbsp', $_GET['sur_name']; ?> <br> U speel in: <?php echo $_GET['band']; ?> <br> De datum is: <?php echo $_GET['DATE']; ?> <br> Dit is de tijd: <?php echo $_GET['THETIME']; ?> <br> Dit is een file, namelijk: <?php echo $_GET['FILE']; ?> <br> <?php } } ?> <hr> <?php if($_SERVER['REQUEST_METHOD'] == 'POST'){ $first_name = filter_input(INPUT_POST, 'pre_name', FILTER_SANITIZE_SPECIAL_CHARS); if ( (isset($first_name)) && (isset($_POST['sur_name'])) && (isset($_POST['band'])) && (isset($_POST['DATE'])) && (isset($_POST['THETIME'])) && (isset($_POST['FILE'])) ) { ?> Dit noemen we POST<br> Goededag <?php echo $first_name . ' ' . $_POST['sur_name']; ?> <br> U speelt in: <?php echo $_POST['band']; ?> <br> De datum is: <?php echo $_POST['DATE']; ?> <br> Dit is de tijd: <?php echo $_POST['THETIME']; ?> <br> Dit is een file, namelijk: <?php echo $_POST['FILE']; ?> <br> <?php } } ?> <file_sep>/Periode_4/Les_3/pizza.php <?php class Pizza { public $name; public $description; public $price; public function __construct($name, $description, $price) { $this->name = $name; $this->description = $description; $this->price = $price; } public static function getAll($conn) { $result = $conn->query("SELECT * FROM pizzas"); return $result; } public function save($conn) { $stmt = $conn->prepare("INSERT INTO pizzas (name, description, price) VALUES (:name, :description,:pice)"); $stmt->bindParam(':name', $this->name); $stmt->bindParam(':description', $this->description); $stmt->bindParam(':price', $this->price); $result = $stmt->execute(); return $result; } public static function find ($conn, $id) { $sql = "SELECT FROM pizzas WHERE id = :id"; $stmt = $conn->prepare($sql); $stmt->bindParam(':id', $id); $stmt->execute(); return $stmt; } } ?> <file_sep>/Periode_4/Les_3/pdo.php <?php $username = 'root'; $password = '<PASSWORD>'; try{ $conn = new PDO('mysql:host=localhost:3307;dbname=test', $username, $password); $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING); echo 'connection succesfully'; echo "<br>"; $stmt = $conn->prepare("SELECT id, email, username FROM users"); $stmt->execute(); $results = $stmt->setFetchMode(PDO::FETCH_ASSOC); foreach($stmt as $k=>$v) { var_dump($v); } echo "<br>"; $insert = $conn->prepare("INSERT INTO users (email, username, password) VALUES ('henk', '<PASSWORD>', '<PASSWORD>')"); $insert->execute(); var_dump($insert); }catch(PDOWarning $e){ echo 'Connection Failed!' . $e->getMessage(); } ?><file_sep>/Periode_3/ala_pizzaplace/assets/php/show_pizza.php <?php require 'pizzas.php'; require 'functions.php'; ?> <!doctype html> <html class="no-js" lang=""> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title>Pizza Place - Mario</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="css/bootstrap.min.css"> </head> <body> <div class="container"> <div class="page-header"> <h1>I'll take you to the pizza shop <small>I'll let you lick the lollipop</small></h1> </div> <?php if (isset($_GET['pizza_id'])) { $pizza = $pizzas[$_GET['pizza_id']]; } ?> <div class="media"> <div class="media-left"> <a href="#"> <img class="media-object" src="images/pizzas/<?php echo slug($pizza['name']); ?>.jpg" alt="..."> </a> </div> <div class="media-body"> <h4 class="media-heading"><?php echo $pizza['name']; ?></h4> <p><?php echo $pizza['description']; ?></p> <strong class="pull-right" style="font-size: 25px;">€ <?php echo $pizza['price']; ?>,-</strong> <form method="POST" action="cart.php"> <label>Aantal van deze pizza</label> <input type="number" name='quantity' id="quantity-input"> <input type="submit" value="In winkelmand" id='add-to-cart' class="btn btn-primary btn-lg pull-right"> </form> </div> </div> </div> <script src="https://code.jquery.com/jquery-1.12.0.min.js"></script> <script src="js/bootstrap.min.js"></script> <script src="js/main.js"></script> </body> </html><file_sep>/Periode_3/Toets/opdracht2.php <?php // simplified while loop $x = 0; while ($x <= 50) { $x++; echo $x; } echo "<br>"; //while loop $i = 0; $j = 0; while ($i < 10) { while ($j < 10) { if ($j == 5) {break 2;} //making an interval $j++; } $i++; } echo "The first number is ".$i."<br />"; echo "The second number is ".$j."<br />"; echo "<br>"; //forloop for($i=0; $i < 31; $i++){ echo $i; } echo "<br>"; //making variables called books $books; $books["The art of war"] = "<NAME>"; $books["Dont make me think"] = "<NAME>"; $books["A brief history of time"] = "<NAME>"; //foreach foreach( $books as $name => $writers){ echo "<b>Name:</b> $name, <b>Writer:</b> $writers <br>"; } ?><file_sep>/Periode_3/PHP_Les_4/post.php <form action="post.php" method="post" enctype="multipart/form-data"> <input type="file" name="imgFile" accept="image/*" id="imgFile" src=""/> <input type="submit" name="upload" value="Upload" /> </form> <form method="post"> <label> Name: </label> <input type="text" name="pre_name"/> <br> <label> Surname: </label> <input type="text" name="sur_name"/> <br> <label> Band: </label> <input type="text" name="band"/> <br> <label> Date: </label> <input type="date" name="DATE"/> <br> <label> Time: </label> <input type="time" name="THETIME"/> <br> <input type="submit"/> </form> <?php if ((isset($_POST['pre_name'])) && (isset($_POST['sur_name'])) && (isset($_POST['band'])) && (isset($_POST['DATE'])) && (isset($_POST['THETIME'])) && (isset($_POST['FILE']))) { ?> Goededag <?php echo $_POST['pre_name'],'&nbsp', $_POST['sur_name']; ?> U speel in <?php echo $_POST['band']; ?> De datum is: <?php echo $_POST['DATE']; ?> Dit is de tijd: <?php echo $_POST['THETIME']; ?> Dit is een file <?php echo $_POST['FILE']; ?> <?php } ?> <file_sep>/Periode_3/Toets/extraopdracht.php <?php //loop in a loop $i = 0; $j = 0; while ($i < 10) { while ($j < 10) { if ($j == 5) {break 2;} //making an interval $j++; } $i++; } echo "The first number is ".$i."<br />"; echo "The second number is ".$j."<br />"; echo "<br>"; //looping through an array $myArray = array ('at home' => array('Animals', 'Gaming'), 'shopping' => array('Shoes', 'Beanie','Pants'), 'at work'=>array('Developing','Cooking')); echo $myArray ['shopping'][2].'<br />'; foreach ($myArray as $place => $task) { foreach ($task as $thingToDo){ echo $thingToDo.'<br />'; } } ?><file_sep>/Periode_4/Les_3/index.php <?php //create function with an exception $number = rand(1, 100); class Extending extends exception{ function getRekt(){ echo " lel"; } } function checkNum($number) { if($number<50) { throw new Extending("Oops, the number is $number"); } return true; } //trigger exception in a "try" block try { checkNum($number); //If the exception is thrown, this text will not be shown echo "Yay, the number is: $number"; } //catch exception catch(Extending $e) { echo 'Message: ' .$e->getMessage(); $e->getRekt(); } ?><file_sep>/Periode_4/Les_2/mysqli.php <?php $conn = new mysqli('localhost', 'root', 'usbw', 'test'); $result = $conn->query('SELECT * FROM `users`'); $row = $result->fetch_assoc(); while ($row = $result->fetch_array()) { var_dump($row); echo "<br>"; } ?><file_sep>/Periode_4/Les_5/class.php <?php include 'user.php'; include 'superuser.php'; $superuser = new Superuser('henk<EMAIL>','henk', 'henk123', 'secret', 'uses google quite often'); $henk = new User('<EMAIL>','henk', 'henk123', 'secret', 'uses google quite often' ); var_dump($superuser); return "<br>"; var_dump($henk); ?><file_sep>/Periode_3/PHP_les_5/car.php <?php class Car { public $color; public $radio; public $rim_type; public $transmission; public $horn; public $roof_window; } ?><file_sep>/Periode_3/Toets/opdracht3.php <form method="get"> <label> Name: </label> <input type="text" name="pre_name"/> <br> <label> Surname: </label> <input type="text" name="sur_name"/> <br> <label> Band: </label> <input type="text" name="band"/> <br> <label> Date: </label> <input type="date" name="DATE"/> <br> <label> Time: </label> <input type="time" name="THETIME"/> <br> <label> File: </label> <input type="file" name="FILE"/> <br> <input type="submit"/> </form> <form action="opdracht3_1.php" method="post"> Name: <input type="text" name="name" required><br> E-mail: <input type="text" name="email" required><br> <input type="submit"> </form> <?php if ((isset($_GET['pre_name'])) && (isset($_GET['sur_name'])) && (isset($_GET['band'])) && (isset($_GET['DATE'])) && (isset($_GET['THETIME'])) && (isset($_GET['FILE']))) { ?> Goededag <?php echo $_GET['pre_name'],'&nbsp', $_GET['sur_name']; ?> U speel in <?php echo $_GET['band']; ?> De datum is: <?php echo $_GET['DATE']; ?> Dit is de tijd: <?php echo $_GET['THETIME']; ?> <?php } ?>
6cc19589c464eb3c1b89bd523456e8d6f0477056
[ "JavaScript", "Markdown", "PHP" ]
58
PHP
transliterate/School_assignment
9c82497674d33c4cce62613346a3cfbc99ff35f6
6c84fcd272759032a8490233b6888fc970f15d79
refs/heads/master
<file_sep> public class Hotel { private String hotel; private String nombre; private String direccion; private String ciudad; private String telefono; private int plazas; public Hotel() { super(); // TODO Auto-generated constructor stub } public String getHotel() { return hotel; } public void setHotel(String hotel) { this.hotel = hotel; } public String getNombre() { return nombre; } public void setNombre(String nombre) { this.nombre = nombre; } public String getDireccion() { return direccion; } public void setDireccion(String direccion) { this.direccion = direccion; } public String getCiudad() { return ciudad; } public void setCiudad(String ciudad) { this.ciudad = ciudad; } public String getTelefono() { return telefono; } public void setTelefono(String telefono) { this.telefono = telefono; } public int getPlazas() { return plazas; } public void setPlazas(int plazas) { this.plazas = plazas; } }
6089b27100494f7d2ca50f7dad1890031727cd1f
[ "Java" ]
1
Java
ghosttec/EjercicioExamen
7632e82769968a31b252fb42541fe28b9fea7a3c
5344bf51f497fa669cc14279e77f0f1c8a3d7713
refs/heads/master
<repo_name>Ayonyx/FFXIVBorderer<file_sep>/Launcher/Launcher.h #pragma once #using <System.dll> using namespace System; namespace FFXIVBorderer { namespace Launch { public ref class Launcher { private: static System::Threading::Semaphore^ _semaphore; static String^ CommandLine = ""; static String^ InstallDir = String::Empty; static String^ ExeName = String::Empty; static HANDLE ProcessHandle = 0; static DWORD ProcessID = 0; static System::Threading::Thread^ threadAffiliationThread; static LPWSTR Convert(System::String^ str) { pin_ptr<const wchar_t> wch = PtrToStringChars(str); return (LPWSTR)wch; } //local function to keep the debugger active void Start_DebugThread(); void Start_MaximizedWindowThread(); void Start_PriorityThread(); void Start(); public: Launcher(); ~Launcher(); int Launch(array<String^>^ args); }; } }<file_sep>/Launcher/Launcher.cpp #include "stdafx.h" #include "Launcher.h" namespace FFXIVBorderer { namespace Launch { Launcher::Launcher() { //do nothing //ideas for gameplay tracking here /* * character name * server name -- 0x02CD846E read up to ! (login message) * character race * character rank / class rank */ } Launcher::~Launcher() { //do nothing } int Launcher::Launch(array<String^>^ args) { if(args->Length == 0) { return 0; } System::IO::FileInfo^ fi = gcnew System::IO::FileInfo(args[0]); if( !fi->Exists ) return 0; System::IO::DirectoryInfo^ di = fi->Directory; InstallDir = di->FullName; ExeName = fi->FullName; for(int i = 1; i < args->Length; i++) { CommandLine += " " + args[i]; } Start(); return 0; } void Launcher::Start_DebugThread() { STARTUPINFO StartupInfo; PROCESS_INFORMATION ProcessInfo; ZeroMemory( &StartupInfo, sizeof(StartupInfo) ); ZeroMemory( &ProcessInfo, sizeof(ProcessInfo) ); StartupInfo.cb = sizeof(StartupInfo); StartupInfo.dwFlags = STARTF_USESHOWWINDOW || STARTF_FORCEONFEEDBACK; StartupInfo.wShowWindow = SW_SHOWNORMAL; System::String^ runString = ExeName + CommandLine; if (CreateProcess(NULL, Convert(runString), NULL, NULL, false, (DEBUG_PROCESS || DEBUG_ONLY_THIS_PROCESS), NULL, Convert(InstallDir), &StartupInfo, &ProcessInfo)) { ProcessHandle = ProcessInfo.hProcess; ProcessID = ProcessInfo.dwProcessId; _semaphore->Release(); } DebugSetProcessKillOnExit(true); DebugActiveProcessStop(ProcessInfo.dwProcessId); } void Launcher::Start_MaximizedWindowThread() { while (true) { HWND WindowHandle = FindWindow(L"RAPTURE", L"FINAL FANTASY XIV"); if (WindowHandle != 0) { LONG OldExStyle = GetWindowLong(WindowHandle, GWL_EXSTYLE); LONG OldStyle = GetWindowLong(WindowHandle, GWL_STYLE); OldExStyle = OldExStyle & ~WS_EX_CLIENTEDGE; OldExStyle = OldExStyle & ~WS_EX_WINDOWEDGE; OldStyle = OldStyle & ~WS_DLGFRAME; OldStyle = OldStyle & ~WS_THICKFRAME; OldStyle = OldStyle & ~WS_OVERLAPPED; OldStyle = OldStyle & ~WS_BORDER; SetWindowLong(WindowHandle, GWL_STYLE, OldStyle); SetWindowLong(WindowHandle, GWL_EXSTYLE, OldExStyle); MoveWindow(WindowHandle, 0, 0, GetSystemMetrics( SM_CXFULLSCREEN ), GetSystemMetrics( SM_CYSCREEN ), true); break; } System::Threading::Thread::Sleep(10000); } } void Launcher::Start_PriorityThread() { while(true) { SetPriorityClass(ProcessHandle, NORMAL_PRIORITY_CLASS); System::Threading::Thread::Sleep(5000); } } void Launcher::Start() { //start debug process _semaphore = gcnew System::Threading::Semaphore(0,1); System::Threading::ThreadStart^ threadStartDebugThread = gcnew System::Threading::ThreadStart(this, &FFXIVBorderer::Launch::Launcher::Start_DebugThread); System::Threading::Thread^ threadDebugThread = gcnew System::Threading::Thread(threadStartDebugThread); threadDebugThread->Start(); _semaphore->WaitOne(); //start the maximized / windowed mode System::Threading::ThreadStart^ threadStartMaximizedWindow = gcnew System::Threading::ThreadStart(this, &FFXIVBorderer::Launch::Launcher::Start_MaximizedWindowThread); System::Threading::Thread^ threadMaximizedWindow = gcnew System::Threading::Thread(threadStartMaximizedWindow); threadMaximizedWindow->Start(); //start priority thread System::Threading::ThreadStart^ threadStartPriority = gcnew System::Threading::ThreadStart(this, &FFXIVBorderer::Launch::Launcher::Start_PriorityThread); System::Threading::Thread^ threadPriority = gcnew System::Threading::Thread(threadStartPriority); threadPriority->Start(); //media timer timeBeginPeriod(1); System::GC::Collect(0, System::GCCollectionMode::Forced); //wait for the process handle WaitForSingleObject(ProcessHandle, INFINITE); //reset time timeEndPeriod(1); CloseHandle(ProcessHandle); exit(0); } } }<file_sep>/Launcher/stdafx.h #pragma once #include <Windows.h> #include <vcclr.h> #include <iostream> #include <fcntl.h> #include <io.h> #include <mmsystem.h> #include <stdio.h> #include <D3D9.h><file_sep>/Config/Form1.h #pragma once namespace Config { using namespace System; using namespace System::ComponentModel; using namespace System::Collections; using namespace System::Windows::Forms; using namespace System::Data; using namespace System::Drawing; /// <summary> /// Summary for Form1 /// </summary> public ref class Form1 : public System::Windows::Forms::Form { public: Form1(void) { InitializeComponent(); // //TODO: Add the constructor code here // } protected: /// <summary> /// Clean up any resources being used. /// </summary> ~Form1() { if (components) { delete components; } } private: System::Windows::Forms::Label^ label1; protected: private: System::Windows::Forms::Button^ button1; private: System::Windows::Forms::Button^ button2; private: /// <summary> /// Required designer variable. /// </summary> System::ComponentModel::Container ^components; #pragma region Windows Form Designer generated code /// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> void InitializeComponent(void) { System::ComponentModel::ComponentResourceManager^ resources = (gcnew System::ComponentModel::ComponentResourceManager(Form1::typeid)); this->label1 = (gcnew System::Windows::Forms::Label()); this->button1 = (gcnew System::Windows::Forms::Button()); this->button2 = (gcnew System::Windows::Forms::Button()); this->SuspendLayout(); // // label1 // this->label1->AutoSize = true; this->label1->Location = System::Drawing::Point(13, 13); this->label1->Name = L"label1"; this->label1->Size = System::Drawing::Size(265, 26); this->label1->TabIndex = 0; this->label1->Text = L"Just needed to create some registry entries.So we can \nattach a debugger to the F" L"FXIV process when it starts."; this->label1->Click += gcnew System::EventHandler(this, &Form1::label1_Click); // // button1 // this->button1->Location = System::Drawing::Point(16, 53); this->button1->Name = L"button1"; this->button1->Size = System::Drawing::Size(75, 23); this->button1->TabIndex = 1; this->button1->Text = L"Apply"; this->button1->UseVisualStyleBackColor = true; this->button1->Click += gcnew System::EventHandler(this, &Form1::button1_Click); // // button2 // this->button2->Location = System::Drawing::Point(197, 53); this->button2->Name = L"button2"; this->button2->Size = System::Drawing::Size(75, 23); this->button2->TabIndex = 2; this->button2->Text = L"Remove"; this->button2->UseVisualStyleBackColor = true; this->button2->Click += gcnew System::EventHandler(this, &Form1::button2_Click); // // Form1 // this->AutoScaleDimensions = System::Drawing::SizeF(6, 13); this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font; this->ClientSize = System::Drawing::Size(284, 88); this->Controls->Add(this->button2); this->Controls->Add(this->button1); this->Controls->Add(this->label1); this->Icon = (cli::safe_cast<System::Drawing::Icon^ >(resources->GetObject(L"$this.Icon"))); this->Name = L"Form1"; this->Text = L"FFXIVBorderer"; this->ResumeLayout(false); this->PerformLayout(); } #pragma endregion private: System::Void label1_Click(System::Object^ sender, System::EventArgs^ e) { } private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) { Microsoft::Win32::RegistryKey^ key = Microsoft::Win32::Registry::LocalMachine->OpenSubKey("SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Image File Execution Options", true); Microsoft::Win32::RegistryKey^ key1 = key->CreateSubKey("ffxivgame.exe"); key1->SetValue("Debugger", AppDomain::CurrentDomain->BaseDirectory + "Launcher.exe", Microsoft::Win32::RegistryValueKind::String); Application::Exit(); } private: System::Void button2_Click(System::Object^ sender, System::EventArgs^ e) { Microsoft::Win32::RegistryKey^ key = Microsoft::Win32::Registry::LocalMachine->OpenSubKey("SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Image File Execution Options", true); key->DeleteSubKey("ffxivgame.exe"); Application::Exit(); } }; } <file_sep>/Launcher/main.cpp #include "stdafx.h" #include "Launcher.h" int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow ) { /*AllocConsole(); int hConHandle; long lStdHandle; FILE *fp; // redirect unbuffered STDOUT to the console lStdHandle = (long)GetStdHandle(STD_OUTPUT_HANDLE); hConHandle = _open_osfhandle(lStdHandle, _O_TEXT); fp = _fdopen( hConHandle, "w" ); *stdout = *fp; setvbuf( stdout, NULL, _IONBF, 0 ); */ //start System::String^ cmdLine = gcnew System::String(lpCmdLine); cmdLine = cmdLine->Replace("\"", ""); int i = cmdLine->IndexOf(".exe"); System::String^ cmd = cmdLine->Substring(0, i+4); System::String^ cmdArgs = cmdLine->Remove(0, i+4); System::Collections::Generic::List<String^>^ list = gcnew System::Collections::Generic::List<String^>(); list->Add(cmd); if(cmdArgs->Length != 0) { cmdArgs = cmdArgs->Replace(" ", ""); list->Add(cmdArgs); } array<System::String^>^ args = list->ToArray(); FFXIVBorderer::Launch::Launcher^ l = gcnew FFXIVBorderer::Launch::Launcher(); int ret = l->Launch(args); return ret; }
3b317f7982ac1254e0afebfbc8f0e8f947864cc8
[ "C++" ]
5
C++
Ayonyx/FFXIVBorderer
d88fc3f737dbe521a364c88e6a297302db5b1484
4cf18a8a89aac8948e6d4378b33ec6fcb07175a3
refs/heads/master
<repo_name>oscarleon511/CoinChanger<file_sep>/ConsoleClient/MixedIdeas/UnitTest1.cs using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using App; namespace MixedIdeas { [TestClass] public class UnitTest1 { //TestRule#4 Mixed Ideas //When 99 = 3Q, 2D, 0N, 4P //When 68 = 2Q, 1D, 1N, 3P [TestMethod] public void MixIdeasTest1() { //Arrange CoinChanger test = new CoinChanger(); //Act test.GetTheChange(99); int numberOfQuarters = test.incrementquarter; int numberOfDimes = test.incrementdime; int numberOfNickels = test.incrementnickel; int numberOfPennies = test.incrementpenny; //Assert Assert.AreEqual(3, numberOfQuarters); Assert.AreEqual(2, numberOfDimes); Assert.AreEqual(0, numberOfNickels); Assert.AreEqual(4 , numberOfPennies); } [TestMethod] public void MixIdeasTest2() { //Arrange CoinChanger test2 = new CoinChanger(); //Act test2.GetTheChange(68); int numberOfQuarters = test2.incrementquarter; int numberOfDimes = test2.incrementdime; int numberOfNickels = test2.incrementnickel; int numberOfPennies = test2.incrementpenny; //Assert Assert.AreEqual(numberOfQuarters, 2); Assert.AreEqual(numberOfDimes, 1); Assert.AreEqual(numberOfNickels, 1); Assert.AreEqual(numberOfPennies, 3); } } } <file_sep>/ConsoleClient/DifferentCoins/UnitTest1.cs using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using App; namespace DifferentCoins { [TestClass] public class UnitTest1 { //TestRule#2=> Different Coins //When 41 = 1Q, 1D, 1N, 1P //When 36 = 1Q, 1D, 0N, 1P [TestMethod] public void DifferentCoinsTest1() { //Arrange CoinChanger differentCoins = new CoinChanger(); //Act differentCoins.GetTheChange(41); int numberOfQuarters = differentCoins.incrementquarter; int numberOfDimes = differentCoins.incrementdime; int numberOfNickels = differentCoins.incrementnickel; int numberOfPennies = differentCoins.incrementpenny; //Assert Assert.AreEqual(1, numberOfQuarters); Assert.AreEqual(1, numberOfDimes); Assert.AreEqual(1, numberOfNickels); Assert.AreEqual(1, numberOfPennies); } [TestMethod] public void DifferentCoinsTest2() { //Arrange CoinChanger differentCoins = new CoinChanger(); //Act differentCoins.GetTheChange(36); int numberOfQuarters = differentCoins.incrementquarter; int numberOfDimes = differentCoins.incrementdime; int numberOfNickels = differentCoins.incrementnickel; int numberOfPennies = differentCoins.incrementpenny; //Assert Assert.AreEqual(numberOfQuarters, 1); Assert.AreEqual(numberOfDimes, 1); Assert.AreEqual(numberOfNickels, 0); Assert.AreEqual(numberOfPennies, 1); } } } <file_sep>/ConsoleClient/Test/CoinChangerTests.cs using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using App; namespace Test { [TestClass] public class CoinChangerTests { [TestMethod] public void TestWhenValueIsEqualTo25() { //Arrange CoinChanger program = new CoinChanger(); //Act program.GetTheChange(25); program.incrementquarter = 25; //Assert Assert.AreEqual(program.incrementquarter, 25); } [TestMethod] public void TestWhenValueIsLessThan25() { //Arrange CoinChanger program = new CoinChanger(); //Act program.GetTheChange(20); program.incrementquarter = 0; //Assert Assert.AreEqual(program.incrementquarter, 0); } [TestMethod] public void TestWhenValueMoreThan25() { //Arrange CoinChanger program = new CoinChanger(); //Act program.GetTheChange(46); program.incrementquarter = 25; //Assert Assert.AreEqual(program.incrementquarter, 25); } [TestMethod] public void TestWhenValueIsEqualto10() { //Arrange CoinChanger program = new CoinChanger(); //Act program.GetTheChange(10); program.incrementdime = 10; //Assert Assert.AreEqual(program.incrementdime, 10); } [TestMethod] public void TestWhenValueIsLessThan10() { //Arrange CoinChanger program = new CoinChanger(); //Act program.GetTheChange(5); program.incrementdime = 0; //Assert Assert.AreEqual(program.incrementdime, 0); } [TestMethod] public void TestWhenValueIsGreaterThan10() { //Arrange CoinChanger program = new CoinChanger(); //Act program.GetTheChange(15); program.incrementdime = 10; //Assert Assert.AreEqual(program.incrementdime, 10); } [TestMethod] public void TestWhenValueIsEqualTo5() { //Arrange CoinChanger program = new CoinChanger(); //Act program.GetTheChange(5); program.incrementdime = 5; //Assert Assert.AreEqual(program.incrementdime, 5); } [TestMethod] public void TestWhenValueIsLessThan5() { //Arrange CoinChanger program = new CoinChanger(); //Act program.GetTheChange(3); program.incrementdime = 0; //Assert Assert.AreEqual(program.incrementdime, 0); } [TestMethod] public void TestWhenValueIsGreaterThan5() { //Arrange CoinChanger program = new CoinChanger(); //Act program.GetTheChange(8); program.incrementdime = 5; //Assert Assert.AreEqual(program.incrementdime, 5); } [TestMethod] public void TestWhenValueIsEqualTo1() { //Arrange CoinChanger program = new CoinChanger(); //Act program.GetTheChange(1); program.incrementdime = 1; //Assert Assert.AreEqual(program.incrementdime, 1); } [TestMethod] public void TestWhenValueIsGreaterThan1() { //Arrange CoinChanger program = new CoinChanger(); //Act program.GetTheChange(4); program.incrementdime = 1; //Assert Assert.AreEqual(program.incrementdime, 1); } } } <file_sep>/ConsoleApplication1/ConsoleApplication1/Program.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { CoinChanger display = new CoinChanger(); display.Calculations(25); CoinChanger display2 = new CoinChanger(); display2.GetResult(25); } } } <file_sep>/ConsoleClient/ConsoleClient/Program.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using App; namespace ConsoleClient { public class Program { private static CoinChanger coins; static void Main(string[] args) { for (int i = 1; i < 99; i++) { coins = new CoinChanger(); coins.GetTheChange(i); Console.WriteLine("Quarter: " + coins.incrementquarter + " Dimes: " + coins.incrementdime + " Nickels: " + coins.incrementnickel + " Pennies: " + coins.incrementpenny ); } Console.ReadLine(); } } } <file_sep>/ConsoleClient/SingleCoin/UnitTest1.cs using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using App; namespace SingleCoin { [TestClass] public class UnitTest1 { //TestRule#3=> Single coin //When 1= 1P //When 5 = 1 N //When 10 = 1D //When 25 = 1Q [TestMethod] public void WhenOnePenny() { //Arrange CoinChanger singlecoin = new CoinChanger(); //Act singlecoin.GetTheChange(1); int numberofpennies = singlecoin.incrementpenny; //Assert Assert.AreEqual(numberofpennies, 1); } [TestMethod] public void WhenOneNickel() { //Arrange CoinChanger singlecoin = new CoinChanger(); //Act singlecoin.GetTheChange(5); int numberOfNickels = singlecoin.incrementnickel; //Assert Assert.AreEqual(numberOfNickels, 1); } [TestMethod] public void WhenOneDime() { //Arrange CoinChanger singlecoin = new CoinChanger(); //Act singlecoin.GetTheChange(10); int numberOfDimes = singlecoin.incrementdime; //Assert Assert.AreEqual(numberOfDimes, 1); } [TestMethod] public void WhenOneQuarter() { //Arrange CoinChanger singlecoin = new CoinChanger(); //Act singlecoin.GetTheChange(25); int numberOfQuarters = singlecoin.incrementquarter; //Assert Assert.AreEqual(numberOfQuarters, 1); } [TestMethod] public void When10Cents() { //Arrange CoinChanger test1 = new CoinChanger(); //Act test1.GetTheChange(10); int numberOfnickels = test1.incrementnickel; int numberOfDimesWhen10 = test1.incrementdime; //Assert Assert.AreEqual(0, numberOfnickels); Assert.AreEqual(1, numberOfDimesWhen10); } } } <file_sep>/ConsoleApplication1/ConsoleApplication1/CoinChanger.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { public class CoinChanger { int x; int y; int z; int u; int quarter = 25; int dime = 10; int nickel = 5; int penny = 1; int total = 0; int total1 = 0; int total2 = 0; int total3 = 0; int totalFinal = 0; public void Calculations(int number1) { total = number1 / quarter; x = total; total1 = number1 / dime; y = total1; total2 = number1 / nickel; z = total2; total3 = number1 / penny; u = total3; totalFinal = quarter * x + dime * y + nickel * z + penny * u; } public string GetResult(int number2) { if(x <= 3 & x>=0) { /*return*/ Console.WriteLine(quarter)/*.ToString()*/; } else if (y<= 1 & y>=0) { return dime.ToString(); } else if (z<=2 & z>=0) { return nickel.ToString(); } else if (u<=5 & u>= 0) { return penny.ToString(); } else if (number2 ==totalFinal) { return "Quarter " + x.ToString() + "+ Dime" + y.ToString() + "+ Nickels" + z.ToString() + " + Pennies" + u.ToString(); } else { return "Those numbers DO NOT apply, please try again!!!"; } } } } <file_sep>/ConsoleClient/MultipleCoins/UnitTest1.cs using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using App; namespace MultipleCoins { [TestClass] public class UnitTest1 { [TestMethod] //TestRule#1=> Multiple Coins //When 50 = 2Quarters //When 20 = 2Dimes //Wnen 10 = 2Nickels //When 2= 2Pennies public void When50Cents() { //Arrange CoinChanger test1 = new CoinChanger(); //Act (Expected) test1.GetTheChange(50); int numberOfQuarters = test1.incrementquarter; //Assert Assert.AreEqual(2, numberOfQuarters); } [TestMethod] public void When20Cents() { //Arrange CoinChanger test1 = new CoinChanger(); //Act test1.GetTheChange(20); int numberOfDimes = test1.incrementdime; //Assert Assert.AreEqual(2, numberOfDimes); } [TestMethod] public void When2Cents() { //Arrange CoinChanger test1 = new CoinChanger(); //Act test1.GetTheChange(2); int numberOfPennies = test1.incrementpenny; //Assert Assert.AreEqual(2, numberOfPennies); } } } <file_sep>/ConsoleClient/App/CoinChanger.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace App { public class CoinChanger { private const int quarter = 25; private const int dime = 10; private const int nickel = 5; private const int penny = 1; // private int total = 0; public int incrementquarter = 0; public int incrementdime = 0; public int incrementnickel = 0; public int incrementpenny = 0; public void GetTheChange(int cash) { int total = cash; while (total != 0) { if(Condition(total, quarter)) { incrementquarter = GetCoinIncrement(incrementquarter); total = GetTotal(total, quarter); } else if (Condition(total, dime)) { incrementdime = GetCoinIncrement(incrementdime); total = GetTotal(total, dime); } else if (Condition(total, nickel)) { incrementnickel = GetCoinIncrement(incrementnickel); total = GetTotal(total, nickel); } else { incrementpenny = GetCoinIncrement(incrementpenny); total = GetTotal(total, penny); } } } public int GetCoinIncrement(int increment) { int numberOfCoinsincremented = 0; numberOfCoinsincremented = increment + 1; return numberOfCoinsincremented; } public int GetTotal(int total1, int coin) { int currentTotal = 0; currentTotal = total1 - coin; return currentTotal; } public bool Condition(int total2, int number) { bool total3; total3 = total2 >= number; return total3; } } }
fc9dbedc116bbb31403034096136c4199f6740f6
[ "C#" ]
9
C#
oscarleon511/CoinChanger
7e12667561a19bf093f954d02e97796b1b6dbcf0
40121f75760bda4ef96c4f963da00cc6bf8d4ba7
refs/heads/master
<repo_name>tquach/sample-buildr-repo<file_sep>/README.md sample-buildr-repo ==================<file_sep>/buildfile require 'buildr/java/cobertura' VERSION_NUMBER = "1.0.1-SNAPSHOT" define 'sample-buildr-repo' do project.version = VERSION_NUMBER project.group = "org.apache.buildr.sandbox" define 'common' do package :jar end define 'app' do compile.with projects('common') package (:jar) end define 'webapp' do compile.with projects('common', 'app') package :war end end <file_sep>/webapp/src/main/java/org/apache/buildr/sandbox/web/HomeController.java package org.apache.buildr.sandbox.web; import org.apache.buildr.sandbox.common.StringUtils; import org.apache.buildr.sandbox.model.Profile; public class HomeController { public String home() { Profile profile = new Profile(100L); return StringUtils.lower(profile.getId().toString()); } }
bf6cd29006eec690201cdd077548e71b2747dcd2
[ "Markdown", "Java", "Ruby" ]
3
Markdown
tquach/sample-buildr-repo
20c6d1dadcc0f762bdc0a775ba107714cc9ab0aa
2c8906cd696f5abe7a376d6f0ceddcda0bae1b21
refs/heads/master
<repo_name>long-michaelj1990/IMU_Development<file_sep>/Adafruit_BNO055-master/Adafruit_BNO055-master/examples/rawdata/rawdata.ino #include <Wire.h> #include <Adafruit_Sensor.h> #include <Adafruit_BNO055.h> #include <utility/imumaths.h> double xPos = 0, yPos = 0, headingVel_X = 0, headingVel_Y = 0, headingVel_Z = 0; uint16_t BNO055_SAMPLERATE_DELAYMS = 10; //how often to read data from the board uint16_t PRINT_DELAY_MS =100; // how often to print the data //velocity = accel*dt (dt in seconds) //position = 0.5*accel*dt^2 double ACCEL_VEL_TRANSITION = (double)(BNO055_SAMPLERATE_DELAYMS) / 1000.0; double ACCEL_POS_TRANSITION = 0.5 * ACCEL_VEL_TRANSITION * ACCEL_VEL_TRANSITION; double DEG_2_RAD = 0.01745329251; //trig functions require radians, BNO055 outputs degrees uint16_t printCount = 0; //counter to avoid printing every 10MS sample /* Set the delay between fresh samples */ #define BNO055_SAMPLERATE_DELAY_MS (10) // Check I2C device address and correct line below (by default address is 0x29 or 0x28) // id, address Adafruit_BNO055 bno = Adafruit_BNO055(-1, 0x28); /**************************************************************************/ /* Arduino setup function (automatically called at startup) */ /**************************************************************************/ void setup(void) { Serial.begin(115200); // Serial.println("Orientation Sensor Raw Data Test"); Serial.println(""); /* Initialise the sensor */ if(!bno.begin()) { /* There was a problem detecting the BNO055 ... check your connections */ Serial.print("Ooops, no BNO055 detected ... Check your wiring or I2C ADDR!"); while(1); } delay(10); /* Display the current temperature */ int8_t temp = bno.getTemp(); //Serial.print("Current Temperature: "); //Serial.print(temp); //Serial.println(" C"); //Serial.println(""); bno.setExtCrystalUse(true); //Serial.println("Calibration status values: 0=uncalibrated, 3=fully calibrated"); } /**************************************************************************/ /* Arduino loop function, called once 'setup' is complete (your own code should go here) */ /**************************************************************************/ void loop(void) { unsigned long tStart = micros(); // Possible vector values can be: // - VECTOR_ACCELEROMETER - m/s^2 // - VECTOR_MAGNETOMETER - uT // - VECTOR_GYROSCOPE - rad/s // - VECTOR_EULER - degrees // - VECTOR_LINEARACCEL - m/s^2 // - VECTOR_GRAVITY - m/s^2 imu::Vector<3> euler = bno.getVector(Adafruit_BNO055::VECTOR_EULER); imu::Vector<3> Accel = bno.getVector(Adafruit_BNO055::VECTOR_ACCELEROMETER); imu::Vector<3> Mag = bno.getVector(Adafruit_BNO055::VECTOR_MAGNETOMETER); imu::Vector<3> Gyro = bno.getVector(Adafruit_BNO055::VECTOR_GYROSCOPE); imu::Vector<3> LinAccel = bno.getVector(Adafruit_BNO055::VECTOR_LINEARACCEL); imu::Vector<3> Grav = bno.getVector(Adafruit_BNO055::VECTOR_GRAVITY); xPos = xPos + ACCEL_POS_TRANSITION * LinAccel.x(); yPos = yPos + ACCEL_POS_TRANSITION * LinAccel.y(); // velocity of sensor in the direction it's facing headingVel_X = ACCEL_VEL_TRANSITION * LinAccel.x() / cos(DEG_2_RAD * euler.x()); headingVel_Y = ACCEL_VEL_TRANSITION * LinAccel.y() / cos(DEG_2_RAD * euler.y()); headingVel_Z = ACCEL_VEL_TRANSITION * LinAccel.z() / cos(DEG_2_RAD * euler.z()); Serial.print(F("Orientation: ")); Serial.print(euler.x()); Serial.print(F(" ")); Serial.print(euler.y()); Serial.print(F(" ")); Serial.print(euler.z()); Serial.println(F(" ")); Serial.print(F("Movement: ")); Serial.print(xPos); Serial.print(F(" ")); Serial.print(yPos); Serial.println(F(" ")); Serial.print(F("Speed: ")); Serial.print(headingVel_X); Serial.print(F(" ")); Serial.print(headingVel_Y); Serial.print(F(" ")); Serial.print(headingVel_Z); Serial.println(F(" ")); /* Display the floating point data */ Serial.print(F("Acceleration: ")); Serial.print(Accel.x()); Serial.print(F(" ")); Serial.print(Accel.y()); Serial.print(F(" ")); Serial.print(Accel.z()); Serial.println(F("")); /* Display the floating point data */ Serial.print(F("Magnatometer: ")); Serial.print(Mag.x()); Serial.print(F(" ")); Serial.print(Mag.y()); Serial.print(F(" ")); Serial.print(Mag.z()); Serial.println(F("")); /* Display the floating point data */ Serial.print(F("Gyroscope: ")); Serial.print(Gyro.x()); Serial.print(F(" ")); Serial.print(Gyro.y()); Serial.print(F(" ")); Serial.print(Gyro.z()); Serial.println(F("")); /* Display the floating point data */ Serial.print(F("LinearAcceleration: ")); Serial.print(LinAccel.x()); Serial.print(F(" ")); Serial.print(LinAccel.y()); Serial.print(F(" ")); Serial.print(LinAccel.z()); Serial.println(F("")); /* Display the floating point data */ Serial.print(F("Gravity: ")); Serial.print(F(" ")); Serial.print(Grav.x()); Serial.print(F(" ")); Serial.print(Grav.y()); Serial.print(F(" ")); Serial.print(Grav.z()); Serial.println(F("")); /* Display calibration status for each sensor. */ uint8_t system, gyro, accel, mag = 0; bno.getCalibration(&system, &gyro, &accel, &mag); Serial.print("Calibration: "); Serial.print(system, DEC); Serial.print(F(" ")); Serial.print(gyro, DEC); Serial.print(F(" ")); Serial.print(accel, DEC); Serial.print(F(" ")); Serial.println(mag, DEC); while ((micros() - tStart) < (BNO055_SAMPLERATE_DELAYMS * 1000)) { //poll until the next sample is ready } } // delay(BNO055_SAMPLERATE_DELAY_MS); //} <file_sep>/IMU_Position.py import os import sys import json import math import time import socket import serial from serial.tools import list_ports import ctypes #import Arduino import win32gui import datetime import numpy as np import pyqtgraph as pg #from Arduino import arduino import pyqtgraph.opengl as gl from PyQt5.QtCore import QSize from threading import Thread, Lock from ctypes import Structure, byref from ctypes.util import find_library from pyqtgraph.Qt import QtCore, QtGui from PyQt5 import QtCore, QtGui, QtWidgets from distutils.core import setup, Extension from PyQt5.QtGui import QImage, QPixmap, QIcon from PyQt5.QtWidgets import (QToolBar, QAction, QMainWindow, QComboBox, QListWidget, QPlainTextEdit,QFileDialog, QProgressBar, QLabel, QRadioButton, QLineEdit,QWidget,QSizePolicy) import pywavefront #--------------------------------------------------------------------------# #Main GUI# #--------------------------------------------------------------------------# class Ui_Dialog(QMainWindow): def setupUi(self, Dialog): self.calibrate=0 self.IMU_position=0 width = Dialog.frameGeometry().width() height = Dialog.frameGeometry().height() Dialog.setStyleSheet("background-color: rgb(36, 36, 36);") widget_width= width-200 widget_width2=width+200 widget_height= height-190 widget_height2=height+155 self.toolbarHor = QToolBar(Dialog) self.toolbarHor.setIconSize(QSize(40, 40)) self.toolbarHor.setOrientation(QtCore.Qt.Horizontal) self.toolbarHor.setStyleSheet("QToolBar{spacing:200px;}") self.toolbarHor.setStyleSheet("QToolButton{padding-top:4px;}") self.toolbarHor.addSeparator() self.toolbarHor.addSeparator() self.toolbarHor.addSeparator() self.toolbarHor.addSeparator() self.toolbarHor.addSeparator() self.toolbarHor.addSeparator() self.toolbarHor.addSeparator() self.toolbarHor.addSeparator() self.toolbarHor.addSeparator() self.toolbarHor.addSeparator() Calibrate_action = QAction(QIcon('images/calibrate.png'),'calibrate', self) Calibrate_action.triggered.connect(self.calibrating) self.toolbarHor.addAction(Calibrate_action) closeDevice_action = QAction(QIcon('images/Disconnect.png'),'Disconnect Devices', self) # closecameras_action.triggered.connect(self.close_Cameras) self.toolbarHor.addAction(closeDevice_action) self.toolbar = QToolBar(Dialog) self.toolbar.setIconSize(QSize(40, 40)) self.toolbar.setOrientation(QtCore.Qt.Vertical) connect_action = QAction(QIcon('images/connect.png'),'Connect Devices', self) connect_action.triggered.connect(self.Connect_Device) self.toolbar.addAction(connect_action) tool_action = QAction(QIcon('images/tools.png'),'Settings', self) self.toolbar.addAction(tool_action) # tool_action.triggered.connect(self.properties_window_A) exit_action = QAction(QIcon('images/exit.png'),'exit', self) self.toolbar.addAction(exit_action) exit_action.triggered.connect(self.window_close) self.retranslateUi(Dialog) QtCore.QMetaObject.connectSlotsByName(Dialog) self.threeD_view() def retranslateUi(self, Dialog): _translate = QtCore.QCoreApplication.translate Dialog.setWindowTitle(_translate("Dialog", "Markerless Mocap")) def threeD_view(self):#-----------------------------------------------------# 3D gui graphic self.width = Dialog.frameGeometry().width() self.height = Dialog.frameGeometry().height() self.widget_width2=self.width+200 self.widget_height2=self.height+155 self.w = gl.GLViewWidget(Dialog) self.w.opts['distance'] = 40 self.w.setGeometry(500, 55, self.widget_width2, self.widget_height2) self.w.setBackgroundColor('k') gz = gl.GLGridItem() gz.translate(0, 0, 0) self.w.addItem(gz) self.ax = gl.GLAxisItem() self.ax.translate(0,0,0.5) self.ax.rotate(180,0,1,0) self.ax.setSize(1,1,1) self.ax.show() self.w.addItem(self.ax) def Connect_Device(self): ports=list_ports.comports() PORT="COM6" try: self.ard = serial.Serial(PORT, 115200,timeout=.1) verts = np.array([[1, 0, 0], #0 [0, 0, 0], #1 [0, 1, 0], #2 [0, 0, 1], #3 [1, 1, 0], #4 [1, 1, 1], #5 [0, 1, 1], #6 [1, 0, 1]])#7 faces = np.array([[1,0,7], [1,3,7], [1,2,4], [1,0,4], [1,2,6], [1,3,6], [0,4,5], [0,7,5], [2,4,5], [2,6,5], [3,6,5], [3,7,5]]) colors = np.array([[1,0,0,1] for i in range(12)]) self.m1 = gl.GLMeshItem(vertexes=verts, faces=faces, faceColors=colors, smooth=False) self.m1.translate(0, 0, 0) self.m1.setGLOptions('additive') self.w.addItem(self.m1) self.dataloopO=0 self.dataloopM=0 self.IMU1=Thread(target=self.IMU_stream) self.IMU1.setDaemon(True) self.IMU1.start() except: pass def IMU_stream(self): while True: if(self.ard.isOpen() == True): try: self.IMU_data=self.ard.readline().decode().strip('\r\n') if "Orientation" in self.IMU_data: #sensor orientation degrees Data_Euler=self.IMU_data.split(" ") if self.dataloopO==0: self.IMU1_Euler_X_temp1=float(Data_Euler[1]) self.IMU1_Euler_Y_temp1=float(Data_Euler[2]) self.IMU1_Euler_Z_temp1=float(Data_Euler[3]) self.dataloopO=self.dataloopO+1 else: self.dataloopO=0 self.IMU1_Euler_X_temp2=float(Data_Euler[1]) self.IMU1_Euler_X_temp3=math.floor(self.IMU1_Euler_X_temp2)-math.floor(self.IMU1_Euler_X_temp1) IMU1_Euler_X_res =self.IMU1_Euler_X_temp3 if IMU1_Euler_X_res == 180: IMU1_Euler_X_res=IMU1_Euler_X_res elif IMU1_Euler_X_res < 180: IMU1_Euler_X_res=self.IMU1_Euler_X_temp3 elif self.IMU1_Euler_X_temp2>self.IMU1_Euler_X_temp1: IMU1_Euler_X_res=IMU1_Euler_X_res-360 else: IMU1_Euler_X_res=360-IMU1_Euler_X_res self.IMU1_Euler_Y_temp2=float(Data_Euler[2]) self.IMU1_Euler_Y_temp3=self.IMU1_Euler_Y_temp2-self.IMU1_Euler_Y_temp1 IMU1_Euler_Y_res =self.IMU1_Euler_Y_temp3 if IMU1_Euler_Y_res == 180: IMU1_Euler_Y_res=IMU1_Euler_Y_res elif IMU1_Euler_Y_res < 180: self.IMU1_Euler_Y_temp3=self.IMU1_Euler_Y_temp3 elif self.IMU1_Euler_Y_temp2>self.IMU1_Euler_Y_temp1: IMU1_Euler_Y_res=IMU1_Euler_Y_res-360 else: IMU1_Euler_Y_res=360-IMU1_Euler_Y_res self.IMU1_Euler_Z_temp2=float(Data_Euler[3]) self.IMU1_Euler_Z_temp3=self.IMU1_Euler_Z_temp2-self.IMU1_Euler_Z_temp1 IMU1_Euler_Z_res =self.IMU1_Euler_Z_temp3 if IMU1_Euler_Z_res == 180: IMU1_Euler_Z_res=IMU1_Euler_Z_res elif IMU1_Euler_Z_res < 180: self.IMU1_Euler_Z_temp3=self.IMU1_Euler_Z_temp3 elif self.IMU1_Euler_Z_temp2>self.IMU1_Euler_Z_temp1: IMU1_Euler_Z_res=IMU1_Euler_Z_res-360 else: IMU1_Euler_Z_res=360-IMU1_Euler_Z_res IMU1_Euler_X_res=IMU1_Euler_X_res*2 IMU1_Euler_Y_res=IMU1_Euler_Y_res*2 IMU1_Euler_Z_res=IMU1_Euler_Z_res*2 self.m1.rotate(IMU1_Euler_X_res, 1,0,0, local=False) ###curenntly still flipping aroundS self.m1.rotate(IMU1_Euler_Y_res, 0,1,0, local=False) self.m1.rotate(IMU1_Euler_Z_res, 0,0,1, local=False) if "Speed" in self.IMU_data: Data_Speed=self.IMU_data.split(" ") self.IMU1_Speed_X=float(Data_Speed[1]) self.IMU1_Speed_Y=float(Data_Speed[2]) self.IMU1_Speed_Z=float(Data_Speed[3]) if "Movement" in self.IMU_data: Data_Movement=self.IMU_data.split(" ") if self.dataloopM==0: self.IMU1_Movement_X_temp1=float(Data_Movement[1]) self.IMU1_Movement_Y_temp1=float(Data_Movement[2]) self.dataloopM=self.dataloopM+1 else: self.dataloopM=0 self.IMU1_Movement_X_temp2=float(Data_Movement[1]) self.IMU1_Movement_Y_temp2=float(Data_Movement[2]) self.IMU1_Movement_X_res=math.floor(self.IMU1_Movement_X_temp2)-math.floor(self.IMU1_Movement_X_temp1) self.IMU1_Movement_Y_res=math.floor(self.IMU1_Movement_Y_temp2)-math.floor(self.IMU1_Movement_Y_temp1) self.m1.translate(self.IMU1_Movement_X_res,self.IMU1_Movement_Y_res, 0) if "Acceleration" in self.IMU_data: # m/s^2 Data_Acceleration=self.IMU_data.split(" ") self.IMU1_Acceleration_X=float(Data_Acceleration[1]) self.IMU1_Acceleration_Y=float(Data_Acceleration[2]) self.IMU1_Acceleration_Z=float(Data_Acceleration[3]) if "Magnatometer" in self.IMU_data: # uT Data_Magnatometer=self.IMU_data.split(" ") self.IMU1_Magnatometer_X=float(Data_Magnatometer[1]) self.IMU1_Magnatometer_Y=float(Data_Magnatometer[2]) self.IMU1_Magnatometer_Z=float(Data_Magnatometer[3]) if "Gyroscope" in self.IMU_data: Data_Gyroscope=self.IMU_data.split(" ") # rad/s self.IMU1_Gyroscope_X=float(Data_Gyroscope[1]) self.IMU1_Gyroscope_Y=float(Data_Gyroscope[2]) self.IMU1_Gyroscope_Z=float(Data_Gyroscope[3]) if "LinearAcceleration" in self.IMU_data: # m/s^2 Data_LinearAcceleration=self.IMU_data.split(" ") self.IMU1_LinearAcceleration_X=float(Data_LinearAcceleration[1]) self.IMU1_LinearAcceleration_Y=float(Data_LinearAcceleration[2]) self.IMU1_LinearAcceleration_Z=float(Data_LinearAcceleration[3]) if "Gravity" in self.IMU_data: # m/s^2 Data_Gravity=self.IMU_data.split(" ") self.IMU1_Gravity_X=float(Data_Gravity[1]) self.IMU1_Gravity_Y=float(Data_Gravity[2]) self.IMU1_Gravity_Z=float(Data_Gravity[3]) if "Calibration:" in self.IMU_data: Data_Calibration=self.IMU_data.split(" ") self.IMU1_Calibration_X=float(Data_Calibration[1]) self.IMU1_Calibration_Y=float(Data_Calibration[2]) self.IMU1_Calibration_Z=float(Data_Calibration[3]) except: pass else: break def calibrating(self): if(self.ard.isOpen() == True): try: for i in range(2): self.IMU_data_calibrate=self.IMU_data if "Orientation:" in self.IMU_data_calibrate: Data_calibO=self.IMU_data_calibrate.split(" ") self.IMU1_calib_oX=float(Data_calibO[1]) self.IMU1_calib_oY=float(Data_calibO[2]) self.IMU1_calib_oZ=float(Data_calibO[3]) self.calibrate = 1 except: pass def window_close(self): try: self.ard.close() except: pass Dialog.close() #--------------------------------------------------------------------------# #--------------------------------------------------------------------------# if __name__ == "__main__": app = QtWidgets.QApplication(sys.argv) Dialog = QtWidgets.QDialog() ui = Ui_Dialog() ui.setupUi(Dialog) Dialog.showMaximized() sys.exit(app.exec_())
be85660849b75a491fe1189952d247703c82b336
[ "Python", "C++" ]
2
C++
long-michaelj1990/IMU_Development
83f7d84aee38e112ac69067e1a97a70bf27205f5
4cd9011d05a1406b5d18f6e612ba6a7114dbea0f
refs/heads/main
<repo_name>dariospace/dariospace.com<file_sep>/README.md [![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/git/external?repository-url=https%3A%2F%2Fgithub.com%2Fdariospace%2Fdariospace.com) <p align="center"> <img alt="React Notion X" src="https://raw.githubusercontent.com/NotionX/react-notion-x/master/media/notion-ts.png" width="689"> </p> # dariospace.com My personal website with a Next.js template for creating a blog with Notion and Splitbee API. ## Overview WIP ## Running Locally ```bash $ git clone https://github.com/dariospace/dariospace.com.git $ cd dariospace.com $ yarn $ yarn dev ``` Create a `.env.local` file similar to [`.env.example`](https://github.com/dariospace/dariospace.com/blob/master/.env.example). Create a Table Page in Notion and Copy the page ID for the Post page and paste it into NOTION_BLOG_ID in the .env file. ## Built Using - [Next.js](https://nextjs.org/) - [Vercel](https://vercel.com) - [Tailwind CSS](https://tailwindcss.com/) ## TO DO - [ ] Complete the readme file - [ ] Add option to subscribe with Buttondown - [ ] Add Unsplash photos to home - [ ] Create posts in Notion - [ ] Move head metada to component ## Licence MIT. ## Credits [React Notion X](https://github.com/NotionX/react-notion-x/) [Splitbee](https://github.com/splitbee/react-notion) [Noblog](https://github.com/bnpne/noblog) <file_sep>/utils/slugFormat.ts export const formatSlug = (slug: string) => { return `/${slug}` } <file_sep>/utils/generateRss.ts import { Feed } from 'feed' import { Post } from '../pages/index' import { formatSlug } from './slugFormat' const domain = 'https://dariospace.com' export const generateRss = (posts: Post[]) => { const year = new Date().getFullYear() const feed = new Feed({ id: domain, link: domain, title: 'Dario Space', copyright: `Unlicensed ${year}, Dario Space`, image: `${domain}/favicon.png`, favicon: `${domain}/favicon.ico`, author: { name: '<NAME>', email: '<EMAIL>', link: 'https://dariospace.com' } }) posts.forEach(post => { if (post.published) { feed.addItem({ title: post.name, id: `${domain}${formatSlug(post.slug)}`, link: `${domain}${formatSlug(post.slug)}`, description: post.preview, date: new Date(post.date) }) } }) return feed.rss2() }
6c0f9c4956f506b29aa699751e241333e1a56ca0
[ "Markdown", "TypeScript" ]
3
Markdown
dariospace/dariospace.com
2e37e288f9f0fa08a84efb92b2a86f8ef5f2eb86
d1d78393412c5284605cd51f37fc0ceb06eaa4ee
refs/heads/master
<repo_name>feixia5320/jianli<file_sep>/jianli-jiangfei/js/main.js $(function(){ $(window).resize(); $("#block-nav").css("z-index", 1); // 导航条固定顶部 $("#block-nav").navFixed(); //平滑滚动导航 $('#fstPage-down a, nav a, #logo').bind('click',function(event){ var $anchor = $(this); $('html, body').stop().animate({scrollTop: $($anchor.attr('href')).offset().top-52}, 600); event.preventDefault(); }); }); $(window).resize(function(){ //首页满屏 $("#block-firstPage").css("height", $(window).height()); //首页文字效果 $('.blockTitle').stop().fadeIn("normal").animate({ "top" : ($(window).height() - $('.blockTitle').outerHeight())/2 },500); $("#block-wantMore").css("height", $(window).height()-52 + "px"); $('#block-wantMore>p').css("top", ($("#block-wantMore").outerHeight(true) - $('#block-wantMore>p').outerHeight())/2 + "px"); }); // 专业技能横向滚动 $(function(){ $("#skill-tab li a").click(function(){ var idx = $("#skill-tab li a").index(this); showBrandList(idx); return false; }).eq(0).click(); }); //显示不同的模块 function showBrandList(index){ var $rollobj = $("#skill-list div"); var rollWidth = $rollobj.find("li").outerWidth(); rollWidth = rollWidth * 5; //一个版面的宽度 $rollobj.stop(true,false).animate({ left : -rollWidth*index},1000); } // work window.onload=function(){ var iDrew=false; changeColor(); } function changeColor(){ var colors=["#1abc9c","#2ecc71","#3498db","#9b59b6","#34495e","#16a085","#27ae60","#2980b9","#8e44ad","#2c3e50" ,"#f1c40f","#e67e22","#e74c3c","#f39c12","#d35400","#c0392b"]; var li=document.getElementById("webDesign").getElementsByTagName("li"); for(var i in li){ li[i].onmouseover=function(e){ if(checkHover(e,this)){ fnStartRun(this,{opacity:"100"}); this.style.background=colors[selectFrom(0,colors.length)]; } } li[i].onmouseout=function(e){ if(checkHover(e,this)){ fnStartRun(this,{opacity:"30"}); } } } var selectFrom=function(lowerValue,upperValue){ var choices=upperValue-lowerValue+1; return Math.floor(Math.random()*choices); } } /*引入运动框架*/ function getStyle(obj,attr){ if(obj.currentStyle){ return obj.currentStyle[attr];//兼容IE } else{ return getComputedStyle(obj,false)[attr];//兼容FF } } function fnStartRun(obj,json,fn){ clearInterval(obj.timer); obj.timer=setInterval(function(){ var bStop=true; for(attr in json){ var iCur=0; if(attr=='opacity')/*兼容透明度*/ { iCur=parseInt(parseFloat(getStyle(obj, attr))*100);/*去掉小数避免小数带来的BUG*/ } else { iCur=parseInt(getStyle(obj, attr)); } var iSpeed=(json[attr]-iCur)/8; iSpeed=iSpeed>0?Math.ceil(iSpeed):Math.floor(iSpeed); if(iCur!=json[attr]){ bStop=false; } if(attr=="opacity"){ obj.style.filter='alpha(opacity:'+(iCur+iSpeed)+')'; obj.style.opacity=(iCur+iSpeed)/100; } if(bStop){ clearInterval(obj.timer); } } },30); } /*防止js鼠标事件多次触发*/ function contains(parentNode, childNode) { if (parentNode.contains) { return parentNode != childNode && parentNode.contains(childNode); } else { return !!(parentNode.compareDocumentPosition(childNode) & 16); } } function checkHover(e,target){ if (getEvent(e).type=="mouseover") { return !contains(target,getEvent(e).relatedTarget||getEvent(e).fromElement) && !((getEvent(e).relatedTarget||getEvent(e).fromElement)===target); } else { return !contains(target,getEvent(e).relatedTarget||getEvent(e).toElement) && !((getEvent(e).relatedTarget||getEvent(e).toElement)===target); } }function getEvent(e){ return e||window.event; }
ac597f3b184fd3abbe2230bde8b6b6e64168c18d
[ "JavaScript" ]
1
JavaScript
feixia5320/jianli
de6db95c2b2978d31eee020ca7a6c85f6260c89c
90423dbef63b6da5028684448bbb37c9a121ab59
refs/heads/master
<file_sep>package com.zerobranch.example.horizontal; import android.content.Context; import androidx.annotation.NonNull; import androidx.recyclerview.widget.RecyclerView; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ImageView; import android.widget.TextView; import android.widget.Toast; import com.zerobranch.example.R; import com.zerobranch.layout.SwipeLayout; import java.util.List; import static androidx.recyclerview.widget.RecyclerView.NO_POSITION; public class HorizontalAdapter extends RecyclerView.Adapter<HorizontalAdapter.ItemHolder> { private List<String> items; HorizontalAdapter(List<String> items) { this.items = items; } @NonNull @Override public ItemHolder onCreateViewHolder(@NonNull ViewGroup viewGroup, int viewType) { switch (viewType) { case 0: return new ItemHolder(LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.horizontal_layout_item_0, viewGroup, false)); case 1: return new ItemHolder(LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.horizontal_layout_item_1, viewGroup, false)); case 2: return new ItemHolder(LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.horizontal_layout_item_2, viewGroup, false)); case 3: return new ItemHolder(LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.horizontal_layout_item_3, viewGroup, false)); case 4: return new ItemHolder(LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.horizontal_layout_item_4, viewGroup, false)); case 5: return new ItemHolder(LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.horizontal_layout_item_5, viewGroup, false)); default: return new ItemHolder(LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.horizontal_layout_item_6, viewGroup, false)); } } @Override public void onBindViewHolder(@NonNull ItemHolder itemHolder, int position) { itemHolder.dragItem.setText(items.get(position)); } @Override public int getItemViewType(int position) { return position; } @Override public int getItemCount() { return items.size(); } private void remove(Context context, int position) { Toast.makeText(context, "removed item " + position, Toast.LENGTH_SHORT).show(); } private void upload(Context context, int position) { Toast.makeText(context, "upload item " + position, Toast.LENGTH_SHORT).show(); } class ItemHolder extends RecyclerView.ViewHolder { TextView dragItem; ImageView leftView; ImageView rightView; SwipeLayout swipeLayout; ItemHolder(@NonNull final View itemView) { super(itemView); dragItem = itemView.findViewById(R.id.drag_item); swipeLayout = itemView.findViewById(R.id.swipe_layout); leftView = itemView.findViewById(R.id.left_view); rightView = itemView.findViewById(R.id.right_view); rightView.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { if (getAdapterPosition() != NO_POSITION) { remove(itemView.getContext(), getAdapterPosition()); } } }); leftView.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { if (getAdapterPosition() != NO_POSITION) { upload(itemView.getContext(), getAdapterPosition()); } } }); } } } <file_sep># SwipeLayout [![](https://jitpack.io/v/zerobranch/SwipeLayout.svg)](https://jitpack.io/#zerobranch/SwipeLayout) [![license](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/zerobranch/SwipeLayout/blob/master/LICENSE) [![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-SwipeLayout-green.svg?style=flat)](https://android-arsenal.com/details/1/7215) SwipeLayout - это проект для платформы android, предоставляющий возможность выполнять свайп для любого макета, в указанном направлении. ### Выберите язык [English](https://github.com/zerobranch/SwipeLayout/blob/master/README.md) [Русский](https://github.com/zerobranch/SwipeLayout/blob/master/RUSSIAN_README.md) ## Описание SwipeLayout - это просто 'Custom ViewGroup', унаследованный от FrameLayout, которая дает возможность просто и легко использовать функцию 'swipe to dismiss', без использования ItemTouchHelper, для любого макета. ## Скачать Скачайте [APK](https://github.com/zerobranch/SwipeLayout/releases/download/1.3.0/SwipeLayout_app.apk) данного примера и попробуйте! ## Скриншоты <img src="/screenshots/left.gif" alt="left.gif" title="left.gif" width="180" height="340" /> <img src="/screenshots/right.gif" alt="right.gif" title="right.gif" width="180" height="340" /> <img src="/screenshots/horizontal.gif" alt="horizontal.gif" title="horizontal.gif" width="180" height="340" /> ## Особенности - Выполнение свайпа влево - Выполнение свайпа вправо - Выполнение свайпа и влево и вправо - Использование любого своего макета - Четыре режима свайпа, которые можно комбинировать между собой ## Интеграция **Вариант 1** Скопируйте файл attrs.xml в папку src/res/values и файл SwipeLayout.java в папку с исходным кодом вашего проекта из [gist](https://gist.github.com/zerobranch/64359efd499ed38f6996390e79a5eadc) и используйте. **Вариант 2** Добавьте в корневой build.gradle следующий репозиторий: ```groovy allprojects { repositories { ... maven { url 'https://jitpack.io' } } } ``` Добавьте в build.gradle вашего модуля следующую зависимость: ```groovy dependencies { implementation 'com.github.zerobranch:SwipeLayout:1.3.0' } ``` ## Как использовать ? Пример использования. Свайп влево ```xml <com.zerobranch.layout.SwipeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/swipe_layout" android:layout_width="match_parent" android:layout_height="90dp" app:draggedItem="@id/drag_item" app:rightItem="@id/right_view" app:swipeDirection="left"> <ImageView android:id="@+id/right_view" android:layout_width="90dp" android:layout_height="match_parent" android:layout_gravity="end" android:background="#ff5722" android:gravity="center" android:paddingEnd="24dp" android:paddingStart="24dp" android:src="@drawable/ic_delete"/> <TextView android:id="@+id/drag_item" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#eeeeee" android:gravity="center_vertical" android:paddingEnd="10dp" android:paddingStart="20dp" android:textSize="20sp"/> </com.zerobranch.layout.SwipeLayout> ``` ``` Выше представлен пример макета. Для корректной работы свайпа необходимо в своем макете добавить <mobile.sarproj.com.swipelayout.SwipeLayout в котором нужно указать следующие параметры: - app:draggedItem="@id/drag_item", где drag_item - id элемента который должен перетаскиваться - app:rightItem="@id/right_view", где right_view - id элемента, который останется справа при свайпе (если используется свайп вправо, то необходимо указать app:leftItem) - app:swipeDirection="left" - направление свайпа - app:swipeDirection="left" - свайп влево - app:swipeDirection="right" - свайп вправо - app:swipeDirection="left|right" - свайп и влево и вправо ``` ## Описание параметров **Обязательные** ``` - app:draggedItem="@id/drag_item", где drag_item - id элемента который должен перетаскиваться - app:rightItem="@id/right_view", где right_view - id элемента, который останется справа при свайпе влево - app:leftItem="@id/left_view", где left_view - id элемента, который останется слева при свайпе вправо - app:swipeDirection="left" - направление свайпа - app:swipeDirection="left" - свайп влево - app:swipeDirection="right" - свайп вправо - app:swipeDirection="left|right" - свайп и влево и вправо ``` **Необязательные** ``` - app:isFreeDragAfterOpen="false|true" - позволяет главной view перемещаться и после его открытия - app:isFreeHorizontalDrag="false|true" - позволяет перемещать главное view в направлении противоположном свайпу - app:isContinuousSwipe="false|true" - позволяет выполнить свайп до конца экрана - app:isTogether="false|true" - вторичная view будет перемещаться вместе с главной view - app:autoMovingSensitivity="1000" - чувствительность автоматического закрытия главного view - app:rightDragViewPadding="0dp" - правая ограничительная граница свайпа для главного view - app:leftDragViewPadding="0dp" - левая ограничительная граница свайпа для главного view - app:isEnabledSwipe="false|true" - позволяет отключить свайп ``` **Программное управление** ``` SwipeLayout.close() - отменить свайп, вернуть главное view в исходное состояние SwipeLayout.openLeft() - выполнить свайп вправо SwipeLayout.openRight() - выполнить свайп влево SwipeLayout.openRightCompletely() - выполнить свайп вправо до конца экрана SwipeLayout.openLeftCompletely() - выполнить свайп влево до конца экрана SwipeLayout.close(false) - отменить свайп, вернуть главное view в исходное состояние без анимации SwipeLayout.openLeft(false) - выполнить свайп вправо без анимации SwipeLayout.openRight(false) - выполнить свайп влево без анимации SwipeLayout.openRightCompletely(false) - выполнить свайп вправо до конца экрана без анимации SwipeLayout.openLeftCompletely(false) - выполнить свайп влево до конца экрана без анимации SwipeLayout.isClosed() - находится ли главное view в исходном состоянии SwipeLayout.isMoving() - находится ли главное view в режиме перемещения SwipeLayout.setEnabledSwipe(false) - позволяет отключить свайп SwipeLayout.enableTouchForViewGroup(ViewGroup) - позволяет использовать события касания для ViewGroup ``` **Callback** ```java SwipeLayout.setOnActionsListener(new SwipeLayout.SwipeActionsListener() { @Override public void onOpen(int direction, boolean isContinuous) { if (direction == SwipeLayout.RIGHT) { // был выполнен свайп вправо } else if (direction == SwipeLayout.LEFT) { // был выполнен свайп влево } } @Override public void onClose() { // главное view вернулось в начальное состояние } }); ``` **Примечание** ``` - флаг isContinuousSwipe работает в двух режимах, с указанием вторичного view (app:leftItem, app:rightItem) и без его указания - если используется свайп и влево и вправо (app:swipeDirection="left|right"), то флаг isContinuousSwipe будет проигнорирован - если указано конкретное направление свайпа и установлен флаг isContinuousSwipe, то флаг isFreeDragAfterOpen будет автоматически установлен как true - если используется свайп и влево и вправо (app:swipeDirection="left|right"), то флаг isFreeHorizontalDrag будет работать иначе. Он будет устанавливать режим, при котором, главное view будет непрерывно перемещаться в обоих направлениях ``` ## License ``` The MIT License (MIT) Copyright (c) 2018 <NAME> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ``` <file_sep>package com.zerobranch.example.left; import android.content.Context; import androidx.annotation.NonNull; import androidx.recyclerview.widget.RecyclerView; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ImageView; import android.widget.TextView; import android.widget.Toast; import com.zerobranch.example.R; import com.zerobranch.layout.SwipeLayout; import java.util.List; import static androidx.recyclerview.widget.RecyclerView.NO_POSITION; public class LeftAdapter extends RecyclerView.Adapter<LeftAdapter.ItemHolder> { private List<String> items; LeftAdapter(List<String> items) { this.items = items; } @NonNull @Override public ItemHolder onCreateViewHolder(@NonNull ViewGroup viewGroup, int viewType) { switch (viewType) { case 0: return new ItemHolder(LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.layout_item_0, viewGroup, false)); case 1: return new ItemHolder(LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.layout_item_1, viewGroup, false)); case 2: return new ItemHolder(LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.layout_item_2, viewGroup, false)); case 3: return new ItemHolder(LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.layout_item_3, viewGroup, false)); case 4: return new ItemHolder(LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.layout_item_4, viewGroup, false)); case 5: return new ItemHolder(LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.layout_item_5, viewGroup, false)); case 6: return new ItemHolder(LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.layout_item_6, viewGroup, false)); default: return new ItemHolder(LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.layout_item_7, viewGroup, false)); } } @Override public void onBindViewHolder(@NonNull ItemHolder itemHolder, int position) { itemHolder.dragItem.setText(items.get(position)); } @Override public int getItemViewType(int position) { return position; } @Override public int getItemCount() { return items.size(); } private void remove(Context context, int position) { Toast.makeText(context, "removed item " + position, Toast.LENGTH_SHORT).show(); } class ItemHolder extends RecyclerView.ViewHolder { TextView dragItem; ImageView rightView; TextView rightTextView; SwipeLayout swipeLayout; ItemHolder(@NonNull final View itemView) { super(itemView); dragItem = itemView.findViewById(R.id.drag_item); swipeLayout = itemView.findViewById(R.id.swipe_layout); rightView = itemView.findViewById(R.id.right_view); rightTextView = itemView.findViewById(R.id.right_text_view); if (rightView != null) { rightView.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { if (getAdapterPosition() != NO_POSITION) { remove(itemView.getContext(), getAdapterPosition()); } } }); } if (rightTextView != null) { rightTextView.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { if (getAdapterPosition() != NO_POSITION) { remove(itemView.getContext(), getAdapterPosition()); } } }); } swipeLayout.setOnActionsListener(new SwipeLayout.SwipeActionsListener() { @Override public void onOpen(int direction, boolean isContinuous) { if (direction == SwipeLayout.LEFT && isContinuous) { if (getAdapterPosition() != NO_POSITION) { remove(itemView.getContext(), getAdapterPosition()); } } } @Override public void onClose() { } }); } } } <file_sep># SwipeLayout [![](https://jitpack.io/v/zerobranch/SwipeLayout.svg)](https://jitpack.io/#zerobranch/SwipeLayout) [![license](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/zerobranch/SwipeLayout/blob/master/LICENSE) [![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-SwipeLayout-green.svg?style=flat)](https://android-arsenal.com/details/1/7215) SwipeLayout is a project for the android platform, providing the opportunity to perform swipe for any layout, in the specified direction. ### Choose language [English](https://github.com/zerobranch/SwipeLayout/blob/master/README.md) [Русский](https://github.com/zerobranch/SwipeLayout/blob/master/RUSSIAN_README.md) ## Description SwipeLayout is just a 'Custom ViewGroup', extended from FrameLayout, which provides easy and fast to use the 'swipe to dismiss' function, without using the ItemTouchHelper, for any layout. ## Download Download the sample [APK](https://github.com/zerobranch/SwipeLayout/releases/download/1.3.0/SwipeLayout_app.apk) and try it out! ## Screenshots <img src="/screenshots/left.gif" alt="left.gif" title="left.gif" width="180" height="340" /> <img src="/screenshots/right.gif" alt="right.gif" title="right.gif" width="180" height="340" /> <img src="/screenshots/horizontal.gif" alt="horizontal.gif" title="horizontal.gif" width="180" height="340" /> ## Features - Executing the swipe to the left - Executing the swipe to the right - Executing the swipe and left and right - Using any your layouts - Four modes of swipe, which can be combined with each other ## Integration **Option 1** Copy the attrs.xml file to the src/res/values folder and the SwipeLayout.java file to the source code folder of your project from the [gist](https://gist.github.com/zerobranch/64359efd499ed38f6996390e79a5eadc) and to use. **Option 2** Add it in your root build.gradle at the end of repositories: ```groovy allprojects { repositories { ... maven { url 'https://jitpack.io' } } } ``` Add the following dependency to your module's build.gradle: ```groovy dependencies { implementation 'com.github.zerobranch:SwipeLayout:1.3.1' } ``` ## How to use ? Example of use. Swipe to the left ```xml <com.zerobranch.layout.SwipeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/swipe_layout" android:layout_width="match_parent" android:layout_height="90dp" app:draggedItem="@id/drag_item" app:rightItem="@id/right_view" app:swipeDirection="left"> <ImageView android:id="@+id/right_view" android:layout_width="90dp" android:layout_height="match_parent" android:layout_gravity="end" android:background="#ff5722" android:gravity="center" android:paddingEnd="24dp" android:paddingStart="24dp" android:src="@drawable/ic_delete"/> <TextView android:id="@+id/drag_item" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#eeeeee" android:gravity="center_vertical" android:paddingEnd="10dp" android:paddingStart="20dp" android:textSize="20sp"/> </com.zerobranch.layout.SwipeLayout> ``` ``` Above is an example of a layout. For the correct operation of the swipe it is necessary to add <mobile.sarproj.com.swipelayout.SwipeLayout in your layout in which you need to specify the following parameters: - app:draggedItem="@id/drag_item", where drag_item is the id of the element to be dragged - app:rightItem="@id/right_view", where right_view is the id of the element that will remain on the right with the swipe to the left (if you use swipe to the right, you must specify app: leftItem). - app:swipeDirection="left" - direction of a swipe - app:swipeDirection="left" - swipe to the left - app:swipeDirection="right" - swipe to the right - app:swipeDirection="left|right" - swipe left and right ``` ## Description of parameters **Required** ``` - app:draggedItem="@id/drag_item" - where drag_item is the id of the element to be dragged - app:rightItem="@id/right_view" - where right_view - id of the element that will remain on the right with the swipe to the left - app:leftItem="@id/left_view" - where left_view - id of the element that will remain on the left with the swipe to the right - app:swipeDirection="left" - direction of a swipe - app:swipeDirection="left" - swipe to the left - app:swipeDirection="right" - swipe to the right - app:swipeDirection="left|right" - swipe left and right ``` **Optional** ``` - app:isFreeDragAfterOpen="false|true" - allows the main view to move after its opening - app:isFreeHorizontalDrag="false|true" - allows you to move the main view in the opposite direction to the swipe - app:isContinuousSwipe="false|true" - allows you to execute the swipe to the end of the screen - app:isTogether="false|true" - the secondary view will move along with the main view - app:autoMovingSensitivity="1000" - sensitivity of automatic closing of the main view - app:rightDragViewPadding="0dp" - the right bounding border of the swipe for the main view - app:leftDragViewPadding="0dp" - the left bounding border of the swipe for the main view - app:isEnabledSwipe="false|true" - allows you to disable the swipe ``` **Control from the code** ``` SwipeLayout.close() - cancel swipe, return the main view to its original state SwipeLayout.openLeft() - execute swipe to the right SwipeLayout.openRight() - execute swipe to the left SwipeLayout.openRightCompletely() - execute swipe to the right to the end of the screen SwipeLayout.openLeftCompletely() - execute swipe to the left to the end of the screen SwipeLayout.close(false) - cancel swipe, return the main view to its original state without animation SwipeLayout.openLeft(false) - execute swipe to the right without animation SwipeLayout.openRight(false) - execute swipe to the left without animation SwipeLayout.openRightCompletely(false) - execute swipe to the right to the end of the screen without animation SwipeLayout.openLeftCompletely(false) - execute swipe to the left to the end of the screen without animation SwipeLayout.isClosed() - is the main view in the default state SwipeLayout.isMoving() - is the main view in the moving SwipeLayout.setEnabledSwipe(false) - allows you to disable the swipe SwipeLayout.enableTouchForViewGroup(ViewGroup) - enable touch for ViewGroup ``` **Callback** ```java SwipeLayout.setOnActionsListener(new SwipeLayout.SwipeActionsListener() { @Override public void onOpen(int direction, boolean isContinuous) { if (direction == SwipeLayout.RIGHT) { // was executed swipe to the right } else if (direction == SwipeLayout.LEFT) { // was executed swipe to the left } } @Override public void onClose() { // the main view has returned to the default state } }); ``` **Note** ``` - the isContinuousSwipe flag works in two modes, with a secondary view (app:leftItem, app:rightItem) and without it - if you use both swipe left and right (app:swipeDirection="left|right"), the isContinuousSwipe flag will be ignored - if a specific direction of the swipe is specified and the isContinuousSwipe flag is set, the isFreeDragAfterOpen flag is automatically set to true - if you use swipe and left and right (app:swipeDirection="left|right"), the isFreeHorizontalDrag flag will work differently. It will set the mode at which the main view will continuously move in both directions ``` ## License ``` The MIT License (MIT) Copyright (c) 2018 <NAME> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ``` <file_sep>/* * The MIT License (MIT) * * Copyright (c) 2018 <NAME> * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ package com.zerobranch.layout; import android.content.Context; import android.content.res.TypedArray; import android.graphics.Point; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.core.view.GestureDetectorCompat; import androidx.core.view.ViewCompat; import androidx.customview.widget.ViewDragHelper; import android.util.AttributeSet; import android.view.GestureDetector; import android.view.MotionEvent; import android.view.View; import android.view.ViewGroup; import android.widget.FrameLayout; /** * This project provides an opportunity to perform swipe for any layout, * in the direction specified by you. * <p> * Date: 2018-09-27 * Repository #https://github.com/zerobranch/SwipeLayout * * @author <NAME> */ public class SwipeLayout extends FrameLayout { public static final int LEFT = 1; public static final int RIGHT = LEFT << 1; public static final int HORIZONTAL = LEFT | RIGHT; private static final int CLOSE_POSITION = 0; private static final int NO_POSITION = -1; private static final int DEFAULT_AUTO_OPEN_SPEED = 1000; /** * Current direction of a swipe */ private int currentDirection; /** * The secondary view will move along with the main view */ private boolean isTogether; /** * Is enabled Swipe */ private boolean isEnabledSwipe; /** * Swipe to the end of the screen. * Can work without a secondary view {@link #staticLeftView} and {@link #staticRightView} * <p> * If a particular direction of the swipe is used ({@link #LEFT} or {@link #RIGHT}), * and this flag is set, then {@link #isFreeDragAfterOpen} always will be true. * <p> * If the left and right directions of the swipe are used simultaneously ({@link #HORIZONTAL}), * then this flag will be ignored */ private boolean isContinuousSwipe; /** * Moving the main view after it was open. * <p> * if {@link #isEmptyLeftView()} or {@link #isEmptyRightView()}, * then this flag will be ignored */ private boolean isFreeDragAfterOpen; /** * If a particular direction of the swipe is used ({@link #LEFT} or {@link #RIGHT}), * then this flag allows you to do the swipe in the opposite direction. * <p> * If the horizontal direction is used ({@link #HORIZONTAL}), * this flag allows you to move the main view continuously in both directions */ private boolean isFreeHorizontalDrag; /** * The right bounding border of the swipe for the main view */ private int rightDragViewPadding; /** * The left bounding border of the swipe for the main view */ private int leftDragViewPadding; /** * Sensitivity of automatic closing of the main view */ private double autoOpenSpeed; /** * Disable intercept touch event for draggable view */ private boolean disallowIntercept; private int currentDraggingState = ViewDragHelper.STATE_IDLE; private ViewDragHelper dragHelper; private GestureDetectorCompat gestureDetector; private int draggingViewLeft; private int horizontalWidth; private boolean isLeftOpen; private boolean isRightOpen; private int staticRightViewId; private int staticLeftViewId; private int draggedViewId; private View draggedView; private View staticRightView; private View staticLeftView; private SwipeActionsListener actionsListener; public SwipeLayout(Context context, AttributeSet attrs) { super(context, attrs); isLeftOpen = false; isRightOpen = false; final TypedArray typedArray = getContext().obtainStyledAttributes(attrs, R.styleable.SwipeLayout); currentDirection = typedArray.getInteger(R.styleable.SwipeLayout_swipeDirection, LEFT); isFreeDragAfterOpen = typedArray.getBoolean(R.styleable.SwipeLayout_isFreeDragAfterOpen, false); isFreeHorizontalDrag = typedArray.getBoolean(R.styleable.SwipeLayout_isFreeHorizontalDrag, false); isContinuousSwipe = typedArray.getBoolean(R.styleable.SwipeLayout_isContinuousSwipe, false); isTogether = typedArray.getBoolean(R.styleable.SwipeLayout_isTogether, false); isEnabledSwipe = typedArray.getBoolean(R.styleable.SwipeLayout_isEnabledSwipe, true); staticLeftViewId = typedArray.getResourceId(R.styleable.SwipeLayout_leftItem, 0); staticRightViewId = typedArray.getResourceId(R.styleable.SwipeLayout_rightItem, 0); draggedViewId = typedArray.getResourceId(R.styleable.SwipeLayout_draggedItem, 0); autoOpenSpeed = typedArray.getInt(R.styleable.SwipeLayout_autoMovingSensitivity, DEFAULT_AUTO_OPEN_SPEED); rightDragViewPadding = (int) typedArray.getDimension(R.styleable.SwipeLayout_rightDragViewPadding, 0); leftDragViewPadding = (int) typedArray.getDimension(R.styleable.SwipeLayout_leftDragViewPadding, 0); parametersAdjustment(); typedArray.recycle(); } @Override protected void onSizeChanged(int w, int h, int oldW, int oldH) { horizontalWidth = w; super.onSizeChanged(w, h, oldW, oldH); } @Override public boolean onInterceptTouchEvent(MotionEvent event) { if (disallowIntercept && isViewGroup(draggedView)) { final View neededScrollView = getNeededTouchView(event, (ViewGroup) draggedView); final Point touchPoint = new Point((int) event.getX(), (int) event.getY()); if (neededScrollView != null && isViewTouchTarget(neededScrollView, touchPoint)) { return false; } } return isSwipeViewTarget(event) && dragHelper.shouldInterceptTouchEvent(event); } @Override public void requestDisallowInterceptTouchEvent(boolean disallowIntercept) { super.requestDisallowInterceptTouchEvent(disallowIntercept); this.disallowIntercept = disallowIntercept; } @Override protected void onFinishInflate() { if (draggedViewId != 0) { draggedView = findViewById(draggedViewId); } if (staticLeftViewId != 0) { staticLeftView = findViewById(staticLeftViewId); } if (staticRightViewId != 0) { staticRightView = findViewById(staticRightViewId); } if (draggedView == null) { throw new RuntimeException("'draggedItem' must be specified"); } else if (isTogether && currentDirection == LEFT && staticRightView == null) { throw new RuntimeException("If 'isTogether = true' 'rightItem' must be specified"); } else if (isTogether && currentDirection == RIGHT && staticLeftView == null) { throw new RuntimeException("If 'isTogether = true' 'leftItem' must be specified"); } else if (currentDirection == LEFT && !isContinuousSwipe && staticRightView == null) { throw new RuntimeException("Must be specified 'rightItem' or flag isContinuousSwipe = true"); } else if (currentDirection == RIGHT && !isContinuousSwipe && staticLeftView == null) { throw new RuntimeException("Must be specified 'leftItem' or flag isContinuousSwipe = true"); } else if (currentDirection == HORIZONTAL && (staticRightView == null || staticLeftView == null)) { throw new RuntimeException("'leftItem' and 'rightItem' must be specified"); } dragHelper = ViewDragHelper.create(this, 1.0f, dragHelperCallback); gestureDetector = new GestureDetectorCompat(getContext(), gestureDetectorCallBack); setupPost(); super.onFinishInflate(); } @Override public boolean onTouchEvent(MotionEvent event) { if (isSwipeViewTarget(event) || isMoving()) { gestureDetector.onTouchEvent(event); dragHelper.processTouchEvent(event); return true; } else { return super.onTouchEvent(event); } } @Override public void computeScroll() { if (dragHelper.continueSettling(true)) { ViewCompat.postInvalidateOnAnimation(this); } } /** * Is enabled Swipe * * @return True if swipe is enabled, false otherwise. */ public boolean isEnabledSwipe() { return isEnabledSwipe; } /** * Set the enabled swipe. * * @param enabledSwipe True if swipe is enabled, false otherwise. */ public void setEnabledSwipe(boolean enabledSwipe) { this.isEnabledSwipe = enabledSwipe; } /** * Performs manual swipe to the left * * @param animated - flag to animate opening */ public void openRight(boolean animated) { if (animated) { openRight(); } else if (isDragIdle(currentDraggingState) && ((currentDirection == LEFT && !isEmptyRightView()) || currentDirection == HORIZONTAL) && !isRightOpen) { if (isTogether) { staticRightView.offsetLeftAndRight(-1 * (isLeftOpen ? getRightViewWidth() * 2 : getRightViewWidth())); } draggedView.offsetLeftAndRight(-1 * (isLeftOpen ? getRightViewWidth() * 2 : getRightViewWidth())); draggingViewLeft -= (isLeftOpen ? getRightViewWidth() * 2 : getRightViewWidth()); updateState(); } } /** * Performs a full manual swipe to the left * * @param animated - flag to animate opening */ public void openRightCompletely(boolean animated) { if (animated) { openRightCompletely(); } else { if (isDragIdle(currentDraggingState) && currentDirection == LEFT) { if (isTogether) { staticRightView.offsetLeftAndRight(-horizontalWidth); } draggedView.offsetLeftAndRight(-horizontalWidth); draggingViewLeft -= horizontalWidth; updateState(); } } } /** * Performs manual swipe to the right * * @param animated - flag to animate opening */ public void openLeft(boolean animated) { if (animated) { openLeft(); } else if (isDragIdle(currentDraggingState) && ((currentDirection == RIGHT && !isEmptyLeftView()) || currentDirection == HORIZONTAL) && !isLeftOpen) { if (isTogether) { staticLeftView.offsetLeftAndRight((isRightOpen ? getLeftViewWidth() * 2 : getLeftViewWidth())); } draggedView.offsetLeftAndRight((isRightOpen ? getLeftViewWidth() * 2 : getLeftViewWidth())); draggingViewLeft += (isRightOpen ? getLeftViewWidth() * 2 : getLeftViewWidth()); updateState(); } } /** * Performs a full manual swipe to the right * * @param animated - flag to animate opening */ public void openLeftCompletely(boolean animated) { if (animated) { openRightCompletely(); } else { if (isDragIdle(currentDraggingState) && currentDirection == RIGHT) { if (isTogether) { staticRightView.offsetLeftAndRight(horizontalWidth); } draggedView.offsetLeftAndRight(horizontalWidth); draggingViewLeft += horizontalWidth; updateState(); } } } /** * Performs manual close * * @param animated - flag to animate closing */ public void close(boolean animated) { if (animated) { close(); } else { if (isTogether) { if (staticLeftView != null && currentDirection == RIGHT) { staticLeftView.layout(CLOSE_POSITION, staticLeftView.getTop(), staticLeftView.getWidth(), staticLeftView.getBottom()); } else if (staticRightView != null && currentDirection == LEFT) { staticRightView.layout(horizontalWidth - staticRightView.getWidth(), staticRightView.getTop(), horizontalWidth, staticRightView.getBottom()); } else if (currentDirection == HORIZONTAL && staticRightView != null && staticLeftView != null) { staticLeftView.layout(CLOSE_POSITION, staticLeftView.getTop(), staticLeftView.getWidth(), staticLeftView.getBottom()); staticRightView.layout(horizontalWidth - staticRightView.getWidth(), staticRightView.getTop(), horizontalWidth, staticRightView.getBottom()); } } draggedView.layout(CLOSE_POSITION, draggedView.getTop(), draggedView.getWidth(), draggedView.getBottom()); draggingViewLeft = CLOSE_POSITION; updateState(); } } /** * Performs manual swipe to the right */ public void openLeft() { if (isDragIdle(currentDraggingState) && ((currentDirection == RIGHT && !isEmptyLeftView()) || currentDirection == HORIZONTAL)) { moveTo(getLeftViewWidth()); } } /** * Performs manual swipe to the left */ public void openRight() { if (isDragIdle(currentDraggingState) && ((currentDirection == LEFT && !isEmptyRightView()) || currentDirection == HORIZONTAL)) { moveTo(-getRightViewWidth()); } } /** * Performs a full manual swipe to the right */ public void openLeftCompletely() { if (isDragIdle(currentDraggingState) && currentDirection == RIGHT) { moveTo(horizontalWidth); } } /** * Performs a full manual swipe to the left */ public void openRightCompletely() { if (isDragIdle(currentDraggingState) && currentDirection == LEFT) { moveTo(-horizontalWidth); } } /** * Performs manual close */ public void close() { moveTo(CLOSE_POSITION); } /** * Is moving main view */ public boolean isMoving() { return (currentDraggingState == ViewDragHelper.STATE_DRAGGING || currentDraggingState == ViewDragHelper.STATE_SETTLING); } /** * Is closed main view */ public boolean isClosed() { return draggingViewLeft == CLOSE_POSITION; } /** * Get current direction of a swipe */ public int getCurrentDirection() { return currentDirection; } /** * Set current direction of a swipe */ public SwipeLayout setCurrentDirection(int currentDirection) { this.currentDirection = currentDirection; return this; } /** * Is move the secondary view along with the main view */ public boolean isTogether() { return isTogether; } /** * The secondary view will move along with the main view */ public SwipeLayout setTogether(boolean together) { isTogether = together; return this; } /** * Swipe to the end of the screen. * Can work without a secondary view {@link #staticLeftView} and {@link #staticRightView} * <p> * If a particular direction of the swipe is used ({@link #LEFT} or {@link #RIGHT}), * and this flag is set, then {@link #isFreeDragAfterOpen} always will be true. * <p> * If the left and right directions of the swipe are used simultaneously ({@link #HORIZONTAL}), * then this flag will be ignored */ public boolean isContinuousSwipe() { return isContinuousSwipe; } /** * Swipe to the end of the screen. * Can work without a secondary view {@link #staticLeftView} and {@link #staticRightView} * <p> * If a particular direction of the swipe is used ({@link #LEFT} or {@link #RIGHT}), * and this flag is set, then {@link #isFreeDragAfterOpen} always will be true. * <p> * If the left and right directions of the swipe are used simultaneously ({@link #HORIZONTAL}), * then this flag will be ignored */ public SwipeLayout setContinuousSwipe(boolean continuousSwipe) { isContinuousSwipe = continuousSwipe; parametersAdjustment(); return this; } /** * Moving the main view after it was open. * <p> * if {@link #isEmptyLeftView()} or {@link #isEmptyRightView()}, * then this flag will be ignored */ public boolean isFreeDragAfterOpen() { return isFreeDragAfterOpen; } /** * Moving the main view after it was open. * <p> * if {@link #isEmptyLeftView()} or {@link #isEmptyRightView()}, * then this flag will be ignored */ public SwipeLayout setFreeDragAfterOpen(boolean freeDragAfterOpen) { isFreeDragAfterOpen = freeDragAfterOpen; parametersAdjustment(); return this; } /** * If a particular direction of the swipe is used ({@link #LEFT} or {@link #RIGHT}), * then this flag allows you to do the swipe in the opposite direction. * <p> * If the horizontal direction is used ({@link #HORIZONTAL}), * this flag allows you to move the main view continuously in both directions */ public boolean isFreeHorizontalDrag() { return isFreeHorizontalDrag; } /** * If a particular direction of the swipe is used ({@link #LEFT} or {@link #RIGHT}), * then this flag allows you to do the swipe in the opposite direction. * <p> * If the horizontal direction is used ({@link #HORIZONTAL}), * this flag allows you to move the main view continuously in both directions */ public SwipeLayout setFreeHorizontalDrag(boolean freeHorizontalDrag) { isFreeHorizontalDrag = freeHorizontalDrag; return this; } /** * Is open right view */ public boolean isRightOpen() { return isRightOpen; } /** * Is open left view */ public boolean isLeftOpen() { return isLeftOpen; } /** * Set swipe actions listener */ public SwipeLayout setOnActionsListener(@Nullable SwipeActionsListener actionsListener) { this.actionsListener = actionsListener; return this; } /** * Get the right bounding border of the swipe for the main view */ public int getRightDragViewPadding() { return rightDragViewPadding; } /** * Set the right bounding border of the swipe for the main view */ public SwipeLayout setRightDragViewPadding(int minRightDragViewPadding) { this.rightDragViewPadding = minRightDragViewPadding; parametersAdjustment(); return this; } /** * Get the left bounding border of the swipe for the main view */ public int getLeftDragViewPadding() { return leftDragViewPadding; } /** * Set the left bounding border of the swipe for the main view */ public SwipeLayout setLeftDragViewPadding(int minLeftDragViewPadding) { this.leftDragViewPadding = minLeftDragViewPadding; parametersAdjustment(); return this; } /** * Enable touch for ViewGroup */ public void enableTouchForViewGroup(@NonNull final ViewGroup viewGroup) { viewGroup.setOnTouchListener(new OnTouchListener() { @Override public boolean onTouch(View v, MotionEvent event) { requestDisallowInterceptTouchEvent(true); return false; } }); } private void updateState() { if (isClosed()) { isLeftOpen = false; isRightOpen = false; if (actionsListener != null) { actionsListener.onClose(); } } else if (isLeftOpenCompletely() || isLeftViewOpen()) { isLeftOpen = true; isRightOpen = false; if (actionsListener != null) { actionsListener.onOpen(RIGHT, isLeftOpenCompletely()); } } else if (isRightOpenCompletely() || isRightViewOpen()) { isLeftOpen = false; isRightOpen = true; if (actionsListener != null) { actionsListener.onOpen(LEFT, isRightOpenCompletely()); } } } private GestureDetector.OnGestureListener gestureDetectorCallBack = new GestureDetector.SimpleOnGestureListener() { @Override public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) { if (getParent() != null) { getParent().requestDisallowInterceptTouchEvent(true); } return false; } }; private final ViewDragHelper.Callback dragHelperCallback = new ViewDragHelper.Callback() { @Override public void onViewDragStateChanged(int state) { if (state == currentDraggingState) return; if (isIdleAfterMoving(state)) { updateState(); } currentDraggingState = state; } @Override public void onViewPositionChanged(@NonNull View changedView, int left, int top, int dx, int dy) { draggingViewLeft = left; if (isTogether) { if (currentDirection == LEFT) { staticRightView.offsetLeftAndRight(dx); } else if (currentDirection == RIGHT) { staticLeftView.offsetLeftAndRight(dx); } else if (currentDirection == HORIZONTAL) { staticLeftView.offsetLeftAndRight(dx); staticRightView.offsetLeftAndRight(dx); } } } @Override public int getViewHorizontalDragRange(@NonNull View child) { return horizontalWidth; } @Override public boolean tryCaptureView(@NonNull View view, int pointerId) { return view.getId() == draggedView.getId(); } @Override public int clampViewPositionHorizontal(@NonNull View child, int left, int dx) { if (!isEnabledSwipe) { return CLOSE_POSITION; } switch (currentDirection) { case LEFT: return clampLeftViewPosition(left); case RIGHT: return clampRightViewPosition(left); case HORIZONTAL: return clampHorizontalViewPosition(left, dx); default: return CLOSE_POSITION; } } @Override public void onViewReleased(@NonNull View releasedChild, float xVel, float yVel) { int finalXDraggingView = CLOSE_POSITION; if (currentDirection == LEFT) { finalXDraggingView = getFinalXLeftDirection(xVel); } else if (currentDirection == RIGHT) { finalXDraggingView = getFinalXRightDirection(xVel); } else if (currentDirection == HORIZONTAL) { finalXDraggingView = getFinalXHorizontalDirection(xVel); if (finalXDraggingView == NO_POSITION) { finalXDraggingView = getPreviousPosition(); } } if (dragHelper.settleCapturedViewAt(finalXDraggingView, draggedView.getTop())) { ViewCompat.postInvalidateOnAnimation(SwipeLayout.this); } } }; private int clampLeftViewPosition(int left) { if (isContinuousSwipe && isEmptyRightView()) { if (isFreeHorizontalDrag) { return left > horizontalWidth ? CLOSE_POSITION : Math.max(left, -horizontalWidth); } else { return left > CLOSE_POSITION ? CLOSE_POSITION : Math.max(left, -horizontalWidth); } } if (isFreeDragAfterOpen) { if (isFreeHorizontalDrag) { return left > horizontalWidth ? CLOSE_POSITION : Math.max(left, leftDragViewPadding - horizontalWidth); } return left > CLOSE_POSITION ? CLOSE_POSITION : Math.max(left, leftDragViewPadding - horizontalWidth); } if (isFreeHorizontalDrag) { return left > horizontalWidth ? CLOSE_POSITION : Math.max(left, -getRightViewWidth()); } return left > CLOSE_POSITION ? CLOSE_POSITION : Math.max(left, -getRightViewWidth()); } private int clampRightViewPosition(int left) { if (isContinuousSwipe && isEmptyLeftView()) { if (isFreeHorizontalDrag) { return left < -horizontalWidth ? -horizontalWidth : Math.min(left, horizontalWidth); } else { return left < CLOSE_POSITION ? CLOSE_POSITION : Math.min(left, horizontalWidth); } } if (isFreeDragAfterOpen) { if (isFreeHorizontalDrag) { return left < -horizontalWidth ? -horizontalWidth : Math.min(left, horizontalWidth - rightDragViewPadding); } return left < CLOSE_POSITION ? CLOSE_POSITION : Math.min(left, horizontalWidth - rightDragViewPadding); } if (isFreeHorizontalDrag) { return left < -horizontalWidth ? -horizontalWidth : Math.min(left, getLeftViewWidth()); } return left < CLOSE_POSITION ? CLOSE_POSITION : Math.min(left, getLeftViewWidth()); } private int clampHorizontalViewPosition(int left, int dx) { if (!isFreeHorizontalDrag && isLeftOpen && dx < 0) { return Math.max(left, CLOSE_POSITION); } if (!isFreeHorizontalDrag && isRightOpen && dx > 0) { return Math.min(left, CLOSE_POSITION); } if (!isFreeDragAfterOpen && left > CLOSE_POSITION) { return Math.min(left, getLeftViewWidth()); } if (!isFreeDragAfterOpen && left < CLOSE_POSITION) { return Math.max(left, -getRightViewWidth()); } return left < CLOSE_POSITION ? Math.max(left, leftDragViewPadding - horizontalWidth) : Math.min(left, horizontalWidth - rightDragViewPadding); } private int getPreviousPosition() { if (isLeftOpen) { return getLeftViewWidth(); } else if (isRightOpen) { return -getRightViewWidth(); } else { return CLOSE_POSITION; } } private int getFinalXLeftDirection(float xVel) { if (isContinuousSwipe) { if (isEmptyRightView()) { if ((draggingViewLeft < CLOSE_POSITION && Math.abs(draggingViewLeft) > horizontalWidth / 2) || xVel < -autoOpenSpeed) { return -horizontalWidth; } return CLOSE_POSITION; } if (isContinuousSwipeToLeft(xVel)) { return -horizontalWidth; } } final boolean settleToOpen; if (xVel > autoOpenSpeed) { settleToOpen = false; } else if (xVel < -autoOpenSpeed) { settleToOpen = true; } else if (draggingViewLeft < CLOSE_POSITION && Math.abs(draggingViewLeft) > getRightViewWidth() / 2) { settleToOpen = true; } else if (draggingViewLeft < CLOSE_POSITION && Math.abs(draggingViewLeft) < getRightViewWidth() / 2) { settleToOpen = false; } else { settleToOpen = false; } return settleToOpen ? -getRightViewWidth() : CLOSE_POSITION; } private int getFinalXRightDirection(float xVel) { if (isContinuousSwipe) { if (isEmptyLeftView()) { if ((draggingViewLeft > CLOSE_POSITION && Math.abs(draggingViewLeft) > horizontalWidth / 2) || xVel > autoOpenSpeed) { return horizontalWidth; } return CLOSE_POSITION; } if (isContinuousSwipeToRight(xVel)) { return horizontalWidth; } } final boolean settleToOpen; if (xVel > autoOpenSpeed) { settleToOpen = true; } else if (xVel < -autoOpenSpeed) { settleToOpen = false; } else if (draggingViewLeft > CLOSE_POSITION && Math.abs(draggingViewLeft) > getLeftViewWidth() / 2) { settleToOpen = true; } else if (draggingViewLeft > CLOSE_POSITION && Math.abs(draggingViewLeft) < getLeftViewWidth() / 2) { settleToOpen = false; } else { settleToOpen = false; } return settleToOpen ? getLeftViewWidth() : CLOSE_POSITION; } private int getFinalXHorizontalDirection(float xVel) { if (isSwipeToOpenLeft(xVel)) { return getLeftViewWidth(); } else if (isSwipeToOpenRight(xVel)) { return -getRightViewWidth(); } else if (isSwipeToClose(xVel)) { return CLOSE_POSITION; } return NO_POSITION; } private boolean isContinuousSwipeToRight(float xVel) { return (xVel > autoOpenSpeed && Math.abs(draggingViewLeft) > getLeftViewWidth()) || (draggingViewLeft > CLOSE_POSITION && Math.abs(draggingViewLeft) > horizontalWidth / 2); } private boolean isContinuousSwipeToLeft(float xVel) { return (xVel < -autoOpenSpeed && Math.abs(draggingViewLeft) > getRightViewWidth()) || (draggingViewLeft < CLOSE_POSITION && Math.abs(draggingViewLeft) > horizontalWidth / 2); } private boolean isSwipeToOpenRight(float xVel) { if (xVel > 0) { return false; } return (draggingViewLeft < CLOSE_POSITION && xVel < -autoOpenSpeed) || (draggingViewLeft < CLOSE_POSITION && Math.abs(draggingViewLeft) > getRightViewWidth() / 2); } private boolean isSwipeToOpenLeft(float xVel) { if (xVel < 0) { return false; } return (draggingViewLeft > CLOSE_POSITION && xVel > autoOpenSpeed) || (draggingViewLeft > CLOSE_POSITION && Math.abs(draggingViewLeft) > getLeftViewWidth() / 2); } private boolean isSwipeToClose(float xVel) { return (draggingViewLeft >= CLOSE_POSITION && xVel < -autoOpenSpeed) || (draggingViewLeft <= CLOSE_POSITION && xVel > autoOpenSpeed) || (draggingViewLeft >= CLOSE_POSITION && Math.abs(draggingViewLeft) < getLeftViewWidth() / 2) || (draggingViewLeft <= CLOSE_POSITION && Math.abs(draggingViewLeft) < getRightViewWidth() / 2); } private void setupPost() { if (isTogether) { post(new Runnable() { @Override public void run() { if (currentDirection == LEFT) { staticRightView.setX(horizontalWidth); } else if (currentDirection == RIGHT) { staticLeftView.setX(-staticLeftView.getWidth()); } else if (currentDirection == HORIZONTAL) { staticRightView.setX(horizontalWidth); staticLeftView.setX(-staticLeftView.getWidth()); } } }); } } private boolean isViewTouchTarget(View view, Point point) { return point.y >= view.getTop() && point.y < view.getBottom() && point.x >= view.getLeft() && point.y < view.getRight(); } private View getNeededTouchView(MotionEvent event, ViewGroup rootView) { if (rootView.onInterceptTouchEvent(event)) { return rootView; } int count = rootView.getChildCount(); for (int i = 0; i < count; i++) { View view = rootView.getChildAt(i); if (!isViewGroup(view)) { continue; } View neededScrollView = getNeededTouchView(event, (ViewGroup) view); if (neededScrollView != null) { return neededScrollView; } } return null; } private boolean isViewGroup(View view) { return view instanceof ViewGroup; } private boolean isSwipeViewTarget(MotionEvent event) { final int[] swipeViewLocation = new int[2]; draggedView.getLocationOnScreen(swipeViewLocation); final int upperLimit = swipeViewLocation[1] + draggedView.getMeasuredHeight(); final int lowerLimit = swipeViewLocation[1]; final int y = (int) event.getRawY(); return (y > lowerLimit && y < upperLimit); } private boolean isIdleAfterMoving(int state) { return (currentDraggingState == ViewDragHelper.STATE_DRAGGING || currentDraggingState == ViewDragHelper.STATE_SETTLING) && state == ViewDragHelper.STATE_IDLE; } private boolean isDragIdle(int state) { return state == ViewDragHelper.STATE_IDLE; } private boolean isRightViewOpen() { return staticRightView != null && draggingViewLeft == -getRightViewWidth(); } private boolean isLeftViewOpen() { return staticLeftView != null && draggingViewLeft == getLeftViewWidth(); } private boolean isRightOpenCompletely() { return draggingViewLeft == -horizontalWidth; } private boolean isLeftOpenCompletely() { return draggingViewLeft == horizontalWidth; } private int getLeftViewWidth() { return staticLeftView.getWidth(); } private int getRightViewWidth() { return staticRightView.getWidth(); } private boolean isEmptyLeftView() { return staticLeftView == null; } private boolean isEmptyRightView() { return staticRightView == null; } private void parametersAdjustment() { if (isContinuousSwipe && currentDirection != HORIZONTAL) { isFreeDragAfterOpen = true; } if (currentDirection == HORIZONTAL) { rightDragViewPadding = 0; leftDragViewPadding = 0; } } private void moveTo(int x) { dragHelper.smoothSlideViewTo(draggedView, x, draggedView.getTop()); ViewCompat.postInvalidateOnAnimation(this); } public interface SwipeActionsListener { void onOpen(int direction, boolean isContinuous); void onClose(); } } <file_sep>include ':swipelayout', ':example' <file_sep>package com.zerobranch.example.right; import android.content.Context; import androidx.annotation.NonNull; import androidx.recyclerview.widget.RecyclerView; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ImageView; import android.widget.TextView; import android.widget.Toast; import com.zerobranch.example.R; import com.zerobranch.layout.SwipeLayout; import java.util.List; import static androidx.recyclerview.widget.RecyclerView.NO_POSITION; public class RightAdapter extends RecyclerView.Adapter<RightAdapter.ItemHolder> { private List<String> items; RightAdapter(List<String> items) { this.items = items; } @NonNull @Override public ItemHolder onCreateViewHolder(@NonNull ViewGroup viewGroup, int viewType) { switch (viewType) { case 0: return new ItemHolder(LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.right_layout_item_0, viewGroup, false)); case 1: return new ItemHolder(LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.right_layout_item_1, viewGroup, false)); case 2: return new ItemHolder(LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.right_layout_item_2, viewGroup, false)); case 3: return new ItemHolder(LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.right_layout_item_3, viewGroup, false)); case 4: return new ItemHolder(LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.right_layout_item_4, viewGroup, false)); case 5: return new ItemHolder(LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.right_layout_item_5, viewGroup, false)); case 6: return new ItemHolder(LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.right_layout_item_6, viewGroup, false)); default: return new ItemHolder(LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.right_layout_item_7, viewGroup, false)); } } @Override public void onBindViewHolder(@NonNull ItemHolder itemHolder, int position) { itemHolder.dragItem.setText(items.get(position)); } @Override public int getItemViewType(int position) { return position; } @Override public int getItemCount() { return items.size(); } private void remove(Context context, int position) { Toast.makeText(context, "removed item " + position, Toast.LENGTH_SHORT).show(); } class ItemHolder extends RecyclerView.ViewHolder { TextView dragItem; ImageView leftView; TextView rightTextView; SwipeLayout swipeLayout; ItemHolder(@NonNull final View itemView) { super(itemView); dragItem = itemView.findViewById(R.id.drag_item); swipeLayout = itemView.findViewById(R.id.swipe_layout); leftView = itemView.findViewById(R.id.left_view); rightTextView = itemView.findViewById(R.id.left_text_view); if (leftView != null) { leftView.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { if (getAdapterPosition() != NO_POSITION) { remove(itemView.getContext(), getAdapterPosition()); } } }); } if (rightTextView != null) { rightTextView.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { if (getAdapterPosition() != NO_POSITION) { remove(itemView.getContext(), getAdapterPosition()); } } }); } swipeLayout.setOnActionsListener(new SwipeLayout.SwipeActionsListener() { @Override public void onOpen(int direction, boolean isContinuous) { if (direction == SwipeLayout.RIGHT && isContinuous) { if (getAdapterPosition() != NO_POSITION) { remove(itemView.getContext(), getAdapterPosition()); } } } @Override public void onClose() { } }); } } } <file_sep># Change Log ## Version 1.3.0 *(2019-11-28)* Migrate to zerobranch ## Version 1.1.1 *(2019-09-27)* Migrate to Android X ## Version 1.0.11 *(2019-09-27)* Added ability to intercept touch ## Version 1.0.10 *(2019-05-10)* Added ability to disable swipe. ## Version 1.0.9 *(2019-02-26)* The root package has been renamed. ## Version 1.0.8 *(2018-10-16)* Added commands to perform a swipe without animation. ## Version 1.0.7 *(2018-10-01)* Initial release
9b4af162f90cf4f32c2b976d1aa4d2b8cefc2d6f
[ "Markdown", "Java", "Gradle" ]
8
Java
zerobranch/SwipeLayout
8e09e7fe614e74887d4f7388538b6d40bb9bc297
b5170c336664678062993c923784269661f27784
refs/heads/master
<repo_name>ugurcankilicaslan/gittigidiyorproje<file_sep>/src/test/java/MainTest.java import org.junit.Test; public class MainTest extends BaseTest { @Test public void testAndCheck() throws InterruptedException { titleControl(); loginSite(); searchComp(); secondPage(); randomPrdct(); detailPrice(); addCart(); goToCart(); dropDownValue(); deleteCart(); } } <file_sep>/src/test/java/Constants/ConstantsVar.java package Constants; public class ConstantsVar { public static final String URL = "https://www.gittigidiyor.com/"; public static final String SEARCH = "input[name='k']"; public static final String USERNAME= "input[name='kullanici']"; public static final String PASSWORDS= "<PASSWORD>"; public static final String LOGİN="input[id='gg-login-enter']"; public static final String BEFORELOGİN="div[data-cy='header-user-menu']"; public static final String BEFORELOGİN1="a[data-cy='header-login-button']"; public static final String LOGİNCHECK = "/html/body/div[1]/header/div[3]/div/div/div/div[3]/div/div[1]/div"; public static final String SEARCHBUTTON="//*[@id=\"main-header\"]/div[3]/div/div/div/div[2]/form/div/div[2]/button"; public static final String SECONDPAGE="li[class='next-link']"; public static final String SECPAGECHE="https://www.gittigidiyor.com/arama/?k=Bilgisayar&sf=2"; public static final String ADDTOCART="button[id='add-to-basket']"; public static final String GOTOCART="cart"; public static final String DROPDOWNLİST="/html/body/div[1]/div[2]/div/div[1]/form/div/div[2]/div[2]/div[1]/div[2]/div[6]/div[2]/div[2]/div[4]/div/div[2]/select"; public static final String DELETECART="/html/body/div[1]/div[2]/div/div[1]/form/div/div[2]/div[2]/div[1]/div[2]/div[6]/div[2]/div[2]/div[3]/div/div[2]/div/a[1]/i"; public static final String URUNBULUNMAMAKTADIR="//div//h2[text()='Sepetinizde ürün bulunmamaktadır.']"; }
cb069b4a4db74da951649a5a8a723ed9e30e4587
[ "Java" ]
2
Java
ugurcankilicaslan/gittigidiyorproje
ac4524384b6cb6d94a706cc5c1eb90ccde0e0f92
bae3a348886ea87d24e45301ab747eb274e4acc1
refs/heads/master
<file_sep># NAME `passtyper` - a simple [dmenu](http://tools.suckless.org/dmenu/)-based client for [pass](https://www.passwordstore.org/) ## SYNOPSIS ``` passtyper [ OPTIONS ] [ -- dmenu arguments ] ``` ## DESCRIPTION `passtyper` is a client for [pass](https://www.passwordstore.org/) I wrote in a few hours because none of the existing clients suited my usecase exactly. It uses `xdotool` for autotyping password, username, or the combination of username and password separated by a configurable character. This character defaults to tab for compability with most web login forms, but can also be set to `\n`, `:`, or other printable characters for compatibility with other forms of entry. Alternatively, `passtyper` supports writing one or both of the fields to the clipboard instead, using the same mechanism pass uses, which respects `PASSWORD_STORE_CLIP_TIME` and defaults to 45 seconds. The main usecase for this is a form that does not adhere to the expected sequence of `<username>` `<tab>` `<password>`, in which case the safest option is to autotype the password and paste the username from clipboard. `passtyper` uses a few mechanisms to automatically retrieve the username from a pass entry: 1. Search the metadata for a line beginning with "username: " (not case sensitive). If found, return the remainder of the line as username. 2. Use the first line of the metadata, unless that line contains a ` ` or `:`. 3. Use the environment variable `FALLBACKUSER` if set to a non-empty string. 4. Use the basename of the pass entry with a configurable suffix set in `FALLBACKUSERSUFFIX`, which is useful if you are in the habit of using <websitename>@<yourdomain>.example. Password selection is done through `dmenu`. If no options are given, `passtyper` defaults to autotyping the password. ## OPTIONS Option parsing is done using `getopt`. Long options may be abbreviated as long as the abbreviation is unambiguous. Option arguments must either be their starting character or the entire argument (type may also be provided as t, clipboard as c, none as n). `-p[t|c|n]`, `--password[=type|clipboard|none]`: Control the behaviour of password output: type it, copy it to clipboard, or suppress the password. Defaults to `type`. `-u[t|c|n]`, `--username[=type|clipboard|none]`: Control the behaviour of username output: type it, copy it to clipboard, or suppress the username. By default `passtyper` does not output usernames. If the argument to --username is omitted, it uses `type`. `-s'CHAR'`, `--separator='CHAR'`: Use a different separator for the concatenation of username and password. Newlines (`\n`), tabs (`\t`) and all printable characters are supported. Defaults to a tab (`\t`). ## CONFIGURATION The file `${XDG_CONFIG_HOME}/passtyper/config` (default `$HOME/.config/passtyper/config`) is sourced automatically if present. Set `FALLBACKUSER` or `FALLBACKUSERSUFFIX` here. ## DEPENDENCIES [pass](https://www.passwordstore.org/) (duh) [dmenu](http://tools.suckless.org/dmenu/) (or something providing dmenu, such as [rofi](https://github.com/DaveDavenport/rofi) (untested)) [xdotool](http://www.semicomplete.com/projects/xdotool/) for autotype-support. [xclip](https://github.com/astrand/xclip) for clipboard-support. ## AUTHOR & COPYRIGHT & LEGAL Most of passtyper was (badly) written in a few hours by <NAME> and licensed under [CC0](https://creativecommons.org/publicdomain/zero/1.0/). The [clip()](https://xn--4db.cc/Jco0gZKc/bash) function was written by <NAME> of zx2c4.com and is licensed under [CC0](https://creativecommons.org/publicdomain/zero/1.0/). Use of passtyper is at your own risk, and the author will not accept liability for it dumping your password into IRC channels, shady websites, command line history, process listings, or other screw-ups. Read the code, it's just string juggling. <file_sep>#!/usr/bin/env bash shopt -s nullglob globstar config="${XDG_CONFIG_HOME:-$HOME/.config}/passtyper/config" # Config file containing env variables FALLBACKUSER and/or FALLBACKUSERSUFFIX. [[ -f "${config}" ]] && . "${config}" clip_time="${PASSWORD_STORE_CLIP_TIME:-45}" # Provided by zx2c4 under the MIT license, from the pass core code. Need to do # this because we need to send more than just the password to the clipboard. clip() { # This base64 business is because bash cannot store binary data in a shell # variable. Specifically, it cannot store nulls nor (non-trivally) store # trailing new lines. local sleep_argv0="password store sleep on display $DISPLAY" pkill -f "^$sleep_argv0" 2>/dev/null && sleep 0.5 local before="$(xclip -o -selection "$X_SELECTION" 2>/dev/null | $BASE64)" echo -n "$1" | xclip -selection "$X_SELECTION" || die "Error: Could not copy data to the clipboard" ( ( exec -a "$sleep_argv0" bash <<<"trap 'kill %1' TERM; sleep '$clip_time' & wait" ) local now="$(xclip -o -selection "$X_SELECTION" | $BASE64)" [[ $now != $(echo -n "$1" | $BASE64) ]] && before="$now" # It might be nice to programatically check to see if klipper exists, # as well as checking for other common clipboard managers. But for now, # this works fine -- if qdbus isn't there or if klipper isn't running, # this essentially becomes a no-op. # # Clipboard managers frequently write their history out in plaintext, # so we axe it here: qdbus org.kde.klipper /klipper org.kde.klipper.klipper.clearClipboardHistory &>/dev/null echo "$before" | $BASE64 -d | xclip -selection "$X_SELECTION" ) >/dev/null 2>&1 & disown echo "Copied $2 to clipboard. Will clear in $clip_time seconds." } # End shameless copying here. givepassword=1 giveusername=0 separator="$'\t'" opts="$(getopt --name 'passtyper' --options 'p::s:u::' --longoptions 'password::,separator:,username::' -- "$@")" if [ $? -ne 0 ] then echo 'Terminating...' >&2 exit 1 fi eval set -- "${opts}" unset opts while true do case "$1" in '-p'|'--password') case "$2" in ''|'t'|'type') givepassword=1 ;; 'c'|'clipboard') givepassword=2 ;; 'n'|'none') givepassword=0 ;; *) echo "Invalid option for password: '$2'. Valid options are: (t)ype,(c)lipboard,(n)one. Defaults to type." >&2 exit 1 ;; esac shift 2 continue ;; '-s'|'--separator') printf -v separator "$2" shift 2 continue ;; '-u'|'--username') case "$2" in ''|'t'|'type') giveusername=1 ;; 'c'|'clipboard') giveusername=2 ;; 'n'|'none') giveusername=0 ;; *) echo "Invalid option for username: '$2'. Valid options are: (t)ype,(c)lipboard,(n)one. Defaults to type if present, none otherwise." >&2 exit 1 ;; esac shift 2 continue ;; '--') shift break ;; *) echo 'Internal error!' >&2 exit 1 ;; esac done prefix="${PASSWORD_STORE_DIR-~/.password-store}" password_files=( "${prefix}"/**/*.gpg ) password_files=( "${password_files[@]#"${prefix}"/}" ) password_files=( "${password_files[@]%.gpg}" ) dmenu_prompt="passtyper:" if [[ "${giveusername}" -eq 1 ]] then dmenu_prompt="${dmenu_prompt} user typed" elif [[ "${giveusername}" -eq 2 ]] then dmenu_prompt="${dmenu_prompt} user copied" fi if [[ "${giveusername}" -ne 0 ]] && [[ "${givepassword}" -ne 0 ]] then dmenu_prompt="${dmenu_prompt}," fi if [[ "${givepassword}" -eq 1 ]] then dmenu_prompt="${dmenu_prompt} password typed" elif [[ "${givepassword}" -eq 2 ]] then dmenu_prompt="${dmenu_prompt} password copied" fi dmenu_prompt="${dmenu_prompt}>" echo "$@" password_file="$(printf '%s\n' "${password_files[@]}" | dmenu -i -p "${dmenu_prompt}" "$@")" [[ -n "${password_file}" ]] || exit # IFF password=2 (clipboard) & username=0 (no username), revert to pass show -c. if [[ "${givepassword}" -eq 2 ]] && [[ "${giveusername}" -eq 0 ]] then pass show -c "${password_file}" 2> /dev/null exit 0 fi typestring="" clipstring="" shopt -s lastpipe pass show "${password_file}" 2> /dev/null | readarray -t passdata shopt -u lastpipe password="${pass<PASSWORD>[0]}" passdata=("${passdata[@]:1}") [[ -n "${password}" ]] || exit # Retrieve username. We don't bother calling out to pass show -c because # username-fields are often prefixed with "username:" if [[ "${giveusername}" -ne 0 ]] then if [[ -n "${passdata[@]}" ]] then username="$( printf '%s\n' "${passdata[@]}" | sed -ne '/^username: /I s/^username: //I p' )" # Fallback to line 2 of the file (index 0 in the array now) # if it does not contain spaces and :. if [[ -z "${username}" ]] then username="${passdata[0]}" if [[ "${username}" == *":"* ]] || [[ "${username}" == *" "* ]] then username="" fi fi fi if [[ -z "${username}" ]] then if [[ -z "${FALLBACKUSER}" ]] then username="${password_file##*/}${FALLBACKUSERSUFFIX}" else username="${FALLBACKUSER}" fi fi if [[ "${giveusername}" -eq 1 ]] then typestring="${username}" elif [[ "${giveusername}" -eq 2 ]] then clipstring="${username}" fi fi if [[ "${givepassword}" -eq 1 ]] then if [[ -n "${typestring}" ]] then typestring="${typestring}${separator}${password}" else typestring="${password}" fi elif [[ "${givepassword}" -eq 2 ]] then if [[ -n "${clipstring}" ]] then clipstring="${clipstring}${separator}${password}" else clipstring="${password}" fi fi if [[ -n "${typestring}" ]] then printf "%s" "${typestring}" | xdotool type --clearmodifiers --file - fi # Clip even if empty clipstring if clip was requested, because the user doesn't expect # the clipboard to be filled with old data just because we couldn't figure out what to # put in there. Empty is better than wrong. if [[ "${givepassword}" -eq 2 ]] || [[ "${giveusername}" -eq 2 ]] then clip "${clipstring}" "${password_file}" fi
e2113c1bfcaf0320bff67e236b3d107e128afd65
[ "Markdown", "Shell" ]
2
Markdown
MacGyverNL/passtyper
6bdf51b3ad1824415c15193518b1ec1bfb2316ca
bf2e473fc307c9e1c37ca178bd4de112f186b70a
refs/heads/master
<repo_name>Lucas-Ribeiro7/Curso-JavaScript<file_sep>/Arquivos do Curso/for.js var nome = "Lucas"; for(var i=0;i<=10;i++){ console.log(nome); }<file_sep>/Arquivos do Curso/array.js let num = [3,52,6,54]; console.log(num); console.log(`O nosso vetor é ${num}`); console.log("O valor da posição 2 é " + (num[1])); num.push(8); console.log(`O vetor atualizado é ${num}`); console.log("O vetor em ordem " + num.sort()); console.log(num); var passo = num.indexOf(6); console.log(`O valor 6 está na posição ${passo}`); <file_sep>/Arquivos do Curso/funcao_soma.js function soma(n1=0 , n2=0){ //O '=0' é para quando não for passado o parâmetro return (n1+n2); } let resul = soma(3,6); console.log(resul);<file_sep>/Arquivos do Curso/mostraVetor.js var num = [1,6,8,9,45,54,74]; for(let pos = 0 ; pos<num.length ; pos++){ console.log(`A posição ${pos} tem o valor ${num[pos]}`); } console.log("OU"); for(var posi in num){ console.log(`A posição ${posi} tem o valor ${num[posi]}`); }<file_sep>/Arquivos do Curso/teste.js function teste() { var text = window.document.getElementById('msg'); text.innerHTML = "São exatamente "; }<file_sep>/Arquivos do Curso/funcao.js function acao(n){ if(n%2 == 0){ return 'Par!'; }else{ return 'Impar!'; } } var resul = acao(4); console.log(resul);<file_sep>/Arquivos do Curso/object.js let amigo = {nome='Lucas', idade=19, sexo='M'}; console.log(amigo.nome);<file_sep>/Arquivos do Curso/while.js var c= 1; while (c <= 6){ console.log("Olá!"); c++; }<file_sep>/Arquivos do Curso/do_while.js var a = 1; do{ console.log("Work"); a++; }while(a <= 7);<file_sep>/Arquivos do Curso/condiçao_if.js var vel = 52 console.log("O seu carro está á " + vel + "Km/h") if(vel >= 60){ console.log("Você ultrapassou a velocidade... MULTADO!") }else{ console.log("Diriga com cuidado e coloque o sinto de segurança.") } <file_sep>/Arquivos do Curso/funcao_dentroDeUmaVariável.js var v = function (x){ return (x*2); } console.log(v(5));<file_sep>/README.md # Curso-JavaScript Todos os arquivos feitos no curso de JavaScript. Com todos os assuntos ministrado no curso.
649b8e42e7b21007bc503c519d24faf2fc75470f
[ "JavaScript", "Markdown" ]
12
JavaScript
Lucas-Ribeiro7/Curso-JavaScript
63d408c8a06d050bad57f928de2e215c7574b77d
1f8a580f0bdb3825612230cda6b3df2ad7cb80e4
refs/heads/master
<repo_name>maurxeugenio/athena<file_sep>/README.md # **ATHENA** ## DESCRIÇÃO Athena é uma pequena aplicação rest api que pode auxiliar na criação de aplicações para gerenciamento de consultórios. ## REQUERIMIENTOS - [python 3.6](https://www.python.org/) - [virtualenv](https://virtualenv.pypa.io/en/stable/) - [Django v2](https://www.djangoproject.com/) - [Django Rest Framework](http://www.django-rest-framework.org/) ## COMO USAR? - $ mkdir restapi && cd restapi - $ virtualenv --no-site-packages -p python3.6 env - $ source env/bin/activate - $ git clone https://github.com/maurxeugenio/athena.git - $ cd athena - $ pip install -r requirements.txt - $ ./manage.py runserver - Acessar localhost:8000/api/agendamentos [METHOD: GET] para acessar a lista de agendamentos - http://localhost:8000/api/agendamento [METHODS: GET, POST, DELETE] - [POST] http://localhost:8000/api/agendamento - Para criar um agendamento - [GET] http://localhost:8000/api/agendamento/1 - Para ver os detalhes de um agendamento, neste caso o parâmetro 1 é o <id> do agendamento (objeto). - [PUT] http://localhost:8000/api/agendamento/1 - Para ver os atualizar um agendamento, neste caso o parâmetro 1 é o <id> do agendamento (objeto). - [DELETE] http://localhost:8000/api/agendamento/2 - Para deletar um agendamento, 2 é o id do agendamento. ## DETALHES > O projeto é divido em dois app's django para facilitar a manutenção. - Core é destinado as regras de negócio, incluido os modelos dos objetos - Api é destinado a serialização dos dados e da entrega ou recebimento através dos endpoints ## ENDPOINTS > [POST] api/agendamento/criar/ Verifica se os dados inseridos são válidos, caso sejam é criado um novo agendamento retornando 202 neste caso e 400 caso seja inválido > [GET] api/agendamento/1 Seleciona o objeto através do ID se este existir retorna 200, caso não exista retorna 404 > [PUT] api/agendamento/1 Seleciona o objeto através do ID e recebe os dados via request se este existir e for válido novos dados, retorna 200, se os dados não forem válidos retorna 304, caso não exista retorna 404 > [DELETE] api/agendamento/1 Seleciona o objeto através do ID se este existir é deletado e retorna 204, caso não exista retorna 404 > [GET] api/agendamentos/ Seleciona todos os objetos existentes em Agendamentos e sempre retorna 200 ## TESTES Para realizar os testes basta > $ ./manage.py test <file_sep>/core/migrations/0002_auto_20171208_2124.py # Generated by Django 2.0 on 2017-12-08 23:24 from django.db import migrations class Migration(migrations.Migration): dependencies = [ ('core', '0001_initial'), ] operations = [ migrations.RenameField( model_name='scheduling', old_name='data', new_name='date', ), ] <file_sep>/api/tests.py from django.test import TestCase from django.urls import reverse from rest_framework.test import APIClient from rest_framework import status from core.models import Scheduling class ViewTestCase(TestCase): def setUp(self): """ Creates the test client and its variables """ self.client = APIClient() self.scheduling_data = { 'patient': 'Odin', 'procedure': 'Avalição do globo ocular', 'date': '0803-12-25', 'start_time': '17:50:00', 'end_time': "18:50:00", } self.scheduling_data_invalid = { 'procedure': 'Avalição do globo ocular', 'date': '0803-12-25', 'end_time': "18:50:00", } self.response = self.client.post(reverse('create'), self.scheduling_data, format='json') self.response_invalid = self.client.post(reverse('create'), self.scheduling_data_invalid, format='json') def test_api_can_create_a_scheduling(self): """ Verify that you were able to create the element """ self.assertEqual(self.response.status_code, status.HTTP_201_CREATED) def test_api_can_create_a_scheduling_invalid(self): """ Verify that you were able to create the element with invalid data """ self.assertEqual(self.response_invalid.status_code, status.HTTP_400_BAD_REQUEST) def test_api_can_get_a_scheduling(self): """ Make sure you can pick up an element """ scheduling = Scheduling.objects.get(patient='Odin') response = self.client.get(reverse('details', kwargs={'pk': scheduling.pk}), format='json') self.assertEqual(response.status_code, status.HTTP_200_OK) def test_api_can_delete_scheduling(self): """ Attempts to delete an element """ scheduling = Scheduling.objects.get(patient='Odin') response = self.client.delete(reverse('details', kwargs={'pk': scheduling.pk}), format='json', follow=True) self.assertEquals(response.status_code, status.HTTP_204_NO_CONTENT) def test_api_can_get_all_scheduling(self): """Try to get all the elements of schedules""" response = self.client.get(reverse('list'), format='json') self.assertEqual(response.status_code, status.HTTP_200_OK) self.assertTrue(response, not None) def test_api_can_put_scheduling(self): """ Try update a element of schedules """ scheduling = Scheduling.objects.get(patient='Odin') self.scheduling_data['patient'] = 'Thor' response = self.client.put(reverse('details', kwargs={'pk': scheduling.pk}), data=self.scheduling_data, format='json', follow=True) self.assertEqual(response.status_code, status.HTTP_202_ACCEPTED) def test_api_can_put_scheduling_invalid(self): """ Try update a element of schedules whit invalid data """ scheuling = Scheduling.objects.get(patient='Odin') scheuling.patient = 'Thor' response = self.client.put(reverse('details', kwargs={'pk': scheuling.pk}), data=self.scheduling_data_invalid, format='json', follow=True) self.assertEqual(response.status_code, status.HTTP_304_NOT_MODIFIED)<file_sep>/core/models.py from django.db import models from django.utils import timezone from django.utils.translation import ugettext_lazy as _ class Scheduling(models.Model): class Meta: verbose_name = _('agendamento') verbose_name_plural = _('agendamentos') patient = models.CharField(_('paciente'), max_length=20) procedure = models.CharField(_('procedimento'), max_length=30) date = models.DateField(_('dia da consulta')) start_time = models.TimeField(_('inicio')) end_time = models.TimeField(_('fim')) created_at = models.DateTimeField(_('criado em'), default=timezone.now) #def __str__(self): # return f'Das {self.start_time} até {self.end_time} realização de {self.procedure}'.capitalize() <file_sep>/api/views.py from django.shortcuts import get_object_or_404 from core.models import Scheduling from rest_framework import status from rest_framework.views import APIView from rest_framework.response import Response from api.serializer import SchedulingSerializer class SchedulingListView(APIView): serializer_class = SchedulingSerializer def get(self, request): serializer = self.serializer_class(Scheduling.objects.all(), many=True) return Response(serializer.data, status=status.HTTP_200_OK) class SchedulingView(APIView): serializer_class = SchedulingSerializer def get(self, request, pk): scheduling = get_object_or_404(Scheduling, pk=pk) serializer = self.serializer_class(scheduling, many=False) return Response(serializer.data, status=status.HTTP_200_OK) def put(self, request, pk): scheduling = get_object_or_404(Scheduling, pk=pk) serializer = self.serializer_class(instance=scheduling, data=request.data) if serializer.is_valid(): serializer.save() return Response(serializer.data, status=status.HTTP_202_ACCEPTED) else: return Response(status=status.HTTP_304_NOT_MODIFIED) def delete(self, request, pk): scheduling = get_object_or_404(Scheduling, pk=pk) scheduling.delete() return Response(status=status.HTTP_204_NO_CONTENT) class SchedulingCreate(APIView): serializer_class = SchedulingSerializer def post(self, request): serializer = self.serializer_class(data=request.data) if serializer.is_valid(): serializer.save() return Response(serializer.data, status=status.HTTP_201_CREATED) else: return Response(status=status.HTTP_400_BAD_REQUEST)<file_sep>/api/urls.py from django.urls import path from .views import SchedulingView, SchedulingListView, SchedulingCreate urlpatterns = [ path('agendamento/criar/', SchedulingCreate.as_view(), name='create'), path('agendamento/<int:pk>/', SchedulingView.as_view(), name='details'), path('agendamentos/', SchedulingListView.as_view(), name='list'), ] <file_sep>/core/migrations/0001_initial.py # Generated by Django 2.0 on 2017-12-08 23:19 from django.db import migrations, models import django.utils.timezone class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.CreateModel( name='Scheduling', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('data', models.DateField()), ('start_time', models.CharField(max_length=20)), ('end_time', models.CharField(max_length=20)), ('patient', models.CharField(max_length=20)), ('procedure', models.CharField(max_length=30)), ('created_at', models.DateTimeField(default=django.utils.timezone.now)), ], ), ] <file_sep>/core/migrations/0004_auto_20171212_1640.py # Generated by Django 2.0 on 2017-12-12 18:40 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('core', '0003_auto_20171212_1416'), ] operations = [ migrations.AlterField( model_name='scheduling', name='end_time', field=models.TimeField(verbose_name='fim'), ), migrations.AlterField( model_name='scheduling', name='start_time', field=models.TimeField(verbose_name='inicio'), ), ] <file_sep>/core/migrations/0003_auto_20171212_1416.py # Generated by Django 2.0 on 2017-12-12 16:16 from django.db import migrations, models import django.utils.timezone class Migration(migrations.Migration): dependencies = [ ('core', '0002_auto_20171208_2124'), ] operations = [ migrations.AlterModelOptions( name='scheduling', options={'verbose_name': 'agendamento', 'verbose_name_plural': 'agendamentos'}, ), migrations.AlterField( model_name='scheduling', name='created_at', field=models.DateTimeField(default=django.utils.timezone.now, verbose_name='criado em'), ), migrations.AlterField( model_name='scheduling', name='date', field=models.DateField(verbose_name='dia da consulta'), ), migrations.AlterField( model_name='scheduling', name='end_time', field=models.TimeField(max_length=20, verbose_name='fim'), ), migrations.AlterField( model_name='scheduling', name='patient', field=models.CharField(max_length=20, verbose_name='paciente'), ), migrations.AlterField( model_name='scheduling', name='procedure', field=models.CharField(max_length=30, verbose_name='procedimento'), ), migrations.AlterField( model_name='scheduling', name='start_time', field=models.TimeField(max_length=20, verbose_name='inicio'), ), ] <file_sep>/requirements.txt Django==2.0.8 djangorestframework==3.7.3 pytz==2017.3 <file_sep>/core/views.py from django.views.generic import View from django.shortcuts import render class HomeView (View): template_name = 'core/index.html' def get(self, request): return render(request, self.template_name, {}) <file_sep>/api/serializer.py from core.models import Scheduling from rest_framework import serializers class SchedulingSerializer(serializers.ModelSerializer): class Meta: model = Scheduling depth = 1 fields = ['pk', 'patient', 'procedure', 'date', 'start_time', 'end_time']
3d7a1cded5b07d557e71d335969465772d07bf50
[ "Markdown", "Python", "Text" ]
12
Markdown
maurxeugenio/athena
cfde704dd495dbfd5678fa913172e4bdb759e5c0
6d3bd3598857fef5bf618a0b0bfb7aeab52e633e
refs/heads/master
<file_sep>#### Use with ASP.NET Core Web API Basic ASP.NET Core JSON API application that performs CRUD operations on blog posts. Create the folder project ```cmd C:\ BlogPostApi ``` Initialize project ```cmd dotnet new webapi ``` Add the MySql connecto package ```cmd dotnet add package MySqlConnector ``` Verify the build ``` dotnet run ``` Update Configuration Files appsettings.json holds .NET Core logging levels and the ADO.NET Connection String: ```json { "Logging": { "LogLevel": { "Default": "Information", "Microsoft": "Warning", "Microsoft.Hosting.Lifetime": "Information" } }, "ConnectionStrings": { "DefaultConnection": "server=127.0.0.1;user id=root;password=<PASSWORD>;port=3306;database=blog;" } } ``` ##### .NET Core Startup Startup.cs contains runtime configuration and framework services. Add this call to ConfigureServices to make an instance of AppDb available to controller methods. ```c# services.AddTransient<AppDb>(_ => new AppDb(Configuration["ConnectionStrings:DefaultConnection"])); ``` Now our app is configured and we can focus on writing the core functionality! ### Adding Swagger ``` dotnet add package Swashbuckle --version 5.6.0 ``` Add configuration to work with *OpenAPI* ```c# using Microsoft.OpenApi.Models; ``` Add configuration in *Startup.cs* ```c# public void ConfigureServices(IServiceCollection services) { services.AddControllers(); AddSwagger(services); } private void AddSwagger(IServiceCollection services) { services.AddSwaggerGen(options => { var groupName = "v1"; options.SwaggerDoc(groupName, new OpenApiInfo { Title = $"Foo {groupName}", Version = groupName, Description = "Foo API", Contact = new OpenApiContact { Name = "<NAME>", Email = string.Empty, Url = new Uri("https://foo.com/"), } }); }); } ``` Also `configure` method should be updated ```c# public void Configure(IApplicationBuilder app, IWebHostEnvironment env) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } app.UseHttpsRedirection(); app.UseSwagger(); app.UseSwaggerUI(c => { c.SwaggerEndpoint("/swagger/v1/swagger.json", "Foo API V1"); }); app.UseRouting(); app.UseAuthorization(); app.UseEndpoints(endpoints => { endpoints.MapControllers(); }); } ``` <file_sep>using Microsoft.AspNetCore; using Microsoft.AspNetCore.Hosting; namespace BlogPostApi { public static class Program { public static void Main(string[] args) { if (args.Length == 0) { BuildWebHost(args).Run(); } } public static IWebHost BuildWebHost(string[] args) { return WebHost.CreateDefaultBuilder(args) .UseUrls("http://*:5000") .UseStartup<Startup>() .Build(); } } }
9ac84fe10da58ab231f30683fa2dad67f8f08dcd
[ "Markdown", "C#" ]
2
Markdown
Josiastech/rest-asp-dot-net
98c8fbecebb9c02155136c74016a45f51ecfff5f
1f691691d624c763a42a00fc3e49f1420ef1650a
refs/heads/master
<repo_name>ExtGmrJasonZ/DBTA---Final-Project---Eliz-Jason-Salya<file_sep>/dbta/src/sample/Transaction.java package sample; import javafx.beans.property.*; public class Transaction { private final IntegerProperty transaction_id; private final IntegerProperty staff_id; private final StringProperty dine_type; private final IntegerProperty table_no; private final IntegerProperty guest_qty; private final StringProperty pay_method; public Transaction(Integer transaction_id, Integer staff_id, String dine_type, Integer table_no, Integer guest_qty, String payment) { this.transaction_id = new SimpleIntegerProperty(transaction_id); this.staff_id = new SimpleIntegerProperty(staff_id); this.dine_type = new SimpleStringProperty(dine_type); this.table_no = new SimpleIntegerProperty(table_no); this.guest_qty = new SimpleIntegerProperty(guest_qty); this.pay_method = new SimpleStringProperty(payment); } public int getTransaction_id() { return transaction_id.get(); } public void setTransaction_id(Integer value) { transaction_id.set(value); } public int getStaff_id() { return staff_id.get(); } public void setStaff_id(Integer value) { staff_id.set(value); } public String getDine_type() { return dine_type.get(); } public void setDine_type(String value) { dine_type.set(value); } public int getTable_no() { return table_no.get(); } public void setTable_no(Integer value) { table_no.set(value); } public int getGuest_qty() { return guest_qty.get(); } public void setGuest_qty(Integer value) { guest_qty.set(value); } public String getPay_method() { return pay_method.get(); } public void setPay_method(String value) { pay_method.set(value); } }<file_sep>/dbta/src/sample/Connector.java package sample; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; /** * * @author elizabethchan */ public class Connector { public static Connection getConnection() { Connection conn = null; String port = "3306"; String dbName = "3_otw"; String username = "CHA7001"; String password = "<PASSWORD>"; try{ conn = DriverManager.getConnection("jdbc:mysql://dbta.1ez.xyz:" + port + "/" + dbName + "?serverTimezone=GMT", username, password); }catch(SQLException ex) { System.out.println(ex.getMessage()); } return conn; } }<file_sep>/dbta/src/sample/loginpagecontroller.java package sample; import javafx.collections.FXCollections; import javafx.collections.ObservableList; import javafx.fxml.FXML; import javafx.fxml.FXMLLoader; import javafx.fxml.Initializable; import javafx.scene.Node; import javafx.scene.Parent; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.scene.control.TableColumn; import javafx.scene.control.TableView; import javafx.scene.control.TextField; import javafx.scene.control.cell.PropertyValueFactory; import javafx.scene.text.Text; import javafx.stage.Stage; import java.awt.event.MouseEvent; import java.io.IOException; import java.net.URL; import java.sql.Connection; import java.sql.ResultSet; import java.sql.SQLException; import java.util.ResourceBundle; import javafx.scene.control.Alert; public class loginpagecontroller extends Connector implements Initializable { @FXML TextField username; @FXML TextField password; @FXML Button log; @Override public void initialize(URL url, ResourceBundle resourceBundle) { } public void loginButtonAction() throws IOException { if(username.getText().equals("admin") && password.getText().equals("<PASSWORD>")){ Parent root = FXMLLoader.load(getClass().getResource("/sample/Menu.fxml")); Stage stage = (Stage) log.getScene().getWindow(); stage.setScene(new Scene(root)); } else{ username.setText(""); password.setText(""); new Alert(Alert.AlertType.ERROR, "Wrong Username or Password").showAndWait(); } } } <file_sep>/README.md # DBTA---Final-Project---Eliz-Jason-Salya<file_sep>/dbta/src/sample/Staff.java package sample; import javafx.beans.property.IntegerProperty; import javafx.beans.property.SimpleIntegerProperty; import javafx.beans.property.SimpleStringProperty; import javafx.beans.property.StringProperty; import javafx.fxml.FXML; public class Staff { @FXML private final IntegerProperty staff_id; private final StringProperty staff_name; public Staff(Integer staff_id, String staffName) { this.staff_id = new SimpleIntegerProperty(staff_id); this.staff_name = new SimpleStringProperty(staffName); } public int getStaff_id() { return staff_id.get(); } public void setStaff_id(Integer value) { staff_id.set(value); } public String getStaff_name() { return staff_name.get(); } public void setStaff_name(String value) { staff_name.set(value); } } <file_sep>/dbta/src/sample/MenuController.java package sample; import sample.Connector; import javafx.fxml.FXML; import javafx.fxml.FXMLLoader; import javafx.scene.Node; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.scene.input.MouseEvent; import javafx.stage.Stage; import java.io.IOException; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; public class MenuController { @FXML private Button btnTransaction; @FXML private Button btnTransDetail; @FXML private Button btnProduct; @FXML private Button btnStaff; @FXML private Button btnExit; private Connector db; private Connection conn1 = null; private PreparedStatement preparedStatement = null; private ResultSet resultSet = null; @FXML public void transactionButtonAction(MouseEvent event) throws IOException { if (event.getSource() == btnTransaction) { try { Node node = (Node) event.getSource(); Stage stage = (Stage) node.getScene().getWindow(); //stage.setMaximized(true); stage.close(); Scene scene = new Scene(FXMLLoader.load(getClass().getResource("/sample/Transaction.fxml"))); stage.setScene(scene); stage.show(); } catch (IOException ex) { System.err.println(ex.getMessage()); System.out.println("WTFFFF"); } } } @FXML public void transDetailButtonAction(MouseEvent event) throws IOException { if (event.getSource() == btnTransDetail) { try { Node node = (Node) event.getSource(); Stage stage = (Stage) node.getScene().getWindow(); //stage.setMaximized(true); stage.close(); Scene scene = new Scene(FXMLLoader.load(getClass().getResource("/sample/TransactionDetail.fxml"))); stage.setScene(scene); stage.show(); } catch (IOException ex) { System.err.println(ex.getMessage()); System.out.println("WTFFFF"); } } } @FXML public void productButtonAction(MouseEvent event) throws IOException { if (event.getSource() == btnProduct) { try { //add you loading or delays - ;-) Node node = (Node) event.getSource(); Stage stage = (Stage) node.getScene().getWindow(); //stage.setMaximized(true); stage.close(); Scene scene = new Scene(FXMLLoader.load(getClass().getResource("/sample/Product.fxml"))); stage.setScene(scene); stage.show(); } catch (IOException ex) { System.err.println(ex.getMessage()); System.out.println("WTFFFF"); } } } @FXML public void staffButtonAction(MouseEvent event) throws IOException { if (event.getSource() == btnStaff) { try { //add you loading or delays - ;-) Node node = (Node) event.getSource(); Stage stage = (Stage) node.getScene().getWindow(); //stage.setMaximized(true); stage.close(); Scene scene = new Scene(FXMLLoader.load(getClass().getResource("/sample/Staff.fxml"))); stage.setScene(scene); stage.show(); } catch (IOException ex) { System.err.println(ex.getMessage()); System.out.println("WTFFFF"); } } } @FXML public void exitButtonAction(MouseEvent event) throws IOException { if (event.getSource() == btnExit) { try { //add you loading or delays - ;-) Node node = (Node) event.getSource(); Stage stage = (Stage) node.getScene().getWindow(); //stage.setMaximized(true); stage.close(); Scene scene = new Scene(FXMLLoader.load(getClass().getResource("/sample/loginpage.fxml"))); stage.setScene(scene); stage.show(); } catch (IOException ex) { System.err.println(ex.getMessage()); System.out.println("WTFFFF"); } } } }
a76922f060e876d6c05199af57c3cb78dbcecc3d
[ "Markdown", "Java" ]
6
Java
ExtGmrJasonZ/DBTA---Final-Project---Eliz-Jason-Salya
82e783f2015c90f981977e40dbe4793598f73ac3
2c8199e559beb539db5879f292f32ed3cdb8b915
refs/heads/master
<file_sep>class Startup attr_reader :name, :founder, :domain @@all = [] def initialize(name, founder, domain) @name = name @founder = founder @domain = domain @@all << self end def pivot(domain, name) @domain = domain @name = name end def self.all @@all end def self.find_by_founder(name) self.all.find do |startup| startup.founder == name end end def self.domains self.all.map do |startup| startup.domain end end def sign_contract(v_capitalist, type, amount) FundingRound.new(self, v_capitalist, type, amount) end def funding_rounds FundingRound.all.select{|funding_round| funding_round.startup == self} end def num_funding_rounds self.funding_rounds.count end def total_funds self.funding_rounds.reduce(0) do |sum, funding_round| sum += funding_round.investment end end def investors funding_rounds.map do |f_round| f_round.venture_capitalist end.uniq end def big_investors investors = [] self.funding_rounds.each do |f_round| if VentureCapitalist.tres_commas_club.include?(f_round.venture_capitalist) investors << f_round.venture_capitalist end end investors.uniq end end <file_sep>class FundingRound attr_reader :startup, :venture_capitalist, :type, :investment @@all = [] def initialize(startup, venture_capitalist, type, investment) @startup = startup @venture_capitalist = venture_capitalist @type = type self.investment_check(investment) @@all << self end def investment_check(investment_amnt) if investment_amnt < 0 || investment_amnt.class != Float raise " =============================================================== Your investment needs to be a decimal number greater than 0. =============================================================== " else @investment = investment_amnt end end def self.all @@all end end<file_sep>class VentureCapitalist attr_reader :name, :total_worth @@all = [] def initialize(name, total_worth) @name = name @total_worth = total_worth @@all << self end def self.all @@all end def self.tres_commas_club self.all.select do |venture_capitalist| venture_capitalist.total_worth > 1000000000 end end def offer_contract(startup, type, amount) FundingRound.new(startup, self, type, amount) end def funding_rounds FundingRound.all.select do |f_round| f_round.venture_capitalist == self end end def portfolio funding_rounds.map do |f_round| f_round.startup end.uniq end def biggest_investment largest_investment = funding_rounds[0] funding_rounds.each do |f_round| if f_round.investment > largest_investment.investment largest_investment = f_round end end largest_investment end def invested(domain) funding_rounds.reduce(0) do |sum, f_round| if f_round.startup.domain == domain sum += f_round.investment end sum end end end
8cf981b35aa9ef07bf3a715929380cb320e560d7
[ "Ruby" ]
3
Ruby
hkofkin/ruby-oo-practice-relationships-silicon-valley-exercise-nyc04-seng-ft-041920
d76ed9f50dabda25da9badcb87099894e980c239
7efa9467dbefe33c87df8d8f31ce1e93f316eb2f
refs/heads/master
<file_sep>main features 1. npm build(compile) start(develop) scripts 2. dependence's(npm init -y) webpack: npm i webpack webpack-cli webpack-dev-server --save-dev babel+.babelrc: npm i @babel/core babel-loader @babel/preset-env @babel/preset-react --D + proposal classes: npm install --save-dev @babel/plugin-proposal-class-properties install react: npm i react react-dom --save-dev install hard props(good practice): npm i prop-types --save-dev auto loading: npm i html-webpack-plugin html-loader --save-dev image loader: npm install image-webpack-loader --save-dev css loader: npm install style-loader css-loader sass-loader node-sass webpack --D 3. implement container/ presentational split 1. container: render() { const { seo_title } = this.state; return ( <form id="article-form"> <Input text={seo_title} label="seo_title" type="text" id="seo_title" value={seo_title} handleChange={this.handleChange} /> </form> ); } 2. presentational: import React from "react"; import PropTypes from "prop-types"; const Input = ({ label, text, type, id, value, handleChange }) => ( <div className="form-group"> <label htmlFor={label}>{text}</label> <input type={type} className="form-control" id={id} value={value} onChange={handleChange} required /> </div> ); Input.propTypes = { label: PropTypes.string.isRequired, text: PropTypes.string.isRequired, type: PropTypes.string.isRequired, id: PropTypes.string.isRequired, value: PropTypes.string.isRequired, handleChange: PropTypes.func.isRequired }; export default Input; <file_sep>import React from "react"; import PropTypes from "prop-types"; import ToDoItem from "../container/ToDoItem.jsx"; import Logo from '../../../assets/img/logo.png'; const ToDoItemList = ({ list, todo, handleDelete, createNewToDoItem , handleKeyPress, handleInput }) => ( <div className="ToDo"> <img className="Logo" src={Logo} alt="React logo"/> <h1 className="ToDo-Header">React To Do</h1> <div className="ToDo-Container"> <div className="ToDo-Content"> {list.map((item, key) => { return <ToDoItem key={key} item={item.todo} handleDelete={handleDelete.bind(this, key)} /> } )} </div> <div> <input type="text" value={todo} onChange={handleInput} onKeyPress={handleKeyPress}/> <button className="ToDo-Add" onClick={createNewToDoItem}>+</button> </div> </div> </div> ); ToDoItemList.propTypes = { list: PropTypes.array, todo: PropTypes.string, handleDelete: PropTypes.func, createNewToDoItem: PropTypes.func, handleKeyPress: PropTypes.func, handleInput: PropTypes.func }; export default ToDoItemList;<file_sep>import React from "react"; import PropTypes from "prop-types"; const ToDoItemPre = ({ text, handleDelete }) => ( <div className="ToDoItem"> <p className="ToDoItem-Text">{text}</p> <button className="ToDoItem-Delete" onClick={handleDelete}>-</button> </div> ); ToDoItemPre.propTypes = { text: PropTypes.string.isRequired, handleDelete: PropTypes.func.isRequired }; export default ToDoItemPre;<file_sep>1. add html component wrapper in index.html <div id="new"></div> 2. at entry point (index.js) add: 1. import NewOne from './js/components/container/NewContainer.jsx' 2. const newone = document.getElementById("new"); 3. newone ? ReactDOM.render(<NewOne />, newone) : false; 3. NewContainer.jsx 1. //import react core import React, { Component } from "react"; //import presentational import Input from "../presentational/Test.jsx"; class NewContainer extends Component { constructor() { super(); //initial state this.state = { seo_title: "" }; } handleChange = event => { // set event id with new value // in this case on handleChange trigger fire // input id "seo_title" get new value this.setState({ [event.target.id]: event.target.value }); } render() { const { seo_title } = this.state; return ( <form id="article-form"> //send data to test present <Test text={seo_title} label="seo_title" type="text" id="seo_title" value={seo_title} handleChange={this.handleChange} /> </form> ); } } export default NewContainer; 4. /presentational/Test.jsx import React from "react"; import PropTypes from "prop-types"; const Test = ({ label, text, type, id, value, handleChange }) => ( <div className="form-group"> <label htmlFor={label}>{text}</label> <input type={type} className="form-control" id={id} value={value} onChange={handleChange} required /> </div> ); Test.propTypes = { label: PropTypes.string.isRequired, text: PropTypes.string.isRequired, type: PropTypes.string.isRequired, id: PropTypes.string.isRequired, value: PropTypes.string.isRequired, handleChange: PropTypes.func.isRequired }; export default Test;<file_sep>import React, {Component} from 'react'; import '../../../assets/css/ToDo.css'; import ToDoItem from './ToDoItem.jsx'; import ToDoList from "../presentational/ToDoList.jsx"; // import Logo from './assets/logo.png'; class ToDo extends Component { constructor(props) { super(props); this.state = { // this is where the data goes list: [ { 'todo': 'clean the house' }, { 'todo': 'buy milk' } ], todo: '' }; }; createNewToDoItem = () => { this.setState(({ list, todo }) => ({ list: [ ...list, { todo } ], todo: '' })); }; handleKeyPress = e => { if (e.target.value !== '') { // console.log('e.target.value'); // console.log(e.target.value); if (e.key === 'Enter') { this.createNewToDoItem(); } } }; handleInput = e => { this.setState({ todo: e.target.value }); }; // this is now being emitted back to the parent from the child component deleteItem = indexToDelete => { this.setState(({ list }) => ({ list: list.filter((toDo, index) => index !== indexToDelete) })); }; render() { return ( <div className="ToDoItem"> <ToDoList list={this.state.list} todo={this.state.todo} handleDelete={this.deleteItem} createNewToDoItem={this.createNewToDoItem} handleKeyPress={this.handleKeyPress} handleInput={this.handleInput} /> </div> ); } } export default ToDo;
8cf70ecf3044c16952e198190565f8d2617072cb
[ "Markdown", "JavaScript" ]
5
Markdown
oshry/react-webpack
833babd59df92a02f8142024a77baa92d313e28b
15aefefd8344e71c96d2e5e317ab50eaf3fac514
refs/heads/master
<file_sep>## OS: Windows 8.1 x64. R ver. 3.1.2. RStudio ver. 0.98.110 ## Extract the text file in the working directory in Windows housedata <- read.table("household_power_consumption.txt", header = TRUE, sep = ";", dec = ".", na.strings = "?", nrows = 2075259, stringsAsFactors = FALSE) ## Reading the text file head(housedata, 3) ## checking file hdbydt <- subset(housedata, Date == "1/2/2007" | Date == "2/2/2007") ## subset the data by date range 1/2/2007 to 2/2/2007 x <- paste(hdbydt$Date, hdbydt$Time) ## concatenate Date and Time datseries <- strptime(x, format = "%d/%m/%Y %H:%M:%S") ## Generated a new series with date and time in format plot(datseries, hdbydt$Sub_metering_1, xlab = " ", ylab = "Energy sub metering", type = "l") ## line for sub meter 1 plotted lines(datseries, hdbydt$Sub_metering_2, col = "red") ## line for sub meter 2 added on top lines(datseries, hdbydt$Sub_metering_3, col = "blue") ## line for sub meter 3 added on top legend("topright", legend = c("Sub_metering_1", "Sub_metering_2", "Sub_metering_3"), col = c("black", "red", "blue"), lty = 1, lwd = 1) ## added the legend specifying the lines dev.copy(png, file = "Plot3.png", width = 480, height = 480) dev.off() ## Plot saved as png file as per specifications<file_sep>## OS: Windows 8.1 x64. R ver. 3.1.2. RStudio ver. 0.98.110 ## Extract the text file in the working directory in Windows housedata <- read.table("household_power_consumption.txt", header = TRUE, sep = ";", dec = ".", na.strings = "?", nrows = 2075259, stringsAsFactors = FALSE) ## Reading the text file head(housedata, 3) ## checking file hdbydt <- subset(housedata, Date == "1/2/2007" | Date == "2/2/2007") ## subset the data by date range 1/2/2007 to 2/2/2007 x <- paste(hdbydt$Date, hdbydt$Time) ## concatenate Date and Time datseries <- strptime(x, format = "%d/%m/%Y %H:%M:%S") ## Generated a new series with date and time in format plot(datseries, hdbydt$Global_active_power, type = "l", xlab = " ", ylab = "Global Active Power (kilowatts)") ## The plot is generated dev.copy(png, file = "Plot2.png", width = 480, height = 480) dev.off() ## Plot saved as png file as per specifications<file_sep>## OS: Windows 8.1 x64. R ver. 3.1.2. RStudio ver. 0.98.110 ## Extract the text file in the working directory in Windows housedata <- read.table("household_power_consumption.txt", header = TRUE, sep = ";", dec = ".", na.strings = "?", nrows = 2075259, stringsAsFactors = FALSE) ## Reading the text file head(housedata, 3) ## checking file hdbydt <- subset(housedata, Date == "1/2/2007" | Date == "2/2/2007") ## subset the data by date range 1/2/2007 to 2/2/2007 hist(hdbydt$Global_active_power, main = "Global Active Power", xlab = "Global Active Power (kilowatts)", col = "red") ## graph generated as per specifications dev.copy(png, file = "Plot1.png", width = 480, height = 480) dev.off() ## Saved plot as png and turned off the device
c541a7830204eb9fdd26f7170d86795b5abc34c4
[ "R" ]
3
R
AdityaMe/ExData_Plotting1
ea4c17375fd4ad5e470de2df8b16225bd69360e8
b4b9450d700198b605655d3e34d4b4a05ff51419
refs/heads/main
<file_sep>package com.mph.core.producer; import java.text.MessageFormat; import java.util.HashMap; import java.util.Map; import java.util.concurrent.ExecutionException; import org.apache.kafka.clients.producer.Producer; import org.apache.kafka.clients.producer.ProducerRecord; import org.apache.kafka.clients.producer.RecordMetadata; import com.mph.core.commons.Payer; public class ProducerApp { private static final String MSG_FORMAT = "[{0}] MPH-User-{1}"; public static void main(String[] args) { Map<Payer, Integer> inputMap = parseInput(args); Producer<Long, String> producer = ProducerFactory.createProducer(); inputMap.forEach((k,v) -> produce(producer, k, v)); } private static Map<Payer, Integer> parseInput(String[] args) { Map<Payer, Integer> inputMap = null; if (args != null && args.length > 0) { inputMap = new HashMap<Payer, Integer>(); for (int i = 0; i < args.length; i++) { String input = args[i]; String payer = input.split("-")[0]; int count = Integer.parseInt(input.split("-")[1]); inputMap.put(Payer.valueOf(payer.toUpperCase()), count); } } return inputMap; } private static void produce(Producer<Long, String> producer, Payer topic, int count) { for (int index = 0; index < count; index++) { String msg = MessageFormat.format(MSG_FORMAT, topic.name(), index); ProducerRecord<Long, String> record = new ProducerRecord<Long, String>(topic.name(), msg); try { RecordMetadata metadata = producer.send(record).get(); System.out.println("[Producer] Record sent with message " + msg + ", offset " + metadata.offset()); } catch (ExecutionException e) { System.out.println("Error in sending record"); System.out.println(e); } catch (InterruptedException e) { System.out.println("Error in sending record"); System.out.println(e); } } } }
652bc66c41cd574fbc77d11111283eed83102d13
[ "Java" ]
1
Java
BHANU2705/bps-mph-producer
b6816c28ecc82563c3419d9e2bba416ed4beeb66
dd1e04b03f6126546fc6599d34cabb3a9b0ee6b0
refs/heads/master
<repo_name>adamdai/px4_ros_com_ros2<file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/rc_parameter_map.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/RcParameterMap.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__RC_PARAMETER_MAP_H_ #define PX4_MSGS__MSG__RC_PARAMETER_MAP_H_ #include "px4_msgs/msg/rc_parameter_map__struct.h" #include "px4_msgs/msg/rc_parameter_map__functions.h" #include "px4_msgs/msg/rc_parameter_map__type_support.h" #endif // PX4_MSGS__MSG__RC_PARAMETER_MAP_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_command__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/VehicleCommand.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_COMMAND__STRUCT_HPP_ #define PX4_MSGS__MSG__VEHICLE_COMMAND__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__VehicleCommand __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__VehicleCommand __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct VehicleCommand_ { using Type = VehicleCommand_<ContainerAllocator>; explicit VehicleCommand_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->param1 = 0.0f; this->param2 = 0.0f; this->param3 = 0.0f; this->param4 = 0.0f; this->param5 = 0.0; this->param6 = 0.0; this->param7 = 0.0f; this->command = 0ul; this->target_system = 0; this->target_component = 0; this->source_system = 0; this->source_component = 0; this->confirmation = 0; this->from_external = false; } } explicit VehicleCommand_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->param1 = 0.0f; this->param2 = 0.0f; this->param3 = 0.0f; this->param4 = 0.0f; this->param5 = 0.0; this->param6 = 0.0; this->param7 = 0.0f; this->command = 0ul; this->target_system = 0; this->target_component = 0; this->source_system = 0; this->source_component = 0; this->confirmation = 0; this->from_external = false; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _param1_type = float; _param1_type param1; using _param2_type = float; _param2_type param2; using _param3_type = float; _param3_type param3; using _param4_type = float; _param4_type param4; using _param5_type = double; _param5_type param5; using _param6_type = double; _param6_type param6; using _param7_type = float; _param7_type param7; using _command_type = uint32_t; _command_type command; using _target_system_type = uint8_t; _target_system_type target_system; using _target_component_type = uint8_t; _target_component_type target_component; using _source_system_type = uint8_t; _source_system_type source_system; using _source_component_type = uint8_t; _source_component_type source_component; using _confirmation_type = uint8_t; _confirmation_type confirmation; using _from_external_type = bool; _from_external_type from_external; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__param1( const float & _arg) { this->param1 = _arg; return *this; } Type & set__param2( const float & _arg) { this->param2 = _arg; return *this; } Type & set__param3( const float & _arg) { this->param3 = _arg; return *this; } Type & set__param4( const float & _arg) { this->param4 = _arg; return *this; } Type & set__param5( const double & _arg) { this->param5 = _arg; return *this; } Type & set__param6( const double & _arg) { this->param6 = _arg; return *this; } Type & set__param7( const float & _arg) { this->param7 = _arg; return *this; } Type & set__command( const uint32_t & _arg) { this->command = _arg; return *this; } Type & set__target_system( const uint8_t & _arg) { this->target_system = _arg; return *this; } Type & set__target_component( const uint8_t & _arg) { this->target_component = _arg; return *this; } Type & set__source_system( const uint8_t & _arg) { this->source_system = _arg; return *this; } Type & set__source_component( const uint8_t & _arg) { this->source_component = _arg; return *this; } Type & set__confirmation( const uint8_t & _arg) { this->confirmation = _arg; return *this; } Type & set__from_external( const bool & _arg) { this->from_external = _arg; return *this; } // constant declarations static constexpr uint16_t VEHICLE_CMD_CUSTOM_0 = 0u; static constexpr uint16_t VEHICLE_CMD_CUSTOM_1 = 1u; static constexpr uint16_t VEHICLE_CMD_CUSTOM_2 = 2u; static constexpr uint16_t VEHICLE_CMD_NAV_WAYPOINT = 16u; static constexpr uint16_t VEHICLE_CMD_NAV_LOITER_UNLIM = 17u; static constexpr uint16_t VEHICLE_CMD_NAV_LOITER_TURNS = 18u; static constexpr uint16_t VEHICLE_CMD_NAV_LOITER_TIME = 19u; static constexpr uint16_t VEHICLE_CMD_NAV_RETURN_TO_LAUNCH = 20u; static constexpr uint16_t VEHICLE_CMD_NAV_LAND = 21u; static constexpr uint16_t VEHICLE_CMD_NAV_TAKEOFF = 22u; static constexpr uint16_t VEHICLE_CMD_NAV_PRECLAND = 23u; static constexpr uint16_t VEHICLE_CMD_DO_ORBIT = 34u; static constexpr uint16_t VEHICLE_CMD_NAV_ROI = 80u; static constexpr uint16_t VEHICLE_CMD_NAV_PATHPLANNING = 81u; static constexpr uint16_t VEHICLE_CMD_NAV_VTOL_TAKEOFF = 84u; static constexpr uint16_t VEHICLE_CMD_NAV_VTOL_LAND = 85u; static constexpr uint16_t VEHICLE_CMD_NAV_GUIDED_LIMITS = 90u; static constexpr uint16_t VEHICLE_CMD_NAV_GUIDED_MASTER = 91u; static constexpr uint16_t VEHICLE_CMD_NAV_DELAY = 93u; static constexpr uint16_t VEHICLE_CMD_NAV_LAST = 95u; static constexpr uint16_t VEHICLE_CMD_CONDITION_DELAY = 112u; static constexpr uint16_t VEHICLE_CMD_CONDITION_CHANGE_ALT = 113u; static constexpr uint16_t VEHICLE_CMD_CONDITION_DISTANCE = 114u; static constexpr uint16_t VEHICLE_CMD_CONDITION_YAW = 115u; static constexpr uint16_t VEHICLE_CMD_CONDITION_LAST = 159u; static constexpr uint16_t VEHICLE_CMD_CONDITION_GATE = 4501u; static constexpr uint16_t VEHICLE_CMD_DO_SET_MODE = 176u; static constexpr uint16_t VEHICLE_CMD_DO_JUMP = 177u; static constexpr uint16_t VEHICLE_CMD_DO_CHANGE_SPEED = 178u; static constexpr uint16_t VEHICLE_CMD_DO_SET_HOME = 179u; static constexpr uint16_t VEHICLE_CMD_DO_SET_PARAMETER = 180u; static constexpr uint16_t VEHICLE_CMD_DO_SET_RELAY = 181u; static constexpr uint16_t VEHICLE_CMD_DO_REPEAT_RELAY = 182u; static constexpr uint16_t VEHICLE_CMD_DO_SET_SERVO = 183u; static constexpr uint16_t VEHICLE_CMD_DO_REPEAT_SERVO = 184u; static constexpr uint16_t VEHICLE_CMD_DO_FLIGHTTERMINATION = 185u; static constexpr uint16_t VEHICLE_CMD_DO_LAND_START = 189u; static constexpr uint16_t VEHICLE_CMD_DO_GO_AROUND = 191u; static constexpr uint16_t VEHICLE_CMD_DO_REPOSITION = 192u; static constexpr uint16_t VEHICLE_CMD_DO_PAUSE_CONTINUE = 193u; static constexpr uint16_t VEHICLE_CMD_DO_SET_ROI_LOCATION = 195u; static constexpr uint16_t VEHICLE_CMD_DO_SET_ROI_WPNEXT_OFFSET = 196u; static constexpr uint16_t VEHICLE_CMD_DO_SET_ROI_NONE = 197u; static constexpr uint16_t VEHICLE_CMD_DO_CONTROL_VIDEO = 200u; static constexpr uint16_t VEHICLE_CMD_DO_SET_ROI = 201u; static constexpr uint16_t VEHICLE_CMD_DO_DIGICAM_CONTROL = 203u; static constexpr uint16_t VEHICLE_CMD_DO_MOUNT_CONFIGURE = 204u; static constexpr uint16_t VEHICLE_CMD_DO_MOUNT_CONTROL = 205u; static constexpr uint16_t VEHICLE_CMD_DO_SET_CAM_TRIGG_DIST = 206u; static constexpr uint16_t VEHICLE_CMD_DO_FENCE_ENABLE = 207u; static constexpr uint16_t VEHICLE_CMD_DO_PARACHUTE = 208u; static constexpr uint16_t VEHICLE_CMD_DO_MOTOR_TEST = 209u; static constexpr uint16_t VEHICLE_CMD_DO_INVERTED_FLIGHT = 210u; static constexpr uint16_t VEHICLE_CMD_DO_SET_CAM_TRIGG_INTERVAL = 214u; static constexpr uint16_t VEHICLE_CMD_DO_MOUNT_CONTROL_QUAT = 220u; static constexpr uint16_t VEHICLE_CMD_DO_GUIDED_MASTER = 221u; static constexpr uint16_t VEHICLE_CMD_DO_GUIDED_LIMITS = 222u; static constexpr uint16_t VEHICLE_CMD_DO_LAST = 240u; static constexpr uint16_t VEHICLE_CMD_PREFLIGHT_CALIBRATION = 241u; static constexpr uint16_t PREFLIGHT_CALIBRATION_TEMPERATURE_CALIBRATION = 3u; static constexpr uint16_t VEHICLE_CMD_PREFLIGHT_SET_SENSOR_OFFSETS = 242u; static constexpr uint16_t VEHICLE_CMD_PREFLIGHT_UAVCAN = 243u; static constexpr uint16_t VEHICLE_CMD_PREFLIGHT_STORAGE = 245u; static constexpr uint16_t VEHICLE_CMD_PREFLIGHT_REBOOT_SHUTDOWN = 246u; static constexpr uint16_t VEHICLE_CMD_OBLIQUE_SURVEY = 260u; static constexpr uint16_t VEHICLE_CMD_GIMBAL_DEVICE_INFORMATION = 283u; static constexpr uint16_t VEHICLE_CMD_MISSION_START = 300u; static constexpr uint16_t VEHICLE_CMD_COMPONENT_ARM_DISARM = 400u; static constexpr uint16_t VEHICLE_CMD_INJECT_FAILURE = 420u; static constexpr uint16_t VEHICLE_CMD_START_RX_PAIR = 500u; static constexpr uint16_t VEHICLE_CMD_REQUEST_MESSAGE = 512u; static constexpr uint16_t VEHICLE_CMD_SET_CAMERA_MODE = 530u; static constexpr uint16_t VEHICLE_CMD_SET_CAMERA_ZOOM = 531u; static constexpr uint16_t VEHICLE_CMD_SET_CAMERA_FOCUS = 532u; static constexpr uint16_t VEHICLE_CMD_DO_GIMBAL_MANAGER_PITCHYAW = 1000u; static constexpr uint16_t VEHICLE_CMD_DO_GIMBAL_MANAGER_CONFIGURE = 1001u; static constexpr uint16_t VEHICLE_CMD_DO_TRIGGER_CONTROL = 2003u; static constexpr uint16_t VEHICLE_CMD_LOGGING_START = 2510u; static constexpr uint16_t VEHICLE_CMD_LOGGING_STOP = 2511u; static constexpr uint16_t VEHICLE_CMD_CONTROL_HIGH_LATENCY = 2600u; static constexpr uint16_t VEHICLE_CMD_DO_VTOL_TRANSITION = 3000u; static constexpr uint16_t VEHICLE_CMD_ARM_AUTHORIZATION_REQUEST = 3001u; static constexpr uint16_t VEHICLE_CMD_PAYLOAD_PREPARE_DEPLOY = 30001u; static constexpr uint16_t VEHICLE_CMD_PAYLOAD_CONTROL_DEPLOY = 30002u; static constexpr uint16_t VEHICLE_CMD_FIXED_MAG_CAL_YAW = 42006u; static constexpr uint32_t VEHICLE_CMD_PX4_INTERNAL_START = 65537u; static constexpr uint32_t VEHICLE_CMD_SET_GPS_GLOBAL_ORIGIN = 100000u; static constexpr uint8_t VEHICLE_CMD_RESULT_ACCEPTED = 0u; static constexpr uint8_t VEHICLE_CMD_RESULT_TEMPORARILY_REJECTED = 1u; static constexpr uint8_t VEHICLE_CMD_RESULT_DENIED = 2u; static constexpr uint8_t VEHICLE_CMD_RESULT_UNSUPPORTED = 3u; static constexpr uint8_t VEHICLE_CMD_RESULT_FAILED = 4u; static constexpr uint8_t VEHICLE_CMD_RESULT_IN_PROGRESS = 5u; static constexpr uint8_t VEHICLE_CMD_RESULT_ENUM_END = 6u; static constexpr uint8_t VEHICLE_MOUNT_MODE_RETRACT = 0u; static constexpr uint8_t VEHICLE_MOUNT_MODE_NEUTRAL = 1u; static constexpr uint8_t VEHICLE_MOUNT_MODE_MAVLINK_TARGETING = 2u; static constexpr uint8_t VEHICLE_MOUNT_MODE_RC_TARGETING = 3u; static constexpr uint8_t VEHICLE_MOUNT_MODE_GPS_POINT = 4u; static constexpr uint8_t VEHICLE_MOUNT_MODE_ENUM_END = 5u; static constexpr uint8_t VEHICLE_ROI_NONE = 0u; static constexpr uint8_t VEHICLE_ROI_WPNEXT = 1u; static constexpr uint8_t VEHICLE_ROI_WPINDEX = 2u; static constexpr uint8_t VEHICLE_ROI_LOCATION = 3u; static constexpr uint8_t VEHICLE_ROI_TARGET = 4u; static constexpr uint8_t VEHICLE_ROI_ENUM_END = 5u; static constexpr uint8_t VEHICLE_CAMERA_ZOOM_TYPE_STEP = 0u; static constexpr uint8_t VEHICLE_CAMERA_ZOOM_TYPE_CONTINUOUS = 1u; static constexpr uint8_t VEHICLE_CAMERA_ZOOM_TYPE_RANGE = 2u; static constexpr uint8_t VEHICLE_CAMERA_ZOOM_TYPE_FOCAL_LENGTH = 3u; static constexpr uint8_t FAILURE_UNIT_SENSOR_GYRO = 0u; static constexpr uint8_t FAILURE_UNIT_SENSOR_ACCEL = 1u; static constexpr uint8_t FAILURE_UNIT_SENSOR_MAG = 2u; static constexpr uint8_t FAILURE_UNIT_SENSOR_BARO = 3u; static constexpr uint8_t FAILURE_UNIT_SENSOR_GPS = 4u; static constexpr uint8_t FAILURE_UNIT_SENSOR_OPTICAL_FLOW = 5u; static constexpr uint8_t FAILURE_UNIT_SENSOR_VIO = 6u; static constexpr uint8_t FAILURE_UNIT_SENSOR_DISTANCE_SENSOR = 7u; static constexpr uint8_t FAILURE_UNIT_SENSOR_AIRSPEED = 8u; static constexpr uint8_t FAILURE_UNIT_SYSTEM_BATTERY = 100u; static constexpr uint8_t FAILURE_UNIT_SYSTEM_MOTOR = 101u; static constexpr uint8_t FAILURE_UNIT_SYSTEM_SERVO = 102u; static constexpr uint8_t FAILURE_UNIT_SYSTEM_AVOIDANCE = 103u; static constexpr uint8_t FAILURE_UNIT_SYSTEM_RC_SIGNAL = 104u; static constexpr uint8_t FAILURE_UNIT_SYSTEM_MAVLINK_SIGNAL = 105u; static constexpr uint8_t FAILURE_TYPE_OK = 0u; static constexpr uint8_t FAILURE_TYPE_OFF = 1u; static constexpr uint8_t FAILURE_TYPE_STUCK = 2u; static constexpr uint8_t FAILURE_TYPE_GARBAGE = 3u; static constexpr uint8_t FAILURE_TYPE_WRONG = 4u; static constexpr uint8_t FAILURE_TYPE_SLOW = 5u; static constexpr uint8_t FAILURE_TYPE_DELAYED = 6u; static constexpr uint8_t FAILURE_TYPE_INTERMITTENT = 7u; static constexpr uint8_t ORB_QUEUE_LENGTH = 8u; // pointer types using RawPtr = px4_msgs::msg::VehicleCommand_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::VehicleCommand_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::VehicleCommand_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::VehicleCommand_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleCommand_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleCommand_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleCommand_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleCommand_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::VehicleCommand_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::VehicleCommand_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__VehicleCommand std::shared_ptr<px4_msgs::msg::VehicleCommand_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__VehicleCommand std::shared_ptr<px4_msgs::msg::VehicleCommand_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const VehicleCommand_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->param1 != other.param1) { return false; } if (this->param2 != other.param2) { return false; } if (this->param3 != other.param3) { return false; } if (this->param4 != other.param4) { return false; } if (this->param5 != other.param5) { return false; } if (this->param6 != other.param6) { return false; } if (this->param7 != other.param7) { return false; } if (this->command != other.command) { return false; } if (this->target_system != other.target_system) { return false; } if (this->target_component != other.target_component) { return false; } if (this->source_system != other.source_system) { return false; } if (this->source_component != other.source_component) { return false; } if (this->confirmation != other.confirmation) { return false; } if (this->from_external != other.from_external) { return false; } return true; } bool operator!=(const VehicleCommand_ & other) const { return !this->operator==(other); } }; // struct VehicleCommand_ // alias to use template instance with default allocator using VehicleCommand = px4_msgs::msg::VehicleCommand_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_CUSTOM_0; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_CUSTOM_1; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_CUSTOM_2; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_NAV_WAYPOINT; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_NAV_LOITER_UNLIM; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_NAV_LOITER_TURNS; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_NAV_LOITER_TIME; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_NAV_RETURN_TO_LAUNCH; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_NAV_LAND; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_NAV_TAKEOFF; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_NAV_PRECLAND; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_ORBIT; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_NAV_ROI; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_NAV_PATHPLANNING; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_NAV_VTOL_TAKEOFF; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_NAV_VTOL_LAND; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_NAV_GUIDED_LIMITS; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_NAV_GUIDED_MASTER; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_NAV_DELAY; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_NAV_LAST; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_CONDITION_DELAY; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_CONDITION_CHANGE_ALT; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_CONDITION_DISTANCE; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_CONDITION_YAW; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_CONDITION_LAST; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_CONDITION_GATE; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_SET_MODE; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_JUMP; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_CHANGE_SPEED; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_SET_HOME; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_SET_PARAMETER; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_SET_RELAY; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_REPEAT_RELAY; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_SET_SERVO; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_REPEAT_SERVO; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_FLIGHTTERMINATION; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_LAND_START; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_GO_AROUND; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_REPOSITION; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_PAUSE_CONTINUE; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_SET_ROI_LOCATION; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_SET_ROI_WPNEXT_OFFSET; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_SET_ROI_NONE; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_CONTROL_VIDEO; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_SET_ROI; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_DIGICAM_CONTROL; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_MOUNT_CONFIGURE; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_MOUNT_CONTROL; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_SET_CAM_TRIGG_DIST; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_FENCE_ENABLE; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_PARACHUTE; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_MOTOR_TEST; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_INVERTED_FLIGHT; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_SET_CAM_TRIGG_INTERVAL; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_MOUNT_CONTROL_QUAT; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_GUIDED_MASTER; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_GUIDED_LIMITS; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_LAST; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_PREFLIGHT_CALIBRATION; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::PREFLIGHT_CALIBRATION_TEMPERATURE_CALIBRATION; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_PREFLIGHT_SET_SENSOR_OFFSETS; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_PREFLIGHT_UAVCAN; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_PREFLIGHT_STORAGE; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_PREFLIGHT_REBOOT_SHUTDOWN; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_OBLIQUE_SURVEY; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_GIMBAL_DEVICE_INFORMATION; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_MISSION_START; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_COMPONENT_ARM_DISARM; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_INJECT_FAILURE; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_START_RX_PAIR; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_REQUEST_MESSAGE; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_SET_CAMERA_MODE; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_SET_CAMERA_ZOOM; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_SET_CAMERA_FOCUS; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_GIMBAL_MANAGER_PITCHYAW; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_GIMBAL_MANAGER_CONFIGURE; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_TRIGGER_CONTROL; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_LOGGING_START; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_LOGGING_STOP; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_CONTROL_HIGH_LATENCY; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_DO_VTOL_TRANSITION; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_ARM_AUTHORIZATION_REQUEST; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_PAYLOAD_PREPARE_DEPLOY; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_PAYLOAD_CONTROL_DEPLOY; template<typename ContainerAllocator> constexpr uint16_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_FIXED_MAG_CAL_YAW; template<typename ContainerAllocator> constexpr uint32_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_PX4_INTERNAL_START; template<typename ContainerAllocator> constexpr uint32_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_SET_GPS_GLOBAL_ORIGIN; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_RESULT_ACCEPTED; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_RESULT_TEMPORARILY_REJECTED; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_RESULT_DENIED; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_RESULT_UNSUPPORTED; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_RESULT_FAILED; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_RESULT_IN_PROGRESS; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::VEHICLE_CMD_RESULT_ENUM_END; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::VEHICLE_MOUNT_MODE_RETRACT; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::VEHICLE_MOUNT_MODE_NEUTRAL; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::VEHICLE_MOUNT_MODE_MAVLINK_TARGETING; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::VEHICLE_MOUNT_MODE_RC_TARGETING; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::VEHICLE_MOUNT_MODE_GPS_POINT; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::VEHICLE_MOUNT_MODE_ENUM_END; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::VEHICLE_ROI_NONE; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::VEHICLE_ROI_WPNEXT; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::VEHICLE_ROI_WPINDEX; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::VEHICLE_ROI_LOCATION; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::VEHICLE_ROI_TARGET; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::VEHICLE_ROI_ENUM_END; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::VEHICLE_CAMERA_ZOOM_TYPE_STEP; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::VEHICLE_CAMERA_ZOOM_TYPE_CONTINUOUS; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::VEHICLE_CAMERA_ZOOM_TYPE_RANGE; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::VEHICLE_CAMERA_ZOOM_TYPE_FOCAL_LENGTH; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::FAILURE_UNIT_SENSOR_GYRO; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::FAILURE_UNIT_SENSOR_ACCEL; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::FAILURE_UNIT_SENSOR_MAG; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::FAILURE_UNIT_SENSOR_BARO; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::FAILURE_UNIT_SENSOR_GPS; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::FAILURE_UNIT_SENSOR_OPTICAL_FLOW; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::FAILURE_UNIT_SENSOR_VIO; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::FAILURE_UNIT_SENSOR_DISTANCE_SENSOR; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::FAILURE_UNIT_SENSOR_AIRSPEED; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::FAILURE_UNIT_SYSTEM_BATTERY; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::FAILURE_UNIT_SYSTEM_MOTOR; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::FAILURE_UNIT_SYSTEM_SERVO; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::FAILURE_UNIT_SYSTEM_AVOIDANCE; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::FAILURE_UNIT_SYSTEM_RC_SIGNAL; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::FAILURE_UNIT_SYSTEM_MAVLINK_SIGNAL; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::FAILURE_TYPE_OK; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::FAILURE_TYPE_OFF; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::FAILURE_TYPE_STUCK; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::FAILURE_TYPE_GARBAGE; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::FAILURE_TYPE_WRONG; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::FAILURE_TYPE_SLOW; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::FAILURE_TYPE_DELAYED; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::FAILURE_TYPE_INTERMITTENT; template<typename ContainerAllocator> constexpr uint8_t VehicleCommand_<ContainerAllocator>::ORB_QUEUE_LENGTH; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__VEHICLE_COMMAND__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/safety.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/Safety.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SAFETY_H_ #define PX4_MSGS__MSG__SAFETY_H_ #include "px4_msgs/msg/safety__struct.h" #include "px4_msgs/msg/safety__functions.h" #include "px4_msgs/msg/safety__type_support.h" #endif // PX4_MSGS__MSG__SAFETY_H_ <file_sep>/install/px4_ros_com/include/px4_ros_com/frame_transforms.h /home/navlab-tx2-4/px4_ros_com_ros2/src/px4_ros_com/include/px4_ros_com/frame_transforms.h<file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/landing_target_pose__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/LandingTargetPose.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__LANDING_TARGET_POSE__FUNCTIONS_H_ #define PX4_MSGS__MSG__LANDING_TARGET_POSE__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/landing_target_pose__struct.h" /// Initialize msg/LandingTargetPose message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__LandingTargetPose * )) before or use * px4_msgs__msg__LandingTargetPose__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__LandingTargetPose__init(px4_msgs__msg__LandingTargetPose * msg); /// Finalize msg/LandingTargetPose message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__LandingTargetPose__fini(px4_msgs__msg__LandingTargetPose * msg); /// Create msg/LandingTargetPose message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__LandingTargetPose__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__LandingTargetPose * px4_msgs__msg__LandingTargetPose__create(); /// Destroy msg/LandingTargetPose message. /** * It calls * px4_msgs__msg__LandingTargetPose__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__LandingTargetPose__destroy(px4_msgs__msg__LandingTargetPose * msg); /// Initialize array of msg/LandingTargetPose messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__LandingTargetPose__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__LandingTargetPose__Sequence__init(px4_msgs__msg__LandingTargetPose__Sequence * array, size_t size); /// Finalize array of msg/LandingTargetPose messages. /** * It calls * px4_msgs__msg__LandingTargetPose__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__LandingTargetPose__Sequence__fini(px4_msgs__msg__LandingTargetPose__Sequence * array); /// Create array of msg/LandingTargetPose messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__LandingTargetPose__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__LandingTargetPose__Sequence * px4_msgs__msg__LandingTargetPose__Sequence__create(size_t size); /// Destroy array of msg/LandingTargetPose messages. /** * It calls * px4_msgs__msg__LandingTargetPose__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__LandingTargetPose__Sequence__destroy(px4_msgs__msg__LandingTargetPose__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__LANDING_TARGET_POSE__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_event_flags.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/EstimatorEventFlags.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_EVENT_FLAGS_H_ #define PX4_MSGS__MSG__ESTIMATOR_EVENT_FLAGS_H_ #include "px4_msgs/msg/estimator_event_flags__struct.h" #include "px4_msgs/msg/estimator_event_flags__functions.h" #include "px4_msgs/msg/estimator_event_flags__type_support.h" #endif // PX4_MSGS__MSG__ESTIMATOR_EVENT_FLAGS_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/mission_result__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/MissionResult.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/mission_result__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__MissionResult__init(px4_msgs__msg__MissionResult * msg) { if (!msg) { return false; } // timestamp // instance_count // seq_reached // seq_current // seq_total // valid // warning // finished // failure // stay_in_failsafe // flight_termination // item_do_jump_changed // item_changed_index // item_do_jump_remaining // execution_mode return true; } void px4_msgs__msg__MissionResult__fini(px4_msgs__msg__MissionResult * msg) { if (!msg) { return; } // timestamp // instance_count // seq_reached // seq_current // seq_total // valid // warning // finished // failure // stay_in_failsafe // flight_termination // item_do_jump_changed // item_changed_index // item_do_jump_remaining // execution_mode } px4_msgs__msg__MissionResult * px4_msgs__msg__MissionResult__create() { px4_msgs__msg__MissionResult * msg = (px4_msgs__msg__MissionResult *)malloc(sizeof(px4_msgs__msg__MissionResult)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__MissionResult)); bool success = px4_msgs__msg__MissionResult__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__MissionResult__destroy(px4_msgs__msg__MissionResult * msg) { if (msg) { px4_msgs__msg__MissionResult__fini(msg); } free(msg); } bool px4_msgs__msg__MissionResult__Sequence__init(px4_msgs__msg__MissionResult__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__MissionResult * data = NULL; if (size) { data = (px4_msgs__msg__MissionResult *)calloc(size, sizeof(px4_msgs__msg__MissionResult)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__MissionResult__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__MissionResult__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__MissionResult__Sequence__fini(px4_msgs__msg__MissionResult__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__MissionResult__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__MissionResult__Sequence * px4_msgs__msg__MissionResult__Sequence__create(size_t size) { px4_msgs__msg__MissionResult__Sequence * array = (px4_msgs__msg__MissionResult__Sequence *)malloc(sizeof(px4_msgs__msg__MissionResult__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__MissionResult__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__MissionResult__Sequence__destroy(px4_msgs__msg__MissionResult__Sequence * array) { if (array) { px4_msgs__msg__MissionResult__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/trajectory_waypoint__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/TrajectoryWaypoint.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/trajectory_waypoint__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__TrajectoryWaypoint__init(px4_msgs__msg__TrajectoryWaypoint * msg) { if (!msg) { return false; } // timestamp // position // velocity // acceleration // yaw // yaw_speed // point_valid // type return true; } void px4_msgs__msg__TrajectoryWaypoint__fini(px4_msgs__msg__TrajectoryWaypoint * msg) { if (!msg) { return; } // timestamp // position // velocity // acceleration // yaw // yaw_speed // point_valid // type } px4_msgs__msg__TrajectoryWaypoint * px4_msgs__msg__TrajectoryWaypoint__create() { px4_msgs__msg__TrajectoryWaypoint * msg = (px4_msgs__msg__TrajectoryWaypoint *)malloc(sizeof(px4_msgs__msg__TrajectoryWaypoint)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__TrajectoryWaypoint)); bool success = px4_msgs__msg__TrajectoryWaypoint__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__TrajectoryWaypoint__destroy(px4_msgs__msg__TrajectoryWaypoint * msg) { if (msg) { px4_msgs__msg__TrajectoryWaypoint__fini(msg); } free(msg); } bool px4_msgs__msg__TrajectoryWaypoint__Sequence__init(px4_msgs__msg__TrajectoryWaypoint__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__TrajectoryWaypoint * data = NULL; if (size) { data = (px4_msgs__msg__TrajectoryWaypoint *)calloc(size, sizeof(px4_msgs__msg__TrajectoryWaypoint)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__TrajectoryWaypoint__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__TrajectoryWaypoint__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__TrajectoryWaypoint__Sequence__fini(px4_msgs__msg__TrajectoryWaypoint__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__TrajectoryWaypoint__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__TrajectoryWaypoint__Sequence * px4_msgs__msg__TrajectoryWaypoint__Sequence__create(size_t size) { px4_msgs__msg__TrajectoryWaypoint__Sequence * array = (px4_msgs__msg__TrajectoryWaypoint__Sequence *)malloc(sizeof(px4_msgs__msg__TrajectoryWaypoint__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__TrajectoryWaypoint__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__TrajectoryWaypoint__Sequence__destroy(px4_msgs__msg__TrajectoryWaypoint__Sequence * array) { if (array) { px4_msgs__msg__TrajectoryWaypoint__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_innovation_test_ratios__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/EstimatorInnovationTestRatios.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/estimator_innovation_test_ratios__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__EstimatorInnovationTestRatios__init(px4_msgs__msg__EstimatorInnovationTestRatios * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // gps_hvel // gps_vvel // gps_hpos // gps_vpos // ev_hvel // ev_vvel // ev_hpos // ev_vpos // rng_vpos // baro_vpos // aux_hvel // aux_vvel // flow // heading // mag_field // drag // airspeed // beta // hagl return true; } void px4_msgs__msg__EstimatorInnovationTestRatios__fini(px4_msgs__msg__EstimatorInnovationTestRatios * msg) { if (!msg) { return; } // timestamp // timestamp_sample // gps_hvel // gps_vvel // gps_hpos // gps_vpos // ev_hvel // ev_vvel // ev_hpos // ev_vpos // rng_vpos // baro_vpos // aux_hvel // aux_vvel // flow // heading // mag_field // drag // airspeed // beta // hagl } px4_msgs__msg__EstimatorInnovationTestRatios * px4_msgs__msg__EstimatorInnovationTestRatios__create() { px4_msgs__msg__EstimatorInnovationTestRatios * msg = (px4_msgs__msg__EstimatorInnovationTestRatios *)malloc(sizeof(px4_msgs__msg__EstimatorInnovationTestRatios)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__EstimatorInnovationTestRatios)); bool success = px4_msgs__msg__EstimatorInnovationTestRatios__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__EstimatorInnovationTestRatios__destroy(px4_msgs__msg__EstimatorInnovationTestRatios * msg) { if (msg) { px4_msgs__msg__EstimatorInnovationTestRatios__fini(msg); } free(msg); } bool px4_msgs__msg__EstimatorInnovationTestRatios__Sequence__init(px4_msgs__msg__EstimatorInnovationTestRatios__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__EstimatorInnovationTestRatios * data = NULL; if (size) { data = (px4_msgs__msg__EstimatorInnovationTestRatios *)calloc(size, sizeof(px4_msgs__msg__EstimatorInnovationTestRatios)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__EstimatorInnovationTestRatios__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__EstimatorInnovationTestRatios__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__EstimatorInnovationTestRatios__Sequence__fini(px4_msgs__msg__EstimatorInnovationTestRatios__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__EstimatorInnovationTestRatios__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__EstimatorInnovationTestRatios__Sequence * px4_msgs__msg__EstimatorInnovationTestRatios__Sequence__create(size_t size) { px4_msgs__msg__EstimatorInnovationTestRatios__Sequence * array = (px4_msgs__msg__EstimatorInnovationTestRatios__Sequence *)malloc(sizeof(px4_msgs__msg__EstimatorInnovationTestRatios__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__EstimatorInnovationTestRatios__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__EstimatorInnovationTestRatios__Sequence__destroy(px4_msgs__msg__EstimatorInnovationTestRatios__Sequence * array) { if (array) { px4_msgs__msg__EstimatorInnovationTestRatios__Sequence__fini(array); } free(array); } <file_sep>/build/px4_ros_com/CMakeFiles/vehicle_gps_position_listener.dir/cmake_clean.cmake file(REMOVE_RECURSE "CMakeFiles/vehicle_gps_position_listener.dir/src/examples/listeners/vehicle_gps_position_listener.cpp.o" "vehicle_gps_position_listener.pdb" "vehicle_gps_position_listener" ) # Per-language clean rules from dependency scanning. foreach(lang CXX) include(CMakeFiles/vehicle_gps_position_listener.dir/cmake_clean_${lang}.cmake OPTIONAL) endforeach() <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/tecs_status__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/TecsStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/tecs_status__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__TecsStatus__init(px4_msgs__msg__TecsStatus * msg) { if (!msg) { return false; } // timestamp // altitude_sp // altitude_filtered // height_rate_setpoint // height_rate // equivalent_airspeed_sp // true_airspeed_sp // true_airspeed_filtered // true_airspeed_derivative_sp // true_airspeed_derivative // total_energy_error // energy_distribution_error // total_energy_rate_error // energy_distribution_rate_error // total_energy // total_energy_rate // total_energy_balance // total_energy_balance_rate // total_energy_sp // total_energy_rate_sp // total_energy_balance_sp // total_energy_balance_rate_sp // throttle_integ // pitch_integ // throttle_sp // mode return true; } void px4_msgs__msg__TecsStatus__fini(px4_msgs__msg__TecsStatus * msg) { if (!msg) { return; } // timestamp // altitude_sp // altitude_filtered // height_rate_setpoint // height_rate // equivalent_airspeed_sp // true_airspeed_sp // true_airspeed_filtered // true_airspeed_derivative_sp // true_airspeed_derivative // total_energy_error // energy_distribution_error // total_energy_rate_error // energy_distribution_rate_error // total_energy // total_energy_rate // total_energy_balance // total_energy_balance_rate // total_energy_sp // total_energy_rate_sp // total_energy_balance_sp // total_energy_balance_rate_sp // throttle_integ // pitch_integ // throttle_sp // mode } px4_msgs__msg__TecsStatus * px4_msgs__msg__TecsStatus__create() { px4_msgs__msg__TecsStatus * msg = (px4_msgs__msg__TecsStatus *)malloc(sizeof(px4_msgs__msg__TecsStatus)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__TecsStatus)); bool success = px4_msgs__msg__TecsStatus__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__TecsStatus__destroy(px4_msgs__msg__TecsStatus * msg) { if (msg) { px4_msgs__msg__TecsStatus__fini(msg); } free(msg); } bool px4_msgs__msg__TecsStatus__Sequence__init(px4_msgs__msg__TecsStatus__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__TecsStatus * data = NULL; if (size) { data = (px4_msgs__msg__TecsStatus *)calloc(size, sizeof(px4_msgs__msg__TecsStatus)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__TecsStatus__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__TecsStatus__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__TecsStatus__Sequence__fini(px4_msgs__msg__TecsStatus__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__TecsStatus__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__TecsStatus__Sequence * px4_msgs__msg__TecsStatus__Sequence__create(size_t size) { px4_msgs__msg__TecsStatus__Sequence * array = (px4_msgs__msg__TecsStatus__Sequence *)malloc(sizeof(px4_msgs__msg__TecsStatus__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__TecsStatus__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__TecsStatus__Sequence__destroy(px4_msgs__msg__TecsStatus__Sequence * array) { if (array) { px4_msgs__msg__TecsStatus__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/telemetry_status__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/TelemetryStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TELEMETRY_STATUS__STRUCT_HPP_ #define PX4_MSGS__MSG__TELEMETRY_STATUS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__TelemetryStatus __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__TelemetryStatus __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct TelemetryStatus_ { using Type = TelemetryStatus_<ContainerAllocator>; explicit TelemetryStatus_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->type = 0; this->mode = 0; this->flow_control = false; this->forwarding = false; this->mavlink_v2 = false; this->ftp = false; this->streams = 0; this->data_rate = 0.0f; this->rate_multiplier = 0.0f; this->tx_rate_avg = 0.0f; this->tx_error_rate_avg = 0.0f; this->tx_message_count = 0ul; this->tx_buffer_overruns = 0ul; this->rx_rate_avg = 0.0f; this->rx_message_count = 0ul; this->rx_message_count_supported = 0ul; this->rx_message_lost_count = 0ul; this->rx_buffer_overruns = 0ul; this->rx_parse_errors = 0ul; this->rx_packet_drop_count = 0ul; this->rx_message_lost_rate = 0.0f; this->heartbeat_type_antenna_tracker = false; this->heartbeat_type_gcs = false; this->heartbeat_type_onboard_controller = false; this->heartbeat_type_gimbal = false; this->heartbeat_type_adsb = false; this->heartbeat_type_camera = false; this->heartbeat_component_telemetry_radio = false; this->heartbeat_component_log = false; this->heartbeat_component_osd = false; this->heartbeat_component_obstacle_avoidance = false; this->heartbeat_component_vio = false; this->heartbeat_component_pairing_manager = false; this->heartbeat_component_udp_bridge = false; this->heartbeat_component_uart_bridge = false; this->avoidance_system_healthy = false; } } explicit TelemetryStatus_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->type = 0; this->mode = 0; this->flow_control = false; this->forwarding = false; this->mavlink_v2 = false; this->ftp = false; this->streams = 0; this->data_rate = 0.0f; this->rate_multiplier = 0.0f; this->tx_rate_avg = 0.0f; this->tx_error_rate_avg = 0.0f; this->tx_message_count = 0ul; this->tx_buffer_overruns = 0ul; this->rx_rate_avg = 0.0f; this->rx_message_count = 0ul; this->rx_message_count_supported = 0ul; this->rx_message_lost_count = 0ul; this->rx_buffer_overruns = 0ul; this->rx_parse_errors = 0ul; this->rx_packet_drop_count = 0ul; this->rx_message_lost_rate = 0.0f; this->heartbeat_type_antenna_tracker = false; this->heartbeat_type_gcs = false; this->heartbeat_type_onboard_controller = false; this->heartbeat_type_gimbal = false; this->heartbeat_type_adsb = false; this->heartbeat_type_camera = false; this->heartbeat_component_telemetry_radio = false; this->heartbeat_component_log = false; this->heartbeat_component_osd = false; this->heartbeat_component_obstacle_avoidance = false; this->heartbeat_component_vio = false; this->heartbeat_component_pairing_manager = false; this->heartbeat_component_udp_bridge = false; this->heartbeat_component_uart_bridge = false; this->avoidance_system_healthy = false; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _type_type = uint8_t; _type_type type; using _mode_type = uint8_t; _mode_type mode; using _flow_control_type = bool; _flow_control_type flow_control; using _forwarding_type = bool; _forwarding_type forwarding; using _mavlink_v2_type = bool; _mavlink_v2_type mavlink_v2; using _ftp_type = bool; _ftp_type ftp; using _streams_type = uint8_t; _streams_type streams; using _data_rate_type = float; _data_rate_type data_rate; using _rate_multiplier_type = float; _rate_multiplier_type rate_multiplier; using _tx_rate_avg_type = float; _tx_rate_avg_type tx_rate_avg; using _tx_error_rate_avg_type = float; _tx_error_rate_avg_type tx_error_rate_avg; using _tx_message_count_type = uint32_t; _tx_message_count_type tx_message_count; using _tx_buffer_overruns_type = uint32_t; _tx_buffer_overruns_type tx_buffer_overruns; using _rx_rate_avg_type = float; _rx_rate_avg_type rx_rate_avg; using _rx_message_count_type = uint32_t; _rx_message_count_type rx_message_count; using _rx_message_count_supported_type = uint32_t; _rx_message_count_supported_type rx_message_count_supported; using _rx_message_lost_count_type = uint32_t; _rx_message_lost_count_type rx_message_lost_count; using _rx_buffer_overruns_type = uint32_t; _rx_buffer_overruns_type rx_buffer_overruns; using _rx_parse_errors_type = uint32_t; _rx_parse_errors_type rx_parse_errors; using _rx_packet_drop_count_type = uint32_t; _rx_packet_drop_count_type rx_packet_drop_count; using _rx_message_lost_rate_type = float; _rx_message_lost_rate_type rx_message_lost_rate; using _heartbeat_type_antenna_tracker_type = bool; _heartbeat_type_antenna_tracker_type heartbeat_type_antenna_tracker; using _heartbeat_type_gcs_type = bool; _heartbeat_type_gcs_type heartbeat_type_gcs; using _heartbeat_type_onboard_controller_type = bool; _heartbeat_type_onboard_controller_type heartbeat_type_onboard_controller; using _heartbeat_type_gimbal_type = bool; _heartbeat_type_gimbal_type heartbeat_type_gimbal; using _heartbeat_type_adsb_type = bool; _heartbeat_type_adsb_type heartbeat_type_adsb; using _heartbeat_type_camera_type = bool; _heartbeat_type_camera_type heartbeat_type_camera; using _heartbeat_component_telemetry_radio_type = bool; _heartbeat_component_telemetry_radio_type heartbeat_component_telemetry_radio; using _heartbeat_component_log_type = bool; _heartbeat_component_log_type heartbeat_component_log; using _heartbeat_component_osd_type = bool; _heartbeat_component_osd_type heartbeat_component_osd; using _heartbeat_component_obstacle_avoidance_type = bool; _heartbeat_component_obstacle_avoidance_type heartbeat_component_obstacle_avoidance; using _heartbeat_component_vio_type = bool; _heartbeat_component_vio_type heartbeat_component_vio; using _heartbeat_component_pairing_manager_type = bool; _heartbeat_component_pairing_manager_type heartbeat_component_pairing_manager; using _heartbeat_component_udp_bridge_type = bool; _heartbeat_component_udp_bridge_type heartbeat_component_udp_bridge; using _heartbeat_component_uart_bridge_type = bool; _heartbeat_component_uart_bridge_type heartbeat_component_uart_bridge; using _avoidance_system_healthy_type = bool; _avoidance_system_healthy_type avoidance_system_healthy; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__type( const uint8_t & _arg) { this->type = _arg; return *this; } Type & set__mode( const uint8_t & _arg) { this->mode = _arg; return *this; } Type & set__flow_control( const bool & _arg) { this->flow_control = _arg; return *this; } Type & set__forwarding( const bool & _arg) { this->forwarding = _arg; return *this; } Type & set__mavlink_v2( const bool & _arg) { this->mavlink_v2 = _arg; return *this; } Type & set__ftp( const bool & _arg) { this->ftp = _arg; return *this; } Type & set__streams( const uint8_t & _arg) { this->streams = _arg; return *this; } Type & set__data_rate( const float & _arg) { this->data_rate = _arg; return *this; } Type & set__rate_multiplier( const float & _arg) { this->rate_multiplier = _arg; return *this; } Type & set__tx_rate_avg( const float & _arg) { this->tx_rate_avg = _arg; return *this; } Type & set__tx_error_rate_avg( const float & _arg) { this->tx_error_rate_avg = _arg; return *this; } Type & set__tx_message_count( const uint32_t & _arg) { this->tx_message_count = _arg; return *this; } Type & set__tx_buffer_overruns( const uint32_t & _arg) { this->tx_buffer_overruns = _arg; return *this; } Type & set__rx_rate_avg( const float & _arg) { this->rx_rate_avg = _arg; return *this; } Type & set__rx_message_count( const uint32_t & _arg) { this->rx_message_count = _arg; return *this; } Type & set__rx_message_count_supported( const uint32_t & _arg) { this->rx_message_count_supported = _arg; return *this; } Type & set__rx_message_lost_count( const uint32_t & _arg) { this->rx_message_lost_count = _arg; return *this; } Type & set__rx_buffer_overruns( const uint32_t & _arg) { this->rx_buffer_overruns = _arg; return *this; } Type & set__rx_parse_errors( const uint32_t & _arg) { this->rx_parse_errors = _arg; return *this; } Type & set__rx_packet_drop_count( const uint32_t & _arg) { this->rx_packet_drop_count = _arg; return *this; } Type & set__rx_message_lost_rate( const float & _arg) { this->rx_message_lost_rate = _arg; return *this; } Type & set__heartbeat_type_antenna_tracker( const bool & _arg) { this->heartbeat_type_antenna_tracker = _arg; return *this; } Type & set__heartbeat_type_gcs( const bool & _arg) { this->heartbeat_type_gcs = _arg; return *this; } Type & set__heartbeat_type_onboard_controller( const bool & _arg) { this->heartbeat_type_onboard_controller = _arg; return *this; } Type & set__heartbeat_type_gimbal( const bool & _arg) { this->heartbeat_type_gimbal = _arg; return *this; } Type & set__heartbeat_type_adsb( const bool & _arg) { this->heartbeat_type_adsb = _arg; return *this; } Type & set__heartbeat_type_camera( const bool & _arg) { this->heartbeat_type_camera = _arg; return *this; } Type & set__heartbeat_component_telemetry_radio( const bool & _arg) { this->heartbeat_component_telemetry_radio = _arg; return *this; } Type & set__heartbeat_component_log( const bool & _arg) { this->heartbeat_component_log = _arg; return *this; } Type & set__heartbeat_component_osd( const bool & _arg) { this->heartbeat_component_osd = _arg; return *this; } Type & set__heartbeat_component_obstacle_avoidance( const bool & _arg) { this->heartbeat_component_obstacle_avoidance = _arg; return *this; } Type & set__heartbeat_component_vio( const bool & _arg) { this->heartbeat_component_vio = _arg; return *this; } Type & set__heartbeat_component_pairing_manager( const bool & _arg) { this->heartbeat_component_pairing_manager = _arg; return *this; } Type & set__heartbeat_component_udp_bridge( const bool & _arg) { this->heartbeat_component_udp_bridge = _arg; return *this; } Type & set__heartbeat_component_uart_bridge( const bool & _arg) { this->heartbeat_component_uart_bridge = _arg; return *this; } Type & set__avoidance_system_healthy( const bool & _arg) { this->avoidance_system_healthy = _arg; return *this; } // constant declarations static constexpr uint8_t LINK_TYPE_GENERIC = 0u; static constexpr uint8_t LINK_TYPE_UBIQUITY_BULLET = 1u; static constexpr uint8_t LINK_TYPE_WIRE = 2u; static constexpr uint8_t LINK_TYPE_USB = 3u; static constexpr uint8_t LINK_TYPE_IRIDIUM = 4u; static constexpr uint64_t HEARTBEAT_TIMEOUT_US = 1500000u; // pointer types using RawPtr = px4_msgs::msg::TelemetryStatus_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::TelemetryStatus_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::TelemetryStatus_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::TelemetryStatus_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::TelemetryStatus_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::TelemetryStatus_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::TelemetryStatus_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::TelemetryStatus_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::TelemetryStatus_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::TelemetryStatus_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__TelemetryStatus std::shared_ptr<px4_msgs::msg::TelemetryStatus_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__TelemetryStatus std::shared_ptr<px4_msgs::msg::TelemetryStatus_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const TelemetryStatus_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->type != other.type) { return false; } if (this->mode != other.mode) { return false; } if (this->flow_control != other.flow_control) { return false; } if (this->forwarding != other.forwarding) { return false; } if (this->mavlink_v2 != other.mavlink_v2) { return false; } if (this->ftp != other.ftp) { return false; } if (this->streams != other.streams) { return false; } if (this->data_rate != other.data_rate) { return false; } if (this->rate_multiplier != other.rate_multiplier) { return false; } if (this->tx_rate_avg != other.tx_rate_avg) { return false; } if (this->tx_error_rate_avg != other.tx_error_rate_avg) { return false; } if (this->tx_message_count != other.tx_message_count) { return false; } if (this->tx_buffer_overruns != other.tx_buffer_overruns) { return false; } if (this->rx_rate_avg != other.rx_rate_avg) { return false; } if (this->rx_message_count != other.rx_message_count) { return false; } if (this->rx_message_count_supported != other.rx_message_count_supported) { return false; } if (this->rx_message_lost_count != other.rx_message_lost_count) { return false; } if (this->rx_buffer_overruns != other.rx_buffer_overruns) { return false; } if (this->rx_parse_errors != other.rx_parse_errors) { return false; } if (this->rx_packet_drop_count != other.rx_packet_drop_count) { return false; } if (this->rx_message_lost_rate != other.rx_message_lost_rate) { return false; } if (this->heartbeat_type_antenna_tracker != other.heartbeat_type_antenna_tracker) { return false; } if (this->heartbeat_type_gcs != other.heartbeat_type_gcs) { return false; } if (this->heartbeat_type_onboard_controller != other.heartbeat_type_onboard_controller) { return false; } if (this->heartbeat_type_gimbal != other.heartbeat_type_gimbal) { return false; } if (this->heartbeat_type_adsb != other.heartbeat_type_adsb) { return false; } if (this->heartbeat_type_camera != other.heartbeat_type_camera) { return false; } if (this->heartbeat_component_telemetry_radio != other.heartbeat_component_telemetry_radio) { return false; } if (this->heartbeat_component_log != other.heartbeat_component_log) { return false; } if (this->heartbeat_component_osd != other.heartbeat_component_osd) { return false; } if (this->heartbeat_component_obstacle_avoidance != other.heartbeat_component_obstacle_avoidance) { return false; } if (this->heartbeat_component_vio != other.heartbeat_component_vio) { return false; } if (this->heartbeat_component_pairing_manager != other.heartbeat_component_pairing_manager) { return false; } if (this->heartbeat_component_udp_bridge != other.heartbeat_component_udp_bridge) { return false; } if (this->heartbeat_component_uart_bridge != other.heartbeat_component_uart_bridge) { return false; } if (this->avoidance_system_healthy != other.avoidance_system_healthy) { return false; } return true; } bool operator!=(const TelemetryStatus_ & other) const { return !this->operator==(other); } }; // struct TelemetryStatus_ // alias to use template instance with default allocator using TelemetryStatus = px4_msgs::msg::TelemetryStatus_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t TelemetryStatus_<ContainerAllocator>::LINK_TYPE_GENERIC; template<typename ContainerAllocator> constexpr uint8_t TelemetryStatus_<ContainerAllocator>::LINK_TYPE_UBIQUITY_BULLET; template<typename ContainerAllocator> constexpr uint8_t TelemetryStatus_<ContainerAllocator>::LINK_TYPE_WIRE; template<typename ContainerAllocator> constexpr uint8_t TelemetryStatus_<ContainerAllocator>::LINK_TYPE_USB; template<typename ContainerAllocator> constexpr uint8_t TelemetryStatus_<ContainerAllocator>::LINK_TYPE_IRIDIUM; template<typename ContainerAllocator> constexpr uint64_t TelemetryStatus_<ContainerAllocator>::HEARTBEAT_TIMEOUT_US; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__TELEMETRY_STATUS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/ping__rosidl_typesupport_introspection_cpp.hpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__rosidl_typesupport_introspection_cpp.h.em // with input from px4_msgs:msg/Ping.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__PING__ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_HPP_ #define PX4_MSGS__MSG__PING__ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_HPP_ #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" #ifdef __cplusplus extern "C" { #endif // TODO(dirk-thomas) these visibility macros should be message package specific ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, Ping)(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__PING__ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/sensor_gyro_fifo__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/SensorGyroFifo.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_GYRO_FIFO__STRUCT_HPP_ #define PX4_MSGS__MSG__SENSOR_GYRO_FIFO__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__SensorGyroFifo __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__SensorGyroFifo __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct SensorGyroFifo_ { using Type = SensorGyroFifo_<ContainerAllocator>; explicit SensorGyroFifo_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->device_id = 0ul; this->dt = 0.0f; this->scale = 0.0f; this->samples = 0; std::fill<typename std::array<int16_t, 32>::iterator, int16_t>(this->x.begin(), this->x.end(), 0); std::fill<typename std::array<int16_t, 32>::iterator, int16_t>(this->y.begin(), this->y.end(), 0); std::fill<typename std::array<int16_t, 32>::iterator, int16_t>(this->z.begin(), this->z.end(), 0); } } explicit SensorGyroFifo_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : x(_alloc), y(_alloc), z(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->device_id = 0ul; this->dt = 0.0f; this->scale = 0.0f; this->samples = 0; std::fill<typename std::array<int16_t, 32>::iterator, int16_t>(this->x.begin(), this->x.end(), 0); std::fill<typename std::array<int16_t, 32>::iterator, int16_t>(this->y.begin(), this->y.end(), 0); std::fill<typename std::array<int16_t, 32>::iterator, int16_t>(this->z.begin(), this->z.end(), 0); } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _timestamp_sample_type = uint64_t; _timestamp_sample_type timestamp_sample; using _device_id_type = uint32_t; _device_id_type device_id; using _dt_type = float; _dt_type dt; using _scale_type = float; _scale_type scale; using _samples_type = uint8_t; _samples_type samples; using _x_type = std::array<int16_t, 32>; _x_type x; using _y_type = std::array<int16_t, 32>; _y_type y; using _z_type = std::array<int16_t, 32>; _z_type z; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__timestamp_sample( const uint64_t & _arg) { this->timestamp_sample = _arg; return *this; } Type & set__device_id( const uint32_t & _arg) { this->device_id = _arg; return *this; } Type & set__dt( const float & _arg) { this->dt = _arg; return *this; } Type & set__scale( const float & _arg) { this->scale = _arg; return *this; } Type & set__samples( const uint8_t & _arg) { this->samples = _arg; return *this; } Type & set__x( const std::array<int16_t, 32> & _arg) { this->x = _arg; return *this; } Type & set__y( const std::array<int16_t, 32> & _arg) { this->y = _arg; return *this; } Type & set__z( const std::array<int16_t, 32> & _arg) { this->z = _arg; return *this; } // constant declarations static constexpr uint8_t ORB_QUEUE_LENGTH = 4u; // pointer types using RawPtr = px4_msgs::msg::SensorGyroFifo_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::SensorGyroFifo_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::SensorGyroFifo_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::SensorGyroFifo_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::SensorGyroFifo_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::SensorGyroFifo_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::SensorGyroFifo_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::SensorGyroFifo_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::SensorGyroFifo_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::SensorGyroFifo_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__SensorGyroFifo std::shared_ptr<px4_msgs::msg::SensorGyroFifo_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__SensorGyroFifo std::shared_ptr<px4_msgs::msg::SensorGyroFifo_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const SensorGyroFifo_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->timestamp_sample != other.timestamp_sample) { return false; } if (this->device_id != other.device_id) { return false; } if (this->dt != other.dt) { return false; } if (this->scale != other.scale) { return false; } if (this->samples != other.samples) { return false; } if (this->x != other.x) { return false; } if (this->y != other.y) { return false; } if (this->z != other.z) { return false; } return true; } bool operator!=(const SensorGyroFifo_ & other) const { return !this->operator==(other); } }; // struct SensorGyroFifo_ // alias to use template instance with default allocator using SensorGyroFifo = px4_msgs::msg::SensorGyroFifo_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t SensorGyroFifo_<ContainerAllocator>::ORB_QUEUE_LENGTH; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__SENSOR_GYRO_FIFO__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/actuator_controls4.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS4_HPP_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS4_HPP_ #include "px4_msgs/msg/actuator_controls4__struct.hpp" #include "px4_msgs/msg/actuator_controls4__traits.hpp" #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS4_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_wind__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/AirspeedWind.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/airspeed_wind__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/airspeed_wind__functions.h" #include "px4_msgs/msg/airspeed_wind__struct.h" #ifdef __cplusplus extern "C" { #endif void AirspeedWind__rosidl_typesupport_introspection_c__AirspeedWind_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__AirspeedWind__init(message_memory); } void AirspeedWind__rosidl_typesupport_introspection_c__AirspeedWind_fini_function(void * message_memory) { px4_msgs__msg__AirspeedWind__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember AirspeedWind__rosidl_typesupport_introspection_c__AirspeedWind_message_member_array[12] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__AirspeedWind, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__AirspeedWind, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "windspeed_north", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__AirspeedWind, windspeed_north), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "windspeed_east", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__AirspeedWind, windspeed_east), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "variance_north", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__AirspeedWind, variance_north), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "variance_east", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__AirspeedWind, variance_east), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "tas_innov", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__AirspeedWind, tas_innov), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "tas_innov_var", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__AirspeedWind, tas_innov_var), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "tas_scale", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__AirspeedWind, tas_scale), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "beta_innov", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__AirspeedWind, beta_innov), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "beta_innov_var", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__AirspeedWind, beta_innov_var), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "source", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__AirspeedWind, source), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers AirspeedWind__rosidl_typesupport_introspection_c__AirspeedWind_message_members = { "px4_msgs__msg", // message namespace "AirspeedWind", // message name 12, // number of fields sizeof(px4_msgs__msg__AirspeedWind), AirspeedWind__rosidl_typesupport_introspection_c__AirspeedWind_message_member_array, // message members AirspeedWind__rosidl_typesupport_introspection_c__AirspeedWind_init_function, // function to initialize message memory (memory has to be allocated) AirspeedWind__rosidl_typesupport_introspection_c__AirspeedWind_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t AirspeedWind__rosidl_typesupport_introspection_c__AirspeedWind_message_type_support_handle = { 0, &AirspeedWind__rosidl_typesupport_introspection_c__AirspeedWind_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, AirspeedWind)() { if (!AirspeedWind__rosidl_typesupport_introspection_c__AirspeedWind_message_type_support_handle.typesupport_identifier) { AirspeedWind__rosidl_typesupport_introspection_c__AirspeedWind_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &AirspeedWind__rosidl_typesupport_introspection_c__AirspeedWind_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/position_setpoint.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__POSITION_SETPOINT_HPP_ #define PX4_MSGS__MSG__POSITION_SETPOINT_HPP_ #include "px4_msgs/msg/position_setpoint__struct.hpp" #include "px4_msgs/msg/position_setpoint__traits.hpp" #endif // PX4_MSGS__MSG__POSITION_SETPOINT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/follow_target__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/FollowTarget.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/follow_target__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/follow_target__struct.h" #include "px4_msgs/msg/follow_target__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _FollowTarget__ros_msg_type = px4_msgs__msg__FollowTarget; static bool _FollowTarget__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _FollowTarget__ros_msg_type * ros_message = static_cast<const _FollowTarget__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: lat { cdr << ros_message->lat; } // Field name: lon { cdr << ros_message->lon; } // Field name: alt { cdr << ros_message->alt; } // Field name: vy { cdr << ros_message->vy; } // Field name: vx { cdr << ros_message->vx; } // Field name: vz { cdr << ros_message->vz; } // Field name: est_cap { cdr << ros_message->est_cap; } return true; } static bool _FollowTarget__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _FollowTarget__ros_msg_type * ros_message = static_cast<_FollowTarget__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: lat { cdr >> ros_message->lat; } // Field name: lon { cdr >> ros_message->lon; } // Field name: alt { cdr >> ros_message->alt; } // Field name: vy { cdr >> ros_message->vy; } // Field name: vx { cdr >> ros_message->vx; } // Field name: vz { cdr >> ros_message->vz; } // Field name: est_cap { cdr >> ros_message->est_cap; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__FollowTarget( const void * untyped_ros_message, size_t current_alignment) { const _FollowTarget__ros_msg_type * ros_message = static_cast<const _FollowTarget__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name lat { size_t item_size = sizeof(ros_message->lat); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name lon { size_t item_size = sizeof(ros_message->lon); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name alt { size_t item_size = sizeof(ros_message->alt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vy { size_t item_size = sizeof(ros_message->vy); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vx { size_t item_size = sizeof(ros_message->vx); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vz { size_t item_size = sizeof(ros_message->vz); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name est_cap { size_t item_size = sizeof(ros_message->est_cap); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _FollowTarget__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__FollowTarget( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__FollowTarget( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: lat { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: lon { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: alt { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: vy { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: vx { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: vz { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: est_cap { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _FollowTarget__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__FollowTarget( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_FollowTarget = { "px4_msgs::msg", "FollowTarget", _FollowTarget__cdr_serialize, _FollowTarget__cdr_deserialize, _FollowTarget__get_serialized_size, _FollowTarget__max_serialized_size }; static rosidl_message_type_support_t _FollowTarget__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_FollowTarget, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, FollowTarget)() { return &_FollowTarget__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/timesync.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/Timesync.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TIMESYNC_H_ #define PX4_MSGS__MSG__TIMESYNC_H_ #include "px4_msgs/msg/timesync__struct.h" #include "px4_msgs/msg/timesync__functions.h" #include "px4_msgs/msg/timesync__type_support.h" #endif // PX4_MSGS__MSG__TIMESYNC_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_gps.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/SensorGps.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_GPS_H_ #define PX4_MSGS__MSG__SENSOR_GPS_H_ #include "px4_msgs/msg/sensor_gps__struct.h" #include "px4_msgs/msg/sensor_gps__functions.h" #include "px4_msgs/msg/sensor_gps__type_support.h" #endif // PX4_MSGS__MSG__SENSOR_GPS_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/actuator_outputs.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_OUTPUTS_HPP_ #define PX4_MSGS__MSG__ACTUATOR_OUTPUTS_HPP_ #include "px4_msgs/msg/actuator_outputs__struct.hpp" #include "px4_msgs/msg/actuator_outputs__traits.hpp" #endif // PX4_MSGS__MSG__ACTUATOR_OUTPUTS_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_mocap_odometry.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_MOCAP_ODOMETRY_HPP_ #define PX4_MSGS__MSG__VEHICLE_MOCAP_ODOMETRY_HPP_ #include "px4_msgs/msg/vehicle_mocap_odometry__struct.hpp" #include "px4_msgs/msg/vehicle_mocap_odometry__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_MOCAP_ODOMETRY_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_capture__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/CameraCapture.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/camera_capture__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void CameraCapture_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::CameraCapture(_init); } void CameraCapture_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::CameraCapture *>(message_memory); typed_message->~CameraCapture(); } size_t size_function__CameraCapture__q(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__CameraCapture__q(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 4> *>(untyped_member); return &member[index]; } void * get_function__CameraCapture__q(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 4> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember CameraCapture_message_member_array[9] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::CameraCapture, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_utc", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::CameraCapture, timestamp_utc), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "seq", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::CameraCapture, seq), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "lat", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_DOUBLE, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::CameraCapture, lat), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "lon", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_DOUBLE, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::CameraCapture, lon), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "alt", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::CameraCapture, alt), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ground_distance", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::CameraCapture, ground_distance), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "q", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::CameraCapture, q), // bytes offset in struct nullptr, // default value size_function__CameraCapture__q, // size() function pointer get_const_function__CameraCapture__q, // get_const(index) function pointer get_function__CameraCapture__q, // get(index) function pointer nullptr // resize(index) function pointer }, { "result", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::CameraCapture, result), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers CameraCapture_message_members = { "px4_msgs::msg", // message namespace "CameraCapture", // message name 9, // number of fields sizeof(px4_msgs::msg::CameraCapture), CameraCapture_message_member_array, // message members CameraCapture_init_function, // function to initialize message memory (memory has to be allocated) CameraCapture_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t CameraCapture_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &CameraCapture_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::CameraCapture>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::CameraCapture_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, CameraCapture)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::CameraCapture_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_imu.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleImu.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_IMU_H_ #define PX4_MSGS__MSG__VEHICLE_IMU_H_ #include "px4_msgs/msg/vehicle_imu__struct.h" #include "px4_msgs/msg/vehicle_imu__functions.h" #include "px4_msgs/msg/vehicle_imu__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_IMU_H_ <file_sep>/build/ros1_bridge/colcon_command_prefix_build.sh # generated from colcon_core/shell/template/command_prefix.sh.em . "/home/navlab-tx2-4/px4_ros_com_ros2/install/multi_rtd_interfaces/share/multi_rtd_interfaces/package.sh" . "/home/navlab-tx2-4/px4_ros_com_ros2/install/px4_msgs/share/px4_msgs/package.sh" <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/transponder_report__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/TransponderReport.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/transponder_report__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/transponder_report__functions.h" #include "px4_msgs/msg/transponder_report__struct.h" #ifdef __cplusplus extern "C" { #endif void TransponderReport__rosidl_typesupport_introspection_c__TransponderReport_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__TransponderReport__init(message_memory); } void TransponderReport__rosidl_typesupport_introspection_c__TransponderReport_fini_function(void * message_memory) { px4_msgs__msg__TransponderReport__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember TransponderReport__rosidl_typesupport_introspection_c__TransponderReport_message_member_array[15] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TransponderReport, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "icao_address", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TransponderReport, icao_address), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "lat", // name rosidl_typesupport_introspection_c__ROS_TYPE_DOUBLE, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TransponderReport, lat), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "lon", // name rosidl_typesupport_introspection_c__ROS_TYPE_DOUBLE, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TransponderReport, lon), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "altitude_type", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TransponderReport, altitude_type), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "altitude", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TransponderReport, altitude), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "heading", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TransponderReport, heading), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "hor_velocity", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TransponderReport, hor_velocity), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ver_velocity", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TransponderReport, ver_velocity), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "callsign", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message true, // is array 9, // array size false, // is upper bound offsetof(px4_msgs__msg__TransponderReport, callsign), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "emitter_type", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TransponderReport, emitter_type), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "tslc", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TransponderReport, tslc), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "flags", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TransponderReport, flags), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "squawk", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TransponderReport, squawk), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "uas_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message true, // is array 18, // array size false, // is upper bound offsetof(px4_msgs__msg__TransponderReport, uas_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers TransponderReport__rosidl_typesupport_introspection_c__TransponderReport_message_members = { "px4_msgs__msg", // message namespace "TransponderReport", // message name 15, // number of fields sizeof(px4_msgs__msg__TransponderReport), TransponderReport__rosidl_typesupport_introspection_c__TransponderReport_message_member_array, // message members TransponderReport__rosidl_typesupport_introspection_c__TransponderReport_init_function, // function to initialize message memory (memory has to be allocated) TransponderReport__rosidl_typesupport_introspection_c__TransponderReport_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t TransponderReport__rosidl_typesupport_introspection_c__TransponderReport_message_type_support_handle = { 0, &TransponderReport__rosidl_typesupport_introspection_c__TransponderReport_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, TransponderReport)() { if (!TransponderReport__rosidl_typesupport_introspection_c__TransponderReport_message_type_support_handle.typesupport_identifier) { TransponderReport__rosidl_typesupport_introspection_c__TransponderReport_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &TransponderReport__rosidl_typesupport_introspection_c__TransponderReport_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/px4_io_status__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/Px4IoStatus.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/px4_io_status__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/px4_io_status__functions.h" #include "px4_msgs/msg/px4_io_status__struct.h" #ifdef __cplusplus extern "C" { #endif void Px4IoStatus__rosidl_typesupport_introspection_c__Px4IoStatus_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__Px4IoStatus__init(message_memory); } void Px4IoStatus__rosidl_typesupport_introspection_c__Px4IoStatus_fini_function(void * message_memory) { px4_msgs__msg__Px4IoStatus__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember Px4IoStatus__rosidl_typesupport_introspection_c__Px4IoStatus_message_member_array[43] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "free_memory_bytes", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, free_memory_bytes), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "voltage_v", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, voltage_v), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rssi_v", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, rssi_v), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "status_outputs_armed", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, status_outputs_armed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "status_override", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, status_override), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "status_rc_ok", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, status_rc_ok), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "status_rc_ppm", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, status_rc_ppm), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "status_rc_dsm", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, status_rc_dsm), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "status_rc_sbus", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, status_rc_sbus), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "status_fmu_ok", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, status_fmu_ok), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "status_raw_pwm", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, status_raw_pwm), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "status_mixer_ok", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, status_mixer_ok), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "status_arm_sync", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, status_arm_sync), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "status_init_ok", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, status_init_ok), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "status_failsafe", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, status_failsafe), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "status_safety_off", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, status_safety_off), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "status_fmu_initialized", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, status_fmu_initialized), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "status_rc_st24", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, status_rc_st24), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "status_rc_sumd", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, status_rc_sumd), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "alarm_vbatt_low", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, alarm_vbatt_low), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "alarm_temperature", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, alarm_temperature), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "alarm_servo_current", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, alarm_servo_current), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "alarm_acc_current", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, alarm_acc_current), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "alarm_fmu_lost", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, alarm_fmu_lost), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "alarm_rc_lost", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, alarm_rc_lost), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "alarm_pwm_error", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, alarm_pwm_error), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "alarm_vservo_fault", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, alarm_vservo_fault), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "arming_io_arm_ok", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, arming_io_arm_ok), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "arming_fmu_armed", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, arming_fmu_armed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "arming_fmu_prearmed", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, arming_fmu_prearmed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "arming_manual_override_ok", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, arming_manual_override_ok), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "arming_failsafe_custom", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, arming_failsafe_custom), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "arming_inair_restart_ok", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, arming_inair_restart_ok), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "arming_always_pwm_enable", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, arming_always_pwm_enable), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "arming_rc_handling_disabled", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, arming_rc_handling_disabled), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "arming_lockdown", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, arming_lockdown), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "arming_force_failsafe", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, arming_force_failsafe), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "arming_termination_failsafe", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, arming_termination_failsafe), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "arming_override_immediate", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, arming_override_immediate), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "actuators", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT16, // type 0, // upper bound of string NULL, // members of sub message true, // is array 8, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, actuators), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "servos", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message true, // is array 8, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, servos), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "raw_inputs", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message true, // is array 18, // array size false, // is upper bound offsetof(px4_msgs__msg__Px4IoStatus, raw_inputs), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers Px4IoStatus__rosidl_typesupport_introspection_c__Px4IoStatus_message_members = { "px4_msgs__msg", // message namespace "Px4IoStatus", // message name 43, // number of fields sizeof(px4_msgs__msg__Px4IoStatus), Px4IoStatus__rosidl_typesupport_introspection_c__Px4IoStatus_message_member_array, // message members Px4IoStatus__rosidl_typesupport_introspection_c__Px4IoStatus_init_function, // function to initialize message memory (memory has to be allocated) Px4IoStatus__rosidl_typesupport_introspection_c__Px4IoStatus_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t Px4IoStatus__rosidl_typesupport_introspection_c__Px4IoStatus_message_type_support_handle = { 0, &Px4IoStatus__rosidl_typesupport_introspection_c__Px4IoStatus_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, Px4IoStatus)() { if (!Px4IoStatus__rosidl_typesupport_introspection_c__Px4IoStatus_message_type_support_handle.typesupport_identifier) { Px4IoStatus__rosidl_typesupport_introspection_c__Px4IoStatus_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &Px4IoStatus__rosidl_typesupport_introspection_c__Px4IoStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/estimator_visual_odometry_aligned.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_VISUAL_ODOMETRY_ALIGNED_HPP_ #define PX4_MSGS__MSG__ESTIMATOR_VISUAL_ODOMETRY_ALIGNED_HPP_ #include "px4_msgs/msg/estimator_visual_odometry_aligned__struct.hpp" #include "px4_msgs/msg/estimator_visual_odometry_aligned__traits.hpp" #endif // PX4_MSGS__MSG__ESTIMATOR_VISUAL_ODOMETRY_ALIGNED_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/UlogStream.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/ulog_stream__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/ulog_stream__struct.h" #include "px4_msgs/msg/ulog_stream__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _UlogStream__ros_msg_type = px4_msgs__msg__UlogStream; static bool _UlogStream__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _UlogStream__ros_msg_type * ros_message = static_cast<const _UlogStream__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: length { cdr << ros_message->length; } // Field name: first_message_offset { cdr << ros_message->first_message_offset; } // Field name: msg_sequence { cdr << ros_message->msg_sequence; } // Field name: flags { cdr << ros_message->flags; } // Field name: data { size_t size = 249; auto array_ptr = ros_message->data; cdr.serializeArray(array_ptr, size); } return true; } static bool _UlogStream__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _UlogStream__ros_msg_type * ros_message = static_cast<_UlogStream__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: length { cdr >> ros_message->length; } // Field name: first_message_offset { cdr >> ros_message->first_message_offset; } // Field name: msg_sequence { cdr >> ros_message->msg_sequence; } // Field name: flags { cdr >> ros_message->flags; } // Field name: data { size_t size = 249; auto array_ptr = ros_message->data; cdr.deserializeArray(array_ptr, size); } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__UlogStream( const void * untyped_ros_message, size_t current_alignment) { const _UlogStream__ros_msg_type * ros_message = static_cast<const _UlogStream__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name length { size_t item_size = sizeof(ros_message->length); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name first_message_offset { size_t item_size = sizeof(ros_message->first_message_offset); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name msg_sequence { size_t item_size = sizeof(ros_message->msg_sequence); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name flags { size_t item_size = sizeof(ros_message->flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name data { size_t array_size = 249; auto array_ptr = ros_message->data; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _UlogStream__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__UlogStream( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__UlogStream( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: length { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: first_message_offset { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: msg_sequence { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: data { size_t array_size = 249; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _UlogStream__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__UlogStream( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_UlogStream = { "px4_msgs::msg", "UlogStream", _UlogStream__cdr_serialize, _UlogStream__cdr_deserialize, _UlogStream__get_serialized_size, _UlogStream__max_serialized_size }; static rosidl_message_type_support_t _UlogStream__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_UlogStream, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, UlogStream)() { return &_UlogStream__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_innovations__rosidl_typesupport_fastrtps_c.h // generated from rosidl_typesupport_fastrtps_c/resource/idl__rosidl_typesupport_fastrtps_c.h.em // with input from px4_msgs:msg/LandingTargetInnovations.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__LANDING_TARGET_INNOVATIONS__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #define PX4_MSGS__MSG__LANDING_TARGET_INNOVATIONS__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #include <stddef.h> #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__LandingTargetInnovations( const void * untyped_ros_message, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__LandingTargetInnovations( bool & full_bounded, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, LandingTargetInnovations)(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__LANDING_TARGET_INNOVATIONS__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/generator_status__type_support.h // generated from rosidl_generator_c/resource/idl__type_support.h.em // with input from px4_msgs:msg/GeneratorStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GENERATOR_STATUS__TYPE_SUPPORT_H_ #define PX4_MSGS__MSG__GENERATOR_STATUS__TYPE_SUPPORT_H_ #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #ifdef __cplusplus extern "C" { #endif #include "rosidl_generator_c/message_type_support_struct.h" // Forward declare the get type support functions for this type. ROSIDL_GENERATOR_C_PUBLIC_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME( rosidl_typesupport_c, px4_msgs, msg, GeneratorStatus )(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__GENERATOR_STATUS__TYPE_SUPPORT_H_ <file_sep>/build/multi_rtd_interfaces/CMakeFiles/multi_rtd_interfaces__rosidl_typesupport_cpp.dir/cmake_clean.cmake file(REMOVE_RECURSE "rosidl_typesupport_cpp/multi_rtd_interfaces/msg/robot_trajectory__type_support.cpp" "CMakeFiles/multi_rtd_interfaces__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/multi_rtd_interfaces/msg/robot_trajectory__type_support.cpp.o" "libmulti_rtd_interfaces__rosidl_typesupport_cpp.pdb" "libmulti_rtd_interfaces__rosidl_typesupport_cpp.so" ) # Per-language clean rules from dependency scanning. foreach(lang CXX) include(CMakeFiles/multi_rtd_interfaces__rosidl_typesupport_cpp.dir/cmake_clean_${lang}.cmake OPTIONAL) endforeach() <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_controls2__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/ActuatorControls2.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS2__STRUCT_H_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS2__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'NUM_ACTUATOR_CONTROLS'. enum { px4_msgs__msg__ActuatorControls2__NUM_ACTUATOR_CONTROLS = 8 }; /// Constant 'NUM_ACTUATOR_CONTROL_GROUPS'. enum { px4_msgs__msg__ActuatorControls2__NUM_ACTUATOR_CONTROL_GROUPS = 6 }; /// Constant 'INDEX_ROLL'. enum { px4_msgs__msg__ActuatorControls2__INDEX_ROLL = 0 }; /// Constant 'INDEX_PITCH'. enum { px4_msgs__msg__ActuatorControls2__INDEX_PITCH = 1 }; /// Constant 'INDEX_YAW'. enum { px4_msgs__msg__ActuatorControls2__INDEX_YAW = 2 }; /// Constant 'INDEX_THROTTLE'. enum { px4_msgs__msg__ActuatorControls2__INDEX_THROTTLE = 3 }; /// Constant 'INDEX_FLAPS'. enum { px4_msgs__msg__ActuatorControls2__INDEX_FLAPS = 4 }; /// Constant 'INDEX_SPOILERS'. enum { px4_msgs__msg__ActuatorControls2__INDEX_SPOILERS = 5 }; /// Constant 'INDEX_AIRBRAKES'. enum { px4_msgs__msg__ActuatorControls2__INDEX_AIRBRAKES = 6 }; /// Constant 'INDEX_LANDING_GEAR'. enum { px4_msgs__msg__ActuatorControls2__INDEX_LANDING_GEAR = 7 }; /// Constant 'INDEX_GIMBAL_SHUTTER'. enum { px4_msgs__msg__ActuatorControls2__INDEX_GIMBAL_SHUTTER = 3 }; /// Constant 'INDEX_CAMERA_ZOOM'. enum { px4_msgs__msg__ActuatorControls2__INDEX_CAMERA_ZOOM = 4 }; /// Constant 'GROUP_INDEX_ATTITUDE'. enum { px4_msgs__msg__ActuatorControls2__GROUP_INDEX_ATTITUDE = 0 }; /// Constant 'GROUP_INDEX_ATTITUDE_ALTERNATE'. enum { px4_msgs__msg__ActuatorControls2__GROUP_INDEX_ATTITUDE_ALTERNATE = 1 }; /// Constant 'GROUP_INDEX_GIMBAL'. enum { px4_msgs__msg__ActuatorControls2__GROUP_INDEX_GIMBAL = 2 }; /// Constant 'GROUP_INDEX_MANUAL_PASSTHROUGH'. enum { px4_msgs__msg__ActuatorControls2__GROUP_INDEX_MANUAL_PASSTHROUGH = 3 }; /// Constant 'GROUP_INDEX_ALLOCATED_PART1'. enum { px4_msgs__msg__ActuatorControls2__GROUP_INDEX_ALLOCATED_PART1 = 4 }; /// Constant 'GROUP_INDEX_ALLOCATED_PART2'. enum { px4_msgs__msg__ActuatorControls2__GROUP_INDEX_ALLOCATED_PART2 = 5 }; /// Constant 'GROUP_INDEX_PAYLOAD'. enum { px4_msgs__msg__ActuatorControls2__GROUP_INDEX_PAYLOAD = 6 }; // Struct defined in msg/ActuatorControls2 in the package px4_msgs. typedef struct px4_msgs__msg__ActuatorControls2 { uint64_t timestamp; uint64_t timestamp_sample; float control[8]; } px4_msgs__msg__ActuatorControls2; // Struct for a sequence of px4_msgs__msg__ActuatorControls2. typedef struct px4_msgs__msg__ActuatorControls2__Sequence { px4_msgs__msg__ActuatorControls2 * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__ActuatorControls2__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS2__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_status__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/PositionControllerStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/position_controller_status__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/position_controller_status__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::PositionControllerStatus & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: nav_roll cdr << ros_message.nav_roll; // Member: nav_pitch cdr << ros_message.nav_pitch; // Member: nav_bearing cdr << ros_message.nav_bearing; // Member: target_bearing cdr << ros_message.target_bearing; // Member: xtrack_error cdr << ros_message.xtrack_error; // Member: wp_dist cdr << ros_message.wp_dist; // Member: acceptance_radius cdr << ros_message.acceptance_radius; // Member: yaw_acceptance cdr << ros_message.yaw_acceptance; // Member: altitude_acceptance cdr << ros_message.altitude_acceptance; // Member: type cdr << ros_message.type; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::PositionControllerStatus & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: nav_roll cdr >> ros_message.nav_roll; // Member: nav_pitch cdr >> ros_message.nav_pitch; // Member: nav_bearing cdr >> ros_message.nav_bearing; // Member: target_bearing cdr >> ros_message.target_bearing; // Member: xtrack_error cdr >> ros_message.xtrack_error; // Member: wp_dist cdr >> ros_message.wp_dist; // Member: acceptance_radius cdr >> ros_message.acceptance_radius; // Member: yaw_acceptance cdr >> ros_message.yaw_acceptance; // Member: altitude_acceptance cdr >> ros_message.altitude_acceptance; // Member: type cdr >> ros_message.type; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::PositionControllerStatus & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: nav_roll { size_t item_size = sizeof(ros_message.nav_roll); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: nav_pitch { size_t item_size = sizeof(ros_message.nav_pitch); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: nav_bearing { size_t item_size = sizeof(ros_message.nav_bearing); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: target_bearing { size_t item_size = sizeof(ros_message.target_bearing); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: xtrack_error { size_t item_size = sizeof(ros_message.xtrack_error); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: wp_dist { size_t item_size = sizeof(ros_message.wp_dist); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: acceptance_radius { size_t item_size = sizeof(ros_message.acceptance_radius); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: yaw_acceptance { size_t item_size = sizeof(ros_message.yaw_acceptance); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: altitude_acceptance { size_t item_size = sizeof(ros_message.altitude_acceptance); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: type { size_t item_size = sizeof(ros_message.type); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_PositionControllerStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: nav_roll { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: nav_pitch { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: nav_bearing { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: target_bearing { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: xtrack_error { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: wp_dist { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: acceptance_radius { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: yaw_acceptance { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: altitude_acceptance { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: type { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _PositionControllerStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::PositionControllerStatus *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _PositionControllerStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::PositionControllerStatus *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _PositionControllerStatus__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::PositionControllerStatus *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _PositionControllerStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_PositionControllerStatus(full_bounded, 0); } static message_type_support_callbacks_t _PositionControllerStatus__callbacks = { "px4_msgs::msg", "PositionControllerStatus", _PositionControllerStatus__cdr_serialize, _PositionControllerStatus__cdr_deserialize, _PositionControllerStatus__get_serialized_size, _PositionControllerStatus__max_serialized_size }; static rosidl_message_type_support_t _PositionControllerStatus__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_PositionControllerStatus__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::PositionControllerStatus>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_PositionControllerStatus__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, PositionControllerStatus)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_PositionControllerStatus__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/px4_io_status__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/Px4IoStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__PX4_IO_STATUS__STRUCT_H_ #define PX4_MSGS__MSG__PX4_IO_STATUS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/Px4IoStatus in the package px4_msgs. typedef struct px4_msgs__msg__Px4IoStatus { uint64_t timestamp; uint16_t free_memory_bytes; float voltage_v; float rssi_v; bool status_outputs_armed; bool status_override; bool status_rc_ok; bool status_rc_ppm; bool status_rc_dsm; bool status_rc_sbus; bool status_fmu_ok; bool status_raw_pwm; bool status_mixer_ok; bool status_arm_sync; bool status_init_ok; bool status_failsafe; bool status_safety_off; bool status_fmu_initialized; bool status_rc_st24; bool status_rc_sumd; bool alarm_vbatt_low; bool alarm_temperature; bool alarm_servo_current; bool alarm_acc_current; bool alarm_fmu_lost; bool alarm_rc_lost; bool alarm_pwm_error; bool alarm_vservo_fault; bool arming_io_arm_ok; bool arming_fmu_armed; bool arming_fmu_prearmed; bool arming_manual_override_ok; bool arming_failsafe_custom; bool arming_inair_restart_ok; bool arming_always_pwm_enable; bool arming_rc_handling_disabled; bool arming_lockdown; bool arming_force_failsafe; bool arming_termination_failsafe; bool arming_override_immediate; int16_t actuators[8]; uint16_t servos[8]; uint16_t raw_inputs[18]; } px4_msgs__msg__Px4IoStatus; // Struct for a sequence of px4_msgs__msg__Px4IoStatus. typedef struct px4_msgs__msg__Px4IoStatus__Sequence { px4_msgs__msg__Px4IoStatus * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__Px4IoStatus__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__PX4_IO_STATUS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_attitude_groundtruth__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleAttitudeGroundtruth.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ATTITUDE_GROUNDTRUTH__STRUCT_H_ #define PX4_MSGS__MSG__VEHICLE_ATTITUDE_GROUNDTRUTH__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/VehicleAttitudeGroundtruth in the package px4_msgs. typedef struct px4_msgs__msg__VehicleAttitudeGroundtruth { uint64_t timestamp; uint64_t timestamp_sample; float q[4]; float delta_q_reset[4]; uint8_t quat_reset_counter; } px4_msgs__msg__VehicleAttitudeGroundtruth; // Struct for a sequence of px4_msgs__msg__VehicleAttitudeGroundtruth. typedef struct px4_msgs__msg__VehicleAttitudeGroundtruth__Sequence { px4_msgs__msg__VehicleAttitudeGroundtruth * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__VehicleAttitudeGroundtruth__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_ATTITUDE_GROUNDTRUTH__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/hover_thrust_estimate__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/HoverThrustEstimate.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/hover_thrust_estimate__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/hover_thrust_estimate__struct.h" #include "px4_msgs/msg/hover_thrust_estimate__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _HoverThrustEstimate__ros_msg_type = px4_msgs__msg__HoverThrustEstimate; static bool _HoverThrustEstimate__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _HoverThrustEstimate__ros_msg_type * ros_message = static_cast<const _HoverThrustEstimate__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: timestamp_sample { cdr << ros_message->timestamp_sample; } // Field name: hover_thrust { cdr << ros_message->hover_thrust; } // Field name: hover_thrust_var { cdr << ros_message->hover_thrust_var; } // Field name: accel_innov { cdr << ros_message->accel_innov; } // Field name: accel_innov_var { cdr << ros_message->accel_innov_var; } // Field name: accel_innov_test_ratio { cdr << ros_message->accel_innov_test_ratio; } // Field name: accel_noise_var { cdr << ros_message->accel_noise_var; } // Field name: valid { cdr << (ros_message->valid ? true : false); } return true; } static bool _HoverThrustEstimate__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _HoverThrustEstimate__ros_msg_type * ros_message = static_cast<_HoverThrustEstimate__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: timestamp_sample { cdr >> ros_message->timestamp_sample; } // Field name: hover_thrust { cdr >> ros_message->hover_thrust; } // Field name: hover_thrust_var { cdr >> ros_message->hover_thrust_var; } // Field name: accel_innov { cdr >> ros_message->accel_innov; } // Field name: accel_innov_var { cdr >> ros_message->accel_innov_var; } // Field name: accel_innov_test_ratio { cdr >> ros_message->accel_innov_test_ratio; } // Field name: accel_noise_var { cdr >> ros_message->accel_noise_var; } // Field name: valid { uint8_t tmp; cdr >> tmp; ros_message->valid = tmp ? true : false; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__HoverThrustEstimate( const void * untyped_ros_message, size_t current_alignment) { const _HoverThrustEstimate__ros_msg_type * ros_message = static_cast<const _HoverThrustEstimate__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name timestamp_sample { size_t item_size = sizeof(ros_message->timestamp_sample); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name hover_thrust { size_t item_size = sizeof(ros_message->hover_thrust); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name hover_thrust_var { size_t item_size = sizeof(ros_message->hover_thrust_var); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name accel_innov { size_t item_size = sizeof(ros_message->accel_innov); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name accel_innov_var { size_t item_size = sizeof(ros_message->accel_innov_var); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name accel_innov_test_ratio { size_t item_size = sizeof(ros_message->accel_innov_test_ratio); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name accel_noise_var { size_t item_size = sizeof(ros_message->accel_noise_var); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name valid { size_t item_size = sizeof(ros_message->valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _HoverThrustEstimate__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__HoverThrustEstimate( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__HoverThrustEstimate( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: timestamp_sample { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: hover_thrust { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: hover_thrust_var { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: accel_innov { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: accel_innov_var { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: accel_innov_test_ratio { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: accel_noise_var { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _HoverThrustEstimate__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__HoverThrustEstimate( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_HoverThrustEstimate = { "px4_msgs::msg", "HoverThrustEstimate", _HoverThrustEstimate__cdr_serialize, _HoverThrustEstimate__cdr_deserialize, _HoverThrustEstimate__get_serialized_size, _HoverThrustEstimate__max_serialized_size }; static rosidl_message_type_support_t _HoverThrustEstimate__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_HoverThrustEstimate, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, HoverThrustEstimate)() { return &_HoverThrustEstimate__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/estimator_local_position__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/EstimatorLocalPosition.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_LOCAL_POSITION__STRUCT_HPP_ #define PX4_MSGS__MSG__ESTIMATOR_LOCAL_POSITION__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__EstimatorLocalPosition __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__EstimatorLocalPosition __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct EstimatorLocalPosition_ { using Type = EstimatorLocalPosition_<ContainerAllocator>; explicit EstimatorLocalPosition_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->xy_valid = false; this->z_valid = false; this->v_xy_valid = false; this->v_z_valid = false; this->x = 0.0f; this->y = 0.0f; this->z = 0.0f; std::fill<typename std::array<float, 2>::iterator, float>(this->delta_xy.begin(), this->delta_xy.end(), 0.0f); this->xy_reset_counter = 0; this->delta_z = 0.0f; this->z_reset_counter = 0; this->vx = 0.0f; this->vy = 0.0f; this->vz = 0.0f; this->z_deriv = 0.0f; std::fill<typename std::array<float, 2>::iterator, float>(this->delta_vxy.begin(), this->delta_vxy.end(), 0.0f); this->vxy_reset_counter = 0; this->delta_vz = 0.0f; this->vz_reset_counter = 0; this->ax = 0.0f; this->ay = 0.0f; this->az = 0.0f; this->heading = 0.0f; this->delta_heading = 0.0f; this->heading_reset_counter = 0; this->xy_global = false; this->z_global = false; this->ref_timestamp = 0ull; this->ref_lat = 0.0; this->ref_lon = 0.0; this->ref_alt = 0.0f; this->dist_bottom = 0.0f; this->dist_bottom_valid = false; this->dist_bottom_sensor_bitfield = 0; this->eph = 0.0f; this->epv = 0.0f; this->evh = 0.0f; this->evv = 0.0f; this->vxy_max = 0.0f; this->vz_max = 0.0f; this->hagl_min = 0.0f; this->hagl_max = 0.0f; } } explicit EstimatorLocalPosition_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : delta_xy(_alloc), delta_vxy(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->xy_valid = false; this->z_valid = false; this->v_xy_valid = false; this->v_z_valid = false; this->x = 0.0f; this->y = 0.0f; this->z = 0.0f; std::fill<typename std::array<float, 2>::iterator, float>(this->delta_xy.begin(), this->delta_xy.end(), 0.0f); this->xy_reset_counter = 0; this->delta_z = 0.0f; this->z_reset_counter = 0; this->vx = 0.0f; this->vy = 0.0f; this->vz = 0.0f; this->z_deriv = 0.0f; std::fill<typename std::array<float, 2>::iterator, float>(this->delta_vxy.begin(), this->delta_vxy.end(), 0.0f); this->vxy_reset_counter = 0; this->delta_vz = 0.0f; this->vz_reset_counter = 0; this->ax = 0.0f; this->ay = 0.0f; this->az = 0.0f; this->heading = 0.0f; this->delta_heading = 0.0f; this->heading_reset_counter = 0; this->xy_global = false; this->z_global = false; this->ref_timestamp = 0ull; this->ref_lat = 0.0; this->ref_lon = 0.0; this->ref_alt = 0.0f; this->dist_bottom = 0.0f; this->dist_bottom_valid = false; this->dist_bottom_sensor_bitfield = 0; this->eph = 0.0f; this->epv = 0.0f; this->evh = 0.0f; this->evv = 0.0f; this->vxy_max = 0.0f; this->vz_max = 0.0f; this->hagl_min = 0.0f; this->hagl_max = 0.0f; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _timestamp_sample_type = uint64_t; _timestamp_sample_type timestamp_sample; using _xy_valid_type = bool; _xy_valid_type xy_valid; using _z_valid_type = bool; _z_valid_type z_valid; using _v_xy_valid_type = bool; _v_xy_valid_type v_xy_valid; using _v_z_valid_type = bool; _v_z_valid_type v_z_valid; using _x_type = float; _x_type x; using _y_type = float; _y_type y; using _z_type = float; _z_type z; using _delta_xy_type = std::array<float, 2>; _delta_xy_type delta_xy; using _xy_reset_counter_type = uint8_t; _xy_reset_counter_type xy_reset_counter; using _delta_z_type = float; _delta_z_type delta_z; using _z_reset_counter_type = uint8_t; _z_reset_counter_type z_reset_counter; using _vx_type = float; _vx_type vx; using _vy_type = float; _vy_type vy; using _vz_type = float; _vz_type vz; using _z_deriv_type = float; _z_deriv_type z_deriv; using _delta_vxy_type = std::array<float, 2>; _delta_vxy_type delta_vxy; using _vxy_reset_counter_type = uint8_t; _vxy_reset_counter_type vxy_reset_counter; using _delta_vz_type = float; _delta_vz_type delta_vz; using _vz_reset_counter_type = uint8_t; _vz_reset_counter_type vz_reset_counter; using _ax_type = float; _ax_type ax; using _ay_type = float; _ay_type ay; using _az_type = float; _az_type az; using _heading_type = float; _heading_type heading; using _delta_heading_type = float; _delta_heading_type delta_heading; using _heading_reset_counter_type = uint8_t; _heading_reset_counter_type heading_reset_counter; using _xy_global_type = bool; _xy_global_type xy_global; using _z_global_type = bool; _z_global_type z_global; using _ref_timestamp_type = uint64_t; _ref_timestamp_type ref_timestamp; using _ref_lat_type = double; _ref_lat_type ref_lat; using _ref_lon_type = double; _ref_lon_type ref_lon; using _ref_alt_type = float; _ref_alt_type ref_alt; using _dist_bottom_type = float; _dist_bottom_type dist_bottom; using _dist_bottom_valid_type = bool; _dist_bottom_valid_type dist_bottom_valid; using _dist_bottom_sensor_bitfield_type = uint8_t; _dist_bottom_sensor_bitfield_type dist_bottom_sensor_bitfield; using _eph_type = float; _eph_type eph; using _epv_type = float; _epv_type epv; using _evh_type = float; _evh_type evh; using _evv_type = float; _evv_type evv; using _vxy_max_type = float; _vxy_max_type vxy_max; using _vz_max_type = float; _vz_max_type vz_max; using _hagl_min_type = float; _hagl_min_type hagl_min; using _hagl_max_type = float; _hagl_max_type hagl_max; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__timestamp_sample( const uint64_t & _arg) { this->timestamp_sample = _arg; return *this; } Type & set__xy_valid( const bool & _arg) { this->xy_valid = _arg; return *this; } Type & set__z_valid( const bool & _arg) { this->z_valid = _arg; return *this; } Type & set__v_xy_valid( const bool & _arg) { this->v_xy_valid = _arg; return *this; } Type & set__v_z_valid( const bool & _arg) { this->v_z_valid = _arg; return *this; } Type & set__x( const float & _arg) { this->x = _arg; return *this; } Type & set__y( const float & _arg) { this->y = _arg; return *this; } Type & set__z( const float & _arg) { this->z = _arg; return *this; } Type & set__delta_xy( const std::array<float, 2> & _arg) { this->delta_xy = _arg; return *this; } Type & set__xy_reset_counter( const uint8_t & _arg) { this->xy_reset_counter = _arg; return *this; } Type & set__delta_z( const float & _arg) { this->delta_z = _arg; return *this; } Type & set__z_reset_counter( const uint8_t & _arg) { this->z_reset_counter = _arg; return *this; } Type & set__vx( const float & _arg) { this->vx = _arg; return *this; } Type & set__vy( const float & _arg) { this->vy = _arg; return *this; } Type & set__vz( const float & _arg) { this->vz = _arg; return *this; } Type & set__z_deriv( const float & _arg) { this->z_deriv = _arg; return *this; } Type & set__delta_vxy( const std::array<float, 2> & _arg) { this->delta_vxy = _arg; return *this; } Type & set__vxy_reset_counter( const uint8_t & _arg) { this->vxy_reset_counter = _arg; return *this; } Type & set__delta_vz( const float & _arg) { this->delta_vz = _arg; return *this; } Type & set__vz_reset_counter( const uint8_t & _arg) { this->vz_reset_counter = _arg; return *this; } Type & set__ax( const float & _arg) { this->ax = _arg; return *this; } Type & set__ay( const float & _arg) { this->ay = _arg; return *this; } Type & set__az( const float & _arg) { this->az = _arg; return *this; } Type & set__heading( const float & _arg) { this->heading = _arg; return *this; } Type & set__delta_heading( const float & _arg) { this->delta_heading = _arg; return *this; } Type & set__heading_reset_counter( const uint8_t & _arg) { this->heading_reset_counter = _arg; return *this; } Type & set__xy_global( const bool & _arg) { this->xy_global = _arg; return *this; } Type & set__z_global( const bool & _arg) { this->z_global = _arg; return *this; } Type & set__ref_timestamp( const uint64_t & _arg) { this->ref_timestamp = _arg; return *this; } Type & set__ref_lat( const double & _arg) { this->ref_lat = _arg; return *this; } Type & set__ref_lon( const double & _arg) { this->ref_lon = _arg; return *this; } Type & set__ref_alt( const float & _arg) { this->ref_alt = _arg; return *this; } Type & set__dist_bottom( const float & _arg) { this->dist_bottom = _arg; return *this; } Type & set__dist_bottom_valid( const bool & _arg) { this->dist_bottom_valid = _arg; return *this; } Type & set__dist_bottom_sensor_bitfield( const uint8_t & _arg) { this->dist_bottom_sensor_bitfield = _arg; return *this; } Type & set__eph( const float & _arg) { this->eph = _arg; return *this; } Type & set__epv( const float & _arg) { this->epv = _arg; return *this; } Type & set__evh( const float & _arg) { this->evh = _arg; return *this; } Type & set__evv( const float & _arg) { this->evv = _arg; return *this; } Type & set__vxy_max( const float & _arg) { this->vxy_max = _arg; return *this; } Type & set__vz_max( const float & _arg) { this->vz_max = _arg; return *this; } Type & set__hagl_min( const float & _arg) { this->hagl_min = _arg; return *this; } Type & set__hagl_max( const float & _arg) { this->hagl_max = _arg; return *this; } // constant declarations static constexpr uint8_t DIST_BOTTOM_SENSOR_NONE = 0u; static constexpr uint8_t DIST_BOTTOM_SENSOR_RANGE = 1u; static constexpr uint8_t DIST_BOTTOM_SENSOR_FLOW = 2u; // pointer types using RawPtr = px4_msgs::msg::EstimatorLocalPosition_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::EstimatorLocalPosition_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::EstimatorLocalPosition_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::EstimatorLocalPosition_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::EstimatorLocalPosition_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::EstimatorLocalPosition_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::EstimatorLocalPosition_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::EstimatorLocalPosition_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::EstimatorLocalPosition_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::EstimatorLocalPosition_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__EstimatorLocalPosition std::shared_ptr<px4_msgs::msg::EstimatorLocalPosition_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__EstimatorLocalPosition std::shared_ptr<px4_msgs::msg::EstimatorLocalPosition_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const EstimatorLocalPosition_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->timestamp_sample != other.timestamp_sample) { return false; } if (this->xy_valid != other.xy_valid) { return false; } if (this->z_valid != other.z_valid) { return false; } if (this->v_xy_valid != other.v_xy_valid) { return false; } if (this->v_z_valid != other.v_z_valid) { return false; } if (this->x != other.x) { return false; } if (this->y != other.y) { return false; } if (this->z != other.z) { return false; } if (this->delta_xy != other.delta_xy) { return false; } if (this->xy_reset_counter != other.xy_reset_counter) { return false; } if (this->delta_z != other.delta_z) { return false; } if (this->z_reset_counter != other.z_reset_counter) { return false; } if (this->vx != other.vx) { return false; } if (this->vy != other.vy) { return false; } if (this->vz != other.vz) { return false; } if (this->z_deriv != other.z_deriv) { return false; } if (this->delta_vxy != other.delta_vxy) { return false; } if (this->vxy_reset_counter != other.vxy_reset_counter) { return false; } if (this->delta_vz != other.delta_vz) { return false; } if (this->vz_reset_counter != other.vz_reset_counter) { return false; } if (this->ax != other.ax) { return false; } if (this->ay != other.ay) { return false; } if (this->az != other.az) { return false; } if (this->heading != other.heading) { return false; } if (this->delta_heading != other.delta_heading) { return false; } if (this->heading_reset_counter != other.heading_reset_counter) { return false; } if (this->xy_global != other.xy_global) { return false; } if (this->z_global != other.z_global) { return false; } if (this->ref_timestamp != other.ref_timestamp) { return false; } if (this->ref_lat != other.ref_lat) { return false; } if (this->ref_lon != other.ref_lon) { return false; } if (this->ref_alt != other.ref_alt) { return false; } if (this->dist_bottom != other.dist_bottom) { return false; } if (this->dist_bottom_valid != other.dist_bottom_valid) { return false; } if (this->dist_bottom_sensor_bitfield != other.dist_bottom_sensor_bitfield) { return false; } if (this->eph != other.eph) { return false; } if (this->epv != other.epv) { return false; } if (this->evh != other.evh) { return false; } if (this->evv != other.evv) { return false; } if (this->vxy_max != other.vxy_max) { return false; } if (this->vz_max != other.vz_max) { return false; } if (this->hagl_min != other.hagl_min) { return false; } if (this->hagl_max != other.hagl_max) { return false; } return true; } bool operator!=(const EstimatorLocalPosition_ & other) const { return !this->operator==(other); } }; // struct EstimatorLocalPosition_ // alias to use template instance with default allocator using EstimatorLocalPosition = px4_msgs::msg::EstimatorLocalPosition_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t EstimatorLocalPosition_<ContainerAllocator>::DIST_BOTTOM_SENSOR_NONE; template<typename ContainerAllocator> constexpr uint8_t EstimatorLocalPosition_<ContainerAllocator>::DIST_BOTTOM_SENSOR_RANGE; template<typename ContainerAllocator> constexpr uint8_t EstimatorLocalPosition_<ContainerAllocator>::DIST_BOTTOM_SENSOR_FLOW; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__ESTIMATOR_LOCAL_POSITION__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_estimator_event_flags.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/EstimatorEventFlags.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_EstimatorEventFlags(type): """Metaclass of message 'EstimatorEventFlags'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.EstimatorEventFlags') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__estimator_event_flags cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__estimator_event_flags cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__estimator_event_flags cls._TYPE_SUPPORT = module.type_support_msg__msg__estimator_event_flags cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__estimator_event_flags @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class EstimatorEventFlags(metaclass=Metaclass_EstimatorEventFlags): """Message class 'EstimatorEventFlags'.""" __slots__ = [ '_timestamp', '_timestamp_sample', '_information_event_changes', '_gps_checks_passed', '_reset_vel_to_gps', '_reset_vel_to_flow', '_reset_vel_to_vision', '_reset_vel_to_zero', '_reset_pos_to_last_known', '_reset_pos_to_gps', '_reset_pos_to_vision', '_starting_gps_fusion', '_starting_vision_pos_fusion', '_starting_vision_vel_fusion', '_starting_vision_yaw_fusion', '_yaw_aligned_to_imu_gps', '_warning_event_changes', '_gps_quality_poor', '_gps_fusion_timout', '_gps_data_stopped', '_gps_data_stopped_using_alternate', '_height_sensor_timeout', '_stopping_navigation', '_invalid_accel_bias_cov_reset', '_bad_yaw_using_gps_course', '_stopping_mag_use', '_vision_data_stopped', '_emergency_yaw_reset_mag_stopped', ] _fields_and_field_types = { 'timestamp': 'uint64', 'timestamp_sample': 'uint64', 'information_event_changes': 'uint32', 'gps_checks_passed': 'boolean', 'reset_vel_to_gps': 'boolean', 'reset_vel_to_flow': 'boolean', 'reset_vel_to_vision': 'boolean', 'reset_vel_to_zero': 'boolean', 'reset_pos_to_last_known': 'boolean', 'reset_pos_to_gps': 'boolean', 'reset_pos_to_vision': 'boolean', 'starting_gps_fusion': 'boolean', 'starting_vision_pos_fusion': 'boolean', 'starting_vision_vel_fusion': 'boolean', 'starting_vision_yaw_fusion': 'boolean', 'yaw_aligned_to_imu_gps': 'boolean', 'warning_event_changes': 'uint32', 'gps_quality_poor': 'boolean', 'gps_fusion_timout': 'boolean', 'gps_data_stopped': 'boolean', 'gps_data_stopped_using_alternate': 'boolean', 'height_sensor_timeout': 'boolean', 'stopping_navigation': 'boolean', 'invalid_accel_bias_cov_reset': 'boolean', 'bad_yaw_using_gps_course': 'boolean', 'stopping_mag_use': 'boolean', 'vision_data_stopped': 'boolean', 'emergency_yaw_reset_mag_stopped': 'boolean', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.timestamp_sample = kwargs.get('timestamp_sample', int()) self.information_event_changes = kwargs.get('information_event_changes', int()) self.gps_checks_passed = kwargs.get('gps_checks_passed', bool()) self.reset_vel_to_gps = kwargs.get('reset_vel_to_gps', bool()) self.reset_vel_to_flow = kwargs.get('reset_vel_to_flow', bool()) self.reset_vel_to_vision = kwargs.get('reset_vel_to_vision', bool()) self.reset_vel_to_zero = kwargs.get('reset_vel_to_zero', bool()) self.reset_pos_to_last_known = kwargs.get('reset_pos_to_last_known', bool()) self.reset_pos_to_gps = kwargs.get('reset_pos_to_gps', bool()) self.reset_pos_to_vision = kwargs.get('reset_pos_to_vision', bool()) self.starting_gps_fusion = kwargs.get('starting_gps_fusion', bool()) self.starting_vision_pos_fusion = kwargs.get('starting_vision_pos_fusion', bool()) self.starting_vision_vel_fusion = kwargs.get('starting_vision_vel_fusion', bool()) self.starting_vision_yaw_fusion = kwargs.get('starting_vision_yaw_fusion', bool()) self.yaw_aligned_to_imu_gps = kwargs.get('yaw_aligned_to_imu_gps', bool()) self.warning_event_changes = kwargs.get('warning_event_changes', int()) self.gps_quality_poor = kwargs.get('gps_quality_poor', bool()) self.gps_fusion_timout = kwargs.get('gps_fusion_timout', bool()) self.gps_data_stopped = kwargs.get('gps_data_stopped', bool()) self.gps_data_stopped_using_alternate = kwargs.get('gps_data_stopped_using_alternate', bool()) self.height_sensor_timeout = kwargs.get('height_sensor_timeout', bool()) self.stopping_navigation = kwargs.get('stopping_navigation', bool()) self.invalid_accel_bias_cov_reset = kwargs.get('invalid_accel_bias_cov_reset', bool()) self.bad_yaw_using_gps_course = kwargs.get('bad_yaw_using_gps_course', bool()) self.stopping_mag_use = kwargs.get('stopping_mag_use', bool()) self.vision_data_stopped = kwargs.get('vision_data_stopped', bool()) self.emergency_yaw_reset_mag_stopped = kwargs.get('emergency_yaw_reset_mag_stopped', bool()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.timestamp_sample != other.timestamp_sample: return False if self.information_event_changes != other.information_event_changes: return False if self.gps_checks_passed != other.gps_checks_passed: return False if self.reset_vel_to_gps != other.reset_vel_to_gps: return False if self.reset_vel_to_flow != other.reset_vel_to_flow: return False if self.reset_vel_to_vision != other.reset_vel_to_vision: return False if self.reset_vel_to_zero != other.reset_vel_to_zero: return False if self.reset_pos_to_last_known != other.reset_pos_to_last_known: return False if self.reset_pos_to_gps != other.reset_pos_to_gps: return False if self.reset_pos_to_vision != other.reset_pos_to_vision: return False if self.starting_gps_fusion != other.starting_gps_fusion: return False if self.starting_vision_pos_fusion != other.starting_vision_pos_fusion: return False if self.starting_vision_vel_fusion != other.starting_vision_vel_fusion: return False if self.starting_vision_yaw_fusion != other.starting_vision_yaw_fusion: return False if self.yaw_aligned_to_imu_gps != other.yaw_aligned_to_imu_gps: return False if self.warning_event_changes != other.warning_event_changes: return False if self.gps_quality_poor != other.gps_quality_poor: return False if self.gps_fusion_timout != other.gps_fusion_timout: return False if self.gps_data_stopped != other.gps_data_stopped: return False if self.gps_data_stopped_using_alternate != other.gps_data_stopped_using_alternate: return False if self.height_sensor_timeout != other.height_sensor_timeout: return False if self.stopping_navigation != other.stopping_navigation: return False if self.invalid_accel_bias_cov_reset != other.invalid_accel_bias_cov_reset: return False if self.bad_yaw_using_gps_course != other.bad_yaw_using_gps_course: return False if self.stopping_mag_use != other.stopping_mag_use: return False if self.vision_data_stopped != other.vision_data_stopped: return False if self.emergency_yaw_reset_mag_stopped != other.emergency_yaw_reset_mag_stopped: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def timestamp_sample(self): """Message field 'timestamp_sample'.""" return self._timestamp_sample @timestamp_sample.setter def timestamp_sample(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp_sample' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp_sample' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp_sample = value @property def information_event_changes(self): """Message field 'information_event_changes'.""" return self._information_event_changes @information_event_changes.setter def information_event_changes(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'information_event_changes' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'information_event_changes' field must be an unsigned integer in [0, 4294967295]" self._information_event_changes = value @property def gps_checks_passed(self): """Message field 'gps_checks_passed'.""" return self._gps_checks_passed @gps_checks_passed.setter def gps_checks_passed(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'gps_checks_passed' field must be of type 'bool'" self._gps_checks_passed = value @property def reset_vel_to_gps(self): """Message field 'reset_vel_to_gps'.""" return self._reset_vel_to_gps @reset_vel_to_gps.setter def reset_vel_to_gps(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'reset_vel_to_gps' field must be of type 'bool'" self._reset_vel_to_gps = value @property def reset_vel_to_flow(self): """Message field 'reset_vel_to_flow'.""" return self._reset_vel_to_flow @reset_vel_to_flow.setter def reset_vel_to_flow(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'reset_vel_to_flow' field must be of type 'bool'" self._reset_vel_to_flow = value @property def reset_vel_to_vision(self): """Message field 'reset_vel_to_vision'.""" return self._reset_vel_to_vision @reset_vel_to_vision.setter def reset_vel_to_vision(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'reset_vel_to_vision' field must be of type 'bool'" self._reset_vel_to_vision = value @property def reset_vel_to_zero(self): """Message field 'reset_vel_to_zero'.""" return self._reset_vel_to_zero @reset_vel_to_zero.setter def reset_vel_to_zero(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'reset_vel_to_zero' field must be of type 'bool'" self._reset_vel_to_zero = value @property def reset_pos_to_last_known(self): """Message field 'reset_pos_to_last_known'.""" return self._reset_pos_to_last_known @reset_pos_to_last_known.setter def reset_pos_to_last_known(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'reset_pos_to_last_known' field must be of type 'bool'" self._reset_pos_to_last_known = value @property def reset_pos_to_gps(self): """Message field 'reset_pos_to_gps'.""" return self._reset_pos_to_gps @reset_pos_to_gps.setter def reset_pos_to_gps(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'reset_pos_to_gps' field must be of type 'bool'" self._reset_pos_to_gps = value @property def reset_pos_to_vision(self): """Message field 'reset_pos_to_vision'.""" return self._reset_pos_to_vision @reset_pos_to_vision.setter def reset_pos_to_vision(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'reset_pos_to_vision' field must be of type 'bool'" self._reset_pos_to_vision = value @property def starting_gps_fusion(self): """Message field 'starting_gps_fusion'.""" return self._starting_gps_fusion @starting_gps_fusion.setter def starting_gps_fusion(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'starting_gps_fusion' field must be of type 'bool'" self._starting_gps_fusion = value @property def starting_vision_pos_fusion(self): """Message field 'starting_vision_pos_fusion'.""" return self._starting_vision_pos_fusion @starting_vision_pos_fusion.setter def starting_vision_pos_fusion(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'starting_vision_pos_fusion' field must be of type 'bool'" self._starting_vision_pos_fusion = value @property def starting_vision_vel_fusion(self): """Message field 'starting_vision_vel_fusion'.""" return self._starting_vision_vel_fusion @starting_vision_vel_fusion.setter def starting_vision_vel_fusion(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'starting_vision_vel_fusion' field must be of type 'bool'" self._starting_vision_vel_fusion = value @property def starting_vision_yaw_fusion(self): """Message field 'starting_vision_yaw_fusion'.""" return self._starting_vision_yaw_fusion @starting_vision_yaw_fusion.setter def starting_vision_yaw_fusion(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'starting_vision_yaw_fusion' field must be of type 'bool'" self._starting_vision_yaw_fusion = value @property def yaw_aligned_to_imu_gps(self): """Message field 'yaw_aligned_to_imu_gps'.""" return self._yaw_aligned_to_imu_gps @yaw_aligned_to_imu_gps.setter def yaw_aligned_to_imu_gps(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'yaw_aligned_to_imu_gps' field must be of type 'bool'" self._yaw_aligned_to_imu_gps = value @property def warning_event_changes(self): """Message field 'warning_event_changes'.""" return self._warning_event_changes @warning_event_changes.setter def warning_event_changes(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'warning_event_changes' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'warning_event_changes' field must be an unsigned integer in [0, 4294967295]" self._warning_event_changes = value @property def gps_quality_poor(self): """Message field 'gps_quality_poor'.""" return self._gps_quality_poor @gps_quality_poor.setter def gps_quality_poor(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'gps_quality_poor' field must be of type 'bool'" self._gps_quality_poor = value @property def gps_fusion_timout(self): """Message field 'gps_fusion_timout'.""" return self._gps_fusion_timout @gps_fusion_timout.setter def gps_fusion_timout(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'gps_fusion_timout' field must be of type 'bool'" self._gps_fusion_timout = value @property def gps_data_stopped(self): """Message field 'gps_data_stopped'.""" return self._gps_data_stopped @gps_data_stopped.setter def gps_data_stopped(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'gps_data_stopped' field must be of type 'bool'" self._gps_data_stopped = value @property def gps_data_stopped_using_alternate(self): """Message field 'gps_data_stopped_using_alternate'.""" return self._gps_data_stopped_using_alternate @gps_data_stopped_using_alternate.setter def gps_data_stopped_using_alternate(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'gps_data_stopped_using_alternate' field must be of type 'bool'" self._gps_data_stopped_using_alternate = value @property def height_sensor_timeout(self): """Message field 'height_sensor_timeout'.""" return self._height_sensor_timeout @height_sensor_timeout.setter def height_sensor_timeout(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'height_sensor_timeout' field must be of type 'bool'" self._height_sensor_timeout = value @property def stopping_navigation(self): """Message field 'stopping_navigation'.""" return self._stopping_navigation @stopping_navigation.setter def stopping_navigation(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'stopping_navigation' field must be of type 'bool'" self._stopping_navigation = value @property def invalid_accel_bias_cov_reset(self): """Message field 'invalid_accel_bias_cov_reset'.""" return self._invalid_accel_bias_cov_reset @invalid_accel_bias_cov_reset.setter def invalid_accel_bias_cov_reset(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'invalid_accel_bias_cov_reset' field must be of type 'bool'" self._invalid_accel_bias_cov_reset = value @property def bad_yaw_using_gps_course(self): """Message field 'bad_yaw_using_gps_course'.""" return self._bad_yaw_using_gps_course @bad_yaw_using_gps_course.setter def bad_yaw_using_gps_course(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'bad_yaw_using_gps_course' field must be of type 'bool'" self._bad_yaw_using_gps_course = value @property def stopping_mag_use(self): """Message field 'stopping_mag_use'.""" return self._stopping_mag_use @stopping_mag_use.setter def stopping_mag_use(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'stopping_mag_use' field must be of type 'bool'" self._stopping_mag_use = value @property def vision_data_stopped(self): """Message field 'vision_data_stopped'.""" return self._vision_data_stopped @vision_data_stopped.setter def vision_data_stopped(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'vision_data_stopped' field must be of type 'bool'" self._vision_data_stopped = value @property def emergency_yaw_reset_mag_stopped(self): """Message field 'emergency_yaw_reset_mag_stopped'.""" return self._emergency_yaw_reset_mag_stopped @emergency_yaw_reset_mag_stopped.setter def emergency_yaw_reset_mag_stopped(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'emergency_yaw_reset_mag_stopped' field must be of type 'bool'" self._emergency_yaw_reset_mag_stopped = value <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/optical_flow__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/OpticalFlow.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/optical_flow__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/optical_flow__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::OpticalFlow & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: sensor_id cdr << ros_message.sensor_id; // Member: pixel_flow_x_integral cdr << ros_message.pixel_flow_x_integral; // Member: pixel_flow_y_integral cdr << ros_message.pixel_flow_y_integral; // Member: gyro_x_rate_integral cdr << ros_message.gyro_x_rate_integral; // Member: gyro_y_rate_integral cdr << ros_message.gyro_y_rate_integral; // Member: gyro_z_rate_integral cdr << ros_message.gyro_z_rate_integral; // Member: ground_distance_m cdr << ros_message.ground_distance_m; // Member: integration_timespan cdr << ros_message.integration_timespan; // Member: time_since_last_sonar_update cdr << ros_message.time_since_last_sonar_update; // Member: frame_count_since_last_readout cdr << ros_message.frame_count_since_last_readout; // Member: gyro_temperature cdr << ros_message.gyro_temperature; // Member: quality cdr << ros_message.quality; // Member: max_flow_rate cdr << ros_message.max_flow_rate; // Member: min_ground_distance cdr << ros_message.min_ground_distance; // Member: max_ground_distance cdr << ros_message.max_ground_distance; // Member: mode cdr << ros_message.mode; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::OpticalFlow & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: sensor_id cdr >> ros_message.sensor_id; // Member: pixel_flow_x_integral cdr >> ros_message.pixel_flow_x_integral; // Member: pixel_flow_y_integral cdr >> ros_message.pixel_flow_y_integral; // Member: gyro_x_rate_integral cdr >> ros_message.gyro_x_rate_integral; // Member: gyro_y_rate_integral cdr >> ros_message.gyro_y_rate_integral; // Member: gyro_z_rate_integral cdr >> ros_message.gyro_z_rate_integral; // Member: ground_distance_m cdr >> ros_message.ground_distance_m; // Member: integration_timespan cdr >> ros_message.integration_timespan; // Member: time_since_last_sonar_update cdr >> ros_message.time_since_last_sonar_update; // Member: frame_count_since_last_readout cdr >> ros_message.frame_count_since_last_readout; // Member: gyro_temperature cdr >> ros_message.gyro_temperature; // Member: quality cdr >> ros_message.quality; // Member: max_flow_rate cdr >> ros_message.max_flow_rate; // Member: min_ground_distance cdr >> ros_message.min_ground_distance; // Member: max_ground_distance cdr >> ros_message.max_ground_distance; // Member: mode cdr >> ros_message.mode; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::OpticalFlow & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: sensor_id { size_t item_size = sizeof(ros_message.sensor_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: pixel_flow_x_integral { size_t item_size = sizeof(ros_message.pixel_flow_x_integral); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: pixel_flow_y_integral { size_t item_size = sizeof(ros_message.pixel_flow_y_integral); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gyro_x_rate_integral { size_t item_size = sizeof(ros_message.gyro_x_rate_integral); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gyro_y_rate_integral { size_t item_size = sizeof(ros_message.gyro_y_rate_integral); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gyro_z_rate_integral { size_t item_size = sizeof(ros_message.gyro_z_rate_integral); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: ground_distance_m { size_t item_size = sizeof(ros_message.ground_distance_m); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: integration_timespan { size_t item_size = sizeof(ros_message.integration_timespan); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: time_since_last_sonar_update { size_t item_size = sizeof(ros_message.time_since_last_sonar_update); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: frame_count_since_last_readout { size_t item_size = sizeof(ros_message.frame_count_since_last_readout); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gyro_temperature { size_t item_size = sizeof(ros_message.gyro_temperature); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: quality { size_t item_size = sizeof(ros_message.quality); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: max_flow_rate { size_t item_size = sizeof(ros_message.max_flow_rate); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: min_ground_distance { size_t item_size = sizeof(ros_message.min_ground_distance); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: max_ground_distance { size_t item_size = sizeof(ros_message.max_ground_distance); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: mode { size_t item_size = sizeof(ros_message.mode); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_OpticalFlow( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: sensor_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: pixel_flow_x_integral { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: pixel_flow_y_integral { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: gyro_x_rate_integral { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: gyro_y_rate_integral { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: gyro_z_rate_integral { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: ground_distance_m { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: integration_timespan { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: time_since_last_sonar_update { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: frame_count_since_last_readout { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: gyro_temperature { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: quality { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: max_flow_rate { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: min_ground_distance { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: max_ground_distance { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: mode { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _OpticalFlow__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::OpticalFlow *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _OpticalFlow__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::OpticalFlow *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _OpticalFlow__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::OpticalFlow *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _OpticalFlow__max_serialized_size(bool & full_bounded) { return max_serialized_size_OpticalFlow(full_bounded, 0); } static message_type_support_callbacks_t _OpticalFlow__callbacks = { "px4_msgs::msg", "OpticalFlow", _OpticalFlow__cdr_serialize, _OpticalFlow__cdr_deserialize, _OpticalFlow__get_serialized_size, _OpticalFlow__max_serialized_size }; static rosidl_message_type_support_t _OpticalFlow__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_OpticalFlow__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::OpticalFlow>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_OpticalFlow__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, OpticalFlow)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_OpticalFlow__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_control_mode__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleControlMode.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_CONTROL_MODE__STRUCT_H_ #define PX4_MSGS__MSG__VEHICLE_CONTROL_MODE__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/VehicleControlMode in the package px4_msgs. typedef struct px4_msgs__msg__VehicleControlMode { uint64_t timestamp; bool flag_armed; bool flag_external_manual_override_ok; bool flag_control_manual_enabled; bool flag_control_auto_enabled; bool flag_control_offboard_enabled; bool flag_control_rates_enabled; bool flag_control_attitude_enabled; bool flag_control_acceleration_enabled; bool flag_control_velocity_enabled; bool flag_control_position_enabled; bool flag_control_altitude_enabled; bool flag_control_climb_rate_enabled; bool flag_control_termination_enabled; } px4_msgs__msg__VehicleControlMode; // Struct for a sequence of px4_msgs__msg__VehicleControlMode. typedef struct px4_msgs__msg__VehicleControlMode__Sequence { px4_msgs__msg__VehicleControlMode * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__VehicleControlMode__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_CONTROL_MODE__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/navigator_mission_item__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/NavigatorMissionItem.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/navigator_mission_item__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void NavigatorMissionItem_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::NavigatorMissionItem(_init); } void NavigatorMissionItem_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::NavigatorMissionItem *>(message_memory); typed_message->~NavigatorMissionItem(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember NavigatorMissionItem_message_member_array[18] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::NavigatorMissionItem, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "instance_count", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::NavigatorMissionItem, instance_count), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "sequence_current", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::NavigatorMissionItem, sequence_current), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "nav_cmd", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::NavigatorMissionItem, nav_cmd), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "latitude", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::NavigatorMissionItem, latitude), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "longitude", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::NavigatorMissionItem, longitude), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "time_inside", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::NavigatorMissionItem, time_inside), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "acceptance_radius", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::NavigatorMissionItem, acceptance_radius), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "loiter_radius", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::NavigatorMissionItem, loiter_radius), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "yaw", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::NavigatorMissionItem, yaw), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "altitude", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::NavigatorMissionItem, altitude), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "frame", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::NavigatorMissionItem, frame), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "origin", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::NavigatorMissionItem, origin), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "loiter_exit_xtrack", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::NavigatorMissionItem, loiter_exit_xtrack), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "force_heading", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::NavigatorMissionItem, force_heading), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "altitude_is_relative", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::NavigatorMissionItem, altitude_is_relative), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "autocontinue", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::NavigatorMissionItem, autocontinue), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vtol_back_transition", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::NavigatorMissionItem, vtol_back_transition), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers NavigatorMissionItem_message_members = { "px4_msgs::msg", // message namespace "NavigatorMissionItem", // message name 18, // number of fields sizeof(px4_msgs::msg::NavigatorMissionItem), NavigatorMissionItem_message_member_array, // message members NavigatorMissionItem_init_function, // function to initialize message memory (memory has to be allocated) NavigatorMissionItem_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t NavigatorMissionItem_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &NavigatorMissionItem_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::NavigatorMissionItem>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::NavigatorMissionItem_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, NavigatorMissionItem)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::NavigatorMissionItem_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/debug_array__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/DebugArray.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/debug_array__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__DebugArray__init(px4_msgs__msg__DebugArray * msg) { if (!msg) { return false; } // timestamp // id // name // data return true; } void px4_msgs__msg__DebugArray__fini(px4_msgs__msg__DebugArray * msg) { if (!msg) { return; } // timestamp // id // name // data } px4_msgs__msg__DebugArray * px4_msgs__msg__DebugArray__create() { px4_msgs__msg__DebugArray * msg = (px4_msgs__msg__DebugArray *)malloc(sizeof(px4_msgs__msg__DebugArray)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__DebugArray)); bool success = px4_msgs__msg__DebugArray__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__DebugArray__destroy(px4_msgs__msg__DebugArray * msg) { if (msg) { px4_msgs__msg__DebugArray__fini(msg); } free(msg); } bool px4_msgs__msg__DebugArray__Sequence__init(px4_msgs__msg__DebugArray__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__DebugArray * data = NULL; if (size) { data = (px4_msgs__msg__DebugArray *)calloc(size, sizeof(px4_msgs__msg__DebugArray)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__DebugArray__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__DebugArray__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__DebugArray__Sequence__fini(px4_msgs__msg__DebugArray__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__DebugArray__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__DebugArray__Sequence * px4_msgs__msg__DebugArray__Sequence__create(size_t size) { px4_msgs__msg__DebugArray__Sequence * array = (px4_msgs__msg__DebugArray__Sequence *)malloc(sizeof(px4_msgs__msg__DebugArray__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__DebugArray__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__DebugArray__Sequence__destroy(px4_msgs__msg__DebugArray__Sequence * array) { if (array) { px4_msgs__msg__DebugArray__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_waypoint__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/TrajectoryWaypoint.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/trajectory_waypoint__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/trajectory_waypoint__struct.h" #include "px4_msgs/msg/trajectory_waypoint__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _TrajectoryWaypoint__ros_msg_type = px4_msgs__msg__TrajectoryWaypoint; static bool _TrajectoryWaypoint__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _TrajectoryWaypoint__ros_msg_type * ros_message = static_cast<const _TrajectoryWaypoint__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: position { size_t size = 3; auto array_ptr = ros_message->position; cdr.serializeArray(array_ptr, size); } // Field name: velocity { size_t size = 3; auto array_ptr = ros_message->velocity; cdr.serializeArray(array_ptr, size); } // Field name: acceleration { size_t size = 3; auto array_ptr = ros_message->acceleration; cdr.serializeArray(array_ptr, size); } // Field name: yaw { cdr << ros_message->yaw; } // Field name: yaw_speed { cdr << ros_message->yaw_speed; } // Field name: point_valid { cdr << (ros_message->point_valid ? true : false); } // Field name: type { cdr << ros_message->type; } return true; } static bool _TrajectoryWaypoint__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _TrajectoryWaypoint__ros_msg_type * ros_message = static_cast<_TrajectoryWaypoint__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: position { size_t size = 3; auto array_ptr = ros_message->position; cdr.deserializeArray(array_ptr, size); } // Field name: velocity { size_t size = 3; auto array_ptr = ros_message->velocity; cdr.deserializeArray(array_ptr, size); } // Field name: acceleration { size_t size = 3; auto array_ptr = ros_message->acceleration; cdr.deserializeArray(array_ptr, size); } // Field name: yaw { cdr >> ros_message->yaw; } // Field name: yaw_speed { cdr >> ros_message->yaw_speed; } // Field name: point_valid { uint8_t tmp; cdr >> tmp; ros_message->point_valid = tmp ? true : false; } // Field name: type { cdr >> ros_message->type; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__TrajectoryWaypoint( const void * untyped_ros_message, size_t current_alignment) { const _TrajectoryWaypoint__ros_msg_type * ros_message = static_cast<const _TrajectoryWaypoint__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name position { size_t array_size = 3; auto array_ptr = ros_message->position; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name velocity { size_t array_size = 3; auto array_ptr = ros_message->velocity; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name acceleration { size_t array_size = 3; auto array_ptr = ros_message->acceleration; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name yaw { size_t item_size = sizeof(ros_message->yaw); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name yaw_speed { size_t item_size = sizeof(ros_message->yaw_speed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name point_valid { size_t item_size = sizeof(ros_message->point_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name type { size_t item_size = sizeof(ros_message->type); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _TrajectoryWaypoint__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__TrajectoryWaypoint( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__TrajectoryWaypoint( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: position { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: velocity { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: acceleration { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: yaw { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: yaw_speed { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: point_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: type { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _TrajectoryWaypoint__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__TrajectoryWaypoint( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_TrajectoryWaypoint = { "px4_msgs::msg", "TrajectoryWaypoint", _TrajectoryWaypoint__cdr_serialize, _TrajectoryWaypoint__cdr_deserialize, _TrajectoryWaypoint__get_serialized_size, _TrajectoryWaypoint__max_serialized_size }; static rosidl_message_type_support_t _TrajectoryWaypoint__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_TrajectoryWaypoint, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, TrajectoryWaypoint)() { return &_TrajectoryWaypoint__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_estimator_local_position.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/EstimatorLocalPosition.idl # generated code does not contain a copyright notice # Import statements for member types # Member 'delta_xy' # Member 'delta_vxy' import numpy # noqa: E402, I100 import rosidl_parser.definition # noqa: E402, I100 class Metaclass_EstimatorLocalPosition(type): """Metaclass of message 'EstimatorLocalPosition'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'DIST_BOTTOM_SENSOR_NONE': 0, 'DIST_BOTTOM_SENSOR_RANGE': 1, 'DIST_BOTTOM_SENSOR_FLOW': 2, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.EstimatorLocalPosition') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__estimator_local_position cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__estimator_local_position cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__estimator_local_position cls._TYPE_SUPPORT = module.type_support_msg__msg__estimator_local_position cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__estimator_local_position @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'DIST_BOTTOM_SENSOR_NONE': cls.__constants['DIST_BOTTOM_SENSOR_NONE'], 'DIST_BOTTOM_SENSOR_RANGE': cls.__constants['DIST_BOTTOM_SENSOR_RANGE'], 'DIST_BOTTOM_SENSOR_FLOW': cls.__constants['DIST_BOTTOM_SENSOR_FLOW'], } @property def DIST_BOTTOM_SENSOR_NONE(self): """Message constant 'DIST_BOTTOM_SENSOR_NONE'.""" return Metaclass_EstimatorLocalPosition.__constants['DIST_BOTTOM_SENSOR_NONE'] @property def DIST_BOTTOM_SENSOR_RANGE(self): """Message constant 'DIST_BOTTOM_SENSOR_RANGE'.""" return Metaclass_EstimatorLocalPosition.__constants['DIST_BOTTOM_SENSOR_RANGE'] @property def DIST_BOTTOM_SENSOR_FLOW(self): """Message constant 'DIST_BOTTOM_SENSOR_FLOW'.""" return Metaclass_EstimatorLocalPosition.__constants['DIST_BOTTOM_SENSOR_FLOW'] class EstimatorLocalPosition(metaclass=Metaclass_EstimatorLocalPosition): """ Message class 'EstimatorLocalPosition'. Constants: DIST_BOTTOM_SENSOR_NONE DIST_BOTTOM_SENSOR_RANGE DIST_BOTTOM_SENSOR_FLOW """ __slots__ = [ '_timestamp', '_timestamp_sample', '_xy_valid', '_z_valid', '_v_xy_valid', '_v_z_valid', '_x', '_y', '_z', '_delta_xy', '_xy_reset_counter', '_delta_z', '_z_reset_counter', '_vx', '_vy', '_vz', '_z_deriv', '_delta_vxy', '_vxy_reset_counter', '_delta_vz', '_vz_reset_counter', '_ax', '_ay', '_az', '_heading', '_delta_heading', '_heading_reset_counter', '_xy_global', '_z_global', '_ref_timestamp', '_ref_lat', '_ref_lon', '_ref_alt', '_dist_bottom', '_dist_bottom_valid', '_dist_bottom_sensor_bitfield', '_eph', '_epv', '_evh', '_evv', '_vxy_max', '_vz_max', '_hagl_min', '_hagl_max', ] _fields_and_field_types = { 'timestamp': 'uint64', 'timestamp_sample': 'uint64', 'xy_valid': 'boolean', 'z_valid': 'boolean', 'v_xy_valid': 'boolean', 'v_z_valid': 'boolean', 'x': 'float', 'y': 'float', 'z': 'float', 'delta_xy': 'float[2]', 'xy_reset_counter': 'uint8', 'delta_z': 'float', 'z_reset_counter': 'uint8', 'vx': 'float', 'vy': 'float', 'vz': 'float', 'z_deriv': 'float', 'delta_vxy': 'float[2]', 'vxy_reset_counter': 'uint8', 'delta_vz': 'float', 'vz_reset_counter': 'uint8', 'ax': 'float', 'ay': 'float', 'az': 'float', 'heading': 'float', 'delta_heading': 'float', 'heading_reset_counter': 'uint8', 'xy_global': 'boolean', 'z_global': 'boolean', 'ref_timestamp': 'uint64', 'ref_lat': 'double', 'ref_lon': 'double', 'ref_alt': 'float', 'dist_bottom': 'float', 'dist_bottom_valid': 'boolean', 'dist_bottom_sensor_bitfield': 'uint8', 'eph': 'float', 'epv': 'float', 'evh': 'float', 'evv': 'float', 'vxy_max': 'float', 'vz_max': 'float', 'hagl_min': 'float', 'hagl_max': 'float', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 2), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 2), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('double'), # noqa: E501 rosidl_parser.definition.BasicType('double'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.timestamp_sample = kwargs.get('timestamp_sample', int()) self.xy_valid = kwargs.get('xy_valid', bool()) self.z_valid = kwargs.get('z_valid', bool()) self.v_xy_valid = kwargs.get('v_xy_valid', bool()) self.v_z_valid = kwargs.get('v_z_valid', bool()) self.x = kwargs.get('x', float()) self.y = kwargs.get('y', float()) self.z = kwargs.get('z', float()) if 'delta_xy' not in kwargs: self.delta_xy = numpy.zeros(2, dtype=numpy.float32) else: self.delta_xy = numpy.array(kwargs.get('delta_xy'), dtype=numpy.float32) assert self.delta_xy.shape == (2, ) self.xy_reset_counter = kwargs.get('xy_reset_counter', int()) self.delta_z = kwargs.get('delta_z', float()) self.z_reset_counter = kwargs.get('z_reset_counter', int()) self.vx = kwargs.get('vx', float()) self.vy = kwargs.get('vy', float()) self.vz = kwargs.get('vz', float()) self.z_deriv = kwargs.get('z_deriv', float()) if 'delta_vxy' not in kwargs: self.delta_vxy = numpy.zeros(2, dtype=numpy.float32) else: self.delta_vxy = numpy.array(kwargs.get('delta_vxy'), dtype=numpy.float32) assert self.delta_vxy.shape == (2, ) self.vxy_reset_counter = kwargs.get('vxy_reset_counter', int()) self.delta_vz = kwargs.get('delta_vz', float()) self.vz_reset_counter = kwargs.get('vz_reset_counter', int()) self.ax = kwargs.get('ax', float()) self.ay = kwargs.get('ay', float()) self.az = kwargs.get('az', float()) self.heading = kwargs.get('heading', float()) self.delta_heading = kwargs.get('delta_heading', float()) self.heading_reset_counter = kwargs.get('heading_reset_counter', int()) self.xy_global = kwargs.get('xy_global', bool()) self.z_global = kwargs.get('z_global', bool()) self.ref_timestamp = kwargs.get('ref_timestamp', int()) self.ref_lat = kwargs.get('ref_lat', float()) self.ref_lon = kwargs.get('ref_lon', float()) self.ref_alt = kwargs.get('ref_alt', float()) self.dist_bottom = kwargs.get('dist_bottom', float()) self.dist_bottom_valid = kwargs.get('dist_bottom_valid', bool()) self.dist_bottom_sensor_bitfield = kwargs.get('dist_bottom_sensor_bitfield', int()) self.eph = kwargs.get('eph', float()) self.epv = kwargs.get('epv', float()) self.evh = kwargs.get('evh', float()) self.evv = kwargs.get('evv', float()) self.vxy_max = kwargs.get('vxy_max', float()) self.vz_max = kwargs.get('vz_max', float()) self.hagl_min = kwargs.get('hagl_min', float()) self.hagl_max = kwargs.get('hagl_max', float()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.timestamp_sample != other.timestamp_sample: return False if self.xy_valid != other.xy_valid: return False if self.z_valid != other.z_valid: return False if self.v_xy_valid != other.v_xy_valid: return False if self.v_z_valid != other.v_z_valid: return False if self.x != other.x: return False if self.y != other.y: return False if self.z != other.z: return False if all(self.delta_xy != other.delta_xy): return False if self.xy_reset_counter != other.xy_reset_counter: return False if self.delta_z != other.delta_z: return False if self.z_reset_counter != other.z_reset_counter: return False if self.vx != other.vx: return False if self.vy != other.vy: return False if self.vz != other.vz: return False if self.z_deriv != other.z_deriv: return False if all(self.delta_vxy != other.delta_vxy): return False if self.vxy_reset_counter != other.vxy_reset_counter: return False if self.delta_vz != other.delta_vz: return False if self.vz_reset_counter != other.vz_reset_counter: return False if self.ax != other.ax: return False if self.ay != other.ay: return False if self.az != other.az: return False if self.heading != other.heading: return False if self.delta_heading != other.delta_heading: return False if self.heading_reset_counter != other.heading_reset_counter: return False if self.xy_global != other.xy_global: return False if self.z_global != other.z_global: return False if self.ref_timestamp != other.ref_timestamp: return False if self.ref_lat != other.ref_lat: return False if self.ref_lon != other.ref_lon: return False if self.ref_alt != other.ref_alt: return False if self.dist_bottom != other.dist_bottom: return False if self.dist_bottom_valid != other.dist_bottom_valid: return False if self.dist_bottom_sensor_bitfield != other.dist_bottom_sensor_bitfield: return False if self.eph != other.eph: return False if self.epv != other.epv: return False if self.evh != other.evh: return False if self.evv != other.evv: return False if self.vxy_max != other.vxy_max: return False if self.vz_max != other.vz_max: return False if self.hagl_min != other.hagl_min: return False if self.hagl_max != other.hagl_max: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def timestamp_sample(self): """Message field 'timestamp_sample'.""" return self._timestamp_sample @timestamp_sample.setter def timestamp_sample(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp_sample' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp_sample' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp_sample = value @property def xy_valid(self): """Message field 'xy_valid'.""" return self._xy_valid @xy_valid.setter def xy_valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'xy_valid' field must be of type 'bool'" self._xy_valid = value @property def z_valid(self): """Message field 'z_valid'.""" return self._z_valid @z_valid.setter def z_valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'z_valid' field must be of type 'bool'" self._z_valid = value @property def v_xy_valid(self): """Message field 'v_xy_valid'.""" return self._v_xy_valid @v_xy_valid.setter def v_xy_valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'v_xy_valid' field must be of type 'bool'" self._v_xy_valid = value @property def v_z_valid(self): """Message field 'v_z_valid'.""" return self._v_z_valid @v_z_valid.setter def v_z_valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'v_z_valid' field must be of type 'bool'" self._v_z_valid = value @property def x(self): """Message field 'x'.""" return self._x @x.setter def x(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'x' field must be of type 'float'" self._x = value @property def y(self): """Message field 'y'.""" return self._y @y.setter def y(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'y' field must be of type 'float'" self._y = value @property def z(self): """Message field 'z'.""" return self._z @z.setter def z(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'z' field must be of type 'float'" self._z = value @property def delta_xy(self): """Message field 'delta_xy'.""" return self._delta_xy @delta_xy.setter def delta_xy(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'delta_xy' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 2, \ "The 'delta_xy' numpy.ndarray() must have a size of 2" self._delta_xy = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 2 and all(isinstance(v, float) for v in value) and True), \ "The 'delta_xy' field must be a set or sequence with length 2 and each value of type 'float'" self._delta_xy = numpy.array(value, dtype=numpy.float32) @property def xy_reset_counter(self): """Message field 'xy_reset_counter'.""" return self._xy_reset_counter @xy_reset_counter.setter def xy_reset_counter(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'xy_reset_counter' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'xy_reset_counter' field must be an unsigned integer in [0, 255]" self._xy_reset_counter = value @property def delta_z(self): """Message field 'delta_z'.""" return self._delta_z @delta_z.setter def delta_z(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'delta_z' field must be of type 'float'" self._delta_z = value @property def z_reset_counter(self): """Message field 'z_reset_counter'.""" return self._z_reset_counter @z_reset_counter.setter def z_reset_counter(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'z_reset_counter' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'z_reset_counter' field must be an unsigned integer in [0, 255]" self._z_reset_counter = value @property def vx(self): """Message field 'vx'.""" return self._vx @vx.setter def vx(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'vx' field must be of type 'float'" self._vx = value @property def vy(self): """Message field 'vy'.""" return self._vy @vy.setter def vy(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'vy' field must be of type 'float'" self._vy = value @property def vz(self): """Message field 'vz'.""" return self._vz @vz.setter def vz(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'vz' field must be of type 'float'" self._vz = value @property def z_deriv(self): """Message field 'z_deriv'.""" return self._z_deriv @z_deriv.setter def z_deriv(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'z_deriv' field must be of type 'float'" self._z_deriv = value @property def delta_vxy(self): """Message field 'delta_vxy'.""" return self._delta_vxy @delta_vxy.setter def delta_vxy(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'delta_vxy' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 2, \ "The 'delta_vxy' numpy.ndarray() must have a size of 2" self._delta_vxy = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 2 and all(isinstance(v, float) for v in value) and True), \ "The 'delta_vxy' field must be a set or sequence with length 2 and each value of type 'float'" self._delta_vxy = numpy.array(value, dtype=numpy.float32) @property def vxy_reset_counter(self): """Message field 'vxy_reset_counter'.""" return self._vxy_reset_counter @vxy_reset_counter.setter def vxy_reset_counter(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'vxy_reset_counter' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'vxy_reset_counter' field must be an unsigned integer in [0, 255]" self._vxy_reset_counter = value @property def delta_vz(self): """Message field 'delta_vz'.""" return self._delta_vz @delta_vz.setter def delta_vz(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'delta_vz' field must be of type 'float'" self._delta_vz = value @property def vz_reset_counter(self): """Message field 'vz_reset_counter'.""" return self._vz_reset_counter @vz_reset_counter.setter def vz_reset_counter(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'vz_reset_counter' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'vz_reset_counter' field must be an unsigned integer in [0, 255]" self._vz_reset_counter = value @property def ax(self): """Message field 'ax'.""" return self._ax @ax.setter def ax(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'ax' field must be of type 'float'" self._ax = value @property def ay(self): """Message field 'ay'.""" return self._ay @ay.setter def ay(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'ay' field must be of type 'float'" self._ay = value @property def az(self): """Message field 'az'.""" return self._az @az.setter def az(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'az' field must be of type 'float'" self._az = value @property def heading(self): """Message field 'heading'.""" return self._heading @heading.setter def heading(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'heading' field must be of type 'float'" self._heading = value @property def delta_heading(self): """Message field 'delta_heading'.""" return self._delta_heading @delta_heading.setter def delta_heading(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'delta_heading' field must be of type 'float'" self._delta_heading = value @property def heading_reset_counter(self): """Message field 'heading_reset_counter'.""" return self._heading_reset_counter @heading_reset_counter.setter def heading_reset_counter(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'heading_reset_counter' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'heading_reset_counter' field must be an unsigned integer in [0, 255]" self._heading_reset_counter = value @property def xy_global(self): """Message field 'xy_global'.""" return self._xy_global @xy_global.setter def xy_global(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'xy_global' field must be of type 'bool'" self._xy_global = value @property def z_global(self): """Message field 'z_global'.""" return self._z_global @z_global.setter def z_global(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'z_global' field must be of type 'bool'" self._z_global = value @property def ref_timestamp(self): """Message field 'ref_timestamp'.""" return self._ref_timestamp @ref_timestamp.setter def ref_timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'ref_timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'ref_timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._ref_timestamp = value @property def ref_lat(self): """Message field 'ref_lat'.""" return self._ref_lat @ref_lat.setter def ref_lat(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'ref_lat' field must be of type 'float'" self._ref_lat = value @property def ref_lon(self): """Message field 'ref_lon'.""" return self._ref_lon @ref_lon.setter def ref_lon(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'ref_lon' field must be of type 'float'" self._ref_lon = value @property def ref_alt(self): """Message field 'ref_alt'.""" return self._ref_alt @ref_alt.setter def ref_alt(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'ref_alt' field must be of type 'float'" self._ref_alt = value @property def dist_bottom(self): """Message field 'dist_bottom'.""" return self._dist_bottom @dist_bottom.setter def dist_bottom(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'dist_bottom' field must be of type 'float'" self._dist_bottom = value @property def dist_bottom_valid(self): """Message field 'dist_bottom_valid'.""" return self._dist_bottom_valid @dist_bottom_valid.setter def dist_bottom_valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'dist_bottom_valid' field must be of type 'bool'" self._dist_bottom_valid = value @property def dist_bottom_sensor_bitfield(self): """Message field 'dist_bottom_sensor_bitfield'.""" return self._dist_bottom_sensor_bitfield @dist_bottom_sensor_bitfield.setter def dist_bottom_sensor_bitfield(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'dist_bottom_sensor_bitfield' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'dist_bottom_sensor_bitfield' field must be an unsigned integer in [0, 255]" self._dist_bottom_sensor_bitfield = value @property def eph(self): """Message field 'eph'.""" return self._eph @eph.setter def eph(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'eph' field must be of type 'float'" self._eph = value @property def epv(self): """Message field 'epv'.""" return self._epv @epv.setter def epv(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'epv' field must be of type 'float'" self._epv = value @property def evh(self): """Message field 'evh'.""" return self._evh @evh.setter def evh(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'evh' field must be of type 'float'" self._evh = value @property def evv(self): """Message field 'evv'.""" return self._evv @evv.setter def evv(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'evv' field must be of type 'float'" self._evv = value @property def vxy_max(self): """Message field 'vxy_max'.""" return self._vxy_max @vxy_max.setter def vxy_max(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'vxy_max' field must be of type 'float'" self._vxy_max = value @property def vz_max(self): """Message field 'vz_max'.""" return self._vz_max @vz_max.setter def vz_max(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'vz_max' field must be of type 'float'" self._vz_max = value @property def hagl_min(self): """Message field 'hagl_min'.""" return self._hagl_min @hagl_min.setter def hagl_min(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'hagl_min' field must be of type 'float'" self._hagl_min = value @property def hagl_max(self): """Message field 'hagl_max'.""" return self._hagl_max @hagl_max.setter def hagl_max(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'hagl_max' field must be of type 'float'" self._hagl_max = value <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_gimbal_device_information_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/GimbalDeviceInformation.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/gimbal_device_information__struct.h" #include "px4_msgs/msg/gimbal_device_information__functions.h" #include "rosidl_generator_c/primitives_sequence.h" #include "rosidl_generator_c/primitives_sequence_functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__gimbal_device_information__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[64]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._gimbal_device_information.GimbalDeviceInformation", full_classname_dest, 63) == 0); } px4_msgs__msg__GimbalDeviceInformation * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // vendor_name PyObject * field = PyObject_GetAttrString(_pymsg, "vendor_name"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); Py_ssize_t size = 32; uint8_t * dest = ros_message->vendor_name; for (Py_ssize_t i = 0; i < size; ++i) { uint8_t tmp = *(npy_uint8 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint8_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // model_name PyObject * field = PyObject_GetAttrString(_pymsg, "model_name"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); Py_ssize_t size = 32; uint8_t * dest = ros_message->model_name; for (Py_ssize_t i = 0; i < size; ++i) { uint8_t tmp = *(npy_uint8 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint8_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // custom_name PyObject * field = PyObject_GetAttrString(_pymsg, "custom_name"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); Py_ssize_t size = 32; uint8_t * dest = ros_message->custom_name; for (Py_ssize_t i = 0; i < size; ++i) { uint8_t tmp = *(npy_uint8 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint8_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // firmware_version PyObject * field = PyObject_GetAttrString(_pymsg, "firmware_version"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->firmware_version = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // hardware_version PyObject * field = PyObject_GetAttrString(_pymsg, "hardware_version"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->hardware_version = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // uid PyObject * field = PyObject_GetAttrString(_pymsg, "uid"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->uid = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // cap_flags PyObject * field = PyObject_GetAttrString(_pymsg, "cap_flags"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->cap_flags = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // custom_cap_flags PyObject * field = PyObject_GetAttrString(_pymsg, "custom_cap_flags"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->custom_cap_flags = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // roll_min PyObject * field = PyObject_GetAttrString(_pymsg, "roll_min"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->roll_min = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // roll_max PyObject * field = PyObject_GetAttrString(_pymsg, "roll_max"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->roll_max = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // pitch_min PyObject * field = PyObject_GetAttrString(_pymsg, "pitch_min"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->pitch_min = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // pitch_max PyObject * field = PyObject_GetAttrString(_pymsg, "pitch_max"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->pitch_max = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // yaw_min PyObject * field = PyObject_GetAttrString(_pymsg, "yaw_min"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->yaw_min = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // yaw_max PyObject * field = PyObject_GetAttrString(_pymsg, "yaw_max"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->yaw_max = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // gimbal_device_compid PyObject * field = PyObject_GetAttrString(_pymsg, "gimbal_device_compid"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->gimbal_device_compid = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__gimbal_device_information__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of GimbalDeviceInformation */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._gimbal_device_information"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "GimbalDeviceInformation"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__GimbalDeviceInformation * ros_message = (px4_msgs__msg__GimbalDeviceInformation *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // vendor_name PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "vendor_name"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); assert(sizeof(npy_uint8) == sizeof(uint8_t)); npy_uint8 * dst = (npy_uint8 *)PyArray_GETPTR1(seq_field, 0); uint8_t * src = &(ros_message->vendor_name[0]); memcpy(dst, src, 32 * sizeof(uint8_t)); Py_DECREF(field); } { // model_name PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "model_name"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); assert(sizeof(npy_uint8) == sizeof(uint8_t)); npy_uint8 * dst = (npy_uint8 *)PyArray_GETPTR1(seq_field, 0); uint8_t * src = &(ros_message->model_name[0]); memcpy(dst, src, 32 * sizeof(uint8_t)); Py_DECREF(field); } { // custom_name PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "custom_name"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); assert(sizeof(npy_uint8) == sizeof(uint8_t)); npy_uint8 * dst = (npy_uint8 *)PyArray_GETPTR1(seq_field, 0); uint8_t * src = &(ros_message->custom_name[0]); memcpy(dst, src, 32 * sizeof(uint8_t)); Py_DECREF(field); } { // firmware_version PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->firmware_version); { int rc = PyObject_SetAttrString(_pymessage, "firmware_version", field); Py_DECREF(field); if (rc) { return NULL; } } } { // hardware_version PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->hardware_version); { int rc = PyObject_SetAttrString(_pymessage, "hardware_version", field); Py_DECREF(field); if (rc) { return NULL; } } } { // uid PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->uid); { int rc = PyObject_SetAttrString(_pymessage, "uid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cap_flags PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->cap_flags); { int rc = PyObject_SetAttrString(_pymessage, "cap_flags", field); Py_DECREF(field); if (rc) { return NULL; } } } { // custom_cap_flags PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->custom_cap_flags); { int rc = PyObject_SetAttrString(_pymessage, "custom_cap_flags", field); Py_DECREF(field); if (rc) { return NULL; } } } { // roll_min PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->roll_min); { int rc = PyObject_SetAttrString(_pymessage, "roll_min", field); Py_DECREF(field); if (rc) { return NULL; } } } { // roll_max PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->roll_max); { int rc = PyObject_SetAttrString(_pymessage, "roll_max", field); Py_DECREF(field); if (rc) { return NULL; } } } { // pitch_min PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->pitch_min); { int rc = PyObject_SetAttrString(_pymessage, "pitch_min", field); Py_DECREF(field); if (rc) { return NULL; } } } { // pitch_max PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->pitch_max); { int rc = PyObject_SetAttrString(_pymessage, "pitch_max", field); Py_DECREF(field); if (rc) { return NULL; } } } { // yaw_min PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->yaw_min); { int rc = PyObject_SetAttrString(_pymessage, "yaw_min", field); Py_DECREF(field); if (rc) { return NULL; } } } { // yaw_max PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->yaw_max); { int rc = PyObject_SetAttrString(_pymessage, "yaw_max", field); Py_DECREF(field); if (rc) { return NULL; } } } { // gimbal_device_compid PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->gimbal_device_compid); { int rc = PyObject_SetAttrString(_pymessage, "gimbal_device_compid", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/system_power__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/SystemPower.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/system_power__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/system_power__functions.h" #include "px4_msgs/msg/system_power__struct.h" #ifdef __cplusplus extern "C" { #endif void SystemPower__rosidl_typesupport_introspection_c__SystemPower_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__SystemPower__init(message_memory); } void SystemPower__rosidl_typesupport_introspection_c__SystemPower_fini_function(void * message_memory) { px4_msgs__msg__SystemPower__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember SystemPower__rosidl_typesupport_introspection_c__SystemPower_message_member_array[12] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SystemPower, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "voltage5v_v", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SystemPower, voltage5v_v), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "sensors3v3", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__SystemPower, sensors3v3), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "sensors3v3_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SystemPower, sensors3v3_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "usb_connected", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SystemPower, usb_connected), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "brick_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SystemPower, brick_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "usb_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SystemPower, usb_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "servo_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SystemPower, servo_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "periph_5v_oc", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SystemPower, periph_5v_oc), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "hipower_5v_oc", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SystemPower, hipower_5v_oc), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "comp_5v_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SystemPower, comp_5v_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "can1_gps1_5v_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SystemPower, can1_gps1_5v_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers SystemPower__rosidl_typesupport_introspection_c__SystemPower_message_members = { "px4_msgs__msg", // message namespace "SystemPower", // message name 12, // number of fields sizeof(px4_msgs__msg__SystemPower), SystemPower__rosidl_typesupport_introspection_c__SystemPower_message_member_array, // message members SystemPower__rosidl_typesupport_introspection_c__SystemPower_init_function, // function to initialize message memory (memory has to be allocated) SystemPower__rosidl_typesupport_introspection_c__SystemPower_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t SystemPower__rosidl_typesupport_introspection_c__SystemPower_message_type_support_handle = { 0, &SystemPower__rosidl_typesupport_introspection_c__SystemPower_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, SystemPower)() { if (!SystemPower__rosidl_typesupport_introspection_c__SystemPower_message_type_support_handle.typesupport_identifier) { SystemPower__rosidl_typesupport_introspection_c__SystemPower_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &SystemPower__rosidl_typesupport_introspection_c__SystemPower_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/wind__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/Wind.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/wind__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/wind__struct.h" #include "px4_msgs/msg/wind__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _Wind__ros_msg_type = px4_msgs__msg__Wind; static bool _Wind__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _Wind__ros_msg_type * ros_message = static_cast<const _Wind__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: timestamp_sample { cdr << ros_message->timestamp_sample; } // Field name: windspeed_north { cdr << ros_message->windspeed_north; } // Field name: windspeed_east { cdr << ros_message->windspeed_east; } // Field name: variance_north { cdr << ros_message->variance_north; } // Field name: variance_east { cdr << ros_message->variance_east; } // Field name: tas_innov { cdr << ros_message->tas_innov; } // Field name: tas_innov_var { cdr << ros_message->tas_innov_var; } // Field name: beta_innov { cdr << ros_message->beta_innov; } // Field name: beta_innov_var { cdr << ros_message->beta_innov_var; } return true; } static bool _Wind__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _Wind__ros_msg_type * ros_message = static_cast<_Wind__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: timestamp_sample { cdr >> ros_message->timestamp_sample; } // Field name: windspeed_north { cdr >> ros_message->windspeed_north; } // Field name: windspeed_east { cdr >> ros_message->windspeed_east; } // Field name: variance_north { cdr >> ros_message->variance_north; } // Field name: variance_east { cdr >> ros_message->variance_east; } // Field name: tas_innov { cdr >> ros_message->tas_innov; } // Field name: tas_innov_var { cdr >> ros_message->tas_innov_var; } // Field name: beta_innov { cdr >> ros_message->beta_innov; } // Field name: beta_innov_var { cdr >> ros_message->beta_innov_var; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__Wind( const void * untyped_ros_message, size_t current_alignment) { const _Wind__ros_msg_type * ros_message = static_cast<const _Wind__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name timestamp_sample { size_t item_size = sizeof(ros_message->timestamp_sample); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name windspeed_north { size_t item_size = sizeof(ros_message->windspeed_north); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name windspeed_east { size_t item_size = sizeof(ros_message->windspeed_east); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name variance_north { size_t item_size = sizeof(ros_message->variance_north); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name variance_east { size_t item_size = sizeof(ros_message->variance_east); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name tas_innov { size_t item_size = sizeof(ros_message->tas_innov); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name tas_innov_var { size_t item_size = sizeof(ros_message->tas_innov_var); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name beta_innov { size_t item_size = sizeof(ros_message->beta_innov); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name beta_innov_var { size_t item_size = sizeof(ros_message->beta_innov_var); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _Wind__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__Wind( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__Wind( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: timestamp_sample { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: windspeed_north { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: windspeed_east { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: variance_north { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: variance_east { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: tas_innov { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: tas_innov_var { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: beta_innov { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: beta_innov_var { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _Wind__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__Wind( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_Wind = { "px4_msgs::msg", "Wind", _Wind__cdr_serialize, _Wind__cdr_deserialize, _Wind__get_serialized_size, _Wind__max_serialized_size }; static rosidl_message_type_support_t _Wind__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_Wind, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, Wind)() { return &_Wind__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_combined.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/SensorCombined.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_COMBINED_H_ #define PX4_MSGS__MSG__SENSOR_COMBINED_H_ #include "px4_msgs/msg/sensor_combined__struct.h" #include "px4_msgs/msg/sensor_combined__functions.h" #include "px4_msgs/msg/sensor_combined__type_support.h" #endif // PX4_MSGS__MSG__SENSOR_COMBINED_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/transponder_report__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/TransponderReport.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/transponder_report__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/transponder_report__struct.h" #include "px4_msgs/msg/transponder_report__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _TransponderReport__ros_msg_type = px4_msgs__msg__TransponderReport; static bool _TransponderReport__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _TransponderReport__ros_msg_type * ros_message = static_cast<const _TransponderReport__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: icao_address { cdr << ros_message->icao_address; } // Field name: lat { cdr << ros_message->lat; } // Field name: lon { cdr << ros_message->lon; } // Field name: altitude_type { cdr << ros_message->altitude_type; } // Field name: altitude { cdr << ros_message->altitude; } // Field name: heading { cdr << ros_message->heading; } // Field name: hor_velocity { cdr << ros_message->hor_velocity; } // Field name: ver_velocity { cdr << ros_message->ver_velocity; } // Field name: callsign { size_t size = 9; auto array_ptr = ros_message->callsign; cdr.serializeArray(array_ptr, size); } // Field name: emitter_type { cdr << ros_message->emitter_type; } // Field name: tslc { cdr << ros_message->tslc; } // Field name: flags { cdr << ros_message->flags; } // Field name: squawk { cdr << ros_message->squawk; } // Field name: uas_id { size_t size = 18; auto array_ptr = ros_message->uas_id; cdr.serializeArray(array_ptr, size); } return true; } static bool _TransponderReport__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _TransponderReport__ros_msg_type * ros_message = static_cast<_TransponderReport__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: icao_address { cdr >> ros_message->icao_address; } // Field name: lat { cdr >> ros_message->lat; } // Field name: lon { cdr >> ros_message->lon; } // Field name: altitude_type { cdr >> ros_message->altitude_type; } // Field name: altitude { cdr >> ros_message->altitude; } // Field name: heading { cdr >> ros_message->heading; } // Field name: hor_velocity { cdr >> ros_message->hor_velocity; } // Field name: ver_velocity { cdr >> ros_message->ver_velocity; } // Field name: callsign { size_t size = 9; auto array_ptr = ros_message->callsign; cdr.deserializeArray(array_ptr, size); } // Field name: emitter_type { cdr >> ros_message->emitter_type; } // Field name: tslc { cdr >> ros_message->tslc; } // Field name: flags { cdr >> ros_message->flags; } // Field name: squawk { cdr >> ros_message->squawk; } // Field name: uas_id { size_t size = 18; auto array_ptr = ros_message->uas_id; cdr.deserializeArray(array_ptr, size); } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__TransponderReport( const void * untyped_ros_message, size_t current_alignment) { const _TransponderReport__ros_msg_type * ros_message = static_cast<const _TransponderReport__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name icao_address { size_t item_size = sizeof(ros_message->icao_address); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name lat { size_t item_size = sizeof(ros_message->lat); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name lon { size_t item_size = sizeof(ros_message->lon); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name altitude_type { size_t item_size = sizeof(ros_message->altitude_type); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name altitude { size_t item_size = sizeof(ros_message->altitude); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name heading { size_t item_size = sizeof(ros_message->heading); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name hor_velocity { size_t item_size = sizeof(ros_message->hor_velocity); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name ver_velocity { size_t item_size = sizeof(ros_message->ver_velocity); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name callsign { size_t array_size = 9; auto array_ptr = ros_message->callsign; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name emitter_type { size_t item_size = sizeof(ros_message->emitter_type); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name tslc { size_t item_size = sizeof(ros_message->tslc); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name flags { size_t item_size = sizeof(ros_message->flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name squawk { size_t item_size = sizeof(ros_message->squawk); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name uas_id { size_t array_size = 18; auto array_ptr = ros_message->uas_id; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _TransponderReport__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__TransponderReport( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__TransponderReport( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: icao_address { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: lat { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: lon { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: altitude_type { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: altitude { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: heading { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: hor_velocity { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: ver_velocity { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: callsign { size_t array_size = 9; current_alignment += array_size * sizeof(uint8_t); } // member: emitter_type { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: tslc { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: squawk { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: uas_id { size_t array_size = 18; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _TransponderReport__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__TransponderReport( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_TransponderReport = { "px4_msgs::msg", "TransponderReport", _TransponderReport__cdr_serialize, _TransponderReport__cdr_deserialize, _TransponderReport__get_serialized_size, _TransponderReport__max_serialized_size }; static rosidl_message_type_support_t _TransponderReport__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_TransponderReport, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, TransponderReport)() { return &_TransponderReport__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_ros_com/CMakeFiles/sensor_combined_listener.dir/cmake_clean.cmake file(REMOVE_RECURSE "CMakeFiles/sensor_combined_listener.dir/src/examples/listeners/sensor_combined_listener.cpp.o" "sensor_combined_listener.pdb" "sensor_combined_listener" ) # Per-language clean rules from dependency scanning. foreach(lang CXX) include(CMakeFiles/sensor_combined_listener.dir/cmake_clean_${lang}.cmake OPTIONAL) endforeach() <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_controls1__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/ActuatorControls1.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS1__FUNCTIONS_H_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS1__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/actuator_controls1__struct.h" /// Initialize msg/ActuatorControls1 message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__ActuatorControls1 * )) before or use * px4_msgs__msg__ActuatorControls1__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__ActuatorControls1__init(px4_msgs__msg__ActuatorControls1 * msg); /// Finalize msg/ActuatorControls1 message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__ActuatorControls1__fini(px4_msgs__msg__ActuatorControls1 * msg); /// Create msg/ActuatorControls1 message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__ActuatorControls1__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__ActuatorControls1 * px4_msgs__msg__ActuatorControls1__create(); /// Destroy msg/ActuatorControls1 message. /** * It calls * px4_msgs__msg__ActuatorControls1__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__ActuatorControls1__destroy(px4_msgs__msg__ActuatorControls1 * msg); /// Initialize array of msg/ActuatorControls1 messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__ActuatorControls1__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__ActuatorControls1__Sequence__init(px4_msgs__msg__ActuatorControls1__Sequence * array, size_t size); /// Finalize array of msg/ActuatorControls1 messages. /** * It calls * px4_msgs__msg__ActuatorControls1__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__ActuatorControls1__Sequence__fini(px4_msgs__msg__ActuatorControls1__Sequence * array); /// Create array of msg/ActuatorControls1 messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__ActuatorControls1__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__ActuatorControls1__Sequence * px4_msgs__msg__ActuatorControls1__Sequence__create(size_t size); /// Destroy array of msg/ActuatorControls1 messages. /** * It calls * px4_msgs__msg__ActuatorControls1__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__ActuatorControls1__Sequence__destroy(px4_msgs__msg__ActuatorControls1__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS1__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_gps__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/SensorGps.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_GPS__STRUCT_H_ #define PX4_MSGS__MSG__SENSOR_GPS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/SensorGps in the package px4_msgs. typedef struct px4_msgs__msg__SensorGps { uint64_t timestamp; uint32_t device_id; int32_t lat; int32_t lon; int32_t alt; int32_t alt_ellipsoid; float s_variance_m_s; float c_variance_rad; uint8_t fix_type; float eph; float epv; float hdop; float vdop; int32_t noise_per_ms; uint16_t automatic_gain_control; int32_t jamming_indicator; uint8_t jamming_state; float vel_m_s; float vel_n_m_s; float vel_e_m_s; float vel_d_m_s; float cog_rad; bool vel_ned_valid; int32_t timestamp_time_relative; uint64_t time_utc_usec; uint8_t satellites_used; float heading; float heading_offset; } px4_msgs__msg__SensorGps; // Struct for a sequence of px4_msgs__msg__SensorGps. typedef struct px4_msgs__msg__SensorGps__Sequence { px4_msgs__msg__SensorGps * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__SensorGps__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__SENSOR_GPS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_outputs__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/ActuatorOutputs.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/actuator_outputs__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/actuator_outputs__functions.h" #include "px4_msgs/msg/actuator_outputs__struct.h" #ifdef __cplusplus extern "C" { #endif void ActuatorOutputs__rosidl_typesupport_introspection_c__ActuatorOutputs_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__ActuatorOutputs__init(message_memory); } void ActuatorOutputs__rosidl_typesupport_introspection_c__ActuatorOutputs_fini_function(void * message_memory) { px4_msgs__msg__ActuatorOutputs__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember ActuatorOutputs__rosidl_typesupport_introspection_c__ActuatorOutputs_message_member_array[3] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ActuatorOutputs, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "noutputs", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ActuatorOutputs, noutputs), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "output", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 16, // array size false, // is upper bound offsetof(px4_msgs__msg__ActuatorOutputs, output), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers ActuatorOutputs__rosidl_typesupport_introspection_c__ActuatorOutputs_message_members = { "px4_msgs__msg", // message namespace "ActuatorOutputs", // message name 3, // number of fields sizeof(px4_msgs__msg__ActuatorOutputs), ActuatorOutputs__rosidl_typesupport_introspection_c__ActuatorOutputs_message_member_array, // message members ActuatorOutputs__rosidl_typesupport_introspection_c__ActuatorOutputs_init_function, // function to initialize message memory (memory has to be allocated) ActuatorOutputs__rosidl_typesupport_introspection_c__ActuatorOutputs_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t ActuatorOutputs__rosidl_typesupport_introspection_c__ActuatorOutputs_message_type_support_handle = { 0, &ActuatorOutputs__rosidl_typesupport_introspection_c__ActuatorOutputs_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, ActuatorOutputs)() { if (!ActuatorOutputs__rosidl_typesupport_introspection_c__ActuatorOutputs_message_type_support_handle.typesupport_identifier) { ActuatorOutputs__rosidl_typesupport_introspection_c__ActuatorOutputs_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &ActuatorOutputs__rosidl_typesupport_introspection_c__ActuatorOutputs_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_onboard_computer_status.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/OnboardComputerStatus.idl # generated code does not contain a copyright notice # Import statements for member types # Member 'cpu_cores' # Member 'cpu_combined' # Member 'gpu_cores' # Member 'gpu_combined' # Member 'temperature_core' # Member 'fan_speed' # Member 'storage_type' # Member 'storage_usage' # Member 'storage_total' # Member 'link_type' # Member 'link_tx_rate' # Member 'link_rx_rate' # Member 'link_tx_max' # Member 'link_rx_max' import numpy # noqa: E402, I100 import rosidl_parser.definition # noqa: E402, I100 class Metaclass_OnboardComputerStatus(type): """Metaclass of message 'OnboardComputerStatus'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.OnboardComputerStatus') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__onboard_computer_status cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__onboard_computer_status cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__onboard_computer_status cls._TYPE_SUPPORT = module.type_support_msg__msg__onboard_computer_status cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__onboard_computer_status @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class OnboardComputerStatus(metaclass=Metaclass_OnboardComputerStatus): """Message class 'OnboardComputerStatus'.""" __slots__ = [ '_timestamp', '_uptime', '_type', '_cpu_cores', '_cpu_combined', '_gpu_cores', '_gpu_combined', '_temperature_board', '_temperature_core', '_fan_speed', '_ram_usage', '_ram_total', '_storage_type', '_storage_usage', '_storage_total', '_link_type', '_link_tx_rate', '_link_rx_rate', '_link_tx_max', '_link_rx_max', ] _fields_and_field_types = { 'timestamp': 'uint64', 'uptime': 'uint32', 'type': 'uint8', 'cpu_cores': 'uint8[8]', 'cpu_combined': 'uint8[10]', 'gpu_cores': 'uint8[4]', 'gpu_combined': 'uint8[10]', 'temperature_board': 'int8', 'temperature_core': 'int8[8]', 'fan_speed': 'int16[4]', 'ram_usage': 'uint32', 'ram_total': 'uint32', 'storage_type': 'uint32[4]', 'storage_usage': 'uint32[4]', 'storage_total': 'uint32[4]', 'link_type': 'uint32[6]', 'link_tx_rate': 'uint32[6]', 'link_rx_rate': 'uint32[6]', 'link_tx_max': 'uint32[6]', 'link_rx_max': 'uint32[6]', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('uint8'), 8), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('uint8'), 10), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('uint8'), 4), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('uint8'), 10), # noqa: E501 rosidl_parser.definition.BasicType('int8'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('int8'), 8), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('int16'), 4), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('uint32'), 4), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('uint32'), 4), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('uint32'), 4), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('uint32'), 6), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('uint32'), 6), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('uint32'), 6), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('uint32'), 6), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('uint32'), 6), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.uptime = kwargs.get('uptime', int()) self.type = kwargs.get('type', int()) if 'cpu_cores' not in kwargs: self.cpu_cores = numpy.zeros(8, dtype=numpy.uint8) else: self.cpu_cores = numpy.array(kwargs.get('cpu_cores'), dtype=numpy.uint8) assert self.cpu_cores.shape == (8, ) if 'cpu_combined' not in kwargs: self.cpu_combined = numpy.zeros(10, dtype=numpy.uint8) else: self.cpu_combined = numpy.array(kwargs.get('cpu_combined'), dtype=numpy.uint8) assert self.cpu_combined.shape == (10, ) if 'gpu_cores' not in kwargs: self.gpu_cores = numpy.zeros(4, dtype=numpy.uint8) else: self.gpu_cores = numpy.array(kwargs.get('gpu_cores'), dtype=numpy.uint8) assert self.gpu_cores.shape == (4, ) if 'gpu_combined' not in kwargs: self.gpu_combined = numpy.zeros(10, dtype=numpy.uint8) else: self.gpu_combined = numpy.array(kwargs.get('gpu_combined'), dtype=numpy.uint8) assert self.gpu_combined.shape == (10, ) self.temperature_board = kwargs.get('temperature_board', int()) if 'temperature_core' not in kwargs: self.temperature_core = numpy.zeros(8, dtype=numpy.int8) else: self.temperature_core = numpy.array(kwargs.get('temperature_core'), dtype=numpy.int8) assert self.temperature_core.shape == (8, ) if 'fan_speed' not in kwargs: self.fan_speed = numpy.zeros(4, dtype=numpy.int16) else: self.fan_speed = numpy.array(kwargs.get('fan_speed'), dtype=numpy.int16) assert self.fan_speed.shape == (4, ) self.ram_usage = kwargs.get('ram_usage', int()) self.ram_total = kwargs.get('ram_total', int()) if 'storage_type' not in kwargs: self.storage_type = numpy.zeros(4, dtype=numpy.uint32) else: self.storage_type = numpy.array(kwargs.get('storage_type'), dtype=numpy.uint32) assert self.storage_type.shape == (4, ) if 'storage_usage' not in kwargs: self.storage_usage = numpy.zeros(4, dtype=numpy.uint32) else: self.storage_usage = numpy.array(kwargs.get('storage_usage'), dtype=numpy.uint32) assert self.storage_usage.shape == (4, ) if 'storage_total' not in kwargs: self.storage_total = numpy.zeros(4, dtype=numpy.uint32) else: self.storage_total = numpy.array(kwargs.get('storage_total'), dtype=numpy.uint32) assert self.storage_total.shape == (4, ) if 'link_type' not in kwargs: self.link_type = numpy.zeros(6, dtype=numpy.uint32) else: self.link_type = numpy.array(kwargs.get('link_type'), dtype=numpy.uint32) assert self.link_type.shape == (6, ) if 'link_tx_rate' not in kwargs: self.link_tx_rate = numpy.zeros(6, dtype=numpy.uint32) else: self.link_tx_rate = numpy.array(kwargs.get('link_tx_rate'), dtype=numpy.uint32) assert self.link_tx_rate.shape == (6, ) if 'link_rx_rate' not in kwargs: self.link_rx_rate = numpy.zeros(6, dtype=numpy.uint32) else: self.link_rx_rate = numpy.array(kwargs.get('link_rx_rate'), dtype=numpy.uint32) assert self.link_rx_rate.shape == (6, ) if 'link_tx_max' not in kwargs: self.link_tx_max = numpy.zeros(6, dtype=numpy.uint32) else: self.link_tx_max = numpy.array(kwargs.get('link_tx_max'), dtype=numpy.uint32) assert self.link_tx_max.shape == (6, ) if 'link_rx_max' not in kwargs: self.link_rx_max = numpy.zeros(6, dtype=numpy.uint32) else: self.link_rx_max = numpy.array(kwargs.get('link_rx_max'), dtype=numpy.uint32) assert self.link_rx_max.shape == (6, ) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.uptime != other.uptime: return False if self.type != other.type: return False if all(self.cpu_cores != other.cpu_cores): return False if all(self.cpu_combined != other.cpu_combined): return False if all(self.gpu_cores != other.gpu_cores): return False if all(self.gpu_combined != other.gpu_combined): return False if self.temperature_board != other.temperature_board: return False if all(self.temperature_core != other.temperature_core): return False if all(self.fan_speed != other.fan_speed): return False if self.ram_usage != other.ram_usage: return False if self.ram_total != other.ram_total: return False if all(self.storage_type != other.storage_type): return False if all(self.storage_usage != other.storage_usage): return False if all(self.storage_total != other.storage_total): return False if all(self.link_type != other.link_type): return False if all(self.link_tx_rate != other.link_tx_rate): return False if all(self.link_rx_rate != other.link_rx_rate): return False if all(self.link_tx_max != other.link_tx_max): return False if all(self.link_rx_max != other.link_rx_max): return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def uptime(self): """Message field 'uptime'.""" return self._uptime @uptime.setter def uptime(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'uptime' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'uptime' field must be an unsigned integer in [0, 4294967295]" self._uptime = value @property # noqa: A003 def type(self): """Message field 'type'.""" return self._type @type.setter # noqa: A003 def type(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'type' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'type' field must be an unsigned integer in [0, 255]" self._type = value @property def cpu_cores(self): """Message field 'cpu_cores'.""" return self._cpu_cores @cpu_cores.setter def cpu_cores(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.uint8, \ "The 'cpu_cores' numpy.ndarray() must have the dtype of 'numpy.uint8'" assert value.size == 8, \ "The 'cpu_cores' numpy.ndarray() must have a size of 8" self._cpu_cores = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 8 and all(isinstance(v, int) for v in value) and all(val >= 0 and val < 256 for val in value)), \ "The 'cpu_cores' field must be a set or sequence with length 8 and each value of type 'int' and each unsigned integer in [0, 255]" self._cpu_cores = numpy.array(value, dtype=numpy.uint8) @property def cpu_combined(self): """Message field 'cpu_combined'.""" return self._cpu_combined @cpu_combined.setter def cpu_combined(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.uint8, \ "The 'cpu_combined' numpy.ndarray() must have the dtype of 'numpy.uint8'" assert value.size == 10, \ "The 'cpu_combined' numpy.ndarray() must have a size of 10" self._cpu_combined = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 10 and all(isinstance(v, int) for v in value) and all(val >= 0 and val < 256 for val in value)), \ "The 'cpu_combined' field must be a set or sequence with length 10 and each value of type 'int' and each unsigned integer in [0, 255]" self._cpu_combined = numpy.array(value, dtype=numpy.uint8) @property def gpu_cores(self): """Message field 'gpu_cores'.""" return self._gpu_cores @gpu_cores.setter def gpu_cores(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.uint8, \ "The 'gpu_cores' numpy.ndarray() must have the dtype of 'numpy.uint8'" assert value.size == 4, \ "The 'gpu_cores' numpy.ndarray() must have a size of 4" self._gpu_cores = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 4 and all(isinstance(v, int) for v in value) and all(val >= 0 and val < 256 for val in value)), \ "The 'gpu_cores' field must be a set or sequence with length 4 and each value of type 'int' and each unsigned integer in [0, 255]" self._gpu_cores = numpy.array(value, dtype=numpy.uint8) @property def gpu_combined(self): """Message field 'gpu_combined'.""" return self._gpu_combined @gpu_combined.setter def gpu_combined(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.uint8, \ "The 'gpu_combined' numpy.ndarray() must have the dtype of 'numpy.uint8'" assert value.size == 10, \ "The 'gpu_combined' numpy.ndarray() must have a size of 10" self._gpu_combined = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 10 and all(isinstance(v, int) for v in value) and all(val >= 0 and val < 256 for val in value)), \ "The 'gpu_combined' field must be a set or sequence with length 10 and each value of type 'int' and each unsigned integer in [0, 255]" self._gpu_combined = numpy.array(value, dtype=numpy.uint8) @property def temperature_board(self): """Message field 'temperature_board'.""" return self._temperature_board @temperature_board.setter def temperature_board(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'temperature_board' field must be of type 'int'" assert value >= -128 and value < 128, \ "The 'temperature_board' field must be an integer in [-128, 127]" self._temperature_board = value @property def temperature_core(self): """Message field 'temperature_core'.""" return self._temperature_core @temperature_core.setter def temperature_core(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.int8, \ "The 'temperature_core' numpy.ndarray() must have the dtype of 'numpy.int8'" assert value.size == 8, \ "The 'temperature_core' numpy.ndarray() must have a size of 8" self._temperature_core = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 8 and all(isinstance(v, int) for v in value) and all(val >= -128 and val < 128 for val in value)), \ "The 'temperature_core' field must be a set or sequence with length 8 and each value of type 'int' and each integer in [-128, 127]" self._temperature_core = numpy.array(value, dtype=numpy.int8) @property def fan_speed(self): """Message field 'fan_speed'.""" return self._fan_speed @fan_speed.setter def fan_speed(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.int16, \ "The 'fan_speed' numpy.ndarray() must have the dtype of 'numpy.int16'" assert value.size == 4, \ "The 'fan_speed' numpy.ndarray() must have a size of 4" self._fan_speed = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 4 and all(isinstance(v, int) for v in value) and all(val >= -32768 and val < 32768 for val in value)), \ "The 'fan_speed' field must be a set or sequence with length 4 and each value of type 'int' and each integer in [-32768, 32767]" self._fan_speed = numpy.array(value, dtype=numpy.int16) @property def ram_usage(self): """Message field 'ram_usage'.""" return self._ram_usage @ram_usage.setter def ram_usage(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'ram_usage' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'ram_usage' field must be an unsigned integer in [0, 4294967295]" self._ram_usage = value @property def ram_total(self): """Message field 'ram_total'.""" return self._ram_total @ram_total.setter def ram_total(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'ram_total' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'ram_total' field must be an unsigned integer in [0, 4294967295]" self._ram_total = value @property def storage_type(self): """Message field 'storage_type'.""" return self._storage_type @storage_type.setter def storage_type(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.uint32, \ "The 'storage_type' numpy.ndarray() must have the dtype of 'numpy.uint32'" assert value.size == 4, \ "The 'storage_type' numpy.ndarray() must have a size of 4" self._storage_type = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 4 and all(isinstance(v, int) for v in value) and all(val >= 0 and val < 4294967296 for val in value)), \ "The 'storage_type' field must be a set or sequence with length 4 and each value of type 'int' and each unsigned integer in [0, 4294967295]" self._storage_type = numpy.array(value, dtype=numpy.uint32) @property def storage_usage(self): """Message field 'storage_usage'.""" return self._storage_usage @storage_usage.setter def storage_usage(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.uint32, \ "The 'storage_usage' numpy.ndarray() must have the dtype of 'numpy.uint32'" assert value.size == 4, \ "The 'storage_usage' numpy.ndarray() must have a size of 4" self._storage_usage = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 4 and all(isinstance(v, int) for v in value) and all(val >= 0 and val < 4294967296 for val in value)), \ "The 'storage_usage' field must be a set or sequence with length 4 and each value of type 'int' and each unsigned integer in [0, 4294967295]" self._storage_usage = numpy.array(value, dtype=numpy.uint32) @property def storage_total(self): """Message field 'storage_total'.""" return self._storage_total @storage_total.setter def storage_total(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.uint32, \ "The 'storage_total' numpy.ndarray() must have the dtype of 'numpy.uint32'" assert value.size == 4, \ "The 'storage_total' numpy.ndarray() must have a size of 4" self._storage_total = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 4 and all(isinstance(v, int) for v in value) and all(val >= 0 and val < 4294967296 for val in value)), \ "The 'storage_total' field must be a set or sequence with length 4 and each value of type 'int' and each unsigned integer in [0, 4294967295]" self._storage_total = numpy.array(value, dtype=numpy.uint32) @property def link_type(self): """Message field 'link_type'.""" return self._link_type @link_type.setter def link_type(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.uint32, \ "The 'link_type' numpy.ndarray() must have the dtype of 'numpy.uint32'" assert value.size == 6, \ "The 'link_type' numpy.ndarray() must have a size of 6" self._link_type = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 6 and all(isinstance(v, int) for v in value) and all(val >= 0 and val < 4294967296 for val in value)), \ "The 'link_type' field must be a set or sequence with length 6 and each value of type 'int' and each unsigned integer in [0, 4294967295]" self._link_type = numpy.array(value, dtype=numpy.uint32) @property def link_tx_rate(self): """Message field 'link_tx_rate'.""" return self._link_tx_rate @link_tx_rate.setter def link_tx_rate(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.uint32, \ "The 'link_tx_rate' numpy.ndarray() must have the dtype of 'numpy.uint32'" assert value.size == 6, \ "The 'link_tx_rate' numpy.ndarray() must have a size of 6" self._link_tx_rate = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 6 and all(isinstance(v, int) for v in value) and all(val >= 0 and val < 4294967296 for val in value)), \ "The 'link_tx_rate' field must be a set or sequence with length 6 and each value of type 'int' and each unsigned integer in [0, 4294967295]" self._link_tx_rate = numpy.array(value, dtype=numpy.uint32) @property def link_rx_rate(self): """Message field 'link_rx_rate'.""" return self._link_rx_rate @link_rx_rate.setter def link_rx_rate(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.uint32, \ "The 'link_rx_rate' numpy.ndarray() must have the dtype of 'numpy.uint32'" assert value.size == 6, \ "The 'link_rx_rate' numpy.ndarray() must have a size of 6" self._link_rx_rate = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 6 and all(isinstance(v, int) for v in value) and all(val >= 0 and val < 4294967296 for val in value)), \ "The 'link_rx_rate' field must be a set or sequence with length 6 and each value of type 'int' and each unsigned integer in [0, 4294967295]" self._link_rx_rate = numpy.array(value, dtype=numpy.uint32) @property def link_tx_max(self): """Message field 'link_tx_max'.""" return self._link_tx_max @link_tx_max.setter def link_tx_max(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.uint32, \ "The 'link_tx_max' numpy.ndarray() must have the dtype of 'numpy.uint32'" assert value.size == 6, \ "The 'link_tx_max' numpy.ndarray() must have a size of 6" self._link_tx_max = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 6 and all(isinstance(v, int) for v in value) and all(val >= 0 and val < 4294967296 for val in value)), \ "The 'link_tx_max' field must be a set or sequence with length 6 and each value of type 'int' and each unsigned integer in [0, 4294967295]" self._link_tx_max = numpy.array(value, dtype=numpy.uint32) @property def link_rx_max(self): """Message field 'link_rx_max'.""" return self._link_rx_max @link_rx_max.setter def link_rx_max(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.uint32, \ "The 'link_rx_max' numpy.ndarray() must have the dtype of 'numpy.uint32'" assert value.size == 6, \ "The 'link_rx_max' numpy.ndarray() must have a size of 6" self._link_rx_max = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 6 and all(isinstance(v, int) for v in value) and all(val >= 0 and val < 4294967296 for val in value)), \ "The 'link_rx_max' field must be a set or sequence with length 6 and each value of type 'int' and each unsigned integer in [0, 4294967295]" self._link_rx_max = numpy.array(value, dtype=numpy.uint32) <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/manual_control_switches__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/ManualControlSwitches.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__MANUAL_CONTROL_SWITCHES__STRUCT_H_ #define PX4_MSGS__MSG__MANUAL_CONTROL_SWITCHES__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'SWITCH_POS_NONE'. enum { px4_msgs__msg__ManualControlSwitches__SWITCH_POS_NONE = 0 }; /// Constant 'SWITCH_POS_ON'. enum { px4_msgs__msg__ManualControlSwitches__SWITCH_POS_ON = 1 }; /// Constant 'SWITCH_POS_MIDDLE'. enum { px4_msgs__msg__ManualControlSwitches__SWITCH_POS_MIDDLE = 2 }; /// Constant 'SWITCH_POS_OFF'. enum { px4_msgs__msg__ManualControlSwitches__SWITCH_POS_OFF = 3 }; /// Constant 'MODE_SLOT_NONE'. enum { px4_msgs__msg__ManualControlSwitches__MODE_SLOT_NONE = 0 }; /// Constant 'MODE_SLOT_1'. enum { px4_msgs__msg__ManualControlSwitches__MODE_SLOT_1 = 1 }; /// Constant 'MODE_SLOT_2'. enum { px4_msgs__msg__ManualControlSwitches__MODE_SLOT_2 = 2 }; /// Constant 'MODE_SLOT_3'. enum { px4_msgs__msg__ManualControlSwitches__MODE_SLOT_3 = 3 }; /// Constant 'MODE_SLOT_4'. enum { px4_msgs__msg__ManualControlSwitches__MODE_SLOT_4 = 4 }; /// Constant 'MODE_SLOT_5'. enum { px4_msgs__msg__ManualControlSwitches__MODE_SLOT_5 = 5 }; /// Constant 'MODE_SLOT_6'. enum { px4_msgs__msg__ManualControlSwitches__MODE_SLOT_6 = 6 }; /// Constant 'MODE_SLOT_NUM'. enum { px4_msgs__msg__ManualControlSwitches__MODE_SLOT_NUM = 6 }; // Struct defined in msg/ManualControlSwitches in the package px4_msgs. typedef struct px4_msgs__msg__ManualControlSwitches { uint64_t timestamp; uint64_t timestamp_sample; uint8_t mode_slot; uint8_t arm_switch; uint8_t return_switch; uint8_t loiter_switch; uint8_t offboard_switch; uint8_t kill_switch; uint8_t gear_switch; uint8_t transition_switch; uint8_t mode_switch; uint8_t man_switch; uint8_t acro_switch; uint8_t stab_switch; uint8_t posctl_switch; uint32_t switch_changes; } px4_msgs__msg__ManualControlSwitches; // Struct for a sequence of px4_msgs__msg__ManualControlSwitches. typedef struct px4_msgs__msg__ManualControlSwitches__Sequence { px4_msgs__msg__ManualControlSwitches * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__ManualControlSwitches__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__MANUAL_CONTROL_SWITCHES__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/geofence_result.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GEOFENCE_RESULT_HPP_ #define PX4_MSGS__MSG__GEOFENCE_RESULT_HPP_ #include "px4_msgs/msg/geofence_result__struct.hpp" #include "px4_msgs/msg/geofence_result__traits.hpp" #endif // PX4_MSGS__MSG__GEOFENCE_RESULT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/logger_status__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/LoggerStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/logger_status__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__LoggerStatus__init(px4_msgs__msg__LoggerStatus * msg) { if (!msg) { return false; } // timestamp // type // backend // total_written_kb // write_rate_kb_s // dropouts // message_gaps // buffer_used_bytes // buffer_size_bytes // num_messages return true; } void px4_msgs__msg__LoggerStatus__fini(px4_msgs__msg__LoggerStatus * msg) { if (!msg) { return; } // timestamp // type // backend // total_written_kb // write_rate_kb_s // dropouts // message_gaps // buffer_used_bytes // buffer_size_bytes // num_messages } px4_msgs__msg__LoggerStatus * px4_msgs__msg__LoggerStatus__create() { px4_msgs__msg__LoggerStatus * msg = (px4_msgs__msg__LoggerStatus *)malloc(sizeof(px4_msgs__msg__LoggerStatus)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__LoggerStatus)); bool success = px4_msgs__msg__LoggerStatus__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__LoggerStatus__destroy(px4_msgs__msg__LoggerStatus * msg) { if (msg) { px4_msgs__msg__LoggerStatus__fini(msg); } free(msg); } bool px4_msgs__msg__LoggerStatus__Sequence__init(px4_msgs__msg__LoggerStatus__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__LoggerStatus * data = NULL; if (size) { data = (px4_msgs__msg__LoggerStatus *)calloc(size, sizeof(px4_msgs__msg__LoggerStatus)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__LoggerStatus__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__LoggerStatus__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__LoggerStatus__Sequence__fini(px4_msgs__msg__LoggerStatus__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__LoggerStatus__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__LoggerStatus__Sequence * px4_msgs__msg__LoggerStatus__Sequence__create(size_t size) { px4_msgs__msg__LoggerStatus__Sequence * array = (px4_msgs__msg__LoggerStatus__Sequence *)malloc(sizeof(px4_msgs__msg__LoggerStatus__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__LoggerStatus__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__LoggerStatus__Sequence__destroy(px4_msgs__msg__LoggerStatus__Sequence * array) { if (array) { px4_msgs__msg__LoggerStatus__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/irlock_report__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/IrlockReport.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/irlock_report__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void IrlockReport_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::IrlockReport(_init); } void IrlockReport_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::IrlockReport *>(message_memory); typed_message->~IrlockReport(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember IrlockReport_message_member_array[6] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::IrlockReport, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "signature", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::IrlockReport, signature), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "pos_x", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::IrlockReport, pos_x), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "pos_y", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::IrlockReport, pos_y), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "size_x", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::IrlockReport, size_x), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "size_y", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::IrlockReport, size_y), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers IrlockReport_message_members = { "px4_msgs::msg", // message namespace "IrlockReport", // message name 6, // number of fields sizeof(px4_msgs::msg::IrlockReport), IrlockReport_message_member_array, // message members IrlockReport_init_function, // function to initialize message memory (memory has to be allocated) IrlockReport_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t IrlockReport_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &IrlockReport_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::IrlockReport>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::IrlockReport_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, IrlockReport)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::IrlockReport_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_local_position__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/EstimatorLocalPosition.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/estimator_local_position__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void EstimatorLocalPosition_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::EstimatorLocalPosition(_init); } void EstimatorLocalPosition_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::EstimatorLocalPosition *>(message_memory); typed_message->~EstimatorLocalPosition(); } size_t size_function__EstimatorLocalPosition__delta_xy(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__EstimatorLocalPosition__delta_xy(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__EstimatorLocalPosition__delta_xy(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorLocalPosition__delta_vxy(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__EstimatorLocalPosition__delta_vxy(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__EstimatorLocalPosition__delta_vxy(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember EstimatorLocalPosition_message_member_array[44] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "xy_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, xy_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "z_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, z_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "v_xy_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, v_xy_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "v_z_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, v_z_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "x", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, x), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "y", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, y), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "z", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, z), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "delta_xy", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, delta_xy), // bytes offset in struct nullptr, // default value size_function__EstimatorLocalPosition__delta_xy, // size() function pointer get_const_function__EstimatorLocalPosition__delta_xy, // get_const(index) function pointer get_function__EstimatorLocalPosition__delta_xy, // get(index) function pointer nullptr // resize(index) function pointer }, { "xy_reset_counter", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, xy_reset_counter), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "delta_z", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, delta_z), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "z_reset_counter", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, z_reset_counter), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vx", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, vx), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vy", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, vy), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vz", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, vz), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "z_deriv", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, z_deriv), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "delta_vxy", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, delta_vxy), // bytes offset in struct nullptr, // default value size_function__EstimatorLocalPosition__delta_vxy, // size() function pointer get_const_function__EstimatorLocalPosition__delta_vxy, // get_const(index) function pointer get_function__EstimatorLocalPosition__delta_vxy, // get(index) function pointer nullptr // resize(index) function pointer }, { "vxy_reset_counter", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, vxy_reset_counter), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "delta_vz", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, delta_vz), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vz_reset_counter", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, vz_reset_counter), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ax", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, ax), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ay", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, ay), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "az", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, az), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "heading", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, heading), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "delta_heading", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, delta_heading), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "heading_reset_counter", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, heading_reset_counter), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "xy_global", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, xy_global), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "z_global", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, z_global), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ref_timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, ref_timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ref_lat", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_DOUBLE, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, ref_lat), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ref_lon", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_DOUBLE, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, ref_lon), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ref_alt", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, ref_alt), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "dist_bottom", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, dist_bottom), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "dist_bottom_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, dist_bottom_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "dist_bottom_sensor_bitfield", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, dist_bottom_sensor_bitfield), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "eph", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, eph), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "epv", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, epv), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "evh", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, evh), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "evv", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, evv), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vxy_max", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, vxy_max), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vz_max", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, vz_max), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "hagl_min", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, hagl_min), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "hagl_max", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorLocalPosition, hagl_max), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers EstimatorLocalPosition_message_members = { "px4_msgs::msg", // message namespace "EstimatorLocalPosition", // message name 44, // number of fields sizeof(px4_msgs::msg::EstimatorLocalPosition), EstimatorLocalPosition_message_member_array, // message members EstimatorLocalPosition_init_function, // function to initialize message memory (memory has to be allocated) EstimatorLocalPosition_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t EstimatorLocalPosition_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &EstimatorLocalPosition_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::EstimatorLocalPosition>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EstimatorLocalPosition_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, EstimatorLocalPosition)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EstimatorLocalPosition_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_control_allocator_status.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/ControlAllocatorStatus.idl # generated code does not contain a copyright notice # Import statements for member types # Member 'allocated_torque' # Member 'unallocated_torque' # Member 'allocated_thrust' # Member 'unallocated_thrust' # Member 'actuator_saturation' import numpy # noqa: E402, I100 import rosidl_parser.definition # noqa: E402, I100 class Metaclass_ControlAllocatorStatus(type): """Metaclass of message 'ControlAllocatorStatus'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'ACTUATOR_SATURATION_OK': 0, 'ACTUATOR_SATURATION_UPPER_DYN': 1, 'ACTUATOR_SATURATION_UPPER': 2, 'ACTUATOR_SATURATION_LOWER_DYN': -1, 'ACTUATOR_SATURATION_LOWER': -2, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.ControlAllocatorStatus') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__control_allocator_status cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__control_allocator_status cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__control_allocator_status cls._TYPE_SUPPORT = module.type_support_msg__msg__control_allocator_status cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__control_allocator_status @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'ACTUATOR_SATURATION_OK': cls.__constants['ACTUATOR_SATURATION_OK'], 'ACTUATOR_SATURATION_UPPER_DYN': cls.__constants['ACTUATOR_SATURATION_UPPER_DYN'], 'ACTUATOR_SATURATION_UPPER': cls.__constants['ACTUATOR_SATURATION_UPPER'], 'ACTUATOR_SATURATION_LOWER_DYN': cls.__constants['ACTUATOR_SATURATION_LOWER_DYN'], 'ACTUATOR_SATURATION_LOWER': cls.__constants['ACTUATOR_SATURATION_LOWER'], } @property def ACTUATOR_SATURATION_OK(self): """Message constant 'ACTUATOR_SATURATION_OK'.""" return Metaclass_ControlAllocatorStatus.__constants['ACTUATOR_SATURATION_OK'] @property def ACTUATOR_SATURATION_UPPER_DYN(self): """Message constant 'ACTUATOR_SATURATION_UPPER_DYN'.""" return Metaclass_ControlAllocatorStatus.__constants['ACTUATOR_SATURATION_UPPER_DYN'] @property def ACTUATOR_SATURATION_UPPER(self): """Message constant 'ACTUATOR_SATURATION_UPPER'.""" return Metaclass_ControlAllocatorStatus.__constants['ACTUATOR_SATURATION_UPPER'] @property def ACTUATOR_SATURATION_LOWER_DYN(self): """Message constant 'ACTUATOR_SATURATION_LOWER_DYN'.""" return Metaclass_ControlAllocatorStatus.__constants['ACTUATOR_SATURATION_LOWER_DYN'] @property def ACTUATOR_SATURATION_LOWER(self): """Message constant 'ACTUATOR_SATURATION_LOWER'.""" return Metaclass_ControlAllocatorStatus.__constants['ACTUATOR_SATURATION_LOWER'] class ControlAllocatorStatus(metaclass=Metaclass_ControlAllocatorStatus): """ Message class 'ControlAllocatorStatus'. Constants: ACTUATOR_SATURATION_OK ACTUATOR_SATURATION_UPPER_DYN ACTUATOR_SATURATION_UPPER ACTUATOR_SATURATION_LOWER_DYN ACTUATOR_SATURATION_LOWER """ __slots__ = [ '_timestamp', '_torque_setpoint_achieved', '_allocated_torque', '_unallocated_torque', '_thrust_setpoint_achieved', '_allocated_thrust', '_unallocated_thrust', '_actuator_saturation', ] _fields_and_field_types = { 'timestamp': 'uint64', 'torque_setpoint_achieved': 'boolean', 'allocated_torque': 'float[3]', 'unallocated_torque': 'float[3]', 'thrust_setpoint_achieved': 'boolean', 'allocated_thrust': 'float[3]', 'unallocated_thrust': 'float[3]', 'actuator_saturation': 'int8[16]', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('int8'), 16), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.torque_setpoint_achieved = kwargs.get('torque_setpoint_achieved', bool()) if 'allocated_torque' not in kwargs: self.allocated_torque = numpy.zeros(3, dtype=numpy.float32) else: self.allocated_torque = numpy.array(kwargs.get('allocated_torque'), dtype=numpy.float32) assert self.allocated_torque.shape == (3, ) if 'unallocated_torque' not in kwargs: self.unallocated_torque = numpy.zeros(3, dtype=numpy.float32) else: self.unallocated_torque = numpy.array(kwargs.get('unallocated_torque'), dtype=numpy.float32) assert self.unallocated_torque.shape == (3, ) self.thrust_setpoint_achieved = kwargs.get('thrust_setpoint_achieved', bool()) if 'allocated_thrust' not in kwargs: self.allocated_thrust = numpy.zeros(3, dtype=numpy.float32) else: self.allocated_thrust = numpy.array(kwargs.get('allocated_thrust'), dtype=numpy.float32) assert self.allocated_thrust.shape == (3, ) if 'unallocated_thrust' not in kwargs: self.unallocated_thrust = numpy.zeros(3, dtype=numpy.float32) else: self.unallocated_thrust = numpy.array(kwargs.get('unallocated_thrust'), dtype=numpy.float32) assert self.unallocated_thrust.shape == (3, ) if 'actuator_saturation' not in kwargs: self.actuator_saturation = numpy.zeros(16, dtype=numpy.int8) else: self.actuator_saturation = numpy.array(kwargs.get('actuator_saturation'), dtype=numpy.int8) assert self.actuator_saturation.shape == (16, ) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.torque_setpoint_achieved != other.torque_setpoint_achieved: return False if all(self.allocated_torque != other.allocated_torque): return False if all(self.unallocated_torque != other.unallocated_torque): return False if self.thrust_setpoint_achieved != other.thrust_setpoint_achieved: return False if all(self.allocated_thrust != other.allocated_thrust): return False if all(self.unallocated_thrust != other.unallocated_thrust): return False if all(self.actuator_saturation != other.actuator_saturation): return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def torque_setpoint_achieved(self): """Message field 'torque_setpoint_achieved'.""" return self._torque_setpoint_achieved @torque_setpoint_achieved.setter def torque_setpoint_achieved(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'torque_setpoint_achieved' field must be of type 'bool'" self._torque_setpoint_achieved = value @property def allocated_torque(self): """Message field 'allocated_torque'.""" return self._allocated_torque @allocated_torque.setter def allocated_torque(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'allocated_torque' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'allocated_torque' numpy.ndarray() must have a size of 3" self._allocated_torque = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'allocated_torque' field must be a set or sequence with length 3 and each value of type 'float'" self._allocated_torque = numpy.array(value, dtype=numpy.float32) @property def unallocated_torque(self): """Message field 'unallocated_torque'.""" return self._unallocated_torque @unallocated_torque.setter def unallocated_torque(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'unallocated_torque' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'unallocated_torque' numpy.ndarray() must have a size of 3" self._unallocated_torque = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'unallocated_torque' field must be a set or sequence with length 3 and each value of type 'float'" self._unallocated_torque = numpy.array(value, dtype=numpy.float32) @property def thrust_setpoint_achieved(self): """Message field 'thrust_setpoint_achieved'.""" return self._thrust_setpoint_achieved @thrust_setpoint_achieved.setter def thrust_setpoint_achieved(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'thrust_setpoint_achieved' field must be of type 'bool'" self._thrust_setpoint_achieved = value @property def allocated_thrust(self): """Message field 'allocated_thrust'.""" return self._allocated_thrust @allocated_thrust.setter def allocated_thrust(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'allocated_thrust' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'allocated_thrust' numpy.ndarray() must have a size of 3" self._allocated_thrust = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'allocated_thrust' field must be a set or sequence with length 3 and each value of type 'float'" self._allocated_thrust = numpy.array(value, dtype=numpy.float32) @property def unallocated_thrust(self): """Message field 'unallocated_thrust'.""" return self._unallocated_thrust @unallocated_thrust.setter def unallocated_thrust(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'unallocated_thrust' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'unallocated_thrust' numpy.ndarray() must have a size of 3" self._unallocated_thrust = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'unallocated_thrust' field must be a set or sequence with length 3 and each value of type 'float'" self._unallocated_thrust = numpy.array(value, dtype=numpy.float32) @property def actuator_saturation(self): """Message field 'actuator_saturation'.""" return self._actuator_saturation @actuator_saturation.setter def actuator_saturation(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.int8, \ "The 'actuator_saturation' numpy.ndarray() must have the dtype of 'numpy.int8'" assert value.size == 16, \ "The 'actuator_saturation' numpy.ndarray() must have a size of 16" self._actuator_saturation = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 16 and all(isinstance(v, int) for v in value) and all(val >= -128 and val < 128 for val in value)), \ "The 'actuator_saturation' field must be a set or sequence with length 16 and each value of type 'int' and each integer in [-128, 127]" self._actuator_saturation = numpy.array(value, dtype=numpy.int8) <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/rc_channels.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/RcChannels.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__RC_CHANNELS_H_ #define PX4_MSGS__MSG__RC_CHANNELS_H_ #include "px4_msgs/msg/rc_channels__struct.h" #include "px4_msgs/msg/rc_channels__functions.h" #include "px4_msgs/msg/rc_channels__type_support.h" #endif // PX4_MSGS__MSG__RC_CHANNELS_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/estimator_status_flags.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_STATUS_FLAGS_HPP_ #define PX4_MSGS__MSG__ESTIMATOR_STATUS_FLAGS_HPP_ #include "px4_msgs/msg/estimator_status_flags__struct.hpp" #include "px4_msgs/msg/estimator_status_flags__traits.hpp" #endif // PX4_MSGS__MSG__ESTIMATOR_STATUS_FLAGS_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/wind__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/Wind.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/wind__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__Wind__init(px4_msgs__msg__Wind * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // windspeed_north // windspeed_east // variance_north // variance_east // tas_innov // tas_innov_var // beta_innov // beta_innov_var return true; } void px4_msgs__msg__Wind__fini(px4_msgs__msg__Wind * msg) { if (!msg) { return; } // timestamp // timestamp_sample // windspeed_north // windspeed_east // variance_north // variance_east // tas_innov // tas_innov_var // beta_innov // beta_innov_var } px4_msgs__msg__Wind * px4_msgs__msg__Wind__create() { px4_msgs__msg__Wind * msg = (px4_msgs__msg__Wind *)malloc(sizeof(px4_msgs__msg__Wind)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__Wind)); bool success = px4_msgs__msg__Wind__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__Wind__destroy(px4_msgs__msg__Wind * msg) { if (msg) { px4_msgs__msg__Wind__fini(msg); } free(msg); } bool px4_msgs__msg__Wind__Sequence__init(px4_msgs__msg__Wind__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__Wind * data = NULL; if (size) { data = (px4_msgs__msg__Wind *)calloc(size, sizeof(px4_msgs__msg__Wind)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__Wind__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__Wind__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__Wind__Sequence__fini(px4_msgs__msg__Wind__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__Wind__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__Wind__Sequence * px4_msgs__msg__Wind__Sequence__create(size_t size) { px4_msgs__msg__Wind__Sequence * array = (px4_msgs__msg__Wind__Sequence *)malloc(sizeof(px4_msgs__msg__Wind__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__Wind__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__Wind__Sequence__destroy(px4_msgs__msg__Wind__Sequence * array) { if (array) { px4_msgs__msg__Wind__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_states__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/EstimatorStates.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_STATES__STRUCT_H_ #define PX4_MSGS__MSG__ESTIMATOR_STATES__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/EstimatorStates in the package px4_msgs. typedef struct px4_msgs__msg__EstimatorStates { uint64_t timestamp; uint64_t timestamp_sample; float states[24]; uint8_t n_states; float covariances[24]; } px4_msgs__msg__EstimatorStates; // Struct for a sequence of px4_msgs__msg__EstimatorStates. typedef struct px4_msgs__msg__EstimatorStates__Sequence { px4_msgs__msg__EstimatorStates * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__EstimatorStates__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ESTIMATOR_STATES__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/McVirtualAttitudeSetpoint.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/mc_virtual_attitude_setpoint__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void McVirtualAttitudeSetpoint_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::McVirtualAttitudeSetpoint(_init); } void McVirtualAttitudeSetpoint_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::McVirtualAttitudeSetpoint *>(message_memory); typed_message->~McVirtualAttitudeSetpoint(); } size_t size_function__McVirtualAttitudeSetpoint__q_d(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__McVirtualAttitudeSetpoint__q_d(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 4> *>(untyped_member); return &member[index]; } void * get_function__McVirtualAttitudeSetpoint__q_d(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 4> *>(untyped_member); return &member[index]; } size_t size_function__McVirtualAttitudeSetpoint__thrust_body(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__McVirtualAttitudeSetpoint__thrust_body(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__McVirtualAttitudeSetpoint__thrust_body(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember McVirtualAttitudeSetpoint_message_member_array[12] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::McVirtualAttitudeSetpoint, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "roll_body", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::McVirtualAttitudeSetpoint, roll_body), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "pitch_body", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::McVirtualAttitudeSetpoint, pitch_body), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "yaw_body", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::McVirtualAttitudeSetpoint, yaw_body), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "yaw_sp_move_rate", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::McVirtualAttitudeSetpoint, yaw_sp_move_rate), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "q_d", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::McVirtualAttitudeSetpoint, q_d), // bytes offset in struct nullptr, // default value size_function__McVirtualAttitudeSetpoint__q_d, // size() function pointer get_const_function__McVirtualAttitudeSetpoint__q_d, // get_const(index) function pointer get_function__McVirtualAttitudeSetpoint__q_d, // get(index) function pointer nullptr // resize(index) function pointer }, { "thrust_body", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::McVirtualAttitudeSetpoint, thrust_body), // bytes offset in struct nullptr, // default value size_function__McVirtualAttitudeSetpoint__thrust_body, // size() function pointer get_const_function__McVirtualAttitudeSetpoint__thrust_body, // get_const(index) function pointer get_function__McVirtualAttitudeSetpoint__thrust_body, // get(index) function pointer nullptr // resize(index) function pointer }, { "roll_reset_integral", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::McVirtualAttitudeSetpoint, roll_reset_integral), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "pitch_reset_integral", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::McVirtualAttitudeSetpoint, pitch_reset_integral), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "yaw_reset_integral", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::McVirtualAttitudeSetpoint, yaw_reset_integral), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "fw_control_yaw", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::McVirtualAttitudeSetpoint, fw_control_yaw), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "apply_flaps", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::McVirtualAttitudeSetpoint, apply_flaps), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers McVirtualAttitudeSetpoint_message_members = { "px4_msgs::msg", // message namespace "McVirtualAttitudeSetpoint", // message name 12, // number of fields sizeof(px4_msgs::msg::McVirtualAttitudeSetpoint), McVirtualAttitudeSetpoint_message_member_array, // message members McVirtualAttitudeSetpoint_init_function, // function to initialize message memory (memory has to be allocated) McVirtualAttitudeSetpoint_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t McVirtualAttitudeSetpoint_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &McVirtualAttitudeSetpoint_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::McVirtualAttitudeSetpoint>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::McVirtualAttitudeSetpoint_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, McVirtualAttitudeSetpoint)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::McVirtualAttitudeSetpoint_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/tecs_status.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/TecsStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TECS_STATUS_H_ #define PX4_MSGS__MSG__TECS_STATUS_H_ #include "px4_msgs/msg/tecs_status__struct.h" #include "px4_msgs/msg/tecs_status__functions.h" #include "px4_msgs/msg/tecs_status__type_support.h" #endif // PX4_MSGS__MSG__TECS_STATUS_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_attitude__rosidl_typesupport_introspection_c.h // generated from rosidl_typesupport_introspection_c/resource/idl__rosidl_typesupport_introspection_c.h.em // with input from px4_msgs:msg/EstimatorAttitude.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_ATTITUDE__ROSIDL_TYPESUPPORT_INTROSPECTION_C_H_ #define PX4_MSGS__MSG__ESTIMATOR_ATTITUDE__ROSIDL_TYPESUPPORT_INTROSPECTION_C_H_ #ifdef __cplusplus extern "C" { #endif #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" ROSIDL_TYPESUPPORT_INTROSPECTION_C_PUBLIC_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, EstimatorAttitude)(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ESTIMATOR_ATTITUDE__ROSIDL_TYPESUPPORT_INTROSPECTION_C_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/power_monitor__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/PowerMonitor.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__POWER_MONITOR__STRUCT_H_ #define PX4_MSGS__MSG__POWER_MONITOR__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/PowerMonitor in the package px4_msgs. typedef struct px4_msgs__msg__PowerMonitor { uint64_t timestamp; float voltage_v; float current_a; float power_w; int16_t rconf; int16_t rsv; int16_t rbv; int16_t rp; int16_t rc; int16_t rcal; int16_t me; int16_t al; } px4_msgs__msg__PowerMonitor; // Struct for a sequence of px4_msgs__msg__PowerMonitor. typedef struct px4_msgs__msg__PowerMonitor__Sequence { px4_msgs__msg__PowerMonitor * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__PowerMonitor__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__POWER_MONITOR__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_distance_sensor.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/DistanceSensor.idl # generated code does not contain a copyright notice # Import statements for member types # Member 'q' import numpy # noqa: E402, I100 import rosidl_parser.definition # noqa: E402, I100 class Metaclass_DistanceSensor(type): """Metaclass of message 'DistanceSensor'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'MAV_DISTANCE_SENSOR_LASER': 0, 'MAV_DISTANCE_SENSOR_ULTRASOUND': 1, 'MAV_DISTANCE_SENSOR_INFRARED': 2, 'MAV_DISTANCE_SENSOR_RADAR': 3, 'ROTATION_YAW_0': 0, 'ROTATION_YAW_45': 1, 'ROTATION_YAW_90': 2, 'ROTATION_YAW_135': 3, 'ROTATION_YAW_180': 4, 'ROTATION_YAW_225': 5, 'ROTATION_YAW_270': 6, 'ROTATION_YAW_315': 7, 'ROTATION_FORWARD_FACING': 0, 'ROTATION_RIGHT_FACING': 2, 'ROTATION_BACKWARD_FACING': 4, 'ROTATION_LEFT_FACING': 6, 'ROTATION_UPWARD_FACING': 24, 'ROTATION_DOWNWARD_FACING': 25, 'ROTATION_CUSTOM': 100, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.DistanceSensor') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__distance_sensor cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__distance_sensor cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__distance_sensor cls._TYPE_SUPPORT = module.type_support_msg__msg__distance_sensor cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__distance_sensor @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'MAV_DISTANCE_SENSOR_LASER': cls.__constants['MAV_DISTANCE_SENSOR_LASER'], 'MAV_DISTANCE_SENSOR_ULTRASOUND': cls.__constants['MAV_DISTANCE_SENSOR_ULTRASOUND'], 'MAV_DISTANCE_SENSOR_INFRARED': cls.__constants['MAV_DISTANCE_SENSOR_INFRARED'], 'MAV_DISTANCE_SENSOR_RADAR': cls.__constants['MAV_DISTANCE_SENSOR_RADAR'], 'ROTATION_YAW_0': cls.__constants['ROTATION_YAW_0'], 'ROTATION_YAW_45': cls.__constants['ROTATION_YAW_45'], 'ROTATION_YAW_90': cls.__constants['ROTATION_YAW_90'], 'ROTATION_YAW_135': cls.__constants['ROTATION_YAW_135'], 'ROTATION_YAW_180': cls.__constants['ROTATION_YAW_180'], 'ROTATION_YAW_225': cls.__constants['ROTATION_YAW_225'], 'ROTATION_YAW_270': cls.__constants['ROTATION_YAW_270'], 'ROTATION_YAW_315': cls.__constants['ROTATION_YAW_315'], 'ROTATION_FORWARD_FACING': cls.__constants['ROTATION_FORWARD_FACING'], 'ROTATION_RIGHT_FACING': cls.__constants['ROTATION_RIGHT_FACING'], 'ROTATION_BACKWARD_FACING': cls.__constants['ROTATION_BACKWARD_FACING'], 'ROTATION_LEFT_FACING': cls.__constants['ROTATION_LEFT_FACING'], 'ROTATION_UPWARD_FACING': cls.__constants['ROTATION_UPWARD_FACING'], 'ROTATION_DOWNWARD_FACING': cls.__constants['ROTATION_DOWNWARD_FACING'], 'ROTATION_CUSTOM': cls.__constants['ROTATION_CUSTOM'], } @property def MAV_DISTANCE_SENSOR_LASER(self): """Message constant 'MAV_DISTANCE_SENSOR_LASER'.""" return Metaclass_DistanceSensor.__constants['MAV_DISTANCE_SENSOR_LASER'] @property def MAV_DISTANCE_SENSOR_ULTRASOUND(self): """Message constant 'MAV_DISTANCE_SENSOR_ULTRASOUND'.""" return Metaclass_DistanceSensor.__constants['MAV_DISTANCE_SENSOR_ULTRASOUND'] @property def MAV_DISTANCE_SENSOR_INFRARED(self): """Message constant 'MAV_DISTANCE_SENSOR_INFRARED'.""" return Metaclass_DistanceSensor.__constants['MAV_DISTANCE_SENSOR_INFRARED'] @property def MAV_DISTANCE_SENSOR_RADAR(self): """Message constant 'MAV_DISTANCE_SENSOR_RADAR'.""" return Metaclass_DistanceSensor.__constants['MAV_DISTANCE_SENSOR_RADAR'] @property def ROTATION_YAW_0(self): """Message constant 'ROTATION_YAW_0'.""" return Metaclass_DistanceSensor.__constants['ROTATION_YAW_0'] @property def ROTATION_YAW_45(self): """Message constant 'ROTATION_YAW_45'.""" return Metaclass_DistanceSensor.__constants['ROTATION_YAW_45'] @property def ROTATION_YAW_90(self): """Message constant 'ROTATION_YAW_90'.""" return Metaclass_DistanceSensor.__constants['ROTATION_YAW_90'] @property def ROTATION_YAW_135(self): """Message constant 'ROTATION_YAW_135'.""" return Metaclass_DistanceSensor.__constants['ROTATION_YAW_135'] @property def ROTATION_YAW_180(self): """Message constant 'ROTATION_YAW_180'.""" return Metaclass_DistanceSensor.__constants['ROTATION_YAW_180'] @property def ROTATION_YAW_225(self): """Message constant 'ROTATION_YAW_225'.""" return Metaclass_DistanceSensor.__constants['ROTATION_YAW_225'] @property def ROTATION_YAW_270(self): """Message constant 'ROTATION_YAW_270'.""" return Metaclass_DistanceSensor.__constants['ROTATION_YAW_270'] @property def ROTATION_YAW_315(self): """Message constant 'ROTATION_YAW_315'.""" return Metaclass_DistanceSensor.__constants['ROTATION_YAW_315'] @property def ROTATION_FORWARD_FACING(self): """Message constant 'ROTATION_FORWARD_FACING'.""" return Metaclass_DistanceSensor.__constants['ROTATION_FORWARD_FACING'] @property def ROTATION_RIGHT_FACING(self): """Message constant 'ROTATION_RIGHT_FACING'.""" return Metaclass_DistanceSensor.__constants['ROTATION_RIGHT_FACING'] @property def ROTATION_BACKWARD_FACING(self): """Message constant 'ROTATION_BACKWARD_FACING'.""" return Metaclass_DistanceSensor.__constants['ROTATION_BACKWARD_FACING'] @property def ROTATION_LEFT_FACING(self): """Message constant 'ROTATION_LEFT_FACING'.""" return Metaclass_DistanceSensor.__constants['ROTATION_LEFT_FACING'] @property def ROTATION_UPWARD_FACING(self): """Message constant 'ROTATION_UPWARD_FACING'.""" return Metaclass_DistanceSensor.__constants['ROTATION_UPWARD_FACING'] @property def ROTATION_DOWNWARD_FACING(self): """Message constant 'ROTATION_DOWNWARD_FACING'.""" return Metaclass_DistanceSensor.__constants['ROTATION_DOWNWARD_FACING'] @property def ROTATION_CUSTOM(self): """Message constant 'ROTATION_CUSTOM'.""" return Metaclass_DistanceSensor.__constants['ROTATION_CUSTOM'] class DistanceSensor(metaclass=Metaclass_DistanceSensor): """ Message class 'DistanceSensor'. Constants: MAV_DISTANCE_SENSOR_LASER MAV_DISTANCE_SENSOR_ULTRASOUND MAV_DISTANCE_SENSOR_INFRARED MAV_DISTANCE_SENSOR_RADAR ROTATION_YAW_0 ROTATION_YAW_45 ROTATION_YAW_90 ROTATION_YAW_135 ROTATION_YAW_180 ROTATION_YAW_225 ROTATION_YAW_270 ROTATION_YAW_315 ROTATION_FORWARD_FACING ROTATION_RIGHT_FACING ROTATION_BACKWARD_FACING ROTATION_LEFT_FACING ROTATION_UPWARD_FACING ROTATION_DOWNWARD_FACING ROTATION_CUSTOM """ __slots__ = [ '_timestamp', '_device_id', '_min_distance', '_max_distance', '_current_distance', '_variance', '_signal_quality', '_type', '_h_fov', '_v_fov', '_q', '_orientation', ] _fields_and_field_types = { 'timestamp': 'uint64', 'device_id': 'uint32', 'min_distance': 'float', 'max_distance': 'float', 'current_distance': 'float', 'variance': 'float', 'signal_quality': 'int8', 'type': 'uint8', 'h_fov': 'float', 'v_fov': 'float', 'q': 'float[4]', 'orientation': 'uint8', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('int8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 4), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.device_id = kwargs.get('device_id', int()) self.min_distance = kwargs.get('min_distance', float()) self.max_distance = kwargs.get('max_distance', float()) self.current_distance = kwargs.get('current_distance', float()) self.variance = kwargs.get('variance', float()) self.signal_quality = kwargs.get('signal_quality', int()) self.type = kwargs.get('type', int()) self.h_fov = kwargs.get('h_fov', float()) self.v_fov = kwargs.get('v_fov', float()) if 'q' not in kwargs: self.q = numpy.zeros(4, dtype=numpy.float32) else: self.q = numpy.array(kwargs.get('q'), dtype=numpy.float32) assert self.q.shape == (4, ) self.orientation = kwargs.get('orientation', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.device_id != other.device_id: return False if self.min_distance != other.min_distance: return False if self.max_distance != other.max_distance: return False if self.current_distance != other.current_distance: return False if self.variance != other.variance: return False if self.signal_quality != other.signal_quality: return False if self.type != other.type: return False if self.h_fov != other.h_fov: return False if self.v_fov != other.v_fov: return False if all(self.q != other.q): return False if self.orientation != other.orientation: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def device_id(self): """Message field 'device_id'.""" return self._device_id @device_id.setter def device_id(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'device_id' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'device_id' field must be an unsigned integer in [0, 4294967295]" self._device_id = value @property def min_distance(self): """Message field 'min_distance'.""" return self._min_distance @min_distance.setter def min_distance(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'min_distance' field must be of type 'float'" self._min_distance = value @property def max_distance(self): """Message field 'max_distance'.""" return self._max_distance @max_distance.setter def max_distance(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'max_distance' field must be of type 'float'" self._max_distance = value @property def current_distance(self): """Message field 'current_distance'.""" return self._current_distance @current_distance.setter def current_distance(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'current_distance' field must be of type 'float'" self._current_distance = value @property def variance(self): """Message field 'variance'.""" return self._variance @variance.setter def variance(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'variance' field must be of type 'float'" self._variance = value @property def signal_quality(self): """Message field 'signal_quality'.""" return self._signal_quality @signal_quality.setter def signal_quality(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'signal_quality' field must be of type 'int'" assert value >= -128 and value < 128, \ "The 'signal_quality' field must be an integer in [-128, 127]" self._signal_quality = value @property # noqa: A003 def type(self): """Message field 'type'.""" return self._type @type.setter # noqa: A003 def type(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'type' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'type' field must be an unsigned integer in [0, 255]" self._type = value @property def h_fov(self): """Message field 'h_fov'.""" return self._h_fov @h_fov.setter def h_fov(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'h_fov' field must be of type 'float'" self._h_fov = value @property def v_fov(self): """Message field 'v_fov'.""" return self._v_fov @v_fov.setter def v_fov(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'v_fov' field must be of type 'float'" self._v_fov = value @property def q(self): """Message field 'q'.""" return self._q @q.setter def q(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'q' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 4, \ "The 'q' numpy.ndarray() must have a size of 4" self._q = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 4 and all(isinstance(v, float) for v in value) and True), \ "The 'q' field must be a set or sequence with length 4 and each value of type 'float'" self._q = numpy.array(value, dtype=numpy.float32) @property def orientation(self): """Message field 'orientation'.""" return self._orientation @orientation.setter def orientation(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'orientation' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'orientation' field must be an unsigned integer in [0, 255]" self._orientation = value <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/input_rc__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/InputRc.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/input_rc__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/input_rc__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::InputRc & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: timestamp_last_signal cdr << ros_message.timestamp_last_signal; // Member: channel_count cdr << ros_message.channel_count; // Member: rssi cdr << ros_message.rssi; // Member: rc_failsafe cdr << (ros_message.rc_failsafe ? true : false); // Member: rc_lost cdr << (ros_message.rc_lost ? true : false); // Member: rc_lost_frame_count cdr << ros_message.rc_lost_frame_count; // Member: rc_total_frame_count cdr << ros_message.rc_total_frame_count; // Member: rc_ppm_frame_length cdr << ros_message.rc_ppm_frame_length; // Member: input_source cdr << ros_message.input_source; // Member: values { cdr << ros_message.values; } return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::InputRc & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: timestamp_last_signal cdr >> ros_message.timestamp_last_signal; // Member: channel_count cdr >> ros_message.channel_count; // Member: rssi cdr >> ros_message.rssi; // Member: rc_failsafe { uint8_t tmp; cdr >> tmp; ros_message.rc_failsafe = tmp ? true : false; } // Member: rc_lost { uint8_t tmp; cdr >> tmp; ros_message.rc_lost = tmp ? true : false; } // Member: rc_lost_frame_count cdr >> ros_message.rc_lost_frame_count; // Member: rc_total_frame_count cdr >> ros_message.rc_total_frame_count; // Member: rc_ppm_frame_length cdr >> ros_message.rc_ppm_frame_length; // Member: input_source cdr >> ros_message.input_source; // Member: values { cdr >> ros_message.values; } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::InputRc & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: timestamp_last_signal { size_t item_size = sizeof(ros_message.timestamp_last_signal); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: channel_count { size_t item_size = sizeof(ros_message.channel_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rssi { size_t item_size = sizeof(ros_message.rssi); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rc_failsafe { size_t item_size = sizeof(ros_message.rc_failsafe); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rc_lost { size_t item_size = sizeof(ros_message.rc_lost); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rc_lost_frame_count { size_t item_size = sizeof(ros_message.rc_lost_frame_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rc_total_frame_count { size_t item_size = sizeof(ros_message.rc_total_frame_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rc_ppm_frame_length { size_t item_size = sizeof(ros_message.rc_ppm_frame_length); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: input_source { size_t item_size = sizeof(ros_message.input_source); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: values { size_t array_size = 18; size_t item_size = sizeof(ros_message.values[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_InputRc( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: timestamp_last_signal { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: channel_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: rssi { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: rc_failsafe { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: rc_lost { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: rc_lost_frame_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: rc_total_frame_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: rc_ppm_frame_length { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: input_source { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: values { size_t array_size = 18; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } return current_alignment - initial_alignment; } static bool _InputRc__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::InputRc *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _InputRc__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::InputRc *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _InputRc__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::InputRc *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _InputRc__max_serialized_size(bool & full_bounded) { return max_serialized_size_InputRc(full_bounded, 0); } static message_type_support_callbacks_t _InputRc__callbacks = { "px4_msgs::msg", "InputRc", _InputRc__cdr_serialize, _InputRc__cdr_deserialize, _InputRc__get_serialized_size, _InputRc__max_serialized_size }; static rosidl_message_type_support_t _InputRc__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_InputRc__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::InputRc>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_InputRc__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, InputRc)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_InputRc__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensors_status_imu__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/SensorsStatusImu.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/sensors_status_imu__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/sensors_status_imu__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::SensorsStatusImu & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: accel_device_id_primary cdr << ros_message.accel_device_id_primary; // Member: accel_device_ids { cdr << ros_message.accel_device_ids; } // Member: accel_inconsistency_m_s_s { cdr << ros_message.accel_inconsistency_m_s_s; } // Member: accel_healthy { cdr << ros_message.accel_healthy; } // Member: gyro_device_id_primary cdr << ros_message.gyro_device_id_primary; // Member: gyro_device_ids { cdr << ros_message.gyro_device_ids; } // Member: gyro_inconsistency_rad_s { cdr << ros_message.gyro_inconsistency_rad_s; } // Member: gyro_healthy { cdr << ros_message.gyro_healthy; } return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::SensorsStatusImu & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: accel_device_id_primary cdr >> ros_message.accel_device_id_primary; // Member: accel_device_ids { cdr >> ros_message.accel_device_ids; } // Member: accel_inconsistency_m_s_s { cdr >> ros_message.accel_inconsistency_m_s_s; } // Member: accel_healthy { cdr >> ros_message.accel_healthy; } // Member: gyro_device_id_primary cdr >> ros_message.gyro_device_id_primary; // Member: gyro_device_ids { cdr >> ros_message.gyro_device_ids; } // Member: gyro_inconsistency_rad_s { cdr >> ros_message.gyro_inconsistency_rad_s; } // Member: gyro_healthy { cdr >> ros_message.gyro_healthy; } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::SensorsStatusImu & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: accel_device_id_primary { size_t item_size = sizeof(ros_message.accel_device_id_primary); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: accel_device_ids { size_t array_size = 4; size_t item_size = sizeof(ros_message.accel_device_ids[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: accel_inconsistency_m_s_s { size_t array_size = 4; size_t item_size = sizeof(ros_message.accel_inconsistency_m_s_s[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: accel_healthy { size_t array_size = 4; size_t item_size = sizeof(ros_message.accel_healthy[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gyro_device_id_primary { size_t item_size = sizeof(ros_message.gyro_device_id_primary); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gyro_device_ids { size_t array_size = 4; size_t item_size = sizeof(ros_message.gyro_device_ids[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gyro_inconsistency_rad_s { size_t array_size = 4; size_t item_size = sizeof(ros_message.gyro_inconsistency_rad_s[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gyro_healthy { size_t array_size = 4; size_t item_size = sizeof(ros_message.gyro_healthy[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_SensorsStatusImu( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: accel_device_id_primary { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: accel_device_ids { size_t array_size = 4; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: accel_inconsistency_m_s_s { size_t array_size = 4; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: accel_healthy { size_t array_size = 4; current_alignment += array_size * sizeof(uint8_t); } // Member: gyro_device_id_primary { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: gyro_device_ids { size_t array_size = 4; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: gyro_inconsistency_rad_s { size_t array_size = 4; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: gyro_healthy { size_t array_size = 4; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _SensorsStatusImu__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::SensorsStatusImu *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _SensorsStatusImu__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::SensorsStatusImu *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _SensorsStatusImu__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::SensorsStatusImu *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _SensorsStatusImu__max_serialized_size(bool & full_bounded) { return max_serialized_size_SensorsStatusImu(full_bounded, 0); } static message_type_support_callbacks_t _SensorsStatusImu__callbacks = { "px4_msgs::msg", "SensorsStatusImu", _SensorsStatusImu__cdr_serialize, _SensorsStatusImu__cdr_deserialize, _SensorsStatusImu__get_serialized_size, _SensorsStatusImu__max_serialized_size }; static rosidl_message_type_support_t _SensorsStatusImu__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_SensorsStatusImu__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::SensorsStatusImu>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_SensorsStatusImu__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, SensorsStatusImu)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_SensorsStatusImu__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/wheel_encoders.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__WHEEL_ENCODERS_HPP_ #define PX4_MSGS__MSG__WHEEL_ENCODERS_HPP_ #include "px4_msgs/msg/wheel_encoders__struct.hpp" #include "px4_msgs/msg/wheel_encoders__traits.hpp" #endif // PX4_MSGS__MSG__WHEEL_ENCODERS_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_position_controller_status.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/PositionControllerStatus.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_PositionControllerStatus(type): """Metaclass of message 'PositionControllerStatus'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.PositionControllerStatus') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__position_controller_status cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__position_controller_status cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__position_controller_status cls._TYPE_SUPPORT = module.type_support_msg__msg__position_controller_status cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__position_controller_status @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class PositionControllerStatus(metaclass=Metaclass_PositionControllerStatus): """Message class 'PositionControllerStatus'.""" __slots__ = [ '_timestamp', '_nav_roll', '_nav_pitch', '_nav_bearing', '_target_bearing', '_xtrack_error', '_wp_dist', '_acceptance_radius', '_yaw_acceptance', '_altitude_acceptance', '_type', ] _fields_and_field_types = { 'timestamp': 'uint64', 'nav_roll': 'float', 'nav_pitch': 'float', 'nav_bearing': 'float', 'target_bearing': 'float', 'xtrack_error': 'float', 'wp_dist': 'float', 'acceptance_radius': 'float', 'yaw_acceptance': 'float', 'altitude_acceptance': 'float', 'type': 'uint8', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.nav_roll = kwargs.get('nav_roll', float()) self.nav_pitch = kwargs.get('nav_pitch', float()) self.nav_bearing = kwargs.get('nav_bearing', float()) self.target_bearing = kwargs.get('target_bearing', float()) self.xtrack_error = kwargs.get('xtrack_error', float()) self.wp_dist = kwargs.get('wp_dist', float()) self.acceptance_radius = kwargs.get('acceptance_radius', float()) self.yaw_acceptance = kwargs.get('yaw_acceptance', float()) self.altitude_acceptance = kwargs.get('altitude_acceptance', float()) self.type = kwargs.get('type', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.nav_roll != other.nav_roll: return False if self.nav_pitch != other.nav_pitch: return False if self.nav_bearing != other.nav_bearing: return False if self.target_bearing != other.target_bearing: return False if self.xtrack_error != other.xtrack_error: return False if self.wp_dist != other.wp_dist: return False if self.acceptance_radius != other.acceptance_radius: return False if self.yaw_acceptance != other.yaw_acceptance: return False if self.altitude_acceptance != other.altitude_acceptance: return False if self.type != other.type: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def nav_roll(self): """Message field 'nav_roll'.""" return self._nav_roll @nav_roll.setter def nav_roll(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'nav_roll' field must be of type 'float'" self._nav_roll = value @property def nav_pitch(self): """Message field 'nav_pitch'.""" return self._nav_pitch @nav_pitch.setter def nav_pitch(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'nav_pitch' field must be of type 'float'" self._nav_pitch = value @property def nav_bearing(self): """Message field 'nav_bearing'.""" return self._nav_bearing @nav_bearing.setter def nav_bearing(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'nav_bearing' field must be of type 'float'" self._nav_bearing = value @property def target_bearing(self): """Message field 'target_bearing'.""" return self._target_bearing @target_bearing.setter def target_bearing(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'target_bearing' field must be of type 'float'" self._target_bearing = value @property def xtrack_error(self): """Message field 'xtrack_error'.""" return self._xtrack_error @xtrack_error.setter def xtrack_error(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'xtrack_error' field must be of type 'float'" self._xtrack_error = value @property def wp_dist(self): """Message field 'wp_dist'.""" return self._wp_dist @wp_dist.setter def wp_dist(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'wp_dist' field must be of type 'float'" self._wp_dist = value @property def acceptance_radius(self): """Message field 'acceptance_radius'.""" return self._acceptance_radius @acceptance_radius.setter def acceptance_radius(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'acceptance_radius' field must be of type 'float'" self._acceptance_radius = value @property def yaw_acceptance(self): """Message field 'yaw_acceptance'.""" return self._yaw_acceptance @yaw_acceptance.setter def yaw_acceptance(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'yaw_acceptance' field must be of type 'float'" self._yaw_acceptance = value @property def altitude_acceptance(self): """Message field 'altitude_acceptance'.""" return self._altitude_acceptance @altitude_acceptance.setter def altitude_acceptance(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'altitude_acceptance' field must be of type 'float'" self._altitude_acceptance = value @property # noqa: A003 def type(self): """Message field 'type'.""" return self._type @type.setter # noqa: A003 def type(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'type' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'type' field must be an unsigned integer in [0, 255]" self._type = value <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/timesync_status__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/TimesyncStatus.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/timesync_status__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/timesync_status__functions.h" #include "px4_msgs/msg/timesync_status__struct.h" #ifdef __cplusplus extern "C" { #endif void TimesyncStatus__rosidl_typesupport_introspection_c__TimesyncStatus_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__TimesyncStatus__init(message_memory); } void TimesyncStatus__rosidl_typesupport_introspection_c__TimesyncStatus_fini_function(void * message_memory) { px4_msgs__msg__TimesyncStatus__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember TimesyncStatus__rosidl_typesupport_introspection_c__TimesyncStatus_message_member_array[5] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TimesyncStatus, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "remote_timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TimesyncStatus, remote_timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "observed_offset", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TimesyncStatus, observed_offset), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "estimated_offset", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TimesyncStatus, estimated_offset), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "round_trip_time", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TimesyncStatus, round_trip_time), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers TimesyncStatus__rosidl_typesupport_introspection_c__TimesyncStatus_message_members = { "px4_msgs__msg", // message namespace "TimesyncStatus", // message name 5, // number of fields sizeof(px4_msgs__msg__TimesyncStatus), TimesyncStatus__rosidl_typesupport_introspection_c__TimesyncStatus_message_member_array, // message members TimesyncStatus__rosidl_typesupport_introspection_c__TimesyncStatus_init_function, // function to initialize message memory (memory has to be allocated) TimesyncStatus__rosidl_typesupport_introspection_c__TimesyncStatus_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t TimesyncStatus__rosidl_typesupport_introspection_c__TimesyncStatus_message_type_support_handle = { 0, &TimesyncStatus__rosidl_typesupport_introspection_c__TimesyncStatus_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, TimesyncStatus)() { if (!TimesyncStatus__rosidl_typesupport_introspection_c__TimesyncStatus_message_type_support_handle.typesupport_identifier) { TimesyncStatus__rosidl_typesupport_introspection_c__TimesyncStatus_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &TimesyncStatus__rosidl_typesupport_introspection_c__TimesyncStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/test_motor__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/TestMotor.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TEST_MOTOR__FUNCTIONS_H_ #define PX4_MSGS__MSG__TEST_MOTOR__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/test_motor__struct.h" /// Initialize msg/TestMotor message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__TestMotor * )) before or use * px4_msgs__msg__TestMotor__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__TestMotor__init(px4_msgs__msg__TestMotor * msg); /// Finalize msg/TestMotor message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__TestMotor__fini(px4_msgs__msg__TestMotor * msg); /// Create msg/TestMotor message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__TestMotor__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__TestMotor * px4_msgs__msg__TestMotor__create(); /// Destroy msg/TestMotor message. /** * It calls * px4_msgs__msg__TestMotor__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__TestMotor__destroy(px4_msgs__msg__TestMotor * msg); /// Initialize array of msg/TestMotor messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__TestMotor__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__TestMotor__Sequence__init(px4_msgs__msg__TestMotor__Sequence * array, size_t size); /// Finalize array of msg/TestMotor messages. /** * It calls * px4_msgs__msg__TestMotor__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__TestMotor__Sequence__fini(px4_msgs__msg__TestMotor__Sequence * array); /// Create array of msg/TestMotor messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__TestMotor__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__TestMotor__Sequence * px4_msgs__msg__TestMotor__Sequence__create(size_t size); /// Destroy array of msg/TestMotor messages. /** * It calls * px4_msgs__msg__TestMotor__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__TestMotor__Sequence__destroy(px4_msgs__msg__TestMotor__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__TEST_MOTOR__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleAngularAccelerationSetpoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ANGULAR_ACCELERATION_SETPOINT_H_ #define PX4_MSGS__MSG__VEHICLE_ANGULAR_ACCELERATION_SETPOINT_H_ #include "px4_msgs/msg/vehicle_angular_acceleration_setpoint__struct.h" #include "px4_msgs/msg/vehicle_angular_acceleration_setpoint__functions.h" #include "px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_ANGULAR_ACCELERATION_SETPOINT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/orb_test__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/OrbTest.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORB_TEST__STRUCT_H_ #define PX4_MSGS__MSG__ORB_TEST__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/OrbTest in the package px4_msgs. typedef struct px4_msgs__msg__OrbTest { uint64_t timestamp; int32_t val; } px4_msgs__msg__OrbTest; // Struct for a sequence of px4_msgs__msg__OrbTest. typedef struct px4_msgs__msg__OrbTest__Sequence { px4_msgs__msg__OrbTest * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__OrbTest__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ORB_TEST__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/orb_test_medium_queue.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORB_TEST_MEDIUM_QUEUE_HPP_ #define PX4_MSGS__MSG__ORB_TEST_MEDIUM_QUEUE_HPP_ #include "px4_msgs/msg/orb_test_medium_queue__struct.hpp" #include "px4_msgs/msg/orb_test_medium_queue__traits.hpp" #endif // PX4_MSGS__MSG__ORB_TEST_MEDIUM_QUEUE_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_thrust_setpoint.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_THRUST_SETPOINT_HPP_ #define PX4_MSGS__MSG__VEHICLE_THRUST_SETPOINT_HPP_ #include "px4_msgs/msg/vehicle_thrust_setpoint__struct.hpp" #include "px4_msgs/msg/vehicle_thrust_setpoint__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_THRUST_SETPOINT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_fastrtps_c.c // generated from rosidl_generator_py/resource/_idl_pkg_typesupport_entry_point.c.em // generated code does not contain a copyright notice #include <Python.h> static PyMethodDef px4_msgs__methods[] = { {NULL, NULL, 0, NULL} /* sentinel */ }; static struct PyModuleDef px4_msgs__module = { PyModuleDef_HEAD_INIT, "_px4_msgs_support", "_px4_msgs_doc", -1, /* -1 means that the module keeps state in global variables */ px4_msgs__methods, NULL, NULL, NULL, NULL, }; #include <stdbool.h> #include <stdint.h> #include "rosidl_generator_c/visibility_control.h" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_generator_c/service_type_support_struct.h" #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/actuator_armed__type_support.h" #include "px4_msgs/msg/actuator_armed__struct.h" #include "px4_msgs/msg/actuator_armed__functions.h" static void * px4_msgs__msg__actuator_armed__create_ros_message(void) { return px4_msgs__msg__ActuatorArmed__create(); } static void px4_msgs__msg__actuator_armed__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__ActuatorArmed * ros_message = (px4_msgs__msg__ActuatorArmed *)raw_ros_message; px4_msgs__msg__ActuatorArmed__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__actuator_armed__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__actuator_armed__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ActuatorArmed); int8_t _register_msg_type__msg__actuator_armed(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__actuator_armed__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__actuator_armed", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__actuator_armed__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__actuator_armed", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__actuator_armed__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__actuator_armed", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__actuator_armed__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__actuator_armed", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ActuatorArmed), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__actuator_armed", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/actuator_controls__type_support.h" #include "px4_msgs/msg/actuator_controls__struct.h" #include "px4_msgs/msg/actuator_controls__functions.h" static void * px4_msgs__msg__actuator_controls__create_ros_message(void) { return px4_msgs__msg__ActuatorControls__create(); } static void px4_msgs__msg__actuator_controls__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__ActuatorControls * ros_message = (px4_msgs__msg__ActuatorControls *)raw_ros_message; px4_msgs__msg__ActuatorControls__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__actuator_controls__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__actuator_controls__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ActuatorControls); int8_t _register_msg_type__msg__actuator_controls(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__actuator_controls", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__actuator_controls", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__actuator_controls", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__actuator_controls", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ActuatorControls), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__actuator_controls", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/actuator_controls0__type_support.h" #include "px4_msgs/msg/actuator_controls0__struct.h" #include "px4_msgs/msg/actuator_controls0__functions.h" static void * px4_msgs__msg__actuator_controls0__create_ros_message(void) { return px4_msgs__msg__ActuatorControls0__create(); } static void px4_msgs__msg__actuator_controls0__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__ActuatorControls0 * ros_message = (px4_msgs__msg__ActuatorControls0 *)raw_ros_message; px4_msgs__msg__ActuatorControls0__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__actuator_controls0__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__actuator_controls0__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ActuatorControls0); int8_t _register_msg_type__msg__actuator_controls0(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls0__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__actuator_controls0", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls0__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__actuator_controls0", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls0__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__actuator_controls0", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls0__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__actuator_controls0", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ActuatorControls0), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__actuator_controls0", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/actuator_controls1__type_support.h" #include "px4_msgs/msg/actuator_controls1__struct.h" #include "px4_msgs/msg/actuator_controls1__functions.h" static void * px4_msgs__msg__actuator_controls1__create_ros_message(void) { return px4_msgs__msg__ActuatorControls1__create(); } static void px4_msgs__msg__actuator_controls1__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__ActuatorControls1 * ros_message = (px4_msgs__msg__ActuatorControls1 *)raw_ros_message; px4_msgs__msg__ActuatorControls1__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__actuator_controls1__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__actuator_controls1__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ActuatorControls1); int8_t _register_msg_type__msg__actuator_controls1(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls1__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__actuator_controls1", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls1__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__actuator_controls1", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls1__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__actuator_controls1", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls1__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__actuator_controls1", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ActuatorControls1), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__actuator_controls1", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/actuator_controls2__type_support.h" #include "px4_msgs/msg/actuator_controls2__struct.h" #include "px4_msgs/msg/actuator_controls2__functions.h" static void * px4_msgs__msg__actuator_controls2__create_ros_message(void) { return px4_msgs__msg__ActuatorControls2__create(); } static void px4_msgs__msg__actuator_controls2__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__ActuatorControls2 * ros_message = (px4_msgs__msg__ActuatorControls2 *)raw_ros_message; px4_msgs__msg__ActuatorControls2__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__actuator_controls2__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__actuator_controls2__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ActuatorControls2); int8_t _register_msg_type__msg__actuator_controls2(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls2__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__actuator_controls2", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls2__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__actuator_controls2", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls2__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__actuator_controls2", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls2__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__actuator_controls2", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ActuatorControls2), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__actuator_controls2", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/actuator_controls3__type_support.h" #include "px4_msgs/msg/actuator_controls3__struct.h" #include "px4_msgs/msg/actuator_controls3__functions.h" static void * px4_msgs__msg__actuator_controls3__create_ros_message(void) { return px4_msgs__msg__ActuatorControls3__create(); } static void px4_msgs__msg__actuator_controls3__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__ActuatorControls3 * ros_message = (px4_msgs__msg__ActuatorControls3 *)raw_ros_message; px4_msgs__msg__ActuatorControls3__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__actuator_controls3__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__actuator_controls3__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ActuatorControls3); int8_t _register_msg_type__msg__actuator_controls3(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls3__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__actuator_controls3", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls3__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__actuator_controls3", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls3__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__actuator_controls3", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls3__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__actuator_controls3", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ActuatorControls3), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__actuator_controls3", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/actuator_controls4__type_support.h" #include "px4_msgs/msg/actuator_controls4__struct.h" #include "px4_msgs/msg/actuator_controls4__functions.h" static void * px4_msgs__msg__actuator_controls4__create_ros_message(void) { return px4_msgs__msg__ActuatorControls4__create(); } static void px4_msgs__msg__actuator_controls4__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__ActuatorControls4 * ros_message = (px4_msgs__msg__ActuatorControls4 *)raw_ros_message; px4_msgs__msg__ActuatorControls4__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__actuator_controls4__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__actuator_controls4__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ActuatorControls4); int8_t _register_msg_type__msg__actuator_controls4(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls4__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__actuator_controls4", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls4__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__actuator_controls4", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls4__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__actuator_controls4", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls4__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__actuator_controls4", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ActuatorControls4), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__actuator_controls4", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/actuator_controls5__type_support.h" #include "px4_msgs/msg/actuator_controls5__struct.h" #include "px4_msgs/msg/actuator_controls5__functions.h" static void * px4_msgs__msg__actuator_controls5__create_ros_message(void) { return px4_msgs__msg__ActuatorControls5__create(); } static void px4_msgs__msg__actuator_controls5__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__ActuatorControls5 * ros_message = (px4_msgs__msg__ActuatorControls5 *)raw_ros_message; px4_msgs__msg__ActuatorControls5__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__actuator_controls5__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__actuator_controls5__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ActuatorControls5); int8_t _register_msg_type__msg__actuator_controls5(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls5__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__actuator_controls5", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls5__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__actuator_controls5", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls5__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__actuator_controls5", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls5__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__actuator_controls5", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ActuatorControls5), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__actuator_controls5", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/actuator_controls_virtual_fw__type_support.h" #include "px4_msgs/msg/actuator_controls_virtual_fw__struct.h" #include "px4_msgs/msg/actuator_controls_virtual_fw__functions.h" static void * px4_msgs__msg__actuator_controls_virtual_fw__create_ros_message(void) { return px4_msgs__msg__ActuatorControlsVirtualFw__create(); } static void px4_msgs__msg__actuator_controls_virtual_fw__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__ActuatorControlsVirtualFw * ros_message = (px4_msgs__msg__ActuatorControlsVirtualFw *)raw_ros_message; px4_msgs__msg__ActuatorControlsVirtualFw__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__actuator_controls_virtual_fw__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__actuator_controls_virtual_fw__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ActuatorControlsVirtualFw); int8_t _register_msg_type__msg__actuator_controls_virtual_fw(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls_virtual_fw__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__actuator_controls_virtual_fw", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls_virtual_fw__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__actuator_controls_virtual_fw", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls_virtual_fw__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__actuator_controls_virtual_fw", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls_virtual_fw__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__actuator_controls_virtual_fw", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ActuatorControlsVirtualFw), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__actuator_controls_virtual_fw", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/actuator_controls_virtual_mc__type_support.h" #include "px4_msgs/msg/actuator_controls_virtual_mc__struct.h" #include "px4_msgs/msg/actuator_controls_virtual_mc__functions.h" static void * px4_msgs__msg__actuator_controls_virtual_mc__create_ros_message(void) { return px4_msgs__msg__ActuatorControlsVirtualMc__create(); } static void px4_msgs__msg__actuator_controls_virtual_mc__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__ActuatorControlsVirtualMc * ros_message = (px4_msgs__msg__ActuatorControlsVirtualMc *)raw_ros_message; px4_msgs__msg__ActuatorControlsVirtualMc__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__actuator_controls_virtual_mc__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__actuator_controls_virtual_mc__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ActuatorControlsVirtualMc); int8_t _register_msg_type__msg__actuator_controls_virtual_mc(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls_virtual_mc__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__actuator_controls_virtual_mc", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls_virtual_mc__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__actuator_controls_virtual_mc", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls_virtual_mc__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__actuator_controls_virtual_mc", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__actuator_controls_virtual_mc__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__actuator_controls_virtual_mc", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ActuatorControlsVirtualMc), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__actuator_controls_virtual_mc", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/actuator_outputs__type_support.h" #include "px4_msgs/msg/actuator_outputs__struct.h" #include "px4_msgs/msg/actuator_outputs__functions.h" static void * px4_msgs__msg__actuator_outputs__create_ros_message(void) { return px4_msgs__msg__ActuatorOutputs__create(); } static void px4_msgs__msg__actuator_outputs__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__ActuatorOutputs * ros_message = (px4_msgs__msg__ActuatorOutputs *)raw_ros_message; px4_msgs__msg__ActuatorOutputs__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__actuator_outputs__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__actuator_outputs__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ActuatorOutputs); int8_t _register_msg_type__msg__actuator_outputs(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__actuator_outputs__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__actuator_outputs", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__actuator_outputs__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__actuator_outputs", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__actuator_outputs__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__actuator_outputs", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__actuator_outputs__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__actuator_outputs", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ActuatorOutputs), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__actuator_outputs", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/adc_report__type_support.h" #include "px4_msgs/msg/adc_report__struct.h" #include "px4_msgs/msg/adc_report__functions.h" static void * px4_msgs__msg__adc_report__create_ros_message(void) { return px4_msgs__msg__AdcReport__create(); } static void px4_msgs__msg__adc_report__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__AdcReport * ros_message = (px4_msgs__msg__AdcReport *)raw_ros_message; px4_msgs__msg__AdcReport__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__adc_report__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__adc_report__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, AdcReport); int8_t _register_msg_type__msg__adc_report(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__adc_report__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__adc_report", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__adc_report__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__adc_report", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__adc_report__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__adc_report", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__adc_report__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__adc_report", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, AdcReport), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__adc_report", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/airspeed__type_support.h" #include "px4_msgs/msg/airspeed__struct.h" #include "px4_msgs/msg/airspeed__functions.h" static void * px4_msgs__msg__airspeed__create_ros_message(void) { return px4_msgs__msg__Airspeed__create(); } static void px4_msgs__msg__airspeed__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__Airspeed * ros_message = (px4_msgs__msg__Airspeed *)raw_ros_message; px4_msgs__msg__Airspeed__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__airspeed__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__airspeed__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, Airspeed); int8_t _register_msg_type__msg__airspeed(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__airspeed__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__airspeed", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__airspeed__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__airspeed", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__airspeed__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__airspeed", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__airspeed__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__airspeed", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, Airspeed), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__airspeed", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/airspeed_validated__type_support.h" #include "px4_msgs/msg/airspeed_validated__struct.h" #include "px4_msgs/msg/airspeed_validated__functions.h" static void * px4_msgs__msg__airspeed_validated__create_ros_message(void) { return px4_msgs__msg__AirspeedValidated__create(); } static void px4_msgs__msg__airspeed_validated__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__AirspeedValidated * ros_message = (px4_msgs__msg__AirspeedValidated *)raw_ros_message; px4_msgs__msg__AirspeedValidated__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__airspeed_validated__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__airspeed_validated__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, AirspeedValidated); int8_t _register_msg_type__msg__airspeed_validated(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__airspeed_validated__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__airspeed_validated", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__airspeed_validated__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__airspeed_validated", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__airspeed_validated__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__airspeed_validated", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__airspeed_validated__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__airspeed_validated", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, AirspeedValidated), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__airspeed_validated", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/airspeed_wind__type_support.h" #include "px4_msgs/msg/airspeed_wind__struct.h" #include "px4_msgs/msg/airspeed_wind__functions.h" static void * px4_msgs__msg__airspeed_wind__create_ros_message(void) { return px4_msgs__msg__AirspeedWind__create(); } static void px4_msgs__msg__airspeed_wind__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__AirspeedWind * ros_message = (px4_msgs__msg__AirspeedWind *)raw_ros_message; px4_msgs__msg__AirspeedWind__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__airspeed_wind__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__airspeed_wind__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, AirspeedWind); int8_t _register_msg_type__msg__airspeed_wind(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__airspeed_wind__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__airspeed_wind", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__airspeed_wind__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__airspeed_wind", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__airspeed_wind__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__airspeed_wind", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__airspeed_wind__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__airspeed_wind", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, AirspeedWind), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__airspeed_wind", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/battery_status__type_support.h" #include "px4_msgs/msg/battery_status__struct.h" #include "px4_msgs/msg/battery_status__functions.h" static void * px4_msgs__msg__battery_status__create_ros_message(void) { return px4_msgs__msg__BatteryStatus__create(); } static void px4_msgs__msg__battery_status__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__BatteryStatus * ros_message = (px4_msgs__msg__BatteryStatus *)raw_ros_message; px4_msgs__msg__BatteryStatus__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__battery_status__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__battery_status__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, BatteryStatus); int8_t _register_msg_type__msg__battery_status(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__battery_status__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__battery_status", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__battery_status__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__battery_status", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__battery_status__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__battery_status", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__battery_status__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__battery_status", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, BatteryStatus), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__battery_status", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/camera_capture__type_support.h" #include "px4_msgs/msg/camera_capture__struct.h" #include "px4_msgs/msg/camera_capture__functions.h" static void * px4_msgs__msg__camera_capture__create_ros_message(void) { return px4_msgs__msg__CameraCapture__create(); } static void px4_msgs__msg__camera_capture__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__CameraCapture * ros_message = (px4_msgs__msg__CameraCapture *)raw_ros_message; px4_msgs__msg__CameraCapture__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__camera_capture__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__camera_capture__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, CameraCapture); int8_t _register_msg_type__msg__camera_capture(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__camera_capture__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__camera_capture", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__camera_capture__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__camera_capture", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__camera_capture__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__camera_capture", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__camera_capture__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__camera_capture", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, CameraCapture), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__camera_capture", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/camera_trigger__type_support.h" #include "px4_msgs/msg/camera_trigger__struct.h" #include "px4_msgs/msg/camera_trigger__functions.h" static void * px4_msgs__msg__camera_trigger__create_ros_message(void) { return px4_msgs__msg__CameraTrigger__create(); } static void px4_msgs__msg__camera_trigger__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__CameraTrigger * ros_message = (px4_msgs__msg__CameraTrigger *)raw_ros_message; px4_msgs__msg__CameraTrigger__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__camera_trigger__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__camera_trigger__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, CameraTrigger); int8_t _register_msg_type__msg__camera_trigger(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__camera_trigger__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__camera_trigger", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__camera_trigger__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__camera_trigger", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__camera_trigger__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__camera_trigger", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__camera_trigger__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__camera_trigger", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, CameraTrigger), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__camera_trigger", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/camera_trigger_secondary__type_support.h" #include "px4_msgs/msg/camera_trigger_secondary__struct.h" #include "px4_msgs/msg/camera_trigger_secondary__functions.h" static void * px4_msgs__msg__camera_trigger_secondary__create_ros_message(void) { return px4_msgs__msg__CameraTriggerSecondary__create(); } static void px4_msgs__msg__camera_trigger_secondary__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__CameraTriggerSecondary * ros_message = (px4_msgs__msg__CameraTriggerSecondary *)raw_ros_message; px4_msgs__msg__CameraTriggerSecondary__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__camera_trigger_secondary__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__camera_trigger_secondary__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, CameraTriggerSecondary); int8_t _register_msg_type__msg__camera_trigger_secondary(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__camera_trigger_secondary__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__camera_trigger_secondary", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__camera_trigger_secondary__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__camera_trigger_secondary", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__camera_trigger_secondary__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__camera_trigger_secondary", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__camera_trigger_secondary__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__camera_trigger_secondary", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, CameraTriggerSecondary), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__camera_trigger_secondary", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/cellular_status__type_support.h" #include "px4_msgs/msg/cellular_status__struct.h" #include "px4_msgs/msg/cellular_status__functions.h" static void * px4_msgs__msg__cellular_status__create_ros_message(void) { return px4_msgs__msg__CellularStatus__create(); } static void px4_msgs__msg__cellular_status__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__CellularStatus * ros_message = (px4_msgs__msg__CellularStatus *)raw_ros_message; px4_msgs__msg__CellularStatus__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__cellular_status__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__cellular_status__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, CellularStatus); int8_t _register_msg_type__msg__cellular_status(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__cellular_status__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__cellular_status", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__cellular_status__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__cellular_status", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__cellular_status__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__cellular_status", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__cellular_status__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__cellular_status", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, CellularStatus), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__cellular_status", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/collision_constraints__type_support.h" #include "px4_msgs/msg/collision_constraints__struct.h" #include "px4_msgs/msg/collision_constraints__functions.h" static void * px4_msgs__msg__collision_constraints__create_ros_message(void) { return px4_msgs__msg__CollisionConstraints__create(); } static void px4_msgs__msg__collision_constraints__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__CollisionConstraints * ros_message = (px4_msgs__msg__CollisionConstraints *)raw_ros_message; px4_msgs__msg__CollisionConstraints__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__collision_constraints__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__collision_constraints__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, CollisionConstraints); int8_t _register_msg_type__msg__collision_constraints(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__collision_constraints__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__collision_constraints", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__collision_constraints__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__collision_constraints", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__collision_constraints__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__collision_constraints", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__collision_constraints__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__collision_constraints", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, CollisionConstraints), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__collision_constraints", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/collision_report__type_support.h" #include "px4_msgs/msg/collision_report__struct.h" #include "px4_msgs/msg/collision_report__functions.h" static void * px4_msgs__msg__collision_report__create_ros_message(void) { return px4_msgs__msg__CollisionReport__create(); } static void px4_msgs__msg__collision_report__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__CollisionReport * ros_message = (px4_msgs__msg__CollisionReport *)raw_ros_message; px4_msgs__msg__CollisionReport__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__collision_report__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__collision_report__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, CollisionReport); int8_t _register_msg_type__msg__collision_report(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__collision_report__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__collision_report", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__collision_report__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__collision_report", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__collision_report__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__collision_report", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__collision_report__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__collision_report", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, CollisionReport), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__collision_report", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/commander_state__type_support.h" #include "px4_msgs/msg/commander_state__struct.h" #include "px4_msgs/msg/commander_state__functions.h" static void * px4_msgs__msg__commander_state__create_ros_message(void) { return px4_msgs__msg__CommanderState__create(); } static void px4_msgs__msg__commander_state__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__CommanderState * ros_message = (px4_msgs__msg__CommanderState *)raw_ros_message; px4_msgs__msg__CommanderState__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__commander_state__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__commander_state__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, CommanderState); int8_t _register_msg_type__msg__commander_state(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__commander_state__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__commander_state", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__commander_state__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__commander_state", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__commander_state__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__commander_state", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__commander_state__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__commander_state", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, CommanderState), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__commander_state", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/control_allocator_status__type_support.h" #include "px4_msgs/msg/control_allocator_status__struct.h" #include "px4_msgs/msg/control_allocator_status__functions.h" static void * px4_msgs__msg__control_allocator_status__create_ros_message(void) { return px4_msgs__msg__ControlAllocatorStatus__create(); } static void px4_msgs__msg__control_allocator_status__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__ControlAllocatorStatus * ros_message = (px4_msgs__msg__ControlAllocatorStatus *)raw_ros_message; px4_msgs__msg__ControlAllocatorStatus__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__control_allocator_status__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__control_allocator_status__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ControlAllocatorStatus); int8_t _register_msg_type__msg__control_allocator_status(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__control_allocator_status__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__control_allocator_status", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__control_allocator_status__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__control_allocator_status", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__control_allocator_status__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__control_allocator_status", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__control_allocator_status__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__control_allocator_status", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ControlAllocatorStatus), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__control_allocator_status", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/cpuload__type_support.h" #include "px4_msgs/msg/cpuload__struct.h" #include "px4_msgs/msg/cpuload__functions.h" static void * px4_msgs__msg__cpuload__create_ros_message(void) { return px4_msgs__msg__Cpuload__create(); } static void px4_msgs__msg__cpuload__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__Cpuload * ros_message = (px4_msgs__msg__Cpuload *)raw_ros_message; px4_msgs__msg__Cpuload__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__cpuload__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__cpuload__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, Cpuload); int8_t _register_msg_type__msg__cpuload(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__cpuload__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__cpuload", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__cpuload__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__cpuload", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__cpuload__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__cpuload", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__cpuload__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__cpuload", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, Cpuload), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__cpuload", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/debug_array__type_support.h" #include "px4_msgs/msg/debug_array__struct.h" #include "px4_msgs/msg/debug_array__functions.h" static void * px4_msgs__msg__debug_array__create_ros_message(void) { return px4_msgs__msg__DebugArray__create(); } static void px4_msgs__msg__debug_array__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__DebugArray * ros_message = (px4_msgs__msg__DebugArray *)raw_ros_message; px4_msgs__msg__DebugArray__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__debug_array__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__debug_array__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, DebugArray); int8_t _register_msg_type__msg__debug_array(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__debug_array__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__debug_array", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__debug_array__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__debug_array", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__debug_array__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__debug_array", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__debug_array__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__debug_array", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, DebugArray), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__debug_array", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/debug_key_value__type_support.h" #include "px4_msgs/msg/debug_key_value__struct.h" #include "px4_msgs/msg/debug_key_value__functions.h" static void * px4_msgs__msg__debug_key_value__create_ros_message(void) { return px4_msgs__msg__DebugKeyValue__create(); } static void px4_msgs__msg__debug_key_value__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__DebugKeyValue * ros_message = (px4_msgs__msg__DebugKeyValue *)raw_ros_message; px4_msgs__msg__DebugKeyValue__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__debug_key_value__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__debug_key_value__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, DebugKeyValue); int8_t _register_msg_type__msg__debug_key_value(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__debug_key_value__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__debug_key_value", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__debug_key_value__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__debug_key_value", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__debug_key_value__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__debug_key_value", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__debug_key_value__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__debug_key_value", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, DebugKeyValue), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__debug_key_value", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/debug_value__type_support.h" #include "px4_msgs/msg/debug_value__struct.h" #include "px4_msgs/msg/debug_value__functions.h" static void * px4_msgs__msg__debug_value__create_ros_message(void) { return px4_msgs__msg__DebugValue__create(); } static void px4_msgs__msg__debug_value__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__DebugValue * ros_message = (px4_msgs__msg__DebugValue *)raw_ros_message; px4_msgs__msg__DebugValue__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__debug_value__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__debug_value__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, DebugValue); int8_t _register_msg_type__msg__debug_value(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__debug_value__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__debug_value", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__debug_value__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__debug_value", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__debug_value__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__debug_value", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__debug_value__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__debug_value", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, DebugValue), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__debug_value", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/debug_vect__type_support.h" #include "px4_msgs/msg/debug_vect__struct.h" #include "px4_msgs/msg/debug_vect__functions.h" static void * px4_msgs__msg__debug_vect__create_ros_message(void) { return px4_msgs__msg__DebugVect__create(); } static void px4_msgs__msg__debug_vect__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__DebugVect * ros_message = (px4_msgs__msg__DebugVect *)raw_ros_message; px4_msgs__msg__DebugVect__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__debug_vect__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__debug_vect__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, DebugVect); int8_t _register_msg_type__msg__debug_vect(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__debug_vect__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__debug_vect", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__debug_vect__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__debug_vect", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__debug_vect__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__debug_vect", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__debug_vect__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__debug_vect", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, DebugVect), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__debug_vect", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/differential_pressure__type_support.h" #include "px4_msgs/msg/differential_pressure__struct.h" #include "px4_msgs/msg/differential_pressure__functions.h" static void * px4_msgs__msg__differential_pressure__create_ros_message(void) { return px4_msgs__msg__DifferentialPressure__create(); } static void px4_msgs__msg__differential_pressure__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__DifferentialPressure * ros_message = (px4_msgs__msg__DifferentialPressure *)raw_ros_message; px4_msgs__msg__DifferentialPressure__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__differential_pressure__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__differential_pressure__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, DifferentialPressure); int8_t _register_msg_type__msg__differential_pressure(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__differential_pressure__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__differential_pressure", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__differential_pressure__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__differential_pressure", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__differential_pressure__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__differential_pressure", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__differential_pressure__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__differential_pressure", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, DifferentialPressure), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__differential_pressure", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/distance_sensor__type_support.h" #include "px4_msgs/msg/distance_sensor__struct.h" #include "px4_msgs/msg/distance_sensor__functions.h" static void * px4_msgs__msg__distance_sensor__create_ros_message(void) { return px4_msgs__msg__DistanceSensor__create(); } static void px4_msgs__msg__distance_sensor__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__DistanceSensor * ros_message = (px4_msgs__msg__DistanceSensor *)raw_ros_message; px4_msgs__msg__DistanceSensor__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__distance_sensor__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__distance_sensor__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, DistanceSensor); int8_t _register_msg_type__msg__distance_sensor(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__distance_sensor__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__distance_sensor", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__distance_sensor__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__distance_sensor", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__distance_sensor__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__distance_sensor", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__distance_sensor__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__distance_sensor", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, DistanceSensor), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__distance_sensor", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/ekf2_timestamps__type_support.h" #include "px4_msgs/msg/ekf2_timestamps__struct.h" #include "px4_msgs/msg/ekf2_timestamps__functions.h" static void * px4_msgs__msg__ekf2_timestamps__create_ros_message(void) { return px4_msgs__msg__Ekf2Timestamps__create(); } static void px4_msgs__msg__ekf2_timestamps__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__Ekf2Timestamps * ros_message = (px4_msgs__msg__Ekf2Timestamps *)raw_ros_message; px4_msgs__msg__Ekf2Timestamps__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__ekf2_timestamps__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__ekf2_timestamps__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, Ekf2Timestamps); int8_t _register_msg_type__msg__ekf2_timestamps(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__ekf2_timestamps__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__ekf2_timestamps", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__ekf2_timestamps__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__ekf2_timestamps", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__ekf2_timestamps__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__ekf2_timestamps", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__ekf2_timestamps__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__ekf2_timestamps", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, Ekf2Timestamps), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__ekf2_timestamps", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/ekf_gps_drift__type_support.h" #include "px4_msgs/msg/ekf_gps_drift__struct.h" #include "px4_msgs/msg/ekf_gps_drift__functions.h" static void * px4_msgs__msg__ekf_gps_drift__create_ros_message(void) { return px4_msgs__msg__EkfGpsDrift__create(); } static void px4_msgs__msg__ekf_gps_drift__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__EkfGpsDrift * ros_message = (px4_msgs__msg__EkfGpsDrift *)raw_ros_message; px4_msgs__msg__EkfGpsDrift__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__ekf_gps_drift__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__ekf_gps_drift__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EkfGpsDrift); int8_t _register_msg_type__msg__ekf_gps_drift(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__ekf_gps_drift__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__ekf_gps_drift", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__ekf_gps_drift__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__ekf_gps_drift", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__ekf_gps_drift__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__ekf_gps_drift", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__ekf_gps_drift__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__ekf_gps_drift", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EkfGpsDrift), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__ekf_gps_drift", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/esc_report__type_support.h" #include "px4_msgs/msg/esc_report__struct.h" #include "px4_msgs/msg/esc_report__functions.h" static void * px4_msgs__msg__esc_report__create_ros_message(void) { return px4_msgs__msg__EscReport__create(); } static void px4_msgs__msg__esc_report__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__EscReport * ros_message = (px4_msgs__msg__EscReport *)raw_ros_message; px4_msgs__msg__EscReport__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__esc_report__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__esc_report__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EscReport); int8_t _register_msg_type__msg__esc_report(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__esc_report__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__esc_report", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__esc_report__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__esc_report", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__esc_report__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__esc_report", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__esc_report__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__esc_report", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EscReport), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__esc_report", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/esc_status__type_support.h" #include "px4_msgs/msg/esc_status__struct.h" #include "px4_msgs/msg/esc_status__functions.h" static void * px4_msgs__msg__esc_status__create_ros_message(void) { return px4_msgs__msg__EscStatus__create(); } static void px4_msgs__msg__esc_status__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__EscStatus * ros_message = (px4_msgs__msg__EscStatus *)raw_ros_message; px4_msgs__msg__EscStatus__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__esc_status__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__esc_status__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EscStatus); int8_t _register_msg_type__msg__esc_status(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__esc_status__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__esc_status", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__esc_status__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__esc_status", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__esc_status__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__esc_status", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__esc_status__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__esc_status", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EscStatus), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__esc_status", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/estimator_attitude__type_support.h" #include "px4_msgs/msg/estimator_attitude__struct.h" #include "px4_msgs/msg/estimator_attitude__functions.h" static void * px4_msgs__msg__estimator_attitude__create_ros_message(void) { return px4_msgs__msg__EstimatorAttitude__create(); } static void px4_msgs__msg__estimator_attitude__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__EstimatorAttitude * ros_message = (px4_msgs__msg__EstimatorAttitude *)raw_ros_message; px4_msgs__msg__EstimatorAttitude__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__estimator_attitude__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__estimator_attitude__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorAttitude); int8_t _register_msg_type__msg__estimator_attitude(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_attitude__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__estimator_attitude", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_attitude__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__estimator_attitude", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_attitude__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__estimator_attitude", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_attitude__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__estimator_attitude", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorAttitude), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__estimator_attitude", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/estimator_event_flags__type_support.h" #include "px4_msgs/msg/estimator_event_flags__struct.h" #include "px4_msgs/msg/estimator_event_flags__functions.h" static void * px4_msgs__msg__estimator_event_flags__create_ros_message(void) { return px4_msgs__msg__EstimatorEventFlags__create(); } static void px4_msgs__msg__estimator_event_flags__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__EstimatorEventFlags * ros_message = (px4_msgs__msg__EstimatorEventFlags *)raw_ros_message; px4_msgs__msg__EstimatorEventFlags__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__estimator_event_flags__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__estimator_event_flags__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorEventFlags); int8_t _register_msg_type__msg__estimator_event_flags(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_event_flags__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__estimator_event_flags", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_event_flags__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__estimator_event_flags", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_event_flags__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__estimator_event_flags", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_event_flags__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__estimator_event_flags", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorEventFlags), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__estimator_event_flags", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/estimator_global_position__type_support.h" #include "px4_msgs/msg/estimator_global_position__struct.h" #include "px4_msgs/msg/estimator_global_position__functions.h" static void * px4_msgs__msg__estimator_global_position__create_ros_message(void) { return px4_msgs__msg__EstimatorGlobalPosition__create(); } static void px4_msgs__msg__estimator_global_position__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__EstimatorGlobalPosition * ros_message = (px4_msgs__msg__EstimatorGlobalPosition *)raw_ros_message; px4_msgs__msg__EstimatorGlobalPosition__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__estimator_global_position__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__estimator_global_position__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorGlobalPosition); int8_t _register_msg_type__msg__estimator_global_position(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_global_position__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__estimator_global_position", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_global_position__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__estimator_global_position", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_global_position__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__estimator_global_position", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_global_position__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__estimator_global_position", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorGlobalPosition), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__estimator_global_position", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/estimator_innovation_test_ratios__type_support.h" #include "px4_msgs/msg/estimator_innovation_test_ratios__struct.h" #include "px4_msgs/msg/estimator_innovation_test_ratios__functions.h" static void * px4_msgs__msg__estimator_innovation_test_ratios__create_ros_message(void) { return px4_msgs__msg__EstimatorInnovationTestRatios__create(); } static void px4_msgs__msg__estimator_innovation_test_ratios__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__EstimatorInnovationTestRatios * ros_message = (px4_msgs__msg__EstimatorInnovationTestRatios *)raw_ros_message; px4_msgs__msg__EstimatorInnovationTestRatios__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__estimator_innovation_test_ratios__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__estimator_innovation_test_ratios__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorInnovationTestRatios); int8_t _register_msg_type__msg__estimator_innovation_test_ratios(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_innovation_test_ratios__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__estimator_innovation_test_ratios", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_innovation_test_ratios__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__estimator_innovation_test_ratios", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_innovation_test_ratios__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__estimator_innovation_test_ratios", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_innovation_test_ratios__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__estimator_innovation_test_ratios", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorInnovationTestRatios), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__estimator_innovation_test_ratios", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/estimator_innovation_variances__type_support.h" #include "px4_msgs/msg/estimator_innovation_variances__struct.h" #include "px4_msgs/msg/estimator_innovation_variances__functions.h" static void * px4_msgs__msg__estimator_innovation_variances__create_ros_message(void) { return px4_msgs__msg__EstimatorInnovationVariances__create(); } static void px4_msgs__msg__estimator_innovation_variances__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__EstimatorInnovationVariances * ros_message = (px4_msgs__msg__EstimatorInnovationVariances *)raw_ros_message; px4_msgs__msg__EstimatorInnovationVariances__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__estimator_innovation_variances__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__estimator_innovation_variances__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorInnovationVariances); int8_t _register_msg_type__msg__estimator_innovation_variances(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_innovation_variances__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__estimator_innovation_variances", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_innovation_variances__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__estimator_innovation_variances", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_innovation_variances__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__estimator_innovation_variances", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_innovation_variances__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__estimator_innovation_variances", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorInnovationVariances), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__estimator_innovation_variances", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/estimator_innovations__type_support.h" #include "px4_msgs/msg/estimator_innovations__struct.h" #include "px4_msgs/msg/estimator_innovations__functions.h" static void * px4_msgs__msg__estimator_innovations__create_ros_message(void) { return px4_msgs__msg__EstimatorInnovations__create(); } static void px4_msgs__msg__estimator_innovations__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__EstimatorInnovations * ros_message = (px4_msgs__msg__EstimatorInnovations *)raw_ros_message; px4_msgs__msg__EstimatorInnovations__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__estimator_innovations__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__estimator_innovations__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorInnovations); int8_t _register_msg_type__msg__estimator_innovations(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_innovations__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__estimator_innovations", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_innovations__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__estimator_innovations", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_innovations__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__estimator_innovations", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_innovations__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__estimator_innovations", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorInnovations), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__estimator_innovations", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/estimator_local_position__type_support.h" #include "px4_msgs/msg/estimator_local_position__struct.h" #include "px4_msgs/msg/estimator_local_position__functions.h" static void * px4_msgs__msg__estimator_local_position__create_ros_message(void) { return px4_msgs__msg__EstimatorLocalPosition__create(); } static void px4_msgs__msg__estimator_local_position__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__EstimatorLocalPosition * ros_message = (px4_msgs__msg__EstimatorLocalPosition *)raw_ros_message; px4_msgs__msg__EstimatorLocalPosition__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__estimator_local_position__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__estimator_local_position__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorLocalPosition); int8_t _register_msg_type__msg__estimator_local_position(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_local_position__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__estimator_local_position", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_local_position__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__estimator_local_position", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_local_position__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__estimator_local_position", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_local_position__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__estimator_local_position", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorLocalPosition), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__estimator_local_position", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/estimator_odometry__type_support.h" #include "px4_msgs/msg/estimator_odometry__struct.h" #include "px4_msgs/msg/estimator_odometry__functions.h" static void * px4_msgs__msg__estimator_odometry__create_ros_message(void) { return px4_msgs__msg__EstimatorOdometry__create(); } static void px4_msgs__msg__estimator_odometry__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__EstimatorOdometry * ros_message = (px4_msgs__msg__EstimatorOdometry *)raw_ros_message; px4_msgs__msg__EstimatorOdometry__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__estimator_odometry__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__estimator_odometry__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorOdometry); int8_t _register_msg_type__msg__estimator_odometry(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_odometry__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__estimator_odometry", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_odometry__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__estimator_odometry", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_odometry__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__estimator_odometry", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_odometry__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__estimator_odometry", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorOdometry), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__estimator_odometry", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/estimator_optical_flow_vel__type_support.h" #include "px4_msgs/msg/estimator_optical_flow_vel__struct.h" #include "px4_msgs/msg/estimator_optical_flow_vel__functions.h" static void * px4_msgs__msg__estimator_optical_flow_vel__create_ros_message(void) { return px4_msgs__msg__EstimatorOpticalFlowVel__create(); } static void px4_msgs__msg__estimator_optical_flow_vel__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__EstimatorOpticalFlowVel * ros_message = (px4_msgs__msg__EstimatorOpticalFlowVel *)raw_ros_message; px4_msgs__msg__EstimatorOpticalFlowVel__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__estimator_optical_flow_vel__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__estimator_optical_flow_vel__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorOpticalFlowVel); int8_t _register_msg_type__msg__estimator_optical_flow_vel(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_optical_flow_vel__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__estimator_optical_flow_vel", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_optical_flow_vel__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__estimator_optical_flow_vel", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_optical_flow_vel__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__estimator_optical_flow_vel", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_optical_flow_vel__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__estimator_optical_flow_vel", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorOpticalFlowVel), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__estimator_optical_flow_vel", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/estimator_selector_status__type_support.h" #include "px4_msgs/msg/estimator_selector_status__struct.h" #include "px4_msgs/msg/estimator_selector_status__functions.h" static void * px4_msgs__msg__estimator_selector_status__create_ros_message(void) { return px4_msgs__msg__EstimatorSelectorStatus__create(); } static void px4_msgs__msg__estimator_selector_status__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__EstimatorSelectorStatus * ros_message = (px4_msgs__msg__EstimatorSelectorStatus *)raw_ros_message; px4_msgs__msg__EstimatorSelectorStatus__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__estimator_selector_status__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__estimator_selector_status__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorSelectorStatus); int8_t _register_msg_type__msg__estimator_selector_status(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_selector_status__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__estimator_selector_status", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_selector_status__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__estimator_selector_status", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_selector_status__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__estimator_selector_status", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_selector_status__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__estimator_selector_status", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorSelectorStatus), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__estimator_selector_status", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/estimator_sensor_bias__type_support.h" #include "px4_msgs/msg/estimator_sensor_bias__struct.h" #include "px4_msgs/msg/estimator_sensor_bias__functions.h" static void * px4_msgs__msg__estimator_sensor_bias__create_ros_message(void) { return px4_msgs__msg__EstimatorSensorBias__create(); } static void px4_msgs__msg__estimator_sensor_bias__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__EstimatorSensorBias * ros_message = (px4_msgs__msg__EstimatorSensorBias *)raw_ros_message; px4_msgs__msg__EstimatorSensorBias__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__estimator_sensor_bias__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__estimator_sensor_bias__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorSensorBias); int8_t _register_msg_type__msg__estimator_sensor_bias(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_sensor_bias__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__estimator_sensor_bias", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_sensor_bias__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__estimator_sensor_bias", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_sensor_bias__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__estimator_sensor_bias", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_sensor_bias__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__estimator_sensor_bias", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorSensorBias), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__estimator_sensor_bias", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/estimator_states__type_support.h" #include "px4_msgs/msg/estimator_states__struct.h" #include "px4_msgs/msg/estimator_states__functions.h" static void * px4_msgs__msg__estimator_states__create_ros_message(void) { return px4_msgs__msg__EstimatorStates__create(); } static void px4_msgs__msg__estimator_states__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__EstimatorStates * ros_message = (px4_msgs__msg__EstimatorStates *)raw_ros_message; px4_msgs__msg__EstimatorStates__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__estimator_states__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__estimator_states__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorStates); int8_t _register_msg_type__msg__estimator_states(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_states__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__estimator_states", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_states__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__estimator_states", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_states__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__estimator_states", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_states__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__estimator_states", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorStates), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__estimator_states", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/estimator_status__type_support.h" #include "px4_msgs/msg/estimator_status__struct.h" #include "px4_msgs/msg/estimator_status__functions.h" static void * px4_msgs__msg__estimator_status__create_ros_message(void) { return px4_msgs__msg__EstimatorStatus__create(); } static void px4_msgs__msg__estimator_status__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__EstimatorStatus * ros_message = (px4_msgs__msg__EstimatorStatus *)raw_ros_message; px4_msgs__msg__EstimatorStatus__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__estimator_status__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__estimator_status__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorStatus); int8_t _register_msg_type__msg__estimator_status(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_status__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__estimator_status", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_status__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__estimator_status", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_status__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__estimator_status", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_status__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__estimator_status", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorStatus), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__estimator_status", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/estimator_status_flags__type_support.h" #include "px4_msgs/msg/estimator_status_flags__struct.h" #include "px4_msgs/msg/estimator_status_flags__functions.h" static void * px4_msgs__msg__estimator_status_flags__create_ros_message(void) { return px4_msgs__msg__EstimatorStatusFlags__create(); } static void px4_msgs__msg__estimator_status_flags__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__EstimatorStatusFlags * ros_message = (px4_msgs__msg__EstimatorStatusFlags *)raw_ros_message; px4_msgs__msg__EstimatorStatusFlags__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__estimator_status_flags__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__estimator_status_flags__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorStatusFlags); int8_t _register_msg_type__msg__estimator_status_flags(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_status_flags__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__estimator_status_flags", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_status_flags__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__estimator_status_flags", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_status_flags__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__estimator_status_flags", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_status_flags__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__estimator_status_flags", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorStatusFlags), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__estimator_status_flags", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/estimator_visual_odometry_aligned__type_support.h" #include "px4_msgs/msg/estimator_visual_odometry_aligned__struct.h" #include "px4_msgs/msg/estimator_visual_odometry_aligned__functions.h" static void * px4_msgs__msg__estimator_visual_odometry_aligned__create_ros_message(void) { return px4_msgs__msg__EstimatorVisualOdometryAligned__create(); } static void px4_msgs__msg__estimator_visual_odometry_aligned__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__EstimatorVisualOdometryAligned * ros_message = (px4_msgs__msg__EstimatorVisualOdometryAligned *)raw_ros_message; px4_msgs__msg__EstimatorVisualOdometryAligned__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__estimator_visual_odometry_aligned__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__estimator_visual_odometry_aligned__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorVisualOdometryAligned); int8_t _register_msg_type__msg__estimator_visual_odometry_aligned(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_visual_odometry_aligned__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__estimator_visual_odometry_aligned", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_visual_odometry_aligned__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__estimator_visual_odometry_aligned", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_visual_odometry_aligned__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__estimator_visual_odometry_aligned", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_visual_odometry_aligned__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__estimator_visual_odometry_aligned", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorVisualOdometryAligned), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__estimator_visual_odometry_aligned", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/estimator_wind__type_support.h" #include "px4_msgs/msg/estimator_wind__struct.h" #include "px4_msgs/msg/estimator_wind__functions.h" static void * px4_msgs__msg__estimator_wind__create_ros_message(void) { return px4_msgs__msg__EstimatorWind__create(); } static void px4_msgs__msg__estimator_wind__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__EstimatorWind * ros_message = (px4_msgs__msg__EstimatorWind *)raw_ros_message; px4_msgs__msg__EstimatorWind__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__estimator_wind__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__estimator_wind__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorWind); int8_t _register_msg_type__msg__estimator_wind(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_wind__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__estimator_wind", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__estimator_wind__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__estimator_wind", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_wind__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__estimator_wind", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__estimator_wind__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__estimator_wind", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, EstimatorWind), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__estimator_wind", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/follow_target__type_support.h" #include "px4_msgs/msg/follow_target__struct.h" #include "px4_msgs/msg/follow_target__functions.h" static void * px4_msgs__msg__follow_target__create_ros_message(void) { return px4_msgs__msg__FollowTarget__create(); } static void px4_msgs__msg__follow_target__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__FollowTarget * ros_message = (px4_msgs__msg__FollowTarget *)raw_ros_message; px4_msgs__msg__FollowTarget__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__follow_target__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__follow_target__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, FollowTarget); int8_t _register_msg_type__msg__follow_target(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__follow_target__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__follow_target", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__follow_target__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__follow_target", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__follow_target__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__follow_target", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__follow_target__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__follow_target", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, FollowTarget), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__follow_target", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.h" #include "px4_msgs/msg/fw_virtual_attitude_setpoint__struct.h" #include "px4_msgs/msg/fw_virtual_attitude_setpoint__functions.h" static void * px4_msgs__msg__fw_virtual_attitude_setpoint__create_ros_message(void) { return px4_msgs__msg__FwVirtualAttitudeSetpoint__create(); } static void px4_msgs__msg__fw_virtual_attitude_setpoint__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__FwVirtualAttitudeSetpoint * ros_message = (px4_msgs__msg__FwVirtualAttitudeSetpoint *)raw_ros_message; px4_msgs__msg__FwVirtualAttitudeSetpoint__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__fw_virtual_attitude_setpoint__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__fw_virtual_attitude_setpoint__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, FwVirtualAttitudeSetpoint); int8_t _register_msg_type__msg__fw_virtual_attitude_setpoint(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__fw_virtual_attitude_setpoint__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__fw_virtual_attitude_setpoint", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__fw_virtual_attitude_setpoint__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__fw_virtual_attitude_setpoint", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__fw_virtual_attitude_setpoint__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__fw_virtual_attitude_setpoint", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__fw_virtual_attitude_setpoint__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__fw_virtual_attitude_setpoint", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, FwVirtualAttitudeSetpoint), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__fw_virtual_attitude_setpoint", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/generator_status__type_support.h" #include "px4_msgs/msg/generator_status__struct.h" #include "px4_msgs/msg/generator_status__functions.h" static void * px4_msgs__msg__generator_status__create_ros_message(void) { return px4_msgs__msg__GeneratorStatus__create(); } static void px4_msgs__msg__generator_status__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__GeneratorStatus * ros_message = (px4_msgs__msg__GeneratorStatus *)raw_ros_message; px4_msgs__msg__GeneratorStatus__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__generator_status__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__generator_status__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, GeneratorStatus); int8_t _register_msg_type__msg__generator_status(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__generator_status__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__generator_status", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__generator_status__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__generator_status", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__generator_status__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__generator_status", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__generator_status__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__generator_status", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, GeneratorStatus), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__generator_status", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/geofence_result__type_support.h" #include "px4_msgs/msg/geofence_result__struct.h" #include "px4_msgs/msg/geofence_result__functions.h" static void * px4_msgs__msg__geofence_result__create_ros_message(void) { return px4_msgs__msg__GeofenceResult__create(); } static void px4_msgs__msg__geofence_result__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__GeofenceResult * ros_message = (px4_msgs__msg__GeofenceResult *)raw_ros_message; px4_msgs__msg__GeofenceResult__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__geofence_result__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__geofence_result__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, GeofenceResult); int8_t _register_msg_type__msg__geofence_result(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__geofence_result__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__geofence_result", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__geofence_result__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__geofence_result", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__geofence_result__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__geofence_result", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__geofence_result__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__geofence_result", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, GeofenceResult), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__geofence_result", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/gimbal_device_attitude_status__type_support.h" #include "px4_msgs/msg/gimbal_device_attitude_status__struct.h" #include "px4_msgs/msg/gimbal_device_attitude_status__functions.h" static void * px4_msgs__msg__gimbal_device_attitude_status__create_ros_message(void) { return px4_msgs__msg__GimbalDeviceAttitudeStatus__create(); } static void px4_msgs__msg__gimbal_device_attitude_status__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__GimbalDeviceAttitudeStatus * ros_message = (px4_msgs__msg__GimbalDeviceAttitudeStatus *)raw_ros_message; px4_msgs__msg__GimbalDeviceAttitudeStatus__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__gimbal_device_attitude_status__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__gimbal_device_attitude_status__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, GimbalDeviceAttitudeStatus); int8_t _register_msg_type__msg__gimbal_device_attitude_status(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__gimbal_device_attitude_status__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__gimbal_device_attitude_status", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__gimbal_device_attitude_status__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__gimbal_device_attitude_status", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__gimbal_device_attitude_status__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__gimbal_device_attitude_status", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__gimbal_device_attitude_status__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__gimbal_device_attitude_status", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, GimbalDeviceAttitudeStatus), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__gimbal_device_attitude_status", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/gimbal_device_information__type_support.h" #include "px4_msgs/msg/gimbal_device_information__struct.h" #include "px4_msgs/msg/gimbal_device_information__functions.h" static void * px4_msgs__msg__gimbal_device_information__create_ros_message(void) { return px4_msgs__msg__GimbalDeviceInformation__create(); } static void px4_msgs__msg__gimbal_device_information__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__GimbalDeviceInformation * ros_message = (px4_msgs__msg__GimbalDeviceInformation *)raw_ros_message; px4_msgs__msg__GimbalDeviceInformation__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__gimbal_device_information__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__gimbal_device_information__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, GimbalDeviceInformation); int8_t _register_msg_type__msg__gimbal_device_information(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__gimbal_device_information__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__gimbal_device_information", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__gimbal_device_information__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__gimbal_device_information", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__gimbal_device_information__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__gimbal_device_information", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__gimbal_device_information__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__gimbal_device_information", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, GimbalDeviceInformation), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__gimbal_device_information", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/gimbal_device_set_attitude__type_support.h" #include "px4_msgs/msg/gimbal_device_set_attitude__struct.h" #include "px4_msgs/msg/gimbal_device_set_attitude__functions.h" static void * px4_msgs__msg__gimbal_device_set_attitude__create_ros_message(void) { return px4_msgs__msg__GimbalDeviceSetAttitude__create(); } static void px4_msgs__msg__gimbal_device_set_attitude__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__GimbalDeviceSetAttitude * ros_message = (px4_msgs__msg__GimbalDeviceSetAttitude *)raw_ros_message; px4_msgs__msg__GimbalDeviceSetAttitude__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__gimbal_device_set_attitude__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__gimbal_device_set_attitude__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, GimbalDeviceSetAttitude); int8_t _register_msg_type__msg__gimbal_device_set_attitude(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__gimbal_device_set_attitude__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__gimbal_device_set_attitude", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__gimbal_device_set_attitude__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__gimbal_device_set_attitude", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__gimbal_device_set_attitude__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__gimbal_device_set_attitude", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__gimbal_device_set_attitude__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__gimbal_device_set_attitude", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, GimbalDeviceSetAttitude), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__gimbal_device_set_attitude", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/gimbal_manager_information__type_support.h" #include "px4_msgs/msg/gimbal_manager_information__struct.h" #include "px4_msgs/msg/gimbal_manager_information__functions.h" static void * px4_msgs__msg__gimbal_manager_information__create_ros_message(void) { return px4_msgs__msg__GimbalManagerInformation__create(); } static void px4_msgs__msg__gimbal_manager_information__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__GimbalManagerInformation * ros_message = (px4_msgs__msg__GimbalManagerInformation *)raw_ros_message; px4_msgs__msg__GimbalManagerInformation__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__gimbal_manager_information__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__gimbal_manager_information__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, GimbalManagerInformation); int8_t _register_msg_type__msg__gimbal_manager_information(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__gimbal_manager_information__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__gimbal_manager_information", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__gimbal_manager_information__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__gimbal_manager_information", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__gimbal_manager_information__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__gimbal_manager_information", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__gimbal_manager_information__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__gimbal_manager_information", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, GimbalManagerInformation), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__gimbal_manager_information", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/gimbal_manager_set_attitude__type_support.h" #include "px4_msgs/msg/gimbal_manager_set_attitude__struct.h" #include "px4_msgs/msg/gimbal_manager_set_attitude__functions.h" static void * px4_msgs__msg__gimbal_manager_set_attitude__create_ros_message(void) { return px4_msgs__msg__GimbalManagerSetAttitude__create(); } static void px4_msgs__msg__gimbal_manager_set_attitude__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__GimbalManagerSetAttitude * ros_message = (px4_msgs__msg__GimbalManagerSetAttitude *)raw_ros_message; px4_msgs__msg__GimbalManagerSetAttitude__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__gimbal_manager_set_attitude__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__gimbal_manager_set_attitude__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, GimbalManagerSetAttitude); int8_t _register_msg_type__msg__gimbal_manager_set_attitude(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__gimbal_manager_set_attitude__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__gimbal_manager_set_attitude", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__gimbal_manager_set_attitude__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__gimbal_manager_set_attitude", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__gimbal_manager_set_attitude__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__gimbal_manager_set_attitude", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__gimbal_manager_set_attitude__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__gimbal_manager_set_attitude", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, GimbalManagerSetAttitude), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__gimbal_manager_set_attitude", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/gimbal_manager_set_manual_control__type_support.h" #include "px4_msgs/msg/gimbal_manager_set_manual_control__struct.h" #include "px4_msgs/msg/gimbal_manager_set_manual_control__functions.h" static void * px4_msgs__msg__gimbal_manager_set_manual_control__create_ros_message(void) { return px4_msgs__msg__GimbalManagerSetManualControl__create(); } static void px4_msgs__msg__gimbal_manager_set_manual_control__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__GimbalManagerSetManualControl * ros_message = (px4_msgs__msg__GimbalManagerSetManualControl *)raw_ros_message; px4_msgs__msg__GimbalManagerSetManualControl__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__gimbal_manager_set_manual_control__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__gimbal_manager_set_manual_control__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, GimbalManagerSetManualControl); int8_t _register_msg_type__msg__gimbal_manager_set_manual_control(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__gimbal_manager_set_manual_control__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__gimbal_manager_set_manual_control", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__gimbal_manager_set_manual_control__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__gimbal_manager_set_manual_control", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__gimbal_manager_set_manual_control__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__gimbal_manager_set_manual_control", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__gimbal_manager_set_manual_control__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__gimbal_manager_set_manual_control", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, GimbalManagerSetManualControl), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__gimbal_manager_set_manual_control", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/gimbal_manager_status__type_support.h" #include "px4_msgs/msg/gimbal_manager_status__struct.h" #include "px4_msgs/msg/gimbal_manager_status__functions.h" static void * px4_msgs__msg__gimbal_manager_status__create_ros_message(void) { return px4_msgs__msg__GimbalManagerStatus__create(); } static void px4_msgs__msg__gimbal_manager_status__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__GimbalManagerStatus * ros_message = (px4_msgs__msg__GimbalManagerStatus *)raw_ros_message; px4_msgs__msg__GimbalManagerStatus__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__gimbal_manager_status__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__gimbal_manager_status__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, GimbalManagerStatus); int8_t _register_msg_type__msg__gimbal_manager_status(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__gimbal_manager_status__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__gimbal_manager_status", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__gimbal_manager_status__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__gimbal_manager_status", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__gimbal_manager_status__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__gimbal_manager_status", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__gimbal_manager_status__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__gimbal_manager_status", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, GimbalManagerStatus), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__gimbal_manager_status", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/gps_dump__type_support.h" #include "px4_msgs/msg/gps_dump__struct.h" #include "px4_msgs/msg/gps_dump__functions.h" static void * px4_msgs__msg__gps_dump__create_ros_message(void) { return px4_msgs__msg__GpsDump__create(); } static void px4_msgs__msg__gps_dump__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__GpsDump * ros_message = (px4_msgs__msg__GpsDump *)raw_ros_message; px4_msgs__msg__GpsDump__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__gps_dump__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__gps_dump__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, GpsDump); int8_t _register_msg_type__msg__gps_dump(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__gps_dump__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__gps_dump", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__gps_dump__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__gps_dump", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__gps_dump__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__gps_dump", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__gps_dump__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__gps_dump", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, GpsDump), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__gps_dump", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/gps_inject_data__type_support.h" #include "px4_msgs/msg/gps_inject_data__struct.h" #include "px4_msgs/msg/gps_inject_data__functions.h" static void * px4_msgs__msg__gps_inject_data__create_ros_message(void) { return px4_msgs__msg__GpsInjectData__create(); } static void px4_msgs__msg__gps_inject_data__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__GpsInjectData * ros_message = (px4_msgs__msg__GpsInjectData *)raw_ros_message; px4_msgs__msg__GpsInjectData__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__gps_inject_data__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__gps_inject_data__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, GpsInjectData); int8_t _register_msg_type__msg__gps_inject_data(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__gps_inject_data__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__gps_inject_data", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__gps_inject_data__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__gps_inject_data", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__gps_inject_data__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__gps_inject_data", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__gps_inject_data__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__gps_inject_data", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, GpsInjectData), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__gps_inject_data", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/heater_status__type_support.h" #include "px4_msgs/msg/heater_status__struct.h" #include "px4_msgs/msg/heater_status__functions.h" static void * px4_msgs__msg__heater_status__create_ros_message(void) { return px4_msgs__msg__HeaterStatus__create(); } static void px4_msgs__msg__heater_status__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__HeaterStatus * ros_message = (px4_msgs__msg__HeaterStatus *)raw_ros_message; px4_msgs__msg__HeaterStatus__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__heater_status__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__heater_status__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, HeaterStatus); int8_t _register_msg_type__msg__heater_status(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__heater_status__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__heater_status", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__heater_status__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__heater_status", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__heater_status__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__heater_status", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__heater_status__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__heater_status", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, HeaterStatus), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__heater_status", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/home_position__type_support.h" #include "px4_msgs/msg/home_position__struct.h" #include "px4_msgs/msg/home_position__functions.h" static void * px4_msgs__msg__home_position__create_ros_message(void) { return px4_msgs__msg__HomePosition__create(); } static void px4_msgs__msg__home_position__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__HomePosition * ros_message = (px4_msgs__msg__HomePosition *)raw_ros_message; px4_msgs__msg__HomePosition__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__home_position__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__home_position__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, HomePosition); int8_t _register_msg_type__msg__home_position(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__home_position__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__home_position", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__home_position__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__home_position", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__home_position__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__home_position", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__home_position__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__home_position", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, HomePosition), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__home_position", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/hover_thrust_estimate__type_support.h" #include "px4_msgs/msg/hover_thrust_estimate__struct.h" #include "px4_msgs/msg/hover_thrust_estimate__functions.h" static void * px4_msgs__msg__hover_thrust_estimate__create_ros_message(void) { return px4_msgs__msg__HoverThrustEstimate__create(); } static void px4_msgs__msg__hover_thrust_estimate__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__HoverThrustEstimate * ros_message = (px4_msgs__msg__HoverThrustEstimate *)raw_ros_message; px4_msgs__msg__HoverThrustEstimate__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__hover_thrust_estimate__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__hover_thrust_estimate__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, HoverThrustEstimate); int8_t _register_msg_type__msg__hover_thrust_estimate(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__hover_thrust_estimate__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__hover_thrust_estimate", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__hover_thrust_estimate__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__hover_thrust_estimate", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__hover_thrust_estimate__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__hover_thrust_estimate", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__hover_thrust_estimate__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__hover_thrust_estimate", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, HoverThrustEstimate), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__hover_thrust_estimate", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/input_rc__type_support.h" #include "px4_msgs/msg/input_rc__struct.h" #include "px4_msgs/msg/input_rc__functions.h" static void * px4_msgs__msg__input_rc__create_ros_message(void) { return px4_msgs__msg__InputRc__create(); } static void px4_msgs__msg__input_rc__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__InputRc * ros_message = (px4_msgs__msg__InputRc *)raw_ros_message; px4_msgs__msg__InputRc__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__input_rc__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__input_rc__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, InputRc); int8_t _register_msg_type__msg__input_rc(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__input_rc__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__input_rc", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__input_rc__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__input_rc", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__input_rc__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__input_rc", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__input_rc__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__input_rc", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, InputRc), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__input_rc", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/iridiumsbd_status__type_support.h" #include "px4_msgs/msg/iridiumsbd_status__struct.h" #include "px4_msgs/msg/iridiumsbd_status__functions.h" static void * px4_msgs__msg__iridiumsbd_status__create_ros_message(void) { return px4_msgs__msg__IridiumsbdStatus__create(); } static void px4_msgs__msg__iridiumsbd_status__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__IridiumsbdStatus * ros_message = (px4_msgs__msg__IridiumsbdStatus *)raw_ros_message; px4_msgs__msg__IridiumsbdStatus__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__iridiumsbd_status__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__iridiumsbd_status__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, IridiumsbdStatus); int8_t _register_msg_type__msg__iridiumsbd_status(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__iridiumsbd_status__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__iridiumsbd_status", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__iridiumsbd_status__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__iridiumsbd_status", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__iridiumsbd_status__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__iridiumsbd_status", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__iridiumsbd_status__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__iridiumsbd_status", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, IridiumsbdStatus), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__iridiumsbd_status", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/irlock_report__type_support.h" #include "px4_msgs/msg/irlock_report__struct.h" #include "px4_msgs/msg/irlock_report__functions.h" static void * px4_msgs__msg__irlock_report__create_ros_message(void) { return px4_msgs__msg__IrlockReport__create(); } static void px4_msgs__msg__irlock_report__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__IrlockReport * ros_message = (px4_msgs__msg__IrlockReport *)raw_ros_message; px4_msgs__msg__IrlockReport__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__irlock_report__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__irlock_report__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, IrlockReport); int8_t _register_msg_type__msg__irlock_report(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__irlock_report__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__irlock_report", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__irlock_report__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__irlock_report", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__irlock_report__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__irlock_report", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__irlock_report__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__irlock_report", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, IrlockReport), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__irlock_report", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/landing_gear__type_support.h" #include "px4_msgs/msg/landing_gear__struct.h" #include "px4_msgs/msg/landing_gear__functions.h" static void * px4_msgs__msg__landing_gear__create_ros_message(void) { return px4_msgs__msg__LandingGear__create(); } static void px4_msgs__msg__landing_gear__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__LandingGear * ros_message = (px4_msgs__msg__LandingGear *)raw_ros_message; px4_msgs__msg__LandingGear__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__landing_gear__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__landing_gear__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, LandingGear); int8_t _register_msg_type__msg__landing_gear(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__landing_gear__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__landing_gear", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__landing_gear__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__landing_gear", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__landing_gear__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__landing_gear", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__landing_gear__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__landing_gear", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, LandingGear), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__landing_gear", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/landing_target_innovations__type_support.h" #include "px4_msgs/msg/landing_target_innovations__struct.h" #include "px4_msgs/msg/landing_target_innovations__functions.h" static void * px4_msgs__msg__landing_target_innovations__create_ros_message(void) { return px4_msgs__msg__LandingTargetInnovations__create(); } static void px4_msgs__msg__landing_target_innovations__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__LandingTargetInnovations * ros_message = (px4_msgs__msg__LandingTargetInnovations *)raw_ros_message; px4_msgs__msg__LandingTargetInnovations__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__landing_target_innovations__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__landing_target_innovations__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, LandingTargetInnovations); int8_t _register_msg_type__msg__landing_target_innovations(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__landing_target_innovations__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__landing_target_innovations", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__landing_target_innovations__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__landing_target_innovations", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__landing_target_innovations__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__landing_target_innovations", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__landing_target_innovations__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__landing_target_innovations", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, LandingTargetInnovations), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__landing_target_innovations", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/landing_target_pose__type_support.h" #include "px4_msgs/msg/landing_target_pose__struct.h" #include "px4_msgs/msg/landing_target_pose__functions.h" static void * px4_msgs__msg__landing_target_pose__create_ros_message(void) { return px4_msgs__msg__LandingTargetPose__create(); } static void px4_msgs__msg__landing_target_pose__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__LandingTargetPose * ros_message = (px4_msgs__msg__LandingTargetPose *)raw_ros_message; px4_msgs__msg__LandingTargetPose__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__landing_target_pose__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__landing_target_pose__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, LandingTargetPose); int8_t _register_msg_type__msg__landing_target_pose(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__landing_target_pose__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__landing_target_pose", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__landing_target_pose__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__landing_target_pose", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__landing_target_pose__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__landing_target_pose", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__landing_target_pose__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__landing_target_pose", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, LandingTargetPose), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__landing_target_pose", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/led_control__type_support.h" #include "px4_msgs/msg/led_control__struct.h" #include "px4_msgs/msg/led_control__functions.h" static void * px4_msgs__msg__led_control__create_ros_message(void) { return px4_msgs__msg__LedControl__create(); } static void px4_msgs__msg__led_control__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__LedControl * ros_message = (px4_msgs__msg__LedControl *)raw_ros_message; px4_msgs__msg__LedControl__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__led_control__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__led_control__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, LedControl); int8_t _register_msg_type__msg__led_control(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__led_control__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__led_control", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__led_control__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__led_control", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__led_control__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__led_control", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__led_control__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__led_control", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, LedControl), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__led_control", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/log_message__type_support.h" #include "px4_msgs/msg/log_message__struct.h" #include "px4_msgs/msg/log_message__functions.h" static void * px4_msgs__msg__log_message__create_ros_message(void) { return px4_msgs__msg__LogMessage__create(); } static void px4_msgs__msg__log_message__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__LogMessage * ros_message = (px4_msgs__msg__LogMessage *)raw_ros_message; px4_msgs__msg__LogMessage__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__log_message__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__log_message__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, LogMessage); int8_t _register_msg_type__msg__log_message(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__log_message__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__log_message", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__log_message__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__log_message", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__log_message__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__log_message", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__log_message__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__log_message", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, LogMessage), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__log_message", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/logger_status__type_support.h" #include "px4_msgs/msg/logger_status__struct.h" #include "px4_msgs/msg/logger_status__functions.h" static void * px4_msgs__msg__logger_status__create_ros_message(void) { return px4_msgs__msg__LoggerStatus__create(); } static void px4_msgs__msg__logger_status__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__LoggerStatus * ros_message = (px4_msgs__msg__LoggerStatus *)raw_ros_message; px4_msgs__msg__LoggerStatus__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__logger_status__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__logger_status__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, LoggerStatus); int8_t _register_msg_type__msg__logger_status(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__logger_status__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__logger_status", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__logger_status__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__logger_status", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__logger_status__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__logger_status", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__logger_status__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__logger_status", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, LoggerStatus), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__logger_status", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/mag_worker_data__type_support.h" #include "px4_msgs/msg/mag_worker_data__struct.h" #include "px4_msgs/msg/mag_worker_data__functions.h" static void * px4_msgs__msg__mag_worker_data__create_ros_message(void) { return px4_msgs__msg__MagWorkerData__create(); } static void px4_msgs__msg__mag_worker_data__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__MagWorkerData * ros_message = (px4_msgs__msg__MagWorkerData *)raw_ros_message; px4_msgs__msg__MagWorkerData__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__mag_worker_data__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__mag_worker_data__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, MagWorkerData); int8_t _register_msg_type__msg__mag_worker_data(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__mag_worker_data__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__mag_worker_data", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__mag_worker_data__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__mag_worker_data", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__mag_worker_data__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__mag_worker_data", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__mag_worker_data__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__mag_worker_data", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, MagWorkerData), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__mag_worker_data", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/manual_control_setpoint__type_support.h" #include "px4_msgs/msg/manual_control_setpoint__struct.h" #include "px4_msgs/msg/manual_control_setpoint__functions.h" static void * px4_msgs__msg__manual_control_setpoint__create_ros_message(void) { return px4_msgs__msg__ManualControlSetpoint__create(); } static void px4_msgs__msg__manual_control_setpoint__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__ManualControlSetpoint * ros_message = (px4_msgs__msg__ManualControlSetpoint *)raw_ros_message; px4_msgs__msg__ManualControlSetpoint__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__manual_control_setpoint__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__manual_control_setpoint__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ManualControlSetpoint); int8_t _register_msg_type__msg__manual_control_setpoint(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__manual_control_setpoint__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__manual_control_setpoint", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__manual_control_setpoint__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__manual_control_setpoint", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__manual_control_setpoint__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__manual_control_setpoint", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__manual_control_setpoint__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__manual_control_setpoint", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ManualControlSetpoint), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__manual_control_setpoint", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/manual_control_switches__type_support.h" #include "px4_msgs/msg/manual_control_switches__struct.h" #include "px4_msgs/msg/manual_control_switches__functions.h" static void * px4_msgs__msg__manual_control_switches__create_ros_message(void) { return px4_msgs__msg__ManualControlSwitches__create(); } static void px4_msgs__msg__manual_control_switches__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__ManualControlSwitches * ros_message = (px4_msgs__msg__ManualControlSwitches *)raw_ros_message; px4_msgs__msg__ManualControlSwitches__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__manual_control_switches__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__manual_control_switches__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ManualControlSwitches); int8_t _register_msg_type__msg__manual_control_switches(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__manual_control_switches__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__manual_control_switches", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__manual_control_switches__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__manual_control_switches", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__manual_control_switches__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__manual_control_switches", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__manual_control_switches__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__manual_control_switches", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ManualControlSwitches), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__manual_control_switches", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/mavlink_log__type_support.h" #include "px4_msgs/msg/mavlink_log__struct.h" #include "px4_msgs/msg/mavlink_log__functions.h" static void * px4_msgs__msg__mavlink_log__create_ros_message(void) { return px4_msgs__msg__MavlinkLog__create(); } static void px4_msgs__msg__mavlink_log__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__MavlinkLog * ros_message = (px4_msgs__msg__MavlinkLog *)raw_ros_message; px4_msgs__msg__MavlinkLog__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__mavlink_log__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__mavlink_log__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, MavlinkLog); int8_t _register_msg_type__msg__mavlink_log(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__mavlink_log__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__mavlink_log", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__mavlink_log__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__mavlink_log", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__mavlink_log__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__mavlink_log", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__mavlink_log__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__mavlink_log", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, MavlinkLog), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__mavlink_log", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.h" #include "px4_msgs/msg/mc_virtual_attitude_setpoint__struct.h" #include "px4_msgs/msg/mc_virtual_attitude_setpoint__functions.h" static void * px4_msgs__msg__mc_virtual_attitude_setpoint__create_ros_message(void) { return px4_msgs__msg__McVirtualAttitudeSetpoint__create(); } static void px4_msgs__msg__mc_virtual_attitude_setpoint__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__McVirtualAttitudeSetpoint * ros_message = (px4_msgs__msg__McVirtualAttitudeSetpoint *)raw_ros_message; px4_msgs__msg__McVirtualAttitudeSetpoint__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__mc_virtual_attitude_setpoint__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__mc_virtual_attitude_setpoint__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, McVirtualAttitudeSetpoint); int8_t _register_msg_type__msg__mc_virtual_attitude_setpoint(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__mc_virtual_attitude_setpoint__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__mc_virtual_attitude_setpoint", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__mc_virtual_attitude_setpoint__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__mc_virtual_attitude_setpoint", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__mc_virtual_attitude_setpoint__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__mc_virtual_attitude_setpoint", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__mc_virtual_attitude_setpoint__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__mc_virtual_attitude_setpoint", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, McVirtualAttitudeSetpoint), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__mc_virtual_attitude_setpoint", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/mission__type_support.h" #include "px4_msgs/msg/mission__struct.h" #include "px4_msgs/msg/mission__functions.h" static void * px4_msgs__msg__mission__create_ros_message(void) { return px4_msgs__msg__Mission__create(); } static void px4_msgs__msg__mission__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__Mission * ros_message = (px4_msgs__msg__Mission *)raw_ros_message; px4_msgs__msg__Mission__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__mission__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__mission__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, Mission); int8_t _register_msg_type__msg__mission(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__mission__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__mission", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__mission__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__mission", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__mission__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__mission", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__mission__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__mission", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, Mission), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__mission", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/mission_result__type_support.h" #include "px4_msgs/msg/mission_result__struct.h" #include "px4_msgs/msg/mission_result__functions.h" static void * px4_msgs__msg__mission_result__create_ros_message(void) { return px4_msgs__msg__MissionResult__create(); } static void px4_msgs__msg__mission_result__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__MissionResult * ros_message = (px4_msgs__msg__MissionResult *)raw_ros_message; px4_msgs__msg__MissionResult__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__mission_result__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__mission_result__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, MissionResult); int8_t _register_msg_type__msg__mission_result(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__mission_result__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__mission_result", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__mission_result__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__mission_result", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__mission_result__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__mission_result", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__mission_result__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__mission_result", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, MissionResult), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__mission_result", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/mount_orientation__type_support.h" #include "px4_msgs/msg/mount_orientation__struct.h" #include "px4_msgs/msg/mount_orientation__functions.h" static void * px4_msgs__msg__mount_orientation__create_ros_message(void) { return px4_msgs__msg__MountOrientation__create(); } static void px4_msgs__msg__mount_orientation__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__MountOrientation * ros_message = (px4_msgs__msg__MountOrientation *)raw_ros_message; px4_msgs__msg__MountOrientation__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__mount_orientation__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__mount_orientation__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, MountOrientation); int8_t _register_msg_type__msg__mount_orientation(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__mount_orientation__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__mount_orientation", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__mount_orientation__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__mount_orientation", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__mount_orientation__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__mount_orientation", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__mount_orientation__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__mount_orientation", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, MountOrientation), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__mount_orientation", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/multirotor_motor_limits__type_support.h" #include "px4_msgs/msg/multirotor_motor_limits__struct.h" #include "px4_msgs/msg/multirotor_motor_limits__functions.h" static void * px4_msgs__msg__multirotor_motor_limits__create_ros_message(void) { return px4_msgs__msg__MultirotorMotorLimits__create(); } static void px4_msgs__msg__multirotor_motor_limits__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__MultirotorMotorLimits * ros_message = (px4_msgs__msg__MultirotorMotorLimits *)raw_ros_message; px4_msgs__msg__MultirotorMotorLimits__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__multirotor_motor_limits__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__multirotor_motor_limits__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, MultirotorMotorLimits); int8_t _register_msg_type__msg__multirotor_motor_limits(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__multirotor_motor_limits__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__multirotor_motor_limits", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__multirotor_motor_limits__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__multirotor_motor_limits", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__multirotor_motor_limits__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__multirotor_motor_limits", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__multirotor_motor_limits__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__multirotor_motor_limits", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, MultirotorMotorLimits), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__multirotor_motor_limits", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/navigator_mission_item__type_support.h" #include "px4_msgs/msg/navigator_mission_item__struct.h" #include "px4_msgs/msg/navigator_mission_item__functions.h" static void * px4_msgs__msg__navigator_mission_item__create_ros_message(void) { return px4_msgs__msg__NavigatorMissionItem__create(); } static void px4_msgs__msg__navigator_mission_item__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__NavigatorMissionItem * ros_message = (px4_msgs__msg__NavigatorMissionItem *)raw_ros_message; px4_msgs__msg__NavigatorMissionItem__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__navigator_mission_item__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__navigator_mission_item__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, NavigatorMissionItem); int8_t _register_msg_type__msg__navigator_mission_item(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__navigator_mission_item__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__navigator_mission_item", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__navigator_mission_item__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__navigator_mission_item", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__navigator_mission_item__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__navigator_mission_item", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__navigator_mission_item__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__navigator_mission_item", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, NavigatorMissionItem), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__navigator_mission_item", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/obstacle_distance__type_support.h" #include "px4_msgs/msg/obstacle_distance__struct.h" #include "px4_msgs/msg/obstacle_distance__functions.h" static void * px4_msgs__msg__obstacle_distance__create_ros_message(void) { return px4_msgs__msg__ObstacleDistance__create(); } static void px4_msgs__msg__obstacle_distance__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__ObstacleDistance * ros_message = (px4_msgs__msg__ObstacleDistance *)raw_ros_message; px4_msgs__msg__ObstacleDistance__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__obstacle_distance__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__obstacle_distance__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ObstacleDistance); int8_t _register_msg_type__msg__obstacle_distance(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__obstacle_distance__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__obstacle_distance", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__obstacle_distance__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__obstacle_distance", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__obstacle_distance__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__obstacle_distance", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__obstacle_distance__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__obstacle_distance", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ObstacleDistance), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__obstacle_distance", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/obstacle_distance_fused__type_support.h" #include "px4_msgs/msg/obstacle_distance_fused__struct.h" #include "px4_msgs/msg/obstacle_distance_fused__functions.h" static void * px4_msgs__msg__obstacle_distance_fused__create_ros_message(void) { return px4_msgs__msg__ObstacleDistanceFused__create(); } static void px4_msgs__msg__obstacle_distance_fused__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__ObstacleDistanceFused * ros_message = (px4_msgs__msg__ObstacleDistanceFused *)raw_ros_message; px4_msgs__msg__ObstacleDistanceFused__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__obstacle_distance_fused__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__obstacle_distance_fused__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ObstacleDistanceFused); int8_t _register_msg_type__msg__obstacle_distance_fused(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__obstacle_distance_fused__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__obstacle_distance_fused", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__obstacle_distance_fused__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__obstacle_distance_fused", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__obstacle_distance_fused__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__obstacle_distance_fused", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__obstacle_distance_fused__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__obstacle_distance_fused", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ObstacleDistanceFused), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__obstacle_distance_fused", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/offboard_control_mode__type_support.h" #include "px4_msgs/msg/offboard_control_mode__struct.h" #include "px4_msgs/msg/offboard_control_mode__functions.h" static void * px4_msgs__msg__offboard_control_mode__create_ros_message(void) { return px4_msgs__msg__OffboardControlMode__create(); } static void px4_msgs__msg__offboard_control_mode__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__OffboardControlMode * ros_message = (px4_msgs__msg__OffboardControlMode *)raw_ros_message; px4_msgs__msg__OffboardControlMode__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__offboard_control_mode__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__offboard_control_mode__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, OffboardControlMode); int8_t _register_msg_type__msg__offboard_control_mode(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__offboard_control_mode__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__offboard_control_mode", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__offboard_control_mode__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__offboard_control_mode", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__offboard_control_mode__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__offboard_control_mode", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__offboard_control_mode__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__offboard_control_mode", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, OffboardControlMode), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__offboard_control_mode", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/onboard_computer_status__type_support.h" #include "px4_msgs/msg/onboard_computer_status__struct.h" #include "px4_msgs/msg/onboard_computer_status__functions.h" static void * px4_msgs__msg__onboard_computer_status__create_ros_message(void) { return px4_msgs__msg__OnboardComputerStatus__create(); } static void px4_msgs__msg__onboard_computer_status__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__OnboardComputerStatus * ros_message = (px4_msgs__msg__OnboardComputerStatus *)raw_ros_message; px4_msgs__msg__OnboardComputerStatus__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__onboard_computer_status__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__onboard_computer_status__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, OnboardComputerStatus); int8_t _register_msg_type__msg__onboard_computer_status(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__onboard_computer_status__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__onboard_computer_status", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__onboard_computer_status__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__onboard_computer_status", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__onboard_computer_status__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__onboard_computer_status", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__onboard_computer_status__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__onboard_computer_status", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, OnboardComputerStatus), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__onboard_computer_status", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/optical_flow__type_support.h" #include "px4_msgs/msg/optical_flow__struct.h" #include "px4_msgs/msg/optical_flow__functions.h" static void * px4_msgs__msg__optical_flow__create_ros_message(void) { return px4_msgs__msg__OpticalFlow__create(); } static void px4_msgs__msg__optical_flow__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__OpticalFlow * ros_message = (px4_msgs__msg__OpticalFlow *)raw_ros_message; px4_msgs__msg__OpticalFlow__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__optical_flow__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__optical_flow__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, OpticalFlow); int8_t _register_msg_type__msg__optical_flow(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__optical_flow__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__optical_flow", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__optical_flow__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__optical_flow", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__optical_flow__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__optical_flow", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__optical_flow__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__optical_flow", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, OpticalFlow), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__optical_flow", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/orb_multitest__type_support.h" #include "px4_msgs/msg/orb_multitest__struct.h" #include "px4_msgs/msg/orb_multitest__functions.h" static void * px4_msgs__msg__orb_multitest__create_ros_message(void) { return px4_msgs__msg__OrbMultitest__create(); } static void px4_msgs__msg__orb_multitest__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__OrbMultitest * ros_message = (px4_msgs__msg__OrbMultitest *)raw_ros_message; px4_msgs__msg__OrbMultitest__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__orb_multitest__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__orb_multitest__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, OrbMultitest); int8_t _register_msg_type__msg__orb_multitest(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__orb_multitest__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__orb_multitest", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__orb_multitest__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__orb_multitest", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__orb_multitest__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__orb_multitest", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__orb_multitest__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__orb_multitest", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, OrbMultitest), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__orb_multitest", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/orb_test__type_support.h" #include "px4_msgs/msg/orb_test__struct.h" #include "px4_msgs/msg/orb_test__functions.h" static void * px4_msgs__msg__orb_test__create_ros_message(void) { return px4_msgs__msg__OrbTest__create(); } static void px4_msgs__msg__orb_test__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__OrbTest * ros_message = (px4_msgs__msg__OrbTest *)raw_ros_message; px4_msgs__msg__OrbTest__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__orb_test__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__orb_test__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, OrbTest); int8_t _register_msg_type__msg__orb_test(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__orb_test__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__orb_test", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__orb_test__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__orb_test", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__orb_test__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__orb_test", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__orb_test__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__orb_test", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, OrbTest), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__orb_test", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/orb_test_large__type_support.h" #include "px4_msgs/msg/orb_test_large__struct.h" #include "px4_msgs/msg/orb_test_large__functions.h" static void * px4_msgs__msg__orb_test_large__create_ros_message(void) { return px4_msgs__msg__OrbTestLarge__create(); } static void px4_msgs__msg__orb_test_large__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__OrbTestLarge * ros_message = (px4_msgs__msg__OrbTestLarge *)raw_ros_message; px4_msgs__msg__OrbTestLarge__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__orb_test_large__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__orb_test_large__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, OrbTestLarge); int8_t _register_msg_type__msg__orb_test_large(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__orb_test_large__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__orb_test_large", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__orb_test_large__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__orb_test_large", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__orb_test_large__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__orb_test_large", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__orb_test_large__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__orb_test_large", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, OrbTestLarge), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__orb_test_large", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/orb_test_medium__type_support.h" #include "px4_msgs/msg/orb_test_medium__struct.h" #include "px4_msgs/msg/orb_test_medium__functions.h" static void * px4_msgs__msg__orb_test_medium__create_ros_message(void) { return px4_msgs__msg__OrbTestMedium__create(); } static void px4_msgs__msg__orb_test_medium__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__OrbTestMedium * ros_message = (px4_msgs__msg__OrbTestMedium *)raw_ros_message; px4_msgs__msg__OrbTestMedium__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__orb_test_medium__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__orb_test_medium__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, OrbTestMedium); int8_t _register_msg_type__msg__orb_test_medium(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__orb_test_medium__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__orb_test_medium", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__orb_test_medium__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__orb_test_medium", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__orb_test_medium__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__orb_test_medium", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__orb_test_medium__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__orb_test_medium", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, OrbTestMedium), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__orb_test_medium", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/orb_test_medium_multi__type_support.h" #include "px4_msgs/msg/orb_test_medium_multi__struct.h" #include "px4_msgs/msg/orb_test_medium_multi__functions.h" static void * px4_msgs__msg__orb_test_medium_multi__create_ros_message(void) { return px4_msgs__msg__OrbTestMediumMulti__create(); } static void px4_msgs__msg__orb_test_medium_multi__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__OrbTestMediumMulti * ros_message = (px4_msgs__msg__OrbTestMediumMulti *)raw_ros_message; px4_msgs__msg__OrbTestMediumMulti__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__orb_test_medium_multi__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__orb_test_medium_multi__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, OrbTestMediumMulti); int8_t _register_msg_type__msg__orb_test_medium_multi(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__orb_test_medium_multi__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__orb_test_medium_multi", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__orb_test_medium_multi__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__orb_test_medium_multi", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__orb_test_medium_multi__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__orb_test_medium_multi", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__orb_test_medium_multi__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__orb_test_medium_multi", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, OrbTestMediumMulti), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__orb_test_medium_multi", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/orb_test_medium_queue__type_support.h" #include "px4_msgs/msg/orb_test_medium_queue__struct.h" #include "px4_msgs/msg/orb_test_medium_queue__functions.h" static void * px4_msgs__msg__orb_test_medium_queue__create_ros_message(void) { return px4_msgs__msg__OrbTestMediumQueue__create(); } static void px4_msgs__msg__orb_test_medium_queue__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__OrbTestMediumQueue * ros_message = (px4_msgs__msg__OrbTestMediumQueue *)raw_ros_message; px4_msgs__msg__OrbTestMediumQueue__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__orb_test_medium_queue__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__orb_test_medium_queue__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, OrbTestMediumQueue); int8_t _register_msg_type__msg__orb_test_medium_queue(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__orb_test_medium_queue__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__orb_test_medium_queue", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__orb_test_medium_queue__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__orb_test_medium_queue", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__orb_test_medium_queue__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__orb_test_medium_queue", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__orb_test_medium_queue__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__orb_test_medium_queue", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, OrbTestMediumQueue), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__orb_test_medium_queue", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/orb_test_medium_queue_poll__type_support.h" #include "px4_msgs/msg/orb_test_medium_queue_poll__struct.h" #include "px4_msgs/msg/orb_test_medium_queue_poll__functions.h" static void * px4_msgs__msg__orb_test_medium_queue_poll__create_ros_message(void) { return px4_msgs__msg__OrbTestMediumQueuePoll__create(); } static void px4_msgs__msg__orb_test_medium_queue_poll__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__OrbTestMediumQueuePoll * ros_message = (px4_msgs__msg__OrbTestMediumQueuePoll *)raw_ros_message; px4_msgs__msg__OrbTestMediumQueuePoll__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__orb_test_medium_queue_poll__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__orb_test_medium_queue_poll__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, OrbTestMediumQueuePoll); int8_t _register_msg_type__msg__orb_test_medium_queue_poll(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__orb_test_medium_queue_poll__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__orb_test_medium_queue_poll", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__orb_test_medium_queue_poll__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__orb_test_medium_queue_poll", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__orb_test_medium_queue_poll__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__orb_test_medium_queue_poll", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__orb_test_medium_queue_poll__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__orb_test_medium_queue_poll", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, OrbTestMediumQueuePoll), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__orb_test_medium_queue_poll", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/orb_test_medium_wrap_around__type_support.h" #include "px4_msgs/msg/orb_test_medium_wrap_around__struct.h" #include "px4_msgs/msg/orb_test_medium_wrap_around__functions.h" static void * px4_msgs__msg__orb_test_medium_wrap_around__create_ros_message(void) { return px4_msgs__msg__OrbTestMediumWrapAround__create(); } static void px4_msgs__msg__orb_test_medium_wrap_around__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__OrbTestMediumWrapAround * ros_message = (px4_msgs__msg__OrbTestMediumWrapAround *)raw_ros_message; px4_msgs__msg__OrbTestMediumWrapAround__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__orb_test_medium_wrap_around__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__orb_test_medium_wrap_around__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, OrbTestMediumWrapAround); int8_t _register_msg_type__msg__orb_test_medium_wrap_around(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__orb_test_medium_wrap_around__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__orb_test_medium_wrap_around", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__orb_test_medium_wrap_around__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__orb_test_medium_wrap_around", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__orb_test_medium_wrap_around__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__orb_test_medium_wrap_around", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__orb_test_medium_wrap_around__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__orb_test_medium_wrap_around", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, OrbTestMediumWrapAround), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__orb_test_medium_wrap_around", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/orbit_status__type_support.h" #include "px4_msgs/msg/orbit_status__struct.h" #include "px4_msgs/msg/orbit_status__functions.h" static void * px4_msgs__msg__orbit_status__create_ros_message(void) { return px4_msgs__msg__OrbitStatus__create(); } static void px4_msgs__msg__orbit_status__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__OrbitStatus * ros_message = (px4_msgs__msg__OrbitStatus *)raw_ros_message; px4_msgs__msg__OrbitStatus__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__orbit_status__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__orbit_status__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, OrbitStatus); int8_t _register_msg_type__msg__orbit_status(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__orbit_status__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__orbit_status", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__orbit_status__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__orbit_status", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__orbit_status__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__orbit_status", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__orbit_status__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__orbit_status", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, OrbitStatus), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__orbit_status", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/parameter_update__type_support.h" #include "px4_msgs/msg/parameter_update__struct.h" #include "px4_msgs/msg/parameter_update__functions.h" static void * px4_msgs__msg__parameter_update__create_ros_message(void) { return px4_msgs__msg__ParameterUpdate__create(); } static void px4_msgs__msg__parameter_update__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__ParameterUpdate * ros_message = (px4_msgs__msg__ParameterUpdate *)raw_ros_message; px4_msgs__msg__ParameterUpdate__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__parameter_update__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__parameter_update__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ParameterUpdate); int8_t _register_msg_type__msg__parameter_update(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__parameter_update__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__parameter_update", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__parameter_update__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__parameter_update", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__parameter_update__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__parameter_update", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__parameter_update__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__parameter_update", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, ParameterUpdate), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__parameter_update", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/ping__type_support.h" #include "px4_msgs/msg/ping__struct.h" #include "px4_msgs/msg/ping__functions.h" static void * px4_msgs__msg__ping__create_ros_message(void) { return px4_msgs__msg__Ping__create(); } static void px4_msgs__msg__ping__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__Ping * ros_message = (px4_msgs__msg__Ping *)raw_ros_message; px4_msgs__msg__Ping__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__ping__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__ping__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, Ping); int8_t _register_msg_type__msg__ping(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__ping__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__ping", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__ping__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__ping", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__ping__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__ping", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__ping__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__ping", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, Ping), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__ping", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/position_controller_landing_status__type_support.h" #include "px4_msgs/msg/position_controller_landing_status__struct.h" #include "px4_msgs/msg/position_controller_landing_status__functions.h" static void * px4_msgs__msg__position_controller_landing_status__create_ros_message(void) { return px4_msgs__msg__PositionControllerLandingStatus__create(); } static void px4_msgs__msg__position_controller_landing_status__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__PositionControllerLandingStatus * ros_message = (px4_msgs__msg__PositionControllerLandingStatus *)raw_ros_message; px4_msgs__msg__PositionControllerLandingStatus__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__position_controller_landing_status__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__position_controller_landing_status__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, PositionControllerLandingStatus); int8_t _register_msg_type__msg__position_controller_landing_status(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__position_controller_landing_status__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__position_controller_landing_status", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__position_controller_landing_status__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__position_controller_landing_status", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__position_controller_landing_status__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__position_controller_landing_status", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__position_controller_landing_status__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__position_controller_landing_status", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, PositionControllerLandingStatus), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__position_controller_landing_status", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/position_controller_status__type_support.h" #include "px4_msgs/msg/position_controller_status__struct.h" #include "px4_msgs/msg/position_controller_status__functions.h" static void * px4_msgs__msg__position_controller_status__create_ros_message(void) { return px4_msgs__msg__PositionControllerStatus__create(); } static void px4_msgs__msg__position_controller_status__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__PositionControllerStatus * ros_message = (px4_msgs__msg__PositionControllerStatus *)raw_ros_message; px4_msgs__msg__PositionControllerStatus__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__position_controller_status__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__position_controller_status__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, PositionControllerStatus); int8_t _register_msg_type__msg__position_controller_status(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__position_controller_status__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__position_controller_status", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__position_controller_status__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__position_controller_status", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__position_controller_status__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__position_controller_status", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__position_controller_status__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__position_controller_status", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, PositionControllerStatus), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__position_controller_status", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/position_setpoint__type_support.h" #include "px4_msgs/msg/position_setpoint__struct.h" #include "px4_msgs/msg/position_setpoint__functions.h" static void * px4_msgs__msg__position_setpoint__create_ros_message(void) { return px4_msgs__msg__PositionSetpoint__create(); } static void px4_msgs__msg__position_setpoint__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__PositionSetpoint * ros_message = (px4_msgs__msg__PositionSetpoint *)raw_ros_message; px4_msgs__msg__PositionSetpoint__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__position_setpoint__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__position_setpoint__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, PositionSetpoint); int8_t _register_msg_type__msg__position_setpoint(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__position_setpoint__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__position_setpoint", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__position_setpoint__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__position_setpoint", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__position_setpoint__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__position_setpoint", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__position_setpoint__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__position_setpoint", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, PositionSetpoint), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__position_setpoint", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/position_setpoint_triplet__type_support.h" #include "px4_msgs/msg/position_setpoint_triplet__struct.h" #include "px4_msgs/msg/position_setpoint_triplet__functions.h" static void * px4_msgs__msg__position_setpoint_triplet__create_ros_message(void) { return px4_msgs__msg__PositionSetpointTriplet__create(); } static void px4_msgs__msg__position_setpoint_triplet__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__PositionSetpointTriplet * ros_message = (px4_msgs__msg__PositionSetpointTriplet *)raw_ros_message; px4_msgs__msg__PositionSetpointTriplet__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__position_setpoint_triplet__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__position_setpoint_triplet__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, PositionSetpointTriplet); int8_t _register_msg_type__msg__position_setpoint_triplet(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__position_setpoint_triplet__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__position_setpoint_triplet", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__position_setpoint_triplet__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__position_setpoint_triplet", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__position_setpoint_triplet__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__position_setpoint_triplet", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__position_setpoint_triplet__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__position_setpoint_triplet", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, PositionSetpointTriplet), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__position_setpoint_triplet", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/power_button_state__type_support.h" #include "px4_msgs/msg/power_button_state__struct.h" #include "px4_msgs/msg/power_button_state__functions.h" static void * px4_msgs__msg__power_button_state__create_ros_message(void) { return px4_msgs__msg__PowerButtonState__create(); } static void px4_msgs__msg__power_button_state__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__PowerButtonState * ros_message = (px4_msgs__msg__PowerButtonState *)raw_ros_message; px4_msgs__msg__PowerButtonState__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__power_button_state__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__power_button_state__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, PowerButtonState); int8_t _register_msg_type__msg__power_button_state(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__power_button_state__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__power_button_state", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__power_button_state__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__power_button_state", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__power_button_state__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__power_button_state", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__power_button_state__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__power_button_state", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, PowerButtonState), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__power_button_state", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/power_monitor__type_support.h" #include "px4_msgs/msg/power_monitor__struct.h" #include "px4_msgs/msg/power_monitor__functions.h" static void * px4_msgs__msg__power_monitor__create_ros_message(void) { return px4_msgs__msg__PowerMonitor__create(); } static void px4_msgs__msg__power_monitor__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__PowerMonitor * ros_message = (px4_msgs__msg__PowerMonitor *)raw_ros_message; px4_msgs__msg__PowerMonitor__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__power_monitor__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__power_monitor__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, PowerMonitor); int8_t _register_msg_type__msg__power_monitor(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__power_monitor__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__power_monitor", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__power_monitor__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__power_monitor", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__power_monitor__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__power_monitor", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__power_monitor__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__power_monitor", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, PowerMonitor), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__power_monitor", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/pwm_input__type_support.h" #include "px4_msgs/msg/pwm_input__struct.h" #include "px4_msgs/msg/pwm_input__functions.h" static void * px4_msgs__msg__pwm_input__create_ros_message(void) { return px4_msgs__msg__PwmInput__create(); } static void px4_msgs__msg__pwm_input__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__PwmInput * ros_message = (px4_msgs__msg__PwmInput *)raw_ros_message; px4_msgs__msg__PwmInput__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__pwm_input__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__pwm_input__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, PwmInput); int8_t _register_msg_type__msg__pwm_input(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__pwm_input__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__pwm_input", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__pwm_input__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__pwm_input", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__pwm_input__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__pwm_input", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__pwm_input__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__pwm_input", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, PwmInput), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__pwm_input", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/px4_io_status__type_support.h" #include "px4_msgs/msg/px4_io_status__struct.h" #include "px4_msgs/msg/px4_io_status__functions.h" static void * px4_msgs__msg__px4_io_status__create_ros_message(void) { return px4_msgs__msg__Px4IoStatus__create(); } static void px4_msgs__msg__px4_io_status__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__Px4IoStatus * ros_message = (px4_msgs__msg__Px4IoStatus *)raw_ros_message; px4_msgs__msg__Px4IoStatus__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__px4_io_status__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__px4_io_status__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, Px4IoStatus); int8_t _register_msg_type__msg__px4_io_status(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__px4_io_status__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__px4_io_status", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__px4_io_status__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__px4_io_status", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__px4_io_status__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__px4_io_status", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__px4_io_status__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__px4_io_status", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, Px4IoStatus), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__px4_io_status", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/qshell_req__type_support.h" #include "px4_msgs/msg/qshell_req__struct.h" #include "px4_msgs/msg/qshell_req__functions.h" static void * px4_msgs__msg__qshell_req__create_ros_message(void) { return px4_msgs__msg__QshellReq__create(); } static void px4_msgs__msg__qshell_req__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__QshellReq * ros_message = (px4_msgs__msg__QshellReq *)raw_ros_message; px4_msgs__msg__QshellReq__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__qshell_req__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__qshell_req__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, QshellReq); int8_t _register_msg_type__msg__qshell_req(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__qshell_req__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__qshell_req", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__qshell_req__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__qshell_req", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__qshell_req__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__qshell_req", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__qshell_req__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__qshell_req", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, QshellReq), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__qshell_req", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/qshell_retval__type_support.h" #include "px4_msgs/msg/qshell_retval__struct.h" #include "px4_msgs/msg/qshell_retval__functions.h" static void * px4_msgs__msg__qshell_retval__create_ros_message(void) { return px4_msgs__msg__QshellRetval__create(); } static void px4_msgs__msg__qshell_retval__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__QshellRetval * ros_message = (px4_msgs__msg__QshellRetval *)raw_ros_message; px4_msgs__msg__QshellRetval__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__qshell_retval__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__qshell_retval__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, QshellRetval); int8_t _register_msg_type__msg__qshell_retval(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__qshell_retval__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__qshell_retval", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__qshell_retval__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__qshell_retval", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__qshell_retval__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__qshell_retval", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__qshell_retval__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__qshell_retval", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, QshellRetval), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__qshell_retval", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/radio_status__type_support.h" #include "px4_msgs/msg/radio_status__struct.h" #include "px4_msgs/msg/radio_status__functions.h" static void * px4_msgs__msg__radio_status__create_ros_message(void) { return px4_msgs__msg__RadioStatus__create(); } static void px4_msgs__msg__radio_status__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__RadioStatus * ros_message = (px4_msgs__msg__RadioStatus *)raw_ros_message; px4_msgs__msg__RadioStatus__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__radio_status__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__radio_status__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, RadioStatus); int8_t _register_msg_type__msg__radio_status(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__radio_status__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__radio_status", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__radio_status__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__radio_status", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__radio_status__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__radio_status", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__radio_status__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__radio_status", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, RadioStatus), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__radio_status", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/rate_ctrl_status__type_support.h" #include "px4_msgs/msg/rate_ctrl_status__struct.h" #include "px4_msgs/msg/rate_ctrl_status__functions.h" static void * px4_msgs__msg__rate_ctrl_status__create_ros_message(void) { return px4_msgs__msg__RateCtrlStatus__create(); } static void px4_msgs__msg__rate_ctrl_status__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__RateCtrlStatus * ros_message = (px4_msgs__msg__RateCtrlStatus *)raw_ros_message; px4_msgs__msg__RateCtrlStatus__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__rate_ctrl_status__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__rate_ctrl_status__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, RateCtrlStatus); int8_t _register_msg_type__msg__rate_ctrl_status(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__rate_ctrl_status__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__rate_ctrl_status", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__rate_ctrl_status__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__rate_ctrl_status", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__rate_ctrl_status__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__rate_ctrl_status", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__rate_ctrl_status__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__rate_ctrl_status", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, RateCtrlStatus), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__rate_ctrl_status", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/rc_channels__type_support.h" #include "px4_msgs/msg/rc_channels__struct.h" #include "px4_msgs/msg/rc_channels__functions.h" static void * px4_msgs__msg__rc_channels__create_ros_message(void) { return px4_msgs__msg__RcChannels__create(); } static void px4_msgs__msg__rc_channels__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__RcChannels * ros_message = (px4_msgs__msg__RcChannels *)raw_ros_message; px4_msgs__msg__RcChannels__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__rc_channels__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__rc_channels__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, RcChannels); int8_t _register_msg_type__msg__rc_channels(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__rc_channels__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__rc_channels", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__rc_channels__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__rc_channels", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__rc_channels__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__rc_channels", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__rc_channels__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__rc_channels", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, RcChannels), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__rc_channels", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/rc_parameter_map__type_support.h" #include "px4_msgs/msg/rc_parameter_map__struct.h" #include "px4_msgs/msg/rc_parameter_map__functions.h" static void * px4_msgs__msg__rc_parameter_map__create_ros_message(void) { return px4_msgs__msg__RcParameterMap__create(); } static void px4_msgs__msg__rc_parameter_map__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__RcParameterMap * ros_message = (px4_msgs__msg__RcParameterMap *)raw_ros_message; px4_msgs__msg__RcParameterMap__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__rc_parameter_map__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__rc_parameter_map__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, RcParameterMap); int8_t _register_msg_type__msg__rc_parameter_map(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__rc_parameter_map__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__rc_parameter_map", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__rc_parameter_map__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__rc_parameter_map", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__rc_parameter_map__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__rc_parameter_map", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__rc_parameter_map__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__rc_parameter_map", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, RcParameterMap), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__rc_parameter_map", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/rpm__type_support.h" #include "px4_msgs/msg/rpm__struct.h" #include "px4_msgs/msg/rpm__functions.h" static void * px4_msgs__msg__rpm__create_ros_message(void) { return px4_msgs__msg__Rpm__create(); } static void px4_msgs__msg__rpm__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__Rpm * ros_message = (px4_msgs__msg__Rpm *)raw_ros_message; px4_msgs__msg__Rpm__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__rpm__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__rpm__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, Rpm); int8_t _register_msg_type__msg__rpm(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__rpm__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__rpm", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__rpm__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__rpm", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__rpm__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__rpm", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__rpm__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__rpm", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, Rpm), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__rpm", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/rtl_flight_time__type_support.h" #include "px4_msgs/msg/rtl_flight_time__struct.h" #include "px4_msgs/msg/rtl_flight_time__functions.h" static void * px4_msgs__msg__rtl_flight_time__create_ros_message(void) { return px4_msgs__msg__RtlFlightTime__create(); } static void px4_msgs__msg__rtl_flight_time__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__RtlFlightTime * ros_message = (px4_msgs__msg__RtlFlightTime *)raw_ros_message; px4_msgs__msg__RtlFlightTime__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__rtl_flight_time__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__rtl_flight_time__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, RtlFlightTime); int8_t _register_msg_type__msg__rtl_flight_time(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__rtl_flight_time__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__rtl_flight_time", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__rtl_flight_time__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__rtl_flight_time", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__rtl_flight_time__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__rtl_flight_time", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__rtl_flight_time__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__rtl_flight_time", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, RtlFlightTime), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__rtl_flight_time", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/safety__type_support.h" #include "px4_msgs/msg/safety__struct.h" #include "px4_msgs/msg/safety__functions.h" static void * px4_msgs__msg__safety__create_ros_message(void) { return px4_msgs__msg__Safety__create(); } static void px4_msgs__msg__safety__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__Safety * ros_message = (px4_msgs__msg__Safety *)raw_ros_message; px4_msgs__msg__Safety__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__safety__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__safety__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, Safety); int8_t _register_msg_type__msg__safety(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__safety__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__safety", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__safety__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__safety", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__safety__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__safety", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__safety__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__safety", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, Safety), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__safety", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/satellite_info__type_support.h" #include "px4_msgs/msg/satellite_info__struct.h" #include "px4_msgs/msg/satellite_info__functions.h" static void * px4_msgs__msg__satellite_info__create_ros_message(void) { return px4_msgs__msg__SatelliteInfo__create(); } static void px4_msgs__msg__satellite_info__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__SatelliteInfo * ros_message = (px4_msgs__msg__SatelliteInfo *)raw_ros_message; px4_msgs__msg__SatelliteInfo__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__satellite_info__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__satellite_info__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SatelliteInfo); int8_t _register_msg_type__msg__satellite_info(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__satellite_info__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__satellite_info", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__satellite_info__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__satellite_info", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__satellite_info__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__satellite_info", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__satellite_info__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__satellite_info", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SatelliteInfo), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__satellite_info", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/sensor_accel__type_support.h" #include "px4_msgs/msg/sensor_accel__struct.h" #include "px4_msgs/msg/sensor_accel__functions.h" static void * px4_msgs__msg__sensor_accel__create_ros_message(void) { return px4_msgs__msg__SensorAccel__create(); } static void px4_msgs__msg__sensor_accel__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__SensorAccel * ros_message = (px4_msgs__msg__SensorAccel *)raw_ros_message; px4_msgs__msg__SensorAccel__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__sensor_accel__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__sensor_accel__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SensorAccel); int8_t _register_msg_type__msg__sensor_accel(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__sensor_accel__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__sensor_accel", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__sensor_accel__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__sensor_accel", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__sensor_accel__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__sensor_accel", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__sensor_accel__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__sensor_accel", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SensorAccel), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__sensor_accel", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/sensor_accel_fifo__type_support.h" #include "px4_msgs/msg/sensor_accel_fifo__struct.h" #include "px4_msgs/msg/sensor_accel_fifo__functions.h" static void * px4_msgs__msg__sensor_accel_fifo__create_ros_message(void) { return px4_msgs__msg__SensorAccelFifo__create(); } static void px4_msgs__msg__sensor_accel_fifo__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__SensorAccelFifo * ros_message = (px4_msgs__msg__SensorAccelFifo *)raw_ros_message; px4_msgs__msg__SensorAccelFifo__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__sensor_accel_fifo__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__sensor_accel_fifo__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SensorAccelFifo); int8_t _register_msg_type__msg__sensor_accel_fifo(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__sensor_accel_fifo__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__sensor_accel_fifo", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__sensor_accel_fifo__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__sensor_accel_fifo", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__sensor_accel_fifo__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__sensor_accel_fifo", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__sensor_accel_fifo__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__sensor_accel_fifo", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SensorAccelFifo), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__sensor_accel_fifo", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/sensor_baro__type_support.h" #include "px4_msgs/msg/sensor_baro__struct.h" #include "px4_msgs/msg/sensor_baro__functions.h" static void * px4_msgs__msg__sensor_baro__create_ros_message(void) { return px4_msgs__msg__SensorBaro__create(); } static void px4_msgs__msg__sensor_baro__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__SensorBaro * ros_message = (px4_msgs__msg__SensorBaro *)raw_ros_message; px4_msgs__msg__SensorBaro__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__sensor_baro__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__sensor_baro__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SensorBaro); int8_t _register_msg_type__msg__sensor_baro(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__sensor_baro__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__sensor_baro", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__sensor_baro__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__sensor_baro", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__sensor_baro__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__sensor_baro", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__sensor_baro__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__sensor_baro", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SensorBaro), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__sensor_baro", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/sensor_combined__type_support.h" #include "px4_msgs/msg/sensor_combined__struct.h" #include "px4_msgs/msg/sensor_combined__functions.h" static void * px4_msgs__msg__sensor_combined__create_ros_message(void) { return px4_msgs__msg__SensorCombined__create(); } static void px4_msgs__msg__sensor_combined__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__SensorCombined * ros_message = (px4_msgs__msg__SensorCombined *)raw_ros_message; px4_msgs__msg__SensorCombined__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__sensor_combined__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__sensor_combined__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SensorCombined); int8_t _register_msg_type__msg__sensor_combined(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__sensor_combined__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__sensor_combined", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__sensor_combined__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__sensor_combined", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__sensor_combined__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__sensor_combined", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__sensor_combined__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__sensor_combined", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SensorCombined), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__sensor_combined", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/sensor_correction__type_support.h" #include "px4_msgs/msg/sensor_correction__struct.h" #include "px4_msgs/msg/sensor_correction__functions.h" static void * px4_msgs__msg__sensor_correction__create_ros_message(void) { return px4_msgs__msg__SensorCorrection__create(); } static void px4_msgs__msg__sensor_correction__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__SensorCorrection * ros_message = (px4_msgs__msg__SensorCorrection *)raw_ros_message; px4_msgs__msg__SensorCorrection__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__sensor_correction__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__sensor_correction__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SensorCorrection); int8_t _register_msg_type__msg__sensor_correction(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__sensor_correction__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__sensor_correction", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__sensor_correction__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__sensor_correction", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__sensor_correction__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__sensor_correction", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__sensor_correction__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__sensor_correction", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SensorCorrection), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__sensor_correction", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/sensor_gps__type_support.h" #include "px4_msgs/msg/sensor_gps__struct.h" #include "px4_msgs/msg/sensor_gps__functions.h" static void * px4_msgs__msg__sensor_gps__create_ros_message(void) { return px4_msgs__msg__SensorGps__create(); } static void px4_msgs__msg__sensor_gps__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__SensorGps * ros_message = (px4_msgs__msg__SensorGps *)raw_ros_message; px4_msgs__msg__SensorGps__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__sensor_gps__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__sensor_gps__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SensorGps); int8_t _register_msg_type__msg__sensor_gps(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__sensor_gps__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__sensor_gps", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__sensor_gps__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__sensor_gps", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__sensor_gps__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__sensor_gps", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__sensor_gps__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__sensor_gps", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SensorGps), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__sensor_gps", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/sensor_gyro__type_support.h" #include "px4_msgs/msg/sensor_gyro__struct.h" #include "px4_msgs/msg/sensor_gyro__functions.h" static void * px4_msgs__msg__sensor_gyro__create_ros_message(void) { return px4_msgs__msg__SensorGyro__create(); } static void px4_msgs__msg__sensor_gyro__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__SensorGyro * ros_message = (px4_msgs__msg__SensorGyro *)raw_ros_message; px4_msgs__msg__SensorGyro__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__sensor_gyro__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__sensor_gyro__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SensorGyro); int8_t _register_msg_type__msg__sensor_gyro(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__sensor_gyro__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__sensor_gyro", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__sensor_gyro__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__sensor_gyro", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__sensor_gyro__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__sensor_gyro", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__sensor_gyro__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__sensor_gyro", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SensorGyro), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__sensor_gyro", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/sensor_gyro_fft__type_support.h" #include "px4_msgs/msg/sensor_gyro_fft__struct.h" #include "px4_msgs/msg/sensor_gyro_fft__functions.h" static void * px4_msgs__msg__sensor_gyro_fft__create_ros_message(void) { return px4_msgs__msg__SensorGyroFft__create(); } static void px4_msgs__msg__sensor_gyro_fft__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__SensorGyroFft * ros_message = (px4_msgs__msg__SensorGyroFft *)raw_ros_message; px4_msgs__msg__SensorGyroFft__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__sensor_gyro_fft__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__sensor_gyro_fft__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SensorGyroFft); int8_t _register_msg_type__msg__sensor_gyro_fft(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__sensor_gyro_fft__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__sensor_gyro_fft", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__sensor_gyro_fft__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__sensor_gyro_fft", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__sensor_gyro_fft__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__sensor_gyro_fft", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__sensor_gyro_fft__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__sensor_gyro_fft", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SensorGyroFft), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__sensor_gyro_fft", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/sensor_gyro_fifo__type_support.h" #include "px4_msgs/msg/sensor_gyro_fifo__struct.h" #include "px4_msgs/msg/sensor_gyro_fifo__functions.h" static void * px4_msgs__msg__sensor_gyro_fifo__create_ros_message(void) { return px4_msgs__msg__SensorGyroFifo__create(); } static void px4_msgs__msg__sensor_gyro_fifo__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__SensorGyroFifo * ros_message = (px4_msgs__msg__SensorGyroFifo *)raw_ros_message; px4_msgs__msg__SensorGyroFifo__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__sensor_gyro_fifo__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__sensor_gyro_fifo__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SensorGyroFifo); int8_t _register_msg_type__msg__sensor_gyro_fifo(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__sensor_gyro_fifo__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__sensor_gyro_fifo", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__sensor_gyro_fifo__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__sensor_gyro_fifo", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__sensor_gyro_fifo__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__sensor_gyro_fifo", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__sensor_gyro_fifo__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__sensor_gyro_fifo", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SensorGyroFifo), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__sensor_gyro_fifo", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/sensor_mag__type_support.h" #include "px4_msgs/msg/sensor_mag__struct.h" #include "px4_msgs/msg/sensor_mag__functions.h" static void * px4_msgs__msg__sensor_mag__create_ros_message(void) { return px4_msgs__msg__SensorMag__create(); } static void px4_msgs__msg__sensor_mag__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__SensorMag * ros_message = (px4_msgs__msg__SensorMag *)raw_ros_message; px4_msgs__msg__SensorMag__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__sensor_mag__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__sensor_mag__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SensorMag); int8_t _register_msg_type__msg__sensor_mag(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__sensor_mag__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__sensor_mag", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__sensor_mag__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__sensor_mag", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__sensor_mag__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__sensor_mag", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__sensor_mag__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__sensor_mag", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SensorMag), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__sensor_mag", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/sensor_preflight_mag__type_support.h" #include "px4_msgs/msg/sensor_preflight_mag__struct.h" #include "px4_msgs/msg/sensor_preflight_mag__functions.h" static void * px4_msgs__msg__sensor_preflight_mag__create_ros_message(void) { return px4_msgs__msg__SensorPreflightMag__create(); } static void px4_msgs__msg__sensor_preflight_mag__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__SensorPreflightMag * ros_message = (px4_msgs__msg__SensorPreflightMag *)raw_ros_message; px4_msgs__msg__SensorPreflightMag__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__sensor_preflight_mag__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__sensor_preflight_mag__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SensorPreflightMag); int8_t _register_msg_type__msg__sensor_preflight_mag(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__sensor_preflight_mag__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__sensor_preflight_mag", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__sensor_preflight_mag__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__sensor_preflight_mag", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__sensor_preflight_mag__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__sensor_preflight_mag", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__sensor_preflight_mag__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__sensor_preflight_mag", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SensorPreflightMag), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__sensor_preflight_mag", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/sensor_selection__type_support.h" #include "px4_msgs/msg/sensor_selection__struct.h" #include "px4_msgs/msg/sensor_selection__functions.h" static void * px4_msgs__msg__sensor_selection__create_ros_message(void) { return px4_msgs__msg__SensorSelection__create(); } static void px4_msgs__msg__sensor_selection__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__SensorSelection * ros_message = (px4_msgs__msg__SensorSelection *)raw_ros_message; px4_msgs__msg__SensorSelection__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__sensor_selection__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__sensor_selection__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SensorSelection); int8_t _register_msg_type__msg__sensor_selection(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__sensor_selection__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__sensor_selection", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__sensor_selection__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__sensor_selection", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__sensor_selection__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__sensor_selection", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__sensor_selection__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__sensor_selection", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SensorSelection), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__sensor_selection", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/sensors_status_imu__type_support.h" #include "px4_msgs/msg/sensors_status_imu__struct.h" #include "px4_msgs/msg/sensors_status_imu__functions.h" static void * px4_msgs__msg__sensors_status_imu__create_ros_message(void) { return px4_msgs__msg__SensorsStatusImu__create(); } static void px4_msgs__msg__sensors_status_imu__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__SensorsStatusImu * ros_message = (px4_msgs__msg__SensorsStatusImu *)raw_ros_message; px4_msgs__msg__SensorsStatusImu__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__sensors_status_imu__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__sensors_status_imu__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SensorsStatusImu); int8_t _register_msg_type__msg__sensors_status_imu(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__sensors_status_imu__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__sensors_status_imu", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__sensors_status_imu__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__sensors_status_imu", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__sensors_status_imu__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__sensors_status_imu", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__sensors_status_imu__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__sensors_status_imu", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SensorsStatusImu), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__sensors_status_imu", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/system_power__type_support.h" #include "px4_msgs/msg/system_power__struct.h" #include "px4_msgs/msg/system_power__functions.h" static void * px4_msgs__msg__system_power__create_ros_message(void) { return px4_msgs__msg__SystemPower__create(); } static void px4_msgs__msg__system_power__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__SystemPower * ros_message = (px4_msgs__msg__SystemPower *)raw_ros_message; px4_msgs__msg__SystemPower__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__system_power__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__system_power__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SystemPower); int8_t _register_msg_type__msg__system_power(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__system_power__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__system_power", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__system_power__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__system_power", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__system_power__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__system_power", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__system_power__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__system_power", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, SystemPower), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__system_power", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/takeoff_status__type_support.h" #include "px4_msgs/msg/takeoff_status__struct.h" #include "px4_msgs/msg/takeoff_status__functions.h" static void * px4_msgs__msg__takeoff_status__create_ros_message(void) { return px4_msgs__msg__TakeoffStatus__create(); } static void px4_msgs__msg__takeoff_status__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__TakeoffStatus * ros_message = (px4_msgs__msg__TakeoffStatus *)raw_ros_message; px4_msgs__msg__TakeoffStatus__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__takeoff_status__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__takeoff_status__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, TakeoffStatus); int8_t _register_msg_type__msg__takeoff_status(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__takeoff_status__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__takeoff_status", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__takeoff_status__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__takeoff_status", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__takeoff_status__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__takeoff_status", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__takeoff_status__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__takeoff_status", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, TakeoffStatus), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__takeoff_status", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/task_stack_info__type_support.h" #include "px4_msgs/msg/task_stack_info__struct.h" #include "px4_msgs/msg/task_stack_info__functions.h" static void * px4_msgs__msg__task_stack_info__create_ros_message(void) { return px4_msgs__msg__TaskStackInfo__create(); } static void px4_msgs__msg__task_stack_info__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__TaskStackInfo * ros_message = (px4_msgs__msg__TaskStackInfo *)raw_ros_message; px4_msgs__msg__TaskStackInfo__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__task_stack_info__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__task_stack_info__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, TaskStackInfo); int8_t _register_msg_type__msg__task_stack_info(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__task_stack_info__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__task_stack_info", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__task_stack_info__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__task_stack_info", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__task_stack_info__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__task_stack_info", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__task_stack_info__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__task_stack_info", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, TaskStackInfo), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__task_stack_info", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/tecs_status__type_support.h" #include "px4_msgs/msg/tecs_status__struct.h" #include "px4_msgs/msg/tecs_status__functions.h" static void * px4_msgs__msg__tecs_status__create_ros_message(void) { return px4_msgs__msg__TecsStatus__create(); } static void px4_msgs__msg__tecs_status__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__TecsStatus * ros_message = (px4_msgs__msg__TecsStatus *)raw_ros_message; px4_msgs__msg__TecsStatus__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__tecs_status__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__tecs_status__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, TecsStatus); int8_t _register_msg_type__msg__tecs_status(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__tecs_status__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__tecs_status", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__tecs_status__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__tecs_status", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__tecs_status__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__tecs_status", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__tecs_status__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__tecs_status", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, TecsStatus), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__tecs_status", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/telemetry_status__type_support.h" #include "px4_msgs/msg/telemetry_status__struct.h" #include "px4_msgs/msg/telemetry_status__functions.h" static void * px4_msgs__msg__telemetry_status__create_ros_message(void) { return px4_msgs__msg__TelemetryStatus__create(); } static void px4_msgs__msg__telemetry_status__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__TelemetryStatus * ros_message = (px4_msgs__msg__TelemetryStatus *)raw_ros_message; px4_msgs__msg__TelemetryStatus__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__telemetry_status__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__telemetry_status__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, TelemetryStatus); int8_t _register_msg_type__msg__telemetry_status(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__telemetry_status__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__telemetry_status", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__telemetry_status__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__telemetry_status", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__telemetry_status__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__telemetry_status", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__telemetry_status__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__telemetry_status", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, TelemetryStatus), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__telemetry_status", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/test_motor__type_support.h" #include "px4_msgs/msg/test_motor__struct.h" #include "px4_msgs/msg/test_motor__functions.h" static void * px4_msgs__msg__test_motor__create_ros_message(void) { return px4_msgs__msg__TestMotor__create(); } static void px4_msgs__msg__test_motor__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__TestMotor * ros_message = (px4_msgs__msg__TestMotor *)raw_ros_message; px4_msgs__msg__TestMotor__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__test_motor__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__test_motor__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, TestMotor); int8_t _register_msg_type__msg__test_motor(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__test_motor__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__test_motor", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__test_motor__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__test_motor", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__test_motor__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__test_motor", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__test_motor__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__test_motor", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, TestMotor), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__test_motor", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/timesync__type_support.h" #include "px4_msgs/msg/timesync__struct.h" #include "px4_msgs/msg/timesync__functions.h" static void * px4_msgs__msg__timesync__create_ros_message(void) { return px4_msgs__msg__Timesync__create(); } static void px4_msgs__msg__timesync__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__Timesync * ros_message = (px4_msgs__msg__Timesync *)raw_ros_message; px4_msgs__msg__Timesync__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__timesync__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__timesync__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, Timesync); int8_t _register_msg_type__msg__timesync(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__timesync__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__timesync", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__timesync__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__timesync", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__timesync__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__timesync", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__timesync__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__timesync", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, Timesync), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__timesync", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/timesync_status__type_support.h" #include "px4_msgs/msg/timesync_status__struct.h" #include "px4_msgs/msg/timesync_status__functions.h" static void * px4_msgs__msg__timesync_status__create_ros_message(void) { return px4_msgs__msg__TimesyncStatus__create(); } static void px4_msgs__msg__timesync_status__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__TimesyncStatus * ros_message = (px4_msgs__msg__TimesyncStatus *)raw_ros_message; px4_msgs__msg__TimesyncStatus__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__timesync_status__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__timesync_status__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, TimesyncStatus); int8_t _register_msg_type__msg__timesync_status(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__timesync_status__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__timesync_status", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__timesync_status__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__timesync_status", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__timesync_status__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__timesync_status", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__timesync_status__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__timesync_status", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, TimesyncStatus), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__timesync_status", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/trajectory_bezier__type_support.h" #include "px4_msgs/msg/trajectory_bezier__struct.h" #include "px4_msgs/msg/trajectory_bezier__functions.h" static void * px4_msgs__msg__trajectory_bezier__create_ros_message(void) { return px4_msgs__msg__TrajectoryBezier__create(); } static void px4_msgs__msg__trajectory_bezier__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__TrajectoryBezier * ros_message = (px4_msgs__msg__TrajectoryBezier *)raw_ros_message; px4_msgs__msg__TrajectoryBezier__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__trajectory_bezier__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__trajectory_bezier__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, TrajectoryBezier); int8_t _register_msg_type__msg__trajectory_bezier(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__trajectory_bezier__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__trajectory_bezier", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__trajectory_bezier__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__trajectory_bezier", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__trajectory_bezier__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__trajectory_bezier", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__trajectory_bezier__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__trajectory_bezier", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, TrajectoryBezier), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__trajectory_bezier", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/trajectory_setpoint__type_support.h" #include "px4_msgs/msg/trajectory_setpoint__struct.h" #include "px4_msgs/msg/trajectory_setpoint__functions.h" static void * px4_msgs__msg__trajectory_setpoint__create_ros_message(void) { return px4_msgs__msg__TrajectorySetpoint__create(); } static void px4_msgs__msg__trajectory_setpoint__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__TrajectorySetpoint * ros_message = (px4_msgs__msg__TrajectorySetpoint *)raw_ros_message; px4_msgs__msg__TrajectorySetpoint__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__trajectory_setpoint__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__trajectory_setpoint__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, TrajectorySetpoint); int8_t _register_msg_type__msg__trajectory_setpoint(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__trajectory_setpoint__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__trajectory_setpoint", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__trajectory_setpoint__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__trajectory_setpoint", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__trajectory_setpoint__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__trajectory_setpoint", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__trajectory_setpoint__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__trajectory_setpoint", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, TrajectorySetpoint), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__trajectory_setpoint", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/trajectory_waypoint__type_support.h" #include "px4_msgs/msg/trajectory_waypoint__struct.h" #include "px4_msgs/msg/trajectory_waypoint__functions.h" static void * px4_msgs__msg__trajectory_waypoint__create_ros_message(void) { return px4_msgs__msg__TrajectoryWaypoint__create(); } static void px4_msgs__msg__trajectory_waypoint__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__TrajectoryWaypoint * ros_message = (px4_msgs__msg__TrajectoryWaypoint *)raw_ros_message; px4_msgs__msg__TrajectoryWaypoint__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__trajectory_waypoint__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__trajectory_waypoint__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, TrajectoryWaypoint); int8_t _register_msg_type__msg__trajectory_waypoint(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__trajectory_waypoint__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__trajectory_waypoint", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__trajectory_waypoint__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__trajectory_waypoint", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__trajectory_waypoint__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__trajectory_waypoint", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__trajectory_waypoint__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__trajectory_waypoint", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, TrajectoryWaypoint), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__trajectory_waypoint", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/transponder_report__type_support.h" #include "px4_msgs/msg/transponder_report__struct.h" #include "px4_msgs/msg/transponder_report__functions.h" static void * px4_msgs__msg__transponder_report__create_ros_message(void) { return px4_msgs__msg__TransponderReport__create(); } static void px4_msgs__msg__transponder_report__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__TransponderReport * ros_message = (px4_msgs__msg__TransponderReport *)raw_ros_message; px4_msgs__msg__TransponderReport__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__transponder_report__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__transponder_report__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, TransponderReport); int8_t _register_msg_type__msg__transponder_report(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__transponder_report__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__transponder_report", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__transponder_report__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__transponder_report", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__transponder_report__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__transponder_report", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__transponder_report__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__transponder_report", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, TransponderReport), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__transponder_report", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/tune_control__type_support.h" #include "px4_msgs/msg/tune_control__struct.h" #include "px4_msgs/msg/tune_control__functions.h" static void * px4_msgs__msg__tune_control__create_ros_message(void) { return px4_msgs__msg__TuneControl__create(); } static void px4_msgs__msg__tune_control__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__TuneControl * ros_message = (px4_msgs__msg__TuneControl *)raw_ros_message; px4_msgs__msg__TuneControl__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__tune_control__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__tune_control__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, TuneControl); int8_t _register_msg_type__msg__tune_control(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__tune_control__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__tune_control", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__tune_control__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__tune_control", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__tune_control__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__tune_control", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__tune_control__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__tune_control", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, TuneControl), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__tune_control", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/uavcan_parameter_request__type_support.h" #include "px4_msgs/msg/uavcan_parameter_request__struct.h" #include "px4_msgs/msg/uavcan_parameter_request__functions.h" static void * px4_msgs__msg__uavcan_parameter_request__create_ros_message(void) { return px4_msgs__msg__UavcanParameterRequest__create(); } static void px4_msgs__msg__uavcan_parameter_request__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__UavcanParameterRequest * ros_message = (px4_msgs__msg__UavcanParameterRequest *)raw_ros_message; px4_msgs__msg__UavcanParameterRequest__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__uavcan_parameter_request__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__uavcan_parameter_request__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, UavcanParameterRequest); int8_t _register_msg_type__msg__uavcan_parameter_request(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__uavcan_parameter_request__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__uavcan_parameter_request", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__uavcan_parameter_request__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__uavcan_parameter_request", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__uavcan_parameter_request__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__uavcan_parameter_request", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__uavcan_parameter_request__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__uavcan_parameter_request", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, UavcanParameterRequest), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__uavcan_parameter_request", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/uavcan_parameter_value__type_support.h" #include "px4_msgs/msg/uavcan_parameter_value__struct.h" #include "px4_msgs/msg/uavcan_parameter_value__functions.h" static void * px4_msgs__msg__uavcan_parameter_value__create_ros_message(void) { return px4_msgs__msg__UavcanParameterValue__create(); } static void px4_msgs__msg__uavcan_parameter_value__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__UavcanParameterValue * ros_message = (px4_msgs__msg__UavcanParameterValue *)raw_ros_message; px4_msgs__msg__UavcanParameterValue__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__uavcan_parameter_value__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__uavcan_parameter_value__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, UavcanParameterValue); int8_t _register_msg_type__msg__uavcan_parameter_value(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__uavcan_parameter_value__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__uavcan_parameter_value", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__uavcan_parameter_value__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__uavcan_parameter_value", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__uavcan_parameter_value__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__uavcan_parameter_value", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__uavcan_parameter_value__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__uavcan_parameter_value", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, UavcanParameterValue), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__uavcan_parameter_value", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/ulog_stream__type_support.h" #include "px4_msgs/msg/ulog_stream__struct.h" #include "px4_msgs/msg/ulog_stream__functions.h" static void * px4_msgs__msg__ulog_stream__create_ros_message(void) { return px4_msgs__msg__UlogStream__create(); } static void px4_msgs__msg__ulog_stream__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__UlogStream * ros_message = (px4_msgs__msg__UlogStream *)raw_ros_message; px4_msgs__msg__UlogStream__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__ulog_stream__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__ulog_stream__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, UlogStream); int8_t _register_msg_type__msg__ulog_stream(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__ulog_stream__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__ulog_stream", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__ulog_stream__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__ulog_stream", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__ulog_stream__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__ulog_stream", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__ulog_stream__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__ulog_stream", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, UlogStream), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__ulog_stream", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/ulog_stream_ack__type_support.h" #include "px4_msgs/msg/ulog_stream_ack__struct.h" #include "px4_msgs/msg/ulog_stream_ack__functions.h" static void * px4_msgs__msg__ulog_stream_ack__create_ros_message(void) { return px4_msgs__msg__UlogStreamAck__create(); } static void px4_msgs__msg__ulog_stream_ack__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__UlogStreamAck * ros_message = (px4_msgs__msg__UlogStreamAck *)raw_ros_message; px4_msgs__msg__UlogStreamAck__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__ulog_stream_ack__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__ulog_stream_ack__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, UlogStreamAck); int8_t _register_msg_type__msg__ulog_stream_ack(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__ulog_stream_ack__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__ulog_stream_ack", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__ulog_stream_ack__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__ulog_stream_ack", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__ulog_stream_ack__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__ulog_stream_ack", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__ulog_stream_ack__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__ulog_stream_ack", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, UlogStreamAck), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__ulog_stream_ack", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_acceleration__type_support.h" #include "px4_msgs/msg/vehicle_acceleration__struct.h" #include "px4_msgs/msg/vehicle_acceleration__functions.h" static void * px4_msgs__msg__vehicle_acceleration__create_ros_message(void) { return px4_msgs__msg__VehicleAcceleration__create(); } static void px4_msgs__msg__vehicle_acceleration__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleAcceleration * ros_message = (px4_msgs__msg__VehicleAcceleration *)raw_ros_message; px4_msgs__msg__VehicleAcceleration__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_acceleration__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_acceleration__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleAcceleration); int8_t _register_msg_type__msg__vehicle_acceleration(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_acceleration__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_acceleration", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_acceleration__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_acceleration", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_acceleration__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_acceleration", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_acceleration__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_acceleration", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleAcceleration), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_acceleration", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_actuator_setpoint__type_support.h" #include "px4_msgs/msg/vehicle_actuator_setpoint__struct.h" #include "px4_msgs/msg/vehicle_actuator_setpoint__functions.h" static void * px4_msgs__msg__vehicle_actuator_setpoint__create_ros_message(void) { return px4_msgs__msg__VehicleActuatorSetpoint__create(); } static void px4_msgs__msg__vehicle_actuator_setpoint__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleActuatorSetpoint * ros_message = (px4_msgs__msg__VehicleActuatorSetpoint *)raw_ros_message; px4_msgs__msg__VehicleActuatorSetpoint__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_actuator_setpoint__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_actuator_setpoint__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleActuatorSetpoint); int8_t _register_msg_type__msg__vehicle_actuator_setpoint(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_actuator_setpoint__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_actuator_setpoint", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_actuator_setpoint__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_actuator_setpoint", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_actuator_setpoint__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_actuator_setpoint", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_actuator_setpoint__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_actuator_setpoint", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleActuatorSetpoint), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_actuator_setpoint", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_air_data__type_support.h" #include "px4_msgs/msg/vehicle_air_data__struct.h" #include "px4_msgs/msg/vehicle_air_data__functions.h" static void * px4_msgs__msg__vehicle_air_data__create_ros_message(void) { return px4_msgs__msg__VehicleAirData__create(); } static void px4_msgs__msg__vehicle_air_data__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleAirData * ros_message = (px4_msgs__msg__VehicleAirData *)raw_ros_message; px4_msgs__msg__VehicleAirData__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_air_data__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_air_data__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleAirData); int8_t _register_msg_type__msg__vehicle_air_data(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_air_data__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_air_data", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_air_data__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_air_data", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_air_data__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_air_data", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_air_data__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_air_data", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleAirData), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_air_data", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_angular_acceleration__type_support.h" #include "px4_msgs/msg/vehicle_angular_acceleration__struct.h" #include "px4_msgs/msg/vehicle_angular_acceleration__functions.h" static void * px4_msgs__msg__vehicle_angular_acceleration__create_ros_message(void) { return px4_msgs__msg__VehicleAngularAcceleration__create(); } static void px4_msgs__msg__vehicle_angular_acceleration__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleAngularAcceleration * ros_message = (px4_msgs__msg__VehicleAngularAcceleration *)raw_ros_message; px4_msgs__msg__VehicleAngularAcceleration__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_angular_acceleration__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_angular_acceleration__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleAngularAcceleration); int8_t _register_msg_type__msg__vehicle_angular_acceleration(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_angular_acceleration__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_angular_acceleration", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_angular_acceleration__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_angular_acceleration", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_angular_acceleration__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_angular_acceleration", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_angular_acceleration__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_angular_acceleration", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleAngularAcceleration), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_angular_acceleration", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.h" #include "px4_msgs/msg/vehicle_angular_acceleration_setpoint__struct.h" #include "px4_msgs/msg/vehicle_angular_acceleration_setpoint__functions.h" static void * px4_msgs__msg__vehicle_angular_acceleration_setpoint__create_ros_message(void) { return px4_msgs__msg__VehicleAngularAccelerationSetpoint__create(); } static void px4_msgs__msg__vehicle_angular_acceleration_setpoint__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleAngularAccelerationSetpoint * ros_message = (px4_msgs__msg__VehicleAngularAccelerationSetpoint *)raw_ros_message; px4_msgs__msg__VehicleAngularAccelerationSetpoint__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_angular_acceleration_setpoint__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_angular_acceleration_setpoint__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleAngularAccelerationSetpoint); int8_t _register_msg_type__msg__vehicle_angular_acceleration_setpoint(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_angular_acceleration_setpoint__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_angular_acceleration_setpoint", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_angular_acceleration_setpoint__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_angular_acceleration_setpoint", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_angular_acceleration_setpoint__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_angular_acceleration_setpoint", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_angular_acceleration_setpoint__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_angular_acceleration_setpoint", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleAngularAccelerationSetpoint), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_angular_acceleration_setpoint", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_angular_velocity__type_support.h" #include "px4_msgs/msg/vehicle_angular_velocity__struct.h" #include "px4_msgs/msg/vehicle_angular_velocity__functions.h" static void * px4_msgs__msg__vehicle_angular_velocity__create_ros_message(void) { return px4_msgs__msg__VehicleAngularVelocity__create(); } static void px4_msgs__msg__vehicle_angular_velocity__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleAngularVelocity * ros_message = (px4_msgs__msg__VehicleAngularVelocity *)raw_ros_message; px4_msgs__msg__VehicleAngularVelocity__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_angular_velocity__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_angular_velocity__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleAngularVelocity); int8_t _register_msg_type__msg__vehicle_angular_velocity(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_angular_velocity__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_angular_velocity", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_angular_velocity__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_angular_velocity", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_angular_velocity__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_angular_velocity", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_angular_velocity__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_angular_velocity", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleAngularVelocity), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_angular_velocity", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.h" #include "px4_msgs/msg/vehicle_angular_velocity_groundtruth__struct.h" #include "px4_msgs/msg/vehicle_angular_velocity_groundtruth__functions.h" static void * px4_msgs__msg__vehicle_angular_velocity_groundtruth__create_ros_message(void) { return px4_msgs__msg__VehicleAngularVelocityGroundtruth__create(); } static void px4_msgs__msg__vehicle_angular_velocity_groundtruth__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleAngularVelocityGroundtruth * ros_message = (px4_msgs__msg__VehicleAngularVelocityGroundtruth *)raw_ros_message; px4_msgs__msg__VehicleAngularVelocityGroundtruth__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_angular_velocity_groundtruth__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_angular_velocity_groundtruth__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleAngularVelocityGroundtruth); int8_t _register_msg_type__msg__vehicle_angular_velocity_groundtruth(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_angular_velocity_groundtruth__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_angular_velocity_groundtruth", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_angular_velocity_groundtruth__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_angular_velocity_groundtruth", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_angular_velocity_groundtruth__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_angular_velocity_groundtruth", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_angular_velocity_groundtruth__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_angular_velocity_groundtruth", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleAngularVelocityGroundtruth), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_angular_velocity_groundtruth", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_attitude__type_support.h" #include "px4_msgs/msg/vehicle_attitude__struct.h" #include "px4_msgs/msg/vehicle_attitude__functions.h" static void * px4_msgs__msg__vehicle_attitude__create_ros_message(void) { return px4_msgs__msg__VehicleAttitude__create(); } static void px4_msgs__msg__vehicle_attitude__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleAttitude * ros_message = (px4_msgs__msg__VehicleAttitude *)raw_ros_message; px4_msgs__msg__VehicleAttitude__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_attitude__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_attitude__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleAttitude); int8_t _register_msg_type__msg__vehicle_attitude(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_attitude__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_attitude", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_attitude__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_attitude", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_attitude__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_attitude", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_attitude__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_attitude", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleAttitude), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_attitude", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_attitude_groundtruth__type_support.h" #include "px4_msgs/msg/vehicle_attitude_groundtruth__struct.h" #include "px4_msgs/msg/vehicle_attitude_groundtruth__functions.h" static void * px4_msgs__msg__vehicle_attitude_groundtruth__create_ros_message(void) { return px4_msgs__msg__VehicleAttitudeGroundtruth__create(); } static void px4_msgs__msg__vehicle_attitude_groundtruth__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleAttitudeGroundtruth * ros_message = (px4_msgs__msg__VehicleAttitudeGroundtruth *)raw_ros_message; px4_msgs__msg__VehicleAttitudeGroundtruth__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_attitude_groundtruth__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_attitude_groundtruth__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleAttitudeGroundtruth); int8_t _register_msg_type__msg__vehicle_attitude_groundtruth(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_attitude_groundtruth__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_attitude_groundtruth", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_attitude_groundtruth__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_attitude_groundtruth", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_attitude_groundtruth__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_attitude_groundtruth", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_attitude_groundtruth__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_attitude_groundtruth", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleAttitudeGroundtruth), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_attitude_groundtruth", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_attitude_setpoint__type_support.h" #include "px4_msgs/msg/vehicle_attitude_setpoint__struct.h" #include "px4_msgs/msg/vehicle_attitude_setpoint__functions.h" static void * px4_msgs__msg__vehicle_attitude_setpoint__create_ros_message(void) { return px4_msgs__msg__VehicleAttitudeSetpoint__create(); } static void px4_msgs__msg__vehicle_attitude_setpoint__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleAttitudeSetpoint * ros_message = (px4_msgs__msg__VehicleAttitudeSetpoint *)raw_ros_message; px4_msgs__msg__VehicleAttitudeSetpoint__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_attitude_setpoint__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_attitude_setpoint__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleAttitudeSetpoint); int8_t _register_msg_type__msg__vehicle_attitude_setpoint(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_attitude_setpoint__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_attitude_setpoint", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_attitude_setpoint__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_attitude_setpoint", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_attitude_setpoint__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_attitude_setpoint", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_attitude_setpoint__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_attitude_setpoint", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleAttitudeSetpoint), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_attitude_setpoint", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_command__type_support.h" #include "px4_msgs/msg/vehicle_command__struct.h" #include "px4_msgs/msg/vehicle_command__functions.h" static void * px4_msgs__msg__vehicle_command__create_ros_message(void) { return px4_msgs__msg__VehicleCommand__create(); } static void px4_msgs__msg__vehicle_command__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleCommand * ros_message = (px4_msgs__msg__VehicleCommand *)raw_ros_message; px4_msgs__msg__VehicleCommand__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_command__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_command__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleCommand); int8_t _register_msg_type__msg__vehicle_command(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_command__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_command", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_command__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_command", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_command__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_command", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_command__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_command", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleCommand), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_command", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_command_ack__type_support.h" #include "px4_msgs/msg/vehicle_command_ack__struct.h" #include "px4_msgs/msg/vehicle_command_ack__functions.h" static void * px4_msgs__msg__vehicle_command_ack__create_ros_message(void) { return px4_msgs__msg__VehicleCommandAck__create(); } static void px4_msgs__msg__vehicle_command_ack__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleCommandAck * ros_message = (px4_msgs__msg__VehicleCommandAck *)raw_ros_message; px4_msgs__msg__VehicleCommandAck__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_command_ack__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_command_ack__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleCommandAck); int8_t _register_msg_type__msg__vehicle_command_ack(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_command_ack__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_command_ack", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_command_ack__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_command_ack", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_command_ack__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_command_ack", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_command_ack__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_command_ack", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleCommandAck), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_command_ack", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_constraints__type_support.h" #include "px4_msgs/msg/vehicle_constraints__struct.h" #include "px4_msgs/msg/vehicle_constraints__functions.h" static void * px4_msgs__msg__vehicle_constraints__create_ros_message(void) { return px4_msgs__msg__VehicleConstraints__create(); } static void px4_msgs__msg__vehicle_constraints__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleConstraints * ros_message = (px4_msgs__msg__VehicleConstraints *)raw_ros_message; px4_msgs__msg__VehicleConstraints__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_constraints__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_constraints__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleConstraints); int8_t _register_msg_type__msg__vehicle_constraints(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_constraints__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_constraints", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_constraints__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_constraints", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_constraints__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_constraints", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_constraints__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_constraints", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleConstraints), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_constraints", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_control_mode__type_support.h" #include "px4_msgs/msg/vehicle_control_mode__struct.h" #include "px4_msgs/msg/vehicle_control_mode__functions.h" static void * px4_msgs__msg__vehicle_control_mode__create_ros_message(void) { return px4_msgs__msg__VehicleControlMode__create(); } static void px4_msgs__msg__vehicle_control_mode__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleControlMode * ros_message = (px4_msgs__msg__VehicleControlMode *)raw_ros_message; px4_msgs__msg__VehicleControlMode__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_control_mode__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_control_mode__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleControlMode); int8_t _register_msg_type__msg__vehicle_control_mode(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_control_mode__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_control_mode", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_control_mode__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_control_mode", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_control_mode__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_control_mode", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_control_mode__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_control_mode", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleControlMode), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_control_mode", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_global_position__type_support.h" #include "px4_msgs/msg/vehicle_global_position__struct.h" #include "px4_msgs/msg/vehicle_global_position__functions.h" static void * px4_msgs__msg__vehicle_global_position__create_ros_message(void) { return px4_msgs__msg__VehicleGlobalPosition__create(); } static void px4_msgs__msg__vehicle_global_position__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleGlobalPosition * ros_message = (px4_msgs__msg__VehicleGlobalPosition *)raw_ros_message; px4_msgs__msg__VehicleGlobalPosition__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_global_position__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_global_position__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleGlobalPosition); int8_t _register_msg_type__msg__vehicle_global_position(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_global_position__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_global_position", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_global_position__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_global_position", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_global_position__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_global_position", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_global_position__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_global_position", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleGlobalPosition), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_global_position", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_global_position_groundtruth__type_support.h" #include "px4_msgs/msg/vehicle_global_position_groundtruth__struct.h" #include "px4_msgs/msg/vehicle_global_position_groundtruth__functions.h" static void * px4_msgs__msg__vehicle_global_position_groundtruth__create_ros_message(void) { return px4_msgs__msg__VehicleGlobalPositionGroundtruth__create(); } static void px4_msgs__msg__vehicle_global_position_groundtruth__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleGlobalPositionGroundtruth * ros_message = (px4_msgs__msg__VehicleGlobalPositionGroundtruth *)raw_ros_message; px4_msgs__msg__VehicleGlobalPositionGroundtruth__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_global_position_groundtruth__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_global_position_groundtruth__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleGlobalPositionGroundtruth); int8_t _register_msg_type__msg__vehicle_global_position_groundtruth(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_global_position_groundtruth__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_global_position_groundtruth", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_global_position_groundtruth__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_global_position_groundtruth", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_global_position_groundtruth__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_global_position_groundtruth", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_global_position_groundtruth__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_global_position_groundtruth", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleGlobalPositionGroundtruth), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_global_position_groundtruth", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_gps_position__type_support.h" #include "px4_msgs/msg/vehicle_gps_position__struct.h" #include "px4_msgs/msg/vehicle_gps_position__functions.h" static void * px4_msgs__msg__vehicle_gps_position__create_ros_message(void) { return px4_msgs__msg__VehicleGpsPosition__create(); } static void px4_msgs__msg__vehicle_gps_position__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleGpsPosition * ros_message = (px4_msgs__msg__VehicleGpsPosition *)raw_ros_message; px4_msgs__msg__VehicleGpsPosition__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_gps_position__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_gps_position__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleGpsPosition); int8_t _register_msg_type__msg__vehicle_gps_position(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_gps_position__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_gps_position", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_gps_position__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_gps_position", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_gps_position__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_gps_position", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_gps_position__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_gps_position", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleGpsPosition), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_gps_position", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_imu__type_support.h" #include "px4_msgs/msg/vehicle_imu__struct.h" #include "px4_msgs/msg/vehicle_imu__functions.h" static void * px4_msgs__msg__vehicle_imu__create_ros_message(void) { return px4_msgs__msg__VehicleImu__create(); } static void px4_msgs__msg__vehicle_imu__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleImu * ros_message = (px4_msgs__msg__VehicleImu *)raw_ros_message; px4_msgs__msg__VehicleImu__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_imu__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_imu__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleImu); int8_t _register_msg_type__msg__vehicle_imu(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_imu__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_imu", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_imu__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_imu", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_imu__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_imu", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_imu__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_imu", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleImu), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_imu", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_imu_status__type_support.h" #include "px4_msgs/msg/vehicle_imu_status__struct.h" #include "px4_msgs/msg/vehicle_imu_status__functions.h" static void * px4_msgs__msg__vehicle_imu_status__create_ros_message(void) { return px4_msgs__msg__VehicleImuStatus__create(); } static void px4_msgs__msg__vehicle_imu_status__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleImuStatus * ros_message = (px4_msgs__msg__VehicleImuStatus *)raw_ros_message; px4_msgs__msg__VehicleImuStatus__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_imu_status__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_imu_status__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleImuStatus); int8_t _register_msg_type__msg__vehicle_imu_status(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_imu_status__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_imu_status", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_imu_status__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_imu_status", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_imu_status__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_imu_status", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_imu_status__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_imu_status", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleImuStatus), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_imu_status", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_land_detected__type_support.h" #include "px4_msgs/msg/vehicle_land_detected__struct.h" #include "px4_msgs/msg/vehicle_land_detected__functions.h" static void * px4_msgs__msg__vehicle_land_detected__create_ros_message(void) { return px4_msgs__msg__VehicleLandDetected__create(); } static void px4_msgs__msg__vehicle_land_detected__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleLandDetected * ros_message = (px4_msgs__msg__VehicleLandDetected *)raw_ros_message; px4_msgs__msg__VehicleLandDetected__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_land_detected__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_land_detected__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleLandDetected); int8_t _register_msg_type__msg__vehicle_land_detected(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_land_detected__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_land_detected", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_land_detected__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_land_detected", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_land_detected__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_land_detected", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_land_detected__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_land_detected", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleLandDetected), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_land_detected", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_local_position__type_support.h" #include "px4_msgs/msg/vehicle_local_position__struct.h" #include "px4_msgs/msg/vehicle_local_position__functions.h" static void * px4_msgs__msg__vehicle_local_position__create_ros_message(void) { return px4_msgs__msg__VehicleLocalPosition__create(); } static void px4_msgs__msg__vehicle_local_position__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleLocalPosition * ros_message = (px4_msgs__msg__VehicleLocalPosition *)raw_ros_message; px4_msgs__msg__VehicleLocalPosition__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_local_position__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_local_position__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleLocalPosition); int8_t _register_msg_type__msg__vehicle_local_position(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_local_position__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_local_position", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_local_position__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_local_position", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_local_position__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_local_position", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_local_position__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_local_position", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleLocalPosition), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_local_position", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_local_position_groundtruth__type_support.h" #include "px4_msgs/msg/vehicle_local_position_groundtruth__struct.h" #include "px4_msgs/msg/vehicle_local_position_groundtruth__functions.h" static void * px4_msgs__msg__vehicle_local_position_groundtruth__create_ros_message(void) { return px4_msgs__msg__VehicleLocalPositionGroundtruth__create(); } static void px4_msgs__msg__vehicle_local_position_groundtruth__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleLocalPositionGroundtruth * ros_message = (px4_msgs__msg__VehicleLocalPositionGroundtruth *)raw_ros_message; px4_msgs__msg__VehicleLocalPositionGroundtruth__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_local_position_groundtruth__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_local_position_groundtruth__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleLocalPositionGroundtruth); int8_t _register_msg_type__msg__vehicle_local_position_groundtruth(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_local_position_groundtruth__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_local_position_groundtruth", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_local_position_groundtruth__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_local_position_groundtruth", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_local_position_groundtruth__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_local_position_groundtruth", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_local_position_groundtruth__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_local_position_groundtruth", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleLocalPositionGroundtruth), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_local_position_groundtruth", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_local_position_setpoint__type_support.h" #include "px4_msgs/msg/vehicle_local_position_setpoint__struct.h" #include "px4_msgs/msg/vehicle_local_position_setpoint__functions.h" static void * px4_msgs__msg__vehicle_local_position_setpoint__create_ros_message(void) { return px4_msgs__msg__VehicleLocalPositionSetpoint__create(); } static void px4_msgs__msg__vehicle_local_position_setpoint__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleLocalPositionSetpoint * ros_message = (px4_msgs__msg__VehicleLocalPositionSetpoint *)raw_ros_message; px4_msgs__msg__VehicleLocalPositionSetpoint__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_local_position_setpoint__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_local_position_setpoint__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleLocalPositionSetpoint); int8_t _register_msg_type__msg__vehicle_local_position_setpoint(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_local_position_setpoint__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_local_position_setpoint", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_local_position_setpoint__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_local_position_setpoint", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_local_position_setpoint__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_local_position_setpoint", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_local_position_setpoint__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_local_position_setpoint", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleLocalPositionSetpoint), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_local_position_setpoint", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_magnetometer__type_support.h" #include "px4_msgs/msg/vehicle_magnetometer__struct.h" #include "px4_msgs/msg/vehicle_magnetometer__functions.h" static void * px4_msgs__msg__vehicle_magnetometer__create_ros_message(void) { return px4_msgs__msg__VehicleMagnetometer__create(); } static void px4_msgs__msg__vehicle_magnetometer__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleMagnetometer * ros_message = (px4_msgs__msg__VehicleMagnetometer *)raw_ros_message; px4_msgs__msg__VehicleMagnetometer__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_magnetometer__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_magnetometer__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleMagnetometer); int8_t _register_msg_type__msg__vehicle_magnetometer(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_magnetometer__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_magnetometer", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_magnetometer__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_magnetometer", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_magnetometer__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_magnetometer", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_magnetometer__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_magnetometer", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleMagnetometer), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_magnetometer", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_mocap_odometry__type_support.h" #include "px4_msgs/msg/vehicle_mocap_odometry__struct.h" #include "px4_msgs/msg/vehicle_mocap_odometry__functions.h" static void * px4_msgs__msg__vehicle_mocap_odometry__create_ros_message(void) { return px4_msgs__msg__VehicleMocapOdometry__create(); } static void px4_msgs__msg__vehicle_mocap_odometry__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleMocapOdometry * ros_message = (px4_msgs__msg__VehicleMocapOdometry *)raw_ros_message; px4_msgs__msg__VehicleMocapOdometry__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_mocap_odometry__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_mocap_odometry__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleMocapOdometry); int8_t _register_msg_type__msg__vehicle_mocap_odometry(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_mocap_odometry__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_mocap_odometry", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_mocap_odometry__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_mocap_odometry", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_mocap_odometry__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_mocap_odometry", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_mocap_odometry__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_mocap_odometry", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleMocapOdometry), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_mocap_odometry", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_odometry__type_support.h" #include "px4_msgs/msg/vehicle_odometry__struct.h" #include "px4_msgs/msg/vehicle_odometry__functions.h" static void * px4_msgs__msg__vehicle_odometry__create_ros_message(void) { return px4_msgs__msg__VehicleOdometry__create(); } static void px4_msgs__msg__vehicle_odometry__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleOdometry * ros_message = (px4_msgs__msg__VehicleOdometry *)raw_ros_message; px4_msgs__msg__VehicleOdometry__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_odometry__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_odometry__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleOdometry); int8_t _register_msg_type__msg__vehicle_odometry(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_odometry__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_odometry", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_odometry__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_odometry", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_odometry__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_odometry", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_odometry__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_odometry", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleOdometry), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_odometry", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_rates_setpoint__type_support.h" #include "px4_msgs/msg/vehicle_rates_setpoint__struct.h" #include "px4_msgs/msg/vehicle_rates_setpoint__functions.h" static void * px4_msgs__msg__vehicle_rates_setpoint__create_ros_message(void) { return px4_msgs__msg__VehicleRatesSetpoint__create(); } static void px4_msgs__msg__vehicle_rates_setpoint__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleRatesSetpoint * ros_message = (px4_msgs__msg__VehicleRatesSetpoint *)raw_ros_message; px4_msgs__msg__VehicleRatesSetpoint__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_rates_setpoint__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_rates_setpoint__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleRatesSetpoint); int8_t _register_msg_type__msg__vehicle_rates_setpoint(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_rates_setpoint__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_rates_setpoint", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_rates_setpoint__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_rates_setpoint", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_rates_setpoint__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_rates_setpoint", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_rates_setpoint__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_rates_setpoint", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleRatesSetpoint), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_rates_setpoint", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_roi__type_support.h" #include "px4_msgs/msg/vehicle_roi__struct.h" #include "px4_msgs/msg/vehicle_roi__functions.h" static void * px4_msgs__msg__vehicle_roi__create_ros_message(void) { return px4_msgs__msg__VehicleRoi__create(); } static void px4_msgs__msg__vehicle_roi__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleRoi * ros_message = (px4_msgs__msg__VehicleRoi *)raw_ros_message; px4_msgs__msg__VehicleRoi__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_roi__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_roi__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleRoi); int8_t _register_msg_type__msg__vehicle_roi(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_roi__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_roi", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_roi__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_roi", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_roi__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_roi", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_roi__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_roi", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleRoi), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_roi", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_status__type_support.h" #include "px4_msgs/msg/vehicle_status__struct.h" #include "px4_msgs/msg/vehicle_status__functions.h" static void * px4_msgs__msg__vehicle_status__create_ros_message(void) { return px4_msgs__msg__VehicleStatus__create(); } static void px4_msgs__msg__vehicle_status__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleStatus * ros_message = (px4_msgs__msg__VehicleStatus *)raw_ros_message; px4_msgs__msg__VehicleStatus__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_status__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_status__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleStatus); int8_t _register_msg_type__msg__vehicle_status(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_status__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_status", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_status__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_status", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_status__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_status", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_status__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_status", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleStatus), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_status", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_status_flags__type_support.h" #include "px4_msgs/msg/vehicle_status_flags__struct.h" #include "px4_msgs/msg/vehicle_status_flags__functions.h" static void * px4_msgs__msg__vehicle_status_flags__create_ros_message(void) { return px4_msgs__msg__VehicleStatusFlags__create(); } static void px4_msgs__msg__vehicle_status_flags__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleStatusFlags * ros_message = (px4_msgs__msg__VehicleStatusFlags *)raw_ros_message; px4_msgs__msg__VehicleStatusFlags__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_status_flags__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_status_flags__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleStatusFlags); int8_t _register_msg_type__msg__vehicle_status_flags(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_status_flags__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_status_flags", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_status_flags__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_status_flags", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_status_flags__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_status_flags", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_status_flags__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_status_flags", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleStatusFlags), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_status_flags", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_thrust_setpoint__type_support.h" #include "px4_msgs/msg/vehicle_thrust_setpoint__struct.h" #include "px4_msgs/msg/vehicle_thrust_setpoint__functions.h" static void * px4_msgs__msg__vehicle_thrust_setpoint__create_ros_message(void) { return px4_msgs__msg__VehicleThrustSetpoint__create(); } static void px4_msgs__msg__vehicle_thrust_setpoint__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleThrustSetpoint * ros_message = (px4_msgs__msg__VehicleThrustSetpoint *)raw_ros_message; px4_msgs__msg__VehicleThrustSetpoint__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_thrust_setpoint__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_thrust_setpoint__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleThrustSetpoint); int8_t _register_msg_type__msg__vehicle_thrust_setpoint(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_thrust_setpoint__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_thrust_setpoint", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_thrust_setpoint__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_thrust_setpoint", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_thrust_setpoint__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_thrust_setpoint", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_thrust_setpoint__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_thrust_setpoint", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleThrustSetpoint), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_thrust_setpoint", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_torque_setpoint__type_support.h" #include "px4_msgs/msg/vehicle_torque_setpoint__struct.h" #include "px4_msgs/msg/vehicle_torque_setpoint__functions.h" static void * px4_msgs__msg__vehicle_torque_setpoint__create_ros_message(void) { return px4_msgs__msg__VehicleTorqueSetpoint__create(); } static void px4_msgs__msg__vehicle_torque_setpoint__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleTorqueSetpoint * ros_message = (px4_msgs__msg__VehicleTorqueSetpoint *)raw_ros_message; px4_msgs__msg__VehicleTorqueSetpoint__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_torque_setpoint__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_torque_setpoint__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleTorqueSetpoint); int8_t _register_msg_type__msg__vehicle_torque_setpoint(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_torque_setpoint__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_torque_setpoint", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_torque_setpoint__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_torque_setpoint", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_torque_setpoint__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_torque_setpoint", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_torque_setpoint__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_torque_setpoint", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleTorqueSetpoint), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_torque_setpoint", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_trajectory_bezier__type_support.h" #include "px4_msgs/msg/vehicle_trajectory_bezier__struct.h" #include "px4_msgs/msg/vehicle_trajectory_bezier__functions.h" static void * px4_msgs__msg__vehicle_trajectory_bezier__create_ros_message(void) { return px4_msgs__msg__VehicleTrajectoryBezier__create(); } static void px4_msgs__msg__vehicle_trajectory_bezier__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleTrajectoryBezier * ros_message = (px4_msgs__msg__VehicleTrajectoryBezier *)raw_ros_message; px4_msgs__msg__VehicleTrajectoryBezier__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_trajectory_bezier__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_trajectory_bezier__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleTrajectoryBezier); int8_t _register_msg_type__msg__vehicle_trajectory_bezier(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_trajectory_bezier__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_trajectory_bezier", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_trajectory_bezier__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_trajectory_bezier", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_trajectory_bezier__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_trajectory_bezier", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_trajectory_bezier__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_trajectory_bezier", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleTrajectoryBezier), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_trajectory_bezier", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_trajectory_waypoint__type_support.h" #include "px4_msgs/msg/vehicle_trajectory_waypoint__struct.h" #include "px4_msgs/msg/vehicle_trajectory_waypoint__functions.h" static void * px4_msgs__msg__vehicle_trajectory_waypoint__create_ros_message(void) { return px4_msgs__msg__VehicleTrajectoryWaypoint__create(); } static void px4_msgs__msg__vehicle_trajectory_waypoint__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleTrajectoryWaypoint * ros_message = (px4_msgs__msg__VehicleTrajectoryWaypoint *)raw_ros_message; px4_msgs__msg__VehicleTrajectoryWaypoint__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_trajectory_waypoint__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_trajectory_waypoint__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleTrajectoryWaypoint); int8_t _register_msg_type__msg__vehicle_trajectory_waypoint(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_trajectory_waypoint__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_trajectory_waypoint", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_trajectory_waypoint__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_trajectory_waypoint", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_trajectory_waypoint__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_trajectory_waypoint", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_trajectory_waypoint__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_trajectory_waypoint", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleTrajectoryWaypoint), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_trajectory_waypoint", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.h" #include "px4_msgs/msg/vehicle_trajectory_waypoint_desired__struct.h" #include "px4_msgs/msg/vehicle_trajectory_waypoint_desired__functions.h" static void * px4_msgs__msg__vehicle_trajectory_waypoint_desired__create_ros_message(void) { return px4_msgs__msg__VehicleTrajectoryWaypointDesired__create(); } static void px4_msgs__msg__vehicle_trajectory_waypoint_desired__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleTrajectoryWaypointDesired * ros_message = (px4_msgs__msg__VehicleTrajectoryWaypointDesired *)raw_ros_message; px4_msgs__msg__VehicleTrajectoryWaypointDesired__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_trajectory_waypoint_desired__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_trajectory_waypoint_desired__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleTrajectoryWaypointDesired); int8_t _register_msg_type__msg__vehicle_trajectory_waypoint_desired(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_trajectory_waypoint_desired__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_trajectory_waypoint_desired", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_trajectory_waypoint_desired__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_trajectory_waypoint_desired", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_trajectory_waypoint_desired__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_trajectory_waypoint_desired", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_trajectory_waypoint_desired__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_trajectory_waypoint_desired", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleTrajectoryWaypointDesired), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_trajectory_waypoint_desired", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_vision_attitude__type_support.h" #include "px4_msgs/msg/vehicle_vision_attitude__struct.h" #include "px4_msgs/msg/vehicle_vision_attitude__functions.h" static void * px4_msgs__msg__vehicle_vision_attitude__create_ros_message(void) { return px4_msgs__msg__VehicleVisionAttitude__create(); } static void px4_msgs__msg__vehicle_vision_attitude__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleVisionAttitude * ros_message = (px4_msgs__msg__VehicleVisionAttitude *)raw_ros_message; px4_msgs__msg__VehicleVisionAttitude__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_vision_attitude__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_vision_attitude__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleVisionAttitude); int8_t _register_msg_type__msg__vehicle_vision_attitude(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_vision_attitude__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_vision_attitude", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_vision_attitude__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_vision_attitude", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_vision_attitude__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_vision_attitude", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_vision_attitude__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_vision_attitude", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleVisionAttitude), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_vision_attitude", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vehicle_visual_odometry__type_support.h" #include "px4_msgs/msg/vehicle_visual_odometry__struct.h" #include "px4_msgs/msg/vehicle_visual_odometry__functions.h" static void * px4_msgs__msg__vehicle_visual_odometry__create_ros_message(void) { return px4_msgs__msg__VehicleVisualOdometry__create(); } static void px4_msgs__msg__vehicle_visual_odometry__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VehicleVisualOdometry * ros_message = (px4_msgs__msg__VehicleVisualOdometry *)raw_ros_message; px4_msgs__msg__VehicleVisualOdometry__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vehicle_visual_odometry__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vehicle_visual_odometry__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleVisualOdometry); int8_t _register_msg_type__msg__vehicle_visual_odometry(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_visual_odometry__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vehicle_visual_odometry", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_visual_odometry__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vehicle_visual_odometry", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_visual_odometry__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vehicle_visual_odometry", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vehicle_visual_odometry__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vehicle_visual_odometry", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VehicleVisualOdometry), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vehicle_visual_odometry", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/vtol_vehicle_status__type_support.h" #include "px4_msgs/msg/vtol_vehicle_status__struct.h" #include "px4_msgs/msg/vtol_vehicle_status__functions.h" static void * px4_msgs__msg__vtol_vehicle_status__create_ros_message(void) { return px4_msgs__msg__VtolVehicleStatus__create(); } static void px4_msgs__msg__vtol_vehicle_status__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__VtolVehicleStatus * ros_message = (px4_msgs__msg__VtolVehicleStatus *)raw_ros_message; px4_msgs__msg__VtolVehicleStatus__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__vtol_vehicle_status__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__vtol_vehicle_status__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VtolVehicleStatus); int8_t _register_msg_type__msg__vtol_vehicle_status(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vtol_vehicle_status__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__vtol_vehicle_status", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__vtol_vehicle_status__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__vtol_vehicle_status", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__vtol_vehicle_status__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__vtol_vehicle_status", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__vtol_vehicle_status__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__vtol_vehicle_status", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, VtolVehicleStatus), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__vtol_vehicle_status", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/wheel_encoders__type_support.h" #include "px4_msgs/msg/wheel_encoders__struct.h" #include "px4_msgs/msg/wheel_encoders__functions.h" static void * px4_msgs__msg__wheel_encoders__create_ros_message(void) { return px4_msgs__msg__WheelEncoders__create(); } static void px4_msgs__msg__wheel_encoders__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__WheelEncoders * ros_message = (px4_msgs__msg__WheelEncoders *)raw_ros_message; px4_msgs__msg__WheelEncoders__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__wheel_encoders__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__wheel_encoders__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, WheelEncoders); int8_t _register_msg_type__msg__wheel_encoders(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__wheel_encoders__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__wheel_encoders", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__wheel_encoders__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__wheel_encoders", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__wheel_encoders__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__wheel_encoders", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__wheel_encoders__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__wheel_encoders", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, WheelEncoders), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__wheel_encoders", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/wind__type_support.h" #include "px4_msgs/msg/wind__struct.h" #include "px4_msgs/msg/wind__functions.h" static void * px4_msgs__msg__wind__create_ros_message(void) { return px4_msgs__msg__Wind__create(); } static void px4_msgs__msg__wind__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__Wind * ros_message = (px4_msgs__msg__Wind *)raw_ros_message; px4_msgs__msg__Wind__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__wind__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__wind__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, Wind); int8_t _register_msg_type__msg__wind(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__wind__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__wind", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__wind__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__wind", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__wind__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__wind", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__wind__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__wind", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, Wind), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__wind", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } // already included above // #include <stdbool.h> // already included above // #include <stdint.h> // already included above // #include "rosidl_generator_c/visibility_control.h" // already included above // #include "rosidl_generator_c/message_type_support_struct.h" // already included above // #include "rosidl_generator_c/service_type_support_struct.h" // already included above // #include "rosidl_generator_c/action_type_support_struct.h" #include "px4_msgs/msg/yaw_estimator_status__type_support.h" #include "px4_msgs/msg/yaw_estimator_status__struct.h" #include "px4_msgs/msg/yaw_estimator_status__functions.h" static void * px4_msgs__msg__yaw_estimator_status__create_ros_message(void) { return px4_msgs__msg__YawEstimatorStatus__create(); } static void px4_msgs__msg__yaw_estimator_status__destroy_ros_message(void * raw_ros_message) { px4_msgs__msg__YawEstimatorStatus * ros_message = (px4_msgs__msg__YawEstimatorStatus *)raw_ros_message; px4_msgs__msg__YawEstimatorStatus__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool px4_msgs__msg__yaw_estimator_status__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * px4_msgs__msg__yaw_estimator_status__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, YawEstimatorStatus); int8_t _register_msg_type__msg__yaw_estimator_status(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__yaw_estimator_status__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__yaw_estimator_status", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&px4_msgs__msg__yaw_estimator_status__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__yaw_estimator_status", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&px4_msgs__msg__yaw_estimator_status__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__yaw_estimator_status", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&px4_msgs__msg__yaw_estimator_status__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__yaw_estimator_status", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(px4_msgs, msg, YawEstimatorStatus), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__yaw_estimator_status", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } PyMODINIT_FUNC PyInit_px4_msgs_s__rosidl_typesupport_fastrtps_c(void) { PyObject * pymodule = NULL; pymodule = PyModule_Create(&px4_msgs__module); if (!pymodule) { return NULL; } int8_t err; err = _register_msg_type__msg__actuator_armed(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__actuator_controls(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__actuator_controls0(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__actuator_controls1(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__actuator_controls2(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__actuator_controls3(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__actuator_controls4(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__actuator_controls5(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__actuator_controls_virtual_fw(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__actuator_controls_virtual_mc(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__actuator_outputs(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__adc_report(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__airspeed(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__airspeed_validated(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__airspeed_wind(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__battery_status(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__camera_capture(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__camera_trigger(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__camera_trigger_secondary(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__cellular_status(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__collision_constraints(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__collision_report(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__commander_state(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__control_allocator_status(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__cpuload(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__debug_array(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__debug_key_value(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__debug_value(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__debug_vect(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__differential_pressure(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__distance_sensor(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__ekf2_timestamps(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__ekf_gps_drift(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__esc_report(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__esc_status(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__estimator_attitude(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__estimator_event_flags(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__estimator_global_position(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__estimator_innovation_test_ratios(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__estimator_innovation_variances(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__estimator_innovations(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__estimator_local_position(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__estimator_odometry(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__estimator_optical_flow_vel(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__estimator_selector_status(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__estimator_sensor_bias(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__estimator_states(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__estimator_status(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__estimator_status_flags(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__estimator_visual_odometry_aligned(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__estimator_wind(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__follow_target(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__fw_virtual_attitude_setpoint(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__generator_status(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__geofence_result(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__gimbal_device_attitude_status(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__gimbal_device_information(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__gimbal_device_set_attitude(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__gimbal_manager_information(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__gimbal_manager_set_attitude(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__gimbal_manager_set_manual_control(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__gimbal_manager_status(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__gps_dump(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__gps_inject_data(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__heater_status(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__home_position(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__hover_thrust_estimate(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__input_rc(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__iridiumsbd_status(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__irlock_report(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__landing_gear(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__landing_target_innovations(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__landing_target_pose(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__led_control(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__log_message(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__logger_status(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__mag_worker_data(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__manual_control_setpoint(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__manual_control_switches(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__mavlink_log(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__mc_virtual_attitude_setpoint(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__mission(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__mission_result(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__mount_orientation(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__multirotor_motor_limits(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__navigator_mission_item(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__obstacle_distance(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__obstacle_distance_fused(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__offboard_control_mode(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__onboard_computer_status(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__optical_flow(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__orb_multitest(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__orb_test(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__orb_test_large(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__orb_test_medium(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__orb_test_medium_multi(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__orb_test_medium_queue(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__orb_test_medium_queue_poll(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__orb_test_medium_wrap_around(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__orbit_status(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__parameter_update(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__ping(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__position_controller_landing_status(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__position_controller_status(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__position_setpoint(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__position_setpoint_triplet(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__power_button_state(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__power_monitor(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__pwm_input(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__px4_io_status(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__qshell_req(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__qshell_retval(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__radio_status(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__rate_ctrl_status(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__rc_channels(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__rc_parameter_map(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__rpm(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__rtl_flight_time(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__safety(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__satellite_info(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__sensor_accel(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__sensor_accel_fifo(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__sensor_baro(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__sensor_combined(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__sensor_correction(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__sensor_gps(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__sensor_gyro(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__sensor_gyro_fft(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__sensor_gyro_fifo(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__sensor_mag(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__sensor_preflight_mag(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__sensor_selection(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__sensors_status_imu(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__system_power(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__takeoff_status(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__task_stack_info(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__tecs_status(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__telemetry_status(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__test_motor(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__timesync(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__timesync_status(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__trajectory_bezier(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__trajectory_setpoint(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__trajectory_waypoint(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__transponder_report(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__tune_control(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__uavcan_parameter_request(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__uavcan_parameter_value(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__ulog_stream(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__ulog_stream_ack(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_acceleration(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_actuator_setpoint(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_air_data(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_angular_acceleration(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_angular_acceleration_setpoint(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_angular_velocity(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_angular_velocity_groundtruth(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_attitude(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_attitude_groundtruth(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_attitude_setpoint(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_command(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_command_ack(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_constraints(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_control_mode(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_global_position(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_global_position_groundtruth(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_gps_position(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_imu(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_imu_status(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_land_detected(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_local_position(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_local_position_groundtruth(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_local_position_setpoint(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_magnetometer(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_mocap_odometry(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_odometry(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_rates_setpoint(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_roi(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_status(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_status_flags(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_thrust_setpoint(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_torque_setpoint(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_trajectory_bezier(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_trajectory_waypoint(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_trajectory_waypoint_desired(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_vision_attitude(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vehicle_visual_odometry(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__vtol_vehicle_status(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__wheel_encoders(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__wind(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } err = _register_msg_type__msg__yaw_estimator_status(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } return pymodule; } <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_satellite_info_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/SatelliteInfo.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/satellite_info__struct.h" #include "px4_msgs/msg/satellite_info__functions.h" #include "rosidl_generator_c/primitives_sequence.h" #include "rosidl_generator_c/primitives_sequence_functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__satellite_info__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[43]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._satellite_info.SatelliteInfo", full_classname_dest, 42) == 0); } px4_msgs__msg__SatelliteInfo * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // count PyObject * field = PyObject_GetAttrString(_pymsg, "count"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->count = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // svid PyObject * field = PyObject_GetAttrString(_pymsg, "svid"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); Py_ssize_t size = 20; uint8_t * dest = ros_message->svid; for (Py_ssize_t i = 0; i < size; ++i) { uint8_t tmp = *(npy_uint8 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint8_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // used PyObject * field = PyObject_GetAttrString(_pymsg, "used"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); Py_ssize_t size = 20; uint8_t * dest = ros_message->used; for (Py_ssize_t i = 0; i < size; ++i) { uint8_t tmp = *(npy_uint8 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint8_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // elevation PyObject * field = PyObject_GetAttrString(_pymsg, "elevation"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); Py_ssize_t size = 20; uint8_t * dest = ros_message->elevation; for (Py_ssize_t i = 0; i < size; ++i) { uint8_t tmp = *(npy_uint8 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint8_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // azimuth PyObject * field = PyObject_GetAttrString(_pymsg, "azimuth"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); Py_ssize_t size = 20; uint8_t * dest = ros_message->azimuth; for (Py_ssize_t i = 0; i < size; ++i) { uint8_t tmp = *(npy_uint8 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint8_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // snr PyObject * field = PyObject_GetAttrString(_pymsg, "snr"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); Py_ssize_t size = 20; uint8_t * dest = ros_message->snr; for (Py_ssize_t i = 0; i < size; ++i) { uint8_t tmp = *(npy_uint8 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint8_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // prn PyObject * field = PyObject_GetAttrString(_pymsg, "prn"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); Py_ssize_t size = 20; uint8_t * dest = ros_message->prn; for (Py_ssize_t i = 0; i < size; ++i) { uint8_t tmp = *(npy_uint8 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint8_t)); } Py_DECREF(seq_field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__satellite_info__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of SatelliteInfo */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._satellite_info"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "SatelliteInfo"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__SatelliteInfo * ros_message = (px4_msgs__msg__SatelliteInfo *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // count PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->count); { int rc = PyObject_SetAttrString(_pymessage, "count", field); Py_DECREF(field); if (rc) { return NULL; } } } { // svid PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "svid"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); assert(sizeof(npy_uint8) == sizeof(uint8_t)); npy_uint8 * dst = (npy_uint8 *)PyArray_GETPTR1(seq_field, 0); uint8_t * src = &(ros_message->svid[0]); memcpy(dst, src, 20 * sizeof(uint8_t)); Py_DECREF(field); } { // used PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "used"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); assert(sizeof(npy_uint8) == sizeof(uint8_t)); npy_uint8 * dst = (npy_uint8 *)PyArray_GETPTR1(seq_field, 0); uint8_t * src = &(ros_message->used[0]); memcpy(dst, src, 20 * sizeof(uint8_t)); Py_DECREF(field); } { // elevation PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "elevation"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); assert(sizeof(npy_uint8) == sizeof(uint8_t)); npy_uint8 * dst = (npy_uint8 *)PyArray_GETPTR1(seq_field, 0); uint8_t * src = &(ros_message->elevation[0]); memcpy(dst, src, 20 * sizeof(uint8_t)); Py_DECREF(field); } { // azimuth PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "azimuth"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); assert(sizeof(npy_uint8) == sizeof(uint8_t)); npy_uint8 * dst = (npy_uint8 *)PyArray_GETPTR1(seq_field, 0); uint8_t * src = &(ros_message->azimuth[0]); memcpy(dst, src, 20 * sizeof(uint8_t)); Py_DECREF(field); } { // snr PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "snr"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); assert(sizeof(npy_uint8) == sizeof(uint8_t)); npy_uint8 * dst = (npy_uint8 *)PyArray_GETPTR1(seq_field, 0); uint8_t * src = &(ros_message->snr[0]); memcpy(dst, src, 20 * sizeof(uint8_t)); Py_DECREF(field); } { // prn PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "prn"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); assert(sizeof(npy_uint8) == sizeof(uint8_t)); npy_uint8 * dst = (npy_uint8 *)PyArray_GETPTR1(seq_field, 0); uint8_t * src = &(ros_message->prn[0]); memcpy(dst, src, 20 * sizeof(uint8_t)); Py_DECREF(field); } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/PositionSetpoint.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/position_setpoint__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/position_setpoint__functions.h" #include "px4_msgs/msg/position_setpoint__struct.h" #ifdef __cplusplus extern "C" { #endif void PositionSetpoint__rosidl_typesupport_introspection_c__PositionSetpoint_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__PositionSetpoint__init(message_memory); } void PositionSetpoint__rosidl_typesupport_introspection_c__PositionSetpoint_fini_function(void * message_memory) { px4_msgs__msg__PositionSetpoint__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember PositionSetpoint__rosidl_typesupport_introspection_c__PositionSetpoint_message_member_array[23] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionSetpoint, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionSetpoint, valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "type", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionSetpoint, type), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vx", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionSetpoint, vx), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vy", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionSetpoint, vy), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vz", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionSetpoint, vz), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "velocity_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionSetpoint, velocity_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "velocity_frame", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionSetpoint, velocity_frame), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "alt_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionSetpoint, alt_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "lat", // name rosidl_typesupport_introspection_c__ROS_TYPE_DOUBLE, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionSetpoint, lat), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "lon", // name rosidl_typesupport_introspection_c__ROS_TYPE_DOUBLE, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionSetpoint, lon), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "alt", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionSetpoint, alt), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yaw", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionSetpoint, yaw), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yaw_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionSetpoint, yaw_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yawspeed", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionSetpoint, yawspeed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yawspeed_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionSetpoint, yawspeed_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "landing_gear", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionSetpoint, landing_gear), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "loiter_radius", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionSetpoint, loiter_radius), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "loiter_direction", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionSetpoint, loiter_direction), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "acceptance_radius", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionSetpoint, acceptance_radius), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cruising_speed", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionSetpoint, cruising_speed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cruising_throttle", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionSetpoint, cruising_throttle), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "disable_weather_vane", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionSetpoint, disable_weather_vane), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers PositionSetpoint__rosidl_typesupport_introspection_c__PositionSetpoint_message_members = { "px4_msgs__msg", // message namespace "PositionSetpoint", // message name 23, // number of fields sizeof(px4_msgs__msg__PositionSetpoint), PositionSetpoint__rosidl_typesupport_introspection_c__PositionSetpoint_message_member_array, // message members PositionSetpoint__rosidl_typesupport_introspection_c__PositionSetpoint_init_function, // function to initialize message memory (memory has to be allocated) PositionSetpoint__rosidl_typesupport_introspection_c__PositionSetpoint_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t PositionSetpoint__rosidl_typesupport_introspection_c__PositionSetpoint_message_type_support_handle = { 0, &PositionSetpoint__rosidl_typesupport_introspection_c__PositionSetpoint_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, PositionSetpoint)() { if (!PositionSetpoint__rosidl_typesupport_introspection_c__PositionSetpoint_message_type_support_handle.typesupport_identifier) { PositionSetpoint__rosidl_typesupport_introspection_c__PositionSetpoint_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &PositionSetpoint__rosidl_typesupport_introspection_c__PositionSetpoint_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_c/px4_msgs/msg/estimator_global_position__type_support.cpp // generated from rosidl_typesupport_c/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/EstimatorGlobalPosition.idl // generated code does not contain a copyright notice #include "cstddef" #include "rosidl_generator_c/message_type_support_struct.h" #include "px4_msgs/msg/rosidl_typesupport_c__visibility_control.h" #include "px4_msgs/msg/estimator_global_position__struct.h" #include "rosidl_typesupport_c/visibility_control.h" #include "px4_msgs/msg/estimator_global_position__rosidl_typesupport_fastrtps_c.h" #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_c, px4_msgs, msg, EstimatorGlobalPosition)() { return ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, EstimatorGlobalPosition)(); } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/iridiumsbd_status__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/IridiumsbdStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__IRIDIUMSBD_STATUS__FUNCTIONS_H_ #define PX4_MSGS__MSG__IRIDIUMSBD_STATUS__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/iridiumsbd_status__struct.h" /// Initialize msg/IridiumsbdStatus message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__IridiumsbdStatus * )) before or use * px4_msgs__msg__IridiumsbdStatus__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__IridiumsbdStatus__init(px4_msgs__msg__IridiumsbdStatus * msg); /// Finalize msg/IridiumsbdStatus message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__IridiumsbdStatus__fini(px4_msgs__msg__IridiumsbdStatus * msg); /// Create msg/IridiumsbdStatus message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__IridiumsbdStatus__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__IridiumsbdStatus * px4_msgs__msg__IridiumsbdStatus__create(); /// Destroy msg/IridiumsbdStatus message. /** * It calls * px4_msgs__msg__IridiumsbdStatus__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__IridiumsbdStatus__destroy(px4_msgs__msg__IridiumsbdStatus * msg); /// Initialize array of msg/IridiumsbdStatus messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__IridiumsbdStatus__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__IridiumsbdStatus__Sequence__init(px4_msgs__msg__IridiumsbdStatus__Sequence * array, size_t size); /// Finalize array of msg/IridiumsbdStatus messages. /** * It calls * px4_msgs__msg__IridiumsbdStatus__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__IridiumsbdStatus__Sequence__fini(px4_msgs__msg__IridiumsbdStatus__Sequence * array); /// Create array of msg/IridiumsbdStatus messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__IridiumsbdStatus__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__IridiumsbdStatus__Sequence * px4_msgs__msg__IridiumsbdStatus__Sequence__create(size_t size); /// Destroy array of msg/IridiumsbdStatus messages. /** * It calls * px4_msgs__msg__IridiumsbdStatus__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__IridiumsbdStatus__Sequence__destroy(px4_msgs__msg__IridiumsbdStatus__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__IRIDIUMSBD_STATUS__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_status__rosidl_typesupport_fastrtps_c.h // generated from rosidl_typesupport_fastrtps_c/resource/idl__rosidl_typesupport_fastrtps_c.h.em // with input from px4_msgs:msg/PositionControllerStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__POSITION_CONTROLLER_STATUS__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #define PX4_MSGS__MSG__POSITION_CONTROLLER_STATUS__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #include <stddef.h> #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__PositionControllerStatus( const void * untyped_ros_message, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__PositionControllerStatus( bool & full_bounded, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, PositionControllerStatus)(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__POSITION_CONTROLLER_STATUS__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/hover_thrust_estimate__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/HoverThrustEstimate.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/hover_thrust_estimate__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/hover_thrust_estimate__functions.h" #include "px4_msgs/msg/hover_thrust_estimate__struct.h" #ifdef __cplusplus extern "C" { #endif void HoverThrustEstimate__rosidl_typesupport_introspection_c__HoverThrustEstimate_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__HoverThrustEstimate__init(message_memory); } void HoverThrustEstimate__rosidl_typesupport_introspection_c__HoverThrustEstimate_fini_function(void * message_memory) { px4_msgs__msg__HoverThrustEstimate__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember HoverThrustEstimate__rosidl_typesupport_introspection_c__HoverThrustEstimate_message_member_array[9] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HoverThrustEstimate, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HoverThrustEstimate, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "hover_thrust", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HoverThrustEstimate, hover_thrust), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "hover_thrust_var", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HoverThrustEstimate, hover_thrust_var), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accel_innov", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HoverThrustEstimate, accel_innov), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accel_innov_var", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HoverThrustEstimate, accel_innov_var), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accel_innov_test_ratio", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HoverThrustEstimate, accel_innov_test_ratio), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accel_noise_var", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HoverThrustEstimate, accel_noise_var), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HoverThrustEstimate, valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers HoverThrustEstimate__rosidl_typesupport_introspection_c__HoverThrustEstimate_message_members = { "px4_msgs__msg", // message namespace "HoverThrustEstimate", // message name 9, // number of fields sizeof(px4_msgs__msg__HoverThrustEstimate), HoverThrustEstimate__rosidl_typesupport_introspection_c__HoverThrustEstimate_message_member_array, // message members HoverThrustEstimate__rosidl_typesupport_introspection_c__HoverThrustEstimate_init_function, // function to initialize message memory (memory has to be allocated) HoverThrustEstimate__rosidl_typesupport_introspection_c__HoverThrustEstimate_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t HoverThrustEstimate__rosidl_typesupport_introspection_c__HoverThrustEstimate_message_type_support_handle = { 0, &HoverThrustEstimate__rosidl_typesupport_introspection_c__HoverThrustEstimate_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, HoverThrustEstimate)() { if (!HoverThrustEstimate__rosidl_typesupport_introspection_c__HoverThrustEstimate_message_type_support_handle.typesupport_identifier) { HoverThrustEstimate__rosidl_typesupport_introspection_c__HoverThrustEstimate_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &HoverThrustEstimate__rosidl_typesupport_introspection_c__HoverThrustEstimate_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_navigator_mission_item_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/NavigatorMissionItem.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/navigator_mission_item__struct.h" #include "px4_msgs/msg/navigator_mission_item__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__navigator_mission_item__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[58]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._navigator_mission_item.NavigatorMissionItem", full_classname_dest, 57) == 0); } px4_msgs__msg__NavigatorMissionItem * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // instance_count PyObject * field = PyObject_GetAttrString(_pymsg, "instance_count"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->instance_count = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // sequence_current PyObject * field = PyObject_GetAttrString(_pymsg, "sequence_current"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->sequence_current = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // nav_cmd PyObject * field = PyObject_GetAttrString(_pymsg, "nav_cmd"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->nav_cmd = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // latitude PyObject * field = PyObject_GetAttrString(_pymsg, "latitude"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->latitude = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // longitude PyObject * field = PyObject_GetAttrString(_pymsg, "longitude"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->longitude = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // time_inside PyObject * field = PyObject_GetAttrString(_pymsg, "time_inside"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->time_inside = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // acceptance_radius PyObject * field = PyObject_GetAttrString(_pymsg, "acceptance_radius"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->acceptance_radius = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // loiter_radius PyObject * field = PyObject_GetAttrString(_pymsg, "loiter_radius"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->loiter_radius = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // yaw PyObject * field = PyObject_GetAttrString(_pymsg, "yaw"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->yaw = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // altitude PyObject * field = PyObject_GetAttrString(_pymsg, "altitude"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->altitude = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // frame PyObject * field = PyObject_GetAttrString(_pymsg, "frame"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->frame = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // origin PyObject * field = PyObject_GetAttrString(_pymsg, "origin"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->origin = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // loiter_exit_xtrack PyObject * field = PyObject_GetAttrString(_pymsg, "loiter_exit_xtrack"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->loiter_exit_xtrack = (Py_True == field); Py_DECREF(field); } { // force_heading PyObject * field = PyObject_GetAttrString(_pymsg, "force_heading"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->force_heading = (Py_True == field); Py_DECREF(field); } { // altitude_is_relative PyObject * field = PyObject_GetAttrString(_pymsg, "altitude_is_relative"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->altitude_is_relative = (Py_True == field); Py_DECREF(field); } { // autocontinue PyObject * field = PyObject_GetAttrString(_pymsg, "autocontinue"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->autocontinue = (Py_True == field); Py_DECREF(field); } { // vtol_back_transition PyObject * field = PyObject_GetAttrString(_pymsg, "vtol_back_transition"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->vtol_back_transition = (Py_True == field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__navigator_mission_item__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of NavigatorMissionItem */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._navigator_mission_item"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "NavigatorMissionItem"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__NavigatorMissionItem * ros_message = (px4_msgs__msg__NavigatorMissionItem *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // instance_count PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->instance_count); { int rc = PyObject_SetAttrString(_pymessage, "instance_count", field); Py_DECREF(field); if (rc) { return NULL; } } } { // sequence_current PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->sequence_current); { int rc = PyObject_SetAttrString(_pymessage, "sequence_current", field); Py_DECREF(field); if (rc) { return NULL; } } } { // nav_cmd PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->nav_cmd); { int rc = PyObject_SetAttrString(_pymessage, "nav_cmd", field); Py_DECREF(field); if (rc) { return NULL; } } } { // latitude PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->latitude); { int rc = PyObject_SetAttrString(_pymessage, "latitude", field); Py_DECREF(field); if (rc) { return NULL; } } } { // longitude PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->longitude); { int rc = PyObject_SetAttrString(_pymessage, "longitude", field); Py_DECREF(field); if (rc) { return NULL; } } } { // time_inside PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->time_inside); { int rc = PyObject_SetAttrString(_pymessage, "time_inside", field); Py_DECREF(field); if (rc) { return NULL; } } } { // acceptance_radius PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->acceptance_radius); { int rc = PyObject_SetAttrString(_pymessage, "acceptance_radius", field); Py_DECREF(field); if (rc) { return NULL; } } } { // loiter_radius PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->loiter_radius); { int rc = PyObject_SetAttrString(_pymessage, "loiter_radius", field); Py_DECREF(field); if (rc) { return NULL; } } } { // yaw PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->yaw); { int rc = PyObject_SetAttrString(_pymessage, "yaw", field); Py_DECREF(field); if (rc) { return NULL; } } } { // altitude PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->altitude); { int rc = PyObject_SetAttrString(_pymessage, "altitude", field); Py_DECREF(field); if (rc) { return NULL; } } } { // frame PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->frame); { int rc = PyObject_SetAttrString(_pymessage, "frame", field); Py_DECREF(field); if (rc) { return NULL; } } } { // origin PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->origin); { int rc = PyObject_SetAttrString(_pymessage, "origin", field); Py_DECREF(field); if (rc) { return NULL; } } } { // loiter_exit_xtrack PyObject * field = NULL; field = PyBool_FromLong(ros_message->loiter_exit_xtrack ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "loiter_exit_xtrack", field); Py_DECREF(field); if (rc) { return NULL; } } } { // force_heading PyObject * field = NULL; field = PyBool_FromLong(ros_message->force_heading ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "force_heading", field); Py_DECREF(field); if (rc) { return NULL; } } } { // altitude_is_relative PyObject * field = NULL; field = PyBool_FromLong(ros_message->altitude_is_relative ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "altitude_is_relative", field); Py_DECREF(field); if (rc) { return NULL; } } } { // autocontinue PyObject * field = NULL; field = PyBool_FromLong(ros_message->autocontinue ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "autocontinue", field); Py_DECREF(field); if (rc) { return NULL; } } } { // vtol_back_transition PyObject * field = NULL; field = PyBool_FromLong(ros_message->vtol_back_transition ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "vtol_back_transition", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/home_position__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/HomePosition.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/home_position__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/home_position__struct.h" #include "px4_msgs/msg/home_position__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _HomePosition__ros_msg_type = px4_msgs__msg__HomePosition; static bool _HomePosition__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _HomePosition__ros_msg_type * ros_message = static_cast<const _HomePosition__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: lat { cdr << ros_message->lat; } // Field name: lon { cdr << ros_message->lon; } // Field name: alt { cdr << ros_message->alt; } // Field name: x { cdr << ros_message->x; } // Field name: y { cdr << ros_message->y; } // Field name: z { cdr << ros_message->z; } // Field name: yaw { cdr << ros_message->yaw; } // Field name: valid_alt { cdr << (ros_message->valid_alt ? true : false); } // Field name: valid_hpos { cdr << (ros_message->valid_hpos ? true : false); } // Field name: valid_lpos { cdr << (ros_message->valid_lpos ? true : false); } // Field name: manual_home { cdr << (ros_message->manual_home ? true : false); } return true; } static bool _HomePosition__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _HomePosition__ros_msg_type * ros_message = static_cast<_HomePosition__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: lat { cdr >> ros_message->lat; } // Field name: lon { cdr >> ros_message->lon; } // Field name: alt { cdr >> ros_message->alt; } // Field name: x { cdr >> ros_message->x; } // Field name: y { cdr >> ros_message->y; } // Field name: z { cdr >> ros_message->z; } // Field name: yaw { cdr >> ros_message->yaw; } // Field name: valid_alt { uint8_t tmp; cdr >> tmp; ros_message->valid_alt = tmp ? true : false; } // Field name: valid_hpos { uint8_t tmp; cdr >> tmp; ros_message->valid_hpos = tmp ? true : false; } // Field name: valid_lpos { uint8_t tmp; cdr >> tmp; ros_message->valid_lpos = tmp ? true : false; } // Field name: manual_home { uint8_t tmp; cdr >> tmp; ros_message->manual_home = tmp ? true : false; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__HomePosition( const void * untyped_ros_message, size_t current_alignment) { const _HomePosition__ros_msg_type * ros_message = static_cast<const _HomePosition__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name lat { size_t item_size = sizeof(ros_message->lat); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name lon { size_t item_size = sizeof(ros_message->lon); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name alt { size_t item_size = sizeof(ros_message->alt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name x { size_t item_size = sizeof(ros_message->x); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name y { size_t item_size = sizeof(ros_message->y); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name z { size_t item_size = sizeof(ros_message->z); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name yaw { size_t item_size = sizeof(ros_message->yaw); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name valid_alt { size_t item_size = sizeof(ros_message->valid_alt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name valid_hpos { size_t item_size = sizeof(ros_message->valid_hpos); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name valid_lpos { size_t item_size = sizeof(ros_message->valid_lpos); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name manual_home { size_t item_size = sizeof(ros_message->manual_home); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _HomePosition__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__HomePosition( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__HomePosition( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: lat { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: lon { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: alt { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: x { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: y { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: z { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: yaw { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: valid_alt { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: valid_hpos { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: valid_lpos { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: manual_home { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _HomePosition__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__HomePosition( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_HomePosition = { "px4_msgs::msg", "HomePosition", _HomePosition__cdr_serialize, _HomePosition__cdr_deserialize, _HomePosition__get_serialized_size, _HomePosition__max_serialized_size }; static rosidl_message_type_support_t _HomePosition__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_HomePosition, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, HomePosition)() { return &_HomePosition__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/estimator_optical_flow_vel.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_OPTICAL_FLOW_VEL_HPP_ #define PX4_MSGS__MSG__ESTIMATOR_OPTICAL_FLOW_VEL_HPP_ #include "px4_msgs/msg/estimator_optical_flow_vel__struct.hpp" #include "px4_msgs/msg/estimator_optical_flow_vel__traits.hpp" #endif // PX4_MSGS__MSG__ESTIMATOR_OPTICAL_FLOW_VEL_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_accel__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/SensorAccel.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/sensor_accel__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__SensorAccel__init(px4_msgs__msg__SensorAccel * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // device_id // x // y // z // temperature // error_count // clip_counter // samples return true; } void px4_msgs__msg__SensorAccel__fini(px4_msgs__msg__SensorAccel * msg) { if (!msg) { return; } // timestamp // timestamp_sample // device_id // x // y // z // temperature // error_count // clip_counter // samples } px4_msgs__msg__SensorAccel * px4_msgs__msg__SensorAccel__create() { px4_msgs__msg__SensorAccel * msg = (px4_msgs__msg__SensorAccel *)malloc(sizeof(px4_msgs__msg__SensorAccel)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__SensorAccel)); bool success = px4_msgs__msg__SensorAccel__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__SensorAccel__destroy(px4_msgs__msg__SensorAccel * msg) { if (msg) { px4_msgs__msg__SensorAccel__fini(msg); } free(msg); } bool px4_msgs__msg__SensorAccel__Sequence__init(px4_msgs__msg__SensorAccel__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__SensorAccel * data = NULL; if (size) { data = (px4_msgs__msg__SensorAccel *)calloc(size, sizeof(px4_msgs__msg__SensorAccel)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__SensorAccel__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__SensorAccel__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__SensorAccel__Sequence__fini(px4_msgs__msg__SensorAccel__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__SensorAccel__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__SensorAccel__Sequence * px4_msgs__msg__SensorAccel__Sequence__create(size_t size) { px4_msgs__msg__SensorAccel__Sequence * array = (px4_msgs__msg__SensorAccel__Sequence *)malloc(sizeof(px4_msgs__msg__SensorAccel__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__SensorAccel__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__SensorAccel__Sequence__destroy(px4_msgs__msg__SensorAccel__Sequence * array) { if (array) { px4_msgs__msg__SensorAccel__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/esc_status__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/EscStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESC_STATUS__STRUCT_HPP_ #define PX4_MSGS__MSG__ESC_STATUS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> // Include directives for member types // Member 'esc' #include "px4_msgs/msg/esc_report__struct.hpp" #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__EscStatus __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__EscStatus __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct EscStatus_ { using Type = EscStatus_<ContainerAllocator>; explicit EscStatus_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->counter = 0; this->esc_count = 0; this->esc_connectiontype = 0; this->esc_online_flags = 0; this->esc_armed_flags = 0; this->esc.fill(px4_msgs::msg::EscReport_<ContainerAllocator>{_init}); } } explicit EscStatus_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : esc(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->counter = 0; this->esc_count = 0; this->esc_connectiontype = 0; this->esc_online_flags = 0; this->esc_armed_flags = 0; this->esc.fill(px4_msgs::msg::EscReport_<ContainerAllocator>{_alloc, _init}); } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _counter_type = uint16_t; _counter_type counter; using _esc_count_type = uint8_t; _esc_count_type esc_count; using _esc_connectiontype_type = uint8_t; _esc_connectiontype_type esc_connectiontype; using _esc_online_flags_type = uint8_t; _esc_online_flags_type esc_online_flags; using _esc_armed_flags_type = uint8_t; _esc_armed_flags_type esc_armed_flags; using _esc_type = std::array<px4_msgs::msg::EscReport_<ContainerAllocator>, 8>; _esc_type esc; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__counter( const uint16_t & _arg) { this->counter = _arg; return *this; } Type & set__esc_count( const uint8_t & _arg) { this->esc_count = _arg; return *this; } Type & set__esc_connectiontype( const uint8_t & _arg) { this->esc_connectiontype = _arg; return *this; } Type & set__esc_online_flags( const uint8_t & _arg) { this->esc_online_flags = _arg; return *this; } Type & set__esc_armed_flags( const uint8_t & _arg) { this->esc_armed_flags = _arg; return *this; } Type & set__esc( const std::array<px4_msgs::msg::EscReport_<ContainerAllocator>, 8> & _arg) { this->esc = _arg; return *this; } // constant declarations static constexpr uint8_t CONNECTED_ESC_MAX = 8u; static constexpr uint8_t ESC_CONNECTION_TYPE_PPM = 0u; static constexpr uint8_t ESC_CONNECTION_TYPE_SERIAL = 1u; static constexpr uint8_t ESC_CONNECTION_TYPE_ONESHOT = 2u; static constexpr uint8_t ESC_CONNECTION_TYPE_I2C = 3u; static constexpr uint8_t ESC_CONNECTION_TYPE_CAN = 4u; static constexpr uint8_t ESC_CONNECTION_TYPE_DSHOT = 5u; // pointer types using RawPtr = px4_msgs::msg::EscStatus_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::EscStatus_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::EscStatus_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::EscStatus_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::EscStatus_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::EscStatus_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::EscStatus_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::EscStatus_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::EscStatus_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::EscStatus_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__EscStatus std::shared_ptr<px4_msgs::msg::EscStatus_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__EscStatus std::shared_ptr<px4_msgs::msg::EscStatus_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const EscStatus_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->counter != other.counter) { return false; } if (this->esc_count != other.esc_count) { return false; } if (this->esc_connectiontype != other.esc_connectiontype) { return false; } if (this->esc_online_flags != other.esc_online_flags) { return false; } if (this->esc_armed_flags != other.esc_armed_flags) { return false; } if (this->esc != other.esc) { return false; } return true; } bool operator!=(const EscStatus_ & other) const { return !this->operator==(other); } }; // struct EscStatus_ // alias to use template instance with default allocator using EscStatus = px4_msgs::msg::EscStatus_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t EscStatus_<ContainerAllocator>::CONNECTED_ESC_MAX; template<typename ContainerAllocator> constexpr uint8_t EscStatus_<ContainerAllocator>::ESC_CONNECTION_TYPE_PPM; template<typename ContainerAllocator> constexpr uint8_t EscStatus_<ContainerAllocator>::ESC_CONNECTION_TYPE_SERIAL; template<typename ContainerAllocator> constexpr uint8_t EscStatus_<ContainerAllocator>::ESC_CONNECTION_TYPE_ONESHOT; template<typename ContainerAllocator> constexpr uint8_t EscStatus_<ContainerAllocator>::ESC_CONNECTION_TYPE_I2C; template<typename ContainerAllocator> constexpr uint8_t EscStatus_<ContainerAllocator>::ESC_CONNECTION_TYPE_CAN; template<typename ContainerAllocator> constexpr uint8_t EscStatus_<ContainerAllocator>::ESC_CONNECTION_TYPE_DSHOT; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__ESC_STATUS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleTrajectoryWaypointDesired.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_trajectory_waypoint_desired__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> // Include directives for member types // Member `waypoints` #include "px4_msgs/msg/trajectory_waypoint__functions.h" bool px4_msgs__msg__VehicleTrajectoryWaypointDesired__init(px4_msgs__msg__VehicleTrajectoryWaypointDesired * msg) { if (!msg) { return false; } // timestamp // type // waypoints for (size_t i = 0; i < 5; ++i) { if (!px4_msgs__msg__TrajectoryWaypoint__init(&msg->waypoints[i])) { px4_msgs__msg__VehicleTrajectoryWaypointDesired__fini(msg); return false; } } return true; } void px4_msgs__msg__VehicleTrajectoryWaypointDesired__fini(px4_msgs__msg__VehicleTrajectoryWaypointDesired * msg) { if (!msg) { return; } // timestamp // type // waypoints for (size_t i = 0; i < 5; ++i) { px4_msgs__msg__TrajectoryWaypoint__fini(&msg->waypoints[i]); } } px4_msgs__msg__VehicleTrajectoryWaypointDesired * px4_msgs__msg__VehicleTrajectoryWaypointDesired__create() { px4_msgs__msg__VehicleTrajectoryWaypointDesired * msg = (px4_msgs__msg__VehicleTrajectoryWaypointDesired *)malloc(sizeof(px4_msgs__msg__VehicleTrajectoryWaypointDesired)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleTrajectoryWaypointDesired)); bool success = px4_msgs__msg__VehicleTrajectoryWaypointDesired__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleTrajectoryWaypointDesired__destroy(px4_msgs__msg__VehicleTrajectoryWaypointDesired * msg) { if (msg) { px4_msgs__msg__VehicleTrajectoryWaypointDesired__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleTrajectoryWaypointDesired__Sequence__init(px4_msgs__msg__VehicleTrajectoryWaypointDesired__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleTrajectoryWaypointDesired * data = NULL; if (size) { data = (px4_msgs__msg__VehicleTrajectoryWaypointDesired *)calloc(size, sizeof(px4_msgs__msg__VehicleTrajectoryWaypointDesired)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleTrajectoryWaypointDesired__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleTrajectoryWaypointDesired__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleTrajectoryWaypointDesired__Sequence__fini(px4_msgs__msg__VehicleTrajectoryWaypointDesired__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleTrajectoryWaypointDesired__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleTrajectoryWaypointDesired__Sequence * px4_msgs__msg__VehicleTrajectoryWaypointDesired__Sequence__create(size_t size) { px4_msgs__msg__VehicleTrajectoryWaypointDesired__Sequence * array = (px4_msgs__msg__VehicleTrajectoryWaypointDesired__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleTrajectoryWaypointDesired__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleTrajectoryWaypointDesired__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleTrajectoryWaypointDesired__Sequence__destroy(px4_msgs__msg__VehicleTrajectoryWaypointDesired__Sequence * array) { if (array) { px4_msgs__msg__VehicleTrajectoryWaypointDesired__Sequence__fini(array); } free(array); } <file_sep>/build/multi_rtd_interfaces/CMakeFiles/multi_rtd_interfaces.dir/cmake_clean.cmake file(REMOVE_RECURSE "CMakeFiles/multi_rtd_interfaces" ) # Per-language clean rules from dependency scanning. foreach(lang ) include(CMakeFiles/multi_rtd_interfaces.dir/cmake_clean_${lang}.cmake OPTIONAL) endforeach() <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_outputs.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/ActuatorOutputs.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_OUTPUTS_H_ #define PX4_MSGS__MSG__ACTUATOR_OUTPUTS_H_ #include "px4_msgs/msg/actuator_outputs__struct.h" #include "px4_msgs/msg/actuator_outputs__functions.h" #include "px4_msgs/msg/actuator_outputs__type_support.h" #endif // PX4_MSGS__MSG__ACTUATOR_OUTPUTS_H_ <file_sep>/install/multi_rtd/lib/python3.6/site-packages/multi_rtd/simple_planner.py # Publishes a set nominal trajectory to be plotted in Gazebo import rclpy import rospkg from rclpy.node import Node import numpy as np from scipy.io import loadmat import os from LPM import LPM from planner_utils import wrap_traj_msg from trajectory_msgs.msg import JointTrajectory, JointTrajectoryPoint class SimplePlanner(Node): def __init__(self): super().__init__('simple_planner') self.traj_pub = self.create_publisher(JointTrajectory, 'iris_1/planner/traj', 10) timer_period = 10 # seconds self.timer = self.create_timer(timer_period, self.timer_callback) self.ns = self.get_namespace() # init LPM object script_dir = os.path.dirname(os.path.abspath('src')) print(script_dir) filepath = script_dir + '/src/px4_multi_agent_planning/multi_rtd/multi_rtd/quadrotor_linear_planning_model.mat' print(filepath) #filepath = '/home/talbot330-red/ros2_ws/src/multi_rtd/multi_rtd/quadrotor_linear_planning_model.mat' lpm = LPM(filepath) # compute trajectory for some arbitrary trajectory parameters v_x_0 = 0; a_x_0 = 0; v_x_peak = 2.3 v_y_0 = 0; a_y_0 = 0; v_y_peak = -3.3 v_z_0 = 0; a_z_0 = 0; v_z_peak = 2.0 t2start = 0 # seconds k = np.array([[v_x_0, a_x_0, v_x_peak], [v_y_0, a_y_0, v_y_peak], [v_z_0, a_z_0, v_z_peak]]) traj = lpm.compute_trajectory(k) # convert to JointTrajectory msg self.traj_msg = wrap_traj_msg(traj,t2start) # publish the trajectory def timer_callback(self): print(" publishing trajectory") self.traj_pub.publish(self.traj_msg) def main(args=None): print("Starting simple planner...") rclpy.init(args=args) simple_planner = SimplePlanner() rclpy.spin(simple_planner) # Destroy the node explicitly # (optional - otherwise it will be done automatically # when the garbage collector destroys the node object) simple_planner.destroy_node() rclpy.shutdown() if __name__ == '__main__': main()<file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_gyro_fft__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/SensorGyroFft.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/sensor_gyro_fft__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__SensorGyroFft__init(px4_msgs__msg__SensorGyroFft * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // device_id // sensor_sample_rate_hz // resolution_hz // peak_frequencies_x // peak_frequencies_y // peak_frequencies_z // peak_magnitude_x // peak_magnitude_y // peak_magnitude_z return true; } void px4_msgs__msg__SensorGyroFft__fini(px4_msgs__msg__SensorGyroFft * msg) { if (!msg) { return; } // timestamp // timestamp_sample // device_id // sensor_sample_rate_hz // resolution_hz // peak_frequencies_x // peak_frequencies_y // peak_frequencies_z // peak_magnitude_x // peak_magnitude_y // peak_magnitude_z } px4_msgs__msg__SensorGyroFft * px4_msgs__msg__SensorGyroFft__create() { px4_msgs__msg__SensorGyroFft * msg = (px4_msgs__msg__SensorGyroFft *)malloc(sizeof(px4_msgs__msg__SensorGyroFft)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__SensorGyroFft)); bool success = px4_msgs__msg__SensorGyroFft__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__SensorGyroFft__destroy(px4_msgs__msg__SensorGyroFft * msg) { if (msg) { px4_msgs__msg__SensorGyroFft__fini(msg); } free(msg); } bool px4_msgs__msg__SensorGyroFft__Sequence__init(px4_msgs__msg__SensorGyroFft__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__SensorGyroFft * data = NULL; if (size) { data = (px4_msgs__msg__SensorGyroFft *)calloc(size, sizeof(px4_msgs__msg__SensorGyroFft)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__SensorGyroFft__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__SensorGyroFft__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__SensorGyroFft__Sequence__fini(px4_msgs__msg__SensorGyroFft__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__SensorGyroFft__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__SensorGyroFft__Sequence * px4_msgs__msg__SensorGyroFft__Sequence__create(size_t size) { px4_msgs__msg__SensorGyroFft__Sequence * array = (px4_msgs__msg__SensorGyroFft__Sequence *)malloc(sizeof(px4_msgs__msg__SensorGyroFft__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__SensorGyroFft__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__SensorGyroFft__Sequence__destroy(px4_msgs__msg__SensorGyroFft__Sequence * array) { if (array) { px4_msgs__msg__SensorGyroFft__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleTrajectoryWaypointDesired.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_TRAJECTORY_WAYPOINT_DESIRED_H_ #define PX4_MSGS__MSG__VEHICLE_TRAJECTORY_WAYPOINT_DESIRED_H_ #include "px4_msgs/msg/vehicle_trajectory_waypoint_desired__struct.h" #include "px4_msgs/msg/vehicle_trajectory_waypoint_desired__functions.h" #include "px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_TRAJECTORY_WAYPOINT_DESIRED_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/input_rc__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/InputRc.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/input_rc__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/input_rc__struct.h" #include "px4_msgs/msg/input_rc__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _InputRc__ros_msg_type = px4_msgs__msg__InputRc; static bool _InputRc__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _InputRc__ros_msg_type * ros_message = static_cast<const _InputRc__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: timestamp_last_signal { cdr << ros_message->timestamp_last_signal; } // Field name: channel_count { cdr << ros_message->channel_count; } // Field name: rssi { cdr << ros_message->rssi; } // Field name: rc_failsafe { cdr << (ros_message->rc_failsafe ? true : false); } // Field name: rc_lost { cdr << (ros_message->rc_lost ? true : false); } // Field name: rc_lost_frame_count { cdr << ros_message->rc_lost_frame_count; } // Field name: rc_total_frame_count { cdr << ros_message->rc_total_frame_count; } // Field name: rc_ppm_frame_length { cdr << ros_message->rc_ppm_frame_length; } // Field name: input_source { cdr << ros_message->input_source; } // Field name: values { size_t size = 18; auto array_ptr = ros_message->values; cdr.serializeArray(array_ptr, size); } return true; } static bool _InputRc__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _InputRc__ros_msg_type * ros_message = static_cast<_InputRc__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: timestamp_last_signal { cdr >> ros_message->timestamp_last_signal; } // Field name: channel_count { cdr >> ros_message->channel_count; } // Field name: rssi { cdr >> ros_message->rssi; } // Field name: rc_failsafe { uint8_t tmp; cdr >> tmp; ros_message->rc_failsafe = tmp ? true : false; } // Field name: rc_lost { uint8_t tmp; cdr >> tmp; ros_message->rc_lost = tmp ? true : false; } // Field name: rc_lost_frame_count { cdr >> ros_message->rc_lost_frame_count; } // Field name: rc_total_frame_count { cdr >> ros_message->rc_total_frame_count; } // Field name: rc_ppm_frame_length { cdr >> ros_message->rc_ppm_frame_length; } // Field name: input_source { cdr >> ros_message->input_source; } // Field name: values { size_t size = 18; auto array_ptr = ros_message->values; cdr.deserializeArray(array_ptr, size); } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__InputRc( const void * untyped_ros_message, size_t current_alignment) { const _InputRc__ros_msg_type * ros_message = static_cast<const _InputRc__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name timestamp_last_signal { size_t item_size = sizeof(ros_message->timestamp_last_signal); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name channel_count { size_t item_size = sizeof(ros_message->channel_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rssi { size_t item_size = sizeof(ros_message->rssi); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rc_failsafe { size_t item_size = sizeof(ros_message->rc_failsafe); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rc_lost { size_t item_size = sizeof(ros_message->rc_lost); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rc_lost_frame_count { size_t item_size = sizeof(ros_message->rc_lost_frame_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rc_total_frame_count { size_t item_size = sizeof(ros_message->rc_total_frame_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rc_ppm_frame_length { size_t item_size = sizeof(ros_message->rc_ppm_frame_length); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name input_source { size_t item_size = sizeof(ros_message->input_source); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name values { size_t array_size = 18; auto array_ptr = ros_message->values; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _InputRc__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__InputRc( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__InputRc( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: timestamp_last_signal { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: channel_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: rssi { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: rc_failsafe { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: rc_lost { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: rc_lost_frame_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: rc_total_frame_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: rc_ppm_frame_length { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: input_source { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: values { size_t array_size = 18; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } return current_alignment - initial_alignment; } static size_t _InputRc__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__InputRc( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_InputRc = { "px4_msgs::msg", "InputRc", _InputRc__cdr_serialize, _InputRc__cdr_deserialize, _InputRc__get_serialized_size, _InputRc__max_serialized_size }; static rosidl_message_type_support_t _InputRc__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_InputRc, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, InputRc)() { return &_InputRc__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_global_position__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/EstimatorGlobalPosition.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/estimator_global_position__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/estimator_global_position__functions.h" #include "px4_msgs/msg/estimator_global_position__struct.h" #ifdef __cplusplus extern "C" { #endif void EstimatorGlobalPosition__rosidl_typesupport_introspection_c__EstimatorGlobalPosition_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__EstimatorGlobalPosition__init(message_memory); } void EstimatorGlobalPosition__rosidl_typesupport_introspection_c__EstimatorGlobalPosition_fini_function(void * message_memory) { px4_msgs__msg__EstimatorGlobalPosition__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember EstimatorGlobalPosition__rosidl_typesupport_introspection_c__EstimatorGlobalPosition_message_member_array[14] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorGlobalPosition, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorGlobalPosition, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "lat", // name rosidl_typesupport_introspection_c__ROS_TYPE_DOUBLE, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorGlobalPosition, lat), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "lon", // name rosidl_typesupport_introspection_c__ROS_TYPE_DOUBLE, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorGlobalPosition, lon), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "alt", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorGlobalPosition, alt), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "alt_ellipsoid", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorGlobalPosition, alt_ellipsoid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "delta_alt", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorGlobalPosition, delta_alt), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "lat_lon_reset_counter", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorGlobalPosition, lat_lon_reset_counter), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "alt_reset_counter", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorGlobalPosition, alt_reset_counter), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "eph", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorGlobalPosition, eph), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "epv", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorGlobalPosition, epv), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "terrain_alt", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorGlobalPosition, terrain_alt), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "terrain_alt_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorGlobalPosition, terrain_alt_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "dead_reckoning", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorGlobalPosition, dead_reckoning), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers EstimatorGlobalPosition__rosidl_typesupport_introspection_c__EstimatorGlobalPosition_message_members = { "px4_msgs__msg", // message namespace "EstimatorGlobalPosition", // message name 14, // number of fields sizeof(px4_msgs__msg__EstimatorGlobalPosition), EstimatorGlobalPosition__rosidl_typesupport_introspection_c__EstimatorGlobalPosition_message_member_array, // message members EstimatorGlobalPosition__rosidl_typesupport_introspection_c__EstimatorGlobalPosition_init_function, // function to initialize message memory (memory has to be allocated) EstimatorGlobalPosition__rosidl_typesupport_introspection_c__EstimatorGlobalPosition_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t EstimatorGlobalPosition__rosidl_typesupport_introspection_c__EstimatorGlobalPosition_message_type_support_handle = { 0, &EstimatorGlobalPosition__rosidl_typesupport_introspection_c__EstimatorGlobalPosition_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, EstimatorGlobalPosition)() { if (!EstimatorGlobalPosition__rosidl_typesupport_introspection_c__EstimatorGlobalPosition_message_type_support_handle.typesupport_identifier) { EstimatorGlobalPosition__rosidl_typesupport_introspection_c__EstimatorGlobalPosition_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &EstimatorGlobalPosition__rosidl_typesupport_introspection_c__EstimatorGlobalPosition_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/trajectory_waypoint.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/TrajectoryWaypoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TRAJECTORY_WAYPOINT_H_ #define PX4_MSGS__MSG__TRAJECTORY_WAYPOINT_H_ #include "px4_msgs/msg/trajectory_waypoint__struct.h" #include "px4_msgs/msg/trajectory_waypoint__functions.h" #include "px4_msgs/msg/trajectory_waypoint__type_support.h" #endif // PX4_MSGS__MSG__TRAJECTORY_WAYPOINT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vtol_vehicle_status.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VTOL_VEHICLE_STATUS_HPP_ #define PX4_MSGS__MSG__VTOL_VEHICLE_STATUS_HPP_ #include "px4_msgs/msg/vtol_vehicle_status__struct.hpp" #include "px4_msgs/msg/vtol_vehicle_status__traits.hpp" #endif // PX4_MSGS__MSG__VTOL_VEHICLE_STATUS_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_local_position__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/EstimatorLocalPosition.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/estimator_local_position__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/estimator_local_position__functions.h" #include "px4_msgs/msg/estimator_local_position__struct.h" #ifdef __cplusplus extern "C" { #endif void EstimatorLocalPosition__rosidl_typesupport_introspection_c__EstimatorLocalPosition_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__EstimatorLocalPosition__init(message_memory); } void EstimatorLocalPosition__rosidl_typesupport_introspection_c__EstimatorLocalPosition_fini_function(void * message_memory) { px4_msgs__msg__EstimatorLocalPosition__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember EstimatorLocalPosition__rosidl_typesupport_introspection_c__EstimatorLocalPosition_message_member_array[44] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "xy_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, xy_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "z_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, z_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "v_xy_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, v_xy_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "v_z_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, v_z_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "x", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, x), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "y", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, y), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "z", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, z), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "delta_xy", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, delta_xy), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "xy_reset_counter", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, xy_reset_counter), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "delta_z", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, delta_z), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "z_reset_counter", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, z_reset_counter), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vx", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, vx), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vy", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, vy), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vz", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, vz), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "z_deriv", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, z_deriv), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "delta_vxy", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, delta_vxy), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vxy_reset_counter", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, vxy_reset_counter), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "delta_vz", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, delta_vz), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vz_reset_counter", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, vz_reset_counter), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ax", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, ax), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ay", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, ay), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "az", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, az), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "heading", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, heading), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "delta_heading", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, delta_heading), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "heading_reset_counter", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, heading_reset_counter), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "xy_global", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, xy_global), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "z_global", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, z_global), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ref_timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, ref_timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ref_lat", // name rosidl_typesupport_introspection_c__ROS_TYPE_DOUBLE, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, ref_lat), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ref_lon", // name rosidl_typesupport_introspection_c__ROS_TYPE_DOUBLE, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, ref_lon), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ref_alt", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, ref_alt), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "dist_bottom", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, dist_bottom), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "dist_bottom_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, dist_bottom_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "dist_bottom_sensor_bitfield", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, dist_bottom_sensor_bitfield), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "eph", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, eph), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "epv", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, epv), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "evh", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, evh), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "evv", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, evv), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vxy_max", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, vxy_max), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vz_max", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, vz_max), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "hagl_min", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, hagl_min), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "hagl_max", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorLocalPosition, hagl_max), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers EstimatorLocalPosition__rosidl_typesupport_introspection_c__EstimatorLocalPosition_message_members = { "px4_msgs__msg", // message namespace "EstimatorLocalPosition", // message name 44, // number of fields sizeof(px4_msgs__msg__EstimatorLocalPosition), EstimatorLocalPosition__rosidl_typesupport_introspection_c__EstimatorLocalPosition_message_member_array, // message members EstimatorLocalPosition__rosidl_typesupport_introspection_c__EstimatorLocalPosition_init_function, // function to initialize message memory (memory has to be allocated) EstimatorLocalPosition__rosidl_typesupport_introspection_c__EstimatorLocalPosition_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t EstimatorLocalPosition__rosidl_typesupport_introspection_c__EstimatorLocalPosition_message_type_support_handle = { 0, &EstimatorLocalPosition__rosidl_typesupport_introspection_c__EstimatorLocalPosition_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, EstimatorLocalPosition)() { if (!EstimatorLocalPosition__rosidl_typesupport_introspection_c__EstimatorLocalPosition_message_type_support_handle.typesupport_identifier) { EstimatorLocalPosition__rosidl_typesupport_introspection_c__EstimatorLocalPosition_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &EstimatorLocalPosition__rosidl_typesupport_introspection_c__EstimatorLocalPosition_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/estimator_event_flags__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/EstimatorEventFlags.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_EVENT_FLAGS__STRUCT_HPP_ #define PX4_MSGS__MSG__ESTIMATOR_EVENT_FLAGS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__EstimatorEventFlags __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__EstimatorEventFlags __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct EstimatorEventFlags_ { using Type = EstimatorEventFlags_<ContainerAllocator>; explicit EstimatorEventFlags_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->information_event_changes = 0ul; this->gps_checks_passed = false; this->reset_vel_to_gps = false; this->reset_vel_to_flow = false; this->reset_vel_to_vision = false; this->reset_vel_to_zero = false; this->reset_pos_to_last_known = false; this->reset_pos_to_gps = false; this->reset_pos_to_vision = false; this->starting_gps_fusion = false; this->starting_vision_pos_fusion = false; this->starting_vision_vel_fusion = false; this->starting_vision_yaw_fusion = false; this->yaw_aligned_to_imu_gps = false; this->warning_event_changes = 0ul; this->gps_quality_poor = false; this->gps_fusion_timout = false; this->gps_data_stopped = false; this->gps_data_stopped_using_alternate = false; this->height_sensor_timeout = false; this->stopping_navigation = false; this->invalid_accel_bias_cov_reset = false; this->bad_yaw_using_gps_course = false; this->stopping_mag_use = false; this->vision_data_stopped = false; this->emergency_yaw_reset_mag_stopped = false; } } explicit EstimatorEventFlags_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->information_event_changes = 0ul; this->gps_checks_passed = false; this->reset_vel_to_gps = false; this->reset_vel_to_flow = false; this->reset_vel_to_vision = false; this->reset_vel_to_zero = false; this->reset_pos_to_last_known = false; this->reset_pos_to_gps = false; this->reset_pos_to_vision = false; this->starting_gps_fusion = false; this->starting_vision_pos_fusion = false; this->starting_vision_vel_fusion = false; this->starting_vision_yaw_fusion = false; this->yaw_aligned_to_imu_gps = false; this->warning_event_changes = 0ul; this->gps_quality_poor = false; this->gps_fusion_timout = false; this->gps_data_stopped = false; this->gps_data_stopped_using_alternate = false; this->height_sensor_timeout = false; this->stopping_navigation = false; this->invalid_accel_bias_cov_reset = false; this->bad_yaw_using_gps_course = false; this->stopping_mag_use = false; this->vision_data_stopped = false; this->emergency_yaw_reset_mag_stopped = false; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _timestamp_sample_type = uint64_t; _timestamp_sample_type timestamp_sample; using _information_event_changes_type = uint32_t; _information_event_changes_type information_event_changes; using _gps_checks_passed_type = bool; _gps_checks_passed_type gps_checks_passed; using _reset_vel_to_gps_type = bool; _reset_vel_to_gps_type reset_vel_to_gps; using _reset_vel_to_flow_type = bool; _reset_vel_to_flow_type reset_vel_to_flow; using _reset_vel_to_vision_type = bool; _reset_vel_to_vision_type reset_vel_to_vision; using _reset_vel_to_zero_type = bool; _reset_vel_to_zero_type reset_vel_to_zero; using _reset_pos_to_last_known_type = bool; _reset_pos_to_last_known_type reset_pos_to_last_known; using _reset_pos_to_gps_type = bool; _reset_pos_to_gps_type reset_pos_to_gps; using _reset_pos_to_vision_type = bool; _reset_pos_to_vision_type reset_pos_to_vision; using _starting_gps_fusion_type = bool; _starting_gps_fusion_type starting_gps_fusion; using _starting_vision_pos_fusion_type = bool; _starting_vision_pos_fusion_type starting_vision_pos_fusion; using _starting_vision_vel_fusion_type = bool; _starting_vision_vel_fusion_type starting_vision_vel_fusion; using _starting_vision_yaw_fusion_type = bool; _starting_vision_yaw_fusion_type starting_vision_yaw_fusion; using _yaw_aligned_to_imu_gps_type = bool; _yaw_aligned_to_imu_gps_type yaw_aligned_to_imu_gps; using _warning_event_changes_type = uint32_t; _warning_event_changes_type warning_event_changes; using _gps_quality_poor_type = bool; _gps_quality_poor_type gps_quality_poor; using _gps_fusion_timout_type = bool; _gps_fusion_timout_type gps_fusion_timout; using _gps_data_stopped_type = bool; _gps_data_stopped_type gps_data_stopped; using _gps_data_stopped_using_alternate_type = bool; _gps_data_stopped_using_alternate_type gps_data_stopped_using_alternate; using _height_sensor_timeout_type = bool; _height_sensor_timeout_type height_sensor_timeout; using _stopping_navigation_type = bool; _stopping_navigation_type stopping_navigation; using _invalid_accel_bias_cov_reset_type = bool; _invalid_accel_bias_cov_reset_type invalid_accel_bias_cov_reset; using _bad_yaw_using_gps_course_type = bool; _bad_yaw_using_gps_course_type bad_yaw_using_gps_course; using _stopping_mag_use_type = bool; _stopping_mag_use_type stopping_mag_use; using _vision_data_stopped_type = bool; _vision_data_stopped_type vision_data_stopped; using _emergency_yaw_reset_mag_stopped_type = bool; _emergency_yaw_reset_mag_stopped_type emergency_yaw_reset_mag_stopped; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__timestamp_sample( const uint64_t & _arg) { this->timestamp_sample = _arg; return *this; } Type & set__information_event_changes( const uint32_t & _arg) { this->information_event_changes = _arg; return *this; } Type & set__gps_checks_passed( const bool & _arg) { this->gps_checks_passed = _arg; return *this; } Type & set__reset_vel_to_gps( const bool & _arg) { this->reset_vel_to_gps = _arg; return *this; } Type & set__reset_vel_to_flow( const bool & _arg) { this->reset_vel_to_flow = _arg; return *this; } Type & set__reset_vel_to_vision( const bool & _arg) { this->reset_vel_to_vision = _arg; return *this; } Type & set__reset_vel_to_zero( const bool & _arg) { this->reset_vel_to_zero = _arg; return *this; } Type & set__reset_pos_to_last_known( const bool & _arg) { this->reset_pos_to_last_known = _arg; return *this; } Type & set__reset_pos_to_gps( const bool & _arg) { this->reset_pos_to_gps = _arg; return *this; } Type & set__reset_pos_to_vision( const bool & _arg) { this->reset_pos_to_vision = _arg; return *this; } Type & set__starting_gps_fusion( const bool & _arg) { this->starting_gps_fusion = _arg; return *this; } Type & set__starting_vision_pos_fusion( const bool & _arg) { this->starting_vision_pos_fusion = _arg; return *this; } Type & set__starting_vision_vel_fusion( const bool & _arg) { this->starting_vision_vel_fusion = _arg; return *this; } Type & set__starting_vision_yaw_fusion( const bool & _arg) { this->starting_vision_yaw_fusion = _arg; return *this; } Type & set__yaw_aligned_to_imu_gps( const bool & _arg) { this->yaw_aligned_to_imu_gps = _arg; return *this; } Type & set__warning_event_changes( const uint32_t & _arg) { this->warning_event_changes = _arg; return *this; } Type & set__gps_quality_poor( const bool & _arg) { this->gps_quality_poor = _arg; return *this; } Type & set__gps_fusion_timout( const bool & _arg) { this->gps_fusion_timout = _arg; return *this; } Type & set__gps_data_stopped( const bool & _arg) { this->gps_data_stopped = _arg; return *this; } Type & set__gps_data_stopped_using_alternate( const bool & _arg) { this->gps_data_stopped_using_alternate = _arg; return *this; } Type & set__height_sensor_timeout( const bool & _arg) { this->height_sensor_timeout = _arg; return *this; } Type & set__stopping_navigation( const bool & _arg) { this->stopping_navigation = _arg; return *this; } Type & set__invalid_accel_bias_cov_reset( const bool & _arg) { this->invalid_accel_bias_cov_reset = _arg; return *this; } Type & set__bad_yaw_using_gps_course( const bool & _arg) { this->bad_yaw_using_gps_course = _arg; return *this; } Type & set__stopping_mag_use( const bool & _arg) { this->stopping_mag_use = _arg; return *this; } Type & set__vision_data_stopped( const bool & _arg) { this->vision_data_stopped = _arg; return *this; } Type & set__emergency_yaw_reset_mag_stopped( const bool & _arg) { this->emergency_yaw_reset_mag_stopped = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::EstimatorEventFlags_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::EstimatorEventFlags_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::EstimatorEventFlags_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::EstimatorEventFlags_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::EstimatorEventFlags_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::EstimatorEventFlags_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::EstimatorEventFlags_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::EstimatorEventFlags_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::EstimatorEventFlags_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::EstimatorEventFlags_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__EstimatorEventFlags std::shared_ptr<px4_msgs::msg::EstimatorEventFlags_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__EstimatorEventFlags std::shared_ptr<px4_msgs::msg::EstimatorEventFlags_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const EstimatorEventFlags_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->timestamp_sample != other.timestamp_sample) { return false; } if (this->information_event_changes != other.information_event_changes) { return false; } if (this->gps_checks_passed != other.gps_checks_passed) { return false; } if (this->reset_vel_to_gps != other.reset_vel_to_gps) { return false; } if (this->reset_vel_to_flow != other.reset_vel_to_flow) { return false; } if (this->reset_vel_to_vision != other.reset_vel_to_vision) { return false; } if (this->reset_vel_to_zero != other.reset_vel_to_zero) { return false; } if (this->reset_pos_to_last_known != other.reset_pos_to_last_known) { return false; } if (this->reset_pos_to_gps != other.reset_pos_to_gps) { return false; } if (this->reset_pos_to_vision != other.reset_pos_to_vision) { return false; } if (this->starting_gps_fusion != other.starting_gps_fusion) { return false; } if (this->starting_vision_pos_fusion != other.starting_vision_pos_fusion) { return false; } if (this->starting_vision_vel_fusion != other.starting_vision_vel_fusion) { return false; } if (this->starting_vision_yaw_fusion != other.starting_vision_yaw_fusion) { return false; } if (this->yaw_aligned_to_imu_gps != other.yaw_aligned_to_imu_gps) { return false; } if (this->warning_event_changes != other.warning_event_changes) { return false; } if (this->gps_quality_poor != other.gps_quality_poor) { return false; } if (this->gps_fusion_timout != other.gps_fusion_timout) { return false; } if (this->gps_data_stopped != other.gps_data_stopped) { return false; } if (this->gps_data_stopped_using_alternate != other.gps_data_stopped_using_alternate) { return false; } if (this->height_sensor_timeout != other.height_sensor_timeout) { return false; } if (this->stopping_navigation != other.stopping_navigation) { return false; } if (this->invalid_accel_bias_cov_reset != other.invalid_accel_bias_cov_reset) { return false; } if (this->bad_yaw_using_gps_course != other.bad_yaw_using_gps_course) { return false; } if (this->stopping_mag_use != other.stopping_mag_use) { return false; } if (this->vision_data_stopped != other.vision_data_stopped) { return false; } if (this->emergency_yaw_reset_mag_stopped != other.emergency_yaw_reset_mag_stopped) { return false; } return true; } bool operator!=(const EstimatorEventFlags_ & other) const { return !this->operator==(other); } }; // struct EstimatorEventFlags_ // alias to use template instance with default allocator using EstimatorEventFlags = px4_msgs::msg::EstimatorEventFlags_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__ESTIMATOR_EVENT_FLAGS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/gimbal_device_set_attitude__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/GimbalDeviceSetAttitude.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GIMBAL_DEVICE_SET_ATTITUDE__STRUCT_H_ #define PX4_MSGS__MSG__GIMBAL_DEVICE_SET_ATTITUDE__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'GIMBAL_DEVICE_FLAGS_RETRACT'. enum { px4_msgs__msg__GimbalDeviceSetAttitude__GIMBAL_DEVICE_FLAGS_RETRACT = 1ul }; /// Constant 'GIMBAL_DEVICE_FLAGS_NEUTRAL'. enum { px4_msgs__msg__GimbalDeviceSetAttitude__GIMBAL_DEVICE_FLAGS_NEUTRAL = 2ul }; /// Constant 'GIMBAL_DEVICE_FLAGS_ROLL_LOCK'. enum { px4_msgs__msg__GimbalDeviceSetAttitude__GIMBAL_DEVICE_FLAGS_ROLL_LOCK = 4ul }; /// Constant 'GIMBAL_DEVICE_FLAGS_PITCH_LOCK'. enum { px4_msgs__msg__GimbalDeviceSetAttitude__GIMBAL_DEVICE_FLAGS_PITCH_LOCK = 8ul }; /// Constant 'GIMBAL_DEVICE_FLAGS_YAW_LOCK'. enum { px4_msgs__msg__GimbalDeviceSetAttitude__GIMBAL_DEVICE_FLAGS_YAW_LOCK = 16ul }; // Struct defined in msg/GimbalDeviceSetAttitude in the package px4_msgs. typedef struct px4_msgs__msg__GimbalDeviceSetAttitude { uint64_t timestamp; uint8_t target_system; uint8_t target_component; uint16_t flags; float q[4]; float angular_velocity_x; float angular_velocity_y; float angular_velocity_z; } px4_msgs__msg__GimbalDeviceSetAttitude; // Struct for a sequence of px4_msgs__msg__GimbalDeviceSetAttitude. typedef struct px4_msgs__msg__GimbalDeviceSetAttitude__Sequence { px4_msgs__msg__GimbalDeviceSetAttitude * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__GimbalDeviceSetAttitude__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__GIMBAL_DEVICE_SET_ATTITUDE__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_wind__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/EstimatorWind.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/estimator_wind__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__EstimatorWind__init(px4_msgs__msg__EstimatorWind * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // windspeed_north // windspeed_east // variance_north // variance_east // tas_innov // tas_innov_var // beta_innov // beta_innov_var return true; } void px4_msgs__msg__EstimatorWind__fini(px4_msgs__msg__EstimatorWind * msg) { if (!msg) { return; } // timestamp // timestamp_sample // windspeed_north // windspeed_east // variance_north // variance_east // tas_innov // tas_innov_var // beta_innov // beta_innov_var } px4_msgs__msg__EstimatorWind * px4_msgs__msg__EstimatorWind__create() { px4_msgs__msg__EstimatorWind * msg = (px4_msgs__msg__EstimatorWind *)malloc(sizeof(px4_msgs__msg__EstimatorWind)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__EstimatorWind)); bool success = px4_msgs__msg__EstimatorWind__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__EstimatorWind__destroy(px4_msgs__msg__EstimatorWind * msg) { if (msg) { px4_msgs__msg__EstimatorWind__fini(msg); } free(msg); } bool px4_msgs__msg__EstimatorWind__Sequence__init(px4_msgs__msg__EstimatorWind__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__EstimatorWind * data = NULL; if (size) { data = (px4_msgs__msg__EstimatorWind *)calloc(size, sizeof(px4_msgs__msg__EstimatorWind)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__EstimatorWind__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__EstimatorWind__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__EstimatorWind__Sequence__fini(px4_msgs__msg__EstimatorWind__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__EstimatorWind__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__EstimatorWind__Sequence * px4_msgs__msg__EstimatorWind__Sequence__create(size_t size) { px4_msgs__msg__EstimatorWind__Sequence * array = (px4_msgs__msg__EstimatorWind__Sequence *)malloc(sizeof(px4_msgs__msg__EstimatorWind__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__EstimatorWind__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__EstimatorWind__Sequence__destroy(px4_msgs__msg__EstimatorWind__Sequence * array) { if (array) { px4_msgs__msg__EstimatorWind__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_land_detected__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/VehicleLandDetected.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_LAND_DETECTED__STRUCT_HPP_ #define PX4_MSGS__MSG__VEHICLE_LAND_DETECTED__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__VehicleLandDetected __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__VehicleLandDetected __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct VehicleLandDetected_ { using Type = VehicleLandDetected_<ContainerAllocator>; explicit VehicleLandDetected_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->alt_max = 0.0f; this->freefall = false; this->ground_contact = false; this->maybe_landed = false; this->landed = false; this->in_ground_effect = false; } } explicit VehicleLandDetected_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->alt_max = 0.0f; this->freefall = false; this->ground_contact = false; this->maybe_landed = false; this->landed = false; this->in_ground_effect = false; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _alt_max_type = float; _alt_max_type alt_max; using _freefall_type = bool; _freefall_type freefall; using _ground_contact_type = bool; _ground_contact_type ground_contact; using _maybe_landed_type = bool; _maybe_landed_type maybe_landed; using _landed_type = bool; _landed_type landed; using _in_ground_effect_type = bool; _in_ground_effect_type in_ground_effect; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__alt_max( const float & _arg) { this->alt_max = _arg; return *this; } Type & set__freefall( const bool & _arg) { this->freefall = _arg; return *this; } Type & set__ground_contact( const bool & _arg) { this->ground_contact = _arg; return *this; } Type & set__maybe_landed( const bool & _arg) { this->maybe_landed = _arg; return *this; } Type & set__landed( const bool & _arg) { this->landed = _arg; return *this; } Type & set__in_ground_effect( const bool & _arg) { this->in_ground_effect = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::VehicleLandDetected_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::VehicleLandDetected_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::VehicleLandDetected_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::VehicleLandDetected_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleLandDetected_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleLandDetected_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleLandDetected_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleLandDetected_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::VehicleLandDetected_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::VehicleLandDetected_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__VehicleLandDetected std::shared_ptr<px4_msgs::msg::VehicleLandDetected_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__VehicleLandDetected std::shared_ptr<px4_msgs::msg::VehicleLandDetected_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const VehicleLandDetected_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->alt_max != other.alt_max) { return false; } if (this->freefall != other.freefall) { return false; } if (this->ground_contact != other.ground_contact) { return false; } if (this->maybe_landed != other.maybe_landed) { return false; } if (this->landed != other.landed) { return false; } if (this->in_ground_effect != other.in_ground_effect) { return false; } return true; } bool operator!=(const VehicleLandDetected_ & other) const { return !this->operator==(other); } }; // struct VehicleLandDetected_ // alias to use template instance with default allocator using VehicleLandDetected = px4_msgs::msg::VehicleLandDetected_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__VEHICLE_LAND_DETECTED__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/debug_array__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/DebugArray.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__DEBUG_ARRAY__STRUCT_H_ #define PX4_MSGS__MSG__DEBUG_ARRAY__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'ARRAY_SIZE'. enum { px4_msgs__msg__DebugArray__ARRAY_SIZE = 58 }; // Struct defined in msg/DebugArray in the package px4_msgs. typedef struct px4_msgs__msg__DebugArray { uint64_t timestamp; uint16_t id; uint8_t name[10]; float data[58]; } px4_msgs__msg__DebugArray; // Struct for a sequence of px4_msgs__msg__DebugArray. typedef struct px4_msgs__msg__DebugArray__Sequence { px4_msgs__msg__DebugArray * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__DebugArray__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__DEBUG_ARRAY__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/qshell_req.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/QshellReq.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__QSHELL_REQ_H_ #define PX4_MSGS__MSG__QSHELL_REQ_H_ #include "px4_msgs/msg/qshell_req__struct.h" #include "px4_msgs/msg/qshell_req__functions.h" #include "px4_msgs/msg/qshell_req__type_support.h" #endif // PX4_MSGS__MSG__QSHELL_REQ_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_tecs_status.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/TecsStatus.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_TecsStatus(type): """Metaclass of message 'TecsStatus'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'TECS_MODE_NORMAL': 0, 'TECS_MODE_UNDERSPEED': 1, 'TECS_MODE_TAKEOFF': 2, 'TECS_MODE_LAND': 3, 'TECS_MODE_LAND_THROTTLELIM': 4, 'TECS_MODE_BAD_DESCENT': 5, 'TECS_MODE_CLIMBOUT': 6, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.TecsStatus') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__tecs_status cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__tecs_status cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__tecs_status cls._TYPE_SUPPORT = module.type_support_msg__msg__tecs_status cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__tecs_status @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'TECS_MODE_NORMAL': cls.__constants['TECS_MODE_NORMAL'], 'TECS_MODE_UNDERSPEED': cls.__constants['TECS_MODE_UNDERSPEED'], 'TECS_MODE_TAKEOFF': cls.__constants['TECS_MODE_TAKEOFF'], 'TECS_MODE_LAND': cls.__constants['TECS_MODE_LAND'], 'TECS_MODE_LAND_THROTTLELIM': cls.__constants['TECS_MODE_LAND_THROTTLELIM'], 'TECS_MODE_BAD_DESCENT': cls.__constants['TECS_MODE_BAD_DESCENT'], 'TECS_MODE_CLIMBOUT': cls.__constants['TECS_MODE_CLIMBOUT'], } @property def TECS_MODE_NORMAL(self): """Message constant 'TECS_MODE_NORMAL'.""" return Metaclass_TecsStatus.__constants['TECS_MODE_NORMAL'] @property def TECS_MODE_UNDERSPEED(self): """Message constant 'TECS_MODE_UNDERSPEED'.""" return Metaclass_TecsStatus.__constants['TECS_MODE_UNDERSPEED'] @property def TECS_MODE_TAKEOFF(self): """Message constant 'TECS_MODE_TAKEOFF'.""" return Metaclass_TecsStatus.__constants['TECS_MODE_TAKEOFF'] @property def TECS_MODE_LAND(self): """Message constant 'TECS_MODE_LAND'.""" return Metaclass_TecsStatus.__constants['TECS_MODE_LAND'] @property def TECS_MODE_LAND_THROTTLELIM(self): """Message constant 'TECS_MODE_LAND_THROTTLELIM'.""" return Metaclass_TecsStatus.__constants['TECS_MODE_LAND_THROTTLELIM'] @property def TECS_MODE_BAD_DESCENT(self): """Message constant 'TECS_MODE_BAD_DESCENT'.""" return Metaclass_TecsStatus.__constants['TECS_MODE_BAD_DESCENT'] @property def TECS_MODE_CLIMBOUT(self): """Message constant 'TECS_MODE_CLIMBOUT'.""" return Metaclass_TecsStatus.__constants['TECS_MODE_CLIMBOUT'] class TecsStatus(metaclass=Metaclass_TecsStatus): """ Message class 'TecsStatus'. Constants: TECS_MODE_NORMAL TECS_MODE_UNDERSPEED TECS_MODE_TAKEOFF TECS_MODE_LAND TECS_MODE_LAND_THROTTLELIM TECS_MODE_BAD_DESCENT TECS_MODE_CLIMBOUT """ __slots__ = [ '_timestamp', '_altitude_sp', '_altitude_filtered', '_height_rate_setpoint', '_height_rate', '_equivalent_airspeed_sp', '_true_airspeed_sp', '_true_airspeed_filtered', '_true_airspeed_derivative_sp', '_true_airspeed_derivative', '_total_energy_error', '_energy_distribution_error', '_total_energy_rate_error', '_energy_distribution_rate_error', '_total_energy', '_total_energy_rate', '_total_energy_balance', '_total_energy_balance_rate', '_total_energy_sp', '_total_energy_rate_sp', '_total_energy_balance_sp', '_total_energy_balance_rate_sp', '_throttle_integ', '_pitch_integ', '_throttle_sp', '_mode', ] _fields_and_field_types = { 'timestamp': 'uint64', 'altitude_sp': 'float', 'altitude_filtered': 'float', 'height_rate_setpoint': 'float', 'height_rate': 'float', 'equivalent_airspeed_sp': 'float', 'true_airspeed_sp': 'float', 'true_airspeed_filtered': 'float', 'true_airspeed_derivative_sp': 'float', 'true_airspeed_derivative': 'float', 'total_energy_error': 'float', 'energy_distribution_error': 'float', 'total_energy_rate_error': 'float', 'energy_distribution_rate_error': 'float', 'total_energy': 'float', 'total_energy_rate': 'float', 'total_energy_balance': 'float', 'total_energy_balance_rate': 'float', 'total_energy_sp': 'float', 'total_energy_rate_sp': 'float', 'total_energy_balance_sp': 'float', 'total_energy_balance_rate_sp': 'float', 'throttle_integ': 'float', 'pitch_integ': 'float', 'throttle_sp': 'float', 'mode': 'uint8', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.altitude_sp = kwargs.get('altitude_sp', float()) self.altitude_filtered = kwargs.get('altitude_filtered', float()) self.height_rate_setpoint = kwargs.get('height_rate_setpoint', float()) self.height_rate = kwargs.get('height_rate', float()) self.equivalent_airspeed_sp = kwargs.get('equivalent_airspeed_sp', float()) self.true_airspeed_sp = kwargs.get('true_airspeed_sp', float()) self.true_airspeed_filtered = kwargs.get('true_airspeed_filtered', float()) self.true_airspeed_derivative_sp = kwargs.get('true_airspeed_derivative_sp', float()) self.true_airspeed_derivative = kwargs.get('true_airspeed_derivative', float()) self.total_energy_error = kwargs.get('total_energy_error', float()) self.energy_distribution_error = kwargs.get('energy_distribution_error', float()) self.total_energy_rate_error = kwargs.get('total_energy_rate_error', float()) self.energy_distribution_rate_error = kwargs.get('energy_distribution_rate_error', float()) self.total_energy = kwargs.get('total_energy', float()) self.total_energy_rate = kwargs.get('total_energy_rate', float()) self.total_energy_balance = kwargs.get('total_energy_balance', float()) self.total_energy_balance_rate = kwargs.get('total_energy_balance_rate', float()) self.total_energy_sp = kwargs.get('total_energy_sp', float()) self.total_energy_rate_sp = kwargs.get('total_energy_rate_sp', float()) self.total_energy_balance_sp = kwargs.get('total_energy_balance_sp', float()) self.total_energy_balance_rate_sp = kwargs.get('total_energy_balance_rate_sp', float()) self.throttle_integ = kwargs.get('throttle_integ', float()) self.pitch_integ = kwargs.get('pitch_integ', float()) self.throttle_sp = kwargs.get('throttle_sp', float()) self.mode = kwargs.get('mode', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.altitude_sp != other.altitude_sp: return False if self.altitude_filtered != other.altitude_filtered: return False if self.height_rate_setpoint != other.height_rate_setpoint: return False if self.height_rate != other.height_rate: return False if self.equivalent_airspeed_sp != other.equivalent_airspeed_sp: return False if self.true_airspeed_sp != other.true_airspeed_sp: return False if self.true_airspeed_filtered != other.true_airspeed_filtered: return False if self.true_airspeed_derivative_sp != other.true_airspeed_derivative_sp: return False if self.true_airspeed_derivative != other.true_airspeed_derivative: return False if self.total_energy_error != other.total_energy_error: return False if self.energy_distribution_error != other.energy_distribution_error: return False if self.total_energy_rate_error != other.total_energy_rate_error: return False if self.energy_distribution_rate_error != other.energy_distribution_rate_error: return False if self.total_energy != other.total_energy: return False if self.total_energy_rate != other.total_energy_rate: return False if self.total_energy_balance != other.total_energy_balance: return False if self.total_energy_balance_rate != other.total_energy_balance_rate: return False if self.total_energy_sp != other.total_energy_sp: return False if self.total_energy_rate_sp != other.total_energy_rate_sp: return False if self.total_energy_balance_sp != other.total_energy_balance_sp: return False if self.total_energy_balance_rate_sp != other.total_energy_balance_rate_sp: return False if self.throttle_integ != other.throttle_integ: return False if self.pitch_integ != other.pitch_integ: return False if self.throttle_sp != other.throttle_sp: return False if self.mode != other.mode: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def altitude_sp(self): """Message field 'altitude_sp'.""" return self._altitude_sp @altitude_sp.setter def altitude_sp(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'altitude_sp' field must be of type 'float'" self._altitude_sp = value @property def altitude_filtered(self): """Message field 'altitude_filtered'.""" return self._altitude_filtered @altitude_filtered.setter def altitude_filtered(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'altitude_filtered' field must be of type 'float'" self._altitude_filtered = value @property def height_rate_setpoint(self): """Message field 'height_rate_setpoint'.""" return self._height_rate_setpoint @height_rate_setpoint.setter def height_rate_setpoint(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'height_rate_setpoint' field must be of type 'float'" self._height_rate_setpoint = value @property def height_rate(self): """Message field 'height_rate'.""" return self._height_rate @height_rate.setter def height_rate(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'height_rate' field must be of type 'float'" self._height_rate = value @property def equivalent_airspeed_sp(self): """Message field 'equivalent_airspeed_sp'.""" return self._equivalent_airspeed_sp @equivalent_airspeed_sp.setter def equivalent_airspeed_sp(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'equivalent_airspeed_sp' field must be of type 'float'" self._equivalent_airspeed_sp = value @property def true_airspeed_sp(self): """Message field 'true_airspeed_sp'.""" return self._true_airspeed_sp @true_airspeed_sp.setter def true_airspeed_sp(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'true_airspeed_sp' field must be of type 'float'" self._true_airspeed_sp = value @property def true_airspeed_filtered(self): """Message field 'true_airspeed_filtered'.""" return self._true_airspeed_filtered @true_airspeed_filtered.setter def true_airspeed_filtered(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'true_airspeed_filtered' field must be of type 'float'" self._true_airspeed_filtered = value @property def true_airspeed_derivative_sp(self): """Message field 'true_airspeed_derivative_sp'.""" return self._true_airspeed_derivative_sp @true_airspeed_derivative_sp.setter def true_airspeed_derivative_sp(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'true_airspeed_derivative_sp' field must be of type 'float'" self._true_airspeed_derivative_sp = value @property def true_airspeed_derivative(self): """Message field 'true_airspeed_derivative'.""" return self._true_airspeed_derivative @true_airspeed_derivative.setter def true_airspeed_derivative(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'true_airspeed_derivative' field must be of type 'float'" self._true_airspeed_derivative = value @property def total_energy_error(self): """Message field 'total_energy_error'.""" return self._total_energy_error @total_energy_error.setter def total_energy_error(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'total_energy_error' field must be of type 'float'" self._total_energy_error = value @property def energy_distribution_error(self): """Message field 'energy_distribution_error'.""" return self._energy_distribution_error @energy_distribution_error.setter def energy_distribution_error(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'energy_distribution_error' field must be of type 'float'" self._energy_distribution_error = value @property def total_energy_rate_error(self): """Message field 'total_energy_rate_error'.""" return self._total_energy_rate_error @total_energy_rate_error.setter def total_energy_rate_error(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'total_energy_rate_error' field must be of type 'float'" self._total_energy_rate_error = value @property def energy_distribution_rate_error(self): """Message field 'energy_distribution_rate_error'.""" return self._energy_distribution_rate_error @energy_distribution_rate_error.setter def energy_distribution_rate_error(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'energy_distribution_rate_error' field must be of type 'float'" self._energy_distribution_rate_error = value @property def total_energy(self): """Message field 'total_energy'.""" return self._total_energy @total_energy.setter def total_energy(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'total_energy' field must be of type 'float'" self._total_energy = value @property def total_energy_rate(self): """Message field 'total_energy_rate'.""" return self._total_energy_rate @total_energy_rate.setter def total_energy_rate(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'total_energy_rate' field must be of type 'float'" self._total_energy_rate = value @property def total_energy_balance(self): """Message field 'total_energy_balance'.""" return self._total_energy_balance @total_energy_balance.setter def total_energy_balance(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'total_energy_balance' field must be of type 'float'" self._total_energy_balance = value @property def total_energy_balance_rate(self): """Message field 'total_energy_balance_rate'.""" return self._total_energy_balance_rate @total_energy_balance_rate.setter def total_energy_balance_rate(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'total_energy_balance_rate' field must be of type 'float'" self._total_energy_balance_rate = value @property def total_energy_sp(self): """Message field 'total_energy_sp'.""" return self._total_energy_sp @total_energy_sp.setter def total_energy_sp(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'total_energy_sp' field must be of type 'float'" self._total_energy_sp = value @property def total_energy_rate_sp(self): """Message field 'total_energy_rate_sp'.""" return self._total_energy_rate_sp @total_energy_rate_sp.setter def total_energy_rate_sp(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'total_energy_rate_sp' field must be of type 'float'" self._total_energy_rate_sp = value @property def total_energy_balance_sp(self): """Message field 'total_energy_balance_sp'.""" return self._total_energy_balance_sp @total_energy_balance_sp.setter def total_energy_balance_sp(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'total_energy_balance_sp' field must be of type 'float'" self._total_energy_balance_sp = value @property def total_energy_balance_rate_sp(self): """Message field 'total_energy_balance_rate_sp'.""" return self._total_energy_balance_rate_sp @total_energy_balance_rate_sp.setter def total_energy_balance_rate_sp(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'total_energy_balance_rate_sp' field must be of type 'float'" self._total_energy_balance_rate_sp = value @property def throttle_integ(self): """Message field 'throttle_integ'.""" return self._throttle_integ @throttle_integ.setter def throttle_integ(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'throttle_integ' field must be of type 'float'" self._throttle_integ = value @property def pitch_integ(self): """Message field 'pitch_integ'.""" return self._pitch_integ @pitch_integ.setter def pitch_integ(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'pitch_integ' field must be of type 'float'" self._pitch_integ = value @property def throttle_sp(self): """Message field 'throttle_sp'.""" return self._throttle_sp @throttle_sp.setter def throttle_sp(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'throttle_sp' field must be of type 'float'" self._throttle_sp = value @property def mode(self): """Message field 'mode'.""" return self._mode @mode.setter def mode(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'mode' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'mode' field must be an unsigned integer in [0, 255]" self._mode = value <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h // generated from // rosidl_typesupport_fastrtps_c/resource/rosidl_typesupport_fastrtps_c__visibility_control.h.in // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ROSIDL_TYPESUPPORT_FASTRTPS_C__VISIBILITY_CONTROL_H_ #define PX4_MSGS__MSG__ROSIDL_TYPESUPPORT_FASTRTPS_C__VISIBILITY_CONTROL_H_ #if __cplusplus extern "C" { #endif // This logic was borrowed (then namespaced) from the examples on the gcc wiki: // https://gcc.gnu.org/wiki/Visibility #if defined _WIN32 || defined __CYGWIN__ #ifdef __GNUC__ #define ROSIDL_TYPESUPPORT_FASTRTPS_C_EXPORT_px4_msgs __attribute__ ((dllexport)) #define ROSIDL_TYPESUPPORT_FASTRTPS_C_IMPORT_px4_msgs __attribute__ ((dllimport)) #else #define ROSIDL_TYPESUPPORT_FASTRTPS_C_EXPORT_px4_msgs __declspec(dllexport) #define ROSIDL_TYPESUPPORT_FASTRTPS_C_IMPORT_px4_msgs __declspec(dllimport) #endif #ifdef ROSIDL_TYPESUPPORT_FASTRTPS_C_BUILDING_DLL_px4_msgs #define ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs ROSIDL_TYPESUPPORT_FASTRTPS_C_EXPORT_px4_msgs #else #define ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs ROSIDL_TYPESUPPORT_FASTRTPS_C_IMPORT_px4_msgs #endif #else #define ROSIDL_TYPESUPPORT_FASTRTPS_C_EXPORT_px4_msgs __attribute__ ((visibility("default"))) #define ROSIDL_TYPESUPPORT_FASTRTPS_C_IMPORT_px4_msgs #if __GNUC__ >= 4 #define ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs __attribute__ ((visibility("default"))) #else #define ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs #endif #endif #if __cplusplus } #endif #endif // PX4_MSGS__MSG__ROSIDL_TYPESUPPORT_FASTRTPS_C__VISIBILITY_CONTROL_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/position_controller_status.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__POSITION_CONTROLLER_STATUS_HPP_ #define PX4_MSGS__MSG__POSITION_CONTROLLER_STATUS_HPP_ #include "px4_msgs/msg/position_controller_status__struct.hpp" #include "px4_msgs/msg/position_controller_status__traits.hpp" #endif // PX4_MSGS__MSG__POSITION_CONTROLLER_STATUS_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_controls5.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/ActuatorControls5.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS5_H_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS5_H_ #include "px4_msgs/msg/actuator_controls5__struct.h" #include "px4_msgs/msg/actuator_controls5__functions.h" #include "px4_msgs/msg/actuator_controls5__type_support.h" #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS5_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/led_control__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/LedControl.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__LED_CONTROL__STRUCT_H_ #define PX4_MSGS__MSG__LED_CONTROL__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'COLOR_OFF'. enum { px4_msgs__msg__LedControl__COLOR_OFF = 0 }; /// Constant 'COLOR_RED'. enum { px4_msgs__msg__LedControl__COLOR_RED = 1 }; /// Constant 'COLOR_GREEN'. enum { px4_msgs__msg__LedControl__COLOR_GREEN = 2 }; /// Constant 'COLOR_BLUE'. enum { px4_msgs__msg__LedControl__COLOR_BLUE = 3 }; /// Constant 'COLOR_YELLOW'. enum { px4_msgs__msg__LedControl__COLOR_YELLOW = 4 }; /// Constant 'COLOR_PURPLE'. enum { px4_msgs__msg__LedControl__COLOR_PURPLE = 5 }; /// Constant 'COLOR_AMBER'. enum { px4_msgs__msg__LedControl__COLOR_AMBER = 6 }; /// Constant 'COLOR_CYAN'. enum { px4_msgs__msg__LedControl__COLOR_CYAN = 7 }; /// Constant 'COLOR_WHITE'. enum { px4_msgs__msg__LedControl__COLOR_WHITE = 8 }; /// Constant 'MODE_OFF'. enum { px4_msgs__msg__LedControl__MODE_OFF = 0 }; /// Constant 'MODE_ON'. enum { px4_msgs__msg__LedControl__MODE_ON = 1 }; /// Constant 'MODE_DISABLED'. enum { px4_msgs__msg__LedControl__MODE_DISABLED = 2 }; /// Constant 'MODE_BLINK_SLOW'. enum { px4_msgs__msg__LedControl__MODE_BLINK_SLOW = 3 }; /// Constant 'MODE_BLINK_NORMAL'. enum { px4_msgs__msg__LedControl__MODE_BLINK_NORMAL = 4 }; /// Constant 'MODE_BLINK_FAST'. enum { px4_msgs__msg__LedControl__MODE_BLINK_FAST = 5 }; /// Constant 'MODE_BREATHE'. enum { px4_msgs__msg__LedControl__MODE_BREATHE = 6 }; /// Constant 'MODE_FLASH'. enum { px4_msgs__msg__LedControl__MODE_FLASH = 7 }; /// Constant 'MAX_PRIORITY'. enum { px4_msgs__msg__LedControl__MAX_PRIORITY = 2 }; /// Constant 'ORB_QUEUE_LENGTH'. enum { px4_msgs__msg__LedControl__ORB_QUEUE_LENGTH = 8 }; // Struct defined in msg/LedControl in the package px4_msgs. typedef struct px4_msgs__msg__LedControl { uint64_t timestamp; uint8_t led_mask; uint8_t color; uint8_t mode; uint8_t num_blinks; uint8_t priority; } px4_msgs__msg__LedControl; // Struct for a sequence of px4_msgs__msg__LedControl. typedef struct px4_msgs__msg__LedControl__Sequence { px4_msgs__msg__LedControl * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__LedControl__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__LED_CONTROL__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_global_position.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_GLOBAL_POSITION_HPP_ #define PX4_MSGS__MSG__VEHICLE_GLOBAL_POSITION_HPP_ #include "px4_msgs/msg/vehicle_global_position__struct.hpp" #include "px4_msgs/msg/vehicle_global_position__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_GLOBAL_POSITION_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/sensor_mag.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_MAG_HPP_ #define PX4_MSGS__MSG__SENSOR_MAG_HPP_ #include "px4_msgs/msg/sensor_mag__struct.hpp" #include "px4_msgs/msg/sensor_mag__traits.hpp" #endif // PX4_MSGS__MSG__SENSOR_MAG_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_status_flags__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleStatusFlags.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_STATUS_FLAGS__STRUCT_H_ #define PX4_MSGS__MSG__VEHICLE_STATUS_FLAGS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/VehicleStatusFlags in the package px4_msgs. typedef struct px4_msgs__msg__VehicleStatusFlags { uint64_t timestamp; bool condition_calibration_enabled; bool condition_system_sensors_initialized; bool condition_system_hotplug_timeout; bool condition_system_returned_to_home; bool condition_auto_mission_available; bool condition_angular_velocity_valid; bool condition_attitude_valid; bool condition_local_altitude_valid; bool condition_local_position_valid; bool condition_local_velocity_valid; bool condition_global_position_valid; bool condition_home_position_valid; bool condition_power_input_valid; bool condition_battery_healthy; bool condition_escs_error; bool condition_escs_failure; bool circuit_breaker_engaged_power_check; bool circuit_breaker_engaged_airspd_check; bool circuit_breaker_engaged_enginefailure_check; bool circuit_breaker_flight_termination_disabled; bool circuit_breaker_engaged_usb_check; bool circuit_breaker_engaged_posfailure_check; bool circuit_breaker_vtol_fw_arming_check; bool offboard_control_signal_found_once; bool offboard_control_signal_lost; bool rc_signal_found_once; bool rc_input_blocked; bool rc_calibration_valid; bool vtol_transition_failure; bool usb_connected; bool sd_card_detected_once; bool avoidance_system_required; bool avoidance_system_valid; } px4_msgs__msg__VehicleStatusFlags; // Struct for a sequence of px4_msgs__msg__VehicleStatusFlags. typedef struct px4_msgs__msg__VehicleStatusFlags__Sequence { px4_msgs__msg__VehicleStatusFlags * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__VehicleStatusFlags__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_STATUS_FLAGS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/airspeed.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/Airspeed.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__AIRSPEED_H_ #define PX4_MSGS__MSG__AIRSPEED_H_ #include "px4_msgs/msg/airspeed__struct.h" #include "px4_msgs/msg/airspeed__functions.h" #include "px4_msgs/msg/airspeed__type_support.h" #endif // PX4_MSGS__MSG__AIRSPEED_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/tecs_status__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/TecsStatus.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/tecs_status__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/tecs_status__functions.h" #include "px4_msgs/msg/tecs_status__struct.h" #ifdef __cplusplus extern "C" { #endif void TecsStatus__rosidl_typesupport_introspection_c__TecsStatus_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__TecsStatus__init(message_memory); } void TecsStatus__rosidl_typesupport_introspection_c__TecsStatus_fini_function(void * message_memory) { px4_msgs__msg__TecsStatus__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember TecsStatus__rosidl_typesupport_introspection_c__TecsStatus_message_member_array[26] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TecsStatus, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "altitude_sp", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TecsStatus, altitude_sp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "altitude_filtered", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TecsStatus, altitude_filtered), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "height_rate_setpoint", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TecsStatus, height_rate_setpoint), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "height_rate", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TecsStatus, height_rate), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "equivalent_airspeed_sp", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TecsStatus, equivalent_airspeed_sp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "true_airspeed_sp", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TecsStatus, true_airspeed_sp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "true_airspeed_filtered", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TecsStatus, true_airspeed_filtered), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "true_airspeed_derivative_sp", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TecsStatus, true_airspeed_derivative_sp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "true_airspeed_derivative", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TecsStatus, true_airspeed_derivative), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "total_energy_error", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TecsStatus, total_energy_error), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "energy_distribution_error", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TecsStatus, energy_distribution_error), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "total_energy_rate_error", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TecsStatus, total_energy_rate_error), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "energy_distribution_rate_error", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TecsStatus, energy_distribution_rate_error), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "total_energy", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TecsStatus, total_energy), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "total_energy_rate", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TecsStatus, total_energy_rate), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "total_energy_balance", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TecsStatus, total_energy_balance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "total_energy_balance_rate", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TecsStatus, total_energy_balance_rate), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "total_energy_sp", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TecsStatus, total_energy_sp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "total_energy_rate_sp", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TecsStatus, total_energy_rate_sp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "total_energy_balance_sp", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TecsStatus, total_energy_balance_sp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "total_energy_balance_rate_sp", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TecsStatus, total_energy_balance_rate_sp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "throttle_integ", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TecsStatus, throttle_integ), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "pitch_integ", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TecsStatus, pitch_integ), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "throttle_sp", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TecsStatus, throttle_sp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "mode", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TecsStatus, mode), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers TecsStatus__rosidl_typesupport_introspection_c__TecsStatus_message_members = { "px4_msgs__msg", // message namespace "TecsStatus", // message name 26, // number of fields sizeof(px4_msgs__msg__TecsStatus), TecsStatus__rosidl_typesupport_introspection_c__TecsStatus_message_member_array, // message members TecsStatus__rosidl_typesupport_introspection_c__TecsStatus_init_function, // function to initialize message memory (memory has to be allocated) TecsStatus__rosidl_typesupport_introspection_c__TecsStatus_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t TecsStatus__rosidl_typesupport_introspection_c__TecsStatus_message_type_support_handle = { 0, &TecsStatus__rosidl_typesupport_introspection_c__TecsStatus_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, TecsStatus)() { if (!TecsStatus__rosidl_typesupport_introspection_c__TecsStatus_message_type_support_handle.typesupport_identifier) { TecsStatus__rosidl_typesupport_introspection_c__TecsStatus_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &TecsStatus__rosidl_typesupport_introspection_c__TecsStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/ulog_stream__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/UlogStream.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/ulog_stream__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__UlogStream__init(px4_msgs__msg__UlogStream * msg) { if (!msg) { return false; } // timestamp // length // first_message_offset // msg_sequence // flags // data return true; } void px4_msgs__msg__UlogStream__fini(px4_msgs__msg__UlogStream * msg) { if (!msg) { return; } // timestamp // length // first_message_offset // msg_sequence // flags // data } px4_msgs__msg__UlogStream * px4_msgs__msg__UlogStream__create() { px4_msgs__msg__UlogStream * msg = (px4_msgs__msg__UlogStream *)malloc(sizeof(px4_msgs__msg__UlogStream)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__UlogStream)); bool success = px4_msgs__msg__UlogStream__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__UlogStream__destroy(px4_msgs__msg__UlogStream * msg) { if (msg) { px4_msgs__msg__UlogStream__fini(msg); } free(msg); } bool px4_msgs__msg__UlogStream__Sequence__init(px4_msgs__msg__UlogStream__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__UlogStream * data = NULL; if (size) { data = (px4_msgs__msg__UlogStream *)calloc(size, sizeof(px4_msgs__msg__UlogStream)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__UlogStream__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__UlogStream__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__UlogStream__Sequence__fini(px4_msgs__msg__UlogStream__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__UlogStream__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__UlogStream__Sequence * px4_msgs__msg__UlogStream__Sequence__create(size_t size) { px4_msgs__msg__UlogStream__Sequence * array = (px4_msgs__msg__UlogStream__Sequence *)malloc(sizeof(px4_msgs__msg__UlogStream__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__UlogStream__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__UlogStream__Sequence__destroy(px4_msgs__msg__UlogStream__Sequence * array) { if (array) { px4_msgs__msg__UlogStream__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_attitude__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/GimbalManagerSetAttitude.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GIMBAL_MANAGER_SET_ATTITUDE__STRUCT_H_ #define PX4_MSGS__MSG__GIMBAL_MANAGER_SET_ATTITUDE__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'GIMBAL_MANAGER_FLAGS_RETRACT'. enum { px4_msgs__msg__GimbalManagerSetAttitude__GIMBAL_MANAGER_FLAGS_RETRACT = 1ul }; /// Constant 'GIMBAL_MANAGER_FLAGS_NEUTRAL'. enum { px4_msgs__msg__GimbalManagerSetAttitude__GIMBAL_MANAGER_FLAGS_NEUTRAL = 2ul }; /// Constant 'GIMBAL_MANAGER_FLAGS_ROLL_LOCK'. enum { px4_msgs__msg__GimbalManagerSetAttitude__GIMBAL_MANAGER_FLAGS_ROLL_LOCK = 4ul }; /// Constant 'GIMBAL_MANAGER_FLAGS_PITCH_LOCK'. enum { px4_msgs__msg__GimbalManagerSetAttitude__GIMBAL_MANAGER_FLAGS_PITCH_LOCK = 8ul }; /// Constant 'GIMBAL_MANAGER_FLAGS_YAW_LOCK'. enum { px4_msgs__msg__GimbalManagerSetAttitude__GIMBAL_MANAGER_FLAGS_YAW_LOCK = 16ul }; // Struct defined in msg/GimbalManagerSetAttitude in the package px4_msgs. typedef struct px4_msgs__msg__GimbalManagerSetAttitude { uint64_t timestamp; uint8_t origin_sysid; uint8_t origin_compid; uint8_t target_system; uint8_t target_component; uint32_t flags; uint8_t gimbal_device_id; float q[4]; float angular_velocity_x; float angular_velocity_y; float angular_velocity_z; } px4_msgs__msg__GimbalManagerSetAttitude; // Struct for a sequence of px4_msgs__msg__GimbalManagerSetAttitude. typedef struct px4_msgs__msg__GimbalManagerSetAttitude__Sequence { px4_msgs__msg__GimbalManagerSetAttitude * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__GimbalManagerSetAttitude__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__GIMBAL_MANAGER_SET_ATTITUDE__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/geofence_result.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/GeofenceResult.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GEOFENCE_RESULT_H_ #define PX4_MSGS__MSG__GEOFENCE_RESULT_H_ #include "px4_msgs/msg/geofence_result__struct.h" #include "px4_msgs/msg/geofence_result__functions.h" #include "px4_msgs/msg/geofence_result__type_support.h" #endif // PX4_MSGS__MSG__GEOFENCE_RESULT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/led_control__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/LedControl.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/led_control__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/led_control__struct.h" #include "px4_msgs/msg/led_control__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _LedControl__ros_msg_type = px4_msgs__msg__LedControl; static bool _LedControl__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _LedControl__ros_msg_type * ros_message = static_cast<const _LedControl__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: led_mask { cdr << ros_message->led_mask; } // Field name: color { cdr << ros_message->color; } // Field name: mode { cdr << ros_message->mode; } // Field name: num_blinks { cdr << ros_message->num_blinks; } // Field name: priority { cdr << ros_message->priority; } return true; } static bool _LedControl__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _LedControl__ros_msg_type * ros_message = static_cast<_LedControl__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: led_mask { cdr >> ros_message->led_mask; } // Field name: color { cdr >> ros_message->color; } // Field name: mode { cdr >> ros_message->mode; } // Field name: num_blinks { cdr >> ros_message->num_blinks; } // Field name: priority { cdr >> ros_message->priority; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__LedControl( const void * untyped_ros_message, size_t current_alignment) { const _LedControl__ros_msg_type * ros_message = static_cast<const _LedControl__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name led_mask { size_t item_size = sizeof(ros_message->led_mask); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name color { size_t item_size = sizeof(ros_message->color); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name mode { size_t item_size = sizeof(ros_message->mode); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name num_blinks { size_t item_size = sizeof(ros_message->num_blinks); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name priority { size_t item_size = sizeof(ros_message->priority); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _LedControl__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__LedControl( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__LedControl( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: led_mask { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: color { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: mode { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: num_blinks { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: priority { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _LedControl__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__LedControl( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_LedControl = { "px4_msgs::msg", "LedControl", _LedControl__cdr_serialize, _LedControl__cdr_deserialize, _LedControl__get_serialized_size, _LedControl__max_serialized_size }; static rosidl_message_type_support_t _LedControl__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_LedControl, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, LedControl)() { return &_LedControl__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/navigator_mission_item__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/NavigatorMissionItem.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/navigator_mission_item__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/navigator_mission_item__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::NavigatorMissionItem & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: instance_count cdr << ros_message.instance_count; // Member: sequence_current cdr << ros_message.sequence_current; // Member: nav_cmd cdr << ros_message.nav_cmd; // Member: latitude cdr << ros_message.latitude; // Member: longitude cdr << ros_message.longitude; // Member: time_inside cdr << ros_message.time_inside; // Member: acceptance_radius cdr << ros_message.acceptance_radius; // Member: loiter_radius cdr << ros_message.loiter_radius; // Member: yaw cdr << ros_message.yaw; // Member: altitude cdr << ros_message.altitude; // Member: frame cdr << ros_message.frame; // Member: origin cdr << ros_message.origin; // Member: loiter_exit_xtrack cdr << (ros_message.loiter_exit_xtrack ? true : false); // Member: force_heading cdr << (ros_message.force_heading ? true : false); // Member: altitude_is_relative cdr << (ros_message.altitude_is_relative ? true : false); // Member: autocontinue cdr << (ros_message.autocontinue ? true : false); // Member: vtol_back_transition cdr << (ros_message.vtol_back_transition ? true : false); return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::NavigatorMissionItem & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: instance_count cdr >> ros_message.instance_count; // Member: sequence_current cdr >> ros_message.sequence_current; // Member: nav_cmd cdr >> ros_message.nav_cmd; // Member: latitude cdr >> ros_message.latitude; // Member: longitude cdr >> ros_message.longitude; // Member: time_inside cdr >> ros_message.time_inside; // Member: acceptance_radius cdr >> ros_message.acceptance_radius; // Member: loiter_radius cdr >> ros_message.loiter_radius; // Member: yaw cdr >> ros_message.yaw; // Member: altitude cdr >> ros_message.altitude; // Member: frame cdr >> ros_message.frame; // Member: origin cdr >> ros_message.origin; // Member: loiter_exit_xtrack { uint8_t tmp; cdr >> tmp; ros_message.loiter_exit_xtrack = tmp ? true : false; } // Member: force_heading { uint8_t tmp; cdr >> tmp; ros_message.force_heading = tmp ? true : false; } // Member: altitude_is_relative { uint8_t tmp; cdr >> tmp; ros_message.altitude_is_relative = tmp ? true : false; } // Member: autocontinue { uint8_t tmp; cdr >> tmp; ros_message.autocontinue = tmp ? true : false; } // Member: vtol_back_transition { uint8_t tmp; cdr >> tmp; ros_message.vtol_back_transition = tmp ? true : false; } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::NavigatorMissionItem & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: instance_count { size_t item_size = sizeof(ros_message.instance_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: sequence_current { size_t item_size = sizeof(ros_message.sequence_current); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: nav_cmd { size_t item_size = sizeof(ros_message.nav_cmd); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: latitude { size_t item_size = sizeof(ros_message.latitude); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: longitude { size_t item_size = sizeof(ros_message.longitude); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: time_inside { size_t item_size = sizeof(ros_message.time_inside); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: acceptance_radius { size_t item_size = sizeof(ros_message.acceptance_radius); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: loiter_radius { size_t item_size = sizeof(ros_message.loiter_radius); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: yaw { size_t item_size = sizeof(ros_message.yaw); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: altitude { size_t item_size = sizeof(ros_message.altitude); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: frame { size_t item_size = sizeof(ros_message.frame); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: origin { size_t item_size = sizeof(ros_message.origin); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: loiter_exit_xtrack { size_t item_size = sizeof(ros_message.loiter_exit_xtrack); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: force_heading { size_t item_size = sizeof(ros_message.force_heading); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: altitude_is_relative { size_t item_size = sizeof(ros_message.altitude_is_relative); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: autocontinue { size_t item_size = sizeof(ros_message.autocontinue); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: vtol_back_transition { size_t item_size = sizeof(ros_message.vtol_back_transition); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_NavigatorMissionItem( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: instance_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: sequence_current { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: nav_cmd { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: latitude { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: longitude { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: time_inside { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: acceptance_radius { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: loiter_radius { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: yaw { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: altitude { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: frame { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: origin { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: loiter_exit_xtrack { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: force_heading { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: altitude_is_relative { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: autocontinue { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: vtol_back_transition { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _NavigatorMissionItem__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::NavigatorMissionItem *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _NavigatorMissionItem__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::NavigatorMissionItem *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _NavigatorMissionItem__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::NavigatorMissionItem *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _NavigatorMissionItem__max_serialized_size(bool & full_bounded) { return max_serialized_size_NavigatorMissionItem(full_bounded, 0); } static message_type_support_callbacks_t _NavigatorMissionItem__callbacks = { "px4_msgs::msg", "NavigatorMissionItem", _NavigatorMissionItem__cdr_serialize, _NavigatorMissionItem__cdr_deserialize, _NavigatorMissionItem__get_serialized_size, _NavigatorMissionItem__max_serialized_size }; static rosidl_message_type_support_t _NavigatorMissionItem__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_NavigatorMissionItem__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::NavigatorMissionItem>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_NavigatorMissionItem__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, NavigatorMissionItem)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_NavigatorMissionItem__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/landing_target_pose.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/LandingTargetPose.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__LANDING_TARGET_POSE_H_ #define PX4_MSGS__MSG__LANDING_TARGET_POSE_H_ #include "px4_msgs/msg/landing_target_pose__struct.h" #include "px4_msgs/msg/landing_target_pose__functions.h" #include "px4_msgs/msg/landing_target_pose__type_support.h" #endif // PX4_MSGS__MSG__LANDING_TARGET_POSE_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_thrust_setpoint.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleThrustSetpoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_THRUST_SETPOINT_H_ #define PX4_MSGS__MSG__VEHICLE_THRUST_SETPOINT_H_ #include "px4_msgs/msg/vehicle_thrust_setpoint__struct.h" #include "px4_msgs/msg/vehicle_thrust_setpoint__functions.h" #include "px4_msgs/msg/vehicle_thrust_setpoint__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_THRUST_SETPOINT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_report__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/CollisionReport.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/collision_report__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/collision_report__struct.h" #include "px4_msgs/msg/collision_report__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _CollisionReport__ros_msg_type = px4_msgs__msg__CollisionReport; static bool _CollisionReport__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _CollisionReport__ros_msg_type * ros_message = static_cast<const _CollisionReport__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: src { cdr << ros_message->src; } // Field name: id { cdr << ros_message->id; } // Field name: action { cdr << ros_message->action; } // Field name: threat_level { cdr << ros_message->threat_level; } // Field name: time_to_minimum_delta { cdr << ros_message->time_to_minimum_delta; } // Field name: altitude_minimum_delta { cdr << ros_message->altitude_minimum_delta; } // Field name: horizontal_minimum_delta { cdr << ros_message->horizontal_minimum_delta; } return true; } static bool _CollisionReport__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _CollisionReport__ros_msg_type * ros_message = static_cast<_CollisionReport__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: src { cdr >> ros_message->src; } // Field name: id { cdr >> ros_message->id; } // Field name: action { cdr >> ros_message->action; } // Field name: threat_level { cdr >> ros_message->threat_level; } // Field name: time_to_minimum_delta { cdr >> ros_message->time_to_minimum_delta; } // Field name: altitude_minimum_delta { cdr >> ros_message->altitude_minimum_delta; } // Field name: horizontal_minimum_delta { cdr >> ros_message->horizontal_minimum_delta; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__CollisionReport( const void * untyped_ros_message, size_t current_alignment) { const _CollisionReport__ros_msg_type * ros_message = static_cast<const _CollisionReport__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name src { size_t item_size = sizeof(ros_message->src); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name id { size_t item_size = sizeof(ros_message->id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name action { size_t item_size = sizeof(ros_message->action); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name threat_level { size_t item_size = sizeof(ros_message->threat_level); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name time_to_minimum_delta { size_t item_size = sizeof(ros_message->time_to_minimum_delta); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name altitude_minimum_delta { size_t item_size = sizeof(ros_message->altitude_minimum_delta); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name horizontal_minimum_delta { size_t item_size = sizeof(ros_message->horizontal_minimum_delta); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _CollisionReport__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__CollisionReport( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__CollisionReport( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: src { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: action { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: threat_level { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: time_to_minimum_delta { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: altitude_minimum_delta { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: horizontal_minimum_delta { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _CollisionReport__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__CollisionReport( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_CollisionReport = { "px4_msgs::msg", "CollisionReport", _CollisionReport__cdr_serialize, _CollisionReport__cdr_deserialize, _CollisionReport__get_serialized_size, _CollisionReport__max_serialized_size }; static rosidl_message_type_support_t _CollisionReport__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_CollisionReport, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, CollisionReport)() { return &_CollisionReport__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_parameter_update.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/ParameterUpdate.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_ParameterUpdate(type): """Metaclass of message 'ParameterUpdate'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.ParameterUpdate') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__parameter_update cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__parameter_update cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__parameter_update cls._TYPE_SUPPORT = module.type_support_msg__msg__parameter_update cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__parameter_update @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class ParameterUpdate(metaclass=Metaclass_ParameterUpdate): """Message class 'ParameterUpdate'.""" __slots__ = [ '_timestamp', '_instance', '_get_count', '_set_count', '_find_count', '_export_count', '_active', '_changed', '_custom_default', ] _fields_and_field_types = { 'timestamp': 'uint64', 'instance': 'uint32', 'get_count': 'uint32', 'set_count': 'uint32', 'find_count': 'uint32', 'export_count': 'uint32', 'active': 'uint16', 'changed': 'uint16', 'custom_default': 'uint16', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.instance = kwargs.get('instance', int()) self.get_count = kwargs.get('get_count', int()) self.set_count = kwargs.get('set_count', int()) self.find_count = kwargs.get('find_count', int()) self.export_count = kwargs.get('export_count', int()) self.active = kwargs.get('active', int()) self.changed = kwargs.get('changed', int()) self.custom_default = kwargs.get('custom_default', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.instance != other.instance: return False if self.get_count != other.get_count: return False if self.set_count != other.set_count: return False if self.find_count != other.find_count: return False if self.export_count != other.export_count: return False if self.active != other.active: return False if self.changed != other.changed: return False if self.custom_default != other.custom_default: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def instance(self): """Message field 'instance'.""" return self._instance @instance.setter def instance(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'instance' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'instance' field must be an unsigned integer in [0, 4294967295]" self._instance = value @property def get_count(self): """Message field 'get_count'.""" return self._get_count @get_count.setter def get_count(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'get_count' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'get_count' field must be an unsigned integer in [0, 4294967295]" self._get_count = value @property def set_count(self): """Message field 'set_count'.""" return self._set_count @set_count.setter def set_count(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'set_count' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'set_count' field must be an unsigned integer in [0, 4294967295]" self._set_count = value @property def find_count(self): """Message field 'find_count'.""" return self._find_count @find_count.setter def find_count(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'find_count' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'find_count' field must be an unsigned integer in [0, 4294967295]" self._find_count = value @property def export_count(self): """Message field 'export_count'.""" return self._export_count @export_count.setter def export_count(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'export_count' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'export_count' field must be an unsigned integer in [0, 4294967295]" self._export_count = value @property def active(self): """Message field 'active'.""" return self._active @active.setter def active(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'active' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'active' field must be an unsigned integer in [0, 65535]" self._active = value @property def changed(self): """Message field 'changed'.""" return self._changed @changed.setter def changed(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'changed' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'changed' field must be an unsigned integer in [0, 65535]" self._changed = value @property def custom_default(self): """Message field 'custom_default'.""" return self._custom_default @custom_default.setter def custom_default(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'custom_default' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'custom_default' field must be an unsigned integer in [0, 65535]" self._custom_default = value <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/uavcan_parameter_request__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/UavcanParameterRequest.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__UAVCAN_PARAMETER_REQUEST__STRUCT_HPP_ #define PX4_MSGS__MSG__UAVCAN_PARAMETER_REQUEST__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__UavcanParameterRequest __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__UavcanParameterRequest __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct UavcanParameterRequest_ { using Type = UavcanParameterRequest_<ContainerAllocator>; explicit UavcanParameterRequest_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->message_type = 0; this->node_id = 0; std::fill<typename std::array<uint8_t, 17>::iterator, uint8_t>(this->param_id.begin(), this->param_id.end(), 0); this->param_index = 0; this->param_type = 0; this->int_value = 0ll; this->real_value = 0.0f; } } explicit UavcanParameterRequest_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : param_id(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->message_type = 0; this->node_id = 0; std::fill<typename std::array<uint8_t, 17>::iterator, uint8_t>(this->param_id.begin(), this->param_id.end(), 0); this->param_index = 0; this->param_type = 0; this->int_value = 0ll; this->real_value = 0.0f; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _message_type_type = uint8_t; _message_type_type message_type; using _node_id_type = uint8_t; _node_id_type node_id; using _param_id_type = std::array<uint8_t, 17>; _param_id_type param_id; using _param_index_type = int16_t; _param_index_type param_index; using _param_type_type = uint8_t; _param_type_type param_type; using _int_value_type = int64_t; _int_value_type int_value; using _real_value_type = float; _real_value_type real_value; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__message_type( const uint8_t & _arg) { this->message_type = _arg; return *this; } Type & set__node_id( const uint8_t & _arg) { this->node_id = _arg; return *this; } Type & set__param_id( const std::array<uint8_t, 17> & _arg) { this->param_id = _arg; return *this; } Type & set__param_index( const int16_t & _arg) { this->param_index = _arg; return *this; } Type & set__param_type( const uint8_t & _arg) { this->param_type = _arg; return *this; } Type & set__int_value( const int64_t & _arg) { this->int_value = _arg; return *this; } Type & set__real_value( const float & _arg) { this->real_value = _arg; return *this; } // constant declarations static constexpr uint8_t MESSAGE_TYPE_PARAM_REQUEST_READ = 20u; static constexpr uint8_t MESSAGE_TYPE_PARAM_REQUEST_LIST = 21u; static constexpr uint8_t MESSAGE_TYPE_PARAM_SET = 23u; static constexpr uint8_t NODE_ID_ALL = 0u; static constexpr uint8_t PARAM_TYPE_UINT8 = 1u; static constexpr uint8_t PARAM_TYPE_INT64 = 8u; static constexpr uint8_t PARAM_TYPE_REAL32 = 9u; static constexpr uint8_t ORB_QUEUE_LENGTH = 4u; // pointer types using RawPtr = px4_msgs::msg::UavcanParameterRequest_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::UavcanParameterRequest_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::UavcanParameterRequest_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::UavcanParameterRequest_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::UavcanParameterRequest_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::UavcanParameterRequest_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::UavcanParameterRequest_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::UavcanParameterRequest_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::UavcanParameterRequest_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::UavcanParameterRequest_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__UavcanParameterRequest std::shared_ptr<px4_msgs::msg::UavcanParameterRequest_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__UavcanParameterRequest std::shared_ptr<px4_msgs::msg::UavcanParameterRequest_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const UavcanParameterRequest_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->message_type != other.message_type) { return false; } if (this->node_id != other.node_id) { return false; } if (this->param_id != other.param_id) { return false; } if (this->param_index != other.param_index) { return false; } if (this->param_type != other.param_type) { return false; } if (this->int_value != other.int_value) { return false; } if (this->real_value != other.real_value) { return false; } return true; } bool operator!=(const UavcanParameterRequest_ & other) const { return !this->operator==(other); } }; // struct UavcanParameterRequest_ // alias to use template instance with default allocator using UavcanParameterRequest = px4_msgs::msg::UavcanParameterRequest_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t UavcanParameterRequest_<ContainerAllocator>::MESSAGE_TYPE_PARAM_REQUEST_READ; template<typename ContainerAllocator> constexpr uint8_t UavcanParameterRequest_<ContainerAllocator>::MESSAGE_TYPE_PARAM_REQUEST_LIST; template<typename ContainerAllocator> constexpr uint8_t UavcanParameterRequest_<ContainerAllocator>::MESSAGE_TYPE_PARAM_SET; template<typename ContainerAllocator> constexpr uint8_t UavcanParameterRequest_<ContainerAllocator>::NODE_ID_ALL; template<typename ContainerAllocator> constexpr uint8_t UavcanParameterRequest_<ContainerAllocator>::PARAM_TYPE_UINT8; template<typename ContainerAllocator> constexpr uint8_t UavcanParameterRequest_<ContainerAllocator>::PARAM_TYPE_INT64; template<typename ContainerAllocator> constexpr uint8_t UavcanParameterRequest_<ContainerAllocator>::PARAM_TYPE_REAL32; template<typename ContainerAllocator> constexpr uint8_t UavcanParameterRequest_<ContainerAllocator>::ORB_QUEUE_LENGTH; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__UAVCAN_PARAMETER_REQUEST__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/esc_status__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/EscStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/esc_status__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> // Include directives for member types // Member `esc` #include "px4_msgs/msg/esc_report__functions.h" bool px4_msgs__msg__EscStatus__init(px4_msgs__msg__EscStatus * msg) { if (!msg) { return false; } // timestamp // counter // esc_count // esc_connectiontype // esc_online_flags // esc_armed_flags // esc for (size_t i = 0; i < 8; ++i) { if (!px4_msgs__msg__EscReport__init(&msg->esc[i])) { px4_msgs__msg__EscStatus__fini(msg); return false; } } return true; } void px4_msgs__msg__EscStatus__fini(px4_msgs__msg__EscStatus * msg) { if (!msg) { return; } // timestamp // counter // esc_count // esc_connectiontype // esc_online_flags // esc_armed_flags // esc for (size_t i = 0; i < 8; ++i) { px4_msgs__msg__EscReport__fini(&msg->esc[i]); } } px4_msgs__msg__EscStatus * px4_msgs__msg__EscStatus__create() { px4_msgs__msg__EscStatus * msg = (px4_msgs__msg__EscStatus *)malloc(sizeof(px4_msgs__msg__EscStatus)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__EscStatus)); bool success = px4_msgs__msg__EscStatus__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__EscStatus__destroy(px4_msgs__msg__EscStatus * msg) { if (msg) { px4_msgs__msg__EscStatus__fini(msg); } free(msg); } bool px4_msgs__msg__EscStatus__Sequence__init(px4_msgs__msg__EscStatus__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__EscStatus * data = NULL; if (size) { data = (px4_msgs__msg__EscStatus *)calloc(size, sizeof(px4_msgs__msg__EscStatus)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__EscStatus__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__EscStatus__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__EscStatus__Sequence__fini(px4_msgs__msg__EscStatus__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__EscStatus__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__EscStatus__Sequence * px4_msgs__msg__EscStatus__Sequence__create(size_t size) { px4_msgs__msg__EscStatus__Sequence * array = (px4_msgs__msg__EscStatus__Sequence *)malloc(sizeof(px4_msgs__msg__EscStatus__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__EscStatus__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__EscStatus__Sequence__destroy(px4_msgs__msg__EscStatus__Sequence * array) { if (array) { px4_msgs__msg__EscStatus__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_mc.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/ActuatorControlsVirtualMc.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS_VIRTUAL_MC_H_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS_VIRTUAL_MC_H_ #include "px4_msgs/msg/actuator_controls_virtual_mc__struct.h" #include "px4_msgs/msg/actuator_controls_virtual_mc__functions.h" #include "px4_msgs/msg/actuator_controls_virtual_mc__type_support.h" #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS_VIRTUAL_MC_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/navigator_mission_item__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/NavigatorMissionItem.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__NAVIGATOR_MISSION_ITEM__STRUCT_HPP_ #define PX4_MSGS__MSG__NAVIGATOR_MISSION_ITEM__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__NavigatorMissionItem __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__NavigatorMissionItem __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct NavigatorMissionItem_ { using Type = NavigatorMissionItem_<ContainerAllocator>; explicit NavigatorMissionItem_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->instance_count = 0ul; this->sequence_current = 0; this->nav_cmd = 0; this->latitude = 0.0f; this->longitude = 0.0f; this->time_inside = 0.0f; this->acceptance_radius = 0.0f; this->loiter_radius = 0.0f; this->yaw = 0.0f; this->altitude = 0.0f; this->frame = 0; this->origin = 0; this->loiter_exit_xtrack = false; this->force_heading = false; this->altitude_is_relative = false; this->autocontinue = false; this->vtol_back_transition = false; } } explicit NavigatorMissionItem_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->instance_count = 0ul; this->sequence_current = 0; this->nav_cmd = 0; this->latitude = 0.0f; this->longitude = 0.0f; this->time_inside = 0.0f; this->acceptance_radius = 0.0f; this->loiter_radius = 0.0f; this->yaw = 0.0f; this->altitude = 0.0f; this->frame = 0; this->origin = 0; this->loiter_exit_xtrack = false; this->force_heading = false; this->altitude_is_relative = false; this->autocontinue = false; this->vtol_back_transition = false; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _instance_count_type = uint32_t; _instance_count_type instance_count; using _sequence_current_type = uint16_t; _sequence_current_type sequence_current; using _nav_cmd_type = uint16_t; _nav_cmd_type nav_cmd; using _latitude_type = float; _latitude_type latitude; using _longitude_type = float; _longitude_type longitude; using _time_inside_type = float; _time_inside_type time_inside; using _acceptance_radius_type = float; _acceptance_radius_type acceptance_radius; using _loiter_radius_type = float; _loiter_radius_type loiter_radius; using _yaw_type = float; _yaw_type yaw; using _altitude_type = float; _altitude_type altitude; using _frame_type = uint8_t; _frame_type frame; using _origin_type = uint8_t; _origin_type origin; using _loiter_exit_xtrack_type = bool; _loiter_exit_xtrack_type loiter_exit_xtrack; using _force_heading_type = bool; _force_heading_type force_heading; using _altitude_is_relative_type = bool; _altitude_is_relative_type altitude_is_relative; using _autocontinue_type = bool; _autocontinue_type autocontinue; using _vtol_back_transition_type = bool; _vtol_back_transition_type vtol_back_transition; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__instance_count( const uint32_t & _arg) { this->instance_count = _arg; return *this; } Type & set__sequence_current( const uint16_t & _arg) { this->sequence_current = _arg; return *this; } Type & set__nav_cmd( const uint16_t & _arg) { this->nav_cmd = _arg; return *this; } Type & set__latitude( const float & _arg) { this->latitude = _arg; return *this; } Type & set__longitude( const float & _arg) { this->longitude = _arg; return *this; } Type & set__time_inside( const float & _arg) { this->time_inside = _arg; return *this; } Type & set__acceptance_radius( const float & _arg) { this->acceptance_radius = _arg; return *this; } Type & set__loiter_radius( const float & _arg) { this->loiter_radius = _arg; return *this; } Type & set__yaw( const float & _arg) { this->yaw = _arg; return *this; } Type & set__altitude( const float & _arg) { this->altitude = _arg; return *this; } Type & set__frame( const uint8_t & _arg) { this->frame = _arg; return *this; } Type & set__origin( const uint8_t & _arg) { this->origin = _arg; return *this; } Type & set__loiter_exit_xtrack( const bool & _arg) { this->loiter_exit_xtrack = _arg; return *this; } Type & set__force_heading( const bool & _arg) { this->force_heading = _arg; return *this; } Type & set__altitude_is_relative( const bool & _arg) { this->altitude_is_relative = _arg; return *this; } Type & set__autocontinue( const bool & _arg) { this->autocontinue = _arg; return *this; } Type & set__vtol_back_transition( const bool & _arg) { this->vtol_back_transition = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::NavigatorMissionItem_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::NavigatorMissionItem_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::NavigatorMissionItem_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::NavigatorMissionItem_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::NavigatorMissionItem_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::NavigatorMissionItem_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::NavigatorMissionItem_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::NavigatorMissionItem_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::NavigatorMissionItem_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::NavigatorMissionItem_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__NavigatorMissionItem std::shared_ptr<px4_msgs::msg::NavigatorMissionItem_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__NavigatorMissionItem std::shared_ptr<px4_msgs::msg::NavigatorMissionItem_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const NavigatorMissionItem_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->instance_count != other.instance_count) { return false; } if (this->sequence_current != other.sequence_current) { return false; } if (this->nav_cmd != other.nav_cmd) { return false; } if (this->latitude != other.latitude) { return false; } if (this->longitude != other.longitude) { return false; } if (this->time_inside != other.time_inside) { return false; } if (this->acceptance_radius != other.acceptance_radius) { return false; } if (this->loiter_radius != other.loiter_radius) { return false; } if (this->yaw != other.yaw) { return false; } if (this->altitude != other.altitude) { return false; } if (this->frame != other.frame) { return false; } if (this->origin != other.origin) { return false; } if (this->loiter_exit_xtrack != other.loiter_exit_xtrack) { return false; } if (this->force_heading != other.force_heading) { return false; } if (this->altitude_is_relative != other.altitude_is_relative) { return false; } if (this->autocontinue != other.autocontinue) { return false; } if (this->vtol_back_transition != other.vtol_back_transition) { return false; } return true; } bool operator!=(const NavigatorMissionItem_ & other) const { return !this->operator==(other); } }; // struct NavigatorMissionItem_ // alias to use template instance with default allocator using NavigatorMissionItem = px4_msgs::msg::NavigatorMissionItem_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__NAVIGATOR_MISSION_ITEM__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_transponder_report_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/TransponderReport.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/transponder_report__struct.h" #include "px4_msgs/msg/transponder_report__functions.h" #include "rosidl_generator_c/primitives_sequence.h" #include "rosidl_generator_c/primitives_sequence_functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__transponder_report__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[51]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._transponder_report.TransponderReport", full_classname_dest, 50) == 0); } px4_msgs__msg__TransponderReport * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // icao_address PyObject * field = PyObject_GetAttrString(_pymsg, "icao_address"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->icao_address = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // lat PyObject * field = PyObject_GetAttrString(_pymsg, "lat"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->lat = PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // lon PyObject * field = PyObject_GetAttrString(_pymsg, "lon"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->lon = PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // altitude_type PyObject * field = PyObject_GetAttrString(_pymsg, "altitude_type"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->altitude_type = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // altitude PyObject * field = PyObject_GetAttrString(_pymsg, "altitude"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->altitude = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // heading PyObject * field = PyObject_GetAttrString(_pymsg, "heading"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->heading = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // hor_velocity PyObject * field = PyObject_GetAttrString(_pymsg, "hor_velocity"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->hor_velocity = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // ver_velocity PyObject * field = PyObject_GetAttrString(_pymsg, "ver_velocity"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->ver_velocity = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // callsign PyObject * field = PyObject_GetAttrString(_pymsg, "callsign"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); Py_ssize_t size = 9; uint8_t * dest = ros_message->callsign; for (Py_ssize_t i = 0; i < size; ++i) { uint8_t tmp = *(npy_uint8 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint8_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // emitter_type PyObject * field = PyObject_GetAttrString(_pymsg, "emitter_type"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->emitter_type = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // tslc PyObject * field = PyObject_GetAttrString(_pymsg, "tslc"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->tslc = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // flags PyObject * field = PyObject_GetAttrString(_pymsg, "flags"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->flags = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // squawk PyObject * field = PyObject_GetAttrString(_pymsg, "squawk"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->squawk = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // uas_id PyObject * field = PyObject_GetAttrString(_pymsg, "uas_id"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); Py_ssize_t size = 18; uint8_t * dest = ros_message->uas_id; for (Py_ssize_t i = 0; i < size; ++i) { uint8_t tmp = *(npy_uint8 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint8_t)); } Py_DECREF(seq_field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__transponder_report__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of TransponderReport */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._transponder_report"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "TransponderReport"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__TransponderReport * ros_message = (px4_msgs__msg__TransponderReport *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // icao_address PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->icao_address); { int rc = PyObject_SetAttrString(_pymessage, "icao_address", field); Py_DECREF(field); if (rc) { return NULL; } } } { // lat PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->lat); { int rc = PyObject_SetAttrString(_pymessage, "lat", field); Py_DECREF(field); if (rc) { return NULL; } } } { // lon PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->lon); { int rc = PyObject_SetAttrString(_pymessage, "lon", field); Py_DECREF(field); if (rc) { return NULL; } } } { // altitude_type PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->altitude_type); { int rc = PyObject_SetAttrString(_pymessage, "altitude_type", field); Py_DECREF(field); if (rc) { return NULL; } } } { // altitude PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->altitude); { int rc = PyObject_SetAttrString(_pymessage, "altitude", field); Py_DECREF(field); if (rc) { return NULL; } } } { // heading PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->heading); { int rc = PyObject_SetAttrString(_pymessage, "heading", field); Py_DECREF(field); if (rc) { return NULL; } } } { // hor_velocity PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->hor_velocity); { int rc = PyObject_SetAttrString(_pymessage, "hor_velocity", field); Py_DECREF(field); if (rc) { return NULL; } } } { // ver_velocity PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->ver_velocity); { int rc = PyObject_SetAttrString(_pymessage, "ver_velocity", field); Py_DECREF(field); if (rc) { return NULL; } } } { // callsign PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "callsign"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); assert(sizeof(npy_uint8) == sizeof(uint8_t)); npy_uint8 * dst = (npy_uint8 *)PyArray_GETPTR1(seq_field, 0); uint8_t * src = &(ros_message->callsign[0]); memcpy(dst, src, 9 * sizeof(uint8_t)); Py_DECREF(field); } { // emitter_type PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->emitter_type); { int rc = PyObject_SetAttrString(_pymessage, "emitter_type", field); Py_DECREF(field); if (rc) { return NULL; } } } { // tslc PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->tslc); { int rc = PyObject_SetAttrString(_pymessage, "tslc", field); Py_DECREF(field); if (rc) { return NULL; } } } { // flags PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->flags); { int rc = PyObject_SetAttrString(_pymessage, "flags", field); Py_DECREF(field); if (rc) { return NULL; } } } { // squawk PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->squawk); { int rc = PyObject_SetAttrString(_pymessage, "squawk", field); Py_DECREF(field); if (rc) { return NULL; } } } { // uas_id PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "uas_id"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); assert(sizeof(npy_uint8) == sizeof(uint8_t)); npy_uint8 * dst = (npy_uint8 *)PyArray_GETPTR1(seq_field, 0); uint8_t * src = &(ros_message->uas_id[0]); memcpy(dst, src, 18 * sizeof(uint8_t)); Py_DECREF(field); } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/rc_parameter_map__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/RcParameterMap.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/rc_parameter_map__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__RcParameterMap__init(px4_msgs__msg__RcParameterMap * msg) { if (!msg) { return false; } // timestamp // valid // param_index // param_id // scale // value0 // value_min // value_max return true; } void px4_msgs__msg__RcParameterMap__fini(px4_msgs__msg__RcParameterMap * msg) { if (!msg) { return; } // timestamp // valid // param_index // param_id // scale // value0 // value_min // value_max } px4_msgs__msg__RcParameterMap * px4_msgs__msg__RcParameterMap__create() { px4_msgs__msg__RcParameterMap * msg = (px4_msgs__msg__RcParameterMap *)malloc(sizeof(px4_msgs__msg__RcParameterMap)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__RcParameterMap)); bool success = px4_msgs__msg__RcParameterMap__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__RcParameterMap__destroy(px4_msgs__msg__RcParameterMap * msg) { if (msg) { px4_msgs__msg__RcParameterMap__fini(msg); } free(msg); } bool px4_msgs__msg__RcParameterMap__Sequence__init(px4_msgs__msg__RcParameterMap__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__RcParameterMap * data = NULL; if (size) { data = (px4_msgs__msg__RcParameterMap *)calloc(size, sizeof(px4_msgs__msg__RcParameterMap)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__RcParameterMap__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__RcParameterMap__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__RcParameterMap__Sequence__fini(px4_msgs__msg__RcParameterMap__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__RcParameterMap__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__RcParameterMap__Sequence * px4_msgs__msg__RcParameterMap__Sequence__create(size_t size) { px4_msgs__msg__RcParameterMap__Sequence * array = (px4_msgs__msg__RcParameterMap__Sequence *)malloc(sizeof(px4_msgs__msg__RcParameterMap__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__RcParameterMap__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__RcParameterMap__Sequence__destroy(px4_msgs__msg__RcParameterMap__Sequence * array) { if (array) { px4_msgs__msg__RcParameterMap__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/battery_status__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/BatteryStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/battery_status__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/battery_status__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::BatteryStatus & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: voltage_v cdr << ros_message.voltage_v; // Member: voltage_filtered_v cdr << ros_message.voltage_filtered_v; // Member: current_a cdr << ros_message.current_a; // Member: current_filtered_a cdr << ros_message.current_filtered_a; // Member: average_current_a cdr << ros_message.average_current_a; // Member: discharged_mah cdr << ros_message.discharged_mah; // Member: remaining cdr << ros_message.remaining; // Member: scale cdr << ros_message.scale; // Member: temperature cdr << ros_message.temperature; // Member: cell_count cdr << ros_message.cell_count; // Member: connected cdr << (ros_message.connected ? true : false); // Member: source cdr << ros_message.source; // Member: priority cdr << ros_message.priority; // Member: capacity cdr << ros_message.capacity; // Member: cycle_count cdr << ros_message.cycle_count; // Member: run_time_to_empty cdr << ros_message.run_time_to_empty; // Member: average_time_to_empty cdr << ros_message.average_time_to_empty; // Member: serial_number cdr << ros_message.serial_number; // Member: manufacture_date cdr << ros_message.manufacture_date; // Member: state_of_health cdr << ros_message.state_of_health; // Member: max_error cdr << ros_message.max_error; // Member: id cdr << ros_message.id; // Member: interface_error cdr << ros_message.interface_error; // Member: voltage_cell_v { cdr << ros_message.voltage_cell_v; } // Member: max_cell_voltage_delta cdr << ros_message.max_cell_voltage_delta; // Member: is_powering_off cdr << (ros_message.is_powering_off ? true : false); // Member: warning cdr << ros_message.warning; // Member: average_power cdr << ros_message.average_power; // Member: available_energy cdr << ros_message.available_energy; // Member: remaining_capacity cdr << ros_message.remaining_capacity; // Member: design_capacity cdr << ros_message.design_capacity; // Member: average_time_to_full cdr << ros_message.average_time_to_full; // Member: over_discharge_count cdr << ros_message.over_discharge_count; // Member: nominal_voltage cdr << ros_message.nominal_voltage; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::BatteryStatus & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: voltage_v cdr >> ros_message.voltage_v; // Member: voltage_filtered_v cdr >> ros_message.voltage_filtered_v; // Member: current_a cdr >> ros_message.current_a; // Member: current_filtered_a cdr >> ros_message.current_filtered_a; // Member: average_current_a cdr >> ros_message.average_current_a; // Member: discharged_mah cdr >> ros_message.discharged_mah; // Member: remaining cdr >> ros_message.remaining; // Member: scale cdr >> ros_message.scale; // Member: temperature cdr >> ros_message.temperature; // Member: cell_count cdr >> ros_message.cell_count; // Member: connected { uint8_t tmp; cdr >> tmp; ros_message.connected = tmp ? true : false; } // Member: source cdr >> ros_message.source; // Member: priority cdr >> ros_message.priority; // Member: capacity cdr >> ros_message.capacity; // Member: cycle_count cdr >> ros_message.cycle_count; // Member: run_time_to_empty cdr >> ros_message.run_time_to_empty; // Member: average_time_to_empty cdr >> ros_message.average_time_to_empty; // Member: serial_number cdr >> ros_message.serial_number; // Member: manufacture_date cdr >> ros_message.manufacture_date; // Member: state_of_health cdr >> ros_message.state_of_health; // Member: max_error cdr >> ros_message.max_error; // Member: id cdr >> ros_message.id; // Member: interface_error cdr >> ros_message.interface_error; // Member: voltage_cell_v { cdr >> ros_message.voltage_cell_v; } // Member: max_cell_voltage_delta cdr >> ros_message.max_cell_voltage_delta; // Member: is_powering_off { uint8_t tmp; cdr >> tmp; ros_message.is_powering_off = tmp ? true : false; } // Member: warning cdr >> ros_message.warning; // Member: average_power cdr >> ros_message.average_power; // Member: available_energy cdr >> ros_message.available_energy; // Member: remaining_capacity cdr >> ros_message.remaining_capacity; // Member: design_capacity cdr >> ros_message.design_capacity; // Member: average_time_to_full cdr >> ros_message.average_time_to_full; // Member: over_discharge_count cdr >> ros_message.over_discharge_count; // Member: nominal_voltage cdr >> ros_message.nominal_voltage; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::BatteryStatus & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: voltage_v { size_t item_size = sizeof(ros_message.voltage_v); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: voltage_filtered_v { size_t item_size = sizeof(ros_message.voltage_filtered_v); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: current_a { size_t item_size = sizeof(ros_message.current_a); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: current_filtered_a { size_t item_size = sizeof(ros_message.current_filtered_a); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: average_current_a { size_t item_size = sizeof(ros_message.average_current_a); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: discharged_mah { size_t item_size = sizeof(ros_message.discharged_mah); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: remaining { size_t item_size = sizeof(ros_message.remaining); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: scale { size_t item_size = sizeof(ros_message.scale); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: temperature { size_t item_size = sizeof(ros_message.temperature); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cell_count { size_t item_size = sizeof(ros_message.cell_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: connected { size_t item_size = sizeof(ros_message.connected); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: source { size_t item_size = sizeof(ros_message.source); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: priority { size_t item_size = sizeof(ros_message.priority); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: capacity { size_t item_size = sizeof(ros_message.capacity); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cycle_count { size_t item_size = sizeof(ros_message.cycle_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: run_time_to_empty { size_t item_size = sizeof(ros_message.run_time_to_empty); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: average_time_to_empty { size_t item_size = sizeof(ros_message.average_time_to_empty); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: serial_number { size_t item_size = sizeof(ros_message.serial_number); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: manufacture_date { size_t item_size = sizeof(ros_message.manufacture_date); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: state_of_health { size_t item_size = sizeof(ros_message.state_of_health); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: max_error { size_t item_size = sizeof(ros_message.max_error); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: id { size_t item_size = sizeof(ros_message.id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: interface_error { size_t item_size = sizeof(ros_message.interface_error); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: voltage_cell_v { size_t array_size = 14; size_t item_size = sizeof(ros_message.voltage_cell_v[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: max_cell_voltage_delta { size_t item_size = sizeof(ros_message.max_cell_voltage_delta); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: is_powering_off { size_t item_size = sizeof(ros_message.is_powering_off); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: warning { size_t item_size = sizeof(ros_message.warning); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: average_power { size_t item_size = sizeof(ros_message.average_power); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: available_energy { size_t item_size = sizeof(ros_message.available_energy); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: remaining_capacity { size_t item_size = sizeof(ros_message.remaining_capacity); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: design_capacity { size_t item_size = sizeof(ros_message.design_capacity); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: average_time_to_full { size_t item_size = sizeof(ros_message.average_time_to_full); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: over_discharge_count { size_t item_size = sizeof(ros_message.over_discharge_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: nominal_voltage { size_t item_size = sizeof(ros_message.nominal_voltage); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_BatteryStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: voltage_v { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: voltage_filtered_v { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: current_a { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: current_filtered_a { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: average_current_a { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: discharged_mah { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: remaining { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: scale { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: temperature { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: cell_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: connected { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: source { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: priority { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: capacity { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: cycle_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: run_time_to_empty { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: average_time_to_empty { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: serial_number { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: manufacture_date { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: state_of_health { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: max_error { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: id { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: interface_error { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: voltage_cell_v { size_t array_size = 14; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: max_cell_voltage_delta { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: is_powering_off { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: warning { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: average_power { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: available_energy { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: remaining_capacity { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: design_capacity { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: average_time_to_full { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: over_discharge_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: nominal_voltage { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static bool _BatteryStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::BatteryStatus *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _BatteryStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::BatteryStatus *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _BatteryStatus__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::BatteryStatus *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _BatteryStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_BatteryStatus(full_bounded, 0); } static message_type_support_callbacks_t _BatteryStatus__callbacks = { "px4_msgs::msg", "BatteryStatus", _BatteryStatus__cdr_serialize, _BatteryStatus__cdr_deserialize, _BatteryStatus__get_serialized_size, _BatteryStatus__max_serialized_size }; static rosidl_message_type_support_t _BatteryStatus__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_BatteryStatus__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::BatteryStatus>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_BatteryStatus__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, BatteryStatus)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_BatteryStatus__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/offboard_control_mode__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/OffboardControlMode.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/offboard_control_mode__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__OffboardControlMode__init(px4_msgs__msg__OffboardControlMode * msg) { if (!msg) { return false; } // timestamp // position // velocity // acceleration // attitude // body_rate return true; } void px4_msgs__msg__OffboardControlMode__fini(px4_msgs__msg__OffboardControlMode * msg) { if (!msg) { return; } // timestamp // position // velocity // acceleration // attitude // body_rate } px4_msgs__msg__OffboardControlMode * px4_msgs__msg__OffboardControlMode__create() { px4_msgs__msg__OffboardControlMode * msg = (px4_msgs__msg__OffboardControlMode *)malloc(sizeof(px4_msgs__msg__OffboardControlMode)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__OffboardControlMode)); bool success = px4_msgs__msg__OffboardControlMode__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__OffboardControlMode__destroy(px4_msgs__msg__OffboardControlMode * msg) { if (msg) { px4_msgs__msg__OffboardControlMode__fini(msg); } free(msg); } bool px4_msgs__msg__OffboardControlMode__Sequence__init(px4_msgs__msg__OffboardControlMode__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__OffboardControlMode * data = NULL; if (size) { data = (px4_msgs__msg__OffboardControlMode *)calloc(size, sizeof(px4_msgs__msg__OffboardControlMode)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__OffboardControlMode__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__OffboardControlMode__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__OffboardControlMode__Sequence__fini(px4_msgs__msg__OffboardControlMode__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__OffboardControlMode__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__OffboardControlMode__Sequence * px4_msgs__msg__OffboardControlMode__Sequence__create(size_t size) { px4_msgs__msg__OffboardControlMode__Sequence * array = (px4_msgs__msg__OffboardControlMode__Sequence *)malloc(sizeof(px4_msgs__msg__OffboardControlMode__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__OffboardControlMode__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__OffboardControlMode__Sequence__destroy(px4_msgs__msg__OffboardControlMode__Sequence * array) { if (array) { px4_msgs__msg__OffboardControlMode__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/log_message.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__LOG_MESSAGE_HPP_ #define PX4_MSGS__MSG__LOG_MESSAGE_HPP_ #include "px4_msgs/msg/log_message__struct.hpp" #include "px4_msgs/msg/log_message__traits.hpp" #endif // PX4_MSGS__MSG__LOG_MESSAGE_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/system_power__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/SystemPower.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/system_power__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/system_power__struct.h" #include "px4_msgs/msg/system_power__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _SystemPower__ros_msg_type = px4_msgs__msg__SystemPower; static bool _SystemPower__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _SystemPower__ros_msg_type * ros_message = static_cast<const _SystemPower__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: voltage5v_v { cdr << ros_message->voltage5v_v; } // Field name: sensors3v3 { size_t size = 4; auto array_ptr = ros_message->sensors3v3; cdr.serializeArray(array_ptr, size); } // Field name: sensors3v3_valid { cdr << ros_message->sensors3v3_valid; } // Field name: usb_connected { cdr << ros_message->usb_connected; } // Field name: brick_valid { cdr << ros_message->brick_valid; } // Field name: usb_valid { cdr << ros_message->usb_valid; } // Field name: servo_valid { cdr << ros_message->servo_valid; } // Field name: periph_5v_oc { cdr << ros_message->periph_5v_oc; } // Field name: hipower_5v_oc { cdr << ros_message->hipower_5v_oc; } // Field name: comp_5v_valid { cdr << ros_message->comp_5v_valid; } // Field name: can1_gps1_5v_valid { cdr << ros_message->can1_gps1_5v_valid; } return true; } static bool _SystemPower__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _SystemPower__ros_msg_type * ros_message = static_cast<_SystemPower__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: voltage5v_v { cdr >> ros_message->voltage5v_v; } // Field name: sensors3v3 { size_t size = 4; auto array_ptr = ros_message->sensors3v3; cdr.deserializeArray(array_ptr, size); } // Field name: sensors3v3_valid { cdr >> ros_message->sensors3v3_valid; } // Field name: usb_connected { cdr >> ros_message->usb_connected; } // Field name: brick_valid { cdr >> ros_message->brick_valid; } // Field name: usb_valid { cdr >> ros_message->usb_valid; } // Field name: servo_valid { cdr >> ros_message->servo_valid; } // Field name: periph_5v_oc { cdr >> ros_message->periph_5v_oc; } // Field name: hipower_5v_oc { cdr >> ros_message->hipower_5v_oc; } // Field name: comp_5v_valid { cdr >> ros_message->comp_5v_valid; } // Field name: can1_gps1_5v_valid { cdr >> ros_message->can1_gps1_5v_valid; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__SystemPower( const void * untyped_ros_message, size_t current_alignment) { const _SystemPower__ros_msg_type * ros_message = static_cast<const _SystemPower__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name voltage5v_v { size_t item_size = sizeof(ros_message->voltage5v_v); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name sensors3v3 { size_t array_size = 4; auto array_ptr = ros_message->sensors3v3; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name sensors3v3_valid { size_t item_size = sizeof(ros_message->sensors3v3_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name usb_connected { size_t item_size = sizeof(ros_message->usb_connected); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name brick_valid { size_t item_size = sizeof(ros_message->brick_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name usb_valid { size_t item_size = sizeof(ros_message->usb_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name servo_valid { size_t item_size = sizeof(ros_message->servo_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name periph_5v_oc { size_t item_size = sizeof(ros_message->periph_5v_oc); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name hipower_5v_oc { size_t item_size = sizeof(ros_message->hipower_5v_oc); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name comp_5v_valid { size_t item_size = sizeof(ros_message->comp_5v_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name can1_gps1_5v_valid { size_t item_size = sizeof(ros_message->can1_gps1_5v_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _SystemPower__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__SystemPower( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__SystemPower( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: voltage5v_v { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: sensors3v3 { size_t array_size = 4; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: sensors3v3_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: usb_connected { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: brick_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: usb_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: servo_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: periph_5v_oc { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: hipower_5v_oc { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: comp_5v_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: can1_gps1_5v_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _SystemPower__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__SystemPower( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_SystemPower = { "px4_msgs::msg", "SystemPower", _SystemPower__cdr_serialize, _SystemPower__cdr_deserialize, _SystemPower__get_serialized_size, _SystemPower__max_serialized_size }; static rosidl_message_type_support_t _SystemPower__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_SystemPower, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, SystemPower)() { return &_SystemPower__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/control_allocator_status__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/ControlAllocatorStatus.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/control_allocator_status__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void ControlAllocatorStatus_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::ControlAllocatorStatus(_init); } void ControlAllocatorStatus_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::ControlAllocatorStatus *>(message_memory); typed_message->~ControlAllocatorStatus(); } size_t size_function__ControlAllocatorStatus__allocated_torque(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__ControlAllocatorStatus__allocated_torque(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__ControlAllocatorStatus__allocated_torque(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } size_t size_function__ControlAllocatorStatus__unallocated_torque(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__ControlAllocatorStatus__unallocated_torque(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__ControlAllocatorStatus__unallocated_torque(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } size_t size_function__ControlAllocatorStatus__allocated_thrust(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__ControlAllocatorStatus__allocated_thrust(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__ControlAllocatorStatus__allocated_thrust(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } size_t size_function__ControlAllocatorStatus__unallocated_thrust(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__ControlAllocatorStatus__unallocated_thrust(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__ControlAllocatorStatus__unallocated_thrust(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } size_t size_function__ControlAllocatorStatus__actuator_saturation(const void * untyped_member) { (void)untyped_member; return 16; } const void * get_const_function__ControlAllocatorStatus__actuator_saturation(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<int8_t, 16> *>(untyped_member); return &member[index]; } void * get_function__ControlAllocatorStatus__actuator_saturation(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<int8_t, 16> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember ControlAllocatorStatus_message_member_array[8] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ControlAllocatorStatus, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "torque_setpoint_achieved", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ControlAllocatorStatus, torque_setpoint_achieved), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "allocated_torque", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::ControlAllocatorStatus, allocated_torque), // bytes offset in struct nullptr, // default value size_function__ControlAllocatorStatus__allocated_torque, // size() function pointer get_const_function__ControlAllocatorStatus__allocated_torque, // get_const(index) function pointer get_function__ControlAllocatorStatus__allocated_torque, // get(index) function pointer nullptr // resize(index) function pointer }, { "unallocated_torque", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::ControlAllocatorStatus, unallocated_torque), // bytes offset in struct nullptr, // default value size_function__ControlAllocatorStatus__unallocated_torque, // size() function pointer get_const_function__ControlAllocatorStatus__unallocated_torque, // get_const(index) function pointer get_function__ControlAllocatorStatus__unallocated_torque, // get(index) function pointer nullptr // resize(index) function pointer }, { "thrust_setpoint_achieved", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ControlAllocatorStatus, thrust_setpoint_achieved), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "allocated_thrust", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::ControlAllocatorStatus, allocated_thrust), // bytes offset in struct nullptr, // default value size_function__ControlAllocatorStatus__allocated_thrust, // size() function pointer get_const_function__ControlAllocatorStatus__allocated_thrust, // get_const(index) function pointer get_function__ControlAllocatorStatus__allocated_thrust, // get(index) function pointer nullptr // resize(index) function pointer }, { "unallocated_thrust", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::ControlAllocatorStatus, unallocated_thrust), // bytes offset in struct nullptr, // default value size_function__ControlAllocatorStatus__unallocated_thrust, // size() function pointer get_const_function__ControlAllocatorStatus__unallocated_thrust, // get_const(index) function pointer get_function__ControlAllocatorStatus__unallocated_thrust, // get(index) function pointer nullptr // resize(index) function pointer }, { "actuator_saturation", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT8, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 16, // array size false, // is upper bound offsetof(px4_msgs::msg::ControlAllocatorStatus, actuator_saturation), // bytes offset in struct nullptr, // default value size_function__ControlAllocatorStatus__actuator_saturation, // size() function pointer get_const_function__ControlAllocatorStatus__actuator_saturation, // get_const(index) function pointer get_function__ControlAllocatorStatus__actuator_saturation, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers ControlAllocatorStatus_message_members = { "px4_msgs::msg", // message namespace "ControlAllocatorStatus", // message name 8, // number of fields sizeof(px4_msgs::msg::ControlAllocatorStatus), ControlAllocatorStatus_message_member_array, // message members ControlAllocatorStatus_init_function, // function to initialize message memory (memory has to be allocated) ControlAllocatorStatus_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t ControlAllocatorStatus_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &ControlAllocatorStatus_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::ControlAllocatorStatus>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::ControlAllocatorStatus_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, ControlAllocatorStatus)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::ControlAllocatorStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/telemetry_status__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/TelemetryStatus.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/telemetry_status__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/telemetry_status__functions.h" #include "px4_msgs/msg/telemetry_status__struct.h" #ifdef __cplusplus extern "C" { #endif void TelemetryStatus__rosidl_typesupport_introspection_c__TelemetryStatus_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__TelemetryStatus__init(message_memory); } void TelemetryStatus__rosidl_typesupport_introspection_c__TelemetryStatus_fini_function(void * message_memory) { px4_msgs__msg__TelemetryStatus__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember TelemetryStatus__rosidl_typesupport_introspection_c__TelemetryStatus_message_member_array[37] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "type", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, type), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "mode", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, mode), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "flow_control", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, flow_control), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "forwarding", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, forwarding), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "mavlink_v2", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, mavlink_v2), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ftp", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, ftp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "streams", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, streams), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "data_rate", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, data_rate), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rate_multiplier", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, rate_multiplier), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "tx_rate_avg", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, tx_rate_avg), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "tx_error_rate_avg", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, tx_error_rate_avg), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "tx_message_count", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, tx_message_count), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "tx_buffer_overruns", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, tx_buffer_overruns), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rx_rate_avg", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, rx_rate_avg), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rx_message_count", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, rx_message_count), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rx_message_count_supported", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, rx_message_count_supported), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rx_message_lost_count", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, rx_message_lost_count), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rx_buffer_overruns", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, rx_buffer_overruns), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rx_parse_errors", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, rx_parse_errors), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rx_packet_drop_count", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, rx_packet_drop_count), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rx_message_lost_rate", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, rx_message_lost_rate), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "heartbeat_type_antenna_tracker", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, heartbeat_type_antenna_tracker), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "heartbeat_type_gcs", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, heartbeat_type_gcs), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "heartbeat_type_onboard_controller", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, heartbeat_type_onboard_controller), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "heartbeat_type_gimbal", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, heartbeat_type_gimbal), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "heartbeat_type_adsb", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, heartbeat_type_adsb), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "heartbeat_type_camera", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, heartbeat_type_camera), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "heartbeat_component_telemetry_radio", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, heartbeat_component_telemetry_radio), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "heartbeat_component_log", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, heartbeat_component_log), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "heartbeat_component_osd", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, heartbeat_component_osd), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "heartbeat_component_obstacle_avoidance", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, heartbeat_component_obstacle_avoidance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "heartbeat_component_vio", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, heartbeat_component_vio), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "heartbeat_component_pairing_manager", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, heartbeat_component_pairing_manager), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "heartbeat_component_udp_bridge", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, heartbeat_component_udp_bridge), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "heartbeat_component_uart_bridge", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, heartbeat_component_uart_bridge), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "avoidance_system_healthy", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TelemetryStatus, avoidance_system_healthy), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers TelemetryStatus__rosidl_typesupport_introspection_c__TelemetryStatus_message_members = { "px4_msgs__msg", // message namespace "TelemetryStatus", // message name 37, // number of fields sizeof(px4_msgs__msg__TelemetryStatus), TelemetryStatus__rosidl_typesupport_introspection_c__TelemetryStatus_message_member_array, // message members TelemetryStatus__rosidl_typesupport_introspection_c__TelemetryStatus_init_function, // function to initialize message memory (memory has to be allocated) TelemetryStatus__rosidl_typesupport_introspection_c__TelemetryStatus_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t TelemetryStatus__rosidl_typesupport_introspection_c__TelemetryStatus_message_type_support_handle = { 0, &TelemetryStatus__rosidl_typesupport_introspection_c__TelemetryStatus_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, TelemetryStatus)() { if (!TelemetryStatus__rosidl_typesupport_introspection_c__TelemetryStatus_message_type_support_handle.typesupport_identifier) { TelemetryStatus__rosidl_typesupport_introspection_c__TelemetryStatus_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &TelemetryStatus__rosidl_typesupport_introspection_c__TelemetryStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_accel__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/SensorAccel.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_ACCEL__STRUCT_H_ #define PX4_MSGS__MSG__SENSOR_ACCEL__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'ORB_QUEUE_LENGTH'. enum { px4_msgs__msg__SensorAccel__ORB_QUEUE_LENGTH = 8 }; // Struct defined in msg/SensorAccel in the package px4_msgs. typedef struct px4_msgs__msg__SensorAccel { uint64_t timestamp; uint64_t timestamp_sample; uint32_t device_id; float x; float y; float z; float temperature; uint32_t error_count; uint8_t clip_counter[3]; uint8_t samples; } px4_msgs__msg__SensorAccel; // Struct for a sequence of px4_msgs__msg__SensorAccel. typedef struct px4_msgs__msg__SensorAccel__Sequence { px4_msgs__msg__SensorAccel * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__SensorAccel__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__SENSOR_ACCEL__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/VehicleLocalPositionSetpoint.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_local_position_setpoint__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/vehicle_local_position_setpoint__struct.h" #include "px4_msgs/msg/vehicle_local_position_setpoint__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _VehicleLocalPositionSetpoint__ros_msg_type = px4_msgs__msg__VehicleLocalPositionSetpoint; static bool _VehicleLocalPositionSetpoint__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _VehicleLocalPositionSetpoint__ros_msg_type * ros_message = static_cast<const _VehicleLocalPositionSetpoint__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: x { cdr << ros_message->x; } // Field name: y { cdr << ros_message->y; } // Field name: z { cdr << ros_message->z; } // Field name: yaw { cdr << ros_message->yaw; } // Field name: yawspeed { cdr << ros_message->yawspeed; } // Field name: vx { cdr << ros_message->vx; } // Field name: vy { cdr << ros_message->vy; } // Field name: vz { cdr << ros_message->vz; } // Field name: acceleration { size_t size = 3; auto array_ptr = ros_message->acceleration; cdr.serializeArray(array_ptr, size); } // Field name: jerk { size_t size = 3; auto array_ptr = ros_message->jerk; cdr.serializeArray(array_ptr, size); } // Field name: thrust { size_t size = 3; auto array_ptr = ros_message->thrust; cdr.serializeArray(array_ptr, size); } return true; } static bool _VehicleLocalPositionSetpoint__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _VehicleLocalPositionSetpoint__ros_msg_type * ros_message = static_cast<_VehicleLocalPositionSetpoint__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: x { cdr >> ros_message->x; } // Field name: y { cdr >> ros_message->y; } // Field name: z { cdr >> ros_message->z; } // Field name: yaw { cdr >> ros_message->yaw; } // Field name: yawspeed { cdr >> ros_message->yawspeed; } // Field name: vx { cdr >> ros_message->vx; } // Field name: vy { cdr >> ros_message->vy; } // Field name: vz { cdr >> ros_message->vz; } // Field name: acceleration { size_t size = 3; auto array_ptr = ros_message->acceleration; cdr.deserializeArray(array_ptr, size); } // Field name: jerk { size_t size = 3; auto array_ptr = ros_message->jerk; cdr.deserializeArray(array_ptr, size); } // Field name: thrust { size_t size = 3; auto array_ptr = ros_message->thrust; cdr.deserializeArray(array_ptr, size); } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__VehicleLocalPositionSetpoint( const void * untyped_ros_message, size_t current_alignment) { const _VehicleLocalPositionSetpoint__ros_msg_type * ros_message = static_cast<const _VehicleLocalPositionSetpoint__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name x { size_t item_size = sizeof(ros_message->x); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name y { size_t item_size = sizeof(ros_message->y); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name z { size_t item_size = sizeof(ros_message->z); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name yaw { size_t item_size = sizeof(ros_message->yaw); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name yawspeed { size_t item_size = sizeof(ros_message->yawspeed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vx { size_t item_size = sizeof(ros_message->vx); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vy { size_t item_size = sizeof(ros_message->vy); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vz { size_t item_size = sizeof(ros_message->vz); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name acceleration { size_t array_size = 3; auto array_ptr = ros_message->acceleration; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name jerk { size_t array_size = 3; auto array_ptr = ros_message->jerk; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name thrust { size_t array_size = 3; auto array_ptr = ros_message->thrust; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _VehicleLocalPositionSetpoint__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__VehicleLocalPositionSetpoint( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__VehicleLocalPositionSetpoint( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: x { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: y { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: z { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: yaw { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: yawspeed { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: vx { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: vy { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: vz { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: acceleration { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: jerk { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: thrust { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _VehicleLocalPositionSetpoint__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__VehicleLocalPositionSetpoint( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_VehicleLocalPositionSetpoint = { "px4_msgs::msg", "VehicleLocalPositionSetpoint", _VehicleLocalPositionSetpoint__cdr_serialize, _VehicleLocalPositionSetpoint__cdr_deserialize, _VehicleLocalPositionSetpoint__get_serialized_size, _VehicleLocalPositionSetpoint__max_serialized_size }; static rosidl_message_type_support_t _VehicleLocalPositionSetpoint__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_VehicleLocalPositionSetpoint, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, VehicleLocalPositionSetpoint)() { return &_VehicleLocalPositionSetpoint__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_estimator_status_flags.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/EstimatorStatusFlags.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_EstimatorStatusFlags(type): """Metaclass of message 'EstimatorStatusFlags'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.EstimatorStatusFlags') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__estimator_status_flags cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__estimator_status_flags cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__estimator_status_flags cls._TYPE_SUPPORT = module.type_support_msg__msg__estimator_status_flags cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__estimator_status_flags @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class EstimatorStatusFlags(metaclass=Metaclass_EstimatorStatusFlags): """Message class 'EstimatorStatusFlags'.""" __slots__ = [ '_timestamp', '_timestamp_sample', '_control_status_changes', '_cs_tilt_align', '_cs_yaw_align', '_cs_gps', '_cs_opt_flow', '_cs_mag_hdg', '_cs_mag_3d', '_cs_mag_dec', '_cs_in_air', '_cs_wind', '_cs_baro_hgt', '_cs_rng_hgt', '_cs_gps_hgt', '_cs_ev_pos', '_cs_ev_yaw', '_cs_ev_hgt', '_cs_fuse_beta', '_cs_mag_field_disturbed', '_cs_fixed_wing', '_cs_mag_fault', '_cs_fuse_aspd', '_cs_gnd_effect', '_cs_rng_stuck', '_cs_gps_yaw', '_cs_mag_aligned_in_flight', '_cs_ev_vel', '_cs_synthetic_mag_z', '_cs_vehicle_at_rest', '_fault_status_changes', '_fs_bad_mag_x', '_fs_bad_mag_y', '_fs_bad_mag_z', '_fs_bad_hdg', '_fs_bad_mag_decl', '_fs_bad_airspeed', '_fs_bad_sideslip', '_fs_bad_optflow_x', '_fs_bad_optflow_y', '_fs_bad_vel_n', '_fs_bad_vel_e', '_fs_bad_vel_d', '_fs_bad_pos_n', '_fs_bad_pos_e', '_fs_bad_pos_d', '_fs_bad_acc_bias', '_fs_bad_acc_vertical', '_fs_bad_acc_clipping', '_innovation_fault_status_changes', '_reject_hor_vel', '_reject_ver_vel', '_reject_hor_pos', '_reject_ver_pos', '_reject_mag_x', '_reject_mag_y', '_reject_mag_z', '_reject_yaw', '_reject_airspeed', '_reject_sideslip', '_reject_hagl', '_reject_optflow_x', '_reject_optflow_y', ] _fields_and_field_types = { 'timestamp': 'uint64', 'timestamp_sample': 'uint64', 'control_status_changes': 'uint32', 'cs_tilt_align': 'boolean', 'cs_yaw_align': 'boolean', 'cs_gps': 'boolean', 'cs_opt_flow': 'boolean', 'cs_mag_hdg': 'boolean', 'cs_mag_3d': 'boolean', 'cs_mag_dec': 'boolean', 'cs_in_air': 'boolean', 'cs_wind': 'boolean', 'cs_baro_hgt': 'boolean', 'cs_rng_hgt': 'boolean', 'cs_gps_hgt': 'boolean', 'cs_ev_pos': 'boolean', 'cs_ev_yaw': 'boolean', 'cs_ev_hgt': 'boolean', 'cs_fuse_beta': 'boolean', 'cs_mag_field_disturbed': 'boolean', 'cs_fixed_wing': 'boolean', 'cs_mag_fault': 'boolean', 'cs_fuse_aspd': 'boolean', 'cs_gnd_effect': 'boolean', 'cs_rng_stuck': 'boolean', 'cs_gps_yaw': 'boolean', 'cs_mag_aligned_in_flight': 'boolean', 'cs_ev_vel': 'boolean', 'cs_synthetic_mag_z': 'boolean', 'cs_vehicle_at_rest': 'boolean', 'fault_status_changes': 'uint32', 'fs_bad_mag_x': 'boolean', 'fs_bad_mag_y': 'boolean', 'fs_bad_mag_z': 'boolean', 'fs_bad_hdg': 'boolean', 'fs_bad_mag_decl': 'boolean', 'fs_bad_airspeed': 'boolean', 'fs_bad_sideslip': 'boolean', 'fs_bad_optflow_x': 'boolean', 'fs_bad_optflow_y': 'boolean', 'fs_bad_vel_n': 'boolean', 'fs_bad_vel_e': 'boolean', 'fs_bad_vel_d': 'boolean', 'fs_bad_pos_n': 'boolean', 'fs_bad_pos_e': 'boolean', 'fs_bad_pos_d': 'boolean', 'fs_bad_acc_bias': 'boolean', 'fs_bad_acc_vertical': 'boolean', 'fs_bad_acc_clipping': 'boolean', 'innovation_fault_status_changes': 'uint32', 'reject_hor_vel': 'boolean', 'reject_ver_vel': 'boolean', 'reject_hor_pos': 'boolean', 'reject_ver_pos': 'boolean', 'reject_mag_x': 'boolean', 'reject_mag_y': 'boolean', 'reject_mag_z': 'boolean', 'reject_yaw': 'boolean', 'reject_airspeed': 'boolean', 'reject_sideslip': 'boolean', 'reject_hagl': 'boolean', 'reject_optflow_x': 'boolean', 'reject_optflow_y': 'boolean', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.timestamp_sample = kwargs.get('timestamp_sample', int()) self.control_status_changes = kwargs.get('control_status_changes', int()) self.cs_tilt_align = kwargs.get('cs_tilt_align', bool()) self.cs_yaw_align = kwargs.get('cs_yaw_align', bool()) self.cs_gps = kwargs.get('cs_gps', bool()) self.cs_opt_flow = kwargs.get('cs_opt_flow', bool()) self.cs_mag_hdg = kwargs.get('cs_mag_hdg', bool()) self.cs_mag_3d = kwargs.get('cs_mag_3d', bool()) self.cs_mag_dec = kwargs.get('cs_mag_dec', bool()) self.cs_in_air = kwargs.get('cs_in_air', bool()) self.cs_wind = kwargs.get('cs_wind', bool()) self.cs_baro_hgt = kwargs.get('cs_baro_hgt', bool()) self.cs_rng_hgt = kwargs.get('cs_rng_hgt', bool()) self.cs_gps_hgt = kwargs.get('cs_gps_hgt', bool()) self.cs_ev_pos = kwargs.get('cs_ev_pos', bool()) self.cs_ev_yaw = kwargs.get('cs_ev_yaw', bool()) self.cs_ev_hgt = kwargs.get('cs_ev_hgt', bool()) self.cs_fuse_beta = kwargs.get('cs_fuse_beta', bool()) self.cs_mag_field_disturbed = kwargs.get('cs_mag_field_disturbed', bool()) self.cs_fixed_wing = kwargs.get('cs_fixed_wing', bool()) self.cs_mag_fault = kwargs.get('cs_mag_fault', bool()) self.cs_fuse_aspd = kwargs.get('cs_fuse_aspd', bool()) self.cs_gnd_effect = kwargs.get('cs_gnd_effect', bool()) self.cs_rng_stuck = kwargs.get('cs_rng_stuck', bool()) self.cs_gps_yaw = kwargs.get('cs_gps_yaw', bool()) self.cs_mag_aligned_in_flight = kwargs.get('cs_mag_aligned_in_flight', bool()) self.cs_ev_vel = kwargs.get('cs_ev_vel', bool()) self.cs_synthetic_mag_z = kwargs.get('cs_synthetic_mag_z', bool()) self.cs_vehicle_at_rest = kwargs.get('cs_vehicle_at_rest', bool()) self.fault_status_changes = kwargs.get('fault_status_changes', int()) self.fs_bad_mag_x = kwargs.get('fs_bad_mag_x', bool()) self.fs_bad_mag_y = kwargs.get('fs_bad_mag_y', bool()) self.fs_bad_mag_z = kwargs.get('fs_bad_mag_z', bool()) self.fs_bad_hdg = kwargs.get('fs_bad_hdg', bool()) self.fs_bad_mag_decl = kwargs.get('fs_bad_mag_decl', bool()) self.fs_bad_airspeed = kwargs.get('fs_bad_airspeed', bool()) self.fs_bad_sideslip = kwargs.get('fs_bad_sideslip', bool()) self.fs_bad_optflow_x = kwargs.get('fs_bad_optflow_x', bool()) self.fs_bad_optflow_y = kwargs.get('fs_bad_optflow_y', bool()) self.fs_bad_vel_n = kwargs.get('fs_bad_vel_n', bool()) self.fs_bad_vel_e = kwargs.get('fs_bad_vel_e', bool()) self.fs_bad_vel_d = kwargs.get('fs_bad_vel_d', bool()) self.fs_bad_pos_n = kwargs.get('fs_bad_pos_n', bool()) self.fs_bad_pos_e = kwargs.get('fs_bad_pos_e', bool()) self.fs_bad_pos_d = kwargs.get('fs_bad_pos_d', bool()) self.fs_bad_acc_bias = kwargs.get('fs_bad_acc_bias', bool()) self.fs_bad_acc_vertical = kwargs.get('fs_bad_acc_vertical', bool()) self.fs_bad_acc_clipping = kwargs.get('fs_bad_acc_clipping', bool()) self.innovation_fault_status_changes = kwargs.get('innovation_fault_status_changes', int()) self.reject_hor_vel = kwargs.get('reject_hor_vel', bool()) self.reject_ver_vel = kwargs.get('reject_ver_vel', bool()) self.reject_hor_pos = kwargs.get('reject_hor_pos', bool()) self.reject_ver_pos = kwargs.get('reject_ver_pos', bool()) self.reject_mag_x = kwargs.get('reject_mag_x', bool()) self.reject_mag_y = kwargs.get('reject_mag_y', bool()) self.reject_mag_z = kwargs.get('reject_mag_z', bool()) self.reject_yaw = kwargs.get('reject_yaw', bool()) self.reject_airspeed = kwargs.get('reject_airspeed', bool()) self.reject_sideslip = kwargs.get('reject_sideslip', bool()) self.reject_hagl = kwargs.get('reject_hagl', bool()) self.reject_optflow_x = kwargs.get('reject_optflow_x', bool()) self.reject_optflow_y = kwargs.get('reject_optflow_y', bool()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.timestamp_sample != other.timestamp_sample: return False if self.control_status_changes != other.control_status_changes: return False if self.cs_tilt_align != other.cs_tilt_align: return False if self.cs_yaw_align != other.cs_yaw_align: return False if self.cs_gps != other.cs_gps: return False if self.cs_opt_flow != other.cs_opt_flow: return False if self.cs_mag_hdg != other.cs_mag_hdg: return False if self.cs_mag_3d != other.cs_mag_3d: return False if self.cs_mag_dec != other.cs_mag_dec: return False if self.cs_in_air != other.cs_in_air: return False if self.cs_wind != other.cs_wind: return False if self.cs_baro_hgt != other.cs_baro_hgt: return False if self.cs_rng_hgt != other.cs_rng_hgt: return False if self.cs_gps_hgt != other.cs_gps_hgt: return False if self.cs_ev_pos != other.cs_ev_pos: return False if self.cs_ev_yaw != other.cs_ev_yaw: return False if self.cs_ev_hgt != other.cs_ev_hgt: return False if self.cs_fuse_beta != other.cs_fuse_beta: return False if self.cs_mag_field_disturbed != other.cs_mag_field_disturbed: return False if self.cs_fixed_wing != other.cs_fixed_wing: return False if self.cs_mag_fault != other.cs_mag_fault: return False if self.cs_fuse_aspd != other.cs_fuse_aspd: return False if self.cs_gnd_effect != other.cs_gnd_effect: return False if self.cs_rng_stuck != other.cs_rng_stuck: return False if self.cs_gps_yaw != other.cs_gps_yaw: return False if self.cs_mag_aligned_in_flight != other.cs_mag_aligned_in_flight: return False if self.cs_ev_vel != other.cs_ev_vel: return False if self.cs_synthetic_mag_z != other.cs_synthetic_mag_z: return False if self.cs_vehicle_at_rest != other.cs_vehicle_at_rest: return False if self.fault_status_changes != other.fault_status_changes: return False if self.fs_bad_mag_x != other.fs_bad_mag_x: return False if self.fs_bad_mag_y != other.fs_bad_mag_y: return False if self.fs_bad_mag_z != other.fs_bad_mag_z: return False if self.fs_bad_hdg != other.fs_bad_hdg: return False if self.fs_bad_mag_decl != other.fs_bad_mag_decl: return False if self.fs_bad_airspeed != other.fs_bad_airspeed: return False if self.fs_bad_sideslip != other.fs_bad_sideslip: return False if self.fs_bad_optflow_x != other.fs_bad_optflow_x: return False if self.fs_bad_optflow_y != other.fs_bad_optflow_y: return False if self.fs_bad_vel_n != other.fs_bad_vel_n: return False if self.fs_bad_vel_e != other.fs_bad_vel_e: return False if self.fs_bad_vel_d != other.fs_bad_vel_d: return False if self.fs_bad_pos_n != other.fs_bad_pos_n: return False if self.fs_bad_pos_e != other.fs_bad_pos_e: return False if self.fs_bad_pos_d != other.fs_bad_pos_d: return False if self.fs_bad_acc_bias != other.fs_bad_acc_bias: return False if self.fs_bad_acc_vertical != other.fs_bad_acc_vertical: return False if self.fs_bad_acc_clipping != other.fs_bad_acc_clipping: return False if self.innovation_fault_status_changes != other.innovation_fault_status_changes: return False if self.reject_hor_vel != other.reject_hor_vel: return False if self.reject_ver_vel != other.reject_ver_vel: return False if self.reject_hor_pos != other.reject_hor_pos: return False if self.reject_ver_pos != other.reject_ver_pos: return False if self.reject_mag_x != other.reject_mag_x: return False if self.reject_mag_y != other.reject_mag_y: return False if self.reject_mag_z != other.reject_mag_z: return False if self.reject_yaw != other.reject_yaw: return False if self.reject_airspeed != other.reject_airspeed: return False if self.reject_sideslip != other.reject_sideslip: return False if self.reject_hagl != other.reject_hagl: return False if self.reject_optflow_x != other.reject_optflow_x: return False if self.reject_optflow_y != other.reject_optflow_y: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def timestamp_sample(self): """Message field 'timestamp_sample'.""" return self._timestamp_sample @timestamp_sample.setter def timestamp_sample(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp_sample' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp_sample' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp_sample = value @property def control_status_changes(self): """Message field 'control_status_changes'.""" return self._control_status_changes @control_status_changes.setter def control_status_changes(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'control_status_changes' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'control_status_changes' field must be an unsigned integer in [0, 4294967295]" self._control_status_changes = value @property def cs_tilt_align(self): """Message field 'cs_tilt_align'.""" return self._cs_tilt_align @cs_tilt_align.setter def cs_tilt_align(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'cs_tilt_align' field must be of type 'bool'" self._cs_tilt_align = value @property def cs_yaw_align(self): """Message field 'cs_yaw_align'.""" return self._cs_yaw_align @cs_yaw_align.setter def cs_yaw_align(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'cs_yaw_align' field must be of type 'bool'" self._cs_yaw_align = value @property def cs_gps(self): """Message field 'cs_gps'.""" return self._cs_gps @cs_gps.setter def cs_gps(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'cs_gps' field must be of type 'bool'" self._cs_gps = value @property def cs_opt_flow(self): """Message field 'cs_opt_flow'.""" return self._cs_opt_flow @cs_opt_flow.setter def cs_opt_flow(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'cs_opt_flow' field must be of type 'bool'" self._cs_opt_flow = value @property def cs_mag_hdg(self): """Message field 'cs_mag_hdg'.""" return self._cs_mag_hdg @cs_mag_hdg.setter def cs_mag_hdg(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'cs_mag_hdg' field must be of type 'bool'" self._cs_mag_hdg = value @property def cs_mag_3d(self): """Message field 'cs_mag_3d'.""" return self._cs_mag_3d @cs_mag_3d.setter def cs_mag_3d(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'cs_mag_3d' field must be of type 'bool'" self._cs_mag_3d = value @property def cs_mag_dec(self): """Message field 'cs_mag_dec'.""" return self._cs_mag_dec @cs_mag_dec.setter def cs_mag_dec(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'cs_mag_dec' field must be of type 'bool'" self._cs_mag_dec = value @property def cs_in_air(self): """Message field 'cs_in_air'.""" return self._cs_in_air @cs_in_air.setter def cs_in_air(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'cs_in_air' field must be of type 'bool'" self._cs_in_air = value @property def cs_wind(self): """Message field 'cs_wind'.""" return self._cs_wind @cs_wind.setter def cs_wind(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'cs_wind' field must be of type 'bool'" self._cs_wind = value @property def cs_baro_hgt(self): """Message field 'cs_baro_hgt'.""" return self._cs_baro_hgt @cs_baro_hgt.setter def cs_baro_hgt(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'cs_baro_hgt' field must be of type 'bool'" self._cs_baro_hgt = value @property def cs_rng_hgt(self): """Message field 'cs_rng_hgt'.""" return self._cs_rng_hgt @cs_rng_hgt.setter def cs_rng_hgt(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'cs_rng_hgt' field must be of type 'bool'" self._cs_rng_hgt = value @property def cs_gps_hgt(self): """Message field 'cs_gps_hgt'.""" return self._cs_gps_hgt @cs_gps_hgt.setter def cs_gps_hgt(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'cs_gps_hgt' field must be of type 'bool'" self._cs_gps_hgt = value @property def cs_ev_pos(self): """Message field 'cs_ev_pos'.""" return self._cs_ev_pos @cs_ev_pos.setter def cs_ev_pos(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'cs_ev_pos' field must be of type 'bool'" self._cs_ev_pos = value @property def cs_ev_yaw(self): """Message field 'cs_ev_yaw'.""" return self._cs_ev_yaw @cs_ev_yaw.setter def cs_ev_yaw(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'cs_ev_yaw' field must be of type 'bool'" self._cs_ev_yaw = value @property def cs_ev_hgt(self): """Message field 'cs_ev_hgt'.""" return self._cs_ev_hgt @cs_ev_hgt.setter def cs_ev_hgt(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'cs_ev_hgt' field must be of type 'bool'" self._cs_ev_hgt = value @property def cs_fuse_beta(self): """Message field 'cs_fuse_beta'.""" return self._cs_fuse_beta @cs_fuse_beta.setter def cs_fuse_beta(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'cs_fuse_beta' field must be of type 'bool'" self._cs_fuse_beta = value @property def cs_mag_field_disturbed(self): """Message field 'cs_mag_field_disturbed'.""" return self._cs_mag_field_disturbed @cs_mag_field_disturbed.setter def cs_mag_field_disturbed(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'cs_mag_field_disturbed' field must be of type 'bool'" self._cs_mag_field_disturbed = value @property def cs_fixed_wing(self): """Message field 'cs_fixed_wing'.""" return self._cs_fixed_wing @cs_fixed_wing.setter def cs_fixed_wing(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'cs_fixed_wing' field must be of type 'bool'" self._cs_fixed_wing = value @property def cs_mag_fault(self): """Message field 'cs_mag_fault'.""" return self._cs_mag_fault @cs_mag_fault.setter def cs_mag_fault(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'cs_mag_fault' field must be of type 'bool'" self._cs_mag_fault = value @property def cs_fuse_aspd(self): """Message field 'cs_fuse_aspd'.""" return self._cs_fuse_aspd @cs_fuse_aspd.setter def cs_fuse_aspd(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'cs_fuse_aspd' field must be of type 'bool'" self._cs_fuse_aspd = value @property def cs_gnd_effect(self): """Message field 'cs_gnd_effect'.""" return self._cs_gnd_effect @cs_gnd_effect.setter def cs_gnd_effect(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'cs_gnd_effect' field must be of type 'bool'" self._cs_gnd_effect = value @property def cs_rng_stuck(self): """Message field 'cs_rng_stuck'.""" return self._cs_rng_stuck @cs_rng_stuck.setter def cs_rng_stuck(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'cs_rng_stuck' field must be of type 'bool'" self._cs_rng_stuck = value @property def cs_gps_yaw(self): """Message field 'cs_gps_yaw'.""" return self._cs_gps_yaw @cs_gps_yaw.setter def cs_gps_yaw(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'cs_gps_yaw' field must be of type 'bool'" self._cs_gps_yaw = value @property def cs_mag_aligned_in_flight(self): """Message field 'cs_mag_aligned_in_flight'.""" return self._cs_mag_aligned_in_flight @cs_mag_aligned_in_flight.setter def cs_mag_aligned_in_flight(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'cs_mag_aligned_in_flight' field must be of type 'bool'" self._cs_mag_aligned_in_flight = value @property def cs_ev_vel(self): """Message field 'cs_ev_vel'.""" return self._cs_ev_vel @cs_ev_vel.setter def cs_ev_vel(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'cs_ev_vel' field must be of type 'bool'" self._cs_ev_vel = value @property def cs_synthetic_mag_z(self): """Message field 'cs_synthetic_mag_z'.""" return self._cs_synthetic_mag_z @cs_synthetic_mag_z.setter def cs_synthetic_mag_z(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'cs_synthetic_mag_z' field must be of type 'bool'" self._cs_synthetic_mag_z = value @property def cs_vehicle_at_rest(self): """Message field 'cs_vehicle_at_rest'.""" return self._cs_vehicle_at_rest @cs_vehicle_at_rest.setter def cs_vehicle_at_rest(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'cs_vehicle_at_rest' field must be of type 'bool'" self._cs_vehicle_at_rest = value @property def fault_status_changes(self): """Message field 'fault_status_changes'.""" return self._fault_status_changes @fault_status_changes.setter def fault_status_changes(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'fault_status_changes' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'fault_status_changes' field must be an unsigned integer in [0, 4294967295]" self._fault_status_changes = value @property def fs_bad_mag_x(self): """Message field 'fs_bad_mag_x'.""" return self._fs_bad_mag_x @fs_bad_mag_x.setter def fs_bad_mag_x(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'fs_bad_mag_x' field must be of type 'bool'" self._fs_bad_mag_x = value @property def fs_bad_mag_y(self): """Message field 'fs_bad_mag_y'.""" return self._fs_bad_mag_y @fs_bad_mag_y.setter def fs_bad_mag_y(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'fs_bad_mag_y' field must be of type 'bool'" self._fs_bad_mag_y = value @property def fs_bad_mag_z(self): """Message field 'fs_bad_mag_z'.""" return self._fs_bad_mag_z @fs_bad_mag_z.setter def fs_bad_mag_z(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'fs_bad_mag_z' field must be of type 'bool'" self._fs_bad_mag_z = value @property def fs_bad_hdg(self): """Message field 'fs_bad_hdg'.""" return self._fs_bad_hdg @fs_bad_hdg.setter def fs_bad_hdg(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'fs_bad_hdg' field must be of type 'bool'" self._fs_bad_hdg = value @property def fs_bad_mag_decl(self): """Message field 'fs_bad_mag_decl'.""" return self._fs_bad_mag_decl @fs_bad_mag_decl.setter def fs_bad_mag_decl(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'fs_bad_mag_decl' field must be of type 'bool'" self._fs_bad_mag_decl = value @property def fs_bad_airspeed(self): """Message field 'fs_bad_airspeed'.""" return self._fs_bad_airspeed @fs_bad_airspeed.setter def fs_bad_airspeed(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'fs_bad_airspeed' field must be of type 'bool'" self._fs_bad_airspeed = value @property def fs_bad_sideslip(self): """Message field 'fs_bad_sideslip'.""" return self._fs_bad_sideslip @fs_bad_sideslip.setter def fs_bad_sideslip(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'fs_bad_sideslip' field must be of type 'bool'" self._fs_bad_sideslip = value @property def fs_bad_optflow_x(self): """Message field 'fs_bad_optflow_x'.""" return self._fs_bad_optflow_x @fs_bad_optflow_x.setter def fs_bad_optflow_x(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'fs_bad_optflow_x' field must be of type 'bool'" self._fs_bad_optflow_x = value @property def fs_bad_optflow_y(self): """Message field 'fs_bad_optflow_y'.""" return self._fs_bad_optflow_y @fs_bad_optflow_y.setter def fs_bad_optflow_y(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'fs_bad_optflow_y' field must be of type 'bool'" self._fs_bad_optflow_y = value @property def fs_bad_vel_n(self): """Message field 'fs_bad_vel_n'.""" return self._fs_bad_vel_n @fs_bad_vel_n.setter def fs_bad_vel_n(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'fs_bad_vel_n' field must be of type 'bool'" self._fs_bad_vel_n = value @property def fs_bad_vel_e(self): """Message field 'fs_bad_vel_e'.""" return self._fs_bad_vel_e @fs_bad_vel_e.setter def fs_bad_vel_e(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'fs_bad_vel_e' field must be of type 'bool'" self._fs_bad_vel_e = value @property def fs_bad_vel_d(self): """Message field 'fs_bad_vel_d'.""" return self._fs_bad_vel_d @fs_bad_vel_d.setter def fs_bad_vel_d(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'fs_bad_vel_d' field must be of type 'bool'" self._fs_bad_vel_d = value @property def fs_bad_pos_n(self): """Message field 'fs_bad_pos_n'.""" return self._fs_bad_pos_n @fs_bad_pos_n.setter def fs_bad_pos_n(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'fs_bad_pos_n' field must be of type 'bool'" self._fs_bad_pos_n = value @property def fs_bad_pos_e(self): """Message field 'fs_bad_pos_e'.""" return self._fs_bad_pos_e @fs_bad_pos_e.setter def fs_bad_pos_e(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'fs_bad_pos_e' field must be of type 'bool'" self._fs_bad_pos_e = value @property def fs_bad_pos_d(self): """Message field 'fs_bad_pos_d'.""" return self._fs_bad_pos_d @fs_bad_pos_d.setter def fs_bad_pos_d(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'fs_bad_pos_d' field must be of type 'bool'" self._fs_bad_pos_d = value @property def fs_bad_acc_bias(self): """Message field 'fs_bad_acc_bias'.""" return self._fs_bad_acc_bias @fs_bad_acc_bias.setter def fs_bad_acc_bias(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'fs_bad_acc_bias' field must be of type 'bool'" self._fs_bad_acc_bias = value @property def fs_bad_acc_vertical(self): """Message field 'fs_bad_acc_vertical'.""" return self._fs_bad_acc_vertical @fs_bad_acc_vertical.setter def fs_bad_acc_vertical(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'fs_bad_acc_vertical' field must be of type 'bool'" self._fs_bad_acc_vertical = value @property def fs_bad_acc_clipping(self): """Message field 'fs_bad_acc_clipping'.""" return self._fs_bad_acc_clipping @fs_bad_acc_clipping.setter def fs_bad_acc_clipping(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'fs_bad_acc_clipping' field must be of type 'bool'" self._fs_bad_acc_clipping = value @property def innovation_fault_status_changes(self): """Message field 'innovation_fault_status_changes'.""" return self._innovation_fault_status_changes @innovation_fault_status_changes.setter def innovation_fault_status_changes(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'innovation_fault_status_changes' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'innovation_fault_status_changes' field must be an unsigned integer in [0, 4294967295]" self._innovation_fault_status_changes = value @property def reject_hor_vel(self): """Message field 'reject_hor_vel'.""" return self._reject_hor_vel @reject_hor_vel.setter def reject_hor_vel(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'reject_hor_vel' field must be of type 'bool'" self._reject_hor_vel = value @property def reject_ver_vel(self): """Message field 'reject_ver_vel'.""" return self._reject_ver_vel @reject_ver_vel.setter def reject_ver_vel(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'reject_ver_vel' field must be of type 'bool'" self._reject_ver_vel = value @property def reject_hor_pos(self): """Message field 'reject_hor_pos'.""" return self._reject_hor_pos @reject_hor_pos.setter def reject_hor_pos(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'reject_hor_pos' field must be of type 'bool'" self._reject_hor_pos = value @property def reject_ver_pos(self): """Message field 'reject_ver_pos'.""" return self._reject_ver_pos @reject_ver_pos.setter def reject_ver_pos(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'reject_ver_pos' field must be of type 'bool'" self._reject_ver_pos = value @property def reject_mag_x(self): """Message field 'reject_mag_x'.""" return self._reject_mag_x @reject_mag_x.setter def reject_mag_x(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'reject_mag_x' field must be of type 'bool'" self._reject_mag_x = value @property def reject_mag_y(self): """Message field 'reject_mag_y'.""" return self._reject_mag_y @reject_mag_y.setter def reject_mag_y(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'reject_mag_y' field must be of type 'bool'" self._reject_mag_y = value @property def reject_mag_z(self): """Message field 'reject_mag_z'.""" return self._reject_mag_z @reject_mag_z.setter def reject_mag_z(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'reject_mag_z' field must be of type 'bool'" self._reject_mag_z = value @property def reject_yaw(self): """Message field 'reject_yaw'.""" return self._reject_yaw @reject_yaw.setter def reject_yaw(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'reject_yaw' field must be of type 'bool'" self._reject_yaw = value @property def reject_airspeed(self): """Message field 'reject_airspeed'.""" return self._reject_airspeed @reject_airspeed.setter def reject_airspeed(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'reject_airspeed' field must be of type 'bool'" self._reject_airspeed = value @property def reject_sideslip(self): """Message field 'reject_sideslip'.""" return self._reject_sideslip @reject_sideslip.setter def reject_sideslip(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'reject_sideslip' field must be of type 'bool'" self._reject_sideslip = value @property def reject_hagl(self): """Message field 'reject_hagl'.""" return self._reject_hagl @reject_hagl.setter def reject_hagl(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'reject_hagl' field must be of type 'bool'" self._reject_hagl = value @property def reject_optflow_x(self): """Message field 'reject_optflow_x'.""" return self._reject_optflow_x @reject_optflow_x.setter def reject_optflow_x(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'reject_optflow_x' field must be of type 'bool'" self._reject_optflow_x = value @property def reject_optflow_y(self): """Message field 'reject_optflow_y'.""" return self._reject_optflow_y @reject_optflow_y.setter def reject_optflow_y(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'reject_optflow_y' field must be of type 'bool'" self._reject_optflow_y = value <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_odometry.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleOdometry.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ODOMETRY_H_ #define PX4_MSGS__MSG__VEHICLE_ODOMETRY_H_ #include "px4_msgs/msg/vehicle_odometry__struct.h" #include "px4_msgs/msg/vehicle_odometry__functions.h" #include "px4_msgs/msg/vehicle_odometry__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_ODOMETRY_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/adc_report__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/AdcReport.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ADC_REPORT__STRUCT_HPP_ #define PX4_MSGS__MSG__ADC_REPORT__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__AdcReport __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__AdcReport __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct AdcReport_ { using Type = AdcReport_<ContainerAllocator>; explicit AdcReport_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->device_id = 0ul; std::fill<typename std::array<int16_t, 12>::iterator, int16_t>(this->channel_id.begin(), this->channel_id.end(), 0); std::fill<typename std::array<int32_t, 12>::iterator, int32_t>(this->raw_data.begin(), this->raw_data.end(), 0l); this->resolution = 0ul; this->v_ref = 0.0f; } } explicit AdcReport_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : channel_id(_alloc), raw_data(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->device_id = 0ul; std::fill<typename std::array<int16_t, 12>::iterator, int16_t>(this->channel_id.begin(), this->channel_id.end(), 0); std::fill<typename std::array<int32_t, 12>::iterator, int32_t>(this->raw_data.begin(), this->raw_data.end(), 0l); this->resolution = 0ul; this->v_ref = 0.0f; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _device_id_type = uint32_t; _device_id_type device_id; using _channel_id_type = std::array<int16_t, 12>; _channel_id_type channel_id; using _raw_data_type = std::array<int32_t, 12>; _raw_data_type raw_data; using _resolution_type = uint32_t; _resolution_type resolution; using _v_ref_type = float; _v_ref_type v_ref; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__device_id( const uint32_t & _arg) { this->device_id = _arg; return *this; } Type & set__channel_id( const std::array<int16_t, 12> & _arg) { this->channel_id = _arg; return *this; } Type & set__raw_data( const std::array<int32_t, 12> & _arg) { this->raw_data = _arg; return *this; } Type & set__resolution( const uint32_t & _arg) { this->resolution = _arg; return *this; } Type & set__v_ref( const float & _arg) { this->v_ref = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::AdcReport_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::AdcReport_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::AdcReport_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::AdcReport_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::AdcReport_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::AdcReport_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::AdcReport_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::AdcReport_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::AdcReport_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::AdcReport_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__AdcReport std::shared_ptr<px4_msgs::msg::AdcReport_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__AdcReport std::shared_ptr<px4_msgs::msg::AdcReport_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const AdcReport_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->device_id != other.device_id) { return false; } if (this->channel_id != other.channel_id) { return false; } if (this->raw_data != other.raw_data) { return false; } if (this->resolution != other.resolution) { return false; } if (this->v_ref != other.v_ref) { return false; } return true; } bool operator!=(const AdcReport_ & other) const { return !this->operator==(other); } }; // struct AdcReport_ // alias to use template instance with default allocator using AdcReport = px4_msgs::msg::AdcReport_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__ADC_REPORT__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_sensors_status_imu.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/SensorsStatusImu.idl # generated code does not contain a copyright notice # Import statements for member types # Member 'accel_device_ids' # Member 'accel_inconsistency_m_s_s' # Member 'gyro_device_ids' # Member 'gyro_inconsistency_rad_s' import numpy # noqa: E402, I100 import rosidl_parser.definition # noqa: E402, I100 class Metaclass_SensorsStatusImu(type): """Metaclass of message 'SensorsStatusImu'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.SensorsStatusImu') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__sensors_status_imu cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__sensors_status_imu cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__sensors_status_imu cls._TYPE_SUPPORT = module.type_support_msg__msg__sensors_status_imu cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__sensors_status_imu @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class SensorsStatusImu(metaclass=Metaclass_SensorsStatusImu): """Message class 'SensorsStatusImu'.""" __slots__ = [ '_timestamp', '_accel_device_id_primary', '_accel_device_ids', '_accel_inconsistency_m_s_s', '_accel_healthy', '_gyro_device_id_primary', '_gyro_device_ids', '_gyro_inconsistency_rad_s', '_gyro_healthy', ] _fields_and_field_types = { 'timestamp': 'uint64', 'accel_device_id_primary': 'uint32', 'accel_device_ids': 'uint32[4]', 'accel_inconsistency_m_s_s': 'float[4]', 'accel_healthy': 'boolean[4]', 'gyro_device_id_primary': 'uint32', 'gyro_device_ids': 'uint32[4]', 'gyro_inconsistency_rad_s': 'float[4]', 'gyro_healthy': 'boolean[4]', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('uint32'), 4), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 4), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('boolean'), 4), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('uint32'), 4), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 4), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('boolean'), 4), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.accel_device_id_primary = kwargs.get('accel_device_id_primary', int()) if 'accel_device_ids' not in kwargs: self.accel_device_ids = numpy.zeros(4, dtype=numpy.uint32) else: self.accel_device_ids = numpy.array(kwargs.get('accel_device_ids'), dtype=numpy.uint32) assert self.accel_device_ids.shape == (4, ) if 'accel_inconsistency_m_s_s' not in kwargs: self.accel_inconsistency_m_s_s = numpy.zeros(4, dtype=numpy.float32) else: self.accel_inconsistency_m_s_s = numpy.array(kwargs.get('accel_inconsistency_m_s_s'), dtype=numpy.float32) assert self.accel_inconsistency_m_s_s.shape == (4, ) self.accel_healthy = kwargs.get( 'accel_healthy', [bool() for x in range(4)] ) self.gyro_device_id_primary = kwargs.get('gyro_device_id_primary', int()) if 'gyro_device_ids' not in kwargs: self.gyro_device_ids = numpy.zeros(4, dtype=numpy.uint32) else: self.gyro_device_ids = numpy.array(kwargs.get('gyro_device_ids'), dtype=numpy.uint32) assert self.gyro_device_ids.shape == (4, ) if 'gyro_inconsistency_rad_s' not in kwargs: self.gyro_inconsistency_rad_s = numpy.zeros(4, dtype=numpy.float32) else: self.gyro_inconsistency_rad_s = numpy.array(kwargs.get('gyro_inconsistency_rad_s'), dtype=numpy.float32) assert self.gyro_inconsistency_rad_s.shape == (4, ) self.gyro_healthy = kwargs.get( 'gyro_healthy', [bool() for x in range(4)] ) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.accel_device_id_primary != other.accel_device_id_primary: return False if all(self.accel_device_ids != other.accel_device_ids): return False if all(self.accel_inconsistency_m_s_s != other.accel_inconsistency_m_s_s): return False if self.accel_healthy != other.accel_healthy: return False if self.gyro_device_id_primary != other.gyro_device_id_primary: return False if all(self.gyro_device_ids != other.gyro_device_ids): return False if all(self.gyro_inconsistency_rad_s != other.gyro_inconsistency_rad_s): return False if self.gyro_healthy != other.gyro_healthy: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def accel_device_id_primary(self): """Message field 'accel_device_id_primary'.""" return self._accel_device_id_primary @accel_device_id_primary.setter def accel_device_id_primary(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'accel_device_id_primary' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'accel_device_id_primary' field must be an unsigned integer in [0, 4294967295]" self._accel_device_id_primary = value @property def accel_device_ids(self): """Message field 'accel_device_ids'.""" return self._accel_device_ids @accel_device_ids.setter def accel_device_ids(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.uint32, \ "The 'accel_device_ids' numpy.ndarray() must have the dtype of 'numpy.uint32'" assert value.size == 4, \ "The 'accel_device_ids' numpy.ndarray() must have a size of 4" self._accel_device_ids = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 4 and all(isinstance(v, int) for v in value) and all(val >= 0 and val < 4294967296 for val in value)), \ "The 'accel_device_ids' field must be a set or sequence with length 4 and each value of type 'int' and each unsigned integer in [0, 4294967295]" self._accel_device_ids = numpy.array(value, dtype=numpy.uint32) @property def accel_inconsistency_m_s_s(self): """Message field 'accel_inconsistency_m_s_s'.""" return self._accel_inconsistency_m_s_s @accel_inconsistency_m_s_s.setter def accel_inconsistency_m_s_s(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'accel_inconsistency_m_s_s' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 4, \ "The 'accel_inconsistency_m_s_s' numpy.ndarray() must have a size of 4" self._accel_inconsistency_m_s_s = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 4 and all(isinstance(v, float) for v in value) and True), \ "The 'accel_inconsistency_m_s_s' field must be a set or sequence with length 4 and each value of type 'float'" self._accel_inconsistency_m_s_s = numpy.array(value, dtype=numpy.float32) @property def accel_healthy(self): """Message field 'accel_healthy'.""" return self._accel_healthy @accel_healthy.setter def accel_healthy(self, value): if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 4 and all(isinstance(v, bool) for v in value) and True), \ "The 'accel_healthy' field must be a set or sequence with length 4 and each value of type 'bool'" self._accel_healthy = value @property def gyro_device_id_primary(self): """Message field 'gyro_device_id_primary'.""" return self._gyro_device_id_primary @gyro_device_id_primary.setter def gyro_device_id_primary(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'gyro_device_id_primary' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'gyro_device_id_primary' field must be an unsigned integer in [0, 4294967295]" self._gyro_device_id_primary = value @property def gyro_device_ids(self): """Message field 'gyro_device_ids'.""" return self._gyro_device_ids @gyro_device_ids.setter def gyro_device_ids(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.uint32, \ "The 'gyro_device_ids' numpy.ndarray() must have the dtype of 'numpy.uint32'" assert value.size == 4, \ "The 'gyro_device_ids' numpy.ndarray() must have a size of 4" self._gyro_device_ids = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 4 and all(isinstance(v, int) for v in value) and all(val >= 0 and val < 4294967296 for val in value)), \ "The 'gyro_device_ids' field must be a set or sequence with length 4 and each value of type 'int' and each unsigned integer in [0, 4294967295]" self._gyro_device_ids = numpy.array(value, dtype=numpy.uint32) @property def gyro_inconsistency_rad_s(self): """Message field 'gyro_inconsistency_rad_s'.""" return self._gyro_inconsistency_rad_s @gyro_inconsistency_rad_s.setter def gyro_inconsistency_rad_s(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'gyro_inconsistency_rad_s' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 4, \ "The 'gyro_inconsistency_rad_s' numpy.ndarray() must have a size of 4" self._gyro_inconsistency_rad_s = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 4 and all(isinstance(v, float) for v in value) and True), \ "The 'gyro_inconsistency_rad_s' field must be a set or sequence with length 4 and each value of type 'float'" self._gyro_inconsistency_rad_s = numpy.array(value, dtype=numpy.float32) @property def gyro_healthy(self): """Message field 'gyro_healthy'.""" return self._gyro_healthy @gyro_healthy.setter def gyro_healthy(self, value): if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 4 and all(isinstance(v, bool) for v in value) and True), \ "The 'gyro_healthy' field must be a set or sequence with length 4 and each value of type 'bool'" self._gyro_healthy = value <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_manual_control_setpoint.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/ManualControlSetpoint.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_ManualControlSetpoint(type): """Metaclass of message 'ManualControlSetpoint'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'SOURCE_RC': 1, 'SOURCE_MAVLINK_0': 2, 'SOURCE_MAVLINK_1': 3, 'SOURCE_MAVLINK_2': 4, 'SOURCE_MAVLINK_3': 5, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.ManualControlSetpoint') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__manual_control_setpoint cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__manual_control_setpoint cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__manual_control_setpoint cls._TYPE_SUPPORT = module.type_support_msg__msg__manual_control_setpoint cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__manual_control_setpoint @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'SOURCE_RC': cls.__constants['SOURCE_RC'], 'SOURCE_MAVLINK_0': cls.__constants['SOURCE_MAVLINK_0'], 'SOURCE_MAVLINK_1': cls.__constants['SOURCE_MAVLINK_1'], 'SOURCE_MAVLINK_2': cls.__constants['SOURCE_MAVLINK_2'], 'SOURCE_MAVLINK_3': cls.__constants['SOURCE_MAVLINK_3'], } @property def SOURCE_RC(self): """Message constant 'SOURCE_RC'.""" return Metaclass_ManualControlSetpoint.__constants['SOURCE_RC'] @property def SOURCE_MAVLINK_0(self): """Message constant 'SOURCE_MAVLINK_0'.""" return Metaclass_ManualControlSetpoint.__constants['SOURCE_MAVLINK_0'] @property def SOURCE_MAVLINK_1(self): """Message constant 'SOURCE_MAVLINK_1'.""" return Metaclass_ManualControlSetpoint.__constants['SOURCE_MAVLINK_1'] @property def SOURCE_MAVLINK_2(self): """Message constant 'SOURCE_MAVLINK_2'.""" return Metaclass_ManualControlSetpoint.__constants['SOURCE_MAVLINK_2'] @property def SOURCE_MAVLINK_3(self): """Message constant 'SOURCE_MAVLINK_3'.""" return Metaclass_ManualControlSetpoint.__constants['SOURCE_MAVLINK_3'] class ManualControlSetpoint(metaclass=Metaclass_ManualControlSetpoint): """ Message class 'ManualControlSetpoint'. Constants: SOURCE_RC SOURCE_MAVLINK_0 SOURCE_MAVLINK_1 SOURCE_MAVLINK_2 SOURCE_MAVLINK_3 """ __slots__ = [ '_timestamp', '_timestamp_sample', '_data_source', '_x', '_y', '_z', '_r', '_flaps', '_aux1', '_aux2', '_aux3', '_aux4', '_aux5', '_aux6', ] _fields_and_field_types = { 'timestamp': 'uint64', 'timestamp_sample': 'uint64', 'data_source': 'uint8', 'x': 'float', 'y': 'float', 'z': 'float', 'r': 'float', 'flaps': 'float', 'aux1': 'float', 'aux2': 'float', 'aux3': 'float', 'aux4': 'float', 'aux5': 'float', 'aux6': 'float', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.timestamp_sample = kwargs.get('timestamp_sample', int()) self.data_source = kwargs.get('data_source', int()) self.x = kwargs.get('x', float()) self.y = kwargs.get('y', float()) self.z = kwargs.get('z', float()) self.r = kwargs.get('r', float()) self.flaps = kwargs.get('flaps', float()) self.aux1 = kwargs.get('aux1', float()) self.aux2 = kwargs.get('aux2', float()) self.aux3 = kwargs.get('aux3', float()) self.aux4 = kwargs.get('aux4', float()) self.aux5 = kwargs.get('aux5', float()) self.aux6 = kwargs.get('aux6', float()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.timestamp_sample != other.timestamp_sample: return False if self.data_source != other.data_source: return False if self.x != other.x: return False if self.y != other.y: return False if self.z != other.z: return False if self.r != other.r: return False if self.flaps != other.flaps: return False if self.aux1 != other.aux1: return False if self.aux2 != other.aux2: return False if self.aux3 != other.aux3: return False if self.aux4 != other.aux4: return False if self.aux5 != other.aux5: return False if self.aux6 != other.aux6: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def timestamp_sample(self): """Message field 'timestamp_sample'.""" return self._timestamp_sample @timestamp_sample.setter def timestamp_sample(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp_sample' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp_sample' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp_sample = value @property def data_source(self): """Message field 'data_source'.""" return self._data_source @data_source.setter def data_source(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'data_source' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'data_source' field must be an unsigned integer in [0, 255]" self._data_source = value @property def x(self): """Message field 'x'.""" return self._x @x.setter def x(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'x' field must be of type 'float'" self._x = value @property def y(self): """Message field 'y'.""" return self._y @y.setter def y(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'y' field must be of type 'float'" self._y = value @property def z(self): """Message field 'z'.""" return self._z @z.setter def z(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'z' field must be of type 'float'" self._z = value @property def r(self): """Message field 'r'.""" return self._r @r.setter def r(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'r' field must be of type 'float'" self._r = value @property def flaps(self): """Message field 'flaps'.""" return self._flaps @flaps.setter def flaps(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'flaps' field must be of type 'float'" self._flaps = value @property def aux1(self): """Message field 'aux1'.""" return self._aux1 @aux1.setter def aux1(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'aux1' field must be of type 'float'" self._aux1 = value @property def aux2(self): """Message field 'aux2'.""" return self._aux2 @aux2.setter def aux2(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'aux2' field must be of type 'float'" self._aux2 = value @property def aux3(self): """Message field 'aux3'.""" return self._aux3 @aux3.setter def aux3(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'aux3' field must be of type 'float'" self._aux3 = value @property def aux4(self): """Message field 'aux4'.""" return self._aux4 @aux4.setter def aux4(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'aux4' field must be of type 'float'" self._aux4 = value @property def aux5(self): """Message field 'aux5'.""" return self._aux5 @aux5.setter def aux5(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'aux5' field must be of type 'float'" self._aux5 = value @property def aux6(self): """Message field 'aux6'.""" return self._aux6 @aux6.setter def aux6(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'aux6' field must be of type 'float'" self._aux6 = value <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_local_position.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/EstimatorLocalPosition.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_LOCAL_POSITION_H_ #define PX4_MSGS__MSG__ESTIMATOR_LOCAL_POSITION_H_ #include "px4_msgs/msg/estimator_local_position__struct.h" #include "px4_msgs/msg/estimator_local_position__functions.h" #include "px4_msgs/msg/estimator_local_position__type_support.h" #endif // PX4_MSGS__MSG__ESTIMATOR_LOCAL_POSITION_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/EstimatorInnovationTestRatios.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/estimator_innovation_test_ratios__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void EstimatorInnovationTestRatios_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::EstimatorInnovationTestRatios(_init); } void EstimatorInnovationTestRatios_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::EstimatorInnovationTestRatios *>(message_memory); typed_message->~EstimatorInnovationTestRatios(); } size_t size_function__EstimatorInnovationTestRatios__gps_hvel(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__EstimatorInnovationTestRatios__gps_hvel(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__EstimatorInnovationTestRatios__gps_hvel(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorInnovationTestRatios__gps_hpos(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__EstimatorInnovationTestRatios__gps_hpos(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__EstimatorInnovationTestRatios__gps_hpos(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorInnovationTestRatios__ev_hvel(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__EstimatorInnovationTestRatios__ev_hvel(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__EstimatorInnovationTestRatios__ev_hvel(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorInnovationTestRatios__ev_hpos(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__EstimatorInnovationTestRatios__ev_hpos(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__EstimatorInnovationTestRatios__ev_hpos(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorInnovationTestRatios__aux_hvel(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__EstimatorInnovationTestRatios__aux_hvel(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__EstimatorInnovationTestRatios__aux_hvel(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorInnovationTestRatios__flow(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__EstimatorInnovationTestRatios__flow(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__EstimatorInnovationTestRatios__flow(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorInnovationTestRatios__mag_field(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__EstimatorInnovationTestRatios__mag_field(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__EstimatorInnovationTestRatios__mag_field(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorInnovationTestRatios__drag(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__EstimatorInnovationTestRatios__drag(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__EstimatorInnovationTestRatios__drag(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember EstimatorInnovationTestRatios_message_member_array[21] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationTestRatios, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationTestRatios, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "gps_hvel", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationTestRatios, gps_hvel), // bytes offset in struct nullptr, // default value size_function__EstimatorInnovationTestRatios__gps_hvel, // size() function pointer get_const_function__EstimatorInnovationTestRatios__gps_hvel, // get_const(index) function pointer get_function__EstimatorInnovationTestRatios__gps_hvel, // get(index) function pointer nullptr // resize(index) function pointer }, { "gps_vvel", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationTestRatios, gps_vvel), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "gps_hpos", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationTestRatios, gps_hpos), // bytes offset in struct nullptr, // default value size_function__EstimatorInnovationTestRatios__gps_hpos, // size() function pointer get_const_function__EstimatorInnovationTestRatios__gps_hpos, // get_const(index) function pointer get_function__EstimatorInnovationTestRatios__gps_hpos, // get(index) function pointer nullptr // resize(index) function pointer }, { "gps_vpos", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationTestRatios, gps_vpos), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ev_hvel", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationTestRatios, ev_hvel), // bytes offset in struct nullptr, // default value size_function__EstimatorInnovationTestRatios__ev_hvel, // size() function pointer get_const_function__EstimatorInnovationTestRatios__ev_hvel, // get_const(index) function pointer get_function__EstimatorInnovationTestRatios__ev_hvel, // get(index) function pointer nullptr // resize(index) function pointer }, { "ev_vvel", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationTestRatios, ev_vvel), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ev_hpos", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationTestRatios, ev_hpos), // bytes offset in struct nullptr, // default value size_function__EstimatorInnovationTestRatios__ev_hpos, // size() function pointer get_const_function__EstimatorInnovationTestRatios__ev_hpos, // get_const(index) function pointer get_function__EstimatorInnovationTestRatios__ev_hpos, // get(index) function pointer nullptr // resize(index) function pointer }, { "ev_vpos", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationTestRatios, ev_vpos), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rng_vpos", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationTestRatios, rng_vpos), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "baro_vpos", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationTestRatios, baro_vpos), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "aux_hvel", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationTestRatios, aux_hvel), // bytes offset in struct nullptr, // default value size_function__EstimatorInnovationTestRatios__aux_hvel, // size() function pointer get_const_function__EstimatorInnovationTestRatios__aux_hvel, // get_const(index) function pointer get_function__EstimatorInnovationTestRatios__aux_hvel, // get(index) function pointer nullptr // resize(index) function pointer }, { "aux_vvel", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationTestRatios, aux_vvel), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "flow", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationTestRatios, flow), // bytes offset in struct nullptr, // default value size_function__EstimatorInnovationTestRatios__flow, // size() function pointer get_const_function__EstimatorInnovationTestRatios__flow, // get_const(index) function pointer get_function__EstimatorInnovationTestRatios__flow, // get(index) function pointer nullptr // resize(index) function pointer }, { "heading", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationTestRatios, heading), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "mag_field", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationTestRatios, mag_field), // bytes offset in struct nullptr, // default value size_function__EstimatorInnovationTestRatios__mag_field, // size() function pointer get_const_function__EstimatorInnovationTestRatios__mag_field, // get_const(index) function pointer get_function__EstimatorInnovationTestRatios__mag_field, // get(index) function pointer nullptr // resize(index) function pointer }, { "drag", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationTestRatios, drag), // bytes offset in struct nullptr, // default value size_function__EstimatorInnovationTestRatios__drag, // size() function pointer get_const_function__EstimatorInnovationTestRatios__drag, // get_const(index) function pointer get_function__EstimatorInnovationTestRatios__drag, // get(index) function pointer nullptr // resize(index) function pointer }, { "airspeed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationTestRatios, airspeed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "beta", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationTestRatios, beta), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "hagl", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationTestRatios, hagl), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers EstimatorInnovationTestRatios_message_members = { "px4_msgs::msg", // message namespace "EstimatorInnovationTestRatios", // message name 21, // number of fields sizeof(px4_msgs::msg::EstimatorInnovationTestRatios), EstimatorInnovationTestRatios_message_member_array, // message members EstimatorInnovationTestRatios_init_function, // function to initialize message memory (memory has to be allocated) EstimatorInnovationTestRatios_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t EstimatorInnovationTestRatios_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &EstimatorInnovationTestRatios_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::EstimatorInnovationTestRatios>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EstimatorInnovationTestRatios_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, EstimatorInnovationTestRatios)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EstimatorInnovationTestRatios_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/ament_cmake_core/package.cmake set(_AMENT_PACKAGE_NAME "px4_msgs") set(px4_msgs_VERSION "2.0.1") set(px4_msgs_MAINTAINER "<NAME> <<EMAIL>>") set(px4_msgs_BUILD_DEPENDS "builtin_interfaces" "ros_environment") set(px4_msgs_BUILDTOOL_DEPENDS "ament_cmake" "rosidl_default_generators") set(px4_msgs_BUILD_EXPORT_DEPENDS "builtin_interfaces" "ros_environment") set(px4_msgs_BUILDTOOL_EXPORT_DEPENDS ) set(px4_msgs_EXEC_DEPENDS "rosidl_default_runtime" "builtin_interfaces" "ros_environment") set(px4_msgs_TEST_DEPENDS "ament_lint_common") set(px4_msgs_GROUP_DEPENDS ) set(px4_msgs_MEMBER_OF_GROUPS "rosidl_interface_packages") set(px4_msgs_DEPRECATED "") set(px4_msgs_EXPORT_TAGS) list(APPEND px4_msgs_EXPORT_TAGS "<build_type>ament_cmake</build_type>") <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/sensors_status_imu.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSORS_STATUS_IMU_HPP_ #define PX4_MSGS__MSG__SENSORS_STATUS_IMU_HPP_ #include "px4_msgs/msg/sensors_status_imu__struct.hpp" #include "px4_msgs/msg/sensors_status_imu__traits.hpp" #endif // PX4_MSGS__MSG__SENSORS_STATUS_IMU_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/differential_pressure.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/DifferentialPressure.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__DIFFERENTIAL_PRESSURE_H_ #define PX4_MSGS__MSG__DIFFERENTIAL_PRESSURE_H_ #include "px4_msgs/msg/differential_pressure__struct.h" #include "px4_msgs/msg/differential_pressure__functions.h" #include "px4_msgs/msg/differential_pressure__type_support.h" #endif // PX4_MSGS__MSG__DIFFERENTIAL_PRESSURE_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/obstacle_distance__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/ObstacleDistance.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__OBSTACLE_DISTANCE__STRUCT_HPP_ #define PX4_MSGS__MSG__OBSTACLE_DISTANCE__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__ObstacleDistance __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__ObstacleDistance __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct ObstacleDistance_ { using Type = ObstacleDistance_<ContainerAllocator>; explicit ObstacleDistance_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->frame = 0; this->sensor_type = 0; std::fill<typename std::array<uint16_t, 72>::iterator, uint16_t>(this->distances.begin(), this->distances.end(), 0); this->increment = 0.0f; this->min_distance = 0; this->max_distance = 0; this->angle_offset = 0.0f; } } explicit ObstacleDistance_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : distances(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->frame = 0; this->sensor_type = 0; std::fill<typename std::array<uint16_t, 72>::iterator, uint16_t>(this->distances.begin(), this->distances.end(), 0); this->increment = 0.0f; this->min_distance = 0; this->max_distance = 0; this->angle_offset = 0.0f; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _frame_type = uint8_t; _frame_type frame; using _sensor_type_type = uint8_t; _sensor_type_type sensor_type; using _distances_type = std::array<uint16_t, 72>; _distances_type distances; using _increment_type = float; _increment_type increment; using _min_distance_type = uint16_t; _min_distance_type min_distance; using _max_distance_type = uint16_t; _max_distance_type max_distance; using _angle_offset_type = float; _angle_offset_type angle_offset; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__frame( const uint8_t & _arg) { this->frame = _arg; return *this; } Type & set__sensor_type( const uint8_t & _arg) { this->sensor_type = _arg; return *this; } Type & set__distances( const std::array<uint16_t, 72> & _arg) { this->distances = _arg; return *this; } Type & set__increment( const float & _arg) { this->increment = _arg; return *this; } Type & set__min_distance( const uint16_t & _arg) { this->min_distance = _arg; return *this; } Type & set__max_distance( const uint16_t & _arg) { this->max_distance = _arg; return *this; } Type & set__angle_offset( const float & _arg) { this->angle_offset = _arg; return *this; } // constant declarations static constexpr uint8_t MAV_FRAME_GLOBAL = 0u; static constexpr uint8_t MAV_FRAME_LOCAL_NED = 1u; static constexpr uint8_t MAV_FRAME_BODY_FRD = 12u; static constexpr uint8_t MAV_DISTANCE_SENSOR_LASER = 0u; static constexpr uint8_t MAV_DISTANCE_SENSOR_ULTRASOUND = 1u; static constexpr uint8_t MAV_DISTANCE_SENSOR_INFRARED = 2u; static constexpr uint8_t MAV_DISTANCE_SENSOR_RADAR = 3u; // pointer types using RawPtr = px4_msgs::msg::ObstacleDistance_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::ObstacleDistance_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::ObstacleDistance_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::ObstacleDistance_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::ObstacleDistance_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::ObstacleDistance_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::ObstacleDistance_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::ObstacleDistance_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::ObstacleDistance_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::ObstacleDistance_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__ObstacleDistance std::shared_ptr<px4_msgs::msg::ObstacleDistance_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__ObstacleDistance std::shared_ptr<px4_msgs::msg::ObstacleDistance_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const ObstacleDistance_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->frame != other.frame) { return false; } if (this->sensor_type != other.sensor_type) { return false; } if (this->distances != other.distances) { return false; } if (this->increment != other.increment) { return false; } if (this->min_distance != other.min_distance) { return false; } if (this->max_distance != other.max_distance) { return false; } if (this->angle_offset != other.angle_offset) { return false; } return true; } bool operator!=(const ObstacleDistance_ & other) const { return !this->operator==(other); } }; // struct ObstacleDistance_ // alias to use template instance with default allocator using ObstacleDistance = px4_msgs::msg::ObstacleDistance_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t ObstacleDistance_<ContainerAllocator>::MAV_FRAME_GLOBAL; template<typename ContainerAllocator> constexpr uint8_t ObstacleDistance_<ContainerAllocator>::MAV_FRAME_LOCAL_NED; template<typename ContainerAllocator> constexpr uint8_t ObstacleDistance_<ContainerAllocator>::MAV_FRAME_BODY_FRD; template<typename ContainerAllocator> constexpr uint8_t ObstacleDistance_<ContainerAllocator>::MAV_DISTANCE_SENSOR_LASER; template<typename ContainerAllocator> constexpr uint8_t ObstacleDistance_<ContainerAllocator>::MAV_DISTANCE_SENSOR_ULTRASOUND; template<typename ContainerAllocator> constexpr uint8_t ObstacleDistance_<ContainerAllocator>::MAV_DISTANCE_SENSOR_INFRARED; template<typename ContainerAllocator> constexpr uint8_t ObstacleDistance_<ContainerAllocator>::MAV_DISTANCE_SENSOR_RADAR; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__OBSTACLE_DISTANCE__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/PositionSetpoint.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/position_setpoint__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/position_setpoint__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::PositionSetpoint & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: valid cdr << (ros_message.valid ? true : false); // Member: type cdr << ros_message.type; // Member: vx cdr << ros_message.vx; // Member: vy cdr << ros_message.vy; // Member: vz cdr << ros_message.vz; // Member: velocity_valid cdr << (ros_message.velocity_valid ? true : false); // Member: velocity_frame cdr << ros_message.velocity_frame; // Member: alt_valid cdr << (ros_message.alt_valid ? true : false); // Member: lat cdr << ros_message.lat; // Member: lon cdr << ros_message.lon; // Member: alt cdr << ros_message.alt; // Member: yaw cdr << ros_message.yaw; // Member: yaw_valid cdr << (ros_message.yaw_valid ? true : false); // Member: yawspeed cdr << ros_message.yawspeed; // Member: yawspeed_valid cdr << (ros_message.yawspeed_valid ? true : false); // Member: landing_gear cdr << ros_message.landing_gear; // Member: loiter_radius cdr << ros_message.loiter_radius; // Member: loiter_direction cdr << ros_message.loiter_direction; // Member: acceptance_radius cdr << ros_message.acceptance_radius; // Member: cruising_speed cdr << ros_message.cruising_speed; // Member: cruising_throttle cdr << ros_message.cruising_throttle; // Member: disable_weather_vane cdr << (ros_message.disable_weather_vane ? true : false); return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::PositionSetpoint & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: valid { uint8_t tmp; cdr >> tmp; ros_message.valid = tmp ? true : false; } // Member: type cdr >> ros_message.type; // Member: vx cdr >> ros_message.vx; // Member: vy cdr >> ros_message.vy; // Member: vz cdr >> ros_message.vz; // Member: velocity_valid { uint8_t tmp; cdr >> tmp; ros_message.velocity_valid = tmp ? true : false; } // Member: velocity_frame cdr >> ros_message.velocity_frame; // Member: alt_valid { uint8_t tmp; cdr >> tmp; ros_message.alt_valid = tmp ? true : false; } // Member: lat cdr >> ros_message.lat; // Member: lon cdr >> ros_message.lon; // Member: alt cdr >> ros_message.alt; // Member: yaw cdr >> ros_message.yaw; // Member: yaw_valid { uint8_t tmp; cdr >> tmp; ros_message.yaw_valid = tmp ? true : false; } // Member: yawspeed cdr >> ros_message.yawspeed; // Member: yawspeed_valid { uint8_t tmp; cdr >> tmp; ros_message.yawspeed_valid = tmp ? true : false; } // Member: landing_gear cdr >> ros_message.landing_gear; // Member: loiter_radius cdr >> ros_message.loiter_radius; // Member: loiter_direction cdr >> ros_message.loiter_direction; // Member: acceptance_radius cdr >> ros_message.acceptance_radius; // Member: cruising_speed cdr >> ros_message.cruising_speed; // Member: cruising_throttle cdr >> ros_message.cruising_throttle; // Member: disable_weather_vane { uint8_t tmp; cdr >> tmp; ros_message.disable_weather_vane = tmp ? true : false; } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::PositionSetpoint & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: valid { size_t item_size = sizeof(ros_message.valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: type { size_t item_size = sizeof(ros_message.type); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: vx { size_t item_size = sizeof(ros_message.vx); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: vy { size_t item_size = sizeof(ros_message.vy); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: vz { size_t item_size = sizeof(ros_message.vz); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: velocity_valid { size_t item_size = sizeof(ros_message.velocity_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: velocity_frame { size_t item_size = sizeof(ros_message.velocity_frame); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: alt_valid { size_t item_size = sizeof(ros_message.alt_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: lat { size_t item_size = sizeof(ros_message.lat); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: lon { size_t item_size = sizeof(ros_message.lon); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: alt { size_t item_size = sizeof(ros_message.alt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: yaw { size_t item_size = sizeof(ros_message.yaw); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: yaw_valid { size_t item_size = sizeof(ros_message.yaw_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: yawspeed { size_t item_size = sizeof(ros_message.yawspeed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: yawspeed_valid { size_t item_size = sizeof(ros_message.yawspeed_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: landing_gear { size_t item_size = sizeof(ros_message.landing_gear); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: loiter_radius { size_t item_size = sizeof(ros_message.loiter_radius); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: loiter_direction { size_t item_size = sizeof(ros_message.loiter_direction); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: acceptance_radius { size_t item_size = sizeof(ros_message.acceptance_radius); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cruising_speed { size_t item_size = sizeof(ros_message.cruising_speed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cruising_throttle { size_t item_size = sizeof(ros_message.cruising_throttle); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: disable_weather_vane { size_t item_size = sizeof(ros_message.disable_weather_vane); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_PositionSetpoint( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: type { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: vx { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: vy { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: vz { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: velocity_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: velocity_frame { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: alt_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: lat { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: lon { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: alt { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: yaw { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: yaw_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: yawspeed { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: yawspeed_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: landing_gear { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: loiter_radius { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: loiter_direction { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: acceptance_radius { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: cruising_speed { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: cruising_throttle { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: disable_weather_vane { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _PositionSetpoint__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::PositionSetpoint *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _PositionSetpoint__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::PositionSetpoint *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _PositionSetpoint__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::PositionSetpoint *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _PositionSetpoint__max_serialized_size(bool & full_bounded) { return max_serialized_size_PositionSetpoint(full_bounded, 0); } static message_type_support_callbacks_t _PositionSetpoint__callbacks = { "px4_msgs::msg", "PositionSetpoint", _PositionSetpoint__cdr_serialize, _PositionSetpoint__cdr_deserialize, _PositionSetpoint__get_serialized_size, _PositionSetpoint__max_serialized_size }; static rosidl_message_type_support_t _PositionSetpoint__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_PositionSetpoint__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::PositionSetpoint>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_PositionSetpoint__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, PositionSetpoint)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_PositionSetpoint__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_attitude.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ATTITUDE_HPP_ #define PX4_MSGS__MSG__VEHICLE_ATTITUDE_HPP_ #include "px4_msgs/msg/vehicle_attitude__struct.hpp" #include "px4_msgs/msg/vehicle_attitude__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_ATTITUDE_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/telemetry_status__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/TelemetryStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TELEMETRY_STATUS__STRUCT_H_ #define PX4_MSGS__MSG__TELEMETRY_STATUS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'LINK_TYPE_GENERIC'. enum { px4_msgs__msg__TelemetryStatus__LINK_TYPE_GENERIC = 0 }; /// Constant 'LINK_TYPE_UBIQUITY_BULLET'. enum { px4_msgs__msg__TelemetryStatus__LINK_TYPE_UBIQUITY_BULLET = 1 }; /// Constant 'LINK_TYPE_WIRE'. enum { px4_msgs__msg__TelemetryStatus__LINK_TYPE_WIRE = 2 }; /// Constant 'LINK_TYPE_USB'. enum { px4_msgs__msg__TelemetryStatus__LINK_TYPE_USB = 3 }; /// Constant 'LINK_TYPE_IRIDIUM'. enum { px4_msgs__msg__TelemetryStatus__LINK_TYPE_IRIDIUM = 4 }; /// Constant 'HEARTBEAT_TIMEOUT_US'. enum { px4_msgs__msg__TelemetryStatus__HEARTBEAT_TIMEOUT_US = 1500000ull }; // Struct defined in msg/TelemetryStatus in the package px4_msgs. typedef struct px4_msgs__msg__TelemetryStatus { uint64_t timestamp; uint8_t type; uint8_t mode; bool flow_control; bool forwarding; bool mavlink_v2; bool ftp; uint8_t streams; float data_rate; float rate_multiplier; float tx_rate_avg; float tx_error_rate_avg; uint32_t tx_message_count; uint32_t tx_buffer_overruns; float rx_rate_avg; uint32_t rx_message_count; uint32_t rx_message_count_supported; uint32_t rx_message_lost_count; uint32_t rx_buffer_overruns; uint32_t rx_parse_errors; uint32_t rx_packet_drop_count; float rx_message_lost_rate; bool heartbeat_type_antenna_tracker; bool heartbeat_type_gcs; bool heartbeat_type_onboard_controller; bool heartbeat_type_gimbal; bool heartbeat_type_adsb; bool heartbeat_type_camera; bool heartbeat_component_telemetry_radio; bool heartbeat_component_log; bool heartbeat_component_osd; bool heartbeat_component_obstacle_avoidance; bool heartbeat_component_vio; bool heartbeat_component_pairing_manager; bool heartbeat_component_udp_bridge; bool heartbeat_component_uart_bridge; bool avoidance_system_healthy; } px4_msgs__msg__TelemetryStatus; // Struct for a sequence of px4_msgs__msg__TelemetryStatus. typedef struct px4_msgs__msg__TelemetryStatus__Sequence { px4_msgs__msg__TelemetryStatus * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__TelemetryStatus__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__TELEMETRY_STATUS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_parameter_map__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/RcParameterMap.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/rc_parameter_map__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void RcParameterMap_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::RcParameterMap(_init); } void RcParameterMap_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::RcParameterMap *>(message_memory); typed_message->~RcParameterMap(); } size_t size_function__RcParameterMap__valid(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__RcParameterMap__valid(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<bool, 3> *>(untyped_member); return &member[index]; } void * get_function__RcParameterMap__valid(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<bool, 3> *>(untyped_member); return &member[index]; } size_t size_function__RcParameterMap__param_index(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__RcParameterMap__param_index(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<int32_t, 3> *>(untyped_member); return &member[index]; } void * get_function__RcParameterMap__param_index(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<int32_t, 3> *>(untyped_member); return &member[index]; } size_t size_function__RcParameterMap__param_id(const void * untyped_member) { (void)untyped_member; return 51; } const void * get_const_function__RcParameterMap__param_id(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint8_t, 51> *>(untyped_member); return &member[index]; } void * get_function__RcParameterMap__param_id(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint8_t, 51> *>(untyped_member); return &member[index]; } size_t size_function__RcParameterMap__scale(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__RcParameterMap__scale(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__RcParameterMap__scale(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } size_t size_function__RcParameterMap__value0(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__RcParameterMap__value0(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__RcParameterMap__value0(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } size_t size_function__RcParameterMap__value_min(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__RcParameterMap__value_min(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__RcParameterMap__value_min(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } size_t size_function__RcParameterMap__value_max(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__RcParameterMap__value_max(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__RcParameterMap__value_max(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember RcParameterMap_message_member_array[8] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::RcParameterMap, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::RcParameterMap, valid), // bytes offset in struct nullptr, // default value size_function__RcParameterMap__valid, // size() function pointer get_const_function__RcParameterMap__valid, // get_const(index) function pointer get_function__RcParameterMap__valid, // get(index) function pointer nullptr // resize(index) function pointer }, { "param_index", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT32, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::RcParameterMap, param_index), // bytes offset in struct nullptr, // default value size_function__RcParameterMap__param_index, // size() function pointer get_const_function__RcParameterMap__param_index, // get_const(index) function pointer get_function__RcParameterMap__param_index, // get(index) function pointer nullptr // resize(index) function pointer }, { "param_id", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 51, // array size false, // is upper bound offsetof(px4_msgs::msg::RcParameterMap, param_id), // bytes offset in struct nullptr, // default value size_function__RcParameterMap__param_id, // size() function pointer get_const_function__RcParameterMap__param_id, // get_const(index) function pointer get_function__RcParameterMap__param_id, // get(index) function pointer nullptr // resize(index) function pointer }, { "scale", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::RcParameterMap, scale), // bytes offset in struct nullptr, // default value size_function__RcParameterMap__scale, // size() function pointer get_const_function__RcParameterMap__scale, // get_const(index) function pointer get_function__RcParameterMap__scale, // get(index) function pointer nullptr // resize(index) function pointer }, { "value0", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::RcParameterMap, value0), // bytes offset in struct nullptr, // default value size_function__RcParameterMap__value0, // size() function pointer get_const_function__RcParameterMap__value0, // get_const(index) function pointer get_function__RcParameterMap__value0, // get(index) function pointer nullptr // resize(index) function pointer }, { "value_min", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::RcParameterMap, value_min), // bytes offset in struct nullptr, // default value size_function__RcParameterMap__value_min, // size() function pointer get_const_function__RcParameterMap__value_min, // get_const(index) function pointer get_function__RcParameterMap__value_min, // get(index) function pointer nullptr // resize(index) function pointer }, { "value_max", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::RcParameterMap, value_max), // bytes offset in struct nullptr, // default value size_function__RcParameterMap__value_max, // size() function pointer get_const_function__RcParameterMap__value_max, // get_const(index) function pointer get_function__RcParameterMap__value_max, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers RcParameterMap_message_members = { "px4_msgs::msg", // message namespace "RcParameterMap", // message name 8, // number of fields sizeof(px4_msgs::msg::RcParameterMap), RcParameterMap_message_member_array, // message members RcParameterMap_init_function, // function to initialize message memory (memory has to be allocated) RcParameterMap_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t RcParameterMap_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &RcParameterMap_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::RcParameterMap>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::RcParameterMap_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, RcParameterMap)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::RcParameterMap_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_landing_target_pose.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/LandingTargetPose.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_LandingTargetPose(type): """Metaclass of message 'LandingTargetPose'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.LandingTargetPose') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__landing_target_pose cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__landing_target_pose cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__landing_target_pose cls._TYPE_SUPPORT = module.type_support_msg__msg__landing_target_pose cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__landing_target_pose @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class LandingTargetPose(metaclass=Metaclass_LandingTargetPose): """Message class 'LandingTargetPose'.""" __slots__ = [ '_timestamp', '_is_static', '_rel_pos_valid', '_rel_vel_valid', '_x_rel', '_y_rel', '_z_rel', '_vx_rel', '_vy_rel', '_cov_x_rel', '_cov_y_rel', '_cov_vx_rel', '_cov_vy_rel', '_abs_pos_valid', '_x_abs', '_y_abs', '_z_abs', ] _fields_and_field_types = { 'timestamp': 'uint64', 'is_static': 'boolean', 'rel_pos_valid': 'boolean', 'rel_vel_valid': 'boolean', 'x_rel': 'float', 'y_rel': 'float', 'z_rel': 'float', 'vx_rel': 'float', 'vy_rel': 'float', 'cov_x_rel': 'float', 'cov_y_rel': 'float', 'cov_vx_rel': 'float', 'cov_vy_rel': 'float', 'abs_pos_valid': 'boolean', 'x_abs': 'float', 'y_abs': 'float', 'z_abs': 'float', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.is_static = kwargs.get('is_static', bool()) self.rel_pos_valid = kwargs.get('rel_pos_valid', bool()) self.rel_vel_valid = kwargs.get('rel_vel_valid', bool()) self.x_rel = kwargs.get('x_rel', float()) self.y_rel = kwargs.get('y_rel', float()) self.z_rel = kwargs.get('z_rel', float()) self.vx_rel = kwargs.get('vx_rel', float()) self.vy_rel = kwargs.get('vy_rel', float()) self.cov_x_rel = kwargs.get('cov_x_rel', float()) self.cov_y_rel = kwargs.get('cov_y_rel', float()) self.cov_vx_rel = kwargs.get('cov_vx_rel', float()) self.cov_vy_rel = kwargs.get('cov_vy_rel', float()) self.abs_pos_valid = kwargs.get('abs_pos_valid', bool()) self.x_abs = kwargs.get('x_abs', float()) self.y_abs = kwargs.get('y_abs', float()) self.z_abs = kwargs.get('z_abs', float()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.is_static != other.is_static: return False if self.rel_pos_valid != other.rel_pos_valid: return False if self.rel_vel_valid != other.rel_vel_valid: return False if self.x_rel != other.x_rel: return False if self.y_rel != other.y_rel: return False if self.z_rel != other.z_rel: return False if self.vx_rel != other.vx_rel: return False if self.vy_rel != other.vy_rel: return False if self.cov_x_rel != other.cov_x_rel: return False if self.cov_y_rel != other.cov_y_rel: return False if self.cov_vx_rel != other.cov_vx_rel: return False if self.cov_vy_rel != other.cov_vy_rel: return False if self.abs_pos_valid != other.abs_pos_valid: return False if self.x_abs != other.x_abs: return False if self.y_abs != other.y_abs: return False if self.z_abs != other.z_abs: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def is_static(self): """Message field 'is_static'.""" return self._is_static @is_static.setter def is_static(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'is_static' field must be of type 'bool'" self._is_static = value @property def rel_pos_valid(self): """Message field 'rel_pos_valid'.""" return self._rel_pos_valid @rel_pos_valid.setter def rel_pos_valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'rel_pos_valid' field must be of type 'bool'" self._rel_pos_valid = value @property def rel_vel_valid(self): """Message field 'rel_vel_valid'.""" return self._rel_vel_valid @rel_vel_valid.setter def rel_vel_valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'rel_vel_valid' field must be of type 'bool'" self._rel_vel_valid = value @property def x_rel(self): """Message field 'x_rel'.""" return self._x_rel @x_rel.setter def x_rel(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'x_rel' field must be of type 'float'" self._x_rel = value @property def y_rel(self): """Message field 'y_rel'.""" return self._y_rel @y_rel.setter def y_rel(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'y_rel' field must be of type 'float'" self._y_rel = value @property def z_rel(self): """Message field 'z_rel'.""" return self._z_rel @z_rel.setter def z_rel(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'z_rel' field must be of type 'float'" self._z_rel = value @property def vx_rel(self): """Message field 'vx_rel'.""" return self._vx_rel @vx_rel.setter def vx_rel(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'vx_rel' field must be of type 'float'" self._vx_rel = value @property def vy_rel(self): """Message field 'vy_rel'.""" return self._vy_rel @vy_rel.setter def vy_rel(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'vy_rel' field must be of type 'float'" self._vy_rel = value @property def cov_x_rel(self): """Message field 'cov_x_rel'.""" return self._cov_x_rel @cov_x_rel.setter def cov_x_rel(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'cov_x_rel' field must be of type 'float'" self._cov_x_rel = value @property def cov_y_rel(self): """Message field 'cov_y_rel'.""" return self._cov_y_rel @cov_y_rel.setter def cov_y_rel(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'cov_y_rel' field must be of type 'float'" self._cov_y_rel = value @property def cov_vx_rel(self): """Message field 'cov_vx_rel'.""" return self._cov_vx_rel @cov_vx_rel.setter def cov_vx_rel(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'cov_vx_rel' field must be of type 'float'" self._cov_vx_rel = value @property def cov_vy_rel(self): """Message field 'cov_vy_rel'.""" return self._cov_vy_rel @cov_vy_rel.setter def cov_vy_rel(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'cov_vy_rel' field must be of type 'float'" self._cov_vy_rel = value @property def abs_pos_valid(self): """Message field 'abs_pos_valid'.""" return self._abs_pos_valid @abs_pos_valid.setter def abs_pos_valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'abs_pos_valid' field must be of type 'bool'" self._abs_pos_valid = value @property def x_abs(self): """Message field 'x_abs'.""" return self._x_abs @x_abs.setter def x_abs(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'x_abs' field must be of type 'float'" self._x_abs = value @property def y_abs(self): """Message field 'y_abs'.""" return self._y_abs @y_abs.setter def y_abs(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'y_abs' field must be of type 'float'" self._y_abs = value @property def z_abs(self): """Message field 'z_abs'.""" return self._z_abs @z_abs.setter def z_abs(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'z_abs' field must be of type 'float'" self._z_abs = value <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/rate_ctrl_status__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/RateCtrlStatus.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/rate_ctrl_status__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void RateCtrlStatus_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::RateCtrlStatus(_init); } void RateCtrlStatus_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::RateCtrlStatus *>(message_memory); typed_message->~RateCtrlStatus(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember RateCtrlStatus_message_member_array[5] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::RateCtrlStatus, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rollspeed_integ", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::RateCtrlStatus, rollspeed_integ), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "pitchspeed_integ", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::RateCtrlStatus, pitchspeed_integ), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "yawspeed_integ", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::RateCtrlStatus, yawspeed_integ), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "additional_integ1", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::RateCtrlStatus, additional_integ1), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers RateCtrlStatus_message_members = { "px4_msgs::msg", // message namespace "RateCtrlStatus", // message name 5, // number of fields sizeof(px4_msgs::msg::RateCtrlStatus), RateCtrlStatus_message_member_array, // message members RateCtrlStatus_init_function, // function to initialize message memory (memory has to be allocated) RateCtrlStatus_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t RateCtrlStatus_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &RateCtrlStatus_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::RateCtrlStatus>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::RateCtrlStatus_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, RateCtrlStatus)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::RateCtrlStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/home_position__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/HomePosition.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__HOME_POSITION__STRUCT_HPP_ #define PX4_MSGS__MSG__HOME_POSITION__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__HomePosition __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__HomePosition __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct HomePosition_ { using Type = HomePosition_<ContainerAllocator>; explicit HomePosition_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->lat = 0.0; this->lon = 0.0; this->alt = 0.0f; this->x = 0.0f; this->y = 0.0f; this->z = 0.0f; this->yaw = 0.0f; this->valid_alt = false; this->valid_hpos = false; this->valid_lpos = false; this->manual_home = false; } } explicit HomePosition_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->lat = 0.0; this->lon = 0.0; this->alt = 0.0f; this->x = 0.0f; this->y = 0.0f; this->z = 0.0f; this->yaw = 0.0f; this->valid_alt = false; this->valid_hpos = false; this->valid_lpos = false; this->manual_home = false; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _lat_type = double; _lat_type lat; using _lon_type = double; _lon_type lon; using _alt_type = float; _alt_type alt; using _x_type = float; _x_type x; using _y_type = float; _y_type y; using _z_type = float; _z_type z; using _yaw_type = float; _yaw_type yaw; using _valid_alt_type = bool; _valid_alt_type valid_alt; using _valid_hpos_type = bool; _valid_hpos_type valid_hpos; using _valid_lpos_type = bool; _valid_lpos_type valid_lpos; using _manual_home_type = bool; _manual_home_type manual_home; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__lat( const double & _arg) { this->lat = _arg; return *this; } Type & set__lon( const double & _arg) { this->lon = _arg; return *this; } Type & set__alt( const float & _arg) { this->alt = _arg; return *this; } Type & set__x( const float & _arg) { this->x = _arg; return *this; } Type & set__y( const float & _arg) { this->y = _arg; return *this; } Type & set__z( const float & _arg) { this->z = _arg; return *this; } Type & set__yaw( const float & _arg) { this->yaw = _arg; return *this; } Type & set__valid_alt( const bool & _arg) { this->valid_alt = _arg; return *this; } Type & set__valid_hpos( const bool & _arg) { this->valid_hpos = _arg; return *this; } Type & set__valid_lpos( const bool & _arg) { this->valid_lpos = _arg; return *this; } Type & set__manual_home( const bool & _arg) { this->manual_home = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::HomePosition_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::HomePosition_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::HomePosition_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::HomePosition_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::HomePosition_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::HomePosition_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::HomePosition_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::HomePosition_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::HomePosition_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::HomePosition_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__HomePosition std::shared_ptr<px4_msgs::msg::HomePosition_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__HomePosition std::shared_ptr<px4_msgs::msg::HomePosition_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const HomePosition_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->lat != other.lat) { return false; } if (this->lon != other.lon) { return false; } if (this->alt != other.alt) { return false; } if (this->x != other.x) { return false; } if (this->y != other.y) { return false; } if (this->z != other.z) { return false; } if (this->yaw != other.yaw) { return false; } if (this->valid_alt != other.valid_alt) { return false; } if (this->valid_hpos != other.valid_hpos) { return false; } if (this->valid_lpos != other.valid_lpos) { return false; } if (this->manual_home != other.manual_home) { return false; } return true; } bool operator!=(const HomePosition_ & other) const { return !this->operator==(other); } }; // struct HomePosition_ // alias to use template instance with default allocator using HomePosition = px4_msgs::msg::HomePosition_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__HOME_POSITION__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/VehicleGlobalPosition.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_global_position__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/vehicle_global_position__struct.h" #include "px4_msgs/msg/vehicle_global_position__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _VehicleGlobalPosition__ros_msg_type = px4_msgs__msg__VehicleGlobalPosition; static bool _VehicleGlobalPosition__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _VehicleGlobalPosition__ros_msg_type * ros_message = static_cast<const _VehicleGlobalPosition__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: timestamp_sample { cdr << ros_message->timestamp_sample; } // Field name: lat { cdr << ros_message->lat; } // Field name: lon { cdr << ros_message->lon; } // Field name: alt { cdr << ros_message->alt; } // Field name: alt_ellipsoid { cdr << ros_message->alt_ellipsoid; } // Field name: delta_alt { cdr << ros_message->delta_alt; } // Field name: lat_lon_reset_counter { cdr << ros_message->lat_lon_reset_counter; } // Field name: alt_reset_counter { cdr << ros_message->alt_reset_counter; } // Field name: eph { cdr << ros_message->eph; } // Field name: epv { cdr << ros_message->epv; } // Field name: terrain_alt { cdr << ros_message->terrain_alt; } // Field name: terrain_alt_valid { cdr << (ros_message->terrain_alt_valid ? true : false); } // Field name: dead_reckoning { cdr << (ros_message->dead_reckoning ? true : false); } return true; } static bool _VehicleGlobalPosition__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _VehicleGlobalPosition__ros_msg_type * ros_message = static_cast<_VehicleGlobalPosition__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: timestamp_sample { cdr >> ros_message->timestamp_sample; } // Field name: lat { cdr >> ros_message->lat; } // Field name: lon { cdr >> ros_message->lon; } // Field name: alt { cdr >> ros_message->alt; } // Field name: alt_ellipsoid { cdr >> ros_message->alt_ellipsoid; } // Field name: delta_alt { cdr >> ros_message->delta_alt; } // Field name: lat_lon_reset_counter { cdr >> ros_message->lat_lon_reset_counter; } // Field name: alt_reset_counter { cdr >> ros_message->alt_reset_counter; } // Field name: eph { cdr >> ros_message->eph; } // Field name: epv { cdr >> ros_message->epv; } // Field name: terrain_alt { cdr >> ros_message->terrain_alt; } // Field name: terrain_alt_valid { uint8_t tmp; cdr >> tmp; ros_message->terrain_alt_valid = tmp ? true : false; } // Field name: dead_reckoning { uint8_t tmp; cdr >> tmp; ros_message->dead_reckoning = tmp ? true : false; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__VehicleGlobalPosition( const void * untyped_ros_message, size_t current_alignment) { const _VehicleGlobalPosition__ros_msg_type * ros_message = static_cast<const _VehicleGlobalPosition__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name timestamp_sample { size_t item_size = sizeof(ros_message->timestamp_sample); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name lat { size_t item_size = sizeof(ros_message->lat); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name lon { size_t item_size = sizeof(ros_message->lon); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name alt { size_t item_size = sizeof(ros_message->alt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name alt_ellipsoid { size_t item_size = sizeof(ros_message->alt_ellipsoid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name delta_alt { size_t item_size = sizeof(ros_message->delta_alt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name lat_lon_reset_counter { size_t item_size = sizeof(ros_message->lat_lon_reset_counter); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name alt_reset_counter { size_t item_size = sizeof(ros_message->alt_reset_counter); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name eph { size_t item_size = sizeof(ros_message->eph); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name epv { size_t item_size = sizeof(ros_message->epv); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name terrain_alt { size_t item_size = sizeof(ros_message->terrain_alt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name terrain_alt_valid { size_t item_size = sizeof(ros_message->terrain_alt_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name dead_reckoning { size_t item_size = sizeof(ros_message->dead_reckoning); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _VehicleGlobalPosition__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__VehicleGlobalPosition( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__VehicleGlobalPosition( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: timestamp_sample { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: lat { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: lon { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: alt { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: alt_ellipsoid { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: delta_alt { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: lat_lon_reset_counter { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: alt_reset_counter { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: eph { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: epv { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: terrain_alt { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: terrain_alt_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: dead_reckoning { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _VehicleGlobalPosition__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__VehicleGlobalPosition( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_VehicleGlobalPosition = { "px4_msgs::msg", "VehicleGlobalPosition", _VehicleGlobalPosition__cdr_serialize, _VehicleGlobalPosition__cdr_deserialize, _VehicleGlobalPosition__get_serialized_size, _VehicleGlobalPosition__max_serialized_size }; static rosidl_message_type_support_t _VehicleGlobalPosition__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_VehicleGlobalPosition, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, VehicleGlobalPosition)() { return &_VehicleGlobalPosition__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/task_stack_info__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/TaskStackInfo.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TASK_STACK_INFO__STRUCT_HPP_ #define PX4_MSGS__MSG__TASK_STACK_INFO__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__TaskStackInfo __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__TaskStackInfo __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct TaskStackInfo_ { using Type = TaskStackInfo_<ContainerAllocator>; explicit TaskStackInfo_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->stack_free = 0; std::fill<typename std::array<uint8_t, 24>::iterator, uint8_t>(this->task_name.begin(), this->task_name.end(), 0); } } explicit TaskStackInfo_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : task_name(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->stack_free = 0; std::fill<typename std::array<uint8_t, 24>::iterator, uint8_t>(this->task_name.begin(), this->task_name.end(), 0); } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _stack_free_type = uint16_t; _stack_free_type stack_free; using _task_name_type = std::array<uint8_t, 24>; _task_name_type task_name; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__stack_free( const uint16_t & _arg) { this->stack_free = _arg; return *this; } Type & set__task_name( const std::array<uint8_t, 24> & _arg) { this->task_name = _arg; return *this; } // constant declarations static constexpr uint8_t ORB_QUEUE_LENGTH = 2u; // pointer types using RawPtr = px4_msgs::msg::TaskStackInfo_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::TaskStackInfo_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::TaskStackInfo_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::TaskStackInfo_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::TaskStackInfo_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::TaskStackInfo_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::TaskStackInfo_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::TaskStackInfo_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::TaskStackInfo_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::TaskStackInfo_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__TaskStackInfo std::shared_ptr<px4_msgs::msg::TaskStackInfo_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__TaskStackInfo std::shared_ptr<px4_msgs::msg::TaskStackInfo_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const TaskStackInfo_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->stack_free != other.stack_free) { return false; } if (this->task_name != other.task_name) { return false; } return true; } bool operator!=(const TaskStackInfo_ & other) const { return !this->operator==(other); } }; // struct TaskStackInfo_ // alias to use template instance with default allocator using TaskStackInfo = px4_msgs::msg::TaskStackInfo_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t TaskStackInfo_<ContainerAllocator>::ORB_QUEUE_LENGTH; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__TASK_STACK_INFO__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/orbit_status__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/OrbitStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/orbit_status__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__OrbitStatus__init(px4_msgs__msg__OrbitStatus * msg) { if (!msg) { return false; } // timestamp // radius // frame // x // y // z // yaw_behaviour return true; } void px4_msgs__msg__OrbitStatus__fini(px4_msgs__msg__OrbitStatus * msg) { if (!msg) { return; } // timestamp // radius // frame // x // y // z // yaw_behaviour } px4_msgs__msg__OrbitStatus * px4_msgs__msg__OrbitStatus__create() { px4_msgs__msg__OrbitStatus * msg = (px4_msgs__msg__OrbitStatus *)malloc(sizeof(px4_msgs__msg__OrbitStatus)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__OrbitStatus)); bool success = px4_msgs__msg__OrbitStatus__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__OrbitStatus__destroy(px4_msgs__msg__OrbitStatus * msg) { if (msg) { px4_msgs__msg__OrbitStatus__fini(msg); } free(msg); } bool px4_msgs__msg__OrbitStatus__Sequence__init(px4_msgs__msg__OrbitStatus__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__OrbitStatus * data = NULL; if (size) { data = (px4_msgs__msg__OrbitStatus *)calloc(size, sizeof(px4_msgs__msg__OrbitStatus)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__OrbitStatus__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__OrbitStatus__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__OrbitStatus__Sequence__fini(px4_msgs__msg__OrbitStatus__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__OrbitStatus__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__OrbitStatus__Sequence * px4_msgs__msg__OrbitStatus__Sequence__create(size_t size) { px4_msgs__msg__OrbitStatus__Sequence * array = (px4_msgs__msg__OrbitStatus__Sequence *)malloc(sizeof(px4_msgs__msg__OrbitStatus__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__OrbitStatus__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__OrbitStatus__Sequence__destroy(px4_msgs__msg__OrbitStatus__Sequence * array) { if (array) { px4_msgs__msg__OrbitStatus__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/ping__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/Ping.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/ping__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/ping__struct.h" #include "px4_msgs/msg/ping__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _Ping__ros_msg_type = px4_msgs__msg__Ping; static bool _Ping__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _Ping__ros_msg_type * ros_message = static_cast<const _Ping__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: ping_time { cdr << ros_message->ping_time; } // Field name: ping_sequence { cdr << ros_message->ping_sequence; } // Field name: dropped_packets { cdr << ros_message->dropped_packets; } // Field name: rtt_ms { cdr << ros_message->rtt_ms; } // Field name: system_id { cdr << ros_message->system_id; } // Field name: component_id { cdr << ros_message->component_id; } return true; } static bool _Ping__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _Ping__ros_msg_type * ros_message = static_cast<_Ping__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: ping_time { cdr >> ros_message->ping_time; } // Field name: ping_sequence { cdr >> ros_message->ping_sequence; } // Field name: dropped_packets { cdr >> ros_message->dropped_packets; } // Field name: rtt_ms { cdr >> ros_message->rtt_ms; } // Field name: system_id { cdr >> ros_message->system_id; } // Field name: component_id { cdr >> ros_message->component_id; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__Ping( const void * untyped_ros_message, size_t current_alignment) { const _Ping__ros_msg_type * ros_message = static_cast<const _Ping__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name ping_time { size_t item_size = sizeof(ros_message->ping_time); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name ping_sequence { size_t item_size = sizeof(ros_message->ping_sequence); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name dropped_packets { size_t item_size = sizeof(ros_message->dropped_packets); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rtt_ms { size_t item_size = sizeof(ros_message->rtt_ms); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name system_id { size_t item_size = sizeof(ros_message->system_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name component_id { size_t item_size = sizeof(ros_message->component_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _Ping__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__Ping( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__Ping( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: ping_time { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: ping_sequence { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: dropped_packets { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: rtt_ms { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: system_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: component_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _Ping__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__Ping( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_Ping = { "px4_msgs::msg", "Ping", _Ping__cdr_serialize, _Ping__cdr_deserialize, _Ping__get_serialized_size, _Ping__max_serialized_size }; static rosidl_message_type_support_t _Ping__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_Ping, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, Ping)() { return &_Ping__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/esc_report.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESC_REPORT_HPP_ #define PX4_MSGS__MSG__ESC_REPORT_HPP_ #include "px4_msgs/msg/esc_report__struct.hpp" #include "px4_msgs/msg/esc_report__traits.hpp" #endif // PX4_MSGS__MSG__ESC_REPORT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_roi__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleRoi.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_roi__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/vehicle_roi__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::VehicleRoi & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: mode cdr << ros_message.mode; // Member: lat cdr << ros_message.lat; // Member: lon cdr << ros_message.lon; // Member: alt cdr << ros_message.alt; // Member: roll_offset cdr << ros_message.roll_offset; // Member: pitch_offset cdr << ros_message.pitch_offset; // Member: yaw_offset cdr << ros_message.yaw_offset; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::VehicleRoi & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: mode cdr >> ros_message.mode; // Member: lat cdr >> ros_message.lat; // Member: lon cdr >> ros_message.lon; // Member: alt cdr >> ros_message.alt; // Member: roll_offset cdr >> ros_message.roll_offset; // Member: pitch_offset cdr >> ros_message.pitch_offset; // Member: yaw_offset cdr >> ros_message.yaw_offset; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::VehicleRoi & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: mode { size_t item_size = sizeof(ros_message.mode); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: lat { size_t item_size = sizeof(ros_message.lat); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: lon { size_t item_size = sizeof(ros_message.lon); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: alt { size_t item_size = sizeof(ros_message.alt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: roll_offset { size_t item_size = sizeof(ros_message.roll_offset); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: pitch_offset { size_t item_size = sizeof(ros_message.pitch_offset); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: yaw_offset { size_t item_size = sizeof(ros_message.yaw_offset); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_VehicleRoi( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: mode { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: lat { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: lon { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: alt { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: roll_offset { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: pitch_offset { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: yaw_offset { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static bool _VehicleRoi__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::VehicleRoi *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _VehicleRoi__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::VehicleRoi *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _VehicleRoi__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::VehicleRoi *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _VehicleRoi__max_serialized_size(bool & full_bounded) { return max_serialized_size_VehicleRoi(full_bounded, 0); } static message_type_support_callbacks_t _VehicleRoi__callbacks = { "px4_msgs::msg", "VehicleRoi", _VehicleRoi__cdr_serialize, _VehicleRoi__cdr_deserialize, _VehicleRoi__get_serialized_size, _VehicleRoi__max_serialized_size }; static rosidl_message_type_support_t _VehicleRoi__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_VehicleRoi__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleRoi>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_VehicleRoi__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, VehicleRoi)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_VehicleRoi__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_gimbal_manager_information.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/GimbalManagerInformation.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_GimbalManagerInformation(type): """Metaclass of message 'GimbalManagerInformation'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'GIMBAL_MANAGER_CAP_FLAGS_HAS_RETRACT': 1, 'GIMBAL_MANAGER_CAP_FLAGS_HAS_NEUTRAL': 2, 'GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_AXIS': 4, 'GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_FOLLOW': 8, 'GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_LOCK': 16, 'GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_AXIS': 32, 'GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_FOLLOW': 64, 'GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_LOCK': 128, 'GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_AXIS': 256, 'GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_FOLLOW': 512, 'GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_LOCK': 1024, 'GIMBAL_MANAGER_CAP_FLAGS_SUPPORTS_INFINITE_YAW': 2048, 'GIMBAL_MANAGER_CAP_FLAGS_CAN_POINT_LOCATION_LOCAL': 65536, 'GIMBAL_MANAGER_CAP_FLAGS_CAN_POINT_LOCATION_GLOBAL': 131072, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.GimbalManagerInformation') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__gimbal_manager_information cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__gimbal_manager_information cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__gimbal_manager_information cls._TYPE_SUPPORT = module.type_support_msg__msg__gimbal_manager_information cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__gimbal_manager_information @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'GIMBAL_MANAGER_CAP_FLAGS_HAS_RETRACT': cls.__constants['GIMBAL_MANAGER_CAP_FLAGS_HAS_RETRACT'], 'GIMBAL_MANAGER_CAP_FLAGS_HAS_NEUTRAL': cls.__constants['GIMBAL_MANAGER_CAP_FLAGS_HAS_NEUTRAL'], 'GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_AXIS': cls.__constants['GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_AXIS'], 'GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_FOLLOW': cls.__constants['GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_FOLLOW'], 'GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_LOCK': cls.__constants['GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_LOCK'], 'GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_AXIS': cls.__constants['GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_AXIS'], 'GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_FOLLOW': cls.__constants['GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_FOLLOW'], 'GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_LOCK': cls.__constants['GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_LOCK'], 'GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_AXIS': cls.__constants['GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_AXIS'], 'GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_FOLLOW': cls.__constants['GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_FOLLOW'], 'GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_LOCK': cls.__constants['GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_LOCK'], 'GIMBAL_MANAGER_CAP_FLAGS_SUPPORTS_INFINITE_YAW': cls.__constants['GIMBAL_MANAGER_CAP_FLAGS_SUPPORTS_INFINITE_YAW'], 'GIMBAL_MANAGER_CAP_FLAGS_CAN_POINT_LOCATION_LOCAL': cls.__constants['GIMBAL_MANAGER_CAP_FLAGS_CAN_POINT_LOCATION_LOCAL'], 'GIMBAL_MANAGER_CAP_FLAGS_CAN_POINT_LOCATION_GLOBAL': cls.__constants['GIMBAL_MANAGER_CAP_FLAGS_CAN_POINT_LOCATION_GLOBAL'], } @property def GIMBAL_MANAGER_CAP_FLAGS_HAS_RETRACT(self): """Message constant 'GIMBAL_MANAGER_CAP_FLAGS_HAS_RETRACT'.""" return Metaclass_GimbalManagerInformation.__constants['GIMBAL_MANAGER_CAP_FLAGS_HAS_RETRACT'] @property def GIMBAL_MANAGER_CAP_FLAGS_HAS_NEUTRAL(self): """Message constant 'GIMBAL_MANAGER_CAP_FLAGS_HAS_NEUTRAL'.""" return Metaclass_GimbalManagerInformation.__constants['GIMBAL_MANAGER_CAP_FLAGS_HAS_NEUTRAL'] @property def GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_AXIS(self): """Message constant 'GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_AXIS'.""" return Metaclass_GimbalManagerInformation.__constants['GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_AXIS'] @property def GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_FOLLOW(self): """Message constant 'GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_FOLLOW'.""" return Metaclass_GimbalManagerInformation.__constants['GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_FOLLOW'] @property def GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_LOCK(self): """Message constant 'GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_LOCK'.""" return Metaclass_GimbalManagerInformation.__constants['GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_LOCK'] @property def GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_AXIS(self): """Message constant 'GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_AXIS'.""" return Metaclass_GimbalManagerInformation.__constants['GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_AXIS'] @property def GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_FOLLOW(self): """Message constant 'GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_FOLLOW'.""" return Metaclass_GimbalManagerInformation.__constants['GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_FOLLOW'] @property def GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_LOCK(self): """Message constant 'GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_LOCK'.""" return Metaclass_GimbalManagerInformation.__constants['GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_LOCK'] @property def GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_AXIS(self): """Message constant 'GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_AXIS'.""" return Metaclass_GimbalManagerInformation.__constants['GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_AXIS'] @property def GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_FOLLOW(self): """Message constant 'GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_FOLLOW'.""" return Metaclass_GimbalManagerInformation.__constants['GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_FOLLOW'] @property def GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_LOCK(self): """Message constant 'GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_LOCK'.""" return Metaclass_GimbalManagerInformation.__constants['GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_LOCK'] @property def GIMBAL_MANAGER_CAP_FLAGS_SUPPORTS_INFINITE_YAW(self): """Message constant 'GIMBAL_MANAGER_CAP_FLAGS_SUPPORTS_INFINITE_YAW'.""" return Metaclass_GimbalManagerInformation.__constants['GIMBAL_MANAGER_CAP_FLAGS_SUPPORTS_INFINITE_YAW'] @property def GIMBAL_MANAGER_CAP_FLAGS_CAN_POINT_LOCATION_LOCAL(self): """Message constant 'GIMBAL_MANAGER_CAP_FLAGS_CAN_POINT_LOCATION_LOCAL'.""" return Metaclass_GimbalManagerInformation.__constants['GIMBAL_MANAGER_CAP_FLAGS_CAN_POINT_LOCATION_LOCAL'] @property def GIMBAL_MANAGER_CAP_FLAGS_CAN_POINT_LOCATION_GLOBAL(self): """Message constant 'GIMBAL_MANAGER_CAP_FLAGS_CAN_POINT_LOCATION_GLOBAL'.""" return Metaclass_GimbalManagerInformation.__constants['GIMBAL_MANAGER_CAP_FLAGS_CAN_POINT_LOCATION_GLOBAL'] class GimbalManagerInformation(metaclass=Metaclass_GimbalManagerInformation): """ Message class 'GimbalManagerInformation'. Constants: GIMBAL_MANAGER_CAP_FLAGS_HAS_RETRACT GIMBAL_MANAGER_CAP_FLAGS_HAS_NEUTRAL GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_AXIS GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_FOLLOW GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_LOCK GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_AXIS GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_FOLLOW GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_LOCK GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_AXIS GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_FOLLOW GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_LOCK GIMBAL_MANAGER_CAP_FLAGS_SUPPORTS_INFINITE_YAW GIMBAL_MANAGER_CAP_FLAGS_CAN_POINT_LOCATION_LOCAL GIMBAL_MANAGER_CAP_FLAGS_CAN_POINT_LOCATION_GLOBAL """ __slots__ = [ '_timestamp', '_cap_flags', '_gimbal_device_id', '_roll_min', '_roll_max', '_pitch_min', '_pitch_max', '_yaw_min', '_yaw_max', ] _fields_and_field_types = { 'timestamp': 'uint64', 'cap_flags': 'uint32', 'gimbal_device_id': 'uint8', 'roll_min': 'float', 'roll_max': 'float', 'pitch_min': 'float', 'pitch_max': 'float', 'yaw_min': 'float', 'yaw_max': 'float', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.cap_flags = kwargs.get('cap_flags', int()) self.gimbal_device_id = kwargs.get('gimbal_device_id', int()) self.roll_min = kwargs.get('roll_min', float()) self.roll_max = kwargs.get('roll_max', float()) self.pitch_min = kwargs.get('pitch_min', float()) self.pitch_max = kwargs.get('pitch_max', float()) self.yaw_min = kwargs.get('yaw_min', float()) self.yaw_max = kwargs.get('yaw_max', float()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.cap_flags != other.cap_flags: return False if self.gimbal_device_id != other.gimbal_device_id: return False if self.roll_min != other.roll_min: return False if self.roll_max != other.roll_max: return False if self.pitch_min != other.pitch_min: return False if self.pitch_max != other.pitch_max: return False if self.yaw_min != other.yaw_min: return False if self.yaw_max != other.yaw_max: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def cap_flags(self): """Message field 'cap_flags'.""" return self._cap_flags @cap_flags.setter def cap_flags(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'cap_flags' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'cap_flags' field must be an unsigned integer in [0, 4294967295]" self._cap_flags = value @property def gimbal_device_id(self): """Message field 'gimbal_device_id'.""" return self._gimbal_device_id @gimbal_device_id.setter def gimbal_device_id(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'gimbal_device_id' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'gimbal_device_id' field must be an unsigned integer in [0, 255]" self._gimbal_device_id = value @property def roll_min(self): """Message field 'roll_min'.""" return self._roll_min @roll_min.setter def roll_min(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'roll_min' field must be of type 'float'" self._roll_min = value @property def roll_max(self): """Message field 'roll_max'.""" return self._roll_max @roll_max.setter def roll_max(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'roll_max' field must be of type 'float'" self._roll_max = value @property def pitch_min(self): """Message field 'pitch_min'.""" return self._pitch_min @pitch_min.setter def pitch_min(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'pitch_min' field must be of type 'float'" self._pitch_min = value @property def pitch_max(self): """Message field 'pitch_max'.""" return self._pitch_max @pitch_max.setter def pitch_max(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'pitch_max' field must be of type 'float'" self._pitch_max = value @property def yaw_min(self): """Message field 'yaw_min'.""" return self._yaw_min @yaw_min.setter def yaw_min(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'yaw_min' field must be of type 'float'" self._yaw_min = value @property def yaw_max(self): """Message field 'yaw_max'.""" return self._yaw_max @yaw_max.setter def yaw_max(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'yaw_max' field must be of type 'float'" self._yaw_max = value <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/takeoff_status__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/TakeoffStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/takeoff_status__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__TakeoffStatus__init(px4_msgs__msg__TakeoffStatus * msg) { if (!msg) { return false; } // timestamp // takeoff_state // tilt_limit return true; } void px4_msgs__msg__TakeoffStatus__fini(px4_msgs__msg__TakeoffStatus * msg) { if (!msg) { return; } // timestamp // takeoff_state // tilt_limit } px4_msgs__msg__TakeoffStatus * px4_msgs__msg__TakeoffStatus__create() { px4_msgs__msg__TakeoffStatus * msg = (px4_msgs__msg__TakeoffStatus *)malloc(sizeof(px4_msgs__msg__TakeoffStatus)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__TakeoffStatus)); bool success = px4_msgs__msg__TakeoffStatus__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__TakeoffStatus__destroy(px4_msgs__msg__TakeoffStatus * msg) { if (msg) { px4_msgs__msg__TakeoffStatus__fini(msg); } free(msg); } bool px4_msgs__msg__TakeoffStatus__Sequence__init(px4_msgs__msg__TakeoffStatus__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__TakeoffStatus * data = NULL; if (size) { data = (px4_msgs__msg__TakeoffStatus *)calloc(size, sizeof(px4_msgs__msg__TakeoffStatus)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__TakeoffStatus__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__TakeoffStatus__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__TakeoffStatus__Sequence__fini(px4_msgs__msg__TakeoffStatus__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__TakeoffStatus__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__TakeoffStatus__Sequence * px4_msgs__msg__TakeoffStatus__Sequence__create(size_t size) { px4_msgs__msg__TakeoffStatus__Sequence * array = (px4_msgs__msg__TakeoffStatus__Sequence *)malloc(sizeof(px4_msgs__msg__TakeoffStatus__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__TakeoffStatus__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__TakeoffStatus__Sequence__destroy(px4_msgs__msg__TakeoffStatus__Sequence * array) { if (array) { px4_msgs__msg__TakeoffStatus__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/generator_status.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GENERATOR_STATUS_HPP_ #define PX4_MSGS__MSG__GENERATOR_STATUS_HPP_ #include "px4_msgs/msg/generator_status__struct.hpp" #include "px4_msgs/msg/generator_status__traits.hpp" #endif // PX4_MSGS__MSG__GENERATOR_STATUS_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/pwm_input.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/PwmInput.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__PWM_INPUT_H_ #define PX4_MSGS__MSG__PWM_INPUT_H_ #include "px4_msgs/msg/pwm_input__struct.h" #include "px4_msgs/msg/pwm_input__functions.h" #include "px4_msgs/msg/pwm_input__type_support.h" #endif // PX4_MSGS__MSG__PWM_INPUT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/estimator_status__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/EstimatorStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_STATUS__STRUCT_HPP_ #define PX4_MSGS__MSG__ESTIMATOR_STATUS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__EstimatorStatus __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__EstimatorStatus __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct EstimatorStatus_ { using Type = EstimatorStatus_<ContainerAllocator>; explicit EstimatorStatus_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; std::fill<typename std::array<float, 3>::iterator, float>(this->vibe.begin(), this->vibe.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->output_tracking_error.begin(), this->output_tracking_error.end(), 0.0f); this->gps_check_fail_flags = 0; this->control_mode_flags = 0ul; this->filter_fault_flags = 0ul; this->pos_horiz_accuracy = 0.0f; this->pos_vert_accuracy = 0.0f; this->innovation_check_flags = 0; this->mag_test_ratio = 0.0f; this->vel_test_ratio = 0.0f; this->pos_test_ratio = 0.0f; this->hgt_test_ratio = 0.0f; this->tas_test_ratio = 0.0f; this->hagl_test_ratio = 0.0f; this->beta_test_ratio = 0.0f; this->solution_status_flags = 0; this->reset_count_vel_ne = 0; this->reset_count_vel_d = 0; this->reset_count_pos_ne = 0; this->reset_count_pod_d = 0; this->reset_count_quat = 0; this->time_slip = 0.0f; this->pre_flt_fail_innov_heading = false; this->pre_flt_fail_innov_vel_horiz = false; this->pre_flt_fail_innov_vel_vert = false; this->pre_flt_fail_innov_height = false; this->pre_flt_fail_mag_field_disturbed = false; this->accel_device_id = 0ul; this->gyro_device_id = 0ul; this->baro_device_id = 0ul; this->mag_device_id = 0ul; this->health_flags = 0; this->timeout_flags = 0; } } explicit EstimatorStatus_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : vibe(_alloc), output_tracking_error(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; std::fill<typename std::array<float, 3>::iterator, float>(this->vibe.begin(), this->vibe.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->output_tracking_error.begin(), this->output_tracking_error.end(), 0.0f); this->gps_check_fail_flags = 0; this->control_mode_flags = 0ul; this->filter_fault_flags = 0ul; this->pos_horiz_accuracy = 0.0f; this->pos_vert_accuracy = 0.0f; this->innovation_check_flags = 0; this->mag_test_ratio = 0.0f; this->vel_test_ratio = 0.0f; this->pos_test_ratio = 0.0f; this->hgt_test_ratio = 0.0f; this->tas_test_ratio = 0.0f; this->hagl_test_ratio = 0.0f; this->beta_test_ratio = 0.0f; this->solution_status_flags = 0; this->reset_count_vel_ne = 0; this->reset_count_vel_d = 0; this->reset_count_pos_ne = 0; this->reset_count_pod_d = 0; this->reset_count_quat = 0; this->time_slip = 0.0f; this->pre_flt_fail_innov_heading = false; this->pre_flt_fail_innov_vel_horiz = false; this->pre_flt_fail_innov_vel_vert = false; this->pre_flt_fail_innov_height = false; this->pre_flt_fail_mag_field_disturbed = false; this->accel_device_id = 0ul; this->gyro_device_id = 0ul; this->baro_device_id = 0ul; this->mag_device_id = 0ul; this->health_flags = 0; this->timeout_flags = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _timestamp_sample_type = uint64_t; _timestamp_sample_type timestamp_sample; using _vibe_type = std::array<float, 3>; _vibe_type vibe; using _output_tracking_error_type = std::array<float, 3>; _output_tracking_error_type output_tracking_error; using _gps_check_fail_flags_type = uint16_t; _gps_check_fail_flags_type gps_check_fail_flags; using _control_mode_flags_type = uint32_t; _control_mode_flags_type control_mode_flags; using _filter_fault_flags_type = uint32_t; _filter_fault_flags_type filter_fault_flags; using _pos_horiz_accuracy_type = float; _pos_horiz_accuracy_type pos_horiz_accuracy; using _pos_vert_accuracy_type = float; _pos_vert_accuracy_type pos_vert_accuracy; using _innovation_check_flags_type = uint16_t; _innovation_check_flags_type innovation_check_flags; using _mag_test_ratio_type = float; _mag_test_ratio_type mag_test_ratio; using _vel_test_ratio_type = float; _vel_test_ratio_type vel_test_ratio; using _pos_test_ratio_type = float; _pos_test_ratio_type pos_test_ratio; using _hgt_test_ratio_type = float; _hgt_test_ratio_type hgt_test_ratio; using _tas_test_ratio_type = float; _tas_test_ratio_type tas_test_ratio; using _hagl_test_ratio_type = float; _hagl_test_ratio_type hagl_test_ratio; using _beta_test_ratio_type = float; _beta_test_ratio_type beta_test_ratio; using _solution_status_flags_type = uint16_t; _solution_status_flags_type solution_status_flags; using _reset_count_vel_ne_type = uint8_t; _reset_count_vel_ne_type reset_count_vel_ne; using _reset_count_vel_d_type = uint8_t; _reset_count_vel_d_type reset_count_vel_d; using _reset_count_pos_ne_type = uint8_t; _reset_count_pos_ne_type reset_count_pos_ne; using _reset_count_pod_d_type = uint8_t; _reset_count_pod_d_type reset_count_pod_d; using _reset_count_quat_type = uint8_t; _reset_count_quat_type reset_count_quat; using _time_slip_type = float; _time_slip_type time_slip; using _pre_flt_fail_innov_heading_type = bool; _pre_flt_fail_innov_heading_type pre_flt_fail_innov_heading; using _pre_flt_fail_innov_vel_horiz_type = bool; _pre_flt_fail_innov_vel_horiz_type pre_flt_fail_innov_vel_horiz; using _pre_flt_fail_innov_vel_vert_type = bool; _pre_flt_fail_innov_vel_vert_type pre_flt_fail_innov_vel_vert; using _pre_flt_fail_innov_height_type = bool; _pre_flt_fail_innov_height_type pre_flt_fail_innov_height; using _pre_flt_fail_mag_field_disturbed_type = bool; _pre_flt_fail_mag_field_disturbed_type pre_flt_fail_mag_field_disturbed; using _accel_device_id_type = uint32_t; _accel_device_id_type accel_device_id; using _gyro_device_id_type = uint32_t; _gyro_device_id_type gyro_device_id; using _baro_device_id_type = uint32_t; _baro_device_id_type baro_device_id; using _mag_device_id_type = uint32_t; _mag_device_id_type mag_device_id; using _health_flags_type = uint8_t; _health_flags_type health_flags; using _timeout_flags_type = uint8_t; _timeout_flags_type timeout_flags; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__timestamp_sample( const uint64_t & _arg) { this->timestamp_sample = _arg; return *this; } Type & set__vibe( const std::array<float, 3> & _arg) { this->vibe = _arg; return *this; } Type & set__output_tracking_error( const std::array<float, 3> & _arg) { this->output_tracking_error = _arg; return *this; } Type & set__gps_check_fail_flags( const uint16_t & _arg) { this->gps_check_fail_flags = _arg; return *this; } Type & set__control_mode_flags( const uint32_t & _arg) { this->control_mode_flags = _arg; return *this; } Type & set__filter_fault_flags( const uint32_t & _arg) { this->filter_fault_flags = _arg; return *this; } Type & set__pos_horiz_accuracy( const float & _arg) { this->pos_horiz_accuracy = _arg; return *this; } Type & set__pos_vert_accuracy( const float & _arg) { this->pos_vert_accuracy = _arg; return *this; } Type & set__innovation_check_flags( const uint16_t & _arg) { this->innovation_check_flags = _arg; return *this; } Type & set__mag_test_ratio( const float & _arg) { this->mag_test_ratio = _arg; return *this; } Type & set__vel_test_ratio( const float & _arg) { this->vel_test_ratio = _arg; return *this; } Type & set__pos_test_ratio( const float & _arg) { this->pos_test_ratio = _arg; return *this; } Type & set__hgt_test_ratio( const float & _arg) { this->hgt_test_ratio = _arg; return *this; } Type & set__tas_test_ratio( const float & _arg) { this->tas_test_ratio = _arg; return *this; } Type & set__hagl_test_ratio( const float & _arg) { this->hagl_test_ratio = _arg; return *this; } Type & set__beta_test_ratio( const float & _arg) { this->beta_test_ratio = _arg; return *this; } Type & set__solution_status_flags( const uint16_t & _arg) { this->solution_status_flags = _arg; return *this; } Type & set__reset_count_vel_ne( const uint8_t & _arg) { this->reset_count_vel_ne = _arg; return *this; } Type & set__reset_count_vel_d( const uint8_t & _arg) { this->reset_count_vel_d = _arg; return *this; } Type & set__reset_count_pos_ne( const uint8_t & _arg) { this->reset_count_pos_ne = _arg; return *this; } Type & set__reset_count_pod_d( const uint8_t & _arg) { this->reset_count_pod_d = _arg; return *this; } Type & set__reset_count_quat( const uint8_t & _arg) { this->reset_count_quat = _arg; return *this; } Type & set__time_slip( const float & _arg) { this->time_slip = _arg; return *this; } Type & set__pre_flt_fail_innov_heading( const bool & _arg) { this->pre_flt_fail_innov_heading = _arg; return *this; } Type & set__pre_flt_fail_innov_vel_horiz( const bool & _arg) { this->pre_flt_fail_innov_vel_horiz = _arg; return *this; } Type & set__pre_flt_fail_innov_vel_vert( const bool & _arg) { this->pre_flt_fail_innov_vel_vert = _arg; return *this; } Type & set__pre_flt_fail_innov_height( const bool & _arg) { this->pre_flt_fail_innov_height = _arg; return *this; } Type & set__pre_flt_fail_mag_field_disturbed( const bool & _arg) { this->pre_flt_fail_mag_field_disturbed = _arg; return *this; } Type & set__accel_device_id( const uint32_t & _arg) { this->accel_device_id = _arg; return *this; } Type & set__gyro_device_id( const uint32_t & _arg) { this->gyro_device_id = _arg; return *this; } Type & set__baro_device_id( const uint32_t & _arg) { this->baro_device_id = _arg; return *this; } Type & set__mag_device_id( const uint32_t & _arg) { this->mag_device_id = _arg; return *this; } Type & set__health_flags( const uint8_t & _arg) { this->health_flags = _arg; return *this; } Type & set__timeout_flags( const uint8_t & _arg) { this->timeout_flags = _arg; return *this; } // constant declarations static constexpr uint8_t GPS_CHECK_FAIL_GPS_FIX = 0u; static constexpr uint8_t GPS_CHECK_FAIL_MIN_SAT_COUNT = 1u; static constexpr uint8_t GPS_CHECK_FAIL_MAX_PDOP = 2u; static constexpr uint8_t GPS_CHECK_FAIL_MAX_HORZ_ERR = 3u; static constexpr uint8_t GPS_CHECK_FAIL_MAX_VERT_ERR = 4u; static constexpr uint8_t GPS_CHECK_FAIL_MAX_SPD_ERR = 5u; static constexpr uint8_t GPS_CHECK_FAIL_MAX_HORZ_DRIFT = 6u; static constexpr uint8_t GPS_CHECK_FAIL_MAX_VERT_DRIFT = 7u; static constexpr uint8_t GPS_CHECK_FAIL_MAX_HORZ_SPD_ERR = 8u; static constexpr uint8_t GPS_CHECK_FAIL_MAX_VERT_SPD_ERR = 9u; static constexpr uint8_t CS_TILT_ALIGN = 0u; static constexpr uint8_t CS_YAW_ALIGN = 1u; static constexpr uint8_t CS_GPS = 2u; static constexpr uint8_t CS_OPT_FLOW = 3u; static constexpr uint8_t CS_MAG_HDG = 4u; static constexpr uint8_t CS_MAG_3D = 5u; static constexpr uint8_t CS_MAG_DEC = 6u; static constexpr uint8_t CS_IN_AIR = 7u; static constexpr uint8_t CS_WIND = 8u; static constexpr uint8_t CS_BARO_HGT = 9u; static constexpr uint8_t CS_RNG_HGT = 10u; static constexpr uint8_t CS_GPS_HGT = 11u; static constexpr uint8_t CS_EV_POS = 12u; static constexpr uint8_t CS_EV_YAW = 13u; static constexpr uint8_t CS_EV_HGT = 14u; static constexpr uint8_t CS_BETA = 15u; static constexpr uint8_t CS_MAG_FIELD = 16u; static constexpr uint8_t CS_FIXED_WING = 17u; static constexpr uint8_t CS_MAG_FAULT = 18u; static constexpr uint8_t CS_ASPD = 19u; static constexpr uint8_t CS_GND_EFFECT = 20u; static constexpr uint8_t CS_RNG_STUCK = 21u; static constexpr uint8_t CS_GPS_YAW = 22u; static constexpr uint8_t CS_MAG_ALIGNED = 23u; // pointer types using RawPtr = px4_msgs::msg::EstimatorStatus_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::EstimatorStatus_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::EstimatorStatus_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::EstimatorStatus_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::EstimatorStatus_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::EstimatorStatus_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::EstimatorStatus_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::EstimatorStatus_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::EstimatorStatus_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::EstimatorStatus_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__EstimatorStatus std::shared_ptr<px4_msgs::msg::EstimatorStatus_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__EstimatorStatus std::shared_ptr<px4_msgs::msg::EstimatorStatus_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const EstimatorStatus_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->timestamp_sample != other.timestamp_sample) { return false; } if (this->vibe != other.vibe) { return false; } if (this->output_tracking_error != other.output_tracking_error) { return false; } if (this->gps_check_fail_flags != other.gps_check_fail_flags) { return false; } if (this->control_mode_flags != other.control_mode_flags) { return false; } if (this->filter_fault_flags != other.filter_fault_flags) { return false; } if (this->pos_horiz_accuracy != other.pos_horiz_accuracy) { return false; } if (this->pos_vert_accuracy != other.pos_vert_accuracy) { return false; } if (this->innovation_check_flags != other.innovation_check_flags) { return false; } if (this->mag_test_ratio != other.mag_test_ratio) { return false; } if (this->vel_test_ratio != other.vel_test_ratio) { return false; } if (this->pos_test_ratio != other.pos_test_ratio) { return false; } if (this->hgt_test_ratio != other.hgt_test_ratio) { return false; } if (this->tas_test_ratio != other.tas_test_ratio) { return false; } if (this->hagl_test_ratio != other.hagl_test_ratio) { return false; } if (this->beta_test_ratio != other.beta_test_ratio) { return false; } if (this->solution_status_flags != other.solution_status_flags) { return false; } if (this->reset_count_vel_ne != other.reset_count_vel_ne) { return false; } if (this->reset_count_vel_d != other.reset_count_vel_d) { return false; } if (this->reset_count_pos_ne != other.reset_count_pos_ne) { return false; } if (this->reset_count_pod_d != other.reset_count_pod_d) { return false; } if (this->reset_count_quat != other.reset_count_quat) { return false; } if (this->time_slip != other.time_slip) { return false; } if (this->pre_flt_fail_innov_heading != other.pre_flt_fail_innov_heading) { return false; } if (this->pre_flt_fail_innov_vel_horiz != other.pre_flt_fail_innov_vel_horiz) { return false; } if (this->pre_flt_fail_innov_vel_vert != other.pre_flt_fail_innov_vel_vert) { return false; } if (this->pre_flt_fail_innov_height != other.pre_flt_fail_innov_height) { return false; } if (this->pre_flt_fail_mag_field_disturbed != other.pre_flt_fail_mag_field_disturbed) { return false; } if (this->accel_device_id != other.accel_device_id) { return false; } if (this->gyro_device_id != other.gyro_device_id) { return false; } if (this->baro_device_id != other.baro_device_id) { return false; } if (this->mag_device_id != other.mag_device_id) { return false; } if (this->health_flags != other.health_flags) { return false; } if (this->timeout_flags != other.timeout_flags) { return false; } return true; } bool operator!=(const EstimatorStatus_ & other) const { return !this->operator==(other); } }; // struct EstimatorStatus_ // alias to use template instance with default allocator using EstimatorStatus = px4_msgs::msg::EstimatorStatus_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::GPS_CHECK_FAIL_GPS_FIX; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::GPS_CHECK_FAIL_MIN_SAT_COUNT; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::GPS_CHECK_FAIL_MAX_PDOP; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::GPS_CHECK_FAIL_MAX_HORZ_ERR; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::GPS_CHECK_FAIL_MAX_VERT_ERR; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::GPS_CHECK_FAIL_MAX_SPD_ERR; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::GPS_CHECK_FAIL_MAX_HORZ_DRIFT; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::GPS_CHECK_FAIL_MAX_VERT_DRIFT; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::GPS_CHECK_FAIL_MAX_HORZ_SPD_ERR; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::GPS_CHECK_FAIL_MAX_VERT_SPD_ERR; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::CS_TILT_ALIGN; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::CS_YAW_ALIGN; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::CS_GPS; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::CS_OPT_FLOW; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::CS_MAG_HDG; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::CS_MAG_3D; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::CS_MAG_DEC; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::CS_IN_AIR; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::CS_WIND; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::CS_BARO_HGT; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::CS_RNG_HGT; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::CS_GPS_HGT; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::CS_EV_POS; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::CS_EV_YAW; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::CS_EV_HGT; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::CS_BETA; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::CS_MAG_FIELD; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::CS_FIXED_WING; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::CS_MAG_FAULT; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::CS_ASPD; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::CS_GND_EFFECT; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::CS_RNG_STUCK; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::CS_GPS_YAW; template<typename ContainerAllocator> constexpr uint8_t EstimatorStatus_<ContainerAllocator>::CS_MAG_ALIGNED; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__ESTIMATOR_STATUS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vtol_vehicle_status__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VtolVehicleStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vtol_vehicle_status__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/vtol_vehicle_status__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::VtolVehicleStatus & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: vtol_in_rw_mode cdr << (ros_message.vtol_in_rw_mode ? true : false); // Member: vtol_in_trans_mode cdr << (ros_message.vtol_in_trans_mode ? true : false); // Member: in_transition_to_fw cdr << (ros_message.in_transition_to_fw ? true : false); // Member: vtol_transition_failsafe cdr << (ros_message.vtol_transition_failsafe ? true : false); // Member: fw_permanent_stab cdr << (ros_message.fw_permanent_stab ? true : false); return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::VtolVehicleStatus & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: vtol_in_rw_mode { uint8_t tmp; cdr >> tmp; ros_message.vtol_in_rw_mode = tmp ? true : false; } // Member: vtol_in_trans_mode { uint8_t tmp; cdr >> tmp; ros_message.vtol_in_trans_mode = tmp ? true : false; } // Member: in_transition_to_fw { uint8_t tmp; cdr >> tmp; ros_message.in_transition_to_fw = tmp ? true : false; } // Member: vtol_transition_failsafe { uint8_t tmp; cdr >> tmp; ros_message.vtol_transition_failsafe = tmp ? true : false; } // Member: fw_permanent_stab { uint8_t tmp; cdr >> tmp; ros_message.fw_permanent_stab = tmp ? true : false; } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::VtolVehicleStatus & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: vtol_in_rw_mode { size_t item_size = sizeof(ros_message.vtol_in_rw_mode); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: vtol_in_trans_mode { size_t item_size = sizeof(ros_message.vtol_in_trans_mode); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: in_transition_to_fw { size_t item_size = sizeof(ros_message.in_transition_to_fw); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: vtol_transition_failsafe { size_t item_size = sizeof(ros_message.vtol_transition_failsafe); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: fw_permanent_stab { size_t item_size = sizeof(ros_message.fw_permanent_stab); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_VtolVehicleStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: vtol_in_rw_mode { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: vtol_in_trans_mode { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: in_transition_to_fw { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: vtol_transition_failsafe { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: fw_permanent_stab { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _VtolVehicleStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::VtolVehicleStatus *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _VtolVehicleStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::VtolVehicleStatus *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _VtolVehicleStatus__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::VtolVehicleStatus *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _VtolVehicleStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_VtolVehicleStatus(full_bounded, 0); } static message_type_support_callbacks_t _VtolVehicleStatus__callbacks = { "px4_msgs::msg", "VtolVehicleStatus", _VtolVehicleStatus__cdr_serialize, _VtolVehicleStatus__cdr_deserialize, _VtolVehicleStatus__get_serialized_size, _VtolVehicleStatus__max_serialized_size }; static rosidl_message_type_support_t _VtolVehicleStatus__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_VtolVehicleStatus__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VtolVehicleStatus>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_VtolVehicleStatus__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, VtolVehicleStatus)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_VtolVehicleStatus__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/tune_control__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/TuneControl.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/tune_control__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void TuneControl_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::TuneControl(_init); } void TuneControl_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::TuneControl *>(message_memory); typed_message->~TuneControl(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember TuneControl_message_member_array[7] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TuneControl, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "tune_id", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TuneControl, tune_id), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "tune_override", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TuneControl, tune_override), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "frequency", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TuneControl, frequency), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "duration", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TuneControl, duration), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "silence", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TuneControl, silence), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "volume", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TuneControl, volume), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers TuneControl_message_members = { "px4_msgs::msg", // message namespace "TuneControl", // message name 7, // number of fields sizeof(px4_msgs::msg::TuneControl), TuneControl_message_member_array, // message members TuneControl_init_function, // function to initialize message memory (memory has to be allocated) TuneControl_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t TuneControl_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &TuneControl_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::TuneControl>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::TuneControl_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, TuneControl)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::TuneControl_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/VehicleActuatorSetpoint.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_actuator_setpoint__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/vehicle_actuator_setpoint__struct.h" #include "px4_msgs/msg/vehicle_actuator_setpoint__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _VehicleActuatorSetpoint__ros_msg_type = px4_msgs__msg__VehicleActuatorSetpoint; static bool _VehicleActuatorSetpoint__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _VehicleActuatorSetpoint__ros_msg_type * ros_message = static_cast<const _VehicleActuatorSetpoint__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: timestamp_sample { cdr << ros_message->timestamp_sample; } // Field name: actuator { size_t size = 16; auto array_ptr = ros_message->actuator; cdr.serializeArray(array_ptr, size); } return true; } static bool _VehicleActuatorSetpoint__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _VehicleActuatorSetpoint__ros_msg_type * ros_message = static_cast<_VehicleActuatorSetpoint__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: timestamp_sample { cdr >> ros_message->timestamp_sample; } // Field name: actuator { size_t size = 16; auto array_ptr = ros_message->actuator; cdr.deserializeArray(array_ptr, size); } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__VehicleActuatorSetpoint( const void * untyped_ros_message, size_t current_alignment) { const _VehicleActuatorSetpoint__ros_msg_type * ros_message = static_cast<const _VehicleActuatorSetpoint__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name timestamp_sample { size_t item_size = sizeof(ros_message->timestamp_sample); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name actuator { size_t array_size = 16; auto array_ptr = ros_message->actuator; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _VehicleActuatorSetpoint__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__VehicleActuatorSetpoint( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__VehicleActuatorSetpoint( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: timestamp_sample { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: actuator { size_t array_size = 16; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _VehicleActuatorSetpoint__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__VehicleActuatorSetpoint( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_VehicleActuatorSetpoint = { "px4_msgs::msg", "VehicleActuatorSetpoint", _VehicleActuatorSetpoint__cdr_serialize, _VehicleActuatorSetpoint__cdr_deserialize, _VehicleActuatorSetpoint__get_serialized_size, _VehicleActuatorSetpoint__max_serialized_size }; static rosidl_message_type_support_t _VehicleActuatorSetpoint__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_VehicleActuatorSetpoint, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, VehicleActuatorSetpoint)() { return &_VehicleActuatorSetpoint__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_local_position_groundtruth__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleLocalPositionGroundtruth.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_local_position_groundtruth__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__VehicleLocalPositionGroundtruth__init(px4_msgs__msg__VehicleLocalPositionGroundtruth * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // xy_valid // z_valid // v_xy_valid // v_z_valid // x // y // z // delta_xy // xy_reset_counter // delta_z // z_reset_counter // vx // vy // vz // z_deriv // delta_vxy // vxy_reset_counter // delta_vz // vz_reset_counter // ax // ay // az // heading // delta_heading // heading_reset_counter // xy_global // z_global // ref_timestamp // ref_lat // ref_lon // ref_alt // dist_bottom // dist_bottom_valid // dist_bottom_sensor_bitfield // eph // epv // evh // evv // vxy_max // vz_max // hagl_min // hagl_max return true; } void px4_msgs__msg__VehicleLocalPositionGroundtruth__fini(px4_msgs__msg__VehicleLocalPositionGroundtruth * msg) { if (!msg) { return; } // timestamp // timestamp_sample // xy_valid // z_valid // v_xy_valid // v_z_valid // x // y // z // delta_xy // xy_reset_counter // delta_z // z_reset_counter // vx // vy // vz // z_deriv // delta_vxy // vxy_reset_counter // delta_vz // vz_reset_counter // ax // ay // az // heading // delta_heading // heading_reset_counter // xy_global // z_global // ref_timestamp // ref_lat // ref_lon // ref_alt // dist_bottom // dist_bottom_valid // dist_bottom_sensor_bitfield // eph // epv // evh // evv // vxy_max // vz_max // hagl_min // hagl_max } px4_msgs__msg__VehicleLocalPositionGroundtruth * px4_msgs__msg__VehicleLocalPositionGroundtruth__create() { px4_msgs__msg__VehicleLocalPositionGroundtruth * msg = (px4_msgs__msg__VehicleLocalPositionGroundtruth *)malloc(sizeof(px4_msgs__msg__VehicleLocalPositionGroundtruth)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleLocalPositionGroundtruth)); bool success = px4_msgs__msg__VehicleLocalPositionGroundtruth__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleLocalPositionGroundtruth__destroy(px4_msgs__msg__VehicleLocalPositionGroundtruth * msg) { if (msg) { px4_msgs__msg__VehicleLocalPositionGroundtruth__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleLocalPositionGroundtruth__Sequence__init(px4_msgs__msg__VehicleLocalPositionGroundtruth__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleLocalPositionGroundtruth * data = NULL; if (size) { data = (px4_msgs__msg__VehicleLocalPositionGroundtruth *)calloc(size, sizeof(px4_msgs__msg__VehicleLocalPositionGroundtruth)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleLocalPositionGroundtruth__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleLocalPositionGroundtruth__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleLocalPositionGroundtruth__Sequence__fini(px4_msgs__msg__VehicleLocalPositionGroundtruth__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleLocalPositionGroundtruth__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleLocalPositionGroundtruth__Sequence * px4_msgs__msg__VehicleLocalPositionGroundtruth__Sequence__create(size_t size) { px4_msgs__msg__VehicleLocalPositionGroundtruth__Sequence * array = (px4_msgs__msg__VehicleLocalPositionGroundtruth__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleLocalPositionGroundtruth__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleLocalPositionGroundtruth__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleLocalPositionGroundtruth__Sequence__destroy(px4_msgs__msg__VehicleLocalPositionGroundtruth__Sequence * array) { if (array) { px4_msgs__msg__VehicleLocalPositionGroundtruth__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_visual_odometry.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleVisualOdometry.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_VISUAL_ODOMETRY_H_ #define PX4_MSGS__MSG__VEHICLE_VISUAL_ODOMETRY_H_ #include "px4_msgs/msg/vehicle_visual_odometry__struct.h" #include "px4_msgs/msg/vehicle_visual_odometry__functions.h" #include "px4_msgs/msg/vehicle_visual_odometry__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_VISUAL_ODOMETRY_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/GimbalDeviceAttitudeStatus.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/gimbal_device_attitude_status__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/gimbal_device_attitude_status__functions.h" #include "px4_msgs/msg/gimbal_device_attitude_status__struct.h" #ifdef __cplusplus extern "C" { #endif void GimbalDeviceAttitudeStatus__rosidl_typesupport_introspection_c__GimbalDeviceAttitudeStatus_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__GimbalDeviceAttitudeStatus__init(message_memory); } void GimbalDeviceAttitudeStatus__rosidl_typesupport_introspection_c__GimbalDeviceAttitudeStatus_fini_function(void * message_memory) { px4_msgs__msg__GimbalDeviceAttitudeStatus__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember GimbalDeviceAttitudeStatus__rosidl_typesupport_introspection_c__GimbalDeviceAttitudeStatus_message_member_array[9] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceAttitudeStatus, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "target_system", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceAttitudeStatus, target_system), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "target_component", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceAttitudeStatus, target_component), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "device_flags", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceAttitudeStatus, device_flags), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "q", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceAttitudeStatus, q), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "angular_velocity_x", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceAttitudeStatus, angular_velocity_x), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "angular_velocity_y", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceAttitudeStatus, angular_velocity_y), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "angular_velocity_z", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceAttitudeStatus, angular_velocity_z), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "failure_flags", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceAttitudeStatus, failure_flags), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers GimbalDeviceAttitudeStatus__rosidl_typesupport_introspection_c__GimbalDeviceAttitudeStatus_message_members = { "px4_msgs__msg", // message namespace "GimbalDeviceAttitudeStatus", // message name 9, // number of fields sizeof(px4_msgs__msg__GimbalDeviceAttitudeStatus), GimbalDeviceAttitudeStatus__rosidl_typesupport_introspection_c__GimbalDeviceAttitudeStatus_message_member_array, // message members GimbalDeviceAttitudeStatus__rosidl_typesupport_introspection_c__GimbalDeviceAttitudeStatus_init_function, // function to initialize message memory (memory has to be allocated) GimbalDeviceAttitudeStatus__rosidl_typesupport_introspection_c__GimbalDeviceAttitudeStatus_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t GimbalDeviceAttitudeStatus__rosidl_typesupport_introspection_c__GimbalDeviceAttitudeStatus_message_type_support_handle = { 0, &GimbalDeviceAttitudeStatus__rosidl_typesupport_introspection_c__GimbalDeviceAttitudeStatus_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, GimbalDeviceAttitudeStatus)() { if (!GimbalDeviceAttitudeStatus__rosidl_typesupport_introspection_c__GimbalDeviceAttitudeStatus_message_type_support_handle.typesupport_identifier) { GimbalDeviceAttitudeStatus__rosidl_typesupport_introspection_c__GimbalDeviceAttitudeStatus_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &GimbalDeviceAttitudeStatus__rosidl_typesupport_introspection_c__GimbalDeviceAttitudeStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_event_flags__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/EstimatorEventFlags.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/estimator_event_flags__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/estimator_event_flags__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::EstimatorEventFlags & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: timestamp_sample cdr << ros_message.timestamp_sample; // Member: information_event_changes cdr << ros_message.information_event_changes; // Member: gps_checks_passed cdr << (ros_message.gps_checks_passed ? true : false); // Member: reset_vel_to_gps cdr << (ros_message.reset_vel_to_gps ? true : false); // Member: reset_vel_to_flow cdr << (ros_message.reset_vel_to_flow ? true : false); // Member: reset_vel_to_vision cdr << (ros_message.reset_vel_to_vision ? true : false); // Member: reset_vel_to_zero cdr << (ros_message.reset_vel_to_zero ? true : false); // Member: reset_pos_to_last_known cdr << (ros_message.reset_pos_to_last_known ? true : false); // Member: reset_pos_to_gps cdr << (ros_message.reset_pos_to_gps ? true : false); // Member: reset_pos_to_vision cdr << (ros_message.reset_pos_to_vision ? true : false); // Member: starting_gps_fusion cdr << (ros_message.starting_gps_fusion ? true : false); // Member: starting_vision_pos_fusion cdr << (ros_message.starting_vision_pos_fusion ? true : false); // Member: starting_vision_vel_fusion cdr << (ros_message.starting_vision_vel_fusion ? true : false); // Member: starting_vision_yaw_fusion cdr << (ros_message.starting_vision_yaw_fusion ? true : false); // Member: yaw_aligned_to_imu_gps cdr << (ros_message.yaw_aligned_to_imu_gps ? true : false); // Member: warning_event_changes cdr << ros_message.warning_event_changes; // Member: gps_quality_poor cdr << (ros_message.gps_quality_poor ? true : false); // Member: gps_fusion_timout cdr << (ros_message.gps_fusion_timout ? true : false); // Member: gps_data_stopped cdr << (ros_message.gps_data_stopped ? true : false); // Member: gps_data_stopped_using_alternate cdr << (ros_message.gps_data_stopped_using_alternate ? true : false); // Member: height_sensor_timeout cdr << (ros_message.height_sensor_timeout ? true : false); // Member: stopping_navigation cdr << (ros_message.stopping_navigation ? true : false); // Member: invalid_accel_bias_cov_reset cdr << (ros_message.invalid_accel_bias_cov_reset ? true : false); // Member: bad_yaw_using_gps_course cdr << (ros_message.bad_yaw_using_gps_course ? true : false); // Member: stopping_mag_use cdr << (ros_message.stopping_mag_use ? true : false); // Member: vision_data_stopped cdr << (ros_message.vision_data_stopped ? true : false); // Member: emergency_yaw_reset_mag_stopped cdr << (ros_message.emergency_yaw_reset_mag_stopped ? true : false); return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::EstimatorEventFlags & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: timestamp_sample cdr >> ros_message.timestamp_sample; // Member: information_event_changes cdr >> ros_message.information_event_changes; // Member: gps_checks_passed { uint8_t tmp; cdr >> tmp; ros_message.gps_checks_passed = tmp ? true : false; } // Member: reset_vel_to_gps { uint8_t tmp; cdr >> tmp; ros_message.reset_vel_to_gps = tmp ? true : false; } // Member: reset_vel_to_flow { uint8_t tmp; cdr >> tmp; ros_message.reset_vel_to_flow = tmp ? true : false; } // Member: reset_vel_to_vision { uint8_t tmp; cdr >> tmp; ros_message.reset_vel_to_vision = tmp ? true : false; } // Member: reset_vel_to_zero { uint8_t tmp; cdr >> tmp; ros_message.reset_vel_to_zero = tmp ? true : false; } // Member: reset_pos_to_last_known { uint8_t tmp; cdr >> tmp; ros_message.reset_pos_to_last_known = tmp ? true : false; } // Member: reset_pos_to_gps { uint8_t tmp; cdr >> tmp; ros_message.reset_pos_to_gps = tmp ? true : false; } // Member: reset_pos_to_vision { uint8_t tmp; cdr >> tmp; ros_message.reset_pos_to_vision = tmp ? true : false; } // Member: starting_gps_fusion { uint8_t tmp; cdr >> tmp; ros_message.starting_gps_fusion = tmp ? true : false; } // Member: starting_vision_pos_fusion { uint8_t tmp; cdr >> tmp; ros_message.starting_vision_pos_fusion = tmp ? true : false; } // Member: starting_vision_vel_fusion { uint8_t tmp; cdr >> tmp; ros_message.starting_vision_vel_fusion = tmp ? true : false; } // Member: starting_vision_yaw_fusion { uint8_t tmp; cdr >> tmp; ros_message.starting_vision_yaw_fusion = tmp ? true : false; } // Member: yaw_aligned_to_imu_gps { uint8_t tmp; cdr >> tmp; ros_message.yaw_aligned_to_imu_gps = tmp ? true : false; } // Member: warning_event_changes cdr >> ros_message.warning_event_changes; // Member: gps_quality_poor { uint8_t tmp; cdr >> tmp; ros_message.gps_quality_poor = tmp ? true : false; } // Member: gps_fusion_timout { uint8_t tmp; cdr >> tmp; ros_message.gps_fusion_timout = tmp ? true : false; } // Member: gps_data_stopped { uint8_t tmp; cdr >> tmp; ros_message.gps_data_stopped = tmp ? true : false; } // Member: gps_data_stopped_using_alternate { uint8_t tmp; cdr >> tmp; ros_message.gps_data_stopped_using_alternate = tmp ? true : false; } // Member: height_sensor_timeout { uint8_t tmp; cdr >> tmp; ros_message.height_sensor_timeout = tmp ? true : false; } // Member: stopping_navigation { uint8_t tmp; cdr >> tmp; ros_message.stopping_navigation = tmp ? true : false; } // Member: invalid_accel_bias_cov_reset { uint8_t tmp; cdr >> tmp; ros_message.invalid_accel_bias_cov_reset = tmp ? true : false; } // Member: bad_yaw_using_gps_course { uint8_t tmp; cdr >> tmp; ros_message.bad_yaw_using_gps_course = tmp ? true : false; } // Member: stopping_mag_use { uint8_t tmp; cdr >> tmp; ros_message.stopping_mag_use = tmp ? true : false; } // Member: vision_data_stopped { uint8_t tmp; cdr >> tmp; ros_message.vision_data_stopped = tmp ? true : false; } // Member: emergency_yaw_reset_mag_stopped { uint8_t tmp; cdr >> tmp; ros_message.emergency_yaw_reset_mag_stopped = tmp ? true : false; } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::EstimatorEventFlags & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: timestamp_sample { size_t item_size = sizeof(ros_message.timestamp_sample); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: information_event_changes { size_t item_size = sizeof(ros_message.information_event_changes); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gps_checks_passed { size_t item_size = sizeof(ros_message.gps_checks_passed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: reset_vel_to_gps { size_t item_size = sizeof(ros_message.reset_vel_to_gps); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: reset_vel_to_flow { size_t item_size = sizeof(ros_message.reset_vel_to_flow); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: reset_vel_to_vision { size_t item_size = sizeof(ros_message.reset_vel_to_vision); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: reset_vel_to_zero { size_t item_size = sizeof(ros_message.reset_vel_to_zero); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: reset_pos_to_last_known { size_t item_size = sizeof(ros_message.reset_pos_to_last_known); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: reset_pos_to_gps { size_t item_size = sizeof(ros_message.reset_pos_to_gps); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: reset_pos_to_vision { size_t item_size = sizeof(ros_message.reset_pos_to_vision); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: starting_gps_fusion { size_t item_size = sizeof(ros_message.starting_gps_fusion); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: starting_vision_pos_fusion { size_t item_size = sizeof(ros_message.starting_vision_pos_fusion); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: starting_vision_vel_fusion { size_t item_size = sizeof(ros_message.starting_vision_vel_fusion); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: starting_vision_yaw_fusion { size_t item_size = sizeof(ros_message.starting_vision_yaw_fusion); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: yaw_aligned_to_imu_gps { size_t item_size = sizeof(ros_message.yaw_aligned_to_imu_gps); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: warning_event_changes { size_t item_size = sizeof(ros_message.warning_event_changes); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gps_quality_poor { size_t item_size = sizeof(ros_message.gps_quality_poor); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gps_fusion_timout { size_t item_size = sizeof(ros_message.gps_fusion_timout); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gps_data_stopped { size_t item_size = sizeof(ros_message.gps_data_stopped); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gps_data_stopped_using_alternate { size_t item_size = sizeof(ros_message.gps_data_stopped_using_alternate); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: height_sensor_timeout { size_t item_size = sizeof(ros_message.height_sensor_timeout); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: stopping_navigation { size_t item_size = sizeof(ros_message.stopping_navigation); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: invalid_accel_bias_cov_reset { size_t item_size = sizeof(ros_message.invalid_accel_bias_cov_reset); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: bad_yaw_using_gps_course { size_t item_size = sizeof(ros_message.bad_yaw_using_gps_course); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: stopping_mag_use { size_t item_size = sizeof(ros_message.stopping_mag_use); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: vision_data_stopped { size_t item_size = sizeof(ros_message.vision_data_stopped); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: emergency_yaw_reset_mag_stopped { size_t item_size = sizeof(ros_message.emergency_yaw_reset_mag_stopped); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_EstimatorEventFlags( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: timestamp_sample { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: information_event_changes { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: gps_checks_passed { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: reset_vel_to_gps { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: reset_vel_to_flow { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: reset_vel_to_vision { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: reset_vel_to_zero { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: reset_pos_to_last_known { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: reset_pos_to_gps { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: reset_pos_to_vision { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: starting_gps_fusion { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: starting_vision_pos_fusion { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: starting_vision_vel_fusion { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: starting_vision_yaw_fusion { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: yaw_aligned_to_imu_gps { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: warning_event_changes { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: gps_quality_poor { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: gps_fusion_timout { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: gps_data_stopped { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: gps_data_stopped_using_alternate { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: height_sensor_timeout { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: stopping_navigation { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: invalid_accel_bias_cov_reset { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: bad_yaw_using_gps_course { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: stopping_mag_use { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: vision_data_stopped { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: emergency_yaw_reset_mag_stopped { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _EstimatorEventFlags__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::EstimatorEventFlags *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _EstimatorEventFlags__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::EstimatorEventFlags *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _EstimatorEventFlags__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::EstimatorEventFlags *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _EstimatorEventFlags__max_serialized_size(bool & full_bounded) { return max_serialized_size_EstimatorEventFlags(full_bounded, 0); } static message_type_support_callbacks_t _EstimatorEventFlags__callbacks = { "px4_msgs::msg", "EstimatorEventFlags", _EstimatorEventFlags__cdr_serialize, _EstimatorEventFlags__cdr_deserialize, _EstimatorEventFlags__get_serialized_size, _EstimatorEventFlags__max_serialized_size }; static rosidl_message_type_support_t _EstimatorEventFlags__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_EstimatorEventFlags__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::EstimatorEventFlags>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_EstimatorEventFlags__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, EstimatorEventFlags)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_EstimatorEventFlags__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/distance_sensor__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/DistanceSensor.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__DISTANCE_SENSOR__STRUCT_H_ #define PX4_MSGS__MSG__DISTANCE_SENSOR__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'MAV_DISTANCE_SENSOR_LASER'. enum { px4_msgs__msg__DistanceSensor__MAV_DISTANCE_SENSOR_LASER = 0 }; /// Constant 'MAV_DISTANCE_SENSOR_ULTRASOUND'. enum { px4_msgs__msg__DistanceSensor__MAV_DISTANCE_SENSOR_ULTRASOUND = 1 }; /// Constant 'MAV_DISTANCE_SENSOR_INFRARED'. enum { px4_msgs__msg__DistanceSensor__MAV_DISTANCE_SENSOR_INFRARED = 2 }; /// Constant 'MAV_DISTANCE_SENSOR_RADAR'. enum { px4_msgs__msg__DistanceSensor__MAV_DISTANCE_SENSOR_RADAR = 3 }; /// Constant 'ROTATION_YAW_0'. enum { px4_msgs__msg__DistanceSensor__ROTATION_YAW_0 = 0 }; /// Constant 'ROTATION_YAW_45'. enum { px4_msgs__msg__DistanceSensor__ROTATION_YAW_45 = 1 }; /// Constant 'ROTATION_YAW_90'. enum { px4_msgs__msg__DistanceSensor__ROTATION_YAW_90 = 2 }; /// Constant 'ROTATION_YAW_135'. enum { px4_msgs__msg__DistanceSensor__ROTATION_YAW_135 = 3 }; /// Constant 'ROTATION_YAW_180'. enum { px4_msgs__msg__DistanceSensor__ROTATION_YAW_180 = 4 }; /// Constant 'ROTATION_YAW_225'. enum { px4_msgs__msg__DistanceSensor__ROTATION_YAW_225 = 5 }; /// Constant 'ROTATION_YAW_270'. enum { px4_msgs__msg__DistanceSensor__ROTATION_YAW_270 = 6 }; /// Constant 'ROTATION_YAW_315'. enum { px4_msgs__msg__DistanceSensor__ROTATION_YAW_315 = 7 }; /// Constant 'ROTATION_FORWARD_FACING'. enum { px4_msgs__msg__DistanceSensor__ROTATION_FORWARD_FACING = 0 }; /// Constant 'ROTATION_RIGHT_FACING'. enum { px4_msgs__msg__DistanceSensor__ROTATION_RIGHT_FACING = 2 }; /// Constant 'ROTATION_BACKWARD_FACING'. enum { px4_msgs__msg__DistanceSensor__ROTATION_BACKWARD_FACING = 4 }; /// Constant 'ROTATION_LEFT_FACING'. enum { px4_msgs__msg__DistanceSensor__ROTATION_LEFT_FACING = 6 }; /// Constant 'ROTATION_UPWARD_FACING'. enum { px4_msgs__msg__DistanceSensor__ROTATION_UPWARD_FACING = 24 }; /// Constant 'ROTATION_DOWNWARD_FACING'. enum { px4_msgs__msg__DistanceSensor__ROTATION_DOWNWARD_FACING = 25 }; /// Constant 'ROTATION_CUSTOM'. enum { px4_msgs__msg__DistanceSensor__ROTATION_CUSTOM = 100 }; // Struct defined in msg/DistanceSensor in the package px4_msgs. typedef struct px4_msgs__msg__DistanceSensor { uint64_t timestamp; uint32_t device_id; float min_distance; float max_distance; float current_distance; float variance; int8_t signal_quality; uint8_t type; float h_fov; float v_fov; float q[4]; uint8_t orientation; } px4_msgs__msg__DistanceSensor; // Struct for a sequence of px4_msgs__msg__DistanceSensor. typedef struct px4_msgs__msg__DistanceSensor__Sequence { px4_msgs__msg__DistanceSensor * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__DistanceSensor__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__DISTANCE_SENSOR__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/parameter_update__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/ParameterUpdate.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__PARAMETER_UPDATE__STRUCT_HPP_ #define PX4_MSGS__MSG__PARAMETER_UPDATE__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__ParameterUpdate __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__ParameterUpdate __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct ParameterUpdate_ { using Type = ParameterUpdate_<ContainerAllocator>; explicit ParameterUpdate_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->instance = 0ul; this->get_count = 0ul; this->set_count = 0ul; this->find_count = 0ul; this->export_count = 0ul; this->active = 0; this->changed = 0; this->custom_default = 0; } } explicit ParameterUpdate_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->instance = 0ul; this->get_count = 0ul; this->set_count = 0ul; this->find_count = 0ul; this->export_count = 0ul; this->active = 0; this->changed = 0; this->custom_default = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _instance_type = uint32_t; _instance_type instance; using _get_count_type = uint32_t; _get_count_type get_count; using _set_count_type = uint32_t; _set_count_type set_count; using _find_count_type = uint32_t; _find_count_type find_count; using _export_count_type = uint32_t; _export_count_type export_count; using _active_type = uint16_t; _active_type active; using _changed_type = uint16_t; _changed_type changed; using _custom_default_type = uint16_t; _custom_default_type custom_default; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__instance( const uint32_t & _arg) { this->instance = _arg; return *this; } Type & set__get_count( const uint32_t & _arg) { this->get_count = _arg; return *this; } Type & set__set_count( const uint32_t & _arg) { this->set_count = _arg; return *this; } Type & set__find_count( const uint32_t & _arg) { this->find_count = _arg; return *this; } Type & set__export_count( const uint32_t & _arg) { this->export_count = _arg; return *this; } Type & set__active( const uint16_t & _arg) { this->active = _arg; return *this; } Type & set__changed( const uint16_t & _arg) { this->changed = _arg; return *this; } Type & set__custom_default( const uint16_t & _arg) { this->custom_default = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::ParameterUpdate_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::ParameterUpdate_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::ParameterUpdate_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::ParameterUpdate_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::ParameterUpdate_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::ParameterUpdate_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::ParameterUpdate_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::ParameterUpdate_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::ParameterUpdate_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::ParameterUpdate_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__ParameterUpdate std::shared_ptr<px4_msgs::msg::ParameterUpdate_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__ParameterUpdate std::shared_ptr<px4_msgs::msg::ParameterUpdate_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const ParameterUpdate_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->instance != other.instance) { return false; } if (this->get_count != other.get_count) { return false; } if (this->set_count != other.set_count) { return false; } if (this->find_count != other.find_count) { return false; } if (this->export_count != other.export_count) { return false; } if (this->active != other.active) { return false; } if (this->changed != other.changed) { return false; } if (this->custom_default != other.custom_default) { return false; } return true; } bool operator!=(const ParameterUpdate_ & other) const { return !this->operator==(other); } }; // struct ParameterUpdate_ // alias to use template instance with default allocator using ParameterUpdate = px4_msgs::msg::ParameterUpdate_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__PARAMETER_UPDATE__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__FW_VIRTUAL_ATTITUDE_SETPOINT_HPP_ #define PX4_MSGS__MSG__FW_VIRTUAL_ATTITUDE_SETPOINT_HPP_ #include "px4_msgs/msg/fw_virtual_attitude_setpoint__struct.hpp" #include "px4_msgs/msg/fw_virtual_attitude_setpoint__traits.hpp" #endif // PX4_MSGS__MSG__FW_VIRTUAL_ATTITUDE_SETPOINT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/task_stack_info__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/TaskStackInfo.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TASK_STACK_INFO__FUNCTIONS_H_ #define PX4_MSGS__MSG__TASK_STACK_INFO__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/task_stack_info__struct.h" /// Initialize msg/TaskStackInfo message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__TaskStackInfo * )) before or use * px4_msgs__msg__TaskStackInfo__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__TaskStackInfo__init(px4_msgs__msg__TaskStackInfo * msg); /// Finalize msg/TaskStackInfo message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__TaskStackInfo__fini(px4_msgs__msg__TaskStackInfo * msg); /// Create msg/TaskStackInfo message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__TaskStackInfo__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__TaskStackInfo * px4_msgs__msg__TaskStackInfo__create(); /// Destroy msg/TaskStackInfo message. /** * It calls * px4_msgs__msg__TaskStackInfo__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__TaskStackInfo__destroy(px4_msgs__msg__TaskStackInfo * msg); /// Initialize array of msg/TaskStackInfo messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__TaskStackInfo__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__TaskStackInfo__Sequence__init(px4_msgs__msg__TaskStackInfo__Sequence * array, size_t size); /// Finalize array of msg/TaskStackInfo messages. /** * It calls * px4_msgs__msg__TaskStackInfo__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__TaskStackInfo__Sequence__fini(px4_msgs__msg__TaskStackInfo__Sequence * array); /// Create array of msg/TaskStackInfo messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__TaskStackInfo__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__TaskStackInfo__Sequence * px4_msgs__msg__TaskStackInfo__Sequence__create(size_t size); /// Destroy array of msg/TaskStackInfo messages. /** * It calls * px4_msgs__msg__TaskStackInfo__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__TaskStackInfo__Sequence__destroy(px4_msgs__msg__TaskStackInfo__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__TASK_STACK_INFO__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/orb_test_large.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORB_TEST_LARGE_HPP_ #define PX4_MSGS__MSG__ORB_TEST_LARGE_HPP_ #include "px4_msgs/msg/orb_test_large__struct.hpp" #include "px4_msgs/msg/orb_test_large__traits.hpp" #endif // PX4_MSGS__MSG__ORB_TEST_LARGE_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_local_position_groundtruth.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_GROUNDTRUTH_HPP_ #define PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_GROUNDTRUTH_HPP_ #include "px4_msgs/msg/vehicle_local_position_groundtruth__struct.hpp" #include "px4_msgs/msg/vehicle_local_position_groundtruth__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_GROUNDTRUTH_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_request__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/UavcanParameterRequest.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/uavcan_parameter_request__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/uavcan_parameter_request__functions.h" #include "px4_msgs/msg/uavcan_parameter_request__struct.h" #ifdef __cplusplus extern "C" { #endif void UavcanParameterRequest__rosidl_typesupport_introspection_c__UavcanParameterRequest_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__UavcanParameterRequest__init(message_memory); } void UavcanParameterRequest__rosidl_typesupport_introspection_c__UavcanParameterRequest_fini_function(void * message_memory) { px4_msgs__msg__UavcanParameterRequest__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember UavcanParameterRequest__rosidl_typesupport_introspection_c__UavcanParameterRequest_message_member_array[8] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__UavcanParameterRequest, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "message_type", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__UavcanParameterRequest, message_type), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "node_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__UavcanParameterRequest, node_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "param_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message true, // is array 17, // array size false, // is upper bound offsetof(px4_msgs__msg__UavcanParameterRequest, param_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "param_index", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__UavcanParameterRequest, param_index), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "param_type", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__UavcanParameterRequest, param_type), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "int_value", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__UavcanParameterRequest, int_value), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "real_value", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__UavcanParameterRequest, real_value), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers UavcanParameterRequest__rosidl_typesupport_introspection_c__UavcanParameterRequest_message_members = { "px4_msgs__msg", // message namespace "UavcanParameterRequest", // message name 8, // number of fields sizeof(px4_msgs__msg__UavcanParameterRequest), UavcanParameterRequest__rosidl_typesupport_introspection_c__UavcanParameterRequest_message_member_array, // message members UavcanParameterRequest__rosidl_typesupport_introspection_c__UavcanParameterRequest_init_function, // function to initialize message memory (memory has to be allocated) UavcanParameterRequest__rosidl_typesupport_introspection_c__UavcanParameterRequest_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t UavcanParameterRequest__rosidl_typesupport_introspection_c__UavcanParameterRequest_message_type_support_handle = { 0, &UavcanParameterRequest__rosidl_typesupport_introspection_c__UavcanParameterRequest_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, UavcanParameterRequest)() { if (!UavcanParameterRequest__rosidl_typesupport_introspection_c__UavcanParameterRequest_message_type_support_handle.typesupport_identifier) { UavcanParameterRequest__rosidl_typesupport_introspection_c__UavcanParameterRequest_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &UavcanParameterRequest__rosidl_typesupport_introspection_c__UavcanParameterRequest_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleAngularAcceleration.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ANGULAR_ACCELERATION_H_ #define PX4_MSGS__MSG__VEHICLE_ANGULAR_ACCELERATION_H_ #include "px4_msgs/msg/vehicle_angular_acceleration__struct.h" #include "px4_msgs/msg/vehicle_angular_acceleration__functions.h" #include "px4_msgs/msg/vehicle_angular_acceleration__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_ANGULAR_ACCELERATION_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/mavlink_log__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/MavlinkLog.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/mavlink_log__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__MavlinkLog__init(px4_msgs__msg__MavlinkLog * msg) { if (!msg) { return false; } // timestamp // text // severity return true; } void px4_msgs__msg__MavlinkLog__fini(px4_msgs__msg__MavlinkLog * msg) { if (!msg) { return; } // timestamp // text // severity } px4_msgs__msg__MavlinkLog * px4_msgs__msg__MavlinkLog__create() { px4_msgs__msg__MavlinkLog * msg = (px4_msgs__msg__MavlinkLog *)malloc(sizeof(px4_msgs__msg__MavlinkLog)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__MavlinkLog)); bool success = px4_msgs__msg__MavlinkLog__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__MavlinkLog__destroy(px4_msgs__msg__MavlinkLog * msg) { if (msg) { px4_msgs__msg__MavlinkLog__fini(msg); } free(msg); } bool px4_msgs__msg__MavlinkLog__Sequence__init(px4_msgs__msg__MavlinkLog__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__MavlinkLog * data = NULL; if (size) { data = (px4_msgs__msg__MavlinkLog *)calloc(size, sizeof(px4_msgs__msg__MavlinkLog)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__MavlinkLog__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__MavlinkLog__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__MavlinkLog__Sequence__fini(px4_msgs__msg__MavlinkLog__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__MavlinkLog__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__MavlinkLog__Sequence * px4_msgs__msg__MavlinkLog__Sequence__create(size_t size) { px4_msgs__msg__MavlinkLog__Sequence * array = (px4_msgs__msg__MavlinkLog__Sequence *)malloc(sizeof(px4_msgs__msg__MavlinkLog__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__MavlinkLog__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__MavlinkLog__Sequence__destroy(px4_msgs__msg__MavlinkLog__Sequence * array) { if (array) { px4_msgs__msg__MavlinkLog__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_controls1__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/ActuatorControls1.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS1__STRUCT_H_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS1__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'NUM_ACTUATOR_CONTROLS'. enum { px4_msgs__msg__ActuatorControls1__NUM_ACTUATOR_CONTROLS = 8 }; /// Constant 'NUM_ACTUATOR_CONTROL_GROUPS'. enum { px4_msgs__msg__ActuatorControls1__NUM_ACTUATOR_CONTROL_GROUPS = 6 }; /// Constant 'INDEX_ROLL'. enum { px4_msgs__msg__ActuatorControls1__INDEX_ROLL = 0 }; /// Constant 'INDEX_PITCH'. enum { px4_msgs__msg__ActuatorControls1__INDEX_PITCH = 1 }; /// Constant 'INDEX_YAW'. enum { px4_msgs__msg__ActuatorControls1__INDEX_YAW = 2 }; /// Constant 'INDEX_THROTTLE'. enum { px4_msgs__msg__ActuatorControls1__INDEX_THROTTLE = 3 }; /// Constant 'INDEX_FLAPS'. enum { px4_msgs__msg__ActuatorControls1__INDEX_FLAPS = 4 }; /// Constant 'INDEX_SPOILERS'. enum { px4_msgs__msg__ActuatorControls1__INDEX_SPOILERS = 5 }; /// Constant 'INDEX_AIRBRAKES'. enum { px4_msgs__msg__ActuatorControls1__INDEX_AIRBRAKES = 6 }; /// Constant 'INDEX_LANDING_GEAR'. enum { px4_msgs__msg__ActuatorControls1__INDEX_LANDING_GEAR = 7 }; /// Constant 'INDEX_GIMBAL_SHUTTER'. enum { px4_msgs__msg__ActuatorControls1__INDEX_GIMBAL_SHUTTER = 3 }; /// Constant 'INDEX_CAMERA_ZOOM'. enum { px4_msgs__msg__ActuatorControls1__INDEX_CAMERA_ZOOM = 4 }; /// Constant 'GROUP_INDEX_ATTITUDE'. enum { px4_msgs__msg__ActuatorControls1__GROUP_INDEX_ATTITUDE = 0 }; /// Constant 'GROUP_INDEX_ATTITUDE_ALTERNATE'. enum { px4_msgs__msg__ActuatorControls1__GROUP_INDEX_ATTITUDE_ALTERNATE = 1 }; /// Constant 'GROUP_INDEX_GIMBAL'. enum { px4_msgs__msg__ActuatorControls1__GROUP_INDEX_GIMBAL = 2 }; /// Constant 'GROUP_INDEX_MANUAL_PASSTHROUGH'. enum { px4_msgs__msg__ActuatorControls1__GROUP_INDEX_MANUAL_PASSTHROUGH = 3 }; /// Constant 'GROUP_INDEX_ALLOCATED_PART1'. enum { px4_msgs__msg__ActuatorControls1__GROUP_INDEX_ALLOCATED_PART1 = 4 }; /// Constant 'GROUP_INDEX_ALLOCATED_PART2'. enum { px4_msgs__msg__ActuatorControls1__GROUP_INDEX_ALLOCATED_PART2 = 5 }; /// Constant 'GROUP_INDEX_PAYLOAD'. enum { px4_msgs__msg__ActuatorControls1__GROUP_INDEX_PAYLOAD = 6 }; // Struct defined in msg/ActuatorControls1 in the package px4_msgs. typedef struct px4_msgs__msg__ActuatorControls1 { uint64_t timestamp; uint64_t timestamp_sample; float control[8]; } px4_msgs__msg__ActuatorControls1; // Struct for a sequence of px4_msgs__msg__ActuatorControls1. typedef struct px4_msgs__msg__ActuatorControls1__Sequence { px4_msgs__msg__ActuatorControls1 * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__ActuatorControls1__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS1__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/landing_gear__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/LandingGear.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__LANDING_GEAR__STRUCT_H_ #define PX4_MSGS__MSG__LANDING_GEAR__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'GEAR_UP'. enum { px4_msgs__msg__LandingGear__GEAR_UP = 1 }; /// Constant 'GEAR_DOWN'. enum { px4_msgs__msg__LandingGear__GEAR_DOWN = -1 }; /// Constant 'GEAR_KEEP'. enum { px4_msgs__msg__LandingGear__GEAR_KEEP = 0 }; // Struct defined in msg/LandingGear in the package px4_msgs. typedef struct px4_msgs__msg__LandingGear { uint64_t timestamp; int8_t landing_gear; } px4_msgs__msg__LandingGear; // Struct for a sequence of px4_msgs__msg__LandingGear. typedef struct px4_msgs__msg__LandingGear__Sequence { px4_msgs__msg__LandingGear * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__LandingGear__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__LANDING_GEAR__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_power_monitor.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/PowerMonitor.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_PowerMonitor(type): """Metaclass of message 'PowerMonitor'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.PowerMonitor') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__power_monitor cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__power_monitor cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__power_monitor cls._TYPE_SUPPORT = module.type_support_msg__msg__power_monitor cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__power_monitor @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class PowerMonitor(metaclass=Metaclass_PowerMonitor): """Message class 'PowerMonitor'.""" __slots__ = [ '_timestamp', '_voltage_v', '_current_a', '_power_w', '_rconf', '_rsv', '_rbv', '_rp', '_rc', '_rcal', '_me', '_al', ] _fields_and_field_types = { 'timestamp': 'uint64', 'voltage_v': 'float', 'current_a': 'float', 'power_w': 'float', 'rconf': 'int16', 'rsv': 'int16', 'rbv': 'int16', 'rp': 'int16', 'rc': 'int16', 'rcal': 'int16', 'me': 'int16', 'al': 'int16', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('int16'), # noqa: E501 rosidl_parser.definition.BasicType('int16'), # noqa: E501 rosidl_parser.definition.BasicType('int16'), # noqa: E501 rosidl_parser.definition.BasicType('int16'), # noqa: E501 rosidl_parser.definition.BasicType('int16'), # noqa: E501 rosidl_parser.definition.BasicType('int16'), # noqa: E501 rosidl_parser.definition.BasicType('int16'), # noqa: E501 rosidl_parser.definition.BasicType('int16'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.voltage_v = kwargs.get('voltage_v', float()) self.current_a = kwargs.get('current_a', float()) self.power_w = kwargs.get('power_w', float()) self.rconf = kwargs.get('rconf', int()) self.rsv = kwargs.get('rsv', int()) self.rbv = kwargs.get('rbv', int()) self.rp = kwargs.get('rp', int()) self.rc = kwargs.get('rc', int()) self.rcal = kwargs.get('rcal', int()) self.me = kwargs.get('me', int()) self.al = kwargs.get('al', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.voltage_v != other.voltage_v: return False if self.current_a != other.current_a: return False if self.power_w != other.power_w: return False if self.rconf != other.rconf: return False if self.rsv != other.rsv: return False if self.rbv != other.rbv: return False if self.rp != other.rp: return False if self.rc != other.rc: return False if self.rcal != other.rcal: return False if self.me != other.me: return False if self.al != other.al: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def voltage_v(self): """Message field 'voltage_v'.""" return self._voltage_v @voltage_v.setter def voltage_v(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'voltage_v' field must be of type 'float'" self._voltage_v = value @property def current_a(self): """Message field 'current_a'.""" return self._current_a @current_a.setter def current_a(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'current_a' field must be of type 'float'" self._current_a = value @property def power_w(self): """Message field 'power_w'.""" return self._power_w @power_w.setter def power_w(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'power_w' field must be of type 'float'" self._power_w = value @property def rconf(self): """Message field 'rconf'.""" return self._rconf @rconf.setter def rconf(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'rconf' field must be of type 'int'" assert value >= -32768 and value < 32768, \ "The 'rconf' field must be an integer in [-32768, 32767]" self._rconf = value @property def rsv(self): """Message field 'rsv'.""" return self._rsv @rsv.setter def rsv(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'rsv' field must be of type 'int'" assert value >= -32768 and value < 32768, \ "The 'rsv' field must be an integer in [-32768, 32767]" self._rsv = value @property def rbv(self): """Message field 'rbv'.""" return self._rbv @rbv.setter def rbv(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'rbv' field must be of type 'int'" assert value >= -32768 and value < 32768, \ "The 'rbv' field must be an integer in [-32768, 32767]" self._rbv = value @property def rp(self): """Message field 'rp'.""" return self._rp @rp.setter def rp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'rp' field must be of type 'int'" assert value >= -32768 and value < 32768, \ "The 'rp' field must be an integer in [-32768, 32767]" self._rp = value @property def rc(self): """Message field 'rc'.""" return self._rc @rc.setter def rc(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'rc' field must be of type 'int'" assert value >= -32768 and value < 32768, \ "The 'rc' field must be an integer in [-32768, 32767]" self._rc = value @property def rcal(self): """Message field 'rcal'.""" return self._rcal @rcal.setter def rcal(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'rcal' field must be of type 'int'" assert value >= -32768 and value < 32768, \ "The 'rcal' field must be an integer in [-32768, 32767]" self._rcal = value @property def me(self): """Message field 'me'.""" return self._me @me.setter def me(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'me' field must be of type 'int'" assert value >= -32768 and value < 32768, \ "The 'me' field must be an integer in [-32768, 32767]" self._me = value @property def al(self): """Message field 'al'.""" return self._al @al.setter def al(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'al' field must be of type 'int'" assert value >= -32768 and value < 32768, \ "The 'al' field must be an integer in [-32768, 32767]" self._al = value <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/estimator_odometry.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_ODOMETRY_HPP_ #define PX4_MSGS__MSG__ESTIMATOR_ODOMETRY_HPP_ #include "px4_msgs/msg/estimator_odometry__struct.hpp" #include "px4_msgs/msg/estimator_odometry__traits.hpp" #endif // PX4_MSGS__MSG__ESTIMATOR_ODOMETRY_HPP_ <file_sep>/install/multi_rtd_interfaces/include/multi_rtd_interfaces/msg/robot_trajectory__rosidl_typesupport_fastrtps_c.h // generated from rosidl_typesupport_fastrtps_c/resource/idl__rosidl_typesupport_fastrtps_c.h.em // with input from multi_rtd_interfaces:msg/RobotTrajectory.idl // generated code does not contain a copyright notice #ifndef MULTI_RTD_INTERFACES__MSG__ROBOT_TRAJECTORY__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #define MULTI_RTD_INTERFACES__MSG__ROBOT_TRAJECTORY__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #include <stddef.h> #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "multi_rtd_interfaces/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_multi_rtd_interfaces size_t get_serialized_size_multi_rtd_interfaces__msg__RobotTrajectory( const void * untyped_ros_message, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_multi_rtd_interfaces size_t max_serialized_size_multi_rtd_interfaces__msg__RobotTrajectory( bool & full_bounded, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_multi_rtd_interfaces const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, multi_rtd_interfaces, msg, RobotTrajectory)(); #ifdef __cplusplus } #endif #endif // MULTI_RTD_INTERFACES__MSG__ROBOT_TRAJECTORY__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleTrajectoryWaypoint.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_trajectory_waypoint__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> // Include directives for member types // Member `waypoints` #include "px4_msgs/msg/trajectory_waypoint__functions.h" bool px4_msgs__msg__VehicleTrajectoryWaypoint__init(px4_msgs__msg__VehicleTrajectoryWaypoint * msg) { if (!msg) { return false; } // timestamp // type // waypoints for (size_t i = 0; i < 5; ++i) { if (!px4_msgs__msg__TrajectoryWaypoint__init(&msg->waypoints[i])) { px4_msgs__msg__VehicleTrajectoryWaypoint__fini(msg); return false; } } return true; } void px4_msgs__msg__VehicleTrajectoryWaypoint__fini(px4_msgs__msg__VehicleTrajectoryWaypoint * msg) { if (!msg) { return; } // timestamp // type // waypoints for (size_t i = 0; i < 5; ++i) { px4_msgs__msg__TrajectoryWaypoint__fini(&msg->waypoints[i]); } } px4_msgs__msg__VehicleTrajectoryWaypoint * px4_msgs__msg__VehicleTrajectoryWaypoint__create() { px4_msgs__msg__VehicleTrajectoryWaypoint * msg = (px4_msgs__msg__VehicleTrajectoryWaypoint *)malloc(sizeof(px4_msgs__msg__VehicleTrajectoryWaypoint)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleTrajectoryWaypoint)); bool success = px4_msgs__msg__VehicleTrajectoryWaypoint__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleTrajectoryWaypoint__destroy(px4_msgs__msg__VehicleTrajectoryWaypoint * msg) { if (msg) { px4_msgs__msg__VehicleTrajectoryWaypoint__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleTrajectoryWaypoint__Sequence__init(px4_msgs__msg__VehicleTrajectoryWaypoint__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleTrajectoryWaypoint * data = NULL; if (size) { data = (px4_msgs__msg__VehicleTrajectoryWaypoint *)calloc(size, sizeof(px4_msgs__msg__VehicleTrajectoryWaypoint)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleTrajectoryWaypoint__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleTrajectoryWaypoint__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleTrajectoryWaypoint__Sequence__fini(px4_msgs__msg__VehicleTrajectoryWaypoint__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleTrajectoryWaypoint__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleTrajectoryWaypoint__Sequence * px4_msgs__msg__VehicleTrajectoryWaypoint__Sequence__create(size_t size) { px4_msgs__msg__VehicleTrajectoryWaypoint__Sequence * array = (px4_msgs__msg__VehicleTrajectoryWaypoint__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleTrajectoryWaypoint__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleTrajectoryWaypoint__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleTrajectoryWaypoint__Sequence__destroy(px4_msgs__msg__VehicleTrajectoryWaypoint__Sequence * array) { if (array) { px4_msgs__msg__VehicleTrajectoryWaypoint__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_thrust_setpoint__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleThrustSetpoint.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_thrust_setpoint__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__VehicleThrustSetpoint__init(px4_msgs__msg__VehicleThrustSetpoint * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // xyz return true; } void px4_msgs__msg__VehicleThrustSetpoint__fini(px4_msgs__msg__VehicleThrustSetpoint * msg) { if (!msg) { return; } // timestamp // timestamp_sample // xyz } px4_msgs__msg__VehicleThrustSetpoint * px4_msgs__msg__VehicleThrustSetpoint__create() { px4_msgs__msg__VehicleThrustSetpoint * msg = (px4_msgs__msg__VehicleThrustSetpoint *)malloc(sizeof(px4_msgs__msg__VehicleThrustSetpoint)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleThrustSetpoint)); bool success = px4_msgs__msg__VehicleThrustSetpoint__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleThrustSetpoint__destroy(px4_msgs__msg__VehicleThrustSetpoint * msg) { if (msg) { px4_msgs__msg__VehicleThrustSetpoint__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleThrustSetpoint__Sequence__init(px4_msgs__msg__VehicleThrustSetpoint__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleThrustSetpoint * data = NULL; if (size) { data = (px4_msgs__msg__VehicleThrustSetpoint *)calloc(size, sizeof(px4_msgs__msg__VehicleThrustSetpoint)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleThrustSetpoint__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleThrustSetpoint__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleThrustSetpoint__Sequence__fini(px4_msgs__msg__VehicleThrustSetpoint__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleThrustSetpoint__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleThrustSetpoint__Sequence * px4_msgs__msg__VehicleThrustSetpoint__Sequence__create(size_t size) { px4_msgs__msg__VehicleThrustSetpoint__Sequence * array = (px4_msgs__msg__VehicleThrustSetpoint__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleThrustSetpoint__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleThrustSetpoint__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleThrustSetpoint__Sequence__destroy(px4_msgs__msg__VehicleThrustSetpoint__Sequence * array) { if (array) { px4_msgs__msg__VehicleThrustSetpoint__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/actuator_controls5.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS5_HPP_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS5_HPP_ #include "px4_msgs/msg/actuator_controls5__struct.hpp" #include "px4_msgs/msg/actuator_controls5__traits.hpp" #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS5_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium__rosidl_typesupport_introspection_cpp.hpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__rosidl_typesupport_introspection_cpp.h.em // with input from px4_msgs:msg/OrbTestMedium.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORB_TEST_MEDIUM__ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_HPP_ #define PX4_MSGS__MSG__ORB_TEST_MEDIUM__ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_HPP_ #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" #ifdef __cplusplus extern "C" { #endif // TODO(dirk-thomas) these visibility macros should be message package specific ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, OrbTestMedium)(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ORB_TEST_MEDIUM__ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_control_mode__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleControlMode.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_control_mode__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__VehicleControlMode__init(px4_msgs__msg__VehicleControlMode * msg) { if (!msg) { return false; } // timestamp // flag_armed // flag_external_manual_override_ok // flag_control_manual_enabled // flag_control_auto_enabled // flag_control_offboard_enabled // flag_control_rates_enabled // flag_control_attitude_enabled // flag_control_acceleration_enabled // flag_control_velocity_enabled // flag_control_position_enabled // flag_control_altitude_enabled // flag_control_climb_rate_enabled // flag_control_termination_enabled return true; } void px4_msgs__msg__VehicleControlMode__fini(px4_msgs__msg__VehicleControlMode * msg) { if (!msg) { return; } // timestamp // flag_armed // flag_external_manual_override_ok // flag_control_manual_enabled // flag_control_auto_enabled // flag_control_offboard_enabled // flag_control_rates_enabled // flag_control_attitude_enabled // flag_control_acceleration_enabled // flag_control_velocity_enabled // flag_control_position_enabled // flag_control_altitude_enabled // flag_control_climb_rate_enabled // flag_control_termination_enabled } px4_msgs__msg__VehicleControlMode * px4_msgs__msg__VehicleControlMode__create() { px4_msgs__msg__VehicleControlMode * msg = (px4_msgs__msg__VehicleControlMode *)malloc(sizeof(px4_msgs__msg__VehicleControlMode)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleControlMode)); bool success = px4_msgs__msg__VehicleControlMode__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleControlMode__destroy(px4_msgs__msg__VehicleControlMode * msg) { if (msg) { px4_msgs__msg__VehicleControlMode__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleControlMode__Sequence__init(px4_msgs__msg__VehicleControlMode__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleControlMode * data = NULL; if (size) { data = (px4_msgs__msg__VehicleControlMode *)calloc(size, sizeof(px4_msgs__msg__VehicleControlMode)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleControlMode__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleControlMode__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleControlMode__Sequence__fini(px4_msgs__msg__VehicleControlMode__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleControlMode__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleControlMode__Sequence * px4_msgs__msg__VehicleControlMode__Sequence__create(size_t size) { px4_msgs__msg__VehicleControlMode__Sequence * array = (px4_msgs__msg__VehicleControlMode__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleControlMode__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleControlMode__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleControlMode__Sequence__destroy(px4_msgs__msg__VehicleControlMode__Sequence * array) { if (array) { px4_msgs__msg__VehicleControlMode__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/navigator_mission_item__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/NavigatorMissionItem.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/navigator_mission_item__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/navigator_mission_item__functions.h" #include "px4_msgs/msg/navigator_mission_item__struct.h" #ifdef __cplusplus extern "C" { #endif void NavigatorMissionItem__rosidl_typesupport_introspection_c__NavigatorMissionItem_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__NavigatorMissionItem__init(message_memory); } void NavigatorMissionItem__rosidl_typesupport_introspection_c__NavigatorMissionItem_fini_function(void * message_memory) { px4_msgs__msg__NavigatorMissionItem__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember NavigatorMissionItem__rosidl_typesupport_introspection_c__NavigatorMissionItem_message_member_array[18] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__NavigatorMissionItem, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "instance_count", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__NavigatorMissionItem, instance_count), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "sequence_current", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__NavigatorMissionItem, sequence_current), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "nav_cmd", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__NavigatorMissionItem, nav_cmd), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "latitude", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__NavigatorMissionItem, latitude), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "longitude", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__NavigatorMissionItem, longitude), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "time_inside", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__NavigatorMissionItem, time_inside), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "acceptance_radius", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__NavigatorMissionItem, acceptance_radius), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "loiter_radius", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__NavigatorMissionItem, loiter_radius), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yaw", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__NavigatorMissionItem, yaw), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "altitude", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__NavigatorMissionItem, altitude), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "frame", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__NavigatorMissionItem, frame), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "origin", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__NavigatorMissionItem, origin), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "loiter_exit_xtrack", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__NavigatorMissionItem, loiter_exit_xtrack), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "force_heading", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__NavigatorMissionItem, force_heading), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "altitude_is_relative", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__NavigatorMissionItem, altitude_is_relative), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "autocontinue", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__NavigatorMissionItem, autocontinue), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vtol_back_transition", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__NavigatorMissionItem, vtol_back_transition), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers NavigatorMissionItem__rosidl_typesupport_introspection_c__NavigatorMissionItem_message_members = { "px4_msgs__msg", // message namespace "NavigatorMissionItem", // message name 18, // number of fields sizeof(px4_msgs__msg__NavigatorMissionItem), NavigatorMissionItem__rosidl_typesupport_introspection_c__NavigatorMissionItem_message_member_array, // message members NavigatorMissionItem__rosidl_typesupport_introspection_c__NavigatorMissionItem_init_function, // function to initialize message memory (memory has to be allocated) NavigatorMissionItem__rosidl_typesupport_introspection_c__NavigatorMissionItem_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t NavigatorMissionItem__rosidl_typesupport_introspection_c__NavigatorMissionItem_message_type_support_handle = { 0, &NavigatorMissionItem__rosidl_typesupport_introspection_c__NavigatorMissionItem_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, NavigatorMissionItem)() { if (!NavigatorMissionItem__rosidl_typesupport_introspection_c__NavigatorMissionItem_message_type_support_handle.typesupport_identifier) { NavigatorMissionItem__rosidl_typesupport_introspection_c__NavigatorMissionItem_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &NavigatorMissionItem__rosidl_typesupport_introspection_c__NavigatorMissionItem_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_gyro.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/SensorGyro.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_GYRO_H_ #define PX4_MSGS__MSG__SENSOR_GYRO_H_ #include "px4_msgs/msg/sensor_gyro__struct.h" #include "px4_msgs/msg/sensor_gyro__functions.h" #include "px4_msgs/msg/sensor_gyro__type_support.h" #endif // PX4_MSGS__MSG__SENSOR_GYRO_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/gps_dump__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/GpsDump.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/gps_dump__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__GpsDump__init(px4_msgs__msg__GpsDump * msg) { if (!msg) { return false; } // timestamp // instance // len // data return true; } void px4_msgs__msg__GpsDump__fini(px4_msgs__msg__GpsDump * msg) { if (!msg) { return; } // timestamp // instance // len // data } px4_msgs__msg__GpsDump * px4_msgs__msg__GpsDump__create() { px4_msgs__msg__GpsDump * msg = (px4_msgs__msg__GpsDump *)malloc(sizeof(px4_msgs__msg__GpsDump)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__GpsDump)); bool success = px4_msgs__msg__GpsDump__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__GpsDump__destroy(px4_msgs__msg__GpsDump * msg) { if (msg) { px4_msgs__msg__GpsDump__fini(msg); } free(msg); } bool px4_msgs__msg__GpsDump__Sequence__init(px4_msgs__msg__GpsDump__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__GpsDump * data = NULL; if (size) { data = (px4_msgs__msg__GpsDump *)calloc(size, sizeof(px4_msgs__msg__GpsDump)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__GpsDump__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__GpsDump__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__GpsDump__Sequence__fini(px4_msgs__msg__GpsDump__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__GpsDump__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__GpsDump__Sequence * px4_msgs__msg__GpsDump__Sequence__create(size_t size) { px4_msgs__msg__GpsDump__Sequence * array = (px4_msgs__msg__GpsDump__Sequence *)malloc(sizeof(px4_msgs__msg__GpsDump__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__GpsDump__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__GpsDump__Sequence__destroy(px4_msgs__msg__GpsDump__Sequence * array) { if (array) { px4_msgs__msg__GpsDump__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/system_power__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/SystemPower.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/system_power__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void SystemPower_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::SystemPower(_init); } void SystemPower_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::SystemPower *>(message_memory); typed_message->~SystemPower(); } size_t size_function__SystemPower__sensors3v3(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__SystemPower__sensors3v3(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 4> *>(untyped_member); return &member[index]; } void * get_function__SystemPower__sensors3v3(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 4> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember SystemPower_message_member_array[12] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SystemPower, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "voltage5v_v", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SystemPower, voltage5v_v), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "sensors3v3", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::SystemPower, sensors3v3), // bytes offset in struct nullptr, // default value size_function__SystemPower__sensors3v3, // size() function pointer get_const_function__SystemPower__sensors3v3, // get_const(index) function pointer get_function__SystemPower__sensors3v3, // get(index) function pointer nullptr // resize(index) function pointer }, { "sensors3v3_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SystemPower, sensors3v3_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "usb_connected", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SystemPower, usb_connected), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "brick_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SystemPower, brick_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "usb_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SystemPower, usb_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "servo_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SystemPower, servo_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "periph_5v_oc", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SystemPower, periph_5v_oc), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "hipower_5v_oc", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SystemPower, hipower_5v_oc), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "comp_5v_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SystemPower, comp_5v_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "can1_gps1_5v_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SystemPower, can1_gps1_5v_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers SystemPower_message_members = { "px4_msgs::msg", // message namespace "SystemPower", // message name 12, // number of fields sizeof(px4_msgs::msg::SystemPower), SystemPower_message_member_array, // message members SystemPower_init_function, // function to initialize message memory (memory has to be allocated) SystemPower_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t SystemPower_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &SystemPower_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::SystemPower>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::SystemPower_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, SystemPower)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::SystemPower_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/estimator_sensor_bias__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/EstimatorSensorBias.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_SENSOR_BIAS__STRUCT_HPP_ #define PX4_MSGS__MSG__ESTIMATOR_SENSOR_BIAS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__EstimatorSensorBias __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__EstimatorSensorBias __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct EstimatorSensorBias_ { using Type = EstimatorSensorBias_<ContainerAllocator>; explicit EstimatorSensorBias_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->gyro_device_id = 0ul; std::fill<typename std::array<float, 3>::iterator, float>(this->gyro_bias.begin(), this->gyro_bias.end(), 0.0f); this->gyro_bias_limit = 0.0f; std::fill<typename std::array<float, 3>::iterator, float>(this->gyro_bias_variance.begin(), this->gyro_bias_variance.end(), 0.0f); this->gyro_bias_valid = false; this->accel_device_id = 0ul; std::fill<typename std::array<float, 3>::iterator, float>(this->accel_bias.begin(), this->accel_bias.end(), 0.0f); this->accel_bias_limit = 0.0f; std::fill<typename std::array<float, 3>::iterator, float>(this->accel_bias_variance.begin(), this->accel_bias_variance.end(), 0.0f); this->accel_bias_valid = false; this->mag_device_id = 0ul; std::fill<typename std::array<float, 3>::iterator, float>(this->mag_bias.begin(), this->mag_bias.end(), 0.0f); this->mag_bias_limit = 0.0f; std::fill<typename std::array<float, 3>::iterator, float>(this->mag_bias_variance.begin(), this->mag_bias_variance.end(), 0.0f); this->mag_bias_valid = false; } } explicit EstimatorSensorBias_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : gyro_bias(_alloc), gyro_bias_variance(_alloc), accel_bias(_alloc), accel_bias_variance(_alloc), mag_bias(_alloc), mag_bias_variance(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->gyro_device_id = 0ul; std::fill<typename std::array<float, 3>::iterator, float>(this->gyro_bias.begin(), this->gyro_bias.end(), 0.0f); this->gyro_bias_limit = 0.0f; std::fill<typename std::array<float, 3>::iterator, float>(this->gyro_bias_variance.begin(), this->gyro_bias_variance.end(), 0.0f); this->gyro_bias_valid = false; this->accel_device_id = 0ul; std::fill<typename std::array<float, 3>::iterator, float>(this->accel_bias.begin(), this->accel_bias.end(), 0.0f); this->accel_bias_limit = 0.0f; std::fill<typename std::array<float, 3>::iterator, float>(this->accel_bias_variance.begin(), this->accel_bias_variance.end(), 0.0f); this->accel_bias_valid = false; this->mag_device_id = 0ul; std::fill<typename std::array<float, 3>::iterator, float>(this->mag_bias.begin(), this->mag_bias.end(), 0.0f); this->mag_bias_limit = 0.0f; std::fill<typename std::array<float, 3>::iterator, float>(this->mag_bias_variance.begin(), this->mag_bias_variance.end(), 0.0f); this->mag_bias_valid = false; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _timestamp_sample_type = uint64_t; _timestamp_sample_type timestamp_sample; using _gyro_device_id_type = uint32_t; _gyro_device_id_type gyro_device_id; using _gyro_bias_type = std::array<float, 3>; _gyro_bias_type gyro_bias; using _gyro_bias_limit_type = float; _gyro_bias_limit_type gyro_bias_limit; using _gyro_bias_variance_type = std::array<float, 3>; _gyro_bias_variance_type gyro_bias_variance; using _gyro_bias_valid_type = bool; _gyro_bias_valid_type gyro_bias_valid; using _accel_device_id_type = uint32_t; _accel_device_id_type accel_device_id; using _accel_bias_type = std::array<float, 3>; _accel_bias_type accel_bias; using _accel_bias_limit_type = float; _accel_bias_limit_type accel_bias_limit; using _accel_bias_variance_type = std::array<float, 3>; _accel_bias_variance_type accel_bias_variance; using _accel_bias_valid_type = bool; _accel_bias_valid_type accel_bias_valid; using _mag_device_id_type = uint32_t; _mag_device_id_type mag_device_id; using _mag_bias_type = std::array<float, 3>; _mag_bias_type mag_bias; using _mag_bias_limit_type = float; _mag_bias_limit_type mag_bias_limit; using _mag_bias_variance_type = std::array<float, 3>; _mag_bias_variance_type mag_bias_variance; using _mag_bias_valid_type = bool; _mag_bias_valid_type mag_bias_valid; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__timestamp_sample( const uint64_t & _arg) { this->timestamp_sample = _arg; return *this; } Type & set__gyro_device_id( const uint32_t & _arg) { this->gyro_device_id = _arg; return *this; } Type & set__gyro_bias( const std::array<float, 3> & _arg) { this->gyro_bias = _arg; return *this; } Type & set__gyro_bias_limit( const float & _arg) { this->gyro_bias_limit = _arg; return *this; } Type & set__gyro_bias_variance( const std::array<float, 3> & _arg) { this->gyro_bias_variance = _arg; return *this; } Type & set__gyro_bias_valid( const bool & _arg) { this->gyro_bias_valid = _arg; return *this; } Type & set__accel_device_id( const uint32_t & _arg) { this->accel_device_id = _arg; return *this; } Type & set__accel_bias( const std::array<float, 3> & _arg) { this->accel_bias = _arg; return *this; } Type & set__accel_bias_limit( const float & _arg) { this->accel_bias_limit = _arg; return *this; } Type & set__accel_bias_variance( const std::array<float, 3> & _arg) { this->accel_bias_variance = _arg; return *this; } Type & set__accel_bias_valid( const bool & _arg) { this->accel_bias_valid = _arg; return *this; } Type & set__mag_device_id( const uint32_t & _arg) { this->mag_device_id = _arg; return *this; } Type & set__mag_bias( const std::array<float, 3> & _arg) { this->mag_bias = _arg; return *this; } Type & set__mag_bias_limit( const float & _arg) { this->mag_bias_limit = _arg; return *this; } Type & set__mag_bias_variance( const std::array<float, 3> & _arg) { this->mag_bias_variance = _arg; return *this; } Type & set__mag_bias_valid( const bool & _arg) { this->mag_bias_valid = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::EstimatorSensorBias_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::EstimatorSensorBias_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::EstimatorSensorBias_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::EstimatorSensorBias_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::EstimatorSensorBias_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::EstimatorSensorBias_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::EstimatorSensorBias_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::EstimatorSensorBias_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::EstimatorSensorBias_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::EstimatorSensorBias_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__EstimatorSensorBias std::shared_ptr<px4_msgs::msg::EstimatorSensorBias_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__EstimatorSensorBias std::shared_ptr<px4_msgs::msg::EstimatorSensorBias_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const EstimatorSensorBias_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->timestamp_sample != other.timestamp_sample) { return false; } if (this->gyro_device_id != other.gyro_device_id) { return false; } if (this->gyro_bias != other.gyro_bias) { return false; } if (this->gyro_bias_limit != other.gyro_bias_limit) { return false; } if (this->gyro_bias_variance != other.gyro_bias_variance) { return false; } if (this->gyro_bias_valid != other.gyro_bias_valid) { return false; } if (this->accel_device_id != other.accel_device_id) { return false; } if (this->accel_bias != other.accel_bias) { return false; } if (this->accel_bias_limit != other.accel_bias_limit) { return false; } if (this->accel_bias_variance != other.accel_bias_variance) { return false; } if (this->accel_bias_valid != other.accel_bias_valid) { return false; } if (this->mag_device_id != other.mag_device_id) { return false; } if (this->mag_bias != other.mag_bias) { return false; } if (this->mag_bias_limit != other.mag_bias_limit) { return false; } if (this->mag_bias_variance != other.mag_bias_variance) { return false; } if (this->mag_bias_valid != other.mag_bias_valid) { return false; } return true; } bool operator!=(const EstimatorSensorBias_ & other) const { return !this->operator==(other); } }; // struct EstimatorSensorBias_ // alias to use template instance with default allocator using EstimatorSensorBias = px4_msgs::msg::EstimatorSensorBias_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__ESTIMATOR_SENSOR_BIAS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/sensors_status_imu__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/SensorsStatusImu.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/sensors_status_imu__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/sensors_status_imu__functions.h" #include "px4_msgs/msg/sensors_status_imu__struct.h" #ifdef __cplusplus extern "C" { #endif void SensorsStatusImu__rosidl_typesupport_introspection_c__SensorsStatusImu_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__SensorsStatusImu__init(message_memory); } void SensorsStatusImu__rosidl_typesupport_introspection_c__SensorsStatusImu_fini_function(void * message_memory) { px4_msgs__msg__SensorsStatusImu__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember SensorsStatusImu__rosidl_typesupport_introspection_c__SensorsStatusImu_message_member_array[9] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorsStatusImu, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accel_device_id_primary", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorsStatusImu, accel_device_id_primary), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accel_device_ids", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorsStatusImu, accel_device_ids), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accel_inconsistency_m_s_s", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorsStatusImu, accel_inconsistency_m_s_s), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accel_healthy", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorsStatusImu, accel_healthy), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gyro_device_id_primary", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorsStatusImu, gyro_device_id_primary), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gyro_device_ids", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorsStatusImu, gyro_device_ids), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gyro_inconsistency_rad_s", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorsStatusImu, gyro_inconsistency_rad_s), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gyro_healthy", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorsStatusImu, gyro_healthy), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers SensorsStatusImu__rosidl_typesupport_introspection_c__SensorsStatusImu_message_members = { "px4_msgs__msg", // message namespace "SensorsStatusImu", // message name 9, // number of fields sizeof(px4_msgs__msg__SensorsStatusImu), SensorsStatusImu__rosidl_typesupport_introspection_c__SensorsStatusImu_message_member_array, // message members SensorsStatusImu__rosidl_typesupport_introspection_c__SensorsStatusImu_init_function, // function to initialize message memory (memory has to be allocated) SensorsStatusImu__rosidl_typesupport_introspection_c__SensorsStatusImu_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t SensorsStatusImu__rosidl_typesupport_introspection_c__SensorsStatusImu_message_type_support_handle = { 0, &SensorsStatusImu__rosidl_typesupport_introspection_c__SensorsStatusImu_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, SensorsStatusImu)() { if (!SensorsStatusImu__rosidl_typesupport_introspection_c__SensorsStatusImu_message_type_support_handle.typesupport_identifier) { SensorsStatusImu__rosidl_typesupport_introspection_c__SensorsStatusImu_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &SensorsStatusImu__rosidl_typesupport_introspection_c__SensorsStatusImu_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/camera_trigger__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/CameraTrigger.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__CAMERA_TRIGGER__STRUCT_H_ #define PX4_MSGS__MSG__CAMERA_TRIGGER__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/CameraTrigger in the package px4_msgs. typedef struct px4_msgs__msg__CameraTrigger { uint64_t timestamp; uint64_t timestamp_utc; uint32_t seq; bool feedback; } px4_msgs__msg__CameraTrigger; // Struct for a sequence of px4_msgs__msg__CameraTrigger. typedef struct px4_msgs__msg__CameraTrigger__Sequence { px4_msgs__msg__CameraTrigger * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__CameraTrigger__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__CAMERA_TRIGGER__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_home_position_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/HomePosition.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/home_position__struct.h" #include "px4_msgs/msg/home_position__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__home_position__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[41]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._home_position.HomePosition", full_classname_dest, 40) == 0); } px4_msgs__msg__HomePosition * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // lat PyObject * field = PyObject_GetAttrString(_pymsg, "lat"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->lat = PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // lon PyObject * field = PyObject_GetAttrString(_pymsg, "lon"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->lon = PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // alt PyObject * field = PyObject_GetAttrString(_pymsg, "alt"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->alt = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // x PyObject * field = PyObject_GetAttrString(_pymsg, "x"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->x = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // y PyObject * field = PyObject_GetAttrString(_pymsg, "y"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->y = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // z PyObject * field = PyObject_GetAttrString(_pymsg, "z"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->z = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // yaw PyObject * field = PyObject_GetAttrString(_pymsg, "yaw"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->yaw = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // valid_alt PyObject * field = PyObject_GetAttrString(_pymsg, "valid_alt"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->valid_alt = (Py_True == field); Py_DECREF(field); } { // valid_hpos PyObject * field = PyObject_GetAttrString(_pymsg, "valid_hpos"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->valid_hpos = (Py_True == field); Py_DECREF(field); } { // valid_lpos PyObject * field = PyObject_GetAttrString(_pymsg, "valid_lpos"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->valid_lpos = (Py_True == field); Py_DECREF(field); } { // manual_home PyObject * field = PyObject_GetAttrString(_pymsg, "manual_home"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->manual_home = (Py_True == field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__home_position__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of HomePosition */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._home_position"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "HomePosition"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__HomePosition * ros_message = (px4_msgs__msg__HomePosition *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // lat PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->lat); { int rc = PyObject_SetAttrString(_pymessage, "lat", field); Py_DECREF(field); if (rc) { return NULL; } } } { // lon PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->lon); { int rc = PyObject_SetAttrString(_pymessage, "lon", field); Py_DECREF(field); if (rc) { return NULL; } } } { // alt PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->alt); { int rc = PyObject_SetAttrString(_pymessage, "alt", field); Py_DECREF(field); if (rc) { return NULL; } } } { // x PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->x); { int rc = PyObject_SetAttrString(_pymessage, "x", field); Py_DECREF(field); if (rc) { return NULL; } } } { // y PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->y); { int rc = PyObject_SetAttrString(_pymessage, "y", field); Py_DECREF(field); if (rc) { return NULL; } } } { // z PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->z); { int rc = PyObject_SetAttrString(_pymessage, "z", field); Py_DECREF(field); if (rc) { return NULL; } } } { // yaw PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->yaw); { int rc = PyObject_SetAttrString(_pymessage, "yaw", field); Py_DECREF(field); if (rc) { return NULL; } } } { // valid_alt PyObject * field = NULL; field = PyBool_FromLong(ros_message->valid_alt ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "valid_alt", field); Py_DECREF(field); if (rc) { return NULL; } } } { // valid_hpos PyObject * field = NULL; field = PyBool_FromLong(ros_message->valid_hpos ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "valid_hpos", field); Py_DECREF(field); if (rc) { return NULL; } } } { // valid_lpos PyObject * field = NULL; field = PyBool_FromLong(ros_message->valid_lpos ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "valid_lpos", field); Py_DECREF(field); if (rc) { return NULL; } } } { // manual_home PyObject * field = NULL; field = PyBool_FromLong(ros_message->manual_home ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "manual_home", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_estimator_status_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/EstimatorStatus.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/estimator_status__struct.h" #include "px4_msgs/msg/estimator_status__functions.h" #include "rosidl_generator_c/primitives_sequence.h" #include "rosidl_generator_c/primitives_sequence_functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__estimator_status__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[47]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._estimator_status.EstimatorStatus", full_classname_dest, 46) == 0); } px4_msgs__msg__EstimatorStatus * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // timestamp_sample PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp_sample"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp_sample = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // vibe PyObject * field = PyObject_GetAttrString(_pymsg, "vibe"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); Py_ssize_t size = 3; float * dest = ros_message->vibe; for (Py_ssize_t i = 0; i < size; ++i) { float tmp = *(npy_float32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(float)); } Py_DECREF(seq_field); Py_DECREF(field); } { // output_tracking_error PyObject * field = PyObject_GetAttrString(_pymsg, "output_tracking_error"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); Py_ssize_t size = 3; float * dest = ros_message->output_tracking_error; for (Py_ssize_t i = 0; i < size; ++i) { float tmp = *(npy_float32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(float)); } Py_DECREF(seq_field); Py_DECREF(field); } { // gps_check_fail_flags PyObject * field = PyObject_GetAttrString(_pymsg, "gps_check_fail_flags"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->gps_check_fail_flags = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // control_mode_flags PyObject * field = PyObject_GetAttrString(_pymsg, "control_mode_flags"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->control_mode_flags = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // filter_fault_flags PyObject * field = PyObject_GetAttrString(_pymsg, "filter_fault_flags"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->filter_fault_flags = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // pos_horiz_accuracy PyObject * field = PyObject_GetAttrString(_pymsg, "pos_horiz_accuracy"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->pos_horiz_accuracy = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // pos_vert_accuracy PyObject * field = PyObject_GetAttrString(_pymsg, "pos_vert_accuracy"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->pos_vert_accuracy = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // innovation_check_flags PyObject * field = PyObject_GetAttrString(_pymsg, "innovation_check_flags"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->innovation_check_flags = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // mag_test_ratio PyObject * field = PyObject_GetAttrString(_pymsg, "mag_test_ratio"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->mag_test_ratio = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // vel_test_ratio PyObject * field = PyObject_GetAttrString(_pymsg, "vel_test_ratio"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->vel_test_ratio = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // pos_test_ratio PyObject * field = PyObject_GetAttrString(_pymsg, "pos_test_ratio"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->pos_test_ratio = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // hgt_test_ratio PyObject * field = PyObject_GetAttrString(_pymsg, "hgt_test_ratio"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->hgt_test_ratio = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // tas_test_ratio PyObject * field = PyObject_GetAttrString(_pymsg, "tas_test_ratio"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->tas_test_ratio = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // hagl_test_ratio PyObject * field = PyObject_GetAttrString(_pymsg, "hagl_test_ratio"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->hagl_test_ratio = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // beta_test_ratio PyObject * field = PyObject_GetAttrString(_pymsg, "beta_test_ratio"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->beta_test_ratio = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // solution_status_flags PyObject * field = PyObject_GetAttrString(_pymsg, "solution_status_flags"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->solution_status_flags = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // reset_count_vel_ne PyObject * field = PyObject_GetAttrString(_pymsg, "reset_count_vel_ne"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->reset_count_vel_ne = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // reset_count_vel_d PyObject * field = PyObject_GetAttrString(_pymsg, "reset_count_vel_d"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->reset_count_vel_d = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // reset_count_pos_ne PyObject * field = PyObject_GetAttrString(_pymsg, "reset_count_pos_ne"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->reset_count_pos_ne = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // reset_count_pod_d PyObject * field = PyObject_GetAttrString(_pymsg, "reset_count_pod_d"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->reset_count_pod_d = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // reset_count_quat PyObject * field = PyObject_GetAttrString(_pymsg, "reset_count_quat"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->reset_count_quat = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // time_slip PyObject * field = PyObject_GetAttrString(_pymsg, "time_slip"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->time_slip = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // pre_flt_fail_innov_heading PyObject * field = PyObject_GetAttrString(_pymsg, "pre_flt_fail_innov_heading"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->pre_flt_fail_innov_heading = (Py_True == field); Py_DECREF(field); } { // pre_flt_fail_innov_vel_horiz PyObject * field = PyObject_GetAttrString(_pymsg, "pre_flt_fail_innov_vel_horiz"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->pre_flt_fail_innov_vel_horiz = (Py_True == field); Py_DECREF(field); } { // pre_flt_fail_innov_vel_vert PyObject * field = PyObject_GetAttrString(_pymsg, "pre_flt_fail_innov_vel_vert"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->pre_flt_fail_innov_vel_vert = (Py_True == field); Py_DECREF(field); } { // pre_flt_fail_innov_height PyObject * field = PyObject_GetAttrString(_pymsg, "pre_flt_fail_innov_height"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->pre_flt_fail_innov_height = (Py_True == field); Py_DECREF(field); } { // pre_flt_fail_mag_field_disturbed PyObject * field = PyObject_GetAttrString(_pymsg, "pre_flt_fail_mag_field_disturbed"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->pre_flt_fail_mag_field_disturbed = (Py_True == field); Py_DECREF(field); } { // accel_device_id PyObject * field = PyObject_GetAttrString(_pymsg, "accel_device_id"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->accel_device_id = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // gyro_device_id PyObject * field = PyObject_GetAttrString(_pymsg, "gyro_device_id"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->gyro_device_id = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // baro_device_id PyObject * field = PyObject_GetAttrString(_pymsg, "baro_device_id"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->baro_device_id = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // mag_device_id PyObject * field = PyObject_GetAttrString(_pymsg, "mag_device_id"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->mag_device_id = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // health_flags PyObject * field = PyObject_GetAttrString(_pymsg, "health_flags"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->health_flags = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // timeout_flags PyObject * field = PyObject_GetAttrString(_pymsg, "timeout_flags"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timeout_flags = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__estimator_status__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of EstimatorStatus */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._estimator_status"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "EstimatorStatus"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__EstimatorStatus * ros_message = (px4_msgs__msg__EstimatorStatus *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // timestamp_sample PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp_sample); { int rc = PyObject_SetAttrString(_pymessage, "timestamp_sample", field); Py_DECREF(field); if (rc) { return NULL; } } } { // vibe PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "vibe"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); assert(sizeof(npy_float32) == sizeof(float)); npy_float32 * dst = (npy_float32 *)PyArray_GETPTR1(seq_field, 0); float * src = &(ros_message->vibe[0]); memcpy(dst, src, 3 * sizeof(float)); Py_DECREF(field); } { // output_tracking_error PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "output_tracking_error"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); assert(sizeof(npy_float32) == sizeof(float)); npy_float32 * dst = (npy_float32 *)PyArray_GETPTR1(seq_field, 0); float * src = &(ros_message->output_tracking_error[0]); memcpy(dst, src, 3 * sizeof(float)); Py_DECREF(field); } { // gps_check_fail_flags PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->gps_check_fail_flags); { int rc = PyObject_SetAttrString(_pymessage, "gps_check_fail_flags", field); Py_DECREF(field); if (rc) { return NULL; } } } { // control_mode_flags PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->control_mode_flags); { int rc = PyObject_SetAttrString(_pymessage, "control_mode_flags", field); Py_DECREF(field); if (rc) { return NULL; } } } { // filter_fault_flags PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->filter_fault_flags); { int rc = PyObject_SetAttrString(_pymessage, "filter_fault_flags", field); Py_DECREF(field); if (rc) { return NULL; } } } { // pos_horiz_accuracy PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->pos_horiz_accuracy); { int rc = PyObject_SetAttrString(_pymessage, "pos_horiz_accuracy", field); Py_DECREF(field); if (rc) { return NULL; } } } { // pos_vert_accuracy PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->pos_vert_accuracy); { int rc = PyObject_SetAttrString(_pymessage, "pos_vert_accuracy", field); Py_DECREF(field); if (rc) { return NULL; } } } { // innovation_check_flags PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->innovation_check_flags); { int rc = PyObject_SetAttrString(_pymessage, "innovation_check_flags", field); Py_DECREF(field); if (rc) { return NULL; } } } { // mag_test_ratio PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->mag_test_ratio); { int rc = PyObject_SetAttrString(_pymessage, "mag_test_ratio", field); Py_DECREF(field); if (rc) { return NULL; } } } { // vel_test_ratio PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->vel_test_ratio); { int rc = PyObject_SetAttrString(_pymessage, "vel_test_ratio", field); Py_DECREF(field); if (rc) { return NULL; } } } { // pos_test_ratio PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->pos_test_ratio); { int rc = PyObject_SetAttrString(_pymessage, "pos_test_ratio", field); Py_DECREF(field); if (rc) { return NULL; } } } { // hgt_test_ratio PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->hgt_test_ratio); { int rc = PyObject_SetAttrString(_pymessage, "hgt_test_ratio", field); Py_DECREF(field); if (rc) { return NULL; } } } { // tas_test_ratio PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->tas_test_ratio); { int rc = PyObject_SetAttrString(_pymessage, "tas_test_ratio", field); Py_DECREF(field); if (rc) { return NULL; } } } { // hagl_test_ratio PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->hagl_test_ratio); { int rc = PyObject_SetAttrString(_pymessage, "hagl_test_ratio", field); Py_DECREF(field); if (rc) { return NULL; } } } { // beta_test_ratio PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->beta_test_ratio); { int rc = PyObject_SetAttrString(_pymessage, "beta_test_ratio", field); Py_DECREF(field); if (rc) { return NULL; } } } { // solution_status_flags PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->solution_status_flags); { int rc = PyObject_SetAttrString(_pymessage, "solution_status_flags", field); Py_DECREF(field); if (rc) { return NULL; } } } { // reset_count_vel_ne PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->reset_count_vel_ne); { int rc = PyObject_SetAttrString(_pymessage, "reset_count_vel_ne", field); Py_DECREF(field); if (rc) { return NULL; } } } { // reset_count_vel_d PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->reset_count_vel_d); { int rc = PyObject_SetAttrString(_pymessage, "reset_count_vel_d", field); Py_DECREF(field); if (rc) { return NULL; } } } { // reset_count_pos_ne PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->reset_count_pos_ne); { int rc = PyObject_SetAttrString(_pymessage, "reset_count_pos_ne", field); Py_DECREF(field); if (rc) { return NULL; } } } { // reset_count_pod_d PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->reset_count_pod_d); { int rc = PyObject_SetAttrString(_pymessage, "reset_count_pod_d", field); Py_DECREF(field); if (rc) { return NULL; } } } { // reset_count_quat PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->reset_count_quat); { int rc = PyObject_SetAttrString(_pymessage, "reset_count_quat", field); Py_DECREF(field); if (rc) { return NULL; } } } { // time_slip PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->time_slip); { int rc = PyObject_SetAttrString(_pymessage, "time_slip", field); Py_DECREF(field); if (rc) { return NULL; } } } { // pre_flt_fail_innov_heading PyObject * field = NULL; field = PyBool_FromLong(ros_message->pre_flt_fail_innov_heading ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "pre_flt_fail_innov_heading", field); Py_DECREF(field); if (rc) { return NULL; } } } { // pre_flt_fail_innov_vel_horiz PyObject * field = NULL; field = PyBool_FromLong(ros_message->pre_flt_fail_innov_vel_horiz ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "pre_flt_fail_innov_vel_horiz", field); Py_DECREF(field); if (rc) { return NULL; } } } { // pre_flt_fail_innov_vel_vert PyObject * field = NULL; field = PyBool_FromLong(ros_message->pre_flt_fail_innov_vel_vert ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "pre_flt_fail_innov_vel_vert", field); Py_DECREF(field); if (rc) { return NULL; } } } { // pre_flt_fail_innov_height PyObject * field = NULL; field = PyBool_FromLong(ros_message->pre_flt_fail_innov_height ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "pre_flt_fail_innov_height", field); Py_DECREF(field); if (rc) { return NULL; } } } { // pre_flt_fail_mag_field_disturbed PyObject * field = NULL; field = PyBool_FromLong(ros_message->pre_flt_fail_mag_field_disturbed ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "pre_flt_fail_mag_field_disturbed", field); Py_DECREF(field); if (rc) { return NULL; } } } { // accel_device_id PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->accel_device_id); { int rc = PyObject_SetAttrString(_pymessage, "accel_device_id", field); Py_DECREF(field); if (rc) { return NULL; } } } { // gyro_device_id PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->gyro_device_id); { int rc = PyObject_SetAttrString(_pymessage, "gyro_device_id", field); Py_DECREF(field); if (rc) { return NULL; } } } { // baro_device_id PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->baro_device_id); { int rc = PyObject_SetAttrString(_pymessage, "baro_device_id", field); Py_DECREF(field); if (rc) { return NULL; } } } { // mag_device_id PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->mag_device_id); { int rc = PyObject_SetAttrString(_pymessage, "mag_device_id", field); Py_DECREF(field); if (rc) { return NULL; } } } { // health_flags PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->health_flags); { int rc = PyObject_SetAttrString(_pymessage, "health_flags", field); Py_DECREF(field); if (rc) { return NULL; } } } { // timeout_flags PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->timeout_flags); { int rc = PyObject_SetAttrString(_pymessage, "timeout_flags", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/landing_target_pose__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/LandingTargetPose.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/landing_target_pose__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__LandingTargetPose__init(px4_msgs__msg__LandingTargetPose * msg) { if (!msg) { return false; } // timestamp // is_static // rel_pos_valid // rel_vel_valid // x_rel // y_rel // z_rel // vx_rel // vy_rel // cov_x_rel // cov_y_rel // cov_vx_rel // cov_vy_rel // abs_pos_valid // x_abs // y_abs // z_abs return true; } void px4_msgs__msg__LandingTargetPose__fini(px4_msgs__msg__LandingTargetPose * msg) { if (!msg) { return; } // timestamp // is_static // rel_pos_valid // rel_vel_valid // x_rel // y_rel // z_rel // vx_rel // vy_rel // cov_x_rel // cov_y_rel // cov_vx_rel // cov_vy_rel // abs_pos_valid // x_abs // y_abs // z_abs } px4_msgs__msg__LandingTargetPose * px4_msgs__msg__LandingTargetPose__create() { px4_msgs__msg__LandingTargetPose * msg = (px4_msgs__msg__LandingTargetPose *)malloc(sizeof(px4_msgs__msg__LandingTargetPose)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__LandingTargetPose)); bool success = px4_msgs__msg__LandingTargetPose__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__LandingTargetPose__destroy(px4_msgs__msg__LandingTargetPose * msg) { if (msg) { px4_msgs__msg__LandingTargetPose__fini(msg); } free(msg); } bool px4_msgs__msg__LandingTargetPose__Sequence__init(px4_msgs__msg__LandingTargetPose__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__LandingTargetPose * data = NULL; if (size) { data = (px4_msgs__msg__LandingTargetPose *)calloc(size, sizeof(px4_msgs__msg__LandingTargetPose)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__LandingTargetPose__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__LandingTargetPose__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__LandingTargetPose__Sequence__fini(px4_msgs__msg__LandingTargetPose__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__LandingTargetPose__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__LandingTargetPose__Sequence * px4_msgs__msg__LandingTargetPose__Sequence__create(size_t size) { px4_msgs__msg__LandingTargetPose__Sequence * array = (px4_msgs__msg__LandingTargetPose__Sequence *)malloc(sizeof(px4_msgs__msg__LandingTargetPose__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__LandingTargetPose__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__LandingTargetPose__Sequence__destroy(px4_msgs__msg__LandingTargetPose__Sequence * array) { if (array) { px4_msgs__msg__LandingTargetPose__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/irlock_report__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/IrlockReport.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/irlock_report__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__IrlockReport__init(px4_msgs__msg__IrlockReport * msg) { if (!msg) { return false; } // timestamp // signature // pos_x // pos_y // size_x // size_y return true; } void px4_msgs__msg__IrlockReport__fini(px4_msgs__msg__IrlockReport * msg) { if (!msg) { return; } // timestamp // signature // pos_x // pos_y // size_x // size_y } px4_msgs__msg__IrlockReport * px4_msgs__msg__IrlockReport__create() { px4_msgs__msg__IrlockReport * msg = (px4_msgs__msg__IrlockReport *)malloc(sizeof(px4_msgs__msg__IrlockReport)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__IrlockReport)); bool success = px4_msgs__msg__IrlockReport__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__IrlockReport__destroy(px4_msgs__msg__IrlockReport * msg) { if (msg) { px4_msgs__msg__IrlockReport__fini(msg); } free(msg); } bool px4_msgs__msg__IrlockReport__Sequence__init(px4_msgs__msg__IrlockReport__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__IrlockReport * data = NULL; if (size) { data = (px4_msgs__msg__IrlockReport *)calloc(size, sizeof(px4_msgs__msg__IrlockReport)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__IrlockReport__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__IrlockReport__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__IrlockReport__Sequence__fini(px4_msgs__msg__IrlockReport__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__IrlockReport__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__IrlockReport__Sequence * px4_msgs__msg__IrlockReport__Sequence__create(size_t size) { px4_msgs__msg__IrlockReport__Sequence * array = (px4_msgs__msg__IrlockReport__Sequence *)malloc(sizeof(px4_msgs__msg__IrlockReport__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__IrlockReport__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__IrlockReport__Sequence__destroy(px4_msgs__msg__IrlockReport__Sequence * array) { if (array) { px4_msgs__msg__IrlockReport__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/collision_constraints__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/CollisionConstraints.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__COLLISION_CONSTRAINTS__STRUCT_H_ #define PX4_MSGS__MSG__COLLISION_CONSTRAINTS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/CollisionConstraints in the package px4_msgs. typedef struct px4_msgs__msg__CollisionConstraints { uint64_t timestamp; float original_setpoint[2]; float adapted_setpoint[2]; } px4_msgs__msg__CollisionConstraints; // Struct for a sequence of px4_msgs__msg__CollisionConstraints. typedef struct px4_msgs__msg__CollisionConstraints__Sequence { px4_msgs__msg__CollisionConstraints * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__CollisionConstraints__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__COLLISION_CONSTRAINTS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission_result__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/MissionResult.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/mission_result__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void MissionResult_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::MissionResult(_init); } void MissionResult_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::MissionResult *>(message_memory); typed_message->~MissionResult(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember MissionResult_message_member_array[15] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::MissionResult, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "instance_count", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::MissionResult, instance_count), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "seq_reached", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::MissionResult, seq_reached), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "seq_current", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::MissionResult, seq_current), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "seq_total", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::MissionResult, seq_total), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::MissionResult, valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "warning", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::MissionResult, warning), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "finished", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::MissionResult, finished), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "failure", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::MissionResult, failure), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "stay_in_failsafe", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::MissionResult, stay_in_failsafe), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "flight_termination", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::MissionResult, flight_termination), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "item_do_jump_changed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::MissionResult, item_do_jump_changed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "item_changed_index", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::MissionResult, item_changed_index), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "item_do_jump_remaining", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::MissionResult, item_do_jump_remaining), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "execution_mode", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::MissionResult, execution_mode), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers MissionResult_message_members = { "px4_msgs::msg", // message namespace "MissionResult", // message name 15, // number of fields sizeof(px4_msgs::msg::MissionResult), MissionResult_message_member_array, // message members MissionResult_init_function, // function to initialize message memory (memory has to be allocated) MissionResult_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t MissionResult_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &MissionResult_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::MissionResult>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::MissionResult_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, MissionResult)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::MissionResult_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_status__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_STATUS__STRUCT_H_ #define PX4_MSGS__MSG__VEHICLE_STATUS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'ARMING_STATE_INIT'. enum { px4_msgs__msg__VehicleStatus__ARMING_STATE_INIT = 0 }; /// Constant 'ARMING_STATE_STANDBY'. enum { px4_msgs__msg__VehicleStatus__ARMING_STATE_STANDBY = 1 }; /// Constant 'ARMING_STATE_ARMED'. enum { px4_msgs__msg__VehicleStatus__ARMING_STATE_ARMED = 2 }; /// Constant 'ARMING_STATE_STANDBY_ERROR'. enum { px4_msgs__msg__VehicleStatus__ARMING_STATE_STANDBY_ERROR = 3 }; /// Constant 'ARMING_STATE_SHUTDOWN'. enum { px4_msgs__msg__VehicleStatus__ARMING_STATE_SHUTDOWN = 4 }; /// Constant 'ARMING_STATE_IN_AIR_RESTORE'. enum { px4_msgs__msg__VehicleStatus__ARMING_STATE_IN_AIR_RESTORE = 5 }; /// Constant 'ARMING_STATE_MAX'. enum { px4_msgs__msg__VehicleStatus__ARMING_STATE_MAX = 6 }; /// Constant 'FAILURE_NONE'. enum { px4_msgs__msg__VehicleStatus__FAILURE_NONE = 0 }; /// Constant 'FAILURE_ROLL'. enum { px4_msgs__msg__VehicleStatus__FAILURE_ROLL = 1 }; /// Constant 'FAILURE_PITCH'. enum { px4_msgs__msg__VehicleStatus__FAILURE_PITCH = 2 }; /// Constant 'FAILURE_ALT'. enum { px4_msgs__msg__VehicleStatus__FAILURE_ALT = 4 }; /// Constant 'FAILURE_EXT'. enum { px4_msgs__msg__VehicleStatus__FAILURE_EXT = 8 }; /// Constant 'FAILURE_ARM_ESC'. enum { px4_msgs__msg__VehicleStatus__FAILURE_ARM_ESC = 16 }; /// Constant 'HIL_STATE_OFF'. enum { px4_msgs__msg__VehicleStatus__HIL_STATE_OFF = 0 }; /// Constant 'HIL_STATE_ON'. enum { px4_msgs__msg__VehicleStatus__HIL_STATE_ON = 1 }; /// Constant 'NAVIGATION_STATE_MANUAL'. enum { px4_msgs__msg__VehicleStatus__NAVIGATION_STATE_MANUAL = 0 }; /// Constant 'NAVIGATION_STATE_ALTCTL'. enum { px4_msgs__msg__VehicleStatus__NAVIGATION_STATE_ALTCTL = 1 }; /// Constant 'NAVIGATION_STATE_POSCTL'. enum { px4_msgs__msg__VehicleStatus__NAVIGATION_STATE_POSCTL = 2 }; /// Constant 'NAVIGATION_STATE_AUTO_MISSION'. enum { px4_msgs__msg__VehicleStatus__NAVIGATION_STATE_AUTO_MISSION = 3 }; /// Constant 'NAVIGATION_STATE_AUTO_LOITER'. enum { px4_msgs__msg__VehicleStatus__NAVIGATION_STATE_AUTO_LOITER = 4 }; /// Constant 'NAVIGATION_STATE_AUTO_RTL'. enum { px4_msgs__msg__VehicleStatus__NAVIGATION_STATE_AUTO_RTL = 5 }; /// Constant 'NAVIGATION_STATE_AUTO_LANDENGFAIL'. enum { px4_msgs__msg__VehicleStatus__NAVIGATION_STATE_AUTO_LANDENGFAIL = 8 }; /// Constant 'NAVIGATION_STATE_AUTO_LANDGPSFAIL'. enum { px4_msgs__msg__VehicleStatus__NAVIGATION_STATE_AUTO_LANDGPSFAIL = 9 }; /// Constant 'NAVIGATION_STATE_ACRO'. enum { px4_msgs__msg__VehicleStatus__NAVIGATION_STATE_ACRO = 10 }; /// Constant 'NAVIGATION_STATE_UNUSED'. enum { px4_msgs__msg__VehicleStatus__NAVIGATION_STATE_UNUSED = 11 }; /// Constant 'NAVIGATION_STATE_DESCEND'. enum { px4_msgs__msg__VehicleStatus__NAVIGATION_STATE_DESCEND = 12 }; /// Constant 'NAVIGATION_STATE_TERMINATION'. enum { px4_msgs__msg__VehicleStatus__NAVIGATION_STATE_TERMINATION = 13 }; /// Constant 'NAVIGATION_STATE_OFFBOARD'. enum { px4_msgs__msg__VehicleStatus__NAVIGATION_STATE_OFFBOARD = 14 }; /// Constant 'NAVIGATION_STATE_STAB'. enum { px4_msgs__msg__VehicleStatus__NAVIGATION_STATE_STAB = 15 }; /// Constant 'NAVIGATION_STATE_UNUSED2'. enum { px4_msgs__msg__VehicleStatus__NAVIGATION_STATE_UNUSED2 = 16 }; /// Constant 'NAVIGATION_STATE_AUTO_TAKEOFF'. enum { px4_msgs__msg__VehicleStatus__NAVIGATION_STATE_AUTO_TAKEOFF = 17 }; /// Constant 'NAVIGATION_STATE_AUTO_LAND'. enum { px4_msgs__msg__VehicleStatus__NAVIGATION_STATE_AUTO_LAND = 18 }; /// Constant 'NAVIGATION_STATE_AUTO_FOLLOW_TARGET'. enum { px4_msgs__msg__VehicleStatus__NAVIGATION_STATE_AUTO_FOLLOW_TARGET = 19 }; /// Constant 'NAVIGATION_STATE_AUTO_PRECLAND'. enum { px4_msgs__msg__VehicleStatus__NAVIGATION_STATE_AUTO_PRECLAND = 20 }; /// Constant 'NAVIGATION_STATE_ORBIT'. enum { px4_msgs__msg__VehicleStatus__NAVIGATION_STATE_ORBIT = 21 }; /// Constant 'NAVIGATION_STATE_MAX'. enum { px4_msgs__msg__VehicleStatus__NAVIGATION_STATE_MAX = 22 }; /// Constant 'RC_IN_MODE_DEFAULT'. enum { px4_msgs__msg__VehicleStatus__RC_IN_MODE_DEFAULT = 0 }; /// Constant 'RC_IN_MODE_OFF'. enum { px4_msgs__msg__VehicleStatus__RC_IN_MODE_OFF = 1 }; /// Constant 'RC_IN_MODE_GENERATED'. enum { px4_msgs__msg__VehicleStatus__RC_IN_MODE_GENERATED = 2 }; /// Constant 'VEHICLE_TYPE_UNKNOWN'. enum { px4_msgs__msg__VehicleStatus__VEHICLE_TYPE_UNKNOWN = 0 }; /// Constant 'VEHICLE_TYPE_ROTARY_WING'. enum { px4_msgs__msg__VehicleStatus__VEHICLE_TYPE_ROTARY_WING = 1 }; /// Constant 'VEHICLE_TYPE_FIXED_WING'. enum { px4_msgs__msg__VehicleStatus__VEHICLE_TYPE_FIXED_WING = 2 }; /// Constant 'VEHICLE_TYPE_ROVER'. enum { px4_msgs__msg__VehicleStatus__VEHICLE_TYPE_ROVER = 3 }; /// Constant 'VEHICLE_TYPE_AIRSHIP'. enum { px4_msgs__msg__VehicleStatus__VEHICLE_TYPE_AIRSHIP = 4 }; /// Constant 'ARM_DISARM_REASON_TRANSITION_TO_STANDBY'. enum { px4_msgs__msg__VehicleStatus__ARM_DISARM_REASON_TRANSITION_TO_STANDBY = 0 }; /// Constant 'ARM_DISARM_REASON_RC_STICK'. enum { px4_msgs__msg__VehicleStatus__ARM_DISARM_REASON_RC_STICK = 1 }; /// Constant 'ARM_DISARM_REASON_RC_SWITCH'. enum { px4_msgs__msg__VehicleStatus__ARM_DISARM_REASON_RC_SWITCH = 2 }; /// Constant 'ARM_DISARM_REASON_COMMAND_INTERNAL'. enum { px4_msgs__msg__VehicleStatus__ARM_DISARM_REASON_COMMAND_INTERNAL = 3 }; /// Constant 'ARM_DISARM_REASON_COMMAND_EXTERNAL'. enum { px4_msgs__msg__VehicleStatus__ARM_DISARM_REASON_COMMAND_EXTERNAL = 4 }; /// Constant 'ARM_DISARM_REASON_MISSION_START'. enum { px4_msgs__msg__VehicleStatus__ARM_DISARM_REASON_MISSION_START = 5 }; /// Constant 'ARM_DISARM_REASON_SAFETY_BUTTON'. enum { px4_msgs__msg__VehicleStatus__ARM_DISARM_REASON_SAFETY_BUTTON = 6 }; /// Constant 'ARM_DISARM_REASON_AUTO_DISARM_LAND'. enum { px4_msgs__msg__VehicleStatus__ARM_DISARM_REASON_AUTO_DISARM_LAND = 7 }; /// Constant 'ARM_DISARM_REASON_AUTO_DISARM_PREFLIGHT'. enum { px4_msgs__msg__VehicleStatus__ARM_DISARM_REASON_AUTO_DISARM_PREFLIGHT = 8 }; /// Constant 'ARM_DISARM_REASON_KILL_SWITCH'. enum { px4_msgs__msg__VehicleStatus__ARM_DISARM_REASON_KILL_SWITCH = 9 }; /// Constant 'ARM_DISARM_REASON_LOCKDOWN'. enum { px4_msgs__msg__VehicleStatus__ARM_DISARM_REASON_LOCKDOWN = 10 }; /// Constant 'ARM_DISARM_REASON_FAILURE_DETECTOR'. enum { px4_msgs__msg__VehicleStatus__ARM_DISARM_REASON_FAILURE_DETECTOR = 11 }; /// Constant 'ARM_DISARM_REASON_SHUTDOWN'. enum { px4_msgs__msg__VehicleStatus__ARM_DISARM_REASON_SHUTDOWN = 12 }; /// Constant 'ARM_DISARM_REASON_UNIT_TEST'. enum { px4_msgs__msg__VehicleStatus__ARM_DISARM_REASON_UNIT_TEST = 13 }; // Struct defined in msg/VehicleStatus in the package px4_msgs. typedef struct px4_msgs__msg__VehicleStatus { uint64_t timestamp; uint8_t nav_state; uint64_t nav_state_timestamp; uint8_t arming_state; uint8_t hil_state; bool failsafe; uint64_t failsafe_timestamp; uint8_t system_type; uint8_t system_id; uint8_t component_id; uint8_t vehicle_type; bool is_vtol; bool is_vtol_tailsitter; bool vtol_fw_permanent_stab; bool in_transition_mode; bool in_transition_to_fw; bool rc_signal_lost; uint8_t rc_input_mode; bool data_link_lost; uint8_t data_link_lost_counter; bool high_latency_data_link_lost; bool engine_failure; bool mission_failure; uint8_t failure_detector_status; uint32_t onboard_control_sensors_present; uint32_t onboard_control_sensors_enabled; uint32_t onboard_control_sensors_health; uint8_t latest_arming_reason; uint8_t latest_disarming_reason; uint64_t armed_time; uint64_t takeoff_time; } px4_msgs__msg__VehicleStatus; // Struct for a sequence of px4_msgs__msg__VehicleStatus. typedef struct px4_msgs__msg__VehicleStatus__Sequence { px4_msgs__msg__VehicleStatus * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__VehicleStatus__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_STATUS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/parameter_update__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/ParameterUpdate.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/parameter_update__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__ParameterUpdate__init(px4_msgs__msg__ParameterUpdate * msg) { if (!msg) { return false; } // timestamp // instance // get_count // set_count // find_count // export_count // active // changed // custom_default return true; } void px4_msgs__msg__ParameterUpdate__fini(px4_msgs__msg__ParameterUpdate * msg) { if (!msg) { return; } // timestamp // instance // get_count // set_count // find_count // export_count // active // changed // custom_default } px4_msgs__msg__ParameterUpdate * px4_msgs__msg__ParameterUpdate__create() { px4_msgs__msg__ParameterUpdate * msg = (px4_msgs__msg__ParameterUpdate *)malloc(sizeof(px4_msgs__msg__ParameterUpdate)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__ParameterUpdate)); bool success = px4_msgs__msg__ParameterUpdate__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__ParameterUpdate__destroy(px4_msgs__msg__ParameterUpdate * msg) { if (msg) { px4_msgs__msg__ParameterUpdate__fini(msg); } free(msg); } bool px4_msgs__msg__ParameterUpdate__Sequence__init(px4_msgs__msg__ParameterUpdate__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__ParameterUpdate * data = NULL; if (size) { data = (px4_msgs__msg__ParameterUpdate *)calloc(size, sizeof(px4_msgs__msg__ParameterUpdate)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__ParameterUpdate__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__ParameterUpdate__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__ParameterUpdate__Sequence__fini(px4_msgs__msg__ParameterUpdate__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__ParameterUpdate__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__ParameterUpdate__Sequence * px4_msgs__msg__ParameterUpdate__Sequence__create(size_t size) { px4_msgs__msg__ParameterUpdate__Sequence * array = (px4_msgs__msg__ParameterUpdate__Sequence *)malloc(sizeof(px4_msgs__msg__ParameterUpdate__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__ParameterUpdate__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__ParameterUpdate__Sequence__destroy(px4_msgs__msg__ParameterUpdate__Sequence * array) { if (array) { px4_msgs__msg__ParameterUpdate__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/mavlink_log.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/MavlinkLog.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__MAVLINK_LOG_H_ #define PX4_MSGS__MSG__MAVLINK_LOG_H_ #include "px4_msgs/msg/mavlink_log__struct.h" #include "px4_msgs/msg/mavlink_log__functions.h" #include "px4_msgs/msg/mavlink_log__type_support.h" #endif // PX4_MSGS__MSG__MAVLINK_LOG_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/GimbalManagerSetAttitude.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/gimbal_manager_set_attitude__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/gimbal_manager_set_attitude__functions.h" #include "px4_msgs/msg/gimbal_manager_set_attitude__struct.h" #ifdef __cplusplus extern "C" { #endif void GimbalManagerSetAttitude__rosidl_typesupport_introspection_c__GimbalManagerSetAttitude_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__GimbalManagerSetAttitude__init(message_memory); } void GimbalManagerSetAttitude__rosidl_typesupport_introspection_c__GimbalManagerSetAttitude_fini_function(void * message_memory) { px4_msgs__msg__GimbalManagerSetAttitude__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember GimbalManagerSetAttitude__rosidl_typesupport_introspection_c__GimbalManagerSetAttitude_message_member_array[11] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalManagerSetAttitude, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "origin_sysid", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalManagerSetAttitude, origin_sysid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "origin_compid", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalManagerSetAttitude, origin_compid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "target_system", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalManagerSetAttitude, target_system), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "target_component", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalManagerSetAttitude, target_component), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "flags", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalManagerSetAttitude, flags), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gimbal_device_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalManagerSetAttitude, gimbal_device_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "q", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalManagerSetAttitude, q), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "angular_velocity_x", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalManagerSetAttitude, angular_velocity_x), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "angular_velocity_y", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalManagerSetAttitude, angular_velocity_y), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "angular_velocity_z", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalManagerSetAttitude, angular_velocity_z), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers GimbalManagerSetAttitude__rosidl_typesupport_introspection_c__GimbalManagerSetAttitude_message_members = { "px4_msgs__msg", // message namespace "GimbalManagerSetAttitude", // message name 11, // number of fields sizeof(px4_msgs__msg__GimbalManagerSetAttitude), GimbalManagerSetAttitude__rosidl_typesupport_introspection_c__GimbalManagerSetAttitude_message_member_array, // message members GimbalManagerSetAttitude__rosidl_typesupport_introspection_c__GimbalManagerSetAttitude_init_function, // function to initialize message memory (memory has to be allocated) GimbalManagerSetAttitude__rosidl_typesupport_introspection_c__GimbalManagerSetAttitude_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t GimbalManagerSetAttitude__rosidl_typesupport_introspection_c__GimbalManagerSetAttitude_message_type_support_handle = { 0, &GimbalManagerSetAttitude__rosidl_typesupport_introspection_c__GimbalManagerSetAttitude_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, GimbalManagerSetAttitude)() { if (!GimbalManagerSetAttitude__rosidl_typesupport_introspection_c__GimbalManagerSetAttitude_message_type_support_handle.typesupport_identifier) { GimbalManagerSetAttitude__rosidl_typesupport_introspection_c__GimbalManagerSetAttitude_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &GimbalManagerSetAttitude__rosidl_typesupport_introspection_c__GimbalManagerSetAttitude_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_controls2.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/ActuatorControls2.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS2_H_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS2_H_ #include "px4_msgs/msg/actuator_controls2__struct.h" #include "px4_msgs/msg/actuator_controls2__functions.h" #include "px4_msgs/msg/actuator_controls2__type_support.h" #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS2_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/hover_thrust_estimate__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/HoverThrustEstimate.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/hover_thrust_estimate__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__HoverThrustEstimate__init(px4_msgs__msg__HoverThrustEstimate * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // hover_thrust // hover_thrust_var // accel_innov // accel_innov_var // accel_innov_test_ratio // accel_noise_var // valid return true; } void px4_msgs__msg__HoverThrustEstimate__fini(px4_msgs__msg__HoverThrustEstimate * msg) { if (!msg) { return; } // timestamp // timestamp_sample // hover_thrust // hover_thrust_var // accel_innov // accel_innov_var // accel_innov_test_ratio // accel_noise_var // valid } px4_msgs__msg__HoverThrustEstimate * px4_msgs__msg__HoverThrustEstimate__create() { px4_msgs__msg__HoverThrustEstimate * msg = (px4_msgs__msg__HoverThrustEstimate *)malloc(sizeof(px4_msgs__msg__HoverThrustEstimate)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__HoverThrustEstimate)); bool success = px4_msgs__msg__HoverThrustEstimate__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__HoverThrustEstimate__destroy(px4_msgs__msg__HoverThrustEstimate * msg) { if (msg) { px4_msgs__msg__HoverThrustEstimate__fini(msg); } free(msg); } bool px4_msgs__msg__HoverThrustEstimate__Sequence__init(px4_msgs__msg__HoverThrustEstimate__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__HoverThrustEstimate * data = NULL; if (size) { data = (px4_msgs__msg__HoverThrustEstimate *)calloc(size, sizeof(px4_msgs__msg__HoverThrustEstimate)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__HoverThrustEstimate__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__HoverThrustEstimate__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__HoverThrustEstimate__Sequence__fini(px4_msgs__msg__HoverThrustEstimate__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__HoverThrustEstimate__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__HoverThrustEstimate__Sequence * px4_msgs__msg__HoverThrustEstimate__Sequence__create(size_t size) { px4_msgs__msg__HoverThrustEstimate__Sequence * array = (px4_msgs__msg__HoverThrustEstimate__Sequence *)malloc(sizeof(px4_msgs__msg__HoverThrustEstimate__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__HoverThrustEstimate__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__HoverThrustEstimate__Sequence__destroy(px4_msgs__msg__HoverThrustEstimate__Sequence * array) { if (array) { px4_msgs__msg__HoverThrustEstimate__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_imu.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_IMU_HPP_ #define PX4_MSGS__MSG__VEHICLE_IMU_HPP_ #include "px4_msgs/msg/vehicle_imu__struct.hpp" #include "px4_msgs/msg/vehicle_imu__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_IMU_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_command.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_COMMAND_HPP_ #define PX4_MSGS__MSG__VEHICLE_COMMAND_HPP_ #include "px4_msgs/msg/vehicle_command__struct.hpp" #include "px4_msgs/msg/vehicle_command__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_COMMAND_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_torque_setpoint.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleTorqueSetpoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_TORQUE_SETPOINT_H_ #define PX4_MSGS__MSG__VEHICLE_TORQUE_SETPOINT_H_ #include "px4_msgs/msg/vehicle_torque_setpoint__struct.h" #include "px4_msgs/msg/vehicle_torque_setpoint__functions.h" #include "px4_msgs/msg/vehicle_torque_setpoint__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_TORQUE_SETPOINT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/gimbal_device_information__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/GimbalDeviceInformation.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GIMBAL_DEVICE_INFORMATION__STRUCT_H_ #define PX4_MSGS__MSG__GIMBAL_DEVICE_INFORMATION__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'GIMBAL_DEVICE_CAP_FLAGS_HAS_RETRACT'. enum { px4_msgs__msg__GimbalDeviceInformation__GIMBAL_DEVICE_CAP_FLAGS_HAS_RETRACT = 1ul }; /// Constant 'GIMBAL_DEVICE_CAP_FLAGS_HAS_NEUTRAL'. enum { px4_msgs__msg__GimbalDeviceInformation__GIMBAL_DEVICE_CAP_FLAGS_HAS_NEUTRAL = 2ul }; /// Constant 'GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_AXIS'. enum { px4_msgs__msg__GimbalDeviceInformation__GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_AXIS = 4ul }; /// Constant 'GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_FOLLOW'. enum { px4_msgs__msg__GimbalDeviceInformation__GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_FOLLOW = 8ul }; /// Constant 'GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_LOCK'. enum { px4_msgs__msg__GimbalDeviceInformation__GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_LOCK = 16ul }; /// Constant 'GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_AXIS'. enum { px4_msgs__msg__GimbalDeviceInformation__GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_AXIS = 32ul }; /// Constant 'GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_FOLLOW'. enum { px4_msgs__msg__GimbalDeviceInformation__GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_FOLLOW = 64ul }; /// Constant 'GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_LOCK'. enum { px4_msgs__msg__GimbalDeviceInformation__GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_LOCK = 128ul }; /// Constant 'GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_AXIS'. enum { px4_msgs__msg__GimbalDeviceInformation__GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_AXIS = 256ul }; /// Constant 'GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_FOLLOW'. enum { px4_msgs__msg__GimbalDeviceInformation__GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_FOLLOW = 512ul }; /// Constant 'GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_LOCK'. enum { px4_msgs__msg__GimbalDeviceInformation__GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_LOCK = 1024ul }; /// Constant 'GIMBAL_DEVICE_CAP_FLAGS_SUPPORTS_INFINITE_YAW'. enum { px4_msgs__msg__GimbalDeviceInformation__GIMBAL_DEVICE_CAP_FLAGS_SUPPORTS_INFINITE_YAW = 2048ul }; // Struct defined in msg/GimbalDeviceInformation in the package px4_msgs. typedef struct px4_msgs__msg__GimbalDeviceInformation { uint64_t timestamp; uint8_t vendor_name[32]; uint8_t model_name[32]; uint8_t custom_name[32]; uint32_t firmware_version; uint32_t hardware_version; uint64_t uid; uint16_t cap_flags; uint16_t custom_cap_flags; float roll_min; float roll_max; float pitch_min; float pitch_max; float yaw_min; float yaw_max; uint8_t gimbal_device_compid; } px4_msgs__msg__GimbalDeviceInformation; // Struct for a sequence of px4_msgs__msg__GimbalDeviceInformation. typedef struct px4_msgs__msg__GimbalDeviceInformation__Sequence { px4_msgs__msg__GimbalDeviceInformation * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__GimbalDeviceInformation__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__GIMBAL_DEVICE_INFORMATION__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/sensor_preflight_mag.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_PREFLIGHT_MAG_HPP_ #define PX4_MSGS__MSG__SENSOR_PREFLIGHT_MAG_HPP_ #include "px4_msgs/msg/sensor_preflight_mag__struct.hpp" #include "px4_msgs/msg/sensor_preflight_mag__traits.hpp" #endif // PX4_MSGS__MSG__SENSOR_PREFLIGHT_MAG_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_follow_target.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/FollowTarget.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_FollowTarget(type): """Metaclass of message 'FollowTarget'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.FollowTarget') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__follow_target cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__follow_target cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__follow_target cls._TYPE_SUPPORT = module.type_support_msg__msg__follow_target cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__follow_target @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class FollowTarget(metaclass=Metaclass_FollowTarget): """Message class 'FollowTarget'.""" __slots__ = [ '_timestamp', '_lat', '_lon', '_alt', '_vy', '_vx', '_vz', '_est_cap', ] _fields_and_field_types = { 'timestamp': 'uint64', 'lat': 'double', 'lon': 'double', 'alt': 'float', 'vy': 'float', 'vx': 'float', 'vz': 'float', 'est_cap': 'uint8', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('double'), # noqa: E501 rosidl_parser.definition.BasicType('double'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.lat = kwargs.get('lat', float()) self.lon = kwargs.get('lon', float()) self.alt = kwargs.get('alt', float()) self.vy = kwargs.get('vy', float()) self.vx = kwargs.get('vx', float()) self.vz = kwargs.get('vz', float()) self.est_cap = kwargs.get('est_cap', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.lat != other.lat: return False if self.lon != other.lon: return False if self.alt != other.alt: return False if self.vy != other.vy: return False if self.vx != other.vx: return False if self.vz != other.vz: return False if self.est_cap != other.est_cap: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def lat(self): """Message field 'lat'.""" return self._lat @lat.setter def lat(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'lat' field must be of type 'float'" self._lat = value @property def lon(self): """Message field 'lon'.""" return self._lon @lon.setter def lon(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'lon' field must be of type 'float'" self._lon = value @property def alt(self): """Message field 'alt'.""" return self._alt @alt.setter def alt(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'alt' field must be of type 'float'" self._alt = value @property def vy(self): """Message field 'vy'.""" return self._vy @vy.setter def vy(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'vy' field must be of type 'float'" self._vy = value @property def vx(self): """Message field 'vx'.""" return self._vx @vx.setter def vx(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'vx' field must be of type 'float'" self._vx = value @property def vz(self): """Message field 'vz'.""" return self._vz @vz.setter def vz(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'vz' field must be of type 'float'" self._vz = value @property def est_cap(self): """Message field 'est_cap'.""" return self._est_cap @est_cap.setter def est_cap(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'est_cap' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'est_cap' field must be an unsigned integer in [0, 255]" self._est_cap = value <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/differential_pressure__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/DifferentialPressure.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/differential_pressure__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/differential_pressure__struct.h" #include "px4_msgs/msg/differential_pressure__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _DifferentialPressure__ros_msg_type = px4_msgs__msg__DifferentialPressure; static bool _DifferentialPressure__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _DifferentialPressure__ros_msg_type * ros_message = static_cast<const _DifferentialPressure__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: error_count { cdr << ros_message->error_count; } // Field name: differential_pressure_raw_pa { cdr << ros_message->differential_pressure_raw_pa; } // Field name: differential_pressure_filtered_pa { cdr << ros_message->differential_pressure_filtered_pa; } // Field name: temperature { cdr << ros_message->temperature; } // Field name: device_id { cdr << ros_message->device_id; } return true; } static bool _DifferentialPressure__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _DifferentialPressure__ros_msg_type * ros_message = static_cast<_DifferentialPressure__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: error_count { cdr >> ros_message->error_count; } // Field name: differential_pressure_raw_pa { cdr >> ros_message->differential_pressure_raw_pa; } // Field name: differential_pressure_filtered_pa { cdr >> ros_message->differential_pressure_filtered_pa; } // Field name: temperature { cdr >> ros_message->temperature; } // Field name: device_id { cdr >> ros_message->device_id; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__DifferentialPressure( const void * untyped_ros_message, size_t current_alignment) { const _DifferentialPressure__ros_msg_type * ros_message = static_cast<const _DifferentialPressure__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name error_count { size_t item_size = sizeof(ros_message->error_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name differential_pressure_raw_pa { size_t item_size = sizeof(ros_message->differential_pressure_raw_pa); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name differential_pressure_filtered_pa { size_t item_size = sizeof(ros_message->differential_pressure_filtered_pa); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name temperature { size_t item_size = sizeof(ros_message->temperature); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name device_id { size_t item_size = sizeof(ros_message->device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _DifferentialPressure__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__DifferentialPressure( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__DifferentialPressure( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: error_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: differential_pressure_raw_pa { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: differential_pressure_filtered_pa { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: temperature { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _DifferentialPressure__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__DifferentialPressure( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_DifferentialPressure = { "px4_msgs::msg", "DifferentialPressure", _DifferentialPressure__cdr_serialize, _DifferentialPressure__cdr_deserialize, _DifferentialPressure__get_serialized_size, _DifferentialPressure__max_serialized_size }; static rosidl_message_type_support_t _DifferentialPressure__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_DifferentialPressure, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, DifferentialPressure)() { return &_DifferentialPressure__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/manual_control_switches__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/ManualControlSwitches.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__MANUAL_CONTROL_SWITCHES__STRUCT_HPP_ #define PX4_MSGS__MSG__MANUAL_CONTROL_SWITCHES__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__ManualControlSwitches __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__ManualControlSwitches __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct ManualControlSwitches_ { using Type = ManualControlSwitches_<ContainerAllocator>; explicit ManualControlSwitches_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->mode_slot = 0; this->arm_switch = 0; this->return_switch = 0; this->loiter_switch = 0; this->offboard_switch = 0; this->kill_switch = 0; this->gear_switch = 0; this->transition_switch = 0; this->mode_switch = 0; this->man_switch = 0; this->acro_switch = 0; this->stab_switch = 0; this->posctl_switch = 0; this->switch_changes = 0ul; } } explicit ManualControlSwitches_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->mode_slot = 0; this->arm_switch = 0; this->return_switch = 0; this->loiter_switch = 0; this->offboard_switch = 0; this->kill_switch = 0; this->gear_switch = 0; this->transition_switch = 0; this->mode_switch = 0; this->man_switch = 0; this->acro_switch = 0; this->stab_switch = 0; this->posctl_switch = 0; this->switch_changes = 0ul; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _timestamp_sample_type = uint64_t; _timestamp_sample_type timestamp_sample; using _mode_slot_type = uint8_t; _mode_slot_type mode_slot; using _arm_switch_type = uint8_t; _arm_switch_type arm_switch; using _return_switch_type = uint8_t; _return_switch_type return_switch; using _loiter_switch_type = uint8_t; _loiter_switch_type loiter_switch; using _offboard_switch_type = uint8_t; _offboard_switch_type offboard_switch; using _kill_switch_type = uint8_t; _kill_switch_type kill_switch; using _gear_switch_type = uint8_t; _gear_switch_type gear_switch; using _transition_switch_type = uint8_t; _transition_switch_type transition_switch; using _mode_switch_type = uint8_t; _mode_switch_type mode_switch; using _man_switch_type = uint8_t; _man_switch_type man_switch; using _acro_switch_type = uint8_t; _acro_switch_type acro_switch; using _stab_switch_type = uint8_t; _stab_switch_type stab_switch; using _posctl_switch_type = uint8_t; _posctl_switch_type posctl_switch; using _switch_changes_type = uint32_t; _switch_changes_type switch_changes; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__timestamp_sample( const uint64_t & _arg) { this->timestamp_sample = _arg; return *this; } Type & set__mode_slot( const uint8_t & _arg) { this->mode_slot = _arg; return *this; } Type & set__arm_switch( const uint8_t & _arg) { this->arm_switch = _arg; return *this; } Type & set__return_switch( const uint8_t & _arg) { this->return_switch = _arg; return *this; } Type & set__loiter_switch( const uint8_t & _arg) { this->loiter_switch = _arg; return *this; } Type & set__offboard_switch( const uint8_t & _arg) { this->offboard_switch = _arg; return *this; } Type & set__kill_switch( const uint8_t & _arg) { this->kill_switch = _arg; return *this; } Type & set__gear_switch( const uint8_t & _arg) { this->gear_switch = _arg; return *this; } Type & set__transition_switch( const uint8_t & _arg) { this->transition_switch = _arg; return *this; } Type & set__mode_switch( const uint8_t & _arg) { this->mode_switch = _arg; return *this; } Type & set__man_switch( const uint8_t & _arg) { this->man_switch = _arg; return *this; } Type & set__acro_switch( const uint8_t & _arg) { this->acro_switch = _arg; return *this; } Type & set__stab_switch( const uint8_t & _arg) { this->stab_switch = _arg; return *this; } Type & set__posctl_switch( const uint8_t & _arg) { this->posctl_switch = _arg; return *this; } Type & set__switch_changes( const uint32_t & _arg) { this->switch_changes = _arg; return *this; } // constant declarations static constexpr uint8_t SWITCH_POS_NONE = 0u; static constexpr uint8_t SWITCH_POS_ON = 1u; static constexpr uint8_t SWITCH_POS_MIDDLE = 2u; static constexpr uint8_t SWITCH_POS_OFF = 3u; static constexpr uint8_t MODE_SLOT_NONE = 0u; static constexpr uint8_t MODE_SLOT_1 = 1u; static constexpr uint8_t MODE_SLOT_2 = 2u; static constexpr uint8_t MODE_SLOT_3 = 3u; static constexpr uint8_t MODE_SLOT_4 = 4u; static constexpr uint8_t MODE_SLOT_5 = 5u; static constexpr uint8_t MODE_SLOT_6 = 6u; static constexpr uint8_t MODE_SLOT_NUM = 6u; // pointer types using RawPtr = px4_msgs::msg::ManualControlSwitches_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::ManualControlSwitches_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::ManualControlSwitches_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::ManualControlSwitches_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::ManualControlSwitches_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::ManualControlSwitches_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::ManualControlSwitches_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::ManualControlSwitches_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::ManualControlSwitches_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::ManualControlSwitches_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__ManualControlSwitches std::shared_ptr<px4_msgs::msg::ManualControlSwitches_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__ManualControlSwitches std::shared_ptr<px4_msgs::msg::ManualControlSwitches_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const ManualControlSwitches_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->timestamp_sample != other.timestamp_sample) { return false; } if (this->mode_slot != other.mode_slot) { return false; } if (this->arm_switch != other.arm_switch) { return false; } if (this->return_switch != other.return_switch) { return false; } if (this->loiter_switch != other.loiter_switch) { return false; } if (this->offboard_switch != other.offboard_switch) { return false; } if (this->kill_switch != other.kill_switch) { return false; } if (this->gear_switch != other.gear_switch) { return false; } if (this->transition_switch != other.transition_switch) { return false; } if (this->mode_switch != other.mode_switch) { return false; } if (this->man_switch != other.man_switch) { return false; } if (this->acro_switch != other.acro_switch) { return false; } if (this->stab_switch != other.stab_switch) { return false; } if (this->posctl_switch != other.posctl_switch) { return false; } if (this->switch_changes != other.switch_changes) { return false; } return true; } bool operator!=(const ManualControlSwitches_ & other) const { return !this->operator==(other); } }; // struct ManualControlSwitches_ // alias to use template instance with default allocator using ManualControlSwitches = px4_msgs::msg::ManualControlSwitches_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t ManualControlSwitches_<ContainerAllocator>::SWITCH_POS_NONE; template<typename ContainerAllocator> constexpr uint8_t ManualControlSwitches_<ContainerAllocator>::SWITCH_POS_ON; template<typename ContainerAllocator> constexpr uint8_t ManualControlSwitches_<ContainerAllocator>::SWITCH_POS_MIDDLE; template<typename ContainerAllocator> constexpr uint8_t ManualControlSwitches_<ContainerAllocator>::SWITCH_POS_OFF; template<typename ContainerAllocator> constexpr uint8_t ManualControlSwitches_<ContainerAllocator>::MODE_SLOT_NONE; template<typename ContainerAllocator> constexpr uint8_t ManualControlSwitches_<ContainerAllocator>::MODE_SLOT_1; template<typename ContainerAllocator> constexpr uint8_t ManualControlSwitches_<ContainerAllocator>::MODE_SLOT_2; template<typename ContainerAllocator> constexpr uint8_t ManualControlSwitches_<ContainerAllocator>::MODE_SLOT_3; template<typename ContainerAllocator> constexpr uint8_t ManualControlSwitches_<ContainerAllocator>::MODE_SLOT_4; template<typename ContainerAllocator> constexpr uint8_t ManualControlSwitches_<ContainerAllocator>::MODE_SLOT_5; template<typename ContainerAllocator> constexpr uint8_t ManualControlSwitches_<ContainerAllocator>::MODE_SLOT_6; template<typename ContainerAllocator> constexpr uint8_t ManualControlSwitches_<ContainerAllocator>::MODE_SLOT_NUM; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__MANUAL_CONTROL_SWITCHES__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/cellular_status__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/CellularStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/cellular_status__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__CellularStatus__init(px4_msgs__msg__CellularStatus * msg) { if (!msg) { return false; } // timestamp // status // failure_reason // type // quality // mcc // mnc // lac return true; } void px4_msgs__msg__CellularStatus__fini(px4_msgs__msg__CellularStatus * msg) { if (!msg) { return; } // timestamp // status // failure_reason // type // quality // mcc // mnc // lac } px4_msgs__msg__CellularStatus * px4_msgs__msg__CellularStatus__create() { px4_msgs__msg__CellularStatus * msg = (px4_msgs__msg__CellularStatus *)malloc(sizeof(px4_msgs__msg__CellularStatus)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__CellularStatus)); bool success = px4_msgs__msg__CellularStatus__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__CellularStatus__destroy(px4_msgs__msg__CellularStatus * msg) { if (msg) { px4_msgs__msg__CellularStatus__fini(msg); } free(msg); } bool px4_msgs__msg__CellularStatus__Sequence__init(px4_msgs__msg__CellularStatus__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__CellularStatus * data = NULL; if (size) { data = (px4_msgs__msg__CellularStatus *)calloc(size, sizeof(px4_msgs__msg__CellularStatus)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__CellularStatus__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__CellularStatus__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__CellularStatus__Sequence__fini(px4_msgs__msg__CellularStatus__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__CellularStatus__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__CellularStatus__Sequence * px4_msgs__msg__CellularStatus__Sequence__create(size_t size) { px4_msgs__msg__CellularStatus__Sequence * array = (px4_msgs__msg__CellularStatus__Sequence *)malloc(sizeof(px4_msgs__msg__CellularStatus__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__CellularStatus__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__CellularStatus__Sequence__destroy(px4_msgs__msg__CellularStatus__Sequence * array) { if (array) { px4_msgs__msg__CellularStatus__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status_flags__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/VehicleStatusFlags.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_status_flags__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/vehicle_status_flags__struct.h" #include "px4_msgs/msg/vehicle_status_flags__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _VehicleStatusFlags__ros_msg_type = px4_msgs__msg__VehicleStatusFlags; static bool _VehicleStatusFlags__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _VehicleStatusFlags__ros_msg_type * ros_message = static_cast<const _VehicleStatusFlags__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: condition_calibration_enabled { cdr << (ros_message->condition_calibration_enabled ? true : false); } // Field name: condition_system_sensors_initialized { cdr << (ros_message->condition_system_sensors_initialized ? true : false); } // Field name: condition_system_hotplug_timeout { cdr << (ros_message->condition_system_hotplug_timeout ? true : false); } // Field name: condition_system_returned_to_home { cdr << (ros_message->condition_system_returned_to_home ? true : false); } // Field name: condition_auto_mission_available { cdr << (ros_message->condition_auto_mission_available ? true : false); } // Field name: condition_angular_velocity_valid { cdr << (ros_message->condition_angular_velocity_valid ? true : false); } // Field name: condition_attitude_valid { cdr << (ros_message->condition_attitude_valid ? true : false); } // Field name: condition_local_altitude_valid { cdr << (ros_message->condition_local_altitude_valid ? true : false); } // Field name: condition_local_position_valid { cdr << (ros_message->condition_local_position_valid ? true : false); } // Field name: condition_local_velocity_valid { cdr << (ros_message->condition_local_velocity_valid ? true : false); } // Field name: condition_global_position_valid { cdr << (ros_message->condition_global_position_valid ? true : false); } // Field name: condition_home_position_valid { cdr << (ros_message->condition_home_position_valid ? true : false); } // Field name: condition_power_input_valid { cdr << (ros_message->condition_power_input_valid ? true : false); } // Field name: condition_battery_healthy { cdr << (ros_message->condition_battery_healthy ? true : false); } // Field name: condition_escs_error { cdr << (ros_message->condition_escs_error ? true : false); } // Field name: condition_escs_failure { cdr << (ros_message->condition_escs_failure ? true : false); } // Field name: circuit_breaker_engaged_power_check { cdr << (ros_message->circuit_breaker_engaged_power_check ? true : false); } // Field name: circuit_breaker_engaged_airspd_check { cdr << (ros_message->circuit_breaker_engaged_airspd_check ? true : false); } // Field name: circuit_breaker_engaged_enginefailure_check { cdr << (ros_message->circuit_breaker_engaged_enginefailure_check ? true : false); } // Field name: circuit_breaker_flight_termination_disabled { cdr << (ros_message->circuit_breaker_flight_termination_disabled ? true : false); } // Field name: circuit_breaker_engaged_usb_check { cdr << (ros_message->circuit_breaker_engaged_usb_check ? true : false); } // Field name: circuit_breaker_engaged_posfailure_check { cdr << (ros_message->circuit_breaker_engaged_posfailure_check ? true : false); } // Field name: circuit_breaker_vtol_fw_arming_check { cdr << (ros_message->circuit_breaker_vtol_fw_arming_check ? true : false); } // Field name: offboard_control_signal_found_once { cdr << (ros_message->offboard_control_signal_found_once ? true : false); } // Field name: offboard_control_signal_lost { cdr << (ros_message->offboard_control_signal_lost ? true : false); } // Field name: rc_signal_found_once { cdr << (ros_message->rc_signal_found_once ? true : false); } // Field name: rc_input_blocked { cdr << (ros_message->rc_input_blocked ? true : false); } // Field name: rc_calibration_valid { cdr << (ros_message->rc_calibration_valid ? true : false); } // Field name: vtol_transition_failure { cdr << (ros_message->vtol_transition_failure ? true : false); } // Field name: usb_connected { cdr << (ros_message->usb_connected ? true : false); } // Field name: sd_card_detected_once { cdr << (ros_message->sd_card_detected_once ? true : false); } // Field name: avoidance_system_required { cdr << (ros_message->avoidance_system_required ? true : false); } // Field name: avoidance_system_valid { cdr << (ros_message->avoidance_system_valid ? true : false); } return true; } static bool _VehicleStatusFlags__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _VehicleStatusFlags__ros_msg_type * ros_message = static_cast<_VehicleStatusFlags__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: condition_calibration_enabled { uint8_t tmp; cdr >> tmp; ros_message->condition_calibration_enabled = tmp ? true : false; } // Field name: condition_system_sensors_initialized { uint8_t tmp; cdr >> tmp; ros_message->condition_system_sensors_initialized = tmp ? true : false; } // Field name: condition_system_hotplug_timeout { uint8_t tmp; cdr >> tmp; ros_message->condition_system_hotplug_timeout = tmp ? true : false; } // Field name: condition_system_returned_to_home { uint8_t tmp; cdr >> tmp; ros_message->condition_system_returned_to_home = tmp ? true : false; } // Field name: condition_auto_mission_available { uint8_t tmp; cdr >> tmp; ros_message->condition_auto_mission_available = tmp ? true : false; } // Field name: condition_angular_velocity_valid { uint8_t tmp; cdr >> tmp; ros_message->condition_angular_velocity_valid = tmp ? true : false; } // Field name: condition_attitude_valid { uint8_t tmp; cdr >> tmp; ros_message->condition_attitude_valid = tmp ? true : false; } // Field name: condition_local_altitude_valid { uint8_t tmp; cdr >> tmp; ros_message->condition_local_altitude_valid = tmp ? true : false; } // Field name: condition_local_position_valid { uint8_t tmp; cdr >> tmp; ros_message->condition_local_position_valid = tmp ? true : false; } // Field name: condition_local_velocity_valid { uint8_t tmp; cdr >> tmp; ros_message->condition_local_velocity_valid = tmp ? true : false; } // Field name: condition_global_position_valid { uint8_t tmp; cdr >> tmp; ros_message->condition_global_position_valid = tmp ? true : false; } // Field name: condition_home_position_valid { uint8_t tmp; cdr >> tmp; ros_message->condition_home_position_valid = tmp ? true : false; } // Field name: condition_power_input_valid { uint8_t tmp; cdr >> tmp; ros_message->condition_power_input_valid = tmp ? true : false; } // Field name: condition_battery_healthy { uint8_t tmp; cdr >> tmp; ros_message->condition_battery_healthy = tmp ? true : false; } // Field name: condition_escs_error { uint8_t tmp; cdr >> tmp; ros_message->condition_escs_error = tmp ? true : false; } // Field name: condition_escs_failure { uint8_t tmp; cdr >> tmp; ros_message->condition_escs_failure = tmp ? true : false; } // Field name: circuit_breaker_engaged_power_check { uint8_t tmp; cdr >> tmp; ros_message->circuit_breaker_engaged_power_check = tmp ? true : false; } // Field name: circuit_breaker_engaged_airspd_check { uint8_t tmp; cdr >> tmp; ros_message->circuit_breaker_engaged_airspd_check = tmp ? true : false; } // Field name: circuit_breaker_engaged_enginefailure_check { uint8_t tmp; cdr >> tmp; ros_message->circuit_breaker_engaged_enginefailure_check = tmp ? true : false; } // Field name: circuit_breaker_flight_termination_disabled { uint8_t tmp; cdr >> tmp; ros_message->circuit_breaker_flight_termination_disabled = tmp ? true : false; } // Field name: circuit_breaker_engaged_usb_check { uint8_t tmp; cdr >> tmp; ros_message->circuit_breaker_engaged_usb_check = tmp ? true : false; } // Field name: circuit_breaker_engaged_posfailure_check { uint8_t tmp; cdr >> tmp; ros_message->circuit_breaker_engaged_posfailure_check = tmp ? true : false; } // Field name: circuit_breaker_vtol_fw_arming_check { uint8_t tmp; cdr >> tmp; ros_message->circuit_breaker_vtol_fw_arming_check = tmp ? true : false; } // Field name: offboard_control_signal_found_once { uint8_t tmp; cdr >> tmp; ros_message->offboard_control_signal_found_once = tmp ? true : false; } // Field name: offboard_control_signal_lost { uint8_t tmp; cdr >> tmp; ros_message->offboard_control_signal_lost = tmp ? true : false; } // Field name: rc_signal_found_once { uint8_t tmp; cdr >> tmp; ros_message->rc_signal_found_once = tmp ? true : false; } // Field name: rc_input_blocked { uint8_t tmp; cdr >> tmp; ros_message->rc_input_blocked = tmp ? true : false; } // Field name: rc_calibration_valid { uint8_t tmp; cdr >> tmp; ros_message->rc_calibration_valid = tmp ? true : false; } // Field name: vtol_transition_failure { uint8_t tmp; cdr >> tmp; ros_message->vtol_transition_failure = tmp ? true : false; } // Field name: usb_connected { uint8_t tmp; cdr >> tmp; ros_message->usb_connected = tmp ? true : false; } // Field name: sd_card_detected_once { uint8_t tmp; cdr >> tmp; ros_message->sd_card_detected_once = tmp ? true : false; } // Field name: avoidance_system_required { uint8_t tmp; cdr >> tmp; ros_message->avoidance_system_required = tmp ? true : false; } // Field name: avoidance_system_valid { uint8_t tmp; cdr >> tmp; ros_message->avoidance_system_valid = tmp ? true : false; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__VehicleStatusFlags( const void * untyped_ros_message, size_t current_alignment) { const _VehicleStatusFlags__ros_msg_type * ros_message = static_cast<const _VehicleStatusFlags__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name condition_calibration_enabled { size_t item_size = sizeof(ros_message->condition_calibration_enabled); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name condition_system_sensors_initialized { size_t item_size = sizeof(ros_message->condition_system_sensors_initialized); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name condition_system_hotplug_timeout { size_t item_size = sizeof(ros_message->condition_system_hotplug_timeout); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name condition_system_returned_to_home { size_t item_size = sizeof(ros_message->condition_system_returned_to_home); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name condition_auto_mission_available { size_t item_size = sizeof(ros_message->condition_auto_mission_available); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name condition_angular_velocity_valid { size_t item_size = sizeof(ros_message->condition_angular_velocity_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name condition_attitude_valid { size_t item_size = sizeof(ros_message->condition_attitude_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name condition_local_altitude_valid { size_t item_size = sizeof(ros_message->condition_local_altitude_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name condition_local_position_valid { size_t item_size = sizeof(ros_message->condition_local_position_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name condition_local_velocity_valid { size_t item_size = sizeof(ros_message->condition_local_velocity_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name condition_global_position_valid { size_t item_size = sizeof(ros_message->condition_global_position_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name condition_home_position_valid { size_t item_size = sizeof(ros_message->condition_home_position_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name condition_power_input_valid { size_t item_size = sizeof(ros_message->condition_power_input_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name condition_battery_healthy { size_t item_size = sizeof(ros_message->condition_battery_healthy); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name condition_escs_error { size_t item_size = sizeof(ros_message->condition_escs_error); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name condition_escs_failure { size_t item_size = sizeof(ros_message->condition_escs_failure); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name circuit_breaker_engaged_power_check { size_t item_size = sizeof(ros_message->circuit_breaker_engaged_power_check); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name circuit_breaker_engaged_airspd_check { size_t item_size = sizeof(ros_message->circuit_breaker_engaged_airspd_check); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name circuit_breaker_engaged_enginefailure_check { size_t item_size = sizeof(ros_message->circuit_breaker_engaged_enginefailure_check); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name circuit_breaker_flight_termination_disabled { size_t item_size = sizeof(ros_message->circuit_breaker_flight_termination_disabled); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name circuit_breaker_engaged_usb_check { size_t item_size = sizeof(ros_message->circuit_breaker_engaged_usb_check); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name circuit_breaker_engaged_posfailure_check { size_t item_size = sizeof(ros_message->circuit_breaker_engaged_posfailure_check); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name circuit_breaker_vtol_fw_arming_check { size_t item_size = sizeof(ros_message->circuit_breaker_vtol_fw_arming_check); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name offboard_control_signal_found_once { size_t item_size = sizeof(ros_message->offboard_control_signal_found_once); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name offboard_control_signal_lost { size_t item_size = sizeof(ros_message->offboard_control_signal_lost); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rc_signal_found_once { size_t item_size = sizeof(ros_message->rc_signal_found_once); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rc_input_blocked { size_t item_size = sizeof(ros_message->rc_input_blocked); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rc_calibration_valid { size_t item_size = sizeof(ros_message->rc_calibration_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vtol_transition_failure { size_t item_size = sizeof(ros_message->vtol_transition_failure); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name usb_connected { size_t item_size = sizeof(ros_message->usb_connected); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name sd_card_detected_once { size_t item_size = sizeof(ros_message->sd_card_detected_once); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name avoidance_system_required { size_t item_size = sizeof(ros_message->avoidance_system_required); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name avoidance_system_valid { size_t item_size = sizeof(ros_message->avoidance_system_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _VehicleStatusFlags__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__VehicleStatusFlags( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__VehicleStatusFlags( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: condition_calibration_enabled { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: condition_system_sensors_initialized { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: condition_system_hotplug_timeout { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: condition_system_returned_to_home { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: condition_auto_mission_available { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: condition_angular_velocity_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: condition_attitude_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: condition_local_altitude_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: condition_local_position_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: condition_local_velocity_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: condition_global_position_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: condition_home_position_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: condition_power_input_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: condition_battery_healthy { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: condition_escs_error { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: condition_escs_failure { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: circuit_breaker_engaged_power_check { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: circuit_breaker_engaged_airspd_check { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: circuit_breaker_engaged_enginefailure_check { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: circuit_breaker_flight_termination_disabled { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: circuit_breaker_engaged_usb_check { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: circuit_breaker_engaged_posfailure_check { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: circuit_breaker_vtol_fw_arming_check { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: offboard_control_signal_found_once { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: offboard_control_signal_lost { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: rc_signal_found_once { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: rc_input_blocked { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: rc_calibration_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: vtol_transition_failure { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: usb_connected { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: sd_card_detected_once { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: avoidance_system_required { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: avoidance_system_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _VehicleStatusFlags__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__VehicleStatusFlags( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_VehicleStatusFlags = { "px4_msgs::msg", "VehicleStatusFlags", _VehicleStatusFlags__cdr_serialize, _VehicleStatusFlags__cdr_deserialize, _VehicleStatusFlags__get_serialized_size, _VehicleStatusFlags__max_serialized_size }; static rosidl_message_type_support_t _VehicleStatusFlags__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_VehicleStatusFlags, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, VehicleStatusFlags)() { return &_VehicleStatusFlags__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/multi_rtd_interfaces/CMakeFiles/multi_rtd_interfaces__rosidl_typesupport_fastrtps_c.dir/DependInfo.cmake # The set of languages for which implicit dependencies are needed: set(CMAKE_DEPENDS_LANGUAGES "CXX" ) # The set of files for implicit dependencies of each language: set(CMAKE_DEPENDS_CHECK_CXX "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/rosidl_typesupport_fastrtps_c/multi_rtd_interfaces/msg/robot_trajectory__type_support_c.cpp" "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/CMakeFiles/multi_rtd_interfaces__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/multi_rtd_interfaces/msg/robot_trajectory__type_support_c.cpp.o" ) set(CMAKE_CXX_COMPILER_ID "GNU") # Preprocessor definitions for this target. set(CMAKE_TARGET_DEFINITIONS_CXX "FOONATHAN_MEMORY=1" "FOONATHAN_MEMORY_VERSION_MAJOR=0" "FOONATHAN_MEMORY_VERSION_MINOR=6" "FOONATHAN_MEMORY_VERSION_PATCH=2" ) # The include file search paths: set(CMAKE_CXX_TARGET_INCLUDE_PATH "/opt/ros/eloquent/include" "rosidl_generator_c" "rosidl_generator_cpp" "rosidl_typesupport_fastrtps_c" "rosidl_typesupport_fastrtps_cpp" "/opt/ros/eloquent/include/std_msgs/msg/dds_fastrtps_c" "/opt/ros/eloquent/include/std_msgs/srv/dds_fastrtps_c" "/opt/ros/eloquent/include/std_msgs/action/dds_fastrtps_c" "/opt/ros/eloquent/include/builtin_interfaces/msg/dds_fastrtps_c" "/opt/ros/eloquent/include/builtin_interfaces/srv/dds_fastrtps_c" "/opt/ros/eloquent/include/builtin_interfaces/action/dds_fastrtps_c" "/opt/ros/eloquent/include/trajectory_msgs/msg/dds_fastrtps_c" "/opt/ros/eloquent/include/trajectory_msgs/srv/dds_fastrtps_c" "/opt/ros/eloquent/include/trajectory_msgs/action/dds_fastrtps_c" "/opt/ros/eloquent/include/geometry_msgs/msg/dds_fastrtps_c" "/opt/ros/eloquent/include/geometry_msgs/srv/dds_fastrtps_c" "/opt/ros/eloquent/include/geometry_msgs/action/dds_fastrtps_c" "/opt/ros/eloquent/include/foonathan_memory" ) # Pairs of files generated by the same build rule. set(CMAKE_MULTIPLE_OUTPUT_PAIRS "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/rosidl_typesupport_fastrtps_c/multi_rtd_interfaces/msg/robot_trajectory__type_support_c.cpp" "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/rosidl_typesupport_fastrtps_c/multi_rtd_interfaces/msg/robot_trajectory__rosidl_typesupport_fastrtps_c.h" ) # Targets to which this target links. set(CMAKE_TARGET_LINKED_INFO_FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/CMakeFiles/multi_rtd_interfaces__rosidl_generator_c.dir/DependInfo.cmake" "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/CMakeFiles/multi_rtd_interfaces__rosidl_typesupport_fastrtps_cpp.dir/DependInfo.cmake" ) # Fortran module output directory. set(CMAKE_Fortran_TARGET_MODULE_DIR "") <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/gimbal_manager_status.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/GimbalManagerStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GIMBAL_MANAGER_STATUS_H_ #define PX4_MSGS__MSG__GIMBAL_MANAGER_STATUS_H_ #include "px4_msgs/msg/gimbal_manager_status__struct.h" #include "px4_msgs/msg/gimbal_manager_status__functions.h" #include "px4_msgs/msg/gimbal_manager_status__type_support.h" #endif // PX4_MSGS__MSG__GIMBAL_MANAGER_STATUS_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/onboard_computer_status__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/OnboardComputerStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ONBOARD_COMPUTER_STATUS__STRUCT_HPP_ #define PX4_MSGS__MSG__ONBOARD_COMPUTER_STATUS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__OnboardComputerStatus __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__OnboardComputerStatus __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct OnboardComputerStatus_ { using Type = OnboardComputerStatus_<ContainerAllocator>; explicit OnboardComputerStatus_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->uptime = 0ul; this->type = 0; std::fill<typename std::array<uint8_t, 8>::iterator, uint8_t>(this->cpu_cores.begin(), this->cpu_cores.end(), 0); std::fill<typename std::array<uint8_t, 10>::iterator, uint8_t>(this->cpu_combined.begin(), this->cpu_combined.end(), 0); std::fill<typename std::array<uint8_t, 4>::iterator, uint8_t>(this->gpu_cores.begin(), this->gpu_cores.end(), 0); std::fill<typename std::array<uint8_t, 10>::iterator, uint8_t>(this->gpu_combined.begin(), this->gpu_combined.end(), 0); this->temperature_board = 0; std::fill<typename std::array<int8_t, 8>::iterator, int8_t>(this->temperature_core.begin(), this->temperature_core.end(), 0); std::fill<typename std::array<int16_t, 4>::iterator, int16_t>(this->fan_speed.begin(), this->fan_speed.end(), 0); this->ram_usage = 0ul; this->ram_total = 0ul; std::fill<typename std::array<uint32_t, 4>::iterator, uint32_t>(this->storage_type.begin(), this->storage_type.end(), 0ul); std::fill<typename std::array<uint32_t, 4>::iterator, uint32_t>(this->storage_usage.begin(), this->storage_usage.end(), 0ul); std::fill<typename std::array<uint32_t, 4>::iterator, uint32_t>(this->storage_total.begin(), this->storage_total.end(), 0ul); std::fill<typename std::array<uint32_t, 6>::iterator, uint32_t>(this->link_type.begin(), this->link_type.end(), 0ul); std::fill<typename std::array<uint32_t, 6>::iterator, uint32_t>(this->link_tx_rate.begin(), this->link_tx_rate.end(), 0ul); std::fill<typename std::array<uint32_t, 6>::iterator, uint32_t>(this->link_rx_rate.begin(), this->link_rx_rate.end(), 0ul); std::fill<typename std::array<uint32_t, 6>::iterator, uint32_t>(this->link_tx_max.begin(), this->link_tx_max.end(), 0ul); std::fill<typename std::array<uint32_t, 6>::iterator, uint32_t>(this->link_rx_max.begin(), this->link_rx_max.end(), 0ul); } } explicit OnboardComputerStatus_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : cpu_cores(_alloc), cpu_combined(_alloc), gpu_cores(_alloc), gpu_combined(_alloc), temperature_core(_alloc), fan_speed(_alloc), storage_type(_alloc), storage_usage(_alloc), storage_total(_alloc), link_type(_alloc), link_tx_rate(_alloc), link_rx_rate(_alloc), link_tx_max(_alloc), link_rx_max(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->uptime = 0ul; this->type = 0; std::fill<typename std::array<uint8_t, 8>::iterator, uint8_t>(this->cpu_cores.begin(), this->cpu_cores.end(), 0); std::fill<typename std::array<uint8_t, 10>::iterator, uint8_t>(this->cpu_combined.begin(), this->cpu_combined.end(), 0); std::fill<typename std::array<uint8_t, 4>::iterator, uint8_t>(this->gpu_cores.begin(), this->gpu_cores.end(), 0); std::fill<typename std::array<uint8_t, 10>::iterator, uint8_t>(this->gpu_combined.begin(), this->gpu_combined.end(), 0); this->temperature_board = 0; std::fill<typename std::array<int8_t, 8>::iterator, int8_t>(this->temperature_core.begin(), this->temperature_core.end(), 0); std::fill<typename std::array<int16_t, 4>::iterator, int16_t>(this->fan_speed.begin(), this->fan_speed.end(), 0); this->ram_usage = 0ul; this->ram_total = 0ul; std::fill<typename std::array<uint32_t, 4>::iterator, uint32_t>(this->storage_type.begin(), this->storage_type.end(), 0ul); std::fill<typename std::array<uint32_t, 4>::iterator, uint32_t>(this->storage_usage.begin(), this->storage_usage.end(), 0ul); std::fill<typename std::array<uint32_t, 4>::iterator, uint32_t>(this->storage_total.begin(), this->storage_total.end(), 0ul); std::fill<typename std::array<uint32_t, 6>::iterator, uint32_t>(this->link_type.begin(), this->link_type.end(), 0ul); std::fill<typename std::array<uint32_t, 6>::iterator, uint32_t>(this->link_tx_rate.begin(), this->link_tx_rate.end(), 0ul); std::fill<typename std::array<uint32_t, 6>::iterator, uint32_t>(this->link_rx_rate.begin(), this->link_rx_rate.end(), 0ul); std::fill<typename std::array<uint32_t, 6>::iterator, uint32_t>(this->link_tx_max.begin(), this->link_tx_max.end(), 0ul); std::fill<typename std::array<uint32_t, 6>::iterator, uint32_t>(this->link_rx_max.begin(), this->link_rx_max.end(), 0ul); } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _uptime_type = uint32_t; _uptime_type uptime; using _type_type = uint8_t; _type_type type; using _cpu_cores_type = std::array<uint8_t, 8>; _cpu_cores_type cpu_cores; using _cpu_combined_type = std::array<uint8_t, 10>; _cpu_combined_type cpu_combined; using _gpu_cores_type = std::array<uint8_t, 4>; _gpu_cores_type gpu_cores; using _gpu_combined_type = std::array<uint8_t, 10>; _gpu_combined_type gpu_combined; using _temperature_board_type = int8_t; _temperature_board_type temperature_board; using _temperature_core_type = std::array<int8_t, 8>; _temperature_core_type temperature_core; using _fan_speed_type = std::array<int16_t, 4>; _fan_speed_type fan_speed; using _ram_usage_type = uint32_t; _ram_usage_type ram_usage; using _ram_total_type = uint32_t; _ram_total_type ram_total; using _storage_type_type = std::array<uint32_t, 4>; _storage_type_type storage_type; using _storage_usage_type = std::array<uint32_t, 4>; _storage_usage_type storage_usage; using _storage_total_type = std::array<uint32_t, 4>; _storage_total_type storage_total; using _link_type_type = std::array<uint32_t, 6>; _link_type_type link_type; using _link_tx_rate_type = std::array<uint32_t, 6>; _link_tx_rate_type link_tx_rate; using _link_rx_rate_type = std::array<uint32_t, 6>; _link_rx_rate_type link_rx_rate; using _link_tx_max_type = std::array<uint32_t, 6>; _link_tx_max_type link_tx_max; using _link_rx_max_type = std::array<uint32_t, 6>; _link_rx_max_type link_rx_max; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__uptime( const uint32_t & _arg) { this->uptime = _arg; return *this; } Type & set__type( const uint8_t & _arg) { this->type = _arg; return *this; } Type & set__cpu_cores( const std::array<uint8_t, 8> & _arg) { this->cpu_cores = _arg; return *this; } Type & set__cpu_combined( const std::array<uint8_t, 10> & _arg) { this->cpu_combined = _arg; return *this; } Type & set__gpu_cores( const std::array<uint8_t, 4> & _arg) { this->gpu_cores = _arg; return *this; } Type & set__gpu_combined( const std::array<uint8_t, 10> & _arg) { this->gpu_combined = _arg; return *this; } Type & set__temperature_board( const int8_t & _arg) { this->temperature_board = _arg; return *this; } Type & set__temperature_core( const std::array<int8_t, 8> & _arg) { this->temperature_core = _arg; return *this; } Type & set__fan_speed( const std::array<int16_t, 4> & _arg) { this->fan_speed = _arg; return *this; } Type & set__ram_usage( const uint32_t & _arg) { this->ram_usage = _arg; return *this; } Type & set__ram_total( const uint32_t & _arg) { this->ram_total = _arg; return *this; } Type & set__storage_type( const std::array<uint32_t, 4> & _arg) { this->storage_type = _arg; return *this; } Type & set__storage_usage( const std::array<uint32_t, 4> & _arg) { this->storage_usage = _arg; return *this; } Type & set__storage_total( const std::array<uint32_t, 4> & _arg) { this->storage_total = _arg; return *this; } Type & set__link_type( const std::array<uint32_t, 6> & _arg) { this->link_type = _arg; return *this; } Type & set__link_tx_rate( const std::array<uint32_t, 6> & _arg) { this->link_tx_rate = _arg; return *this; } Type & set__link_rx_rate( const std::array<uint32_t, 6> & _arg) { this->link_rx_rate = _arg; return *this; } Type & set__link_tx_max( const std::array<uint32_t, 6> & _arg) { this->link_tx_max = _arg; return *this; } Type & set__link_rx_max( const std::array<uint32_t, 6> & _arg) { this->link_rx_max = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::OnboardComputerStatus_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::OnboardComputerStatus_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::OnboardComputerStatus_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::OnboardComputerStatus_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::OnboardComputerStatus_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::OnboardComputerStatus_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::OnboardComputerStatus_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::OnboardComputerStatus_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::OnboardComputerStatus_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::OnboardComputerStatus_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__OnboardComputerStatus std::shared_ptr<px4_msgs::msg::OnboardComputerStatus_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__OnboardComputerStatus std::shared_ptr<px4_msgs::msg::OnboardComputerStatus_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const OnboardComputerStatus_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->uptime != other.uptime) { return false; } if (this->type != other.type) { return false; } if (this->cpu_cores != other.cpu_cores) { return false; } if (this->cpu_combined != other.cpu_combined) { return false; } if (this->gpu_cores != other.gpu_cores) { return false; } if (this->gpu_combined != other.gpu_combined) { return false; } if (this->temperature_board != other.temperature_board) { return false; } if (this->temperature_core != other.temperature_core) { return false; } if (this->fan_speed != other.fan_speed) { return false; } if (this->ram_usage != other.ram_usage) { return false; } if (this->ram_total != other.ram_total) { return false; } if (this->storage_type != other.storage_type) { return false; } if (this->storage_usage != other.storage_usage) { return false; } if (this->storage_total != other.storage_total) { return false; } if (this->link_type != other.link_type) { return false; } if (this->link_tx_rate != other.link_tx_rate) { return false; } if (this->link_rx_rate != other.link_rx_rate) { return false; } if (this->link_tx_max != other.link_tx_max) { return false; } if (this->link_rx_max != other.link_rx_max) { return false; } return true; } bool operator!=(const OnboardComputerStatus_ & other) const { return !this->operator==(other); } }; // struct OnboardComputerStatus_ // alias to use template instance with default allocator using OnboardComputerStatus = px4_msgs::msg::OnboardComputerStatus_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__ONBOARD_COMPUTER_STATUS__STRUCT_HPP_ <file_sep>/build/px4_msgs/CMakeFiles/px4_msgs__python.dir/cmake_clean.cmake file(REMOVE_RECURSE "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_armed_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls0_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls1_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls2_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls3_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls4_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls5_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_fw_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_mc_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_outputs_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_adc_report_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_airspeed_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_airspeed_validated_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_airspeed_wind_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_battery_status_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_camera_capture_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_camera_trigger_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_camera_trigger_secondary_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_cellular_status_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_collision_constraints_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_collision_report_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_commander_state_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_control_allocator_status_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_cpuload_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_debug_array_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_debug_key_value_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_debug_value_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_debug_vect_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_differential_pressure_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_distance_sensor_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_ekf2_timestamps_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_ekf_gps_drift_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_esc_report_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_esc_status_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_attitude_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_event_flags_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_global_position_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_innovation_test_ratios_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_innovation_variances_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_innovations_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_local_position_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_odometry_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_optical_flow_vel_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_selector_status_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_sensor_bias_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_states_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_status_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_status_flags_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_visual_odometry_aligned_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_wind_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_follow_target_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_fw_virtual_attitude_setpoint_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_generator_status_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_geofence_result_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gimbal_device_attitude_status_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gimbal_device_information_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gimbal_device_set_attitude_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gimbal_manager_information_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_attitude_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_manual_control_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gimbal_manager_status_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gps_dump_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gps_inject_data_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_heater_status_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_home_position_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_hover_thrust_estimate_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_input_rc_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_iridiumsbd_status_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_irlock_report_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_landing_gear_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_landing_target_innovations_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_landing_target_pose_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_led_control_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_log_message_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_logger_status_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_mag_worker_data_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_manual_control_setpoint_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_manual_control_switches_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_mavlink_log_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_mc_virtual_attitude_setpoint_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_mission_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_mission_result_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_mount_orientation_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_multirotor_motor_limits_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_navigator_mission_item_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_obstacle_distance_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_obstacle_distance_fused_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_offboard_control_mode_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_onboard_computer_status_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_optical_flow_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_multitest_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_test_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_test_large_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_test_medium_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_test_medium_multi_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_poll_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_test_medium_wrap_around_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orbit_status_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_parameter_update_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_ping_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_position_controller_landing_status_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_position_controller_status_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_position_setpoint_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_position_setpoint_triplet_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_power_button_state_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_power_monitor_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_pwm_input_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_px4_io_status_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_qshell_req_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_qshell_retval_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_radio_status_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_rate_ctrl_status_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_rc_channels_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_rc_parameter_map_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_rpm_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_rtl_flight_time_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_safety_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_satellite_info_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_accel_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_accel_fifo_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_baro_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_combined_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_correction_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_gps_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_gyro_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fft_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fifo_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_mag_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_preflight_mag_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_selection_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensors_status_imu_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_system_power_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_takeoff_status_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_task_stack_info_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_tecs_status_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_telemetry_status_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_test_motor_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_timesync_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_timesync_status_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_trajectory_bezier_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_trajectory_setpoint_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_trajectory_waypoint_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_transponder_report_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_tune_control_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_request_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_value_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_ulog_stream_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_ulog_stream_ack_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_acceleration_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_actuator_setpoint_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_air_data_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_setpoint_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_groundtruth_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_groundtruth_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_setpoint_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_command_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_command_ack_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_constraints_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_control_mode_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_groundtruth_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_gps_position_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_imu_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_imu_status_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_land_detected_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_groundtruth_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_setpoint_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_magnetometer_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_mocap_odometry_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_odometry_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_rates_setpoint_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_roi_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_status_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_status_flags_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_thrust_setpoint_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_torque_setpoint_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_bezier_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_desired_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_vision_attitude_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_visual_odometry_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vtol_vehicle_status_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_wheel_encoders_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_wind_s.c.o" "CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_yaw_estimator_status_s.c.o" "rosidl_generator_py/px4_msgs/libpx4_msgs__python.pdb" "rosidl_generator_py/px4_msgs/libpx4_msgs__python.so" ) # Per-language clean rules from dependency scanning. foreach(lang C) include(CMakeFiles/px4_msgs__python.dir/cmake_clean_${lang}.cmake OPTIONAL) endforeach() <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_bezier__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleTrajectoryBezier.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_TRAJECTORY_BEZIER__STRUCT_H_ #define PX4_MSGS__MSG__VEHICLE_TRAJECTORY_BEZIER__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'POINT_0'. enum { px4_msgs__msg__VehicleTrajectoryBezier__POINT_0 = 0 }; /// Constant 'POINT_1'. enum { px4_msgs__msg__VehicleTrajectoryBezier__POINT_1 = 1 }; /// Constant 'POINT_2'. enum { px4_msgs__msg__VehicleTrajectoryBezier__POINT_2 = 2 }; /// Constant 'POINT_3'. enum { px4_msgs__msg__VehicleTrajectoryBezier__POINT_3 = 3 }; /// Constant 'POINT_4'. enum { px4_msgs__msg__VehicleTrajectoryBezier__POINT_4 = 4 }; /// Constant 'NUMBER_POINTS'. enum { px4_msgs__msg__VehicleTrajectoryBezier__NUMBER_POINTS = 5 }; // Include directives for member types // Member 'control_points' #include "px4_msgs/msg/trajectory_bezier__struct.h" // Struct defined in msg/VehicleTrajectoryBezier in the package px4_msgs. typedef struct px4_msgs__msg__VehicleTrajectoryBezier { uint64_t timestamp; px4_msgs__msg__TrajectoryBezier control_points[5]; uint8_t bezier_order; } px4_msgs__msg__VehicleTrajectoryBezier; // Struct for a sequence of px4_msgs__msg__VehicleTrajectoryBezier. typedef struct px4_msgs__msg__VehicleTrajectoryBezier__Sequence { px4_msgs__msg__VehicleTrajectoryBezier * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__VehicleTrajectoryBezier__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_TRAJECTORY_BEZIER__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/battery_status__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/BatteryStatus.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/battery_status__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void BatteryStatus_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::BatteryStatus(_init); } void BatteryStatus_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::BatteryStatus *>(message_memory); typed_message->~BatteryStatus(); } size_t size_function__BatteryStatus__voltage_cell_v(const void * untyped_member) { (void)untyped_member; return 14; } const void * get_const_function__BatteryStatus__voltage_cell_v(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 14> *>(untyped_member); return &member[index]; } void * get_function__BatteryStatus__voltage_cell_v(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 14> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember BatteryStatus_message_member_array[35] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "voltage_v", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, voltage_v), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "voltage_filtered_v", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, voltage_filtered_v), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "current_a", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, current_a), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "current_filtered_a", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, current_filtered_a), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "average_current_a", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, average_current_a), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "discharged_mah", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, discharged_mah), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "remaining", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, remaining), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "scale", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, scale), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "temperature", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, temperature), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cell_count", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, cell_count), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "connected", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, connected), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "source", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, source), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "priority", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, priority), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "capacity", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, capacity), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cycle_count", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, cycle_count), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "run_time_to_empty", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, run_time_to_empty), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "average_time_to_empty", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, average_time_to_empty), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "serial_number", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, serial_number), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "manufacture_date", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, manufacture_date), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "state_of_health", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, state_of_health), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "max_error", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, max_error), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "id", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, id), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "interface_error", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, interface_error), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "voltage_cell_v", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 14, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, voltage_cell_v), // bytes offset in struct nullptr, // default value size_function__BatteryStatus__voltage_cell_v, // size() function pointer get_const_function__BatteryStatus__voltage_cell_v, // get_const(index) function pointer get_function__BatteryStatus__voltage_cell_v, // get(index) function pointer nullptr // resize(index) function pointer }, { "max_cell_voltage_delta", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, max_cell_voltage_delta), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "is_powering_off", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, is_powering_off), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "warning", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, warning), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "average_power", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, average_power), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "available_energy", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, available_energy), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "remaining_capacity", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, remaining_capacity), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "design_capacity", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, design_capacity), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "average_time_to_full", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, average_time_to_full), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "over_discharge_count", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, over_discharge_count), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "nominal_voltage", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::BatteryStatus, nominal_voltage), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers BatteryStatus_message_members = { "px4_msgs::msg", // message namespace "BatteryStatus", // message name 35, // number of fields sizeof(px4_msgs::msg::BatteryStatus), BatteryStatus_message_member_array, // message members BatteryStatus_init_function, // function to initialize message memory (memory has to be allocated) BatteryStatus_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t BatteryStatus_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &BatteryStatus_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::BatteryStatus>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::BatteryStatus_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, BatteryStatus)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::BatteryStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_global_position_groundtruth__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleGlobalPositionGroundtruth.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_global_position_groundtruth__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__VehicleGlobalPositionGroundtruth__init(px4_msgs__msg__VehicleGlobalPositionGroundtruth * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // lat // lon // alt // alt_ellipsoid // delta_alt // lat_lon_reset_counter // alt_reset_counter // eph // epv // terrain_alt // terrain_alt_valid // dead_reckoning return true; } void px4_msgs__msg__VehicleGlobalPositionGroundtruth__fini(px4_msgs__msg__VehicleGlobalPositionGroundtruth * msg) { if (!msg) { return; } // timestamp // timestamp_sample // lat // lon // alt // alt_ellipsoid // delta_alt // lat_lon_reset_counter // alt_reset_counter // eph // epv // terrain_alt // terrain_alt_valid // dead_reckoning } px4_msgs__msg__VehicleGlobalPositionGroundtruth * px4_msgs__msg__VehicleGlobalPositionGroundtruth__create() { px4_msgs__msg__VehicleGlobalPositionGroundtruth * msg = (px4_msgs__msg__VehicleGlobalPositionGroundtruth *)malloc(sizeof(px4_msgs__msg__VehicleGlobalPositionGroundtruth)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleGlobalPositionGroundtruth)); bool success = px4_msgs__msg__VehicleGlobalPositionGroundtruth__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleGlobalPositionGroundtruth__destroy(px4_msgs__msg__VehicleGlobalPositionGroundtruth * msg) { if (msg) { px4_msgs__msg__VehicleGlobalPositionGroundtruth__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleGlobalPositionGroundtruth__Sequence__init(px4_msgs__msg__VehicleGlobalPositionGroundtruth__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleGlobalPositionGroundtruth * data = NULL; if (size) { data = (px4_msgs__msg__VehicleGlobalPositionGroundtruth *)calloc(size, sizeof(px4_msgs__msg__VehicleGlobalPositionGroundtruth)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleGlobalPositionGroundtruth__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleGlobalPositionGroundtruth__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleGlobalPositionGroundtruth__Sequence__fini(px4_msgs__msg__VehicleGlobalPositionGroundtruth__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleGlobalPositionGroundtruth__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleGlobalPositionGroundtruth__Sequence * px4_msgs__msg__VehicleGlobalPositionGroundtruth__Sequence__create(size_t size) { px4_msgs__msg__VehicleGlobalPositionGroundtruth__Sequence * array = (px4_msgs__msg__VehicleGlobalPositionGroundtruth__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleGlobalPositionGroundtruth__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleGlobalPositionGroundtruth__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleGlobalPositionGroundtruth__Sequence__destroy(px4_msgs__msg__VehicleGlobalPositionGroundtruth__Sequence * array) { if (array) { px4_msgs__msg__VehicleGlobalPositionGroundtruth__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/control_allocator_status__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/ControlAllocatorStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/control_allocator_status__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__ControlAllocatorStatus__init(px4_msgs__msg__ControlAllocatorStatus * msg) { if (!msg) { return false; } // timestamp // torque_setpoint_achieved // allocated_torque // unallocated_torque // thrust_setpoint_achieved // allocated_thrust // unallocated_thrust // actuator_saturation return true; } void px4_msgs__msg__ControlAllocatorStatus__fini(px4_msgs__msg__ControlAllocatorStatus * msg) { if (!msg) { return; } // timestamp // torque_setpoint_achieved // allocated_torque // unallocated_torque // thrust_setpoint_achieved // allocated_thrust // unallocated_thrust // actuator_saturation } px4_msgs__msg__ControlAllocatorStatus * px4_msgs__msg__ControlAllocatorStatus__create() { px4_msgs__msg__ControlAllocatorStatus * msg = (px4_msgs__msg__ControlAllocatorStatus *)malloc(sizeof(px4_msgs__msg__ControlAllocatorStatus)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__ControlAllocatorStatus)); bool success = px4_msgs__msg__ControlAllocatorStatus__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__ControlAllocatorStatus__destroy(px4_msgs__msg__ControlAllocatorStatus * msg) { if (msg) { px4_msgs__msg__ControlAllocatorStatus__fini(msg); } free(msg); } bool px4_msgs__msg__ControlAllocatorStatus__Sequence__init(px4_msgs__msg__ControlAllocatorStatus__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__ControlAllocatorStatus * data = NULL; if (size) { data = (px4_msgs__msg__ControlAllocatorStatus *)calloc(size, sizeof(px4_msgs__msg__ControlAllocatorStatus)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__ControlAllocatorStatus__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__ControlAllocatorStatus__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__ControlAllocatorStatus__Sequence__fini(px4_msgs__msg__ControlAllocatorStatus__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__ControlAllocatorStatus__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__ControlAllocatorStatus__Sequence * px4_msgs__msg__ControlAllocatorStatus__Sequence__create(size_t size) { px4_msgs__msg__ControlAllocatorStatus__Sequence * array = (px4_msgs__msg__ControlAllocatorStatus__Sequence *)malloc(sizeof(px4_msgs__msg__ControlAllocatorStatus__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__ControlAllocatorStatus__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__ControlAllocatorStatus__Sequence__destroy(px4_msgs__msg__ControlAllocatorStatus__Sequence * array) { if (array) { px4_msgs__msg__ControlAllocatorStatus__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/GimbalManagerSetAttitude.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/gimbal_manager_set_attitude__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/gimbal_manager_set_attitude__struct.h" #include "px4_msgs/msg/gimbal_manager_set_attitude__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _GimbalManagerSetAttitude__ros_msg_type = px4_msgs__msg__GimbalManagerSetAttitude; static bool _GimbalManagerSetAttitude__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _GimbalManagerSetAttitude__ros_msg_type * ros_message = static_cast<const _GimbalManagerSetAttitude__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: origin_sysid { cdr << ros_message->origin_sysid; } // Field name: origin_compid { cdr << ros_message->origin_compid; } // Field name: target_system { cdr << ros_message->target_system; } // Field name: target_component { cdr << ros_message->target_component; } // Field name: flags { cdr << ros_message->flags; } // Field name: gimbal_device_id { cdr << ros_message->gimbal_device_id; } // Field name: q { size_t size = 4; auto array_ptr = ros_message->q; cdr.serializeArray(array_ptr, size); } // Field name: angular_velocity_x { cdr << ros_message->angular_velocity_x; } // Field name: angular_velocity_y { cdr << ros_message->angular_velocity_y; } // Field name: angular_velocity_z { cdr << ros_message->angular_velocity_z; } return true; } static bool _GimbalManagerSetAttitude__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _GimbalManagerSetAttitude__ros_msg_type * ros_message = static_cast<_GimbalManagerSetAttitude__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: origin_sysid { cdr >> ros_message->origin_sysid; } // Field name: origin_compid { cdr >> ros_message->origin_compid; } // Field name: target_system { cdr >> ros_message->target_system; } // Field name: target_component { cdr >> ros_message->target_component; } // Field name: flags { cdr >> ros_message->flags; } // Field name: gimbal_device_id { cdr >> ros_message->gimbal_device_id; } // Field name: q { size_t size = 4; auto array_ptr = ros_message->q; cdr.deserializeArray(array_ptr, size); } // Field name: angular_velocity_x { cdr >> ros_message->angular_velocity_x; } // Field name: angular_velocity_y { cdr >> ros_message->angular_velocity_y; } // Field name: angular_velocity_z { cdr >> ros_message->angular_velocity_z; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__GimbalManagerSetAttitude( const void * untyped_ros_message, size_t current_alignment) { const _GimbalManagerSetAttitude__ros_msg_type * ros_message = static_cast<const _GimbalManagerSetAttitude__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name origin_sysid { size_t item_size = sizeof(ros_message->origin_sysid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name origin_compid { size_t item_size = sizeof(ros_message->origin_compid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name target_system { size_t item_size = sizeof(ros_message->target_system); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name target_component { size_t item_size = sizeof(ros_message->target_component); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name flags { size_t item_size = sizeof(ros_message->flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gimbal_device_id { size_t item_size = sizeof(ros_message->gimbal_device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name q { size_t array_size = 4; auto array_ptr = ros_message->q; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name angular_velocity_x { size_t item_size = sizeof(ros_message->angular_velocity_x); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name angular_velocity_y { size_t item_size = sizeof(ros_message->angular_velocity_y); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name angular_velocity_z { size_t item_size = sizeof(ros_message->angular_velocity_z); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _GimbalManagerSetAttitude__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__GimbalManagerSetAttitude( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__GimbalManagerSetAttitude( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: origin_sysid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: origin_compid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: target_system { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: target_component { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gimbal_device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: q { size_t array_size = 4; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: angular_velocity_x { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: angular_velocity_y { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: angular_velocity_z { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _GimbalManagerSetAttitude__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__GimbalManagerSetAttitude( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_GimbalManagerSetAttitude = { "px4_msgs::msg", "GimbalManagerSetAttitude", _GimbalManagerSetAttitude__cdr_serialize, _GimbalManagerSetAttitude__cdr_deserialize, _GimbalManagerSetAttitude__get_serialized_size, _GimbalManagerSetAttitude__max_serialized_size }; static rosidl_message_type_support_t _GimbalManagerSetAttitude__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_GimbalManagerSetAttitude, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, GimbalManagerSetAttitude)() { return &_GimbalManagerSetAttitude__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_status.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/EstimatorStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_STATUS_H_ #define PX4_MSGS__MSG__ESTIMATOR_STATUS_H_ #include "px4_msgs/msg/estimator_status__struct.h" #include "px4_msgs/msg/estimator_status__functions.h" #include "px4_msgs/msg/estimator_status__type_support.h" #endif // PX4_MSGS__MSG__ESTIMATOR_STATUS_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_selector_status__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/EstimatorSelectorStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/estimator_selector_status__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__EstimatorSelectorStatus__init(px4_msgs__msg__EstimatorSelectorStatus * msg) { if (!msg) { return false; } // timestamp // primary_instance // instances_available // instance_changed_count // last_instance_change // accel_device_id // baro_device_id // gyro_device_id // mag_device_id // combined_test_ratio // relative_test_ratio // healthy // accumulated_gyro_error // accumulated_accel_error // gyro_fault_detected // accel_fault_detected return true; } void px4_msgs__msg__EstimatorSelectorStatus__fini(px4_msgs__msg__EstimatorSelectorStatus * msg) { if (!msg) { return; } // timestamp // primary_instance // instances_available // instance_changed_count // last_instance_change // accel_device_id // baro_device_id // gyro_device_id // mag_device_id // combined_test_ratio // relative_test_ratio // healthy // accumulated_gyro_error // accumulated_accel_error // gyro_fault_detected // accel_fault_detected } px4_msgs__msg__EstimatorSelectorStatus * px4_msgs__msg__EstimatorSelectorStatus__create() { px4_msgs__msg__EstimatorSelectorStatus * msg = (px4_msgs__msg__EstimatorSelectorStatus *)malloc(sizeof(px4_msgs__msg__EstimatorSelectorStatus)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__EstimatorSelectorStatus)); bool success = px4_msgs__msg__EstimatorSelectorStatus__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__EstimatorSelectorStatus__destroy(px4_msgs__msg__EstimatorSelectorStatus * msg) { if (msg) { px4_msgs__msg__EstimatorSelectorStatus__fini(msg); } free(msg); } bool px4_msgs__msg__EstimatorSelectorStatus__Sequence__init(px4_msgs__msg__EstimatorSelectorStatus__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__EstimatorSelectorStatus * data = NULL; if (size) { data = (px4_msgs__msg__EstimatorSelectorStatus *)calloc(size, sizeof(px4_msgs__msg__EstimatorSelectorStatus)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__EstimatorSelectorStatus__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__EstimatorSelectorStatus__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__EstimatorSelectorStatus__Sequence__fini(px4_msgs__msg__EstimatorSelectorStatus__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__EstimatorSelectorStatus__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__EstimatorSelectorStatus__Sequence * px4_msgs__msg__EstimatorSelectorStatus__Sequence__create(size_t size) { px4_msgs__msg__EstimatorSelectorStatus__Sequence * array = (px4_msgs__msg__EstimatorSelectorStatus__Sequence *)malloc(sizeof(px4_msgs__msg__EstimatorSelectorStatus__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__EstimatorSelectorStatus__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__EstimatorSelectorStatus__Sequence__destroy(px4_msgs__msg__EstimatorSelectorStatus__Sequence * array) { if (array) { px4_msgs__msg__EstimatorSelectorStatus__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/position_controller_status__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/PositionControllerStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__POSITION_CONTROLLER_STATUS__STRUCT_HPP_ #define PX4_MSGS__MSG__POSITION_CONTROLLER_STATUS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__PositionControllerStatus __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__PositionControllerStatus __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct PositionControllerStatus_ { using Type = PositionControllerStatus_<ContainerAllocator>; explicit PositionControllerStatus_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->nav_roll = 0.0f; this->nav_pitch = 0.0f; this->nav_bearing = 0.0f; this->target_bearing = 0.0f; this->xtrack_error = 0.0f; this->wp_dist = 0.0f; this->acceptance_radius = 0.0f; this->yaw_acceptance = 0.0f; this->altitude_acceptance = 0.0f; this->type = 0; } } explicit PositionControllerStatus_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->nav_roll = 0.0f; this->nav_pitch = 0.0f; this->nav_bearing = 0.0f; this->target_bearing = 0.0f; this->xtrack_error = 0.0f; this->wp_dist = 0.0f; this->acceptance_radius = 0.0f; this->yaw_acceptance = 0.0f; this->altitude_acceptance = 0.0f; this->type = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _nav_roll_type = float; _nav_roll_type nav_roll; using _nav_pitch_type = float; _nav_pitch_type nav_pitch; using _nav_bearing_type = float; _nav_bearing_type nav_bearing; using _target_bearing_type = float; _target_bearing_type target_bearing; using _xtrack_error_type = float; _xtrack_error_type xtrack_error; using _wp_dist_type = float; _wp_dist_type wp_dist; using _acceptance_radius_type = float; _acceptance_radius_type acceptance_radius; using _yaw_acceptance_type = float; _yaw_acceptance_type yaw_acceptance; using _altitude_acceptance_type = float; _altitude_acceptance_type altitude_acceptance; using _type_type = uint8_t; _type_type type; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__nav_roll( const float & _arg) { this->nav_roll = _arg; return *this; } Type & set__nav_pitch( const float & _arg) { this->nav_pitch = _arg; return *this; } Type & set__nav_bearing( const float & _arg) { this->nav_bearing = _arg; return *this; } Type & set__target_bearing( const float & _arg) { this->target_bearing = _arg; return *this; } Type & set__xtrack_error( const float & _arg) { this->xtrack_error = _arg; return *this; } Type & set__wp_dist( const float & _arg) { this->wp_dist = _arg; return *this; } Type & set__acceptance_radius( const float & _arg) { this->acceptance_radius = _arg; return *this; } Type & set__yaw_acceptance( const float & _arg) { this->yaw_acceptance = _arg; return *this; } Type & set__altitude_acceptance( const float & _arg) { this->altitude_acceptance = _arg; return *this; } Type & set__type( const uint8_t & _arg) { this->type = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::PositionControllerStatus_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::PositionControllerStatus_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::PositionControllerStatus_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::PositionControllerStatus_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::PositionControllerStatus_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::PositionControllerStatus_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::PositionControllerStatus_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::PositionControllerStatus_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::PositionControllerStatus_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::PositionControllerStatus_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__PositionControllerStatus std::shared_ptr<px4_msgs::msg::PositionControllerStatus_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__PositionControllerStatus std::shared_ptr<px4_msgs::msg::PositionControllerStatus_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const PositionControllerStatus_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->nav_roll != other.nav_roll) { return false; } if (this->nav_pitch != other.nav_pitch) { return false; } if (this->nav_bearing != other.nav_bearing) { return false; } if (this->target_bearing != other.target_bearing) { return false; } if (this->xtrack_error != other.xtrack_error) { return false; } if (this->wp_dist != other.wp_dist) { return false; } if (this->acceptance_radius != other.acceptance_radius) { return false; } if (this->yaw_acceptance != other.yaw_acceptance) { return false; } if (this->altitude_acceptance != other.altitude_acceptance) { return false; } if (this->type != other.type) { return false; } return true; } bool operator!=(const PositionControllerStatus_ & other) const { return !this->operator==(other); } }; // struct PositionControllerStatus_ // alias to use template instance with default allocator using PositionControllerStatus = px4_msgs::msg::PositionControllerStatus_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__POSITION_CONTROLLER_STATUS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/test_motor__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/TestMotor.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/test_motor__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__TestMotor__init(px4_msgs__msg__TestMotor * msg) { if (!msg) { return false; } // timestamp // action // motor_number // value // timeout_ms // driver_instance return true; } void px4_msgs__msg__TestMotor__fini(px4_msgs__msg__TestMotor * msg) { if (!msg) { return; } // timestamp // action // motor_number // value // timeout_ms // driver_instance } px4_msgs__msg__TestMotor * px4_msgs__msg__TestMotor__create() { px4_msgs__msg__TestMotor * msg = (px4_msgs__msg__TestMotor *)malloc(sizeof(px4_msgs__msg__TestMotor)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__TestMotor)); bool success = px4_msgs__msg__TestMotor__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__TestMotor__destroy(px4_msgs__msg__TestMotor * msg) { if (msg) { px4_msgs__msg__TestMotor__fini(msg); } free(msg); } bool px4_msgs__msg__TestMotor__Sequence__init(px4_msgs__msg__TestMotor__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__TestMotor * data = NULL; if (size) { data = (px4_msgs__msg__TestMotor *)calloc(size, sizeof(px4_msgs__msg__TestMotor)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__TestMotor__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__TestMotor__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__TestMotor__Sequence__fini(px4_msgs__msg__TestMotor__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__TestMotor__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__TestMotor__Sequence * px4_msgs__msg__TestMotor__Sequence__create(size_t size) { px4_msgs__msg__TestMotor__Sequence * array = (px4_msgs__msg__TestMotor__Sequence *)malloc(sizeof(px4_msgs__msg__TestMotor__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__TestMotor__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__TestMotor__Sequence__destroy(px4_msgs__msg__TestMotor__Sequence * array) { if (array) { px4_msgs__msg__TestMotor__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_bezier__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleTrajectoryBezier.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_trajectory_bezier__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> // Include directives for member types // Member `control_points` #include "px4_msgs/msg/trajectory_bezier__functions.h" bool px4_msgs__msg__VehicleTrajectoryBezier__init(px4_msgs__msg__VehicleTrajectoryBezier * msg) { if (!msg) { return false; } // timestamp // control_points for (size_t i = 0; i < 5; ++i) { if (!px4_msgs__msg__TrajectoryBezier__init(&msg->control_points[i])) { px4_msgs__msg__VehicleTrajectoryBezier__fini(msg); return false; } } // bezier_order return true; } void px4_msgs__msg__VehicleTrajectoryBezier__fini(px4_msgs__msg__VehicleTrajectoryBezier * msg) { if (!msg) { return; } // timestamp // control_points for (size_t i = 0; i < 5; ++i) { px4_msgs__msg__TrajectoryBezier__fini(&msg->control_points[i]); } // bezier_order } px4_msgs__msg__VehicleTrajectoryBezier * px4_msgs__msg__VehicleTrajectoryBezier__create() { px4_msgs__msg__VehicleTrajectoryBezier * msg = (px4_msgs__msg__VehicleTrajectoryBezier *)malloc(sizeof(px4_msgs__msg__VehicleTrajectoryBezier)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleTrajectoryBezier)); bool success = px4_msgs__msg__VehicleTrajectoryBezier__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleTrajectoryBezier__destroy(px4_msgs__msg__VehicleTrajectoryBezier * msg) { if (msg) { px4_msgs__msg__VehicleTrajectoryBezier__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleTrajectoryBezier__Sequence__init(px4_msgs__msg__VehicleTrajectoryBezier__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleTrajectoryBezier * data = NULL; if (size) { data = (px4_msgs__msg__VehicleTrajectoryBezier *)calloc(size, sizeof(px4_msgs__msg__VehicleTrajectoryBezier)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleTrajectoryBezier__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleTrajectoryBezier__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleTrajectoryBezier__Sequence__fini(px4_msgs__msg__VehicleTrajectoryBezier__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleTrajectoryBezier__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleTrajectoryBezier__Sequence * px4_msgs__msg__VehicleTrajectoryBezier__Sequence__create(size_t size) { px4_msgs__msg__VehicleTrajectoryBezier__Sequence * array = (px4_msgs__msg__VehicleTrajectoryBezier__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleTrajectoryBezier__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleTrajectoryBezier__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleTrajectoryBezier__Sequence__destroy(px4_msgs__msg__VehicleTrajectoryBezier__Sequence * array) { if (array) { px4_msgs__msg__VehicleTrajectoryBezier__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_led_control.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/LedControl.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_LedControl(type): """Metaclass of message 'LedControl'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'COLOR_OFF': 0, 'COLOR_RED': 1, 'COLOR_GREEN': 2, 'COLOR_BLUE': 3, 'COLOR_YELLOW': 4, 'COLOR_PURPLE': 5, 'COLOR_AMBER': 6, 'COLOR_CYAN': 7, 'COLOR_WHITE': 8, 'MODE_OFF': 0, 'MODE_ON': 1, 'MODE_DISABLED': 2, 'MODE_BLINK_SLOW': 3, 'MODE_BLINK_NORMAL': 4, 'MODE_BLINK_FAST': 5, 'MODE_BREATHE': 6, 'MODE_FLASH': 7, 'MAX_PRIORITY': 2, 'ORB_QUEUE_LENGTH': 8, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.LedControl') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__led_control cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__led_control cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__led_control cls._TYPE_SUPPORT = module.type_support_msg__msg__led_control cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__led_control @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'COLOR_OFF': cls.__constants['COLOR_OFF'], 'COLOR_RED': cls.__constants['COLOR_RED'], 'COLOR_GREEN': cls.__constants['COLOR_GREEN'], 'COLOR_BLUE': cls.__constants['COLOR_BLUE'], 'COLOR_YELLOW': cls.__constants['COLOR_YELLOW'], 'COLOR_PURPLE': cls.__constants['COLOR_PURPLE'], 'COLOR_AMBER': cls.__constants['COLOR_AMBER'], 'COLOR_CYAN': cls.__constants['COLOR_CYAN'], 'COLOR_WHITE': cls.__constants['COLOR_WHITE'], 'MODE_OFF': cls.__constants['MODE_OFF'], 'MODE_ON': cls.__constants['MODE_ON'], 'MODE_DISABLED': cls.__constants['MODE_DISABLED'], 'MODE_BLINK_SLOW': cls.__constants['MODE_BLINK_SLOW'], 'MODE_BLINK_NORMAL': cls.__constants['MODE_BLINK_NORMAL'], 'MODE_BLINK_FAST': cls.__constants['MODE_BLINK_FAST'], 'MODE_BREATHE': cls.__constants['MODE_BREATHE'], 'MODE_FLASH': cls.__constants['MODE_FLASH'], 'MAX_PRIORITY': cls.__constants['MAX_PRIORITY'], 'ORB_QUEUE_LENGTH': cls.__constants['ORB_QUEUE_LENGTH'], } @property def COLOR_OFF(self): """Message constant 'COLOR_OFF'.""" return Metaclass_LedControl.__constants['COLOR_OFF'] @property def COLOR_RED(self): """Message constant 'COLOR_RED'.""" return Metaclass_LedControl.__constants['COLOR_RED'] @property def COLOR_GREEN(self): """Message constant 'COLOR_GREEN'.""" return Metaclass_LedControl.__constants['COLOR_GREEN'] @property def COLOR_BLUE(self): """Message constant 'COLOR_BLUE'.""" return Metaclass_LedControl.__constants['COLOR_BLUE'] @property def COLOR_YELLOW(self): """Message constant 'COLOR_YELLOW'.""" return Metaclass_LedControl.__constants['COLOR_YELLOW'] @property def COLOR_PURPLE(self): """Message constant 'COLOR_PURPLE'.""" return Metaclass_LedControl.__constants['COLOR_PURPLE'] @property def COLOR_AMBER(self): """Message constant 'COLOR_AMBER'.""" return Metaclass_LedControl.__constants['COLOR_AMBER'] @property def COLOR_CYAN(self): """Message constant 'COLOR_CYAN'.""" return Metaclass_LedControl.__constants['COLOR_CYAN'] @property def COLOR_WHITE(self): """Message constant 'COLOR_WHITE'.""" return Metaclass_LedControl.__constants['COLOR_WHITE'] @property def MODE_OFF(self): """Message constant 'MODE_OFF'.""" return Metaclass_LedControl.__constants['MODE_OFF'] @property def MODE_ON(self): """Message constant 'MODE_ON'.""" return Metaclass_LedControl.__constants['MODE_ON'] @property def MODE_DISABLED(self): """Message constant 'MODE_DISABLED'.""" return Metaclass_LedControl.__constants['MODE_DISABLED'] @property def MODE_BLINK_SLOW(self): """Message constant 'MODE_BLINK_SLOW'.""" return Metaclass_LedControl.__constants['MODE_BLINK_SLOW'] @property def MODE_BLINK_NORMAL(self): """Message constant 'MODE_BLINK_NORMAL'.""" return Metaclass_LedControl.__constants['MODE_BLINK_NORMAL'] @property def MODE_BLINK_FAST(self): """Message constant 'MODE_BLINK_FAST'.""" return Metaclass_LedControl.__constants['MODE_BLINK_FAST'] @property def MODE_BREATHE(self): """Message constant 'MODE_BREATHE'.""" return Metaclass_LedControl.__constants['MODE_BREATHE'] @property def MODE_FLASH(self): """Message constant 'MODE_FLASH'.""" return Metaclass_LedControl.__constants['MODE_FLASH'] @property def MAX_PRIORITY(self): """Message constant 'MAX_PRIORITY'.""" return Metaclass_LedControl.__constants['MAX_PRIORITY'] @property def ORB_QUEUE_LENGTH(self): """Message constant 'ORB_QUEUE_LENGTH'.""" return Metaclass_LedControl.__constants['ORB_QUEUE_LENGTH'] class LedControl(metaclass=Metaclass_LedControl): """ Message class 'LedControl'. Constants: COLOR_OFF COLOR_RED COLOR_GREEN COLOR_BLUE COLOR_YELLOW COLOR_PURPLE COLOR_AMBER COLOR_CYAN COLOR_WHITE MODE_OFF MODE_ON MODE_DISABLED MODE_BLINK_SLOW MODE_BLINK_NORMAL MODE_BLINK_FAST MODE_BREATHE MODE_FLASH MAX_PRIORITY ORB_QUEUE_LENGTH """ __slots__ = [ '_timestamp', '_led_mask', '_color', '_mode', '_num_blinks', '_priority', ] _fields_and_field_types = { 'timestamp': 'uint64', 'led_mask': 'uint8', 'color': 'uint8', 'mode': 'uint8', 'num_blinks': 'uint8', 'priority': 'uint8', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.led_mask = kwargs.get('led_mask', int()) self.color = kwargs.get('color', int()) self.mode = kwargs.get('mode', int()) self.num_blinks = kwargs.get('num_blinks', int()) self.priority = kwargs.get('priority', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.led_mask != other.led_mask: return False if self.color != other.color: return False if self.mode != other.mode: return False if self.num_blinks != other.num_blinks: return False if self.priority != other.priority: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def led_mask(self): """Message field 'led_mask'.""" return self._led_mask @led_mask.setter def led_mask(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'led_mask' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'led_mask' field must be an unsigned integer in [0, 255]" self._led_mask = value @property def color(self): """Message field 'color'.""" return self._color @color.setter def color(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'color' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'color' field must be an unsigned integer in [0, 255]" self._color = value @property def mode(self): """Message field 'mode'.""" return self._mode @mode.setter def mode(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'mode' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'mode' field must be an unsigned integer in [0, 255]" self._mode = value @property def num_blinks(self): """Message field 'num_blinks'.""" return self._num_blinks @num_blinks.setter def num_blinks(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'num_blinks' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'num_blinks' field must be an unsigned integer in [0, 255]" self._num_blinks = value @property def priority(self): """Message field 'priority'.""" return self._priority @priority.setter def priority(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'priority' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'priority' field must be an unsigned integer in [0, 255]" self._priority = value <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/manual_control_switches.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/ManualControlSwitches.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__MANUAL_CONTROL_SWITCHES_H_ #define PX4_MSGS__MSG__MANUAL_CONTROL_SWITCHES_H_ #include "px4_msgs/msg/manual_control_switches__struct.h" #include "px4_msgs/msg/manual_control_switches__functions.h" #include "px4_msgs/msg/manual_control_switches__type_support.h" #endif // PX4_MSGS__MSG__MANUAL_CONTROL_SWITCHES_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_mocap_odometry.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleMocapOdometry.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_MOCAP_ODOMETRY_H_ #define PX4_MSGS__MSG__VEHICLE_MOCAP_ODOMETRY_H_ #include "px4_msgs/msg/vehicle_mocap_odometry__struct.h" #include "px4_msgs/msg/vehicle_mocap_odometry__functions.h" #include "px4_msgs/msg/vehicle_mocap_odometry__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_MOCAP_ODOMETRY_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/system_power__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/SystemPower.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SYSTEM_POWER__STRUCT_HPP_ #define PX4_MSGS__MSG__SYSTEM_POWER__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__SystemPower __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__SystemPower __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct SystemPower_ { using Type = SystemPower_<ContainerAllocator>; explicit SystemPower_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->voltage5v_v = 0.0f; std::fill<typename std::array<float, 4>::iterator, float>(this->sensors3v3.begin(), this->sensors3v3.end(), 0.0f); this->sensors3v3_valid = 0; this->usb_connected = 0; this->brick_valid = 0; this->usb_valid = 0; this->servo_valid = 0; this->periph_5v_oc = 0; this->hipower_5v_oc = 0; this->comp_5v_valid = 0; this->can1_gps1_5v_valid = 0; } } explicit SystemPower_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : sensors3v3(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->voltage5v_v = 0.0f; std::fill<typename std::array<float, 4>::iterator, float>(this->sensors3v3.begin(), this->sensors3v3.end(), 0.0f); this->sensors3v3_valid = 0; this->usb_connected = 0; this->brick_valid = 0; this->usb_valid = 0; this->servo_valid = 0; this->periph_5v_oc = 0; this->hipower_5v_oc = 0; this->comp_5v_valid = 0; this->can1_gps1_5v_valid = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _voltage5v_v_type = float; _voltage5v_v_type voltage5v_v; using _sensors3v3_type = std::array<float, 4>; _sensors3v3_type sensors3v3; using _sensors3v3_valid_type = uint8_t; _sensors3v3_valid_type sensors3v3_valid; using _usb_connected_type = uint8_t; _usb_connected_type usb_connected; using _brick_valid_type = uint8_t; _brick_valid_type brick_valid; using _usb_valid_type = uint8_t; _usb_valid_type usb_valid; using _servo_valid_type = uint8_t; _servo_valid_type servo_valid; using _periph_5v_oc_type = uint8_t; _periph_5v_oc_type periph_5v_oc; using _hipower_5v_oc_type = uint8_t; _hipower_5v_oc_type hipower_5v_oc; using _comp_5v_valid_type = uint8_t; _comp_5v_valid_type comp_5v_valid; using _can1_gps1_5v_valid_type = uint8_t; _can1_gps1_5v_valid_type can1_gps1_5v_valid; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__voltage5v_v( const float & _arg) { this->voltage5v_v = _arg; return *this; } Type & set__sensors3v3( const std::array<float, 4> & _arg) { this->sensors3v3 = _arg; return *this; } Type & set__sensors3v3_valid( const uint8_t & _arg) { this->sensors3v3_valid = _arg; return *this; } Type & set__usb_connected( const uint8_t & _arg) { this->usb_connected = _arg; return *this; } Type & set__brick_valid( const uint8_t & _arg) { this->brick_valid = _arg; return *this; } Type & set__usb_valid( const uint8_t & _arg) { this->usb_valid = _arg; return *this; } Type & set__servo_valid( const uint8_t & _arg) { this->servo_valid = _arg; return *this; } Type & set__periph_5v_oc( const uint8_t & _arg) { this->periph_5v_oc = _arg; return *this; } Type & set__hipower_5v_oc( const uint8_t & _arg) { this->hipower_5v_oc = _arg; return *this; } Type & set__comp_5v_valid( const uint8_t & _arg) { this->comp_5v_valid = _arg; return *this; } Type & set__can1_gps1_5v_valid( const uint8_t & _arg) { this->can1_gps1_5v_valid = _arg; return *this; } // constant declarations static constexpr uint8_t BRICK1_VALID_SHIFTS = 0u; static constexpr uint8_t BRICK1_VALID_MASK = 1u; static constexpr uint8_t BRICK2_VALID_SHIFTS = 1u; static constexpr uint8_t BRICK2_VALID_MASK = 2u; static constexpr uint8_t BRICK3_VALID_SHIFTS = 2u; static constexpr uint8_t BRICK3_VALID_MASK = 4u; static constexpr uint8_t BRICK4_VALID_SHIFTS = 3u; static constexpr uint8_t BRICK4_VALID_MASK = 8u; // pointer types using RawPtr = px4_msgs::msg::SystemPower_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::SystemPower_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::SystemPower_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::SystemPower_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::SystemPower_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::SystemPower_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::SystemPower_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::SystemPower_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::SystemPower_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::SystemPower_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__SystemPower std::shared_ptr<px4_msgs::msg::SystemPower_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__SystemPower std::shared_ptr<px4_msgs::msg::SystemPower_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const SystemPower_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->voltage5v_v != other.voltage5v_v) { return false; } if (this->sensors3v3 != other.sensors3v3) { return false; } if (this->sensors3v3_valid != other.sensors3v3_valid) { return false; } if (this->usb_connected != other.usb_connected) { return false; } if (this->brick_valid != other.brick_valid) { return false; } if (this->usb_valid != other.usb_valid) { return false; } if (this->servo_valid != other.servo_valid) { return false; } if (this->periph_5v_oc != other.periph_5v_oc) { return false; } if (this->hipower_5v_oc != other.hipower_5v_oc) { return false; } if (this->comp_5v_valid != other.comp_5v_valid) { return false; } if (this->can1_gps1_5v_valid != other.can1_gps1_5v_valid) { return false; } return true; } bool operator!=(const SystemPower_ & other) const { return !this->operator==(other); } }; // struct SystemPower_ // alias to use template instance with default allocator using SystemPower = px4_msgs::msg::SystemPower_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t SystemPower_<ContainerAllocator>::BRICK1_VALID_SHIFTS; template<typename ContainerAllocator> constexpr uint8_t SystemPower_<ContainerAllocator>::BRICK1_VALID_MASK; template<typename ContainerAllocator> constexpr uint8_t SystemPower_<ContainerAllocator>::BRICK2_VALID_SHIFTS; template<typename ContainerAllocator> constexpr uint8_t SystemPower_<ContainerAllocator>::BRICK2_VALID_MASK; template<typename ContainerAllocator> constexpr uint8_t SystemPower_<ContainerAllocator>::BRICK3_VALID_SHIFTS; template<typename ContainerAllocator> constexpr uint8_t SystemPower_<ContainerAllocator>::BRICK3_VALID_MASK; template<typename ContainerAllocator> constexpr uint8_t SystemPower_<ContainerAllocator>::BRICK4_VALID_SHIFTS; template<typename ContainerAllocator> constexpr uint8_t SystemPower_<ContainerAllocator>::BRICK4_VALID_MASK; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__SYSTEM_POWER__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/differential_pressure__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/DifferentialPressure.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/differential_pressure__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/differential_pressure__functions.h" #include "px4_msgs/msg/differential_pressure__struct.h" #ifdef __cplusplus extern "C" { #endif void DifferentialPressure__rosidl_typesupport_introspection_c__DifferentialPressure_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__DifferentialPressure__init(message_memory); } void DifferentialPressure__rosidl_typesupport_introspection_c__DifferentialPressure_fini_function(void * message_memory) { px4_msgs__msg__DifferentialPressure__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember DifferentialPressure__rosidl_typesupport_introspection_c__DifferentialPressure_message_member_array[6] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__DifferentialPressure, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "error_count", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__DifferentialPressure, error_count), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "differential_pressure_raw_pa", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__DifferentialPressure, differential_pressure_raw_pa), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "differential_pressure_filtered_pa", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__DifferentialPressure, differential_pressure_filtered_pa), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "temperature", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__DifferentialPressure, temperature), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "device_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__DifferentialPressure, device_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers DifferentialPressure__rosidl_typesupport_introspection_c__DifferentialPressure_message_members = { "px4_msgs__msg", // message namespace "DifferentialPressure", // message name 6, // number of fields sizeof(px4_msgs__msg__DifferentialPressure), DifferentialPressure__rosidl_typesupport_introspection_c__DifferentialPressure_message_member_array, // message members DifferentialPressure__rosidl_typesupport_introspection_c__DifferentialPressure_init_function, // function to initialize message memory (memory has to be allocated) DifferentialPressure__rosidl_typesupport_introspection_c__DifferentialPressure_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t DifferentialPressure__rosidl_typesupport_introspection_c__DifferentialPressure_message_type_support_handle = { 0, &DifferentialPressure__rosidl_typesupport_introspection_c__DifferentialPressure_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, DifferentialPressure)() { if (!DifferentialPressure__rosidl_typesupport_introspection_c__DifferentialPressure_message_type_support_handle.typesupport_identifier) { DifferentialPressure__rosidl_typesupport_introspection_c__DifferentialPressure_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &DifferentialPressure__rosidl_typesupport_introspection_c__DifferentialPressure_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_local_position__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleLocalPosition.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION__FUNCTIONS_H_ #define PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/vehicle_local_position__struct.h" /// Initialize msg/VehicleLocalPosition message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__VehicleLocalPosition * )) before or use * px4_msgs__msg__VehicleLocalPosition__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__VehicleLocalPosition__init(px4_msgs__msg__VehicleLocalPosition * msg); /// Finalize msg/VehicleLocalPosition message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleLocalPosition__fini(px4_msgs__msg__VehicleLocalPosition * msg); /// Create msg/VehicleLocalPosition message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__VehicleLocalPosition__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__VehicleLocalPosition * px4_msgs__msg__VehicleLocalPosition__create(); /// Destroy msg/VehicleLocalPosition message. /** * It calls * px4_msgs__msg__VehicleLocalPosition__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleLocalPosition__destroy(px4_msgs__msg__VehicleLocalPosition * msg); /// Initialize array of msg/VehicleLocalPosition messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__VehicleLocalPosition__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__VehicleLocalPosition__Sequence__init(px4_msgs__msg__VehicleLocalPosition__Sequence * array, size_t size); /// Finalize array of msg/VehicleLocalPosition messages. /** * It calls * px4_msgs__msg__VehicleLocalPosition__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleLocalPosition__Sequence__fini(px4_msgs__msg__VehicleLocalPosition__Sequence * array); /// Create array of msg/VehicleLocalPosition messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__VehicleLocalPosition__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__VehicleLocalPosition__Sequence * px4_msgs__msg__VehicleLocalPosition__Sequence__create(size_t size); /// Destroy array of msg/VehicleLocalPosition messages. /** * It calls * px4_msgs__msg__VehicleLocalPosition__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleLocalPosition__Sequence__destroy(px4_msgs__msg__VehicleLocalPosition__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/geofence_result__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/GeofenceResult.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GEOFENCE_RESULT__STRUCT_HPP_ #define PX4_MSGS__MSG__GEOFENCE_RESULT__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__GeofenceResult __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__GeofenceResult __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct GeofenceResult_ { using Type = GeofenceResult_<ContainerAllocator>; explicit GeofenceResult_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->geofence_violated = false; this->geofence_action = 0; this->home_required = false; } } explicit GeofenceResult_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->geofence_violated = false; this->geofence_action = 0; this->home_required = false; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _geofence_violated_type = bool; _geofence_violated_type geofence_violated; using _geofence_action_type = uint8_t; _geofence_action_type geofence_action; using _home_required_type = bool; _home_required_type home_required; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__geofence_violated( const bool & _arg) { this->geofence_violated = _arg; return *this; } Type & set__geofence_action( const uint8_t & _arg) { this->geofence_action = _arg; return *this; } Type & set__home_required( const bool & _arg) { this->home_required = _arg; return *this; } // constant declarations static constexpr uint8_t GF_ACTION_NONE = 0u; static constexpr uint8_t GF_ACTION_WARN = 1u; static constexpr uint8_t GF_ACTION_LOITER = 2u; static constexpr uint8_t GF_ACTION_RTL = 3u; static constexpr uint8_t GF_ACTION_TERMINATE = 4u; static constexpr uint8_t GF_ACTION_LAND = 5u; // pointer types using RawPtr = px4_msgs::msg::GeofenceResult_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::GeofenceResult_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::GeofenceResult_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::GeofenceResult_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::GeofenceResult_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::GeofenceResult_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::GeofenceResult_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::GeofenceResult_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::GeofenceResult_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::GeofenceResult_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__GeofenceResult std::shared_ptr<px4_msgs::msg::GeofenceResult_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__GeofenceResult std::shared_ptr<px4_msgs::msg::GeofenceResult_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const GeofenceResult_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->geofence_violated != other.geofence_violated) { return false; } if (this->geofence_action != other.geofence_action) { return false; } if (this->home_required != other.home_required) { return false; } return true; } bool operator!=(const GeofenceResult_ & other) const { return !this->operator==(other); } }; // struct GeofenceResult_ // alias to use template instance with default allocator using GeofenceResult = px4_msgs::msg::GeofenceResult_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t GeofenceResult_<ContainerAllocator>::GF_ACTION_NONE; template<typename ContainerAllocator> constexpr uint8_t GeofenceResult_<ContainerAllocator>::GF_ACTION_WARN; template<typename ContainerAllocator> constexpr uint8_t GeofenceResult_<ContainerAllocator>::GF_ACTION_LOITER; template<typename ContainerAllocator> constexpr uint8_t GeofenceResult_<ContainerAllocator>::GF_ACTION_RTL; template<typename ContainerAllocator> constexpr uint8_t GeofenceResult_<ContainerAllocator>::GF_ACTION_TERMINATE; template<typename ContainerAllocator> constexpr uint8_t GeofenceResult_<ContainerAllocator>::GF_ACTION_LAND; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__GEOFENCE_RESULT__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/position_controller_status.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/PositionControllerStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__POSITION_CONTROLLER_STATUS_H_ #define PX4_MSGS__MSG__POSITION_CONTROLLER_STATUS_H_ #include "px4_msgs/msg/position_controller_status__struct.h" #include "px4_msgs/msg/position_controller_status__functions.h" #include "px4_msgs/msg/position_controller_status__type_support.h" #endif // PX4_MSGS__MSG__POSITION_CONTROLLER_STATUS_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/follow_target__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/FollowTarget.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/follow_target__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__FollowTarget__init(px4_msgs__msg__FollowTarget * msg) { if (!msg) { return false; } // timestamp // lat // lon // alt // vy // vx // vz // est_cap return true; } void px4_msgs__msg__FollowTarget__fini(px4_msgs__msg__FollowTarget * msg) { if (!msg) { return; } // timestamp // lat // lon // alt // vy // vx // vz // est_cap } px4_msgs__msg__FollowTarget * px4_msgs__msg__FollowTarget__create() { px4_msgs__msg__FollowTarget * msg = (px4_msgs__msg__FollowTarget *)malloc(sizeof(px4_msgs__msg__FollowTarget)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__FollowTarget)); bool success = px4_msgs__msg__FollowTarget__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__FollowTarget__destroy(px4_msgs__msg__FollowTarget * msg) { if (msg) { px4_msgs__msg__FollowTarget__fini(msg); } free(msg); } bool px4_msgs__msg__FollowTarget__Sequence__init(px4_msgs__msg__FollowTarget__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__FollowTarget * data = NULL; if (size) { data = (px4_msgs__msg__FollowTarget *)calloc(size, sizeof(px4_msgs__msg__FollowTarget)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__FollowTarget__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__FollowTarget__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__FollowTarget__Sequence__fini(px4_msgs__msg__FollowTarget__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__FollowTarget__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__FollowTarget__Sequence * px4_msgs__msg__FollowTarget__Sequence__create(size_t size) { px4_msgs__msg__FollowTarget__Sequence * array = (px4_msgs__msg__FollowTarget__Sequence *)malloc(sizeof(px4_msgs__msg__FollowTarget__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__FollowTarget__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__FollowTarget__Sequence__destroy(px4_msgs__msg__FollowTarget__Sequence * array) { if (array) { px4_msgs__msg__FollowTarget__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleGlobalPosition.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/vehicle_global_position__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void VehicleGlobalPosition_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::VehicleGlobalPosition(_init); } void VehicleGlobalPosition_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::VehicleGlobalPosition *>(message_memory); typed_message->~VehicleGlobalPosition(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember VehicleGlobalPosition_message_member_array[14] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGlobalPosition, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGlobalPosition, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "lat", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_DOUBLE, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGlobalPosition, lat), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "lon", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_DOUBLE, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGlobalPosition, lon), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "alt", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGlobalPosition, alt), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "alt_ellipsoid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGlobalPosition, alt_ellipsoid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "delta_alt", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGlobalPosition, delta_alt), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "lat_lon_reset_counter", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGlobalPosition, lat_lon_reset_counter), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "alt_reset_counter", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGlobalPosition, alt_reset_counter), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "eph", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGlobalPosition, eph), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "epv", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGlobalPosition, epv), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "terrain_alt", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGlobalPosition, terrain_alt), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "terrain_alt_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGlobalPosition, terrain_alt_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "dead_reckoning", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGlobalPosition, dead_reckoning), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers VehicleGlobalPosition_message_members = { "px4_msgs::msg", // message namespace "VehicleGlobalPosition", // message name 14, // number of fields sizeof(px4_msgs::msg::VehicleGlobalPosition), VehicleGlobalPosition_message_member_array, // message members VehicleGlobalPosition_init_function, // function to initialize message memory (memory has to be allocated) VehicleGlobalPosition_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t VehicleGlobalPosition_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &VehicleGlobalPosition_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleGlobalPosition>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleGlobalPosition_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, VehicleGlobalPosition)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleGlobalPosition_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_bezier__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/TrajectoryBezier.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/trajectory_bezier__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/trajectory_bezier__functions.h" #include "px4_msgs/msg/trajectory_bezier__struct.h" #ifdef __cplusplus extern "C" { #endif void TrajectoryBezier__rosidl_typesupport_introspection_c__TrajectoryBezier_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__TrajectoryBezier__init(message_memory); } void TrajectoryBezier__rosidl_typesupport_introspection_c__TrajectoryBezier_fini_function(void * message_memory) { px4_msgs__msg__TrajectoryBezier__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember TrajectoryBezier__rosidl_typesupport_introspection_c__TrajectoryBezier_message_member_array[4] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TrajectoryBezier, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "position", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__TrajectoryBezier, position), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yaw", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TrajectoryBezier, yaw), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "delta", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TrajectoryBezier, delta), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers TrajectoryBezier__rosidl_typesupport_introspection_c__TrajectoryBezier_message_members = { "px4_msgs__msg", // message namespace "TrajectoryBezier", // message name 4, // number of fields sizeof(px4_msgs__msg__TrajectoryBezier), TrajectoryBezier__rosidl_typesupport_introspection_c__TrajectoryBezier_message_member_array, // message members TrajectoryBezier__rosidl_typesupport_introspection_c__TrajectoryBezier_init_function, // function to initialize message memory (memory has to be allocated) TrajectoryBezier__rosidl_typesupport_introspection_c__TrajectoryBezier_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t TrajectoryBezier__rosidl_typesupport_introspection_c__TrajectoryBezier_message_type_support_handle = { 0, &TrajectoryBezier__rosidl_typesupport_introspection_c__TrajectoryBezier_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, TrajectoryBezier)() { if (!TrajectoryBezier__rosidl_typesupport_introspection_c__TrajectoryBezier_message_type_support_handle.typesupport_identifier) { TrajectoryBezier__rosidl_typesupport_introspection_c__TrajectoryBezier_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &TrajectoryBezier__rosidl_typesupport_introspection_c__TrajectoryBezier_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/px4_io_status__rosidl_typesupport_introspection_c.h // generated from rosidl_typesupport_introspection_c/resource/idl__rosidl_typesupport_introspection_c.h.em // with input from px4_msgs:msg/Px4IoStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__PX4_IO_STATUS__ROSIDL_TYPESUPPORT_INTROSPECTION_C_H_ #define PX4_MSGS__MSG__PX4_IO_STATUS__ROSIDL_TYPESUPPORT_INTROSPECTION_C_H_ #ifdef __cplusplus extern "C" { #endif #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" ROSIDL_TYPESUPPORT_INTROSPECTION_C_PUBLIC_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, Px4IoStatus)(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__PX4_IO_STATUS__ROSIDL_TYPESUPPORT_INTROSPECTION_C_H_ <file_sep>/install/px4_ros_com/share/px4_ros_com/test/__init__.py /home/navlab-tx2-4/px4_ros_com_ros2/src/px4_ros_com/test/__init__.py<file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensors_status_imu__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/SensorsStatusImu.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSORS_STATUS_IMU__STRUCT_H_ #define PX4_MSGS__MSG__SENSORS_STATUS_IMU__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/SensorsStatusImu in the package px4_msgs. typedef struct px4_msgs__msg__SensorsStatusImu { uint64_t timestamp; uint32_t accel_device_id_primary; uint32_t accel_device_ids[4]; float accel_inconsistency_m_s_s[4]; bool accel_healthy[4]; uint32_t gyro_device_id_primary; uint32_t gyro_device_ids[4]; float gyro_inconsistency_rad_s[4]; bool gyro_healthy[4]; } px4_msgs__msg__SensorsStatusImu; // Struct for a sequence of px4_msgs__msg__SensorsStatusImu. typedef struct px4_msgs__msg__SensorsStatusImu__Sequence { px4_msgs__msg__SensorsStatusImu * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__SensorsStatusImu__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__SENSORS_STATUS_IMU__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu_status__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/VehicleImuStatus.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/vehicle_imu_status__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/vehicle_imu_status__functions.h" #include "px4_msgs/msg/vehicle_imu_status__struct.h" #ifdef __cplusplus extern "C" { #endif void VehicleImuStatus__rosidl_typesupport_introspection_c__VehicleImuStatus_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__VehicleImuStatus__init(message_memory); } void VehicleImuStatus__rosidl_typesupport_introspection_c__VehicleImuStatus_fini_function(void * message_memory) { px4_msgs__msg__VehicleImuStatus__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember VehicleImuStatus__rosidl_typesupport_introspection_c__VehicleImuStatus_message_member_array[17] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleImuStatus, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accel_device_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleImuStatus, accel_device_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gyro_device_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleImuStatus, gyro_device_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accel_clipping", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleImuStatus, accel_clipping), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accel_error_count", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleImuStatus, accel_error_count), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gyro_error_count", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleImuStatus, gyro_error_count), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accel_rate_hz", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleImuStatus, accel_rate_hz), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gyro_rate_hz", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleImuStatus, gyro_rate_hz), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accel_raw_rate_hz", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleImuStatus, accel_raw_rate_hz), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gyro_raw_rate_hz", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleImuStatus, gyro_raw_rate_hz), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accel_vibration_metric", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleImuStatus, accel_vibration_metric), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gyro_vibration_metric", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleImuStatus, gyro_vibration_metric), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gyro_coning_vibration", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleImuStatus, gyro_coning_vibration), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "mean_accel", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleImuStatus, mean_accel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "mean_gyro", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleImuStatus, mean_gyro), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "temperature_accel", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleImuStatus, temperature_accel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "temperature_gyro", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleImuStatus, temperature_gyro), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers VehicleImuStatus__rosidl_typesupport_introspection_c__VehicleImuStatus_message_members = { "px4_msgs__msg", // message namespace "VehicleImuStatus", // message name 17, // number of fields sizeof(px4_msgs__msg__VehicleImuStatus), VehicleImuStatus__rosidl_typesupport_introspection_c__VehicleImuStatus_message_member_array, // message members VehicleImuStatus__rosidl_typesupport_introspection_c__VehicleImuStatus_init_function, // function to initialize message memory (memory has to be allocated) VehicleImuStatus__rosidl_typesupport_introspection_c__VehicleImuStatus_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t VehicleImuStatus__rosidl_typesupport_introspection_c__VehicleImuStatus_message_type_support_handle = { 0, &VehicleImuStatus__rosidl_typesupport_introspection_c__VehicleImuStatus_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, VehicleImuStatus)() { if (!VehicleImuStatus__rosidl_typesupport_introspection_c__VehicleImuStatus_message_type_support_handle.typesupport_identifier) { VehicleImuStatus__rosidl_typesupport_introspection_c__VehicleImuStatus_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &VehicleImuStatus__rosidl_typesupport_introspection_c__VehicleImuStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/multirotor_motor_limits.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/MultirotorMotorLimits.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__MULTIROTOR_MOTOR_LIMITS_H_ #define PX4_MSGS__MSG__MULTIROTOR_MOTOR_LIMITS_H_ #include "px4_msgs/msg/multirotor_motor_limits__struct.h" #include "px4_msgs/msg/multirotor_motor_limits__functions.h" #include "px4_msgs/msg/multirotor_motor_limits__type_support.h" #endif // PX4_MSGS__MSG__MULTIROTOR_MOTOR_LIMITS_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/rc_channels__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/RcChannels.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__RC_CHANNELS__STRUCT_H_ #define PX4_MSGS__MSG__RC_CHANNELS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'FUNCTION_THROTTLE'. enum { px4_msgs__msg__RcChannels__FUNCTION_THROTTLE = 0 }; /// Constant 'FUNCTION_ROLL'. enum { px4_msgs__msg__RcChannels__FUNCTION_ROLL = 1 }; /// Constant 'FUNCTION_PITCH'. enum { px4_msgs__msg__RcChannels__FUNCTION_PITCH = 2 }; /// Constant 'FUNCTION_YAW'. enum { px4_msgs__msg__RcChannels__FUNCTION_YAW = 3 }; /// Constant 'FUNCTION_MODE'. enum { px4_msgs__msg__RcChannels__FUNCTION_MODE = 4 }; /// Constant 'FUNCTION_RETURN'. enum { px4_msgs__msg__RcChannels__FUNCTION_RETURN = 5 }; /// Constant 'FUNCTION_POSCTL'. enum { px4_msgs__msg__RcChannels__FUNCTION_POSCTL = 6 }; /// Constant 'FUNCTION_LOITER'. enum { px4_msgs__msg__RcChannels__FUNCTION_LOITER = 7 }; /// Constant 'FUNCTION_OFFBOARD'. enum { px4_msgs__msg__RcChannels__FUNCTION_OFFBOARD = 8 }; /// Constant 'FUNCTION_ACRO'. enum { px4_msgs__msg__RcChannels__FUNCTION_ACRO = 9 }; /// Constant 'FUNCTION_FLAPS'. enum { px4_msgs__msg__RcChannels__FUNCTION_FLAPS = 10 }; /// Constant 'FUNCTION_AUX_1'. enum { px4_msgs__msg__RcChannels__FUNCTION_AUX_1 = 11 }; /// Constant 'FUNCTION_AUX_2'. enum { px4_msgs__msg__RcChannels__FUNCTION_AUX_2 = 12 }; /// Constant 'FUNCTION_AUX_3'. enum { px4_msgs__msg__RcChannels__FUNCTION_AUX_3 = 13 }; /// Constant 'FUNCTION_AUX_4'. enum { px4_msgs__msg__RcChannels__FUNCTION_AUX_4 = 14 }; /// Constant 'FUNCTION_AUX_5'. enum { px4_msgs__msg__RcChannels__FUNCTION_AUX_5 = 15 }; /// Constant 'FUNCTION_PARAM_1'. enum { px4_msgs__msg__RcChannels__FUNCTION_PARAM_1 = 16 }; /// Constant 'FUNCTION_PARAM_2'. enum { px4_msgs__msg__RcChannels__FUNCTION_PARAM_2 = 17 }; /// Constant 'FUNCTION_PARAM_3_5'. enum { px4_msgs__msg__RcChannels__FUNCTION_PARAM_3_5 = 18 }; /// Constant 'FUNCTION_KILLSWITCH'. enum { px4_msgs__msg__RcChannels__FUNCTION_KILLSWITCH = 19 }; /// Constant 'FUNCTION_TRANSITION'. enum { px4_msgs__msg__RcChannels__FUNCTION_TRANSITION = 20 }; /// Constant 'FUNCTION_GEAR'. enum { px4_msgs__msg__RcChannels__FUNCTION_GEAR = 21 }; /// Constant 'FUNCTION_ARMSWITCH'. enum { px4_msgs__msg__RcChannels__FUNCTION_ARMSWITCH = 22 }; /// Constant 'FUNCTION_STAB'. enum { px4_msgs__msg__RcChannels__FUNCTION_STAB = 23 }; /// Constant 'FUNCTION_AUX_6'. enum { px4_msgs__msg__RcChannels__FUNCTION_AUX_6 = 24 }; /// Constant 'FUNCTION_MAN'. enum { px4_msgs__msg__RcChannels__FUNCTION_MAN = 25 }; // Struct defined in msg/RcChannels in the package px4_msgs. typedef struct px4_msgs__msg__RcChannels { uint64_t timestamp; uint64_t timestamp_last_valid; float channels[18]; uint8_t channel_count; int8_t function[26]; uint8_t rssi; bool signal_lost; uint32_t frame_drop_count; } px4_msgs__msg__RcChannels; // Struct for a sequence of px4_msgs__msg__RcChannels. typedef struct px4_msgs__msg__RcChannels__Sequence { px4_msgs__msg__RcChannels * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__RcChannels__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__RC_CHANNELS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/VehicleCommand.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/vehicle_command__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/vehicle_command__functions.h" #include "px4_msgs/msg/vehicle_command__struct.h" #ifdef __cplusplus extern "C" { #endif void VehicleCommand__rosidl_typesupport_introspection_c__VehicleCommand_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__VehicleCommand__init(message_memory); } void VehicleCommand__rosidl_typesupport_introspection_c__VehicleCommand_fini_function(void * message_memory) { px4_msgs__msg__VehicleCommand__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember VehicleCommand__rosidl_typesupport_introspection_c__VehicleCommand_message_member_array[15] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleCommand, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "param1", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleCommand, param1), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "param2", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleCommand, param2), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "param3", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleCommand, param3), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "param4", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleCommand, param4), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "param5", // name rosidl_typesupport_introspection_c__ROS_TYPE_DOUBLE, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleCommand, param5), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "param6", // name rosidl_typesupport_introspection_c__ROS_TYPE_DOUBLE, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleCommand, param6), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "param7", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleCommand, param7), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "command", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleCommand, command), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "target_system", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleCommand, target_system), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "target_component", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleCommand, target_component), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "source_system", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleCommand, source_system), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "source_component", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleCommand, source_component), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "confirmation", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleCommand, confirmation), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "from_external", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleCommand, from_external), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers VehicleCommand__rosidl_typesupport_introspection_c__VehicleCommand_message_members = { "px4_msgs__msg", // message namespace "VehicleCommand", // message name 15, // number of fields sizeof(px4_msgs__msg__VehicleCommand), VehicleCommand__rosidl_typesupport_introspection_c__VehicleCommand_message_member_array, // message members VehicleCommand__rosidl_typesupport_introspection_c__VehicleCommand_init_function, // function to initialize message memory (memory has to be allocated) VehicleCommand__rosidl_typesupport_introspection_c__VehicleCommand_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t VehicleCommand__rosidl_typesupport_introspection_c__VehicleCommand_message_type_support_handle = { 0, &VehicleCommand__rosidl_typesupport_introspection_c__VehicleCommand_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, VehicleCommand)() { if (!VehicleCommand__rosidl_typesupport_introspection_c__VehicleCommand_message_type_support_handle.typesupport_identifier) { VehicleCommand__rosidl_typesupport_introspection_c__VehicleCommand_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &VehicleCommand__rosidl_typesupport_introspection_c__VehicleCommand_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_land_detected__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleLandDetected.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_land_detected__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__VehicleLandDetected__init(px4_msgs__msg__VehicleLandDetected * msg) { if (!msg) { return false; } // timestamp // alt_max // freefall // ground_contact // maybe_landed // landed // in_ground_effect return true; } void px4_msgs__msg__VehicleLandDetected__fini(px4_msgs__msg__VehicleLandDetected * msg) { if (!msg) { return; } // timestamp // alt_max // freefall // ground_contact // maybe_landed // landed // in_ground_effect } px4_msgs__msg__VehicleLandDetected * px4_msgs__msg__VehicleLandDetected__create() { px4_msgs__msg__VehicleLandDetected * msg = (px4_msgs__msg__VehicleLandDetected *)malloc(sizeof(px4_msgs__msg__VehicleLandDetected)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleLandDetected)); bool success = px4_msgs__msg__VehicleLandDetected__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleLandDetected__destroy(px4_msgs__msg__VehicleLandDetected * msg) { if (msg) { px4_msgs__msg__VehicleLandDetected__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleLandDetected__Sequence__init(px4_msgs__msg__VehicleLandDetected__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleLandDetected * data = NULL; if (size) { data = (px4_msgs__msg__VehicleLandDetected *)calloc(size, sizeof(px4_msgs__msg__VehicleLandDetected)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleLandDetected__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleLandDetected__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleLandDetected__Sequence__fini(px4_msgs__msg__VehicleLandDetected__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleLandDetected__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleLandDetected__Sequence * px4_msgs__msg__VehicleLandDetected__Sequence__create(size_t size) { px4_msgs__msg__VehicleLandDetected__Sequence * array = (px4_msgs__msg__VehicleLandDetected__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleLandDetected__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleLandDetected__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleLandDetected__Sequence__destroy(px4_msgs__msg__VehicleLandDetected__Sequence * array) { if (array) { px4_msgs__msg__VehicleLandDetected__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/navigator_mission_item.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__NAVIGATOR_MISSION_ITEM_HPP_ #define PX4_MSGS__MSG__NAVIGATOR_MISSION_ITEM_HPP_ #include "px4_msgs/msg/navigator_mission_item__struct.hpp" #include "px4_msgs/msg/navigator_mission_item__traits.hpp" #endif // PX4_MSGS__MSG__NAVIGATOR_MISSION_ITEM_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/OrbTestMediumQueue.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORB_TEST_MEDIUM_QUEUE_H_ #define PX4_MSGS__MSG__ORB_TEST_MEDIUM_QUEUE_H_ #include "px4_msgs/msg/orb_test_medium_queue__struct.h" #include "px4_msgs/msg/orb_test_medium_queue__functions.h" #include "px4_msgs/msg/orb_test_medium_queue__type_support.h" #endif // PX4_MSGS__MSG__ORB_TEST_MEDIUM_QUEUE_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/gps_inject_data__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/GpsInjectData.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GPS_INJECT_DATA__FUNCTIONS_H_ #define PX4_MSGS__MSG__GPS_INJECT_DATA__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/gps_inject_data__struct.h" /// Initialize msg/GpsInjectData message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__GpsInjectData * )) before or use * px4_msgs__msg__GpsInjectData__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__GpsInjectData__init(px4_msgs__msg__GpsInjectData * msg); /// Finalize msg/GpsInjectData message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__GpsInjectData__fini(px4_msgs__msg__GpsInjectData * msg); /// Create msg/GpsInjectData message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__GpsInjectData__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__GpsInjectData * px4_msgs__msg__GpsInjectData__create(); /// Destroy msg/GpsInjectData message. /** * It calls * px4_msgs__msg__GpsInjectData__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__GpsInjectData__destroy(px4_msgs__msg__GpsInjectData * msg); /// Initialize array of msg/GpsInjectData messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__GpsInjectData__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__GpsInjectData__Sequence__init(px4_msgs__msg__GpsInjectData__Sequence * array, size_t size); /// Finalize array of msg/GpsInjectData messages. /** * It calls * px4_msgs__msg__GpsInjectData__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__GpsInjectData__Sequence__fini(px4_msgs__msg__GpsInjectData__Sequence * array); /// Create array of msg/GpsInjectData messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__GpsInjectData__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__GpsInjectData__Sequence * px4_msgs__msg__GpsInjectData__Sequence__create(size_t size); /// Destroy array of msg/GpsInjectData messages. /** * It calls * px4_msgs__msg__GpsInjectData__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__GpsInjectData__Sequence__destroy(px4_msgs__msg__GpsInjectData__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__GPS_INJECT_DATA__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/gps_inject_data__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/GpsInjectData.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GPS_INJECT_DATA__STRUCT_HPP_ #define PX4_MSGS__MSG__GPS_INJECT_DATA__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__GpsInjectData __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__GpsInjectData __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct GpsInjectData_ { using Type = GpsInjectData_<ContainerAllocator>; explicit GpsInjectData_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->len = 0; this->flags = 0; std::fill<typename std::array<uint8_t, 182>::iterator, uint8_t>(this->data.begin(), this->data.end(), 0); } } explicit GpsInjectData_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : data(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->len = 0; this->flags = 0; std::fill<typename std::array<uint8_t, 182>::iterator, uint8_t>(this->data.begin(), this->data.end(), 0); } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _len_type = uint8_t; _len_type len; using _flags_type = uint8_t; _flags_type flags; using _data_type = std::array<uint8_t, 182>; _data_type data; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__len( const uint8_t & _arg) { this->len = _arg; return *this; } Type & set__flags( const uint8_t & _arg) { this->flags = _arg; return *this; } Type & set__data( const std::array<uint8_t, 182> & _arg) { this->data = _arg; return *this; } // constant declarations static constexpr uint8_t ORB_QUEUE_LENGTH = 8u; // pointer types using RawPtr = px4_msgs::msg::GpsInjectData_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::GpsInjectData_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::GpsInjectData_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::GpsInjectData_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::GpsInjectData_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::GpsInjectData_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::GpsInjectData_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::GpsInjectData_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::GpsInjectData_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::GpsInjectData_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__GpsInjectData std::shared_ptr<px4_msgs::msg::GpsInjectData_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__GpsInjectData std::shared_ptr<px4_msgs::msg::GpsInjectData_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const GpsInjectData_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->len != other.len) { return false; } if (this->flags != other.flags) { return false; } if (this->data != other.data) { return false; } return true; } bool operator!=(const GpsInjectData_ & other) const { return !this->operator==(other); } }; // struct GpsInjectData_ // alias to use template instance with default allocator using GpsInjectData = px4_msgs::msg::GpsInjectData_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t GpsInjectData_<ContainerAllocator>::ORB_QUEUE_LENGTH; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__GPS_INJECT_DATA__STRUCT_HPP_ <file_sep>/install/px4_msgs/share/px4_msgs/local_setup.zsh /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_msgs/ament_cmake_environment_hooks/local_setup.zsh<file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/radio_status__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/RadioStatus.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/radio_status__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/radio_status__functions.h" #include "px4_msgs/msg/radio_status__struct.h" #ifdef __cplusplus extern "C" { #endif void RadioStatus__rosidl_typesupport_introspection_c__RadioStatus_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__RadioStatus__init(message_memory); } void RadioStatus__rosidl_typesupport_introspection_c__RadioStatus_fini_function(void * message_memory) { px4_msgs__msg__RadioStatus__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember RadioStatus__rosidl_typesupport_introspection_c__RadioStatus_message_member_array[8] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__RadioStatus, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rssi", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__RadioStatus, rssi), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "remote_rssi", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__RadioStatus, remote_rssi), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "txbuf", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__RadioStatus, txbuf), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "noise", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__RadioStatus, noise), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "remote_noise", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__RadioStatus, remote_noise), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rxerrors", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__RadioStatus, rxerrors), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "fix", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__RadioStatus, fix), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers RadioStatus__rosidl_typesupport_introspection_c__RadioStatus_message_members = { "px4_msgs__msg", // message namespace "RadioStatus", // message name 8, // number of fields sizeof(px4_msgs__msg__RadioStatus), RadioStatus__rosidl_typesupport_introspection_c__RadioStatus_message_member_array, // message members RadioStatus__rosidl_typesupport_introspection_c__RadioStatus_init_function, // function to initialize message memory (memory has to be allocated) RadioStatus__rosidl_typesupport_introspection_c__RadioStatus_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t RadioStatus__rosidl_typesupport_introspection_c__RadioStatus_message_type_support_handle = { 0, &RadioStatus__rosidl_typesupport_introspection_c__RadioStatus_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, RadioStatus)() { if (!RadioStatus__rosidl_typesupport_introspection_c__RadioStatus_message_type_support_handle.typesupport_identifier) { RadioStatus__rosidl_typesupport_introspection_c__RadioStatus_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &RadioStatus__rosidl_typesupport_introspection_c__RadioStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/sensor_combined.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_COMBINED_HPP_ #define PX4_MSGS__MSG__SENSOR_COMBINED_HPP_ #include "px4_msgs/msg/sensor_combined__struct.hpp" #include "px4_msgs/msg/sensor_combined__traits.hpp" #endif // PX4_MSGS__MSG__SENSOR_COMBINED_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_acceleration.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleAcceleration.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ACCELERATION_H_ #define PX4_MSGS__MSG__VEHICLE_ACCELERATION_H_ #include "px4_msgs/msg/vehicle_acceleration__struct.h" #include "px4_msgs/msg/vehicle_acceleration__functions.h" #include "px4_msgs/msg/vehicle_acceleration__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_ACCELERATION_H_ <file_sep>/build/multi_rtd_interfaces/CMakeFiles/multi_rtd_interfaces__cpp.dir/cmake_clean.cmake file(REMOVE_RECURSE "CMakeFiles/multi_rtd_interfaces__cpp" "rosidl_generator_cpp/multi_rtd_interfaces/msg/robot_trajectory.hpp" "rosidl_generator_cpp/multi_rtd_interfaces/msg/robot_trajectory__struct.hpp" "rosidl_generator_cpp/multi_rtd_interfaces/msg/robot_trajectory__traits.hpp" ) # Per-language clean rules from dependency scanning. foreach(lang ) include(CMakeFiles/multi_rtd_interfaces__cpp.dir/cmake_clean_${lang}.cmake OPTIONAL) endforeach() <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_combined__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/SensorCombined.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/sensor_combined__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__SensorCombined__init(px4_msgs__msg__SensorCombined * msg) { if (!msg) { return false; } // timestamp // gyro_rad // gyro_integral_dt // accelerometer_timestamp_relative // accelerometer_m_s2 // accelerometer_integral_dt // accelerometer_clipping return true; } void px4_msgs__msg__SensorCombined__fini(px4_msgs__msg__SensorCombined * msg) { if (!msg) { return; } // timestamp // gyro_rad // gyro_integral_dt // accelerometer_timestamp_relative // accelerometer_m_s2 // accelerometer_integral_dt // accelerometer_clipping } px4_msgs__msg__SensorCombined * px4_msgs__msg__SensorCombined__create() { px4_msgs__msg__SensorCombined * msg = (px4_msgs__msg__SensorCombined *)malloc(sizeof(px4_msgs__msg__SensorCombined)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__SensorCombined)); bool success = px4_msgs__msg__SensorCombined__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__SensorCombined__destroy(px4_msgs__msg__SensorCombined * msg) { if (msg) { px4_msgs__msg__SensorCombined__fini(msg); } free(msg); } bool px4_msgs__msg__SensorCombined__Sequence__init(px4_msgs__msg__SensorCombined__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__SensorCombined * data = NULL; if (size) { data = (px4_msgs__msg__SensorCombined *)calloc(size, sizeof(px4_msgs__msg__SensorCombined)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__SensorCombined__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__SensorCombined__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__SensorCombined__Sequence__fini(px4_msgs__msg__SensorCombined__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__SensorCombined__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__SensorCombined__Sequence * px4_msgs__msg__SensorCombined__Sequence__create(size_t size) { px4_msgs__msg__SensorCombined__Sequence * array = (px4_msgs__msg__SensorCombined__Sequence *)malloc(sizeof(px4_msgs__msg__SensorCombined__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__SensorCombined__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__SensorCombined__Sequence__destroy(px4_msgs__msg__SensorCombined__Sequence * array) { if (array) { px4_msgs__msg__SensorCombined__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/input_rc__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/InputRc.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/input_rc__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/input_rc__functions.h" #include "px4_msgs/msg/input_rc__struct.h" #ifdef __cplusplus extern "C" { #endif void InputRc__rosidl_typesupport_introspection_c__InputRc_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__InputRc__init(message_memory); } void InputRc__rosidl_typesupport_introspection_c__InputRc_fini_function(void * message_memory) { px4_msgs__msg__InputRc__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember InputRc__rosidl_typesupport_introspection_c__InputRc_message_member_array[11] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__InputRc, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_last_signal", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__InputRc, timestamp_last_signal), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "channel_count", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__InputRc, channel_count), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rssi", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__InputRc, rssi), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rc_failsafe", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__InputRc, rc_failsafe), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rc_lost", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__InputRc, rc_lost), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rc_lost_frame_count", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__InputRc, rc_lost_frame_count), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rc_total_frame_count", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__InputRc, rc_total_frame_count), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rc_ppm_frame_length", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__InputRc, rc_ppm_frame_length), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "input_source", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__InputRc, input_source), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "values", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message true, // is array 18, // array size false, // is upper bound offsetof(px4_msgs__msg__InputRc, values), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers InputRc__rosidl_typesupport_introspection_c__InputRc_message_members = { "px4_msgs__msg", // message namespace "InputRc", // message name 11, // number of fields sizeof(px4_msgs__msg__InputRc), InputRc__rosidl_typesupport_introspection_c__InputRc_message_member_array, // message members InputRc__rosidl_typesupport_introspection_c__InputRc_init_function, // function to initialize message memory (memory has to be allocated) InputRc__rosidl_typesupport_introspection_c__InputRc_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t InputRc__rosidl_typesupport_introspection_c__InputRc_message_type_support_handle = { 0, &InputRc__rosidl_typesupport_introspection_c__InputRc_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, InputRc)() { if (!InputRc__rosidl_typesupport_introspection_c__InputRc_message_type_support_handle.typesupport_identifier) { InputRc__rosidl_typesupport_introspection_c__InputRc_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &InputRc__rosidl_typesupport_introspection_c__InputRc_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_px4_io_status.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/Px4IoStatus.idl # generated code does not contain a copyright notice # Import statements for member types # Member 'actuators' # Member 'servos' # Member 'raw_inputs' import numpy # noqa: E402, I100 import rosidl_parser.definition # noqa: E402, I100 class Metaclass_Px4IoStatus(type): """Metaclass of message 'Px4IoStatus'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.Px4IoStatus') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__px4_io_status cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__px4_io_status cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__px4_io_status cls._TYPE_SUPPORT = module.type_support_msg__msg__px4_io_status cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__px4_io_status @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class Px4IoStatus(metaclass=Metaclass_Px4IoStatus): """Message class 'Px4IoStatus'.""" __slots__ = [ '_timestamp', '_free_memory_bytes', '_voltage_v', '_rssi_v', '_status_outputs_armed', '_status_override', '_status_rc_ok', '_status_rc_ppm', '_status_rc_dsm', '_status_rc_sbus', '_status_fmu_ok', '_status_raw_pwm', '_status_mixer_ok', '_status_arm_sync', '_status_init_ok', '_status_failsafe', '_status_safety_off', '_status_fmu_initialized', '_status_rc_st24', '_status_rc_sumd', '_alarm_vbatt_low', '_alarm_temperature', '_alarm_servo_current', '_alarm_acc_current', '_alarm_fmu_lost', '_alarm_rc_lost', '_alarm_pwm_error', '_alarm_vservo_fault', '_arming_io_arm_ok', '_arming_fmu_armed', '_arming_fmu_prearmed', '_arming_manual_override_ok', '_arming_failsafe_custom', '_arming_inair_restart_ok', '_arming_always_pwm_enable', '_arming_rc_handling_disabled', '_arming_lockdown', '_arming_force_failsafe', '_arming_termination_failsafe', '_arming_override_immediate', '_actuators', '_servos', '_raw_inputs', ] _fields_and_field_types = { 'timestamp': 'uint64', 'free_memory_bytes': 'uint16', 'voltage_v': 'float', 'rssi_v': 'float', 'status_outputs_armed': 'boolean', 'status_override': 'boolean', 'status_rc_ok': 'boolean', 'status_rc_ppm': 'boolean', 'status_rc_dsm': 'boolean', 'status_rc_sbus': 'boolean', 'status_fmu_ok': 'boolean', 'status_raw_pwm': 'boolean', 'status_mixer_ok': 'boolean', 'status_arm_sync': 'boolean', 'status_init_ok': 'boolean', 'status_failsafe': 'boolean', 'status_safety_off': 'boolean', 'status_fmu_initialized': 'boolean', 'status_rc_st24': 'boolean', 'status_rc_sumd': 'boolean', 'alarm_vbatt_low': 'boolean', 'alarm_temperature': 'boolean', 'alarm_servo_current': 'boolean', 'alarm_acc_current': 'boolean', 'alarm_fmu_lost': 'boolean', 'alarm_rc_lost': 'boolean', 'alarm_pwm_error': 'boolean', 'alarm_vservo_fault': 'boolean', 'arming_io_arm_ok': 'boolean', 'arming_fmu_armed': 'boolean', 'arming_fmu_prearmed': 'boolean', 'arming_manual_override_ok': 'boolean', 'arming_failsafe_custom': 'boolean', 'arming_inair_restart_ok': 'boolean', 'arming_always_pwm_enable': 'boolean', 'arming_rc_handling_disabled': 'boolean', 'arming_lockdown': 'boolean', 'arming_force_failsafe': 'boolean', 'arming_termination_failsafe': 'boolean', 'arming_override_immediate': 'boolean', 'actuators': 'int16[8]', 'servos': 'uint16[8]', 'raw_inputs': 'uint16[18]', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('int16'), 8), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('uint16'), 8), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('uint16'), 18), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.free_memory_bytes = kwargs.get('free_memory_bytes', int()) self.voltage_v = kwargs.get('voltage_v', float()) self.rssi_v = kwargs.get('rssi_v', float()) self.status_outputs_armed = kwargs.get('status_outputs_armed', bool()) self.status_override = kwargs.get('status_override', bool()) self.status_rc_ok = kwargs.get('status_rc_ok', bool()) self.status_rc_ppm = kwargs.get('status_rc_ppm', bool()) self.status_rc_dsm = kwargs.get('status_rc_dsm', bool()) self.status_rc_sbus = kwargs.get('status_rc_sbus', bool()) self.status_fmu_ok = kwargs.get('status_fmu_ok', bool()) self.status_raw_pwm = kwargs.get('status_raw_pwm', bool()) self.status_mixer_ok = kwargs.get('status_mixer_ok', bool()) self.status_arm_sync = kwargs.get('status_arm_sync', bool()) self.status_init_ok = kwargs.get('status_init_ok', bool()) self.status_failsafe = kwargs.get('status_failsafe', bool()) self.status_safety_off = kwargs.get('status_safety_off', bool()) self.status_fmu_initialized = kwargs.get('status_fmu_initialized', bool()) self.status_rc_st24 = kwargs.get('status_rc_st24', bool()) self.status_rc_sumd = kwargs.get('status_rc_sumd', bool()) self.alarm_vbatt_low = kwargs.get('alarm_vbatt_low', bool()) self.alarm_temperature = kwargs.get('alarm_temperature', bool()) self.alarm_servo_current = kwargs.get('alarm_servo_current', bool()) self.alarm_acc_current = kwargs.get('alarm_acc_current', bool()) self.alarm_fmu_lost = kwargs.get('alarm_fmu_lost', bool()) self.alarm_rc_lost = kwargs.get('alarm_rc_lost', bool()) self.alarm_pwm_error = kwargs.get('alarm_pwm_error', bool()) self.alarm_vservo_fault = kwargs.get('alarm_vservo_fault', bool()) self.arming_io_arm_ok = kwargs.get('arming_io_arm_ok', bool()) self.arming_fmu_armed = kwargs.get('arming_fmu_armed', bool()) self.arming_fmu_prearmed = kwargs.get('arming_fmu_prearmed', bool()) self.arming_manual_override_ok = kwargs.get('arming_manual_override_ok', bool()) self.arming_failsafe_custom = kwargs.get('arming_failsafe_custom', bool()) self.arming_inair_restart_ok = kwargs.get('arming_inair_restart_ok', bool()) self.arming_always_pwm_enable = kwargs.get('arming_always_pwm_enable', bool()) self.arming_rc_handling_disabled = kwargs.get('arming_rc_handling_disabled', bool()) self.arming_lockdown = kwargs.get('arming_lockdown', bool()) self.arming_force_failsafe = kwargs.get('arming_force_failsafe', bool()) self.arming_termination_failsafe = kwargs.get('arming_termination_failsafe', bool()) self.arming_override_immediate = kwargs.get('arming_override_immediate', bool()) if 'actuators' not in kwargs: self.actuators = numpy.zeros(8, dtype=numpy.int16) else: self.actuators = numpy.array(kwargs.get('actuators'), dtype=numpy.int16) assert self.actuators.shape == (8, ) if 'servos' not in kwargs: self.servos = numpy.zeros(8, dtype=numpy.uint16) else: self.servos = numpy.array(kwargs.get('servos'), dtype=numpy.uint16) assert self.servos.shape == (8, ) if 'raw_inputs' not in kwargs: self.raw_inputs = numpy.zeros(18, dtype=numpy.uint16) else: self.raw_inputs = numpy.array(kwargs.get('raw_inputs'), dtype=numpy.uint16) assert self.raw_inputs.shape == (18, ) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.free_memory_bytes != other.free_memory_bytes: return False if self.voltage_v != other.voltage_v: return False if self.rssi_v != other.rssi_v: return False if self.status_outputs_armed != other.status_outputs_armed: return False if self.status_override != other.status_override: return False if self.status_rc_ok != other.status_rc_ok: return False if self.status_rc_ppm != other.status_rc_ppm: return False if self.status_rc_dsm != other.status_rc_dsm: return False if self.status_rc_sbus != other.status_rc_sbus: return False if self.status_fmu_ok != other.status_fmu_ok: return False if self.status_raw_pwm != other.status_raw_pwm: return False if self.status_mixer_ok != other.status_mixer_ok: return False if self.status_arm_sync != other.status_arm_sync: return False if self.status_init_ok != other.status_init_ok: return False if self.status_failsafe != other.status_failsafe: return False if self.status_safety_off != other.status_safety_off: return False if self.status_fmu_initialized != other.status_fmu_initialized: return False if self.status_rc_st24 != other.status_rc_st24: return False if self.status_rc_sumd != other.status_rc_sumd: return False if self.alarm_vbatt_low != other.alarm_vbatt_low: return False if self.alarm_temperature != other.alarm_temperature: return False if self.alarm_servo_current != other.alarm_servo_current: return False if self.alarm_acc_current != other.alarm_acc_current: return False if self.alarm_fmu_lost != other.alarm_fmu_lost: return False if self.alarm_rc_lost != other.alarm_rc_lost: return False if self.alarm_pwm_error != other.alarm_pwm_error: return False if self.alarm_vservo_fault != other.alarm_vservo_fault: return False if self.arming_io_arm_ok != other.arming_io_arm_ok: return False if self.arming_fmu_armed != other.arming_fmu_armed: return False if self.arming_fmu_prearmed != other.arming_fmu_prearmed: return False if self.arming_manual_override_ok != other.arming_manual_override_ok: return False if self.arming_failsafe_custom != other.arming_failsafe_custom: return False if self.arming_inair_restart_ok != other.arming_inair_restart_ok: return False if self.arming_always_pwm_enable != other.arming_always_pwm_enable: return False if self.arming_rc_handling_disabled != other.arming_rc_handling_disabled: return False if self.arming_lockdown != other.arming_lockdown: return False if self.arming_force_failsafe != other.arming_force_failsafe: return False if self.arming_termination_failsafe != other.arming_termination_failsafe: return False if self.arming_override_immediate != other.arming_override_immediate: return False if all(self.actuators != other.actuators): return False if all(self.servos != other.servos): return False if all(self.raw_inputs != other.raw_inputs): return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def free_memory_bytes(self): """Message field 'free_memory_bytes'.""" return self._free_memory_bytes @free_memory_bytes.setter def free_memory_bytes(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'free_memory_bytes' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'free_memory_bytes' field must be an unsigned integer in [0, 65535]" self._free_memory_bytes = value @property def voltage_v(self): """Message field 'voltage_v'.""" return self._voltage_v @voltage_v.setter def voltage_v(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'voltage_v' field must be of type 'float'" self._voltage_v = value @property def rssi_v(self): """Message field 'rssi_v'.""" return self._rssi_v @rssi_v.setter def rssi_v(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'rssi_v' field must be of type 'float'" self._rssi_v = value @property def status_outputs_armed(self): """Message field 'status_outputs_armed'.""" return self._status_outputs_armed @status_outputs_armed.setter def status_outputs_armed(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'status_outputs_armed' field must be of type 'bool'" self._status_outputs_armed = value @property def status_override(self): """Message field 'status_override'.""" return self._status_override @status_override.setter def status_override(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'status_override' field must be of type 'bool'" self._status_override = value @property def status_rc_ok(self): """Message field 'status_rc_ok'.""" return self._status_rc_ok @status_rc_ok.setter def status_rc_ok(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'status_rc_ok' field must be of type 'bool'" self._status_rc_ok = value @property def status_rc_ppm(self): """Message field 'status_rc_ppm'.""" return self._status_rc_ppm @status_rc_ppm.setter def status_rc_ppm(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'status_rc_ppm' field must be of type 'bool'" self._status_rc_ppm = value @property def status_rc_dsm(self): """Message field 'status_rc_dsm'.""" return self._status_rc_dsm @status_rc_dsm.setter def status_rc_dsm(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'status_rc_dsm' field must be of type 'bool'" self._status_rc_dsm = value @property def status_rc_sbus(self): """Message field 'status_rc_sbus'.""" return self._status_rc_sbus @status_rc_sbus.setter def status_rc_sbus(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'status_rc_sbus' field must be of type 'bool'" self._status_rc_sbus = value @property def status_fmu_ok(self): """Message field 'status_fmu_ok'.""" return self._status_fmu_ok @status_fmu_ok.setter def status_fmu_ok(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'status_fmu_ok' field must be of type 'bool'" self._status_fmu_ok = value @property def status_raw_pwm(self): """Message field 'status_raw_pwm'.""" return self._status_raw_pwm @status_raw_pwm.setter def status_raw_pwm(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'status_raw_pwm' field must be of type 'bool'" self._status_raw_pwm = value @property def status_mixer_ok(self): """Message field 'status_mixer_ok'.""" return self._status_mixer_ok @status_mixer_ok.setter def status_mixer_ok(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'status_mixer_ok' field must be of type 'bool'" self._status_mixer_ok = value @property def status_arm_sync(self): """Message field 'status_arm_sync'.""" return self._status_arm_sync @status_arm_sync.setter def status_arm_sync(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'status_arm_sync' field must be of type 'bool'" self._status_arm_sync = value @property def status_init_ok(self): """Message field 'status_init_ok'.""" return self._status_init_ok @status_init_ok.setter def status_init_ok(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'status_init_ok' field must be of type 'bool'" self._status_init_ok = value @property def status_failsafe(self): """Message field 'status_failsafe'.""" return self._status_failsafe @status_failsafe.setter def status_failsafe(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'status_failsafe' field must be of type 'bool'" self._status_failsafe = value @property def status_safety_off(self): """Message field 'status_safety_off'.""" return self._status_safety_off @status_safety_off.setter def status_safety_off(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'status_safety_off' field must be of type 'bool'" self._status_safety_off = value @property def status_fmu_initialized(self): """Message field 'status_fmu_initialized'.""" return self._status_fmu_initialized @status_fmu_initialized.setter def status_fmu_initialized(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'status_fmu_initialized' field must be of type 'bool'" self._status_fmu_initialized = value @property def status_rc_st24(self): """Message field 'status_rc_st24'.""" return self._status_rc_st24 @status_rc_st24.setter def status_rc_st24(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'status_rc_st24' field must be of type 'bool'" self._status_rc_st24 = value @property def status_rc_sumd(self): """Message field 'status_rc_sumd'.""" return self._status_rc_sumd @status_rc_sumd.setter def status_rc_sumd(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'status_rc_sumd' field must be of type 'bool'" self._status_rc_sumd = value @property def alarm_vbatt_low(self): """Message field 'alarm_vbatt_low'.""" return self._alarm_vbatt_low @alarm_vbatt_low.setter def alarm_vbatt_low(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'alarm_vbatt_low' field must be of type 'bool'" self._alarm_vbatt_low = value @property def alarm_temperature(self): """Message field 'alarm_temperature'.""" return self._alarm_temperature @alarm_temperature.setter def alarm_temperature(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'alarm_temperature' field must be of type 'bool'" self._alarm_temperature = value @property def alarm_servo_current(self): """Message field 'alarm_servo_current'.""" return self._alarm_servo_current @alarm_servo_current.setter def alarm_servo_current(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'alarm_servo_current' field must be of type 'bool'" self._alarm_servo_current = value @property def alarm_acc_current(self): """Message field 'alarm_acc_current'.""" return self._alarm_acc_current @alarm_acc_current.setter def alarm_acc_current(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'alarm_acc_current' field must be of type 'bool'" self._alarm_acc_current = value @property def alarm_fmu_lost(self): """Message field 'alarm_fmu_lost'.""" return self._alarm_fmu_lost @alarm_fmu_lost.setter def alarm_fmu_lost(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'alarm_fmu_lost' field must be of type 'bool'" self._alarm_fmu_lost = value @property def alarm_rc_lost(self): """Message field 'alarm_rc_lost'.""" return self._alarm_rc_lost @alarm_rc_lost.setter def alarm_rc_lost(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'alarm_rc_lost' field must be of type 'bool'" self._alarm_rc_lost = value @property def alarm_pwm_error(self): """Message field 'alarm_pwm_error'.""" return self._alarm_pwm_error @alarm_pwm_error.setter def alarm_pwm_error(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'alarm_pwm_error' field must be of type 'bool'" self._alarm_pwm_error = value @property def alarm_vservo_fault(self): """Message field 'alarm_vservo_fault'.""" return self._alarm_vservo_fault @alarm_vservo_fault.setter def alarm_vservo_fault(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'alarm_vservo_fault' field must be of type 'bool'" self._alarm_vservo_fault = value @property def arming_io_arm_ok(self): """Message field 'arming_io_arm_ok'.""" return self._arming_io_arm_ok @arming_io_arm_ok.setter def arming_io_arm_ok(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'arming_io_arm_ok' field must be of type 'bool'" self._arming_io_arm_ok = value @property def arming_fmu_armed(self): """Message field 'arming_fmu_armed'.""" return self._arming_fmu_armed @arming_fmu_armed.setter def arming_fmu_armed(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'arming_fmu_armed' field must be of type 'bool'" self._arming_fmu_armed = value @property def arming_fmu_prearmed(self): """Message field 'arming_fmu_prearmed'.""" return self._arming_fmu_prearmed @arming_fmu_prearmed.setter def arming_fmu_prearmed(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'arming_fmu_prearmed' field must be of type 'bool'" self._arming_fmu_prearmed = value @property def arming_manual_override_ok(self): """Message field 'arming_manual_override_ok'.""" return self._arming_manual_override_ok @arming_manual_override_ok.setter def arming_manual_override_ok(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'arming_manual_override_ok' field must be of type 'bool'" self._arming_manual_override_ok = value @property def arming_failsafe_custom(self): """Message field 'arming_failsafe_custom'.""" return self._arming_failsafe_custom @arming_failsafe_custom.setter def arming_failsafe_custom(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'arming_failsafe_custom' field must be of type 'bool'" self._arming_failsafe_custom = value @property def arming_inair_restart_ok(self): """Message field 'arming_inair_restart_ok'.""" return self._arming_inair_restart_ok @arming_inair_restart_ok.setter def arming_inair_restart_ok(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'arming_inair_restart_ok' field must be of type 'bool'" self._arming_inair_restart_ok = value @property def arming_always_pwm_enable(self): """Message field 'arming_always_pwm_enable'.""" return self._arming_always_pwm_enable @arming_always_pwm_enable.setter def arming_always_pwm_enable(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'arming_always_pwm_enable' field must be of type 'bool'" self._arming_always_pwm_enable = value @property def arming_rc_handling_disabled(self): """Message field 'arming_rc_handling_disabled'.""" return self._arming_rc_handling_disabled @arming_rc_handling_disabled.setter def arming_rc_handling_disabled(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'arming_rc_handling_disabled' field must be of type 'bool'" self._arming_rc_handling_disabled = value @property def arming_lockdown(self): """Message field 'arming_lockdown'.""" return self._arming_lockdown @arming_lockdown.setter def arming_lockdown(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'arming_lockdown' field must be of type 'bool'" self._arming_lockdown = value @property def arming_force_failsafe(self): """Message field 'arming_force_failsafe'.""" return self._arming_force_failsafe @arming_force_failsafe.setter def arming_force_failsafe(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'arming_force_failsafe' field must be of type 'bool'" self._arming_force_failsafe = value @property def arming_termination_failsafe(self): """Message field 'arming_termination_failsafe'.""" return self._arming_termination_failsafe @arming_termination_failsafe.setter def arming_termination_failsafe(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'arming_termination_failsafe' field must be of type 'bool'" self._arming_termination_failsafe = value @property def arming_override_immediate(self): """Message field 'arming_override_immediate'.""" return self._arming_override_immediate @arming_override_immediate.setter def arming_override_immediate(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'arming_override_immediate' field must be of type 'bool'" self._arming_override_immediate = value @property def actuators(self): """Message field 'actuators'.""" return self._actuators @actuators.setter def actuators(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.int16, \ "The 'actuators' numpy.ndarray() must have the dtype of 'numpy.int16'" assert value.size == 8, \ "The 'actuators' numpy.ndarray() must have a size of 8" self._actuators = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 8 and all(isinstance(v, int) for v in value) and all(val >= -32768 and val < 32768 for val in value)), \ "The 'actuators' field must be a set or sequence with length 8 and each value of type 'int' and each integer in [-32768, 32767]" self._actuators = numpy.array(value, dtype=numpy.int16) @property def servos(self): """Message field 'servos'.""" return self._servos @servos.setter def servos(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.uint16, \ "The 'servos' numpy.ndarray() must have the dtype of 'numpy.uint16'" assert value.size == 8, \ "The 'servos' numpy.ndarray() must have a size of 8" self._servos = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 8 and all(isinstance(v, int) for v in value) and all(val >= 0 and val < 65536 for val in value)), \ "The 'servos' field must be a set or sequence with length 8 and each value of type 'int' and each unsigned integer in [0, 65535]" self._servos = numpy.array(value, dtype=numpy.uint16) @property def raw_inputs(self): """Message field 'raw_inputs'.""" return self._raw_inputs @raw_inputs.setter def raw_inputs(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.uint16, \ "The 'raw_inputs' numpy.ndarray() must have the dtype of 'numpy.uint16'" assert value.size == 18, \ "The 'raw_inputs' numpy.ndarray() must have a size of 18" self._raw_inputs = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 18 and all(isinstance(v, int) for v in value) and all(val >= 0 and val < 65536 for val in value)), \ "The 'raw_inputs' field must be a set or sequence with length 18 and each value of type 'int' and each unsigned integer in [0, 65535]" self._raw_inputs = numpy.array(value, dtype=numpy.uint16) <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_onboard_computer_status_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/OnboardComputerStatus.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/onboard_computer_status__struct.h" #include "px4_msgs/msg/onboard_computer_status__functions.h" #include "rosidl_generator_c/primitives_sequence.h" #include "rosidl_generator_c/primitives_sequence_functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__onboard_computer_status__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[60]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._onboard_computer_status.OnboardComputerStatus", full_classname_dest, 59) == 0); } px4_msgs__msg__OnboardComputerStatus * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // uptime PyObject * field = PyObject_GetAttrString(_pymsg, "uptime"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->uptime = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // type PyObject * field = PyObject_GetAttrString(_pymsg, "type"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->type = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // cpu_cores PyObject * field = PyObject_GetAttrString(_pymsg, "cpu_cores"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); Py_ssize_t size = 8; uint8_t * dest = ros_message->cpu_cores; for (Py_ssize_t i = 0; i < size; ++i) { uint8_t tmp = *(npy_uint8 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint8_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // cpu_combined PyObject * field = PyObject_GetAttrString(_pymsg, "cpu_combined"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); Py_ssize_t size = 10; uint8_t * dest = ros_message->cpu_combined; for (Py_ssize_t i = 0; i < size; ++i) { uint8_t tmp = *(npy_uint8 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint8_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // gpu_cores PyObject * field = PyObject_GetAttrString(_pymsg, "gpu_cores"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); Py_ssize_t size = 4; uint8_t * dest = ros_message->gpu_cores; for (Py_ssize_t i = 0; i < size; ++i) { uint8_t tmp = *(npy_uint8 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint8_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // gpu_combined PyObject * field = PyObject_GetAttrString(_pymsg, "gpu_combined"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); Py_ssize_t size = 10; uint8_t * dest = ros_message->gpu_combined; for (Py_ssize_t i = 0; i < size; ++i) { uint8_t tmp = *(npy_uint8 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint8_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // temperature_board PyObject * field = PyObject_GetAttrString(_pymsg, "temperature_board"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->temperature_board = (int8_t)PyLong_AsLong(field); Py_DECREF(field); } { // temperature_core PyObject * field = PyObject_GetAttrString(_pymsg, "temperature_core"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_INT8); Py_ssize_t size = 8; int8_t * dest = ros_message->temperature_core; for (Py_ssize_t i = 0; i < size; ++i) { int8_t tmp = *(npy_int8 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(int8_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // fan_speed PyObject * field = PyObject_GetAttrString(_pymsg, "fan_speed"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_INT16); Py_ssize_t size = 4; int16_t * dest = ros_message->fan_speed; for (Py_ssize_t i = 0; i < size; ++i) { int16_t tmp = *(npy_int16 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(int16_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // ram_usage PyObject * field = PyObject_GetAttrString(_pymsg, "ram_usage"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->ram_usage = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // ram_total PyObject * field = PyObject_GetAttrString(_pymsg, "ram_total"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->ram_total = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // storage_type PyObject * field = PyObject_GetAttrString(_pymsg, "storage_type"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT32); Py_ssize_t size = 4; uint32_t * dest = ros_message->storage_type; for (Py_ssize_t i = 0; i < size; ++i) { uint32_t tmp = *(npy_uint32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint32_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // storage_usage PyObject * field = PyObject_GetAttrString(_pymsg, "storage_usage"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT32); Py_ssize_t size = 4; uint32_t * dest = ros_message->storage_usage; for (Py_ssize_t i = 0; i < size; ++i) { uint32_t tmp = *(npy_uint32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint32_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // storage_total PyObject * field = PyObject_GetAttrString(_pymsg, "storage_total"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT32); Py_ssize_t size = 4; uint32_t * dest = ros_message->storage_total; for (Py_ssize_t i = 0; i < size; ++i) { uint32_t tmp = *(npy_uint32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint32_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // link_type PyObject * field = PyObject_GetAttrString(_pymsg, "link_type"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT32); Py_ssize_t size = 6; uint32_t * dest = ros_message->link_type; for (Py_ssize_t i = 0; i < size; ++i) { uint32_t tmp = *(npy_uint32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint32_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // link_tx_rate PyObject * field = PyObject_GetAttrString(_pymsg, "link_tx_rate"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT32); Py_ssize_t size = 6; uint32_t * dest = ros_message->link_tx_rate; for (Py_ssize_t i = 0; i < size; ++i) { uint32_t tmp = *(npy_uint32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint32_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // link_rx_rate PyObject * field = PyObject_GetAttrString(_pymsg, "link_rx_rate"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT32); Py_ssize_t size = 6; uint32_t * dest = ros_message->link_rx_rate; for (Py_ssize_t i = 0; i < size; ++i) { uint32_t tmp = *(npy_uint32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint32_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // link_tx_max PyObject * field = PyObject_GetAttrString(_pymsg, "link_tx_max"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT32); Py_ssize_t size = 6; uint32_t * dest = ros_message->link_tx_max; for (Py_ssize_t i = 0; i < size; ++i) { uint32_t tmp = *(npy_uint32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint32_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // link_rx_max PyObject * field = PyObject_GetAttrString(_pymsg, "link_rx_max"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT32); Py_ssize_t size = 6; uint32_t * dest = ros_message->link_rx_max; for (Py_ssize_t i = 0; i < size; ++i) { uint32_t tmp = *(npy_uint32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint32_t)); } Py_DECREF(seq_field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__onboard_computer_status__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of OnboardComputerStatus */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._onboard_computer_status"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "OnboardComputerStatus"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__OnboardComputerStatus * ros_message = (px4_msgs__msg__OnboardComputerStatus *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // uptime PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->uptime); { int rc = PyObject_SetAttrString(_pymessage, "uptime", field); Py_DECREF(field); if (rc) { return NULL; } } } { // type PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->type); { int rc = PyObject_SetAttrString(_pymessage, "type", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cpu_cores PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "cpu_cores"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); assert(sizeof(npy_uint8) == sizeof(uint8_t)); npy_uint8 * dst = (npy_uint8 *)PyArray_GETPTR1(seq_field, 0); uint8_t * src = &(ros_message->cpu_cores[0]); memcpy(dst, src, 8 * sizeof(uint8_t)); Py_DECREF(field); } { // cpu_combined PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "cpu_combined"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); assert(sizeof(npy_uint8) == sizeof(uint8_t)); npy_uint8 * dst = (npy_uint8 *)PyArray_GETPTR1(seq_field, 0); uint8_t * src = &(ros_message->cpu_combined[0]); memcpy(dst, src, 10 * sizeof(uint8_t)); Py_DECREF(field); } { // gpu_cores PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "gpu_cores"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); assert(sizeof(npy_uint8) == sizeof(uint8_t)); npy_uint8 * dst = (npy_uint8 *)PyArray_GETPTR1(seq_field, 0); uint8_t * src = &(ros_message->gpu_cores[0]); memcpy(dst, src, 4 * sizeof(uint8_t)); Py_DECREF(field); } { // gpu_combined PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "gpu_combined"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); assert(sizeof(npy_uint8) == sizeof(uint8_t)); npy_uint8 * dst = (npy_uint8 *)PyArray_GETPTR1(seq_field, 0); uint8_t * src = &(ros_message->gpu_combined[0]); memcpy(dst, src, 10 * sizeof(uint8_t)); Py_DECREF(field); } { // temperature_board PyObject * field = NULL; field = PyLong_FromLong(ros_message->temperature_board); { int rc = PyObject_SetAttrString(_pymessage, "temperature_board", field); Py_DECREF(field); if (rc) { return NULL; } } } { // temperature_core PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "temperature_core"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_INT8); assert(sizeof(npy_int8) == sizeof(int8_t)); npy_int8 * dst = (npy_int8 *)PyArray_GETPTR1(seq_field, 0); int8_t * src = &(ros_message->temperature_core[0]); memcpy(dst, src, 8 * sizeof(int8_t)); Py_DECREF(field); } { // fan_speed PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "fan_speed"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_INT16); assert(sizeof(npy_int16) == sizeof(int16_t)); npy_int16 * dst = (npy_int16 *)PyArray_GETPTR1(seq_field, 0); int16_t * src = &(ros_message->fan_speed[0]); memcpy(dst, src, 4 * sizeof(int16_t)); Py_DECREF(field); } { // ram_usage PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->ram_usage); { int rc = PyObject_SetAttrString(_pymessage, "ram_usage", field); Py_DECREF(field); if (rc) { return NULL; } } } { // ram_total PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->ram_total); { int rc = PyObject_SetAttrString(_pymessage, "ram_total", field); Py_DECREF(field); if (rc) { return NULL; } } } { // storage_type PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "storage_type"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT32); assert(sizeof(npy_uint32) == sizeof(uint32_t)); npy_uint32 * dst = (npy_uint32 *)PyArray_GETPTR1(seq_field, 0); uint32_t * src = &(ros_message->storage_type[0]); memcpy(dst, src, 4 * sizeof(uint32_t)); Py_DECREF(field); } { // storage_usage PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "storage_usage"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT32); assert(sizeof(npy_uint32) == sizeof(uint32_t)); npy_uint32 * dst = (npy_uint32 *)PyArray_GETPTR1(seq_field, 0); uint32_t * src = &(ros_message->storage_usage[0]); memcpy(dst, src, 4 * sizeof(uint32_t)); Py_DECREF(field); } { // storage_total PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "storage_total"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT32); assert(sizeof(npy_uint32) == sizeof(uint32_t)); npy_uint32 * dst = (npy_uint32 *)PyArray_GETPTR1(seq_field, 0); uint32_t * src = &(ros_message->storage_total[0]); memcpy(dst, src, 4 * sizeof(uint32_t)); Py_DECREF(field); } { // link_type PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "link_type"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT32); assert(sizeof(npy_uint32) == sizeof(uint32_t)); npy_uint32 * dst = (npy_uint32 *)PyArray_GETPTR1(seq_field, 0); uint32_t * src = &(ros_message->link_type[0]); memcpy(dst, src, 6 * sizeof(uint32_t)); Py_DECREF(field); } { // link_tx_rate PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "link_tx_rate"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT32); assert(sizeof(npy_uint32) == sizeof(uint32_t)); npy_uint32 * dst = (npy_uint32 *)PyArray_GETPTR1(seq_field, 0); uint32_t * src = &(ros_message->link_tx_rate[0]); memcpy(dst, src, 6 * sizeof(uint32_t)); Py_DECREF(field); } { // link_rx_rate PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "link_rx_rate"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT32); assert(sizeof(npy_uint32) == sizeof(uint32_t)); npy_uint32 * dst = (npy_uint32 *)PyArray_GETPTR1(seq_field, 0); uint32_t * src = &(ros_message->link_rx_rate[0]); memcpy(dst, src, 6 * sizeof(uint32_t)); Py_DECREF(field); } { // link_tx_max PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "link_tx_max"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT32); assert(sizeof(npy_uint32) == sizeof(uint32_t)); npy_uint32 * dst = (npy_uint32 *)PyArray_GETPTR1(seq_field, 0); uint32_t * src = &(ros_message->link_tx_max[0]); memcpy(dst, src, 6 * sizeof(uint32_t)); Py_DECREF(field); } { // link_rx_max PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "link_rx_max"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT32); assert(sizeof(npy_uint32) == sizeof(uint32_t)); npy_uint32 * dst = (npy_uint32 *)PyArray_GETPTR1(seq_field, 0); uint32_t * src = &(ros_message->link_rx_max[0]); memcpy(dst, src, 6 * sizeof(uint32_t)); Py_DECREF(field); } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/yaw_estimator_status__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/YawEstimatorStatus.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/yaw_estimator_status__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/yaw_estimator_status__functions.h" #include "px4_msgs/msg/yaw_estimator_status__struct.h" #ifdef __cplusplus extern "C" { #endif void YawEstimatorStatus__rosidl_typesupport_introspection_c__YawEstimatorStatus_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__YawEstimatorStatus__init(message_memory); } void YawEstimatorStatus__rosidl_typesupport_introspection_c__YawEstimatorStatus_fini_function(void * message_memory) { px4_msgs__msg__YawEstimatorStatus__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember YawEstimatorStatus__rosidl_typesupport_introspection_c__YawEstimatorStatus_message_member_array[8] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__YawEstimatorStatus, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__YawEstimatorStatus, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yaw_composite", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__YawEstimatorStatus, yaw_composite), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yaw_variance", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__YawEstimatorStatus, yaw_variance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yaw", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 5, // array size false, // is upper bound offsetof(px4_msgs__msg__YawEstimatorStatus, yaw), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "innov_vn", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 5, // array size false, // is upper bound offsetof(px4_msgs__msg__YawEstimatorStatus, innov_vn), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "innov_ve", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 5, // array size false, // is upper bound offsetof(px4_msgs__msg__YawEstimatorStatus, innov_ve), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "weight", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 5, // array size false, // is upper bound offsetof(px4_msgs__msg__YawEstimatorStatus, weight), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers YawEstimatorStatus__rosidl_typesupport_introspection_c__YawEstimatorStatus_message_members = { "px4_msgs__msg", // message namespace "YawEstimatorStatus", // message name 8, // number of fields sizeof(px4_msgs__msg__YawEstimatorStatus), YawEstimatorStatus__rosidl_typesupport_introspection_c__YawEstimatorStatus_message_member_array, // message members YawEstimatorStatus__rosidl_typesupport_introspection_c__YawEstimatorStatus_init_function, // function to initialize message memory (memory has to be allocated) YawEstimatorStatus__rosidl_typesupport_introspection_c__YawEstimatorStatus_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t YawEstimatorStatus__rosidl_typesupport_introspection_c__YawEstimatorStatus_message_type_support_handle = { 0, &YawEstimatorStatus__rosidl_typesupport_introspection_c__YawEstimatorStatus_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, YawEstimatorStatus)() { if (!YawEstimatorStatus__rosidl_typesupport_introspection_c__YawEstimatorStatus_message_type_support_handle.typesupport_identifier) { YawEstimatorStatus__rosidl_typesupport_introspection_c__YawEstimatorStatus_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &YawEstimatorStatus__rosidl_typesupport_introspection_c__YawEstimatorStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_visual_odometry.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_VISUAL_ODOMETRY_HPP_ #define PX4_MSGS__MSG__VEHICLE_VISUAL_ODOMETRY_HPP_ #include "px4_msgs/msg/vehicle_visual_odometry__struct.hpp" #include "px4_msgs/msg/vehicle_visual_odometry__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_VISUAL_ODOMETRY_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/orb_test_medium__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/OrbTestMedium.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORB_TEST_MEDIUM__STRUCT_H_ #define PX4_MSGS__MSG__ORB_TEST_MEDIUM__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/OrbTestMedium in the package px4_msgs. typedef struct px4_msgs__msg__OrbTestMedium { uint64_t timestamp; int32_t val; uint8_t junk[64]; } px4_msgs__msg__OrbTestMedium; // Struct for a sequence of px4_msgs__msg__OrbTestMedium. typedef struct px4_msgs__msg__OrbTestMedium__Sequence { px4_msgs__msg__OrbTestMedium * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__OrbTestMedium__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ORB_TEST_MEDIUM__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/landing_gear__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/LandingGear.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/landing_gear__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__LandingGear__init(px4_msgs__msg__LandingGear * msg) { if (!msg) { return false; } // timestamp // landing_gear return true; } void px4_msgs__msg__LandingGear__fini(px4_msgs__msg__LandingGear * msg) { if (!msg) { return; } // timestamp // landing_gear } px4_msgs__msg__LandingGear * px4_msgs__msg__LandingGear__create() { px4_msgs__msg__LandingGear * msg = (px4_msgs__msg__LandingGear *)malloc(sizeof(px4_msgs__msg__LandingGear)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__LandingGear)); bool success = px4_msgs__msg__LandingGear__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__LandingGear__destroy(px4_msgs__msg__LandingGear * msg) { if (msg) { px4_msgs__msg__LandingGear__fini(msg); } free(msg); } bool px4_msgs__msg__LandingGear__Sequence__init(px4_msgs__msg__LandingGear__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__LandingGear * data = NULL; if (size) { data = (px4_msgs__msg__LandingGear *)calloc(size, sizeof(px4_msgs__msg__LandingGear)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__LandingGear__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__LandingGear__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__LandingGear__Sequence__fini(px4_msgs__msg__LandingGear__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__LandingGear__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__LandingGear__Sequence * px4_msgs__msg__LandingGear__Sequence__create(size_t size) { px4_msgs__msg__LandingGear__Sequence * array = (px4_msgs__msg__LandingGear__Sequence *)malloc(sizeof(px4_msgs__msg__LandingGear__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__LandingGear__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__LandingGear__Sequence__destroy(px4_msgs__msg__LandingGear__Sequence * array) { if (array) { px4_msgs__msg__LandingGear__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_cellular_status.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/CellularStatus.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_CellularStatus(type): """Metaclass of message 'CellularStatus'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'CELLULAR_STATUS_FLAG_UNKNOWN': 0, 'CELLULAR_STATUS_FLAG_FAILED': 1, 'CELLULAR_STATUS_FLAG_INITIALIZING': 2, 'CELLULAR_STATUS_FLAG_LOCKED': 3, 'CELLULAR_STATUS_FLAG_DISABLED': 4, 'CELLULAR_STATUS_FLAG_DISABLING': 5, 'CELLULAR_STATUS_FLAG_ENABLING': 6, 'CELLULAR_STATUS_FLAG_ENABLED': 7, 'CELLULAR_STATUS_FLAG_SEARCHING': 8, 'CELLULAR_STATUS_FLAG_REGISTERED': 9, 'CELLULAR_STATUS_FLAG_DISCONNECTING': 10, 'CELLULAR_STATUS_FLAG_CONNECTING': 11, 'CELLULAR_STATUS_FLAG_CONNECTED': 12, 'CELLULAR_NETWORK_FAILED_REASON_NONE': 0, 'CELLULAR_NETWORK_FAILED_REASON_UNKNOWN': 1, 'CELLULAR_NETWORK_FAILED_REASON_SIM_MISSING': 2, 'CELLULAR_NETWORK_FAILED_REASON_SIM_ERROR': 3, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.CellularStatus') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__cellular_status cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__cellular_status cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__cellular_status cls._TYPE_SUPPORT = module.type_support_msg__msg__cellular_status cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__cellular_status @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'CELLULAR_STATUS_FLAG_UNKNOWN': cls.__constants['CELLULAR_STATUS_FLAG_UNKNOWN'], 'CELLULAR_STATUS_FLAG_FAILED': cls.__constants['CELLULAR_STATUS_FLAG_FAILED'], 'CELLULAR_STATUS_FLAG_INITIALIZING': cls.__constants['CELLULAR_STATUS_FLAG_INITIALIZING'], 'CELLULAR_STATUS_FLAG_LOCKED': cls.__constants['CELLULAR_STATUS_FLAG_LOCKED'], 'CELLULAR_STATUS_FLAG_DISABLED': cls.__constants['CELLULAR_STATUS_FLAG_DISABLED'], 'CELLULAR_STATUS_FLAG_DISABLING': cls.__constants['CELLULAR_STATUS_FLAG_DISABLING'], 'CELLULAR_STATUS_FLAG_ENABLING': cls.__constants['CELLULAR_STATUS_FLAG_ENABLING'], 'CELLULAR_STATUS_FLAG_ENABLED': cls.__constants['CELLULAR_STATUS_FLAG_ENABLED'], 'CELLULAR_STATUS_FLAG_SEARCHING': cls.__constants['CELLULAR_STATUS_FLAG_SEARCHING'], 'CELLULAR_STATUS_FLAG_REGISTERED': cls.__constants['CELLULAR_STATUS_FLAG_REGISTERED'], 'CELLULAR_STATUS_FLAG_DISCONNECTING': cls.__constants['CELLULAR_STATUS_FLAG_DISCONNECTING'], 'CELLULAR_STATUS_FLAG_CONNECTING': cls.__constants['CELLULAR_STATUS_FLAG_CONNECTING'], 'CELLULAR_STATUS_FLAG_CONNECTED': cls.__constants['CELLULAR_STATUS_FLAG_CONNECTED'], 'CELLULAR_NETWORK_FAILED_REASON_NONE': cls.__constants['CELLULAR_NETWORK_FAILED_REASON_NONE'], 'CELLULAR_NETWORK_FAILED_REASON_UNKNOWN': cls.__constants['CELLULAR_NETWORK_FAILED_REASON_UNKNOWN'], 'CELLULAR_NETWORK_FAILED_REASON_SIM_MISSING': cls.__constants['CELLULAR_NETWORK_FAILED_REASON_SIM_MISSING'], 'CELLULAR_NETWORK_FAILED_REASON_SIM_ERROR': cls.__constants['CELLULAR_NETWORK_FAILED_REASON_SIM_ERROR'], } @property def CELLULAR_STATUS_FLAG_UNKNOWN(self): """Message constant 'CELLULAR_STATUS_FLAG_UNKNOWN'.""" return Metaclass_CellularStatus.__constants['CELLULAR_STATUS_FLAG_UNKNOWN'] @property def CELLULAR_STATUS_FLAG_FAILED(self): """Message constant 'CELLULAR_STATUS_FLAG_FAILED'.""" return Metaclass_CellularStatus.__constants['CELLULAR_STATUS_FLAG_FAILED'] @property def CELLULAR_STATUS_FLAG_INITIALIZING(self): """Message constant 'CELLULAR_STATUS_FLAG_INITIALIZING'.""" return Metaclass_CellularStatus.__constants['CELLULAR_STATUS_FLAG_INITIALIZING'] @property def CELLULAR_STATUS_FLAG_LOCKED(self): """Message constant 'CELLULAR_STATUS_FLAG_LOCKED'.""" return Metaclass_CellularStatus.__constants['CELLULAR_STATUS_FLAG_LOCKED'] @property def CELLULAR_STATUS_FLAG_DISABLED(self): """Message constant 'CELLULAR_STATUS_FLAG_DISABLED'.""" return Metaclass_CellularStatus.__constants['CELLULAR_STATUS_FLAG_DISABLED'] @property def CELLULAR_STATUS_FLAG_DISABLING(self): """Message constant 'CELLULAR_STATUS_FLAG_DISABLING'.""" return Metaclass_CellularStatus.__constants['CELLULAR_STATUS_FLAG_DISABLING'] @property def CELLULAR_STATUS_FLAG_ENABLING(self): """Message constant 'CELLULAR_STATUS_FLAG_ENABLING'.""" return Metaclass_CellularStatus.__constants['CELLULAR_STATUS_FLAG_ENABLING'] @property def CELLULAR_STATUS_FLAG_ENABLED(self): """Message constant 'CELLULAR_STATUS_FLAG_ENABLED'.""" return Metaclass_CellularStatus.__constants['CELLULAR_STATUS_FLAG_ENABLED'] @property def CELLULAR_STATUS_FLAG_SEARCHING(self): """Message constant 'CELLULAR_STATUS_FLAG_SEARCHING'.""" return Metaclass_CellularStatus.__constants['CELLULAR_STATUS_FLAG_SEARCHING'] @property def CELLULAR_STATUS_FLAG_REGISTERED(self): """Message constant 'CELLULAR_STATUS_FLAG_REGISTERED'.""" return Metaclass_CellularStatus.__constants['CELLULAR_STATUS_FLAG_REGISTERED'] @property def CELLULAR_STATUS_FLAG_DISCONNECTING(self): """Message constant 'CELLULAR_STATUS_FLAG_DISCONNECTING'.""" return Metaclass_CellularStatus.__constants['CELLULAR_STATUS_FLAG_DISCONNECTING'] @property def CELLULAR_STATUS_FLAG_CONNECTING(self): """Message constant 'CELLULAR_STATUS_FLAG_CONNECTING'.""" return Metaclass_CellularStatus.__constants['CELLULAR_STATUS_FLAG_CONNECTING'] @property def CELLULAR_STATUS_FLAG_CONNECTED(self): """Message constant 'CELLULAR_STATUS_FLAG_CONNECTED'.""" return Metaclass_CellularStatus.__constants['CELLULAR_STATUS_FLAG_CONNECTED'] @property def CELLULAR_NETWORK_FAILED_REASON_NONE(self): """Message constant 'CELLULAR_NETWORK_FAILED_REASON_NONE'.""" return Metaclass_CellularStatus.__constants['CELLULAR_NETWORK_FAILED_REASON_NONE'] @property def CELLULAR_NETWORK_FAILED_REASON_UNKNOWN(self): """Message constant 'CELLULAR_NETWORK_FAILED_REASON_UNKNOWN'.""" return Metaclass_CellularStatus.__constants['CELLULAR_NETWORK_FAILED_REASON_UNKNOWN'] @property def CELLULAR_NETWORK_FAILED_REASON_SIM_MISSING(self): """Message constant 'CELLULAR_NETWORK_FAILED_REASON_SIM_MISSING'.""" return Metaclass_CellularStatus.__constants['CELLULAR_NETWORK_FAILED_REASON_SIM_MISSING'] @property def CELLULAR_NETWORK_FAILED_REASON_SIM_ERROR(self): """Message constant 'CELLULAR_NETWORK_FAILED_REASON_SIM_ERROR'.""" return Metaclass_CellularStatus.__constants['CELLULAR_NETWORK_FAILED_REASON_SIM_ERROR'] class CellularStatus(metaclass=Metaclass_CellularStatus): """ Message class 'CellularStatus'. Constants: CELLULAR_STATUS_FLAG_UNKNOWN CELLULAR_STATUS_FLAG_FAILED CELLULAR_STATUS_FLAG_INITIALIZING CELLULAR_STATUS_FLAG_LOCKED CELLULAR_STATUS_FLAG_DISABLED CELLULAR_STATUS_FLAG_DISABLING CELLULAR_STATUS_FLAG_ENABLING CELLULAR_STATUS_FLAG_ENABLED CELLULAR_STATUS_FLAG_SEARCHING CELLULAR_STATUS_FLAG_REGISTERED CELLULAR_STATUS_FLAG_DISCONNECTING CELLULAR_STATUS_FLAG_CONNECTING CELLULAR_STATUS_FLAG_CONNECTED CELLULAR_NETWORK_FAILED_REASON_NONE CELLULAR_NETWORK_FAILED_REASON_UNKNOWN CELLULAR_NETWORK_FAILED_REASON_SIM_MISSING CELLULAR_NETWORK_FAILED_REASON_SIM_ERROR """ __slots__ = [ '_timestamp', '_status', '_failure_reason', '_type', '_quality', '_mcc', '_mnc', '_lac', ] _fields_and_field_types = { 'timestamp': 'uint64', 'status': 'uint16', 'failure_reason': 'uint8', 'type': 'uint8', 'quality': 'uint8', 'mcc': 'uint16', 'mnc': 'uint16', 'lac': 'uint16', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.status = kwargs.get('status', int()) self.failure_reason = kwargs.get('failure_reason', int()) self.type = kwargs.get('type', int()) self.quality = kwargs.get('quality', int()) self.mcc = kwargs.get('mcc', int()) self.mnc = kwargs.get('mnc', int()) self.lac = kwargs.get('lac', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.status != other.status: return False if self.failure_reason != other.failure_reason: return False if self.type != other.type: return False if self.quality != other.quality: return False if self.mcc != other.mcc: return False if self.mnc != other.mnc: return False if self.lac != other.lac: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def status(self): """Message field 'status'.""" return self._status @status.setter def status(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'status' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'status' field must be an unsigned integer in [0, 65535]" self._status = value @property def failure_reason(self): """Message field 'failure_reason'.""" return self._failure_reason @failure_reason.setter def failure_reason(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'failure_reason' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'failure_reason' field must be an unsigned integer in [0, 255]" self._failure_reason = value @property # noqa: A003 def type(self): """Message field 'type'.""" return self._type @type.setter # noqa: A003 def type(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'type' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'type' field must be an unsigned integer in [0, 255]" self._type = value @property def quality(self): """Message field 'quality'.""" return self._quality @quality.setter def quality(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'quality' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'quality' field must be an unsigned integer in [0, 255]" self._quality = value @property def mcc(self): """Message field 'mcc'.""" return self._mcc @mcc.setter def mcc(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'mcc' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'mcc' field must be an unsigned integer in [0, 65535]" self._mcc = value @property def mnc(self): """Message field 'mnc'.""" return self._mnc @mnc.setter def mnc(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'mnc' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'mnc' field must be an unsigned integer in [0, 65535]" self._mnc = value @property def lac(self): """Message field 'lac'.""" return self._lac @lac.setter def lac(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'lac' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'lac' field must be an unsigned integer in [0, 65535]" self._lac = value <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/estimator_global_position.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_GLOBAL_POSITION_HPP_ #define PX4_MSGS__MSG__ESTIMATOR_GLOBAL_POSITION_HPP_ #include "px4_msgs/msg/estimator_global_position__struct.hpp" #include "px4_msgs/msg/estimator_global_position__traits.hpp" #endif // PX4_MSGS__MSG__ESTIMATOR_GLOBAL_POSITION_HPP_ <file_sep>/build/multi_rtd_interfaces/CMakeFiles/multi_rtd_interfaces__rosidl_typesupport_introspection_c.dir/cmake_clean.cmake file(REMOVE_RECURSE "rosidl_typesupport_introspection_c/multi_rtd_interfaces/msg/robot_trajectory__rosidl_typesupport_introspection_c.h" "rosidl_typesupport_introspection_c/multi_rtd_interfaces/msg/robot_trajectory__type_support.c" "CMakeFiles/multi_rtd_interfaces__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/multi_rtd_interfaces/msg/robot_trajectory__type_support.c.o" "libmulti_rtd_interfaces__rosidl_typesupport_introspection_c.pdb" "libmulti_rtd_interfaces__rosidl_typesupport_introspection_c.so" ) # Per-language clean rules from dependency scanning. foreach(lang C) include(CMakeFiles/multi_rtd_interfaces__rosidl_typesupport_introspection_c.dir/cmake_clean_${lang}.cmake OPTIONAL) endforeach() <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_attitude__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleAttitude.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ATTITUDE__FUNCTIONS_H_ #define PX4_MSGS__MSG__VEHICLE_ATTITUDE__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/vehicle_attitude__struct.h" /// Initialize msg/VehicleAttitude message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__VehicleAttitude * )) before or use * px4_msgs__msg__VehicleAttitude__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__VehicleAttitude__init(px4_msgs__msg__VehicleAttitude * msg); /// Finalize msg/VehicleAttitude message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleAttitude__fini(px4_msgs__msg__VehicleAttitude * msg); /// Create msg/VehicleAttitude message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__VehicleAttitude__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__VehicleAttitude * px4_msgs__msg__VehicleAttitude__create(); /// Destroy msg/VehicleAttitude message. /** * It calls * px4_msgs__msg__VehicleAttitude__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleAttitude__destroy(px4_msgs__msg__VehicleAttitude * msg); /// Initialize array of msg/VehicleAttitude messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__VehicleAttitude__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__VehicleAttitude__Sequence__init(px4_msgs__msg__VehicleAttitude__Sequence * array, size_t size); /// Finalize array of msg/VehicleAttitude messages. /** * It calls * px4_msgs__msg__VehicleAttitude__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleAttitude__Sequence__fini(px4_msgs__msg__VehicleAttitude__Sequence * array); /// Create array of msg/VehicleAttitude messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__VehicleAttitude__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__VehicleAttitude__Sequence * px4_msgs__msg__VehicleAttitude__Sequence__create(size_t size); /// Destroy array of msg/VehicleAttitude messages. /** * It calls * px4_msgs__msg__VehicleAttitude__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleAttitude__Sequence__destroy(px4_msgs__msg__VehicleAttitude__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_ATTITUDE__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_optical_flow.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/OpticalFlow.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_OpticalFlow(type): """Metaclass of message 'OpticalFlow'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'MODE_UNKNOWN': 0, 'MODE_BRIGHT': 1, 'MODE_LOWLIGHT': 2, 'MODE_SUPER_LOWLIGHT': 3, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.OpticalFlow') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__optical_flow cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__optical_flow cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__optical_flow cls._TYPE_SUPPORT = module.type_support_msg__msg__optical_flow cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__optical_flow @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'MODE_UNKNOWN': cls.__constants['MODE_UNKNOWN'], 'MODE_BRIGHT': cls.__constants['MODE_BRIGHT'], 'MODE_LOWLIGHT': cls.__constants['MODE_LOWLIGHT'], 'MODE_SUPER_LOWLIGHT': cls.__constants['MODE_SUPER_LOWLIGHT'], } @property def MODE_UNKNOWN(self): """Message constant 'MODE_UNKNOWN'.""" return Metaclass_OpticalFlow.__constants['MODE_UNKNOWN'] @property def MODE_BRIGHT(self): """Message constant 'MODE_BRIGHT'.""" return Metaclass_OpticalFlow.__constants['MODE_BRIGHT'] @property def MODE_LOWLIGHT(self): """Message constant 'MODE_LOWLIGHT'.""" return Metaclass_OpticalFlow.__constants['MODE_LOWLIGHT'] @property def MODE_SUPER_LOWLIGHT(self): """Message constant 'MODE_SUPER_LOWLIGHT'.""" return Metaclass_OpticalFlow.__constants['MODE_SUPER_LOWLIGHT'] class OpticalFlow(metaclass=Metaclass_OpticalFlow): """ Message class 'OpticalFlow'. Constants: MODE_UNKNOWN MODE_BRIGHT MODE_LOWLIGHT MODE_SUPER_LOWLIGHT """ __slots__ = [ '_timestamp', '_sensor_id', '_pixel_flow_x_integral', '_pixel_flow_y_integral', '_gyro_x_rate_integral', '_gyro_y_rate_integral', '_gyro_z_rate_integral', '_ground_distance_m', '_integration_timespan', '_time_since_last_sonar_update', '_frame_count_since_last_readout', '_gyro_temperature', '_quality', '_max_flow_rate', '_min_ground_distance', '_max_ground_distance', '_mode', ] _fields_and_field_types = { 'timestamp': 'uint64', 'sensor_id': 'uint8', 'pixel_flow_x_integral': 'float', 'pixel_flow_y_integral': 'float', 'gyro_x_rate_integral': 'float', 'gyro_y_rate_integral': 'float', 'gyro_z_rate_integral': 'float', 'ground_distance_m': 'float', 'integration_timespan': 'uint32', 'time_since_last_sonar_update': 'uint32', 'frame_count_since_last_readout': 'uint16', 'gyro_temperature': 'int16', 'quality': 'uint8', 'max_flow_rate': 'float', 'min_ground_distance': 'float', 'max_ground_distance': 'float', 'mode': 'uint8', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('int16'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.sensor_id = kwargs.get('sensor_id', int()) self.pixel_flow_x_integral = kwargs.get('pixel_flow_x_integral', float()) self.pixel_flow_y_integral = kwargs.get('pixel_flow_y_integral', float()) self.gyro_x_rate_integral = kwargs.get('gyro_x_rate_integral', float()) self.gyro_y_rate_integral = kwargs.get('gyro_y_rate_integral', float()) self.gyro_z_rate_integral = kwargs.get('gyro_z_rate_integral', float()) self.ground_distance_m = kwargs.get('ground_distance_m', float()) self.integration_timespan = kwargs.get('integration_timespan', int()) self.time_since_last_sonar_update = kwargs.get('time_since_last_sonar_update', int()) self.frame_count_since_last_readout = kwargs.get('frame_count_since_last_readout', int()) self.gyro_temperature = kwargs.get('gyro_temperature', int()) self.quality = kwargs.get('quality', int()) self.max_flow_rate = kwargs.get('max_flow_rate', float()) self.min_ground_distance = kwargs.get('min_ground_distance', float()) self.max_ground_distance = kwargs.get('max_ground_distance', float()) self.mode = kwargs.get('mode', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.sensor_id != other.sensor_id: return False if self.pixel_flow_x_integral != other.pixel_flow_x_integral: return False if self.pixel_flow_y_integral != other.pixel_flow_y_integral: return False if self.gyro_x_rate_integral != other.gyro_x_rate_integral: return False if self.gyro_y_rate_integral != other.gyro_y_rate_integral: return False if self.gyro_z_rate_integral != other.gyro_z_rate_integral: return False if self.ground_distance_m != other.ground_distance_m: return False if self.integration_timespan != other.integration_timespan: return False if self.time_since_last_sonar_update != other.time_since_last_sonar_update: return False if self.frame_count_since_last_readout != other.frame_count_since_last_readout: return False if self.gyro_temperature != other.gyro_temperature: return False if self.quality != other.quality: return False if self.max_flow_rate != other.max_flow_rate: return False if self.min_ground_distance != other.min_ground_distance: return False if self.max_ground_distance != other.max_ground_distance: return False if self.mode != other.mode: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def sensor_id(self): """Message field 'sensor_id'.""" return self._sensor_id @sensor_id.setter def sensor_id(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'sensor_id' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'sensor_id' field must be an unsigned integer in [0, 255]" self._sensor_id = value @property def pixel_flow_x_integral(self): """Message field 'pixel_flow_x_integral'.""" return self._pixel_flow_x_integral @pixel_flow_x_integral.setter def pixel_flow_x_integral(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'pixel_flow_x_integral' field must be of type 'float'" self._pixel_flow_x_integral = value @property def pixel_flow_y_integral(self): """Message field 'pixel_flow_y_integral'.""" return self._pixel_flow_y_integral @pixel_flow_y_integral.setter def pixel_flow_y_integral(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'pixel_flow_y_integral' field must be of type 'float'" self._pixel_flow_y_integral = value @property def gyro_x_rate_integral(self): """Message field 'gyro_x_rate_integral'.""" return self._gyro_x_rate_integral @gyro_x_rate_integral.setter def gyro_x_rate_integral(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'gyro_x_rate_integral' field must be of type 'float'" self._gyro_x_rate_integral = value @property def gyro_y_rate_integral(self): """Message field 'gyro_y_rate_integral'.""" return self._gyro_y_rate_integral @gyro_y_rate_integral.setter def gyro_y_rate_integral(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'gyro_y_rate_integral' field must be of type 'float'" self._gyro_y_rate_integral = value @property def gyro_z_rate_integral(self): """Message field 'gyro_z_rate_integral'.""" return self._gyro_z_rate_integral @gyro_z_rate_integral.setter def gyro_z_rate_integral(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'gyro_z_rate_integral' field must be of type 'float'" self._gyro_z_rate_integral = value @property def ground_distance_m(self): """Message field 'ground_distance_m'.""" return self._ground_distance_m @ground_distance_m.setter def ground_distance_m(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'ground_distance_m' field must be of type 'float'" self._ground_distance_m = value @property def integration_timespan(self): """Message field 'integration_timespan'.""" return self._integration_timespan @integration_timespan.setter def integration_timespan(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'integration_timespan' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'integration_timespan' field must be an unsigned integer in [0, 4294967295]" self._integration_timespan = value @property def time_since_last_sonar_update(self): """Message field 'time_since_last_sonar_update'.""" return self._time_since_last_sonar_update @time_since_last_sonar_update.setter def time_since_last_sonar_update(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'time_since_last_sonar_update' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'time_since_last_sonar_update' field must be an unsigned integer in [0, 4294967295]" self._time_since_last_sonar_update = value @property def frame_count_since_last_readout(self): """Message field 'frame_count_since_last_readout'.""" return self._frame_count_since_last_readout @frame_count_since_last_readout.setter def frame_count_since_last_readout(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'frame_count_since_last_readout' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'frame_count_since_last_readout' field must be an unsigned integer in [0, 65535]" self._frame_count_since_last_readout = value @property def gyro_temperature(self): """Message field 'gyro_temperature'.""" return self._gyro_temperature @gyro_temperature.setter def gyro_temperature(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'gyro_temperature' field must be of type 'int'" assert value >= -32768 and value < 32768, \ "The 'gyro_temperature' field must be an integer in [-32768, 32767]" self._gyro_temperature = value @property def quality(self): """Message field 'quality'.""" return self._quality @quality.setter def quality(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'quality' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'quality' field must be an unsigned integer in [0, 255]" self._quality = value @property def max_flow_rate(self): """Message field 'max_flow_rate'.""" return self._max_flow_rate @max_flow_rate.setter def max_flow_rate(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'max_flow_rate' field must be of type 'float'" self._max_flow_rate = value @property def min_ground_distance(self): """Message field 'min_ground_distance'.""" return self._min_ground_distance @min_ground_distance.setter def min_ground_distance(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'min_ground_distance' field must be of type 'float'" self._min_ground_distance = value @property def max_ground_distance(self): """Message field 'max_ground_distance'.""" return self._max_ground_distance @max_ground_distance.setter def max_ground_distance(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'max_ground_distance' field must be of type 'float'" self._max_ground_distance = value @property def mode(self): """Message field 'mode'.""" return self._mode @mode.setter def mode(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'mode' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'mode' field must be an unsigned integer in [0, 255]" self._mode = value <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_landing_status__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/PositionControllerLandingStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/position_controller_landing_status__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/position_controller_landing_status__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::PositionControllerLandingStatus & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: horizontal_slope_displacement cdr << ros_message.horizontal_slope_displacement; // Member: slope_angle_rad cdr << ros_message.slope_angle_rad; // Member: flare_length cdr << ros_message.flare_length; // Member: abort_landing cdr << (ros_message.abort_landing ? true : false); return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::PositionControllerLandingStatus & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: horizontal_slope_displacement cdr >> ros_message.horizontal_slope_displacement; // Member: slope_angle_rad cdr >> ros_message.slope_angle_rad; // Member: flare_length cdr >> ros_message.flare_length; // Member: abort_landing { uint8_t tmp; cdr >> tmp; ros_message.abort_landing = tmp ? true : false; } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::PositionControllerLandingStatus & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: horizontal_slope_displacement { size_t item_size = sizeof(ros_message.horizontal_slope_displacement); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: slope_angle_rad { size_t item_size = sizeof(ros_message.slope_angle_rad); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: flare_length { size_t item_size = sizeof(ros_message.flare_length); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: abort_landing { size_t item_size = sizeof(ros_message.abort_landing); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_PositionControllerLandingStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: horizontal_slope_displacement { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: slope_angle_rad { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: flare_length { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: abort_landing { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _PositionControllerLandingStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::PositionControllerLandingStatus *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _PositionControllerLandingStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::PositionControllerLandingStatus *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _PositionControllerLandingStatus__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::PositionControllerLandingStatus *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _PositionControllerLandingStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_PositionControllerLandingStatus(full_bounded, 0); } static message_type_support_callbacks_t _PositionControllerLandingStatus__callbacks = { "px4_msgs::msg", "PositionControllerLandingStatus", _PositionControllerLandingStatus__cdr_serialize, _PositionControllerLandingStatus__cdr_deserialize, _PositionControllerLandingStatus__get_serialized_size, _PositionControllerLandingStatus__max_serialized_size }; static rosidl_message_type_support_t _PositionControllerLandingStatus__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_PositionControllerLandingStatus__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::PositionControllerLandingStatus>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_PositionControllerLandingStatus__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, PositionControllerLandingStatus)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_PositionControllerLandingStatus__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_optical_flow_vel.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/EstimatorOpticalFlowVel.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_OPTICAL_FLOW_VEL_H_ #define PX4_MSGS__MSG__ESTIMATOR_OPTICAL_FLOW_VEL_H_ #include "px4_msgs/msg/estimator_optical_flow_vel__struct.h" #include "px4_msgs/msg/estimator_optical_flow_vel__functions.h" #include "px4_msgs/msg/estimator_optical_flow_vel__type_support.h" #endif // PX4_MSGS__MSG__ESTIMATOR_OPTICAL_FLOW_VEL_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_outputs__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/ActuatorOutputs.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/actuator_outputs__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void ActuatorOutputs_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::ActuatorOutputs(_init); } void ActuatorOutputs_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::ActuatorOutputs *>(message_memory); typed_message->~ActuatorOutputs(); } size_t size_function__ActuatorOutputs__output(const void * untyped_member) { (void)untyped_member; return 16; } const void * get_const_function__ActuatorOutputs__output(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 16> *>(untyped_member); return &member[index]; } void * get_function__ActuatorOutputs__output(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 16> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember ActuatorOutputs_message_member_array[3] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ActuatorOutputs, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "noutputs", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ActuatorOutputs, noutputs), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "output", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 16, // array size false, // is upper bound offsetof(px4_msgs::msg::ActuatorOutputs, output), // bytes offset in struct nullptr, // default value size_function__ActuatorOutputs__output, // size() function pointer get_const_function__ActuatorOutputs__output, // get_const(index) function pointer get_function__ActuatorOutputs__output, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers ActuatorOutputs_message_members = { "px4_msgs::msg", // message namespace "ActuatorOutputs", // message name 3, // number of fields sizeof(px4_msgs::msg::ActuatorOutputs), ActuatorOutputs_message_member_array, // message members ActuatorOutputs_init_function, // function to initialize message memory (memory has to be allocated) ActuatorOutputs_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t ActuatorOutputs_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &ActuatorOutputs_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::ActuatorOutputs>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::ActuatorOutputs_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, ActuatorOutputs)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::ActuatorOutputs_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_waypoint__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/TrajectoryWaypoint.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/trajectory_waypoint__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void TrajectoryWaypoint_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::TrajectoryWaypoint(_init); } void TrajectoryWaypoint_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::TrajectoryWaypoint *>(message_memory); typed_message->~TrajectoryWaypoint(); } size_t size_function__TrajectoryWaypoint__position(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__TrajectoryWaypoint__position(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__TrajectoryWaypoint__position(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } size_t size_function__TrajectoryWaypoint__velocity(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__TrajectoryWaypoint__velocity(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__TrajectoryWaypoint__velocity(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } size_t size_function__TrajectoryWaypoint__acceleration(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__TrajectoryWaypoint__acceleration(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__TrajectoryWaypoint__acceleration(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember TrajectoryWaypoint_message_member_array[8] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TrajectoryWaypoint, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "position", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::TrajectoryWaypoint, position), // bytes offset in struct nullptr, // default value size_function__TrajectoryWaypoint__position, // size() function pointer get_const_function__TrajectoryWaypoint__position, // get_const(index) function pointer get_function__TrajectoryWaypoint__position, // get(index) function pointer nullptr // resize(index) function pointer }, { "velocity", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::TrajectoryWaypoint, velocity), // bytes offset in struct nullptr, // default value size_function__TrajectoryWaypoint__velocity, // size() function pointer get_const_function__TrajectoryWaypoint__velocity, // get_const(index) function pointer get_function__TrajectoryWaypoint__velocity, // get(index) function pointer nullptr // resize(index) function pointer }, { "acceleration", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::TrajectoryWaypoint, acceleration), // bytes offset in struct nullptr, // default value size_function__TrajectoryWaypoint__acceleration, // size() function pointer get_const_function__TrajectoryWaypoint__acceleration, // get_const(index) function pointer get_function__TrajectoryWaypoint__acceleration, // get(index) function pointer nullptr // resize(index) function pointer }, { "yaw", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TrajectoryWaypoint, yaw), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "yaw_speed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TrajectoryWaypoint, yaw_speed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "point_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TrajectoryWaypoint, point_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "type", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TrajectoryWaypoint, type), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers TrajectoryWaypoint_message_members = { "px4_msgs::msg", // message namespace "TrajectoryWaypoint", // message name 8, // number of fields sizeof(px4_msgs::msg::TrajectoryWaypoint), TrajectoryWaypoint_message_member_array, // message members TrajectoryWaypoint_init_function, // function to initialize message memory (memory has to be allocated) TrajectoryWaypoint_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t TrajectoryWaypoint_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &TrajectoryWaypoint_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::TrajectoryWaypoint>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::TrajectoryWaypoint_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, TrajectoryWaypoint)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::TrajectoryWaypoint_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_ros_com/CMakeFiles/frame_transforms.dir/cmake_clean.cmake file(REMOVE_RECURSE "CMakeFiles/frame_transforms.dir/src/lib/frame_transforms.cpp.o" "libframe_transforms.pdb" "libframe_transforms.so" ) # Per-language clean rules from dependency scanning. foreach(lang CXX) include(CMakeFiles/frame_transforms.dir/cmake_clean_${lang}.cmake OPTIONAL) endforeach() <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_sensor_combined.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/SensorCombined.idl # generated code does not contain a copyright notice # Import statements for member types # Member 'gyro_rad' # Member 'accelerometer_m_s2' import numpy # noqa: E402, I100 import rosidl_parser.definition # noqa: E402, I100 class Metaclass_SensorCombined(type): """Metaclass of message 'SensorCombined'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'RELATIVE_TIMESTAMP_INVALID': 2147483647, 'CLIPPING_X': 1, 'CLIPPING_Y': 2, 'CLIPPING_Z': 4, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.SensorCombined') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__sensor_combined cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__sensor_combined cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__sensor_combined cls._TYPE_SUPPORT = module.type_support_msg__msg__sensor_combined cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__sensor_combined @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'RELATIVE_TIMESTAMP_INVALID': cls.__constants['RELATIVE_TIMESTAMP_INVALID'], 'CLIPPING_X': cls.__constants['CLIPPING_X'], 'CLIPPING_Y': cls.__constants['CLIPPING_Y'], 'CLIPPING_Z': cls.__constants['CLIPPING_Z'], } @property def RELATIVE_TIMESTAMP_INVALID(self): """Message constant 'RELATIVE_TIMESTAMP_INVALID'.""" return Metaclass_SensorCombined.__constants['RELATIVE_TIMESTAMP_INVALID'] @property def CLIPPING_X(self): """Message constant 'CLIPPING_X'.""" return Metaclass_SensorCombined.__constants['CLIPPING_X'] @property def CLIPPING_Y(self): """Message constant 'CLIPPING_Y'.""" return Metaclass_SensorCombined.__constants['CLIPPING_Y'] @property def CLIPPING_Z(self): """Message constant 'CLIPPING_Z'.""" return Metaclass_SensorCombined.__constants['CLIPPING_Z'] class SensorCombined(metaclass=Metaclass_SensorCombined): """ Message class 'SensorCombined'. Constants: RELATIVE_TIMESTAMP_INVALID CLIPPING_X CLIPPING_Y CLIPPING_Z """ __slots__ = [ '_timestamp', '_gyro_rad', '_gyro_integral_dt', '_accelerometer_timestamp_relative', '_accelerometer_m_s2', '_accelerometer_integral_dt', '_accelerometer_clipping', ] _fields_and_field_types = { 'timestamp': 'uint64', 'gyro_rad': 'float[3]', 'gyro_integral_dt': 'uint32', 'accelerometer_timestamp_relative': 'int32', 'accelerometer_m_s2': 'float[3]', 'accelerometer_integral_dt': 'uint32', 'accelerometer_clipping': 'uint8', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('int32'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) if 'gyro_rad' not in kwargs: self.gyro_rad = numpy.zeros(3, dtype=numpy.float32) else: self.gyro_rad = numpy.array(kwargs.get('gyro_rad'), dtype=numpy.float32) assert self.gyro_rad.shape == (3, ) self.gyro_integral_dt = kwargs.get('gyro_integral_dt', int()) self.accelerometer_timestamp_relative = kwargs.get('accelerometer_timestamp_relative', int()) if 'accelerometer_m_s2' not in kwargs: self.accelerometer_m_s2 = numpy.zeros(3, dtype=numpy.float32) else: self.accelerometer_m_s2 = numpy.array(kwargs.get('accelerometer_m_s2'), dtype=numpy.float32) assert self.accelerometer_m_s2.shape == (3, ) self.accelerometer_integral_dt = kwargs.get('accelerometer_integral_dt', int()) self.accelerometer_clipping = kwargs.get('accelerometer_clipping', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if all(self.gyro_rad != other.gyro_rad): return False if self.gyro_integral_dt != other.gyro_integral_dt: return False if self.accelerometer_timestamp_relative != other.accelerometer_timestamp_relative: return False if all(self.accelerometer_m_s2 != other.accelerometer_m_s2): return False if self.accelerometer_integral_dt != other.accelerometer_integral_dt: return False if self.accelerometer_clipping != other.accelerometer_clipping: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def gyro_rad(self): """Message field 'gyro_rad'.""" return self._gyro_rad @gyro_rad.setter def gyro_rad(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'gyro_rad' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'gyro_rad' numpy.ndarray() must have a size of 3" self._gyro_rad = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'gyro_rad' field must be a set or sequence with length 3 and each value of type 'float'" self._gyro_rad = numpy.array(value, dtype=numpy.float32) @property def gyro_integral_dt(self): """Message field 'gyro_integral_dt'.""" return self._gyro_integral_dt @gyro_integral_dt.setter def gyro_integral_dt(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'gyro_integral_dt' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'gyro_integral_dt' field must be an unsigned integer in [0, 4294967295]" self._gyro_integral_dt = value @property def accelerometer_timestamp_relative(self): """Message field 'accelerometer_timestamp_relative'.""" return self._accelerometer_timestamp_relative @accelerometer_timestamp_relative.setter def accelerometer_timestamp_relative(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'accelerometer_timestamp_relative' field must be of type 'int'" assert value >= -2147483648 and value < 2147483648, \ "The 'accelerometer_timestamp_relative' field must be an integer in [-2147483648, 2147483647]" self._accelerometer_timestamp_relative = value @property def accelerometer_m_s2(self): """Message field 'accelerometer_m_s2'.""" return self._accelerometer_m_s2 @accelerometer_m_s2.setter def accelerometer_m_s2(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'accelerometer_m_s2' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'accelerometer_m_s2' numpy.ndarray() must have a size of 3" self._accelerometer_m_s2 = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'accelerometer_m_s2' field must be a set or sequence with length 3 and each value of type 'float'" self._accelerometer_m_s2 = numpy.array(value, dtype=numpy.float32) @property def accelerometer_integral_dt(self): """Message field 'accelerometer_integral_dt'.""" return self._accelerometer_integral_dt @accelerometer_integral_dt.setter def accelerometer_integral_dt(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'accelerometer_integral_dt' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'accelerometer_integral_dt' field must be an unsigned integer in [0, 4294967295]" self._accelerometer_integral_dt = value @property def accelerometer_clipping(self): """Message field 'accelerometer_clipping'.""" return self._accelerometer_clipping @accelerometer_clipping.setter def accelerometer_clipping(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'accelerometer_clipping' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'accelerometer_clipping' field must be an unsigned integer in [0, 255]" self._accelerometer_clipping = value <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_fw__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/ActuatorControlsVirtualFw.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS_VIRTUAL_FW__STRUCT_H_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS_VIRTUAL_FW__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'NUM_ACTUATOR_CONTROLS'. enum { px4_msgs__msg__ActuatorControlsVirtualFw__NUM_ACTUATOR_CONTROLS = 8 }; /// Constant 'NUM_ACTUATOR_CONTROL_GROUPS'. enum { px4_msgs__msg__ActuatorControlsVirtualFw__NUM_ACTUATOR_CONTROL_GROUPS = 6 }; /// Constant 'INDEX_ROLL'. enum { px4_msgs__msg__ActuatorControlsVirtualFw__INDEX_ROLL = 0 }; /// Constant 'INDEX_PITCH'. enum { px4_msgs__msg__ActuatorControlsVirtualFw__INDEX_PITCH = 1 }; /// Constant 'INDEX_YAW'. enum { px4_msgs__msg__ActuatorControlsVirtualFw__INDEX_YAW = 2 }; /// Constant 'INDEX_THROTTLE'. enum { px4_msgs__msg__ActuatorControlsVirtualFw__INDEX_THROTTLE = 3 }; /// Constant 'INDEX_FLAPS'. enum { px4_msgs__msg__ActuatorControlsVirtualFw__INDEX_FLAPS = 4 }; /// Constant 'INDEX_SPOILERS'. enum { px4_msgs__msg__ActuatorControlsVirtualFw__INDEX_SPOILERS = 5 }; /// Constant 'INDEX_AIRBRAKES'. enum { px4_msgs__msg__ActuatorControlsVirtualFw__INDEX_AIRBRAKES = 6 }; /// Constant 'INDEX_LANDING_GEAR'. enum { px4_msgs__msg__ActuatorControlsVirtualFw__INDEX_LANDING_GEAR = 7 }; /// Constant 'INDEX_GIMBAL_SHUTTER'. enum { px4_msgs__msg__ActuatorControlsVirtualFw__INDEX_GIMBAL_SHUTTER = 3 }; /// Constant 'INDEX_CAMERA_ZOOM'. enum { px4_msgs__msg__ActuatorControlsVirtualFw__INDEX_CAMERA_ZOOM = 4 }; /// Constant 'GROUP_INDEX_ATTITUDE'. enum { px4_msgs__msg__ActuatorControlsVirtualFw__GROUP_INDEX_ATTITUDE = 0 }; /// Constant 'GROUP_INDEX_ATTITUDE_ALTERNATE'. enum { px4_msgs__msg__ActuatorControlsVirtualFw__GROUP_INDEX_ATTITUDE_ALTERNATE = 1 }; /// Constant 'GROUP_INDEX_GIMBAL'. enum { px4_msgs__msg__ActuatorControlsVirtualFw__GROUP_INDEX_GIMBAL = 2 }; /// Constant 'GROUP_INDEX_MANUAL_PASSTHROUGH'. enum { px4_msgs__msg__ActuatorControlsVirtualFw__GROUP_INDEX_MANUAL_PASSTHROUGH = 3 }; /// Constant 'GROUP_INDEX_ALLOCATED_PART1'. enum { px4_msgs__msg__ActuatorControlsVirtualFw__GROUP_INDEX_ALLOCATED_PART1 = 4 }; /// Constant 'GROUP_INDEX_ALLOCATED_PART2'. enum { px4_msgs__msg__ActuatorControlsVirtualFw__GROUP_INDEX_ALLOCATED_PART2 = 5 }; /// Constant 'GROUP_INDEX_PAYLOAD'. enum { px4_msgs__msg__ActuatorControlsVirtualFw__GROUP_INDEX_PAYLOAD = 6 }; // Struct defined in msg/ActuatorControlsVirtualFw in the package px4_msgs. typedef struct px4_msgs__msg__ActuatorControlsVirtualFw { uint64_t timestamp; uint64_t timestamp_sample; float control[8]; } px4_msgs__msg__ActuatorControlsVirtualFw; // Struct for a sequence of px4_msgs__msg__ActuatorControlsVirtualFw. typedef struct px4_msgs__msg__ActuatorControlsVirtualFw__Sequence { px4_msgs__msg__ActuatorControlsVirtualFw * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__ActuatorControlsVirtualFw__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS_VIRTUAL_FW__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/SensorAccel.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/sensor_accel__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void SensorAccel_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::SensorAccel(_init); } void SensorAccel_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::SensorAccel *>(message_memory); typed_message->~SensorAccel(); } size_t size_function__SensorAccel__clip_counter(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__SensorAccel__clip_counter(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint8_t, 3> *>(untyped_member); return &member[index]; } void * get_function__SensorAccel__clip_counter(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint8_t, 3> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember SensorAccel_message_member_array[10] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorAccel, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorAccel, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "device_id", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorAccel, device_id), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "x", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorAccel, x), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "y", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorAccel, y), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "z", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorAccel, z), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "temperature", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorAccel, temperature), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "error_count", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorAccel, error_count), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "clip_counter", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorAccel, clip_counter), // bytes offset in struct nullptr, // default value size_function__SensorAccel__clip_counter, // size() function pointer get_const_function__SensorAccel__clip_counter, // get_const(index) function pointer get_function__SensorAccel__clip_counter, // get(index) function pointer nullptr // resize(index) function pointer }, { "samples", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorAccel, samples), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers SensorAccel_message_members = { "px4_msgs::msg", // message namespace "SensorAccel", // message name 10, // number of fields sizeof(px4_msgs::msg::SensorAccel), SensorAccel_message_member_array, // message members SensorAccel_init_function, // function to initialize message memory (memory has to be allocated) SensorAccel_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t SensorAccel_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &SensorAccel_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::SensorAccel>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::SensorAccel_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, SensorAccel)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::SensorAccel_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/home_position__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/HomePosition.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/home_position__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/home_position__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::HomePosition & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: lat cdr << ros_message.lat; // Member: lon cdr << ros_message.lon; // Member: alt cdr << ros_message.alt; // Member: x cdr << ros_message.x; // Member: y cdr << ros_message.y; // Member: z cdr << ros_message.z; // Member: yaw cdr << ros_message.yaw; // Member: valid_alt cdr << (ros_message.valid_alt ? true : false); // Member: valid_hpos cdr << (ros_message.valid_hpos ? true : false); // Member: valid_lpos cdr << (ros_message.valid_lpos ? true : false); // Member: manual_home cdr << (ros_message.manual_home ? true : false); return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::HomePosition & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: lat cdr >> ros_message.lat; // Member: lon cdr >> ros_message.lon; // Member: alt cdr >> ros_message.alt; // Member: x cdr >> ros_message.x; // Member: y cdr >> ros_message.y; // Member: z cdr >> ros_message.z; // Member: yaw cdr >> ros_message.yaw; // Member: valid_alt { uint8_t tmp; cdr >> tmp; ros_message.valid_alt = tmp ? true : false; } // Member: valid_hpos { uint8_t tmp; cdr >> tmp; ros_message.valid_hpos = tmp ? true : false; } // Member: valid_lpos { uint8_t tmp; cdr >> tmp; ros_message.valid_lpos = tmp ? true : false; } // Member: manual_home { uint8_t tmp; cdr >> tmp; ros_message.manual_home = tmp ? true : false; } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::HomePosition & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: lat { size_t item_size = sizeof(ros_message.lat); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: lon { size_t item_size = sizeof(ros_message.lon); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: alt { size_t item_size = sizeof(ros_message.alt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: x { size_t item_size = sizeof(ros_message.x); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: y { size_t item_size = sizeof(ros_message.y); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: z { size_t item_size = sizeof(ros_message.z); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: yaw { size_t item_size = sizeof(ros_message.yaw); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: valid_alt { size_t item_size = sizeof(ros_message.valid_alt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: valid_hpos { size_t item_size = sizeof(ros_message.valid_hpos); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: valid_lpos { size_t item_size = sizeof(ros_message.valid_lpos); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: manual_home { size_t item_size = sizeof(ros_message.manual_home); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_HomePosition( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: lat { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: lon { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: alt { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: x { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: y { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: z { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: yaw { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: valid_alt { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: valid_hpos { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: valid_lpos { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: manual_home { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _HomePosition__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::HomePosition *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _HomePosition__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::HomePosition *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _HomePosition__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::HomePosition *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _HomePosition__max_serialized_size(bool & full_bounded) { return max_serialized_size_HomePosition(full_bounded, 0); } static message_type_support_callbacks_t _HomePosition__callbacks = { "px4_msgs::msg", "HomePosition", _HomePosition__cdr_serialize, _HomePosition__cdr_deserialize, _HomePosition__get_serialized_size, _HomePosition__max_serialized_size }; static rosidl_message_type_support_t _HomePosition__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_HomePosition__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::HomePosition>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_HomePosition__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, HomePosition)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_HomePosition__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/obstacle_distance_fused.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__OBSTACLE_DISTANCE_FUSED_HPP_ #define PX4_MSGS__MSG__OBSTACLE_DISTANCE_FUSED_HPP_ #include "px4_msgs/msg/obstacle_distance_fused__struct.hpp" #include "px4_msgs/msg/obstacle_distance_fused__traits.hpp" #endif // PX4_MSGS__MSG__OBSTACLE_DISTANCE_FUSED_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/orb_test_medium_multi.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/OrbTestMediumMulti.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORB_TEST_MEDIUM_MULTI_H_ #define PX4_MSGS__MSG__ORB_TEST_MEDIUM_MULTI_H_ #include "px4_msgs/msg/orb_test_medium_multi__struct.h" #include "px4_msgs/msg/orb_test_medium_multi__functions.h" #include "px4_msgs/msg/orb_test_medium_multi__type_support.h" #endif // PX4_MSGS__MSG__ORB_TEST_MEDIUM_MULTI_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/tecs_status__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/TecsStatus.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/tecs_status__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void TecsStatus_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::TecsStatus(_init); } void TecsStatus_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::TecsStatus *>(message_memory); typed_message->~TecsStatus(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember TecsStatus_message_member_array[26] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TecsStatus, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "altitude_sp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TecsStatus, altitude_sp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "altitude_filtered", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TecsStatus, altitude_filtered), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "height_rate_setpoint", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TecsStatus, height_rate_setpoint), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "height_rate", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TecsStatus, height_rate), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "equivalent_airspeed_sp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TecsStatus, equivalent_airspeed_sp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "true_airspeed_sp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TecsStatus, true_airspeed_sp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "true_airspeed_filtered", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TecsStatus, true_airspeed_filtered), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "true_airspeed_derivative_sp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TecsStatus, true_airspeed_derivative_sp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "true_airspeed_derivative", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TecsStatus, true_airspeed_derivative), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "total_energy_error", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TecsStatus, total_energy_error), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "energy_distribution_error", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TecsStatus, energy_distribution_error), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "total_energy_rate_error", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TecsStatus, total_energy_rate_error), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "energy_distribution_rate_error", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TecsStatus, energy_distribution_rate_error), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "total_energy", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TecsStatus, total_energy), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "total_energy_rate", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TecsStatus, total_energy_rate), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "total_energy_balance", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TecsStatus, total_energy_balance), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "total_energy_balance_rate", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TecsStatus, total_energy_balance_rate), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "total_energy_sp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TecsStatus, total_energy_sp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "total_energy_rate_sp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TecsStatus, total_energy_rate_sp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "total_energy_balance_sp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TecsStatus, total_energy_balance_sp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "total_energy_balance_rate_sp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TecsStatus, total_energy_balance_rate_sp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "throttle_integ", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TecsStatus, throttle_integ), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "pitch_integ", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TecsStatus, pitch_integ), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "throttle_sp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TecsStatus, throttle_sp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "mode", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TecsStatus, mode), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers TecsStatus_message_members = { "px4_msgs::msg", // message namespace "TecsStatus", // message name 26, // number of fields sizeof(px4_msgs::msg::TecsStatus), TecsStatus_message_member_array, // message members TecsStatus_init_function, // function to initialize message memory (memory has to be allocated) TecsStatus_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t TecsStatus_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &TecsStatus_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::TecsStatus>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::TecsStatus_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, TecsStatus)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::TecsStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/mag_worker_data.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__MAG_WORKER_DATA_HPP_ #define PX4_MSGS__MSG__MAG_WORKER_DATA_HPP_ #include "px4_msgs/msg/mag_worker_data__struct.hpp" #include "px4_msgs/msg/mag_worker_data__traits.hpp" #endif // PX4_MSGS__MSG__MAG_WORKER_DATA_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/rc_parameter_map__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/RcParameterMap.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/rc_parameter_map__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/rc_parameter_map__functions.h" #include "px4_msgs/msg/rc_parameter_map__struct.h" #ifdef __cplusplus extern "C" { #endif void RcParameterMap__rosidl_typesupport_introspection_c__RcParameterMap_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__RcParameterMap__init(message_memory); } void RcParameterMap__rosidl_typesupport_introspection_c__RcParameterMap_fini_function(void * message_memory) { px4_msgs__msg__RcParameterMap__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember RcParameterMap__rosidl_typesupport_introspection_c__RcParameterMap_message_member_array[8] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__RcParameterMap, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__RcParameterMap, valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "param_index", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT32, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__RcParameterMap, param_index), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "param_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message true, // is array 51, // array size false, // is upper bound offsetof(px4_msgs__msg__RcParameterMap, param_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "scale", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__RcParameterMap, scale), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "value0", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__RcParameterMap, value0), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "value_min", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__RcParameterMap, value_min), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "value_max", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__RcParameterMap, value_max), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers RcParameterMap__rosidl_typesupport_introspection_c__RcParameterMap_message_members = { "px4_msgs__msg", // message namespace "RcParameterMap", // message name 8, // number of fields sizeof(px4_msgs__msg__RcParameterMap), RcParameterMap__rosidl_typesupport_introspection_c__RcParameterMap_message_member_array, // message members RcParameterMap__rosidl_typesupport_introspection_c__RcParameterMap_init_function, // function to initialize message memory (memory has to be allocated) RcParameterMap__rosidl_typesupport_introspection_c__RcParameterMap_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t RcParameterMap__rosidl_typesupport_introspection_c__RcParameterMap_message_type_support_handle = { 0, &RcParameterMap__rosidl_typesupport_introspection_c__RcParameterMap_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, RcParameterMap)() { if (!RcParameterMap__rosidl_typesupport_introspection_c__RcParameterMap_message_type_support_handle.typesupport_identifier) { RcParameterMap__rosidl_typesupport_introspection_c__RcParameterMap_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &RcParameterMap__rosidl_typesupport_introspection_c__RcParameterMap_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/VehicleStatus.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/vehicle_status__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/vehicle_status__functions.h" #include "px4_msgs/msg/vehicle_status__struct.h" #ifdef __cplusplus extern "C" { #endif void VehicleStatus__rosidl_typesupport_introspection_c__VehicleStatus_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__VehicleStatus__init(message_memory); } void VehicleStatus__rosidl_typesupport_introspection_c__VehicleStatus_fini_function(void * message_memory) { px4_msgs__msg__VehicleStatus__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember VehicleStatus__rosidl_typesupport_introspection_c__VehicleStatus_message_member_array[31] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "nav_state", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, nav_state), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "nav_state_timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, nav_state_timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "arming_state", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, arming_state), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "hil_state", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, hil_state), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "failsafe", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, failsafe), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "failsafe_timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, failsafe_timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "system_type", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, system_type), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "system_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, system_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "component_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, component_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vehicle_type", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, vehicle_type), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "is_vtol", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, is_vtol), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "is_vtol_tailsitter", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, is_vtol_tailsitter), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vtol_fw_permanent_stab", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, vtol_fw_permanent_stab), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "in_transition_mode", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, in_transition_mode), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "in_transition_to_fw", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, in_transition_to_fw), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rc_signal_lost", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, rc_signal_lost), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rc_input_mode", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, rc_input_mode), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "data_link_lost", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, data_link_lost), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "data_link_lost_counter", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, data_link_lost_counter), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "high_latency_data_link_lost", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, high_latency_data_link_lost), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "engine_failure", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, engine_failure), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "mission_failure", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, mission_failure), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "failure_detector_status", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, failure_detector_status), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "onboard_control_sensors_present", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, onboard_control_sensors_present), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "onboard_control_sensors_enabled", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, onboard_control_sensors_enabled), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "onboard_control_sensors_health", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, onboard_control_sensors_health), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "latest_arming_reason", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, latest_arming_reason), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "latest_disarming_reason", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, latest_disarming_reason), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "armed_time", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, armed_time), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "takeoff_time", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatus, takeoff_time), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers VehicleStatus__rosidl_typesupport_introspection_c__VehicleStatus_message_members = { "px4_msgs__msg", // message namespace "VehicleStatus", // message name 31, // number of fields sizeof(px4_msgs__msg__VehicleStatus), VehicleStatus__rosidl_typesupport_introspection_c__VehicleStatus_message_member_array, // message members VehicleStatus__rosidl_typesupport_introspection_c__VehicleStatus_init_function, // function to initialize message memory (memory has to be allocated) VehicleStatus__rosidl_typesupport_introspection_c__VehicleStatus_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t VehicleStatus__rosidl_typesupport_introspection_c__VehicleStatus_message_type_support_handle = { 0, &VehicleStatus__rosidl_typesupport_introspection_c__VehicleStatus_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, VehicleStatus)() { if (!VehicleStatus__rosidl_typesupport_introspection_c__VehicleStatus_message_type_support_handle.typesupport_identifier) { VehicleStatus__rosidl_typesupport_introspection_c__VehicleStatus_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &VehicleStatus__rosidl_typesupport_introspection_c__VehicleStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_constraints__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/VehicleConstraints.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_constraints__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/vehicle_constraints__struct.h" #include "px4_msgs/msg/vehicle_constraints__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _VehicleConstraints__ros_msg_type = px4_msgs__msg__VehicleConstraints; static bool _VehicleConstraints__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _VehicleConstraints__ros_msg_type * ros_message = static_cast<const _VehicleConstraints__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: speed_xy { cdr << ros_message->speed_xy; } // Field name: speed_up { cdr << ros_message->speed_up; } // Field name: speed_down { cdr << ros_message->speed_down; } // Field name: want_takeoff { cdr << (ros_message->want_takeoff ? true : false); } return true; } static bool _VehicleConstraints__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _VehicleConstraints__ros_msg_type * ros_message = static_cast<_VehicleConstraints__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: speed_xy { cdr >> ros_message->speed_xy; } // Field name: speed_up { cdr >> ros_message->speed_up; } // Field name: speed_down { cdr >> ros_message->speed_down; } // Field name: want_takeoff { uint8_t tmp; cdr >> tmp; ros_message->want_takeoff = tmp ? true : false; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__VehicleConstraints( const void * untyped_ros_message, size_t current_alignment) { const _VehicleConstraints__ros_msg_type * ros_message = static_cast<const _VehicleConstraints__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name speed_xy { size_t item_size = sizeof(ros_message->speed_xy); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name speed_up { size_t item_size = sizeof(ros_message->speed_up); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name speed_down { size_t item_size = sizeof(ros_message->speed_down); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name want_takeoff { size_t item_size = sizeof(ros_message->want_takeoff); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _VehicleConstraints__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__VehicleConstraints( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__VehicleConstraints( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: speed_xy { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: speed_up { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: speed_down { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: want_takeoff { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _VehicleConstraints__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__VehicleConstraints( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_VehicleConstraints = { "px4_msgs::msg", "VehicleConstraints", _VehicleConstraints__cdr_serialize, _VehicleConstraints__cdr_deserialize, _VehicleConstraints__get_serialized_size, _VehicleConstraints__max_serialized_size }; static rosidl_message_type_support_t _VehicleConstraints__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_VehicleConstraints, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, VehicleConstraints)() { return &_VehicleConstraints__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_preflight_mag__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/SensorPreflightMag.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/sensor_preflight_mag__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/sensor_preflight_mag__struct.h" #include "px4_msgs/msg/sensor_preflight_mag__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _SensorPreflightMag__ros_msg_type = px4_msgs__msg__SensorPreflightMag; static bool _SensorPreflightMag__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _SensorPreflightMag__ros_msg_type * ros_message = static_cast<const _SensorPreflightMag__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: mag_inconsistency_angle { cdr << ros_message->mag_inconsistency_angle; } return true; } static bool _SensorPreflightMag__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _SensorPreflightMag__ros_msg_type * ros_message = static_cast<_SensorPreflightMag__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: mag_inconsistency_angle { cdr >> ros_message->mag_inconsistency_angle; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__SensorPreflightMag( const void * untyped_ros_message, size_t current_alignment) { const _SensorPreflightMag__ros_msg_type * ros_message = static_cast<const _SensorPreflightMag__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name mag_inconsistency_angle { size_t item_size = sizeof(ros_message->mag_inconsistency_angle); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _SensorPreflightMag__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__SensorPreflightMag( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__SensorPreflightMag( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: mag_inconsistency_angle { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _SensorPreflightMag__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__SensorPreflightMag( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_SensorPreflightMag = { "px4_msgs::msg", "SensorPreflightMag", _SensorPreflightMag__cdr_serialize, _SensorPreflightMag__cdr_deserialize, _SensorPreflightMag__get_serialized_size, _SensorPreflightMag__max_serialized_size }; static rosidl_message_type_support_t _SensorPreflightMag__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_SensorPreflightMag, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, SensorPreflightMag)() { return &_SensorPreflightMag__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/position_setpoint_triplet.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__POSITION_SETPOINT_TRIPLET_HPP_ #define PX4_MSGS__MSG__POSITION_SETPOINT_TRIPLET_HPP_ #include "px4_msgs/msg/position_setpoint_triplet__struct.hpp" #include "px4_msgs/msg/position_setpoint_triplet__traits.hpp" #endif // PX4_MSGS__MSG__POSITION_SETPOINT_TRIPLET_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_status_flags__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/VehicleStatusFlags.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_STATUS_FLAGS__STRUCT_HPP_ #define PX4_MSGS__MSG__VEHICLE_STATUS_FLAGS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__VehicleStatusFlags __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__VehicleStatusFlags __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct VehicleStatusFlags_ { using Type = VehicleStatusFlags_<ContainerAllocator>; explicit VehicleStatusFlags_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->condition_calibration_enabled = false; this->condition_system_sensors_initialized = false; this->condition_system_hotplug_timeout = false; this->condition_system_returned_to_home = false; this->condition_auto_mission_available = false; this->condition_angular_velocity_valid = false; this->condition_attitude_valid = false; this->condition_local_altitude_valid = false; this->condition_local_position_valid = false; this->condition_local_velocity_valid = false; this->condition_global_position_valid = false; this->condition_home_position_valid = false; this->condition_power_input_valid = false; this->condition_battery_healthy = false; this->condition_escs_error = false; this->condition_escs_failure = false; this->circuit_breaker_engaged_power_check = false; this->circuit_breaker_engaged_airspd_check = false; this->circuit_breaker_engaged_enginefailure_check = false; this->circuit_breaker_flight_termination_disabled = false; this->circuit_breaker_engaged_usb_check = false; this->circuit_breaker_engaged_posfailure_check = false; this->circuit_breaker_vtol_fw_arming_check = false; this->offboard_control_signal_found_once = false; this->offboard_control_signal_lost = false; this->rc_signal_found_once = false; this->rc_input_blocked = false; this->rc_calibration_valid = false; this->vtol_transition_failure = false; this->usb_connected = false; this->sd_card_detected_once = false; this->avoidance_system_required = false; this->avoidance_system_valid = false; } } explicit VehicleStatusFlags_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->condition_calibration_enabled = false; this->condition_system_sensors_initialized = false; this->condition_system_hotplug_timeout = false; this->condition_system_returned_to_home = false; this->condition_auto_mission_available = false; this->condition_angular_velocity_valid = false; this->condition_attitude_valid = false; this->condition_local_altitude_valid = false; this->condition_local_position_valid = false; this->condition_local_velocity_valid = false; this->condition_global_position_valid = false; this->condition_home_position_valid = false; this->condition_power_input_valid = false; this->condition_battery_healthy = false; this->condition_escs_error = false; this->condition_escs_failure = false; this->circuit_breaker_engaged_power_check = false; this->circuit_breaker_engaged_airspd_check = false; this->circuit_breaker_engaged_enginefailure_check = false; this->circuit_breaker_flight_termination_disabled = false; this->circuit_breaker_engaged_usb_check = false; this->circuit_breaker_engaged_posfailure_check = false; this->circuit_breaker_vtol_fw_arming_check = false; this->offboard_control_signal_found_once = false; this->offboard_control_signal_lost = false; this->rc_signal_found_once = false; this->rc_input_blocked = false; this->rc_calibration_valid = false; this->vtol_transition_failure = false; this->usb_connected = false; this->sd_card_detected_once = false; this->avoidance_system_required = false; this->avoidance_system_valid = false; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _condition_calibration_enabled_type = bool; _condition_calibration_enabled_type condition_calibration_enabled; using _condition_system_sensors_initialized_type = bool; _condition_system_sensors_initialized_type condition_system_sensors_initialized; using _condition_system_hotplug_timeout_type = bool; _condition_system_hotplug_timeout_type condition_system_hotplug_timeout; using _condition_system_returned_to_home_type = bool; _condition_system_returned_to_home_type condition_system_returned_to_home; using _condition_auto_mission_available_type = bool; _condition_auto_mission_available_type condition_auto_mission_available; using _condition_angular_velocity_valid_type = bool; _condition_angular_velocity_valid_type condition_angular_velocity_valid; using _condition_attitude_valid_type = bool; _condition_attitude_valid_type condition_attitude_valid; using _condition_local_altitude_valid_type = bool; _condition_local_altitude_valid_type condition_local_altitude_valid; using _condition_local_position_valid_type = bool; _condition_local_position_valid_type condition_local_position_valid; using _condition_local_velocity_valid_type = bool; _condition_local_velocity_valid_type condition_local_velocity_valid; using _condition_global_position_valid_type = bool; _condition_global_position_valid_type condition_global_position_valid; using _condition_home_position_valid_type = bool; _condition_home_position_valid_type condition_home_position_valid; using _condition_power_input_valid_type = bool; _condition_power_input_valid_type condition_power_input_valid; using _condition_battery_healthy_type = bool; _condition_battery_healthy_type condition_battery_healthy; using _condition_escs_error_type = bool; _condition_escs_error_type condition_escs_error; using _condition_escs_failure_type = bool; _condition_escs_failure_type condition_escs_failure; using _circuit_breaker_engaged_power_check_type = bool; _circuit_breaker_engaged_power_check_type circuit_breaker_engaged_power_check; using _circuit_breaker_engaged_airspd_check_type = bool; _circuit_breaker_engaged_airspd_check_type circuit_breaker_engaged_airspd_check; using _circuit_breaker_engaged_enginefailure_check_type = bool; _circuit_breaker_engaged_enginefailure_check_type circuit_breaker_engaged_enginefailure_check; using _circuit_breaker_flight_termination_disabled_type = bool; _circuit_breaker_flight_termination_disabled_type circuit_breaker_flight_termination_disabled; using _circuit_breaker_engaged_usb_check_type = bool; _circuit_breaker_engaged_usb_check_type circuit_breaker_engaged_usb_check; using _circuit_breaker_engaged_posfailure_check_type = bool; _circuit_breaker_engaged_posfailure_check_type circuit_breaker_engaged_posfailure_check; using _circuit_breaker_vtol_fw_arming_check_type = bool; _circuit_breaker_vtol_fw_arming_check_type circuit_breaker_vtol_fw_arming_check; using _offboard_control_signal_found_once_type = bool; _offboard_control_signal_found_once_type offboard_control_signal_found_once; using _offboard_control_signal_lost_type = bool; _offboard_control_signal_lost_type offboard_control_signal_lost; using _rc_signal_found_once_type = bool; _rc_signal_found_once_type rc_signal_found_once; using _rc_input_blocked_type = bool; _rc_input_blocked_type rc_input_blocked; using _rc_calibration_valid_type = bool; _rc_calibration_valid_type rc_calibration_valid; using _vtol_transition_failure_type = bool; _vtol_transition_failure_type vtol_transition_failure; using _usb_connected_type = bool; _usb_connected_type usb_connected; using _sd_card_detected_once_type = bool; _sd_card_detected_once_type sd_card_detected_once; using _avoidance_system_required_type = bool; _avoidance_system_required_type avoidance_system_required; using _avoidance_system_valid_type = bool; _avoidance_system_valid_type avoidance_system_valid; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__condition_calibration_enabled( const bool & _arg) { this->condition_calibration_enabled = _arg; return *this; } Type & set__condition_system_sensors_initialized( const bool & _arg) { this->condition_system_sensors_initialized = _arg; return *this; } Type & set__condition_system_hotplug_timeout( const bool & _arg) { this->condition_system_hotplug_timeout = _arg; return *this; } Type & set__condition_system_returned_to_home( const bool & _arg) { this->condition_system_returned_to_home = _arg; return *this; } Type & set__condition_auto_mission_available( const bool & _arg) { this->condition_auto_mission_available = _arg; return *this; } Type & set__condition_angular_velocity_valid( const bool & _arg) { this->condition_angular_velocity_valid = _arg; return *this; } Type & set__condition_attitude_valid( const bool & _arg) { this->condition_attitude_valid = _arg; return *this; } Type & set__condition_local_altitude_valid( const bool & _arg) { this->condition_local_altitude_valid = _arg; return *this; } Type & set__condition_local_position_valid( const bool & _arg) { this->condition_local_position_valid = _arg; return *this; } Type & set__condition_local_velocity_valid( const bool & _arg) { this->condition_local_velocity_valid = _arg; return *this; } Type & set__condition_global_position_valid( const bool & _arg) { this->condition_global_position_valid = _arg; return *this; } Type & set__condition_home_position_valid( const bool & _arg) { this->condition_home_position_valid = _arg; return *this; } Type & set__condition_power_input_valid( const bool & _arg) { this->condition_power_input_valid = _arg; return *this; } Type & set__condition_battery_healthy( const bool & _arg) { this->condition_battery_healthy = _arg; return *this; } Type & set__condition_escs_error( const bool & _arg) { this->condition_escs_error = _arg; return *this; } Type & set__condition_escs_failure( const bool & _arg) { this->condition_escs_failure = _arg; return *this; } Type & set__circuit_breaker_engaged_power_check( const bool & _arg) { this->circuit_breaker_engaged_power_check = _arg; return *this; } Type & set__circuit_breaker_engaged_airspd_check( const bool & _arg) { this->circuit_breaker_engaged_airspd_check = _arg; return *this; } Type & set__circuit_breaker_engaged_enginefailure_check( const bool & _arg) { this->circuit_breaker_engaged_enginefailure_check = _arg; return *this; } Type & set__circuit_breaker_flight_termination_disabled( const bool & _arg) { this->circuit_breaker_flight_termination_disabled = _arg; return *this; } Type & set__circuit_breaker_engaged_usb_check( const bool & _arg) { this->circuit_breaker_engaged_usb_check = _arg; return *this; } Type & set__circuit_breaker_engaged_posfailure_check( const bool & _arg) { this->circuit_breaker_engaged_posfailure_check = _arg; return *this; } Type & set__circuit_breaker_vtol_fw_arming_check( const bool & _arg) { this->circuit_breaker_vtol_fw_arming_check = _arg; return *this; } Type & set__offboard_control_signal_found_once( const bool & _arg) { this->offboard_control_signal_found_once = _arg; return *this; } Type & set__offboard_control_signal_lost( const bool & _arg) { this->offboard_control_signal_lost = _arg; return *this; } Type & set__rc_signal_found_once( const bool & _arg) { this->rc_signal_found_once = _arg; return *this; } Type & set__rc_input_blocked( const bool & _arg) { this->rc_input_blocked = _arg; return *this; } Type & set__rc_calibration_valid( const bool & _arg) { this->rc_calibration_valid = _arg; return *this; } Type & set__vtol_transition_failure( const bool & _arg) { this->vtol_transition_failure = _arg; return *this; } Type & set__usb_connected( const bool & _arg) { this->usb_connected = _arg; return *this; } Type & set__sd_card_detected_once( const bool & _arg) { this->sd_card_detected_once = _arg; return *this; } Type & set__avoidance_system_required( const bool & _arg) { this->avoidance_system_required = _arg; return *this; } Type & set__avoidance_system_valid( const bool & _arg) { this->avoidance_system_valid = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::VehicleStatusFlags_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::VehicleStatusFlags_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::VehicleStatusFlags_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::VehicleStatusFlags_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleStatusFlags_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleStatusFlags_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleStatusFlags_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleStatusFlags_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::VehicleStatusFlags_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::VehicleStatusFlags_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__VehicleStatusFlags std::shared_ptr<px4_msgs::msg::VehicleStatusFlags_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__VehicleStatusFlags std::shared_ptr<px4_msgs::msg::VehicleStatusFlags_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const VehicleStatusFlags_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->condition_calibration_enabled != other.condition_calibration_enabled) { return false; } if (this->condition_system_sensors_initialized != other.condition_system_sensors_initialized) { return false; } if (this->condition_system_hotplug_timeout != other.condition_system_hotplug_timeout) { return false; } if (this->condition_system_returned_to_home != other.condition_system_returned_to_home) { return false; } if (this->condition_auto_mission_available != other.condition_auto_mission_available) { return false; } if (this->condition_angular_velocity_valid != other.condition_angular_velocity_valid) { return false; } if (this->condition_attitude_valid != other.condition_attitude_valid) { return false; } if (this->condition_local_altitude_valid != other.condition_local_altitude_valid) { return false; } if (this->condition_local_position_valid != other.condition_local_position_valid) { return false; } if (this->condition_local_velocity_valid != other.condition_local_velocity_valid) { return false; } if (this->condition_global_position_valid != other.condition_global_position_valid) { return false; } if (this->condition_home_position_valid != other.condition_home_position_valid) { return false; } if (this->condition_power_input_valid != other.condition_power_input_valid) { return false; } if (this->condition_battery_healthy != other.condition_battery_healthy) { return false; } if (this->condition_escs_error != other.condition_escs_error) { return false; } if (this->condition_escs_failure != other.condition_escs_failure) { return false; } if (this->circuit_breaker_engaged_power_check != other.circuit_breaker_engaged_power_check) { return false; } if (this->circuit_breaker_engaged_airspd_check != other.circuit_breaker_engaged_airspd_check) { return false; } if (this->circuit_breaker_engaged_enginefailure_check != other.circuit_breaker_engaged_enginefailure_check) { return false; } if (this->circuit_breaker_flight_termination_disabled != other.circuit_breaker_flight_termination_disabled) { return false; } if (this->circuit_breaker_engaged_usb_check != other.circuit_breaker_engaged_usb_check) { return false; } if (this->circuit_breaker_engaged_posfailure_check != other.circuit_breaker_engaged_posfailure_check) { return false; } if (this->circuit_breaker_vtol_fw_arming_check != other.circuit_breaker_vtol_fw_arming_check) { return false; } if (this->offboard_control_signal_found_once != other.offboard_control_signal_found_once) { return false; } if (this->offboard_control_signal_lost != other.offboard_control_signal_lost) { return false; } if (this->rc_signal_found_once != other.rc_signal_found_once) { return false; } if (this->rc_input_blocked != other.rc_input_blocked) { return false; } if (this->rc_calibration_valid != other.rc_calibration_valid) { return false; } if (this->vtol_transition_failure != other.vtol_transition_failure) { return false; } if (this->usb_connected != other.usb_connected) { return false; } if (this->sd_card_detected_once != other.sd_card_detected_once) { return false; } if (this->avoidance_system_required != other.avoidance_system_required) { return false; } if (this->avoidance_system_valid != other.avoidance_system_valid) { return false; } return true; } bool operator!=(const VehicleStatusFlags_ & other) const { return !this->operator==(other); } }; // struct VehicleStatusFlags_ // alias to use template instance with default allocator using VehicleStatusFlags = px4_msgs::msg::VehicleStatusFlags_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__VEHICLE_STATUS_FLAGS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_obstacle_distance_fused_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/ObstacleDistanceFused.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/obstacle_distance_fused__struct.h" #include "px4_msgs/msg/obstacle_distance_fused__functions.h" #include "rosidl_generator_c/primitives_sequence.h" #include "rosidl_generator_c/primitives_sequence_functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__obstacle_distance_fused__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[60]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._obstacle_distance_fused.ObstacleDistanceFused", full_classname_dest, 59) == 0); } px4_msgs__msg__ObstacleDistanceFused * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // frame PyObject * field = PyObject_GetAttrString(_pymsg, "frame"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->frame = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // sensor_type PyObject * field = PyObject_GetAttrString(_pymsg, "sensor_type"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->sensor_type = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // distances PyObject * field = PyObject_GetAttrString(_pymsg, "distances"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT16); Py_ssize_t size = 72; uint16_t * dest = ros_message->distances; for (Py_ssize_t i = 0; i < size; ++i) { uint16_t tmp = *(npy_uint16 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint16_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // increment PyObject * field = PyObject_GetAttrString(_pymsg, "increment"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->increment = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // min_distance PyObject * field = PyObject_GetAttrString(_pymsg, "min_distance"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->min_distance = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // max_distance PyObject * field = PyObject_GetAttrString(_pymsg, "max_distance"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->max_distance = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // angle_offset PyObject * field = PyObject_GetAttrString(_pymsg, "angle_offset"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->angle_offset = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__obstacle_distance_fused__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of ObstacleDistanceFused */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._obstacle_distance_fused"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "ObstacleDistanceFused"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__ObstacleDistanceFused * ros_message = (px4_msgs__msg__ObstacleDistanceFused *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // frame PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->frame); { int rc = PyObject_SetAttrString(_pymessage, "frame", field); Py_DECREF(field); if (rc) { return NULL; } } } { // sensor_type PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->sensor_type); { int rc = PyObject_SetAttrString(_pymessage, "sensor_type", field); Py_DECREF(field); if (rc) { return NULL; } } } { // distances PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "distances"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT16); assert(sizeof(npy_uint16) == sizeof(uint16_t)); npy_uint16 * dst = (npy_uint16 *)PyArray_GETPTR1(seq_field, 0); uint16_t * src = &(ros_message->distances[0]); memcpy(dst, src, 72 * sizeof(uint16_t)); Py_DECREF(field); } { // increment PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->increment); { int rc = PyObject_SetAttrString(_pymessage, "increment", field); Py_DECREF(field); if (rc) { return NULL; } } } { // min_distance PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->min_distance); { int rc = PyObject_SetAttrString(_pymessage, "min_distance", field); Py_DECREF(field); if (rc) { return NULL; } } } { // max_distance PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->max_distance); { int rc = PyObject_SetAttrString(_pymessage, "max_distance", field); Py_DECREF(field); if (rc) { return NULL; } } } { // angle_offset PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->angle_offset); { int rc = PyObject_SetAttrString(_pymessage, "angle_offset", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/GimbalDeviceSetAttitude.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/gimbal_device_set_attitude__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/gimbal_device_set_attitude__functions.h" #include "px4_msgs/msg/gimbal_device_set_attitude__struct.h" #ifdef __cplusplus extern "C" { #endif void GimbalDeviceSetAttitude__rosidl_typesupport_introspection_c__GimbalDeviceSetAttitude_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__GimbalDeviceSetAttitude__init(message_memory); } void GimbalDeviceSetAttitude__rosidl_typesupport_introspection_c__GimbalDeviceSetAttitude_fini_function(void * message_memory) { px4_msgs__msg__GimbalDeviceSetAttitude__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember GimbalDeviceSetAttitude__rosidl_typesupport_introspection_c__GimbalDeviceSetAttitude_message_member_array[8] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceSetAttitude, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "target_system", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceSetAttitude, target_system), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "target_component", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceSetAttitude, target_component), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "flags", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceSetAttitude, flags), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "q", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceSetAttitude, q), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "angular_velocity_x", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceSetAttitude, angular_velocity_x), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "angular_velocity_y", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceSetAttitude, angular_velocity_y), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "angular_velocity_z", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceSetAttitude, angular_velocity_z), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers GimbalDeviceSetAttitude__rosidl_typesupport_introspection_c__GimbalDeviceSetAttitude_message_members = { "px4_msgs__msg", // message namespace "GimbalDeviceSetAttitude", // message name 8, // number of fields sizeof(px4_msgs__msg__GimbalDeviceSetAttitude), GimbalDeviceSetAttitude__rosidl_typesupport_introspection_c__GimbalDeviceSetAttitude_message_member_array, // message members GimbalDeviceSetAttitude__rosidl_typesupport_introspection_c__GimbalDeviceSetAttitude_init_function, // function to initialize message memory (memory has to be allocated) GimbalDeviceSetAttitude__rosidl_typesupport_introspection_c__GimbalDeviceSetAttitude_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t GimbalDeviceSetAttitude__rosidl_typesupport_introspection_c__GimbalDeviceSetAttitude_message_type_support_handle = { 0, &GimbalDeviceSetAttitude__rosidl_typesupport_introspection_c__GimbalDeviceSetAttitude_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, GimbalDeviceSetAttitude)() { if (!GimbalDeviceSetAttitude__rosidl_typesupport_introspection_c__GimbalDeviceSetAttitude_message_type_support_handle.typesupport_identifier) { GimbalDeviceSetAttitude__rosidl_typesupport_introspection_c__GimbalDeviceSetAttitude_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &GimbalDeviceSetAttitude__rosidl_typesupport_introspection_c__GimbalDeviceSetAttitude_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/timesync_status__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/TimesyncStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/timesync_status__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__TimesyncStatus__init(px4_msgs__msg__TimesyncStatus * msg) { if (!msg) { return false; } // timestamp // remote_timestamp // observed_offset // estimated_offset // round_trip_time return true; } void px4_msgs__msg__TimesyncStatus__fini(px4_msgs__msg__TimesyncStatus * msg) { if (!msg) { return; } // timestamp // remote_timestamp // observed_offset // estimated_offset // round_trip_time } px4_msgs__msg__TimesyncStatus * px4_msgs__msg__TimesyncStatus__create() { px4_msgs__msg__TimesyncStatus * msg = (px4_msgs__msg__TimesyncStatus *)malloc(sizeof(px4_msgs__msg__TimesyncStatus)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__TimesyncStatus)); bool success = px4_msgs__msg__TimesyncStatus__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__TimesyncStatus__destroy(px4_msgs__msg__TimesyncStatus * msg) { if (msg) { px4_msgs__msg__TimesyncStatus__fini(msg); } free(msg); } bool px4_msgs__msg__TimesyncStatus__Sequence__init(px4_msgs__msg__TimesyncStatus__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__TimesyncStatus * data = NULL; if (size) { data = (px4_msgs__msg__TimesyncStatus *)calloc(size, sizeof(px4_msgs__msg__TimesyncStatus)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__TimesyncStatus__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__TimesyncStatus__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__TimesyncStatus__Sequence__fini(px4_msgs__msg__TimesyncStatus__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__TimesyncStatus__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__TimesyncStatus__Sequence * px4_msgs__msg__TimesyncStatus__Sequence__create(size_t size) { px4_msgs__msg__TimesyncStatus__Sequence * array = (px4_msgs__msg__TimesyncStatus__Sequence *)malloc(sizeof(px4_msgs__msg__TimesyncStatus__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__TimesyncStatus__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__TimesyncStatus__Sequence__destroy(px4_msgs__msg__TimesyncStatus__Sequence * array) { if (array) { px4_msgs__msg__TimesyncStatus__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/rate_ctrl_status.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/RateCtrlStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__RATE_CTRL_STATUS_H_ #define PX4_MSGS__MSG__RATE_CTRL_STATUS_H_ #include "px4_msgs/msg/rate_ctrl_status__struct.h" #include "px4_msgs/msg/rate_ctrl_status__functions.h" #include "px4_msgs/msg/rate_ctrl_status__type_support.h" #endif // PX4_MSGS__MSG__RATE_CTRL_STATUS_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_estimator_selector_status_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/EstimatorSelectorStatus.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/estimator_selector_status__struct.h" #include "px4_msgs/msg/estimator_selector_status__functions.h" #include "rosidl_generator_c/primitives_sequence.h" #include "rosidl_generator_c/primitives_sequence_functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__estimator_selector_status__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[64]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._estimator_selector_status.EstimatorSelectorStatus", full_classname_dest, 63) == 0); } px4_msgs__msg__EstimatorSelectorStatus * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // primary_instance PyObject * field = PyObject_GetAttrString(_pymsg, "primary_instance"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->primary_instance = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // instances_available PyObject * field = PyObject_GetAttrString(_pymsg, "instances_available"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->instances_available = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // instance_changed_count PyObject * field = PyObject_GetAttrString(_pymsg, "instance_changed_count"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->instance_changed_count = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // last_instance_change PyObject * field = PyObject_GetAttrString(_pymsg, "last_instance_change"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->last_instance_change = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // accel_device_id PyObject * field = PyObject_GetAttrString(_pymsg, "accel_device_id"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->accel_device_id = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // baro_device_id PyObject * field = PyObject_GetAttrString(_pymsg, "baro_device_id"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->baro_device_id = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // gyro_device_id PyObject * field = PyObject_GetAttrString(_pymsg, "gyro_device_id"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->gyro_device_id = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // mag_device_id PyObject * field = PyObject_GetAttrString(_pymsg, "mag_device_id"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->mag_device_id = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // combined_test_ratio PyObject * field = PyObject_GetAttrString(_pymsg, "combined_test_ratio"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); Py_ssize_t size = 9; float * dest = ros_message->combined_test_ratio; for (Py_ssize_t i = 0; i < size; ++i) { float tmp = *(npy_float32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(float)); } Py_DECREF(seq_field); Py_DECREF(field); } { // relative_test_ratio PyObject * field = PyObject_GetAttrString(_pymsg, "relative_test_ratio"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); Py_ssize_t size = 9; float * dest = ros_message->relative_test_ratio; for (Py_ssize_t i = 0; i < size; ++i) { float tmp = *(npy_float32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(float)); } Py_DECREF(seq_field); Py_DECREF(field); } { // healthy PyObject * field = PyObject_GetAttrString(_pymsg, "healthy"); if (!field) { return false; } PyObject * seq_field = PySequence_Fast(field, "expected a sequence in 'healthy'"); if (!seq_field) { Py_DECREF(field); return false; } Py_ssize_t size = 9; bool * dest = ros_message->healthy; for (Py_ssize_t i = 0; i < size; ++i) { PyObject * item = PySequence_Fast_GET_ITEM(seq_field, i); if (!item) { Py_DECREF(seq_field); Py_DECREF(field); return false; } assert(PyBool_Check(item)); bool tmp = (item == Py_True); memcpy(&dest[i], &tmp, sizeof(bool)); } Py_DECREF(seq_field); Py_DECREF(field); } { // accumulated_gyro_error PyObject * field = PyObject_GetAttrString(_pymsg, "accumulated_gyro_error"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); Py_ssize_t size = 4; float * dest = ros_message->accumulated_gyro_error; for (Py_ssize_t i = 0; i < size; ++i) { float tmp = *(npy_float32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(float)); } Py_DECREF(seq_field); Py_DECREF(field); } { // accumulated_accel_error PyObject * field = PyObject_GetAttrString(_pymsg, "accumulated_accel_error"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); Py_ssize_t size = 4; float * dest = ros_message->accumulated_accel_error; for (Py_ssize_t i = 0; i < size; ++i) { float tmp = *(npy_float32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(float)); } Py_DECREF(seq_field); Py_DECREF(field); } { // gyro_fault_detected PyObject * field = PyObject_GetAttrString(_pymsg, "gyro_fault_detected"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->gyro_fault_detected = (Py_True == field); Py_DECREF(field); } { // accel_fault_detected PyObject * field = PyObject_GetAttrString(_pymsg, "accel_fault_detected"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->accel_fault_detected = (Py_True == field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__estimator_selector_status__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of EstimatorSelectorStatus */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._estimator_selector_status"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "EstimatorSelectorStatus"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__EstimatorSelectorStatus * ros_message = (px4_msgs__msg__EstimatorSelectorStatus *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // primary_instance PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->primary_instance); { int rc = PyObject_SetAttrString(_pymessage, "primary_instance", field); Py_DECREF(field); if (rc) { return NULL; } } } { // instances_available PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->instances_available); { int rc = PyObject_SetAttrString(_pymessage, "instances_available", field); Py_DECREF(field); if (rc) { return NULL; } } } { // instance_changed_count PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->instance_changed_count); { int rc = PyObject_SetAttrString(_pymessage, "instance_changed_count", field); Py_DECREF(field); if (rc) { return NULL; } } } { // last_instance_change PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->last_instance_change); { int rc = PyObject_SetAttrString(_pymessage, "last_instance_change", field); Py_DECREF(field); if (rc) { return NULL; } } } { // accel_device_id PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->accel_device_id); { int rc = PyObject_SetAttrString(_pymessage, "accel_device_id", field); Py_DECREF(field); if (rc) { return NULL; } } } { // baro_device_id PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->baro_device_id); { int rc = PyObject_SetAttrString(_pymessage, "baro_device_id", field); Py_DECREF(field); if (rc) { return NULL; } } } { // gyro_device_id PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->gyro_device_id); { int rc = PyObject_SetAttrString(_pymessage, "gyro_device_id", field); Py_DECREF(field); if (rc) { return NULL; } } } { // mag_device_id PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->mag_device_id); { int rc = PyObject_SetAttrString(_pymessage, "mag_device_id", field); Py_DECREF(field); if (rc) { return NULL; } } } { // combined_test_ratio PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "combined_test_ratio"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); assert(sizeof(npy_float32) == sizeof(float)); npy_float32 * dst = (npy_float32 *)PyArray_GETPTR1(seq_field, 0); float * src = &(ros_message->combined_test_ratio[0]); memcpy(dst, src, 9 * sizeof(float)); Py_DECREF(field); } { // relative_test_ratio PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "relative_test_ratio"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); assert(sizeof(npy_float32) == sizeof(float)); npy_float32 * dst = (npy_float32 *)PyArray_GETPTR1(seq_field, 0); float * src = &(ros_message->relative_test_ratio[0]); memcpy(dst, src, 9 * sizeof(float)); Py_DECREF(field); } { // healthy PyObject * field = NULL; size_t size = 9; bool * src = ros_message->healthy; field = PyList_New(size); if (!field) { return NULL; } for (size_t i = 0; i < size; ++i) { int rc = PyList_SetItem(field, i, PyBool_FromLong(src[i] ? 1 : 0)); (void)rc; assert(rc == 0); } assert(PySequence_Check(field)); { int rc = PyObject_SetAttrString(_pymessage, "healthy", field); Py_DECREF(field); if (rc) { return NULL; } } } { // accumulated_gyro_error PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "accumulated_gyro_error"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); assert(sizeof(npy_float32) == sizeof(float)); npy_float32 * dst = (npy_float32 *)PyArray_GETPTR1(seq_field, 0); float * src = &(ros_message->accumulated_gyro_error[0]); memcpy(dst, src, 4 * sizeof(float)); Py_DECREF(field); } { // accumulated_accel_error PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "accumulated_accel_error"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); assert(sizeof(npy_float32) == sizeof(float)); npy_float32 * dst = (npy_float32 *)PyArray_GETPTR1(seq_field, 0); float * src = &(ros_message->accumulated_accel_error[0]); memcpy(dst, src, 4 * sizeof(float)); Py_DECREF(field); } { // gyro_fault_detected PyObject * field = NULL; field = PyBool_FromLong(ros_message->gyro_fault_detected ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "gyro_fault_detected", field); Py_DECREF(field); if (rc) { return NULL; } } } { // accel_fault_detected PyObject * field = NULL; field = PyBool_FromLong(ros_message->accel_fault_detected ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "accel_fault_detected", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/VehicleTrajectoryWaypoint.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/vehicle_trajectory_waypoint__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/vehicle_trajectory_waypoint__functions.h" #include "px4_msgs/msg/vehicle_trajectory_waypoint__struct.h" // Include directives for member types // Member `waypoints` #include "px4_msgs/msg/trajectory_waypoint.h" // Member `waypoints` #include "px4_msgs/msg/trajectory_waypoint__rosidl_typesupport_introspection_c.h" #ifdef __cplusplus extern "C" { #endif void VehicleTrajectoryWaypoint__rosidl_typesupport_introspection_c__VehicleTrajectoryWaypoint_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__VehicleTrajectoryWaypoint__init(message_memory); } void VehicleTrajectoryWaypoint__rosidl_typesupport_introspection_c__VehicleTrajectoryWaypoint_fini_function(void * message_memory) { px4_msgs__msg__VehicleTrajectoryWaypoint__fini(message_memory); } size_t VehicleTrajectoryWaypoint__rosidl_typesupport_introspection_c__size_function__TrajectoryWaypoint__waypoints( const void * untyped_member) { (void)untyped_member; return 5; } const void * VehicleTrajectoryWaypoint__rosidl_typesupport_introspection_c__get_const_function__TrajectoryWaypoint__waypoints( const void * untyped_member, size_t index) { const px4_msgs__msg__TrajectoryWaypoint ** member = (const px4_msgs__msg__TrajectoryWaypoint **)(untyped_member); return &(*member)[index]; } void * VehicleTrajectoryWaypoint__rosidl_typesupport_introspection_c__get_function__TrajectoryWaypoint__waypoints( void * untyped_member, size_t index) { px4_msgs__msg__TrajectoryWaypoint ** member = (px4_msgs__msg__TrajectoryWaypoint **)(untyped_member); return &(*member)[index]; } static rosidl_typesupport_introspection_c__MessageMember VehicleTrajectoryWaypoint__rosidl_typesupport_introspection_c__VehicleTrajectoryWaypoint_message_member_array[3] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleTrajectoryWaypoint, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "type", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleTrajectoryWaypoint, type), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "waypoints", // name rosidl_typesupport_introspection_c__ROS_TYPE_MESSAGE, // type 0, // upper bound of string NULL, // members of sub message (initialized later) true, // is array 5, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleTrajectoryWaypoint, waypoints), // bytes offset in struct NULL, // default value VehicleTrajectoryWaypoint__rosidl_typesupport_introspection_c__size_function__TrajectoryWaypoint__waypoints, // size() function pointer VehicleTrajectoryWaypoint__rosidl_typesupport_introspection_c__get_const_function__TrajectoryWaypoint__waypoints, // get_const(index) function pointer VehicleTrajectoryWaypoint__rosidl_typesupport_introspection_c__get_function__TrajectoryWaypoint__waypoints, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers VehicleTrajectoryWaypoint__rosidl_typesupport_introspection_c__VehicleTrajectoryWaypoint_message_members = { "px4_msgs__msg", // message namespace "VehicleTrajectoryWaypoint", // message name 3, // number of fields sizeof(px4_msgs__msg__VehicleTrajectoryWaypoint), VehicleTrajectoryWaypoint__rosidl_typesupport_introspection_c__VehicleTrajectoryWaypoint_message_member_array, // message members VehicleTrajectoryWaypoint__rosidl_typesupport_introspection_c__VehicleTrajectoryWaypoint_init_function, // function to initialize message memory (memory has to be allocated) VehicleTrajectoryWaypoint__rosidl_typesupport_introspection_c__VehicleTrajectoryWaypoint_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t VehicleTrajectoryWaypoint__rosidl_typesupport_introspection_c__VehicleTrajectoryWaypoint_message_type_support_handle = { 0, &VehicleTrajectoryWaypoint__rosidl_typesupport_introspection_c__VehicleTrajectoryWaypoint_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, VehicleTrajectoryWaypoint)() { VehicleTrajectoryWaypoint__rosidl_typesupport_introspection_c__VehicleTrajectoryWaypoint_message_member_array[2].members_ = ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, TrajectoryWaypoint)(); if (!VehicleTrajectoryWaypoint__rosidl_typesupport_introspection_c__VehicleTrajectoryWaypoint_message_type_support_handle.typesupport_identifier) { VehicleTrajectoryWaypoint__rosidl_typesupport_introspection_c__VehicleTrajectoryWaypoint_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &VehicleTrajectoryWaypoint__rosidl_typesupport_introspection_c__VehicleTrajectoryWaypoint_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/iridiumsbd_status__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/IridiumsbdStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__IRIDIUMSBD_STATUS__STRUCT_HPP_ #define PX4_MSGS__MSG__IRIDIUMSBD_STATUS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__IridiumsbdStatus __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__IridiumsbdStatus __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct IridiumsbdStatus_ { using Type = IridiumsbdStatus_<ContainerAllocator>; explicit IridiumsbdStatus_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->last_heartbeat = 0ull; this->tx_buf_write_index = 0; this->rx_buf_read_index = 0; this->rx_buf_end_index = 0; this->failed_sbd_sessions = 0; this->successful_sbd_sessions = 0; this->num_tx_buf_reset = 0; this->signal_quality = 0; this->state = 0; this->ring_pending = false; this->tx_buf_write_pending = false; this->tx_session_pending = false; this->rx_read_pending = false; this->rx_session_pending = false; } } explicit IridiumsbdStatus_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->last_heartbeat = 0ull; this->tx_buf_write_index = 0; this->rx_buf_read_index = 0; this->rx_buf_end_index = 0; this->failed_sbd_sessions = 0; this->successful_sbd_sessions = 0; this->num_tx_buf_reset = 0; this->signal_quality = 0; this->state = 0; this->ring_pending = false; this->tx_buf_write_pending = false; this->tx_session_pending = false; this->rx_read_pending = false; this->rx_session_pending = false; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _last_heartbeat_type = uint64_t; _last_heartbeat_type last_heartbeat; using _tx_buf_write_index_type = uint16_t; _tx_buf_write_index_type tx_buf_write_index; using _rx_buf_read_index_type = uint16_t; _rx_buf_read_index_type rx_buf_read_index; using _rx_buf_end_index_type = uint16_t; _rx_buf_end_index_type rx_buf_end_index; using _failed_sbd_sessions_type = uint16_t; _failed_sbd_sessions_type failed_sbd_sessions; using _successful_sbd_sessions_type = uint16_t; _successful_sbd_sessions_type successful_sbd_sessions; using _num_tx_buf_reset_type = uint16_t; _num_tx_buf_reset_type num_tx_buf_reset; using _signal_quality_type = uint8_t; _signal_quality_type signal_quality; using _state_type = uint8_t; _state_type state; using _ring_pending_type = bool; _ring_pending_type ring_pending; using _tx_buf_write_pending_type = bool; _tx_buf_write_pending_type tx_buf_write_pending; using _tx_session_pending_type = bool; _tx_session_pending_type tx_session_pending; using _rx_read_pending_type = bool; _rx_read_pending_type rx_read_pending; using _rx_session_pending_type = bool; _rx_session_pending_type rx_session_pending; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__last_heartbeat( const uint64_t & _arg) { this->last_heartbeat = _arg; return *this; } Type & set__tx_buf_write_index( const uint16_t & _arg) { this->tx_buf_write_index = _arg; return *this; } Type & set__rx_buf_read_index( const uint16_t & _arg) { this->rx_buf_read_index = _arg; return *this; } Type & set__rx_buf_end_index( const uint16_t & _arg) { this->rx_buf_end_index = _arg; return *this; } Type & set__failed_sbd_sessions( const uint16_t & _arg) { this->failed_sbd_sessions = _arg; return *this; } Type & set__successful_sbd_sessions( const uint16_t & _arg) { this->successful_sbd_sessions = _arg; return *this; } Type & set__num_tx_buf_reset( const uint16_t & _arg) { this->num_tx_buf_reset = _arg; return *this; } Type & set__signal_quality( const uint8_t & _arg) { this->signal_quality = _arg; return *this; } Type & set__state( const uint8_t & _arg) { this->state = _arg; return *this; } Type & set__ring_pending( const bool & _arg) { this->ring_pending = _arg; return *this; } Type & set__tx_buf_write_pending( const bool & _arg) { this->tx_buf_write_pending = _arg; return *this; } Type & set__tx_session_pending( const bool & _arg) { this->tx_session_pending = _arg; return *this; } Type & set__rx_read_pending( const bool & _arg) { this->rx_read_pending = _arg; return *this; } Type & set__rx_session_pending( const bool & _arg) { this->rx_session_pending = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::IridiumsbdStatus_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::IridiumsbdStatus_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::IridiumsbdStatus_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::IridiumsbdStatus_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::IridiumsbdStatus_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::IridiumsbdStatus_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::IridiumsbdStatus_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::IridiumsbdStatus_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::IridiumsbdStatus_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::IridiumsbdStatus_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__IridiumsbdStatus std::shared_ptr<px4_msgs::msg::IridiumsbdStatus_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__IridiumsbdStatus std::shared_ptr<px4_msgs::msg::IridiumsbdStatus_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const IridiumsbdStatus_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->last_heartbeat != other.last_heartbeat) { return false; } if (this->tx_buf_write_index != other.tx_buf_write_index) { return false; } if (this->rx_buf_read_index != other.rx_buf_read_index) { return false; } if (this->rx_buf_end_index != other.rx_buf_end_index) { return false; } if (this->failed_sbd_sessions != other.failed_sbd_sessions) { return false; } if (this->successful_sbd_sessions != other.successful_sbd_sessions) { return false; } if (this->num_tx_buf_reset != other.num_tx_buf_reset) { return false; } if (this->signal_quality != other.signal_quality) { return false; } if (this->state != other.state) { return false; } if (this->ring_pending != other.ring_pending) { return false; } if (this->tx_buf_write_pending != other.tx_buf_write_pending) { return false; } if (this->tx_session_pending != other.tx_session_pending) { return false; } if (this->rx_read_pending != other.rx_read_pending) { return false; } if (this->rx_session_pending != other.rx_session_pending) { return false; } return true; } bool operator!=(const IridiumsbdStatus_ & other) const { return !this->operator==(other); } }; // struct IridiumsbdStatus_ // alias to use template instance with default allocator using IridiumsbdStatus = px4_msgs::msg::IridiumsbdStatus_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__IRIDIUMSBD_STATUS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/orb_test_medium_wrap_around__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/OrbTestMediumWrapAround.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORB_TEST_MEDIUM_WRAP_AROUND__STRUCT_H_ #define PX4_MSGS__MSG__ORB_TEST_MEDIUM_WRAP_AROUND__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/OrbTestMediumWrapAround in the package px4_msgs. typedef struct px4_msgs__msg__OrbTestMediumWrapAround { uint64_t timestamp; int32_t val; uint8_t junk[64]; } px4_msgs__msg__OrbTestMediumWrapAround; // Struct for a sequence of px4_msgs__msg__OrbTestMediumWrapAround. typedef struct px4_msgs__msg__OrbTestMediumWrapAround__Sequence { px4_msgs__msg__OrbTestMediumWrapAround * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__OrbTestMediumWrapAround__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ORB_TEST_MEDIUM_WRAP_AROUND__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/position_controller_status__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/PositionControllerStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__POSITION_CONTROLLER_STATUS__STRUCT_H_ #define PX4_MSGS__MSG__POSITION_CONTROLLER_STATUS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/PositionControllerStatus in the package px4_msgs. typedef struct px4_msgs__msg__PositionControllerStatus { uint64_t timestamp; float nav_roll; float nav_pitch; float nav_bearing; float target_bearing; float xtrack_error; float wp_dist; float acceptance_radius; float yaw_acceptance; float altitude_acceptance; uint8_t type; } px4_msgs__msg__PositionControllerStatus; // Struct for a sequence of px4_msgs__msg__PositionControllerStatus. typedef struct px4_msgs__msg__PositionControllerStatus__Sequence { px4_msgs__msg__PositionControllerStatus * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__PositionControllerStatus__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__POSITION_CONTROLLER_STATUS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_magnetometer.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleMagnetometer.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_MAGNETOMETER_H_ #define PX4_MSGS__MSG__VEHICLE_MAGNETOMETER_H_ #include "px4_msgs/msg/vehicle_magnetometer__struct.h" #include "px4_msgs/msg/vehicle_magnetometer__functions.h" #include "px4_msgs/msg/vehicle_magnetometer__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_MAGNETOMETER_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/iridiumsbd_status__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/IridiumsbdStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__IRIDIUMSBD_STATUS__STRUCT_H_ #define PX4_MSGS__MSG__IRIDIUMSBD_STATUS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/IridiumsbdStatus in the package px4_msgs. typedef struct px4_msgs__msg__IridiumsbdStatus { uint64_t timestamp; uint64_t last_heartbeat; uint16_t tx_buf_write_index; uint16_t rx_buf_read_index; uint16_t rx_buf_end_index; uint16_t failed_sbd_sessions; uint16_t successful_sbd_sessions; uint16_t num_tx_buf_reset; uint8_t signal_quality; uint8_t state; bool ring_pending; bool tx_buf_write_pending; bool tx_session_pending; bool rx_read_pending; bool rx_session_pending; } px4_msgs__msg__IridiumsbdStatus; // Struct for a sequence of px4_msgs__msg__IridiumsbdStatus. typedef struct px4_msgs__msg__IridiumsbdStatus__Sequence { px4_msgs__msg__IridiumsbdStatus * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__IridiumsbdStatus__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__IRIDIUMSBD_STATUS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/power_monitor__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/PowerMonitor.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/power_monitor__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/power_monitor__functions.h" #include "px4_msgs/msg/power_monitor__struct.h" #ifdef __cplusplus extern "C" { #endif void PowerMonitor__rosidl_typesupport_introspection_c__PowerMonitor_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__PowerMonitor__init(message_memory); } void PowerMonitor__rosidl_typesupport_introspection_c__PowerMonitor_fini_function(void * message_memory) { px4_msgs__msg__PowerMonitor__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember PowerMonitor__rosidl_typesupport_introspection_c__PowerMonitor_message_member_array[12] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PowerMonitor, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "voltage_v", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PowerMonitor, voltage_v), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "current_a", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PowerMonitor, current_a), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "power_w", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PowerMonitor, power_w), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rconf", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PowerMonitor, rconf), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rsv", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PowerMonitor, rsv), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rbv", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PowerMonitor, rbv), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rp", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PowerMonitor, rp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rc", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PowerMonitor, rc), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rcal", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PowerMonitor, rcal), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "me", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PowerMonitor, me), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "al", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PowerMonitor, al), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers PowerMonitor__rosidl_typesupport_introspection_c__PowerMonitor_message_members = { "px4_msgs__msg", // message namespace "PowerMonitor", // message name 12, // number of fields sizeof(px4_msgs__msg__PowerMonitor), PowerMonitor__rosidl_typesupport_introspection_c__PowerMonitor_message_member_array, // message members PowerMonitor__rosidl_typesupport_introspection_c__PowerMonitor_init_function, // function to initialize message memory (memory has to be allocated) PowerMonitor__rosidl_typesupport_introspection_c__PowerMonitor_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t PowerMonitor__rosidl_typesupport_introspection_c__PowerMonitor_message_type_support_handle = { 0, &PowerMonitor__rosidl_typesupport_introspection_c__PowerMonitor_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, PowerMonitor)() { if (!PowerMonitor__rosidl_typesupport_introspection_c__PowerMonitor_message_type_support_handle.typesupport_identifier) { PowerMonitor__rosidl_typesupport_introspection_c__PowerMonitor_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &PowerMonitor__rosidl_typesupport_introspection_c__PowerMonitor_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/VehicleAttitudeGroundtruth.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/vehicle_attitude_groundtruth__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/vehicle_attitude_groundtruth__functions.h" #include "px4_msgs/msg/vehicle_attitude_groundtruth__struct.h" #ifdef __cplusplus extern "C" { #endif void VehicleAttitudeGroundtruth__rosidl_typesupport_introspection_c__VehicleAttitudeGroundtruth_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__VehicleAttitudeGroundtruth__init(message_memory); } void VehicleAttitudeGroundtruth__rosidl_typesupport_introspection_c__VehicleAttitudeGroundtruth_fini_function(void * message_memory) { px4_msgs__msg__VehicleAttitudeGroundtruth__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember VehicleAttitudeGroundtruth__rosidl_typesupport_introspection_c__VehicleAttitudeGroundtruth_message_member_array[5] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleAttitudeGroundtruth, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleAttitudeGroundtruth, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "q", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleAttitudeGroundtruth, q), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "delta_q_reset", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleAttitudeGroundtruth, delta_q_reset), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "quat_reset_counter", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleAttitudeGroundtruth, quat_reset_counter), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers VehicleAttitudeGroundtruth__rosidl_typesupport_introspection_c__VehicleAttitudeGroundtruth_message_members = { "px4_msgs__msg", // message namespace "VehicleAttitudeGroundtruth", // message name 5, // number of fields sizeof(px4_msgs__msg__VehicleAttitudeGroundtruth), VehicleAttitudeGroundtruth__rosidl_typesupport_introspection_c__VehicleAttitudeGroundtruth_message_member_array, // message members VehicleAttitudeGroundtruth__rosidl_typesupport_introspection_c__VehicleAttitudeGroundtruth_init_function, // function to initialize message memory (memory has to be allocated) VehicleAttitudeGroundtruth__rosidl_typesupport_introspection_c__VehicleAttitudeGroundtruth_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t VehicleAttitudeGroundtruth__rosidl_typesupport_introspection_c__VehicleAttitudeGroundtruth_message_type_support_handle = { 0, &VehicleAttitudeGroundtruth__rosidl_typesupport_introspection_c__VehicleAttitudeGroundtruth_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, VehicleAttitudeGroundtruth)() { if (!VehicleAttitudeGroundtruth__rosidl_typesupport_introspection_c__VehicleAttitudeGroundtruth_message_type_support_handle.typesupport_identifier) { VehicleAttitudeGroundtruth__rosidl_typesupport_introspection_c__VehicleAttitudeGroundtruth_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &VehicleAttitudeGroundtruth__rosidl_typesupport_introspection_c__VehicleAttitudeGroundtruth_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/irlock_report.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__IRLOCK_REPORT_HPP_ #define PX4_MSGS__MSG__IRLOCK_REPORT_HPP_ #include "px4_msgs/msg/irlock_report__struct.hpp" #include "px4_msgs/msg/irlock_report__traits.hpp" #endif // PX4_MSGS__MSG__IRLOCK_REPORT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_gps_position__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleGpsPosition.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_gps_position__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__VehicleGpsPosition__init(px4_msgs__msg__VehicleGpsPosition * msg) { if (!msg) { return false; } // timestamp // lat // lon // alt // alt_ellipsoid // s_variance_m_s // c_variance_rad // fix_type // eph // epv // hdop // vdop // noise_per_ms // jamming_indicator // jamming_state // vel_m_s // vel_n_m_s // vel_e_m_s // vel_d_m_s // cog_rad // vel_ned_valid // timestamp_time_relative // time_utc_usec // satellites_used // heading // heading_offset // selected return true; } void px4_msgs__msg__VehicleGpsPosition__fini(px4_msgs__msg__VehicleGpsPosition * msg) { if (!msg) { return; } // timestamp // lat // lon // alt // alt_ellipsoid // s_variance_m_s // c_variance_rad // fix_type // eph // epv // hdop // vdop // noise_per_ms // jamming_indicator // jamming_state // vel_m_s // vel_n_m_s // vel_e_m_s // vel_d_m_s // cog_rad // vel_ned_valid // timestamp_time_relative // time_utc_usec // satellites_used // heading // heading_offset // selected } px4_msgs__msg__VehicleGpsPosition * px4_msgs__msg__VehicleGpsPosition__create() { px4_msgs__msg__VehicleGpsPosition * msg = (px4_msgs__msg__VehicleGpsPosition *)malloc(sizeof(px4_msgs__msg__VehicleGpsPosition)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleGpsPosition)); bool success = px4_msgs__msg__VehicleGpsPosition__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleGpsPosition__destroy(px4_msgs__msg__VehicleGpsPosition * msg) { if (msg) { px4_msgs__msg__VehicleGpsPosition__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleGpsPosition__Sequence__init(px4_msgs__msg__VehicleGpsPosition__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleGpsPosition * data = NULL; if (size) { data = (px4_msgs__msg__VehicleGpsPosition *)calloc(size, sizeof(px4_msgs__msg__VehicleGpsPosition)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleGpsPosition__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleGpsPosition__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleGpsPosition__Sequence__fini(px4_msgs__msg__VehicleGpsPosition__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleGpsPosition__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleGpsPosition__Sequence * px4_msgs__msg__VehicleGpsPosition__Sequence__create(size_t size) { px4_msgs__msg__VehicleGpsPosition__Sequence * array = (px4_msgs__msg__VehicleGpsPosition__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleGpsPosition__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleGpsPosition__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleGpsPosition__Sequence__destroy(px4_msgs__msg__VehicleGpsPosition__Sequence * array) { if (array) { px4_msgs__msg__VehicleGpsPosition__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/onboard_computer_status__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/OnboardComputerStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/onboard_computer_status__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__OnboardComputerStatus__init(px4_msgs__msg__OnboardComputerStatus * msg) { if (!msg) { return false; } // timestamp // uptime // type // cpu_cores // cpu_combined // gpu_cores // gpu_combined // temperature_board // temperature_core // fan_speed // ram_usage // ram_total // storage_type // storage_usage // storage_total // link_type // link_tx_rate // link_rx_rate // link_tx_max // link_rx_max return true; } void px4_msgs__msg__OnboardComputerStatus__fini(px4_msgs__msg__OnboardComputerStatus * msg) { if (!msg) { return; } // timestamp // uptime // type // cpu_cores // cpu_combined // gpu_cores // gpu_combined // temperature_board // temperature_core // fan_speed // ram_usage // ram_total // storage_type // storage_usage // storage_total // link_type // link_tx_rate // link_rx_rate // link_tx_max // link_rx_max } px4_msgs__msg__OnboardComputerStatus * px4_msgs__msg__OnboardComputerStatus__create() { px4_msgs__msg__OnboardComputerStatus * msg = (px4_msgs__msg__OnboardComputerStatus *)malloc(sizeof(px4_msgs__msg__OnboardComputerStatus)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__OnboardComputerStatus)); bool success = px4_msgs__msg__OnboardComputerStatus__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__OnboardComputerStatus__destroy(px4_msgs__msg__OnboardComputerStatus * msg) { if (msg) { px4_msgs__msg__OnboardComputerStatus__fini(msg); } free(msg); } bool px4_msgs__msg__OnboardComputerStatus__Sequence__init(px4_msgs__msg__OnboardComputerStatus__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__OnboardComputerStatus * data = NULL; if (size) { data = (px4_msgs__msg__OnboardComputerStatus *)calloc(size, sizeof(px4_msgs__msg__OnboardComputerStatus)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__OnboardComputerStatus__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__OnboardComputerStatus__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__OnboardComputerStatus__Sequence__fini(px4_msgs__msg__OnboardComputerStatus__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__OnboardComputerStatus__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__OnboardComputerStatus__Sequence * px4_msgs__msg__OnboardComputerStatus__Sequence__create(size_t size) { px4_msgs__msg__OnboardComputerStatus__Sequence * array = (px4_msgs__msg__OnboardComputerStatus__Sequence *)malloc(sizeof(px4_msgs__msg__OnboardComputerStatus__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__OnboardComputerStatus__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__OnboardComputerStatus__Sequence__destroy(px4_msgs__msg__OnboardComputerStatus__Sequence * array) { if (array) { px4_msgs__msg__OnboardComputerStatus__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_innovations__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/EstimatorInnovations.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_INNOVATIONS__STRUCT_H_ #define PX4_MSGS__MSG__ESTIMATOR_INNOVATIONS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/EstimatorInnovations in the package px4_msgs. typedef struct px4_msgs__msg__EstimatorInnovations { uint64_t timestamp; uint64_t timestamp_sample; float gps_hvel[2]; float gps_vvel; float gps_hpos[2]; float gps_vpos; float ev_hvel[2]; float ev_vvel; float ev_hpos[2]; float ev_vpos; float rng_vpos; float baro_vpos; float aux_hvel[2]; float aux_vvel; float flow[2]; float heading; float mag_field[3]; float drag[2]; float airspeed; float beta; float hagl; } px4_msgs__msg__EstimatorInnovations; // Struct for a sequence of px4_msgs__msg__EstimatorInnovations. typedef struct px4_msgs__msg__EstimatorInnovations__Sequence { px4_msgs__msg__EstimatorInnovations * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__EstimatorInnovations__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ESTIMATOR_INNOVATIONS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_gimbal_manager_status_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/GimbalManagerStatus.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/gimbal_manager_status__struct.h" #include "px4_msgs/msg/gimbal_manager_status__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__gimbal_manager_status__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[56]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._gimbal_manager_status.GimbalManagerStatus", full_classname_dest, 55) == 0); } px4_msgs__msg__GimbalManagerStatus * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // flags PyObject * field = PyObject_GetAttrString(_pymsg, "flags"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->flags = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // gimbal_device_id PyObject * field = PyObject_GetAttrString(_pymsg, "gimbal_device_id"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->gimbal_device_id = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // primary_control_sysid PyObject * field = PyObject_GetAttrString(_pymsg, "primary_control_sysid"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->primary_control_sysid = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // primary_control_compid PyObject * field = PyObject_GetAttrString(_pymsg, "primary_control_compid"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->primary_control_compid = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // secondary_control_sysid PyObject * field = PyObject_GetAttrString(_pymsg, "secondary_control_sysid"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->secondary_control_sysid = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // secondary_control_compid PyObject * field = PyObject_GetAttrString(_pymsg, "secondary_control_compid"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->secondary_control_compid = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__gimbal_manager_status__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of GimbalManagerStatus */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._gimbal_manager_status"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "GimbalManagerStatus"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__GimbalManagerStatus * ros_message = (px4_msgs__msg__GimbalManagerStatus *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // flags PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->flags); { int rc = PyObject_SetAttrString(_pymessage, "flags", field); Py_DECREF(field); if (rc) { return NULL; } } } { // gimbal_device_id PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->gimbal_device_id); { int rc = PyObject_SetAttrString(_pymessage, "gimbal_device_id", field); Py_DECREF(field); if (rc) { return NULL; } } } { // primary_control_sysid PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->primary_control_sysid); { int rc = PyObject_SetAttrString(_pymessage, "primary_control_sysid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // primary_control_compid PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->primary_control_compid); { int rc = PyObject_SetAttrString(_pymessage, "primary_control_compid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // secondary_control_sysid PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->secondary_control_sysid); { int rc = PyObject_SetAttrString(_pymessage, "secondary_control_sysid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // secondary_control_compid PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->secondary_control_compid); { int rc = PyObject_SetAttrString(_pymessage, "secondary_control_compid", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/uavcan_parameter_value__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/UavcanParameterValue.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__UAVCAN_PARAMETER_VALUE__STRUCT_HPP_ #define PX4_MSGS__MSG__UAVCAN_PARAMETER_VALUE__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__UavcanParameterValue __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__UavcanParameterValue __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct UavcanParameterValue_ { using Type = UavcanParameterValue_<ContainerAllocator>; explicit UavcanParameterValue_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->node_id = 0; std::fill<typename std::array<uint8_t, 17>::iterator, uint8_t>(this->param_id.begin(), this->param_id.end(), 0); this->param_index = 0; this->param_count = 0; this->param_type = 0; this->int_value = 0ll; this->real_value = 0.0f; } } explicit UavcanParameterValue_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : param_id(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->node_id = 0; std::fill<typename std::array<uint8_t, 17>::iterator, uint8_t>(this->param_id.begin(), this->param_id.end(), 0); this->param_index = 0; this->param_count = 0; this->param_type = 0; this->int_value = 0ll; this->real_value = 0.0f; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _node_id_type = uint8_t; _node_id_type node_id; using _param_id_type = std::array<uint8_t, 17>; _param_id_type param_id; using _param_index_type = int16_t; _param_index_type param_index; using _param_count_type = uint16_t; _param_count_type param_count; using _param_type_type = uint8_t; _param_type_type param_type; using _int_value_type = int64_t; _int_value_type int_value; using _real_value_type = float; _real_value_type real_value; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__node_id( const uint8_t & _arg) { this->node_id = _arg; return *this; } Type & set__param_id( const std::array<uint8_t, 17> & _arg) { this->param_id = _arg; return *this; } Type & set__param_index( const int16_t & _arg) { this->param_index = _arg; return *this; } Type & set__param_count( const uint16_t & _arg) { this->param_count = _arg; return *this; } Type & set__param_type( const uint8_t & _arg) { this->param_type = _arg; return *this; } Type & set__int_value( const int64_t & _arg) { this->int_value = _arg; return *this; } Type & set__real_value( const float & _arg) { this->real_value = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::UavcanParameterValue_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::UavcanParameterValue_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::UavcanParameterValue_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::UavcanParameterValue_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::UavcanParameterValue_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::UavcanParameterValue_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::UavcanParameterValue_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::UavcanParameterValue_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::UavcanParameterValue_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::UavcanParameterValue_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__UavcanParameterValue std::shared_ptr<px4_msgs::msg::UavcanParameterValue_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__UavcanParameterValue std::shared_ptr<px4_msgs::msg::UavcanParameterValue_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const UavcanParameterValue_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->node_id != other.node_id) { return false; } if (this->param_id != other.param_id) { return false; } if (this->param_index != other.param_index) { return false; } if (this->param_count != other.param_count) { return false; } if (this->param_type != other.param_type) { return false; } if (this->int_value != other.int_value) { return false; } if (this->real_value != other.real_value) { return false; } return true; } bool operator!=(const UavcanParameterValue_ & other) const { return !this->operator==(other); } }; // struct UavcanParameterValue_ // alias to use template instance with default allocator using UavcanParameterValue = px4_msgs::msg::UavcanParameterValue_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__UAVCAN_PARAMETER_VALUE__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/orb_test_medium_wrap_around.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORB_TEST_MEDIUM_WRAP_AROUND_HPP_ #define PX4_MSGS__MSG__ORB_TEST_MEDIUM_WRAP_AROUND_HPP_ #include "px4_msgs/msg/orb_test_medium_wrap_around__struct.hpp" #include "px4_msgs/msg/orb_test_medium_wrap_around__traits.hpp" #endif // PX4_MSGS__MSG__ORB_TEST_MEDIUM_WRAP_AROUND_HPP_ <file_sep>/install/px4_msgs/lib/python3.6/site-packages/px4_msgs/msg/_qshell_req.py /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_qshell_req.py<file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/geofence_result__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/GeofenceResult.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/geofence_result__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/geofence_result__struct.h" #include "px4_msgs/msg/geofence_result__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _GeofenceResult__ros_msg_type = px4_msgs__msg__GeofenceResult; static bool _GeofenceResult__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _GeofenceResult__ros_msg_type * ros_message = static_cast<const _GeofenceResult__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: geofence_violated { cdr << (ros_message->geofence_violated ? true : false); } // Field name: geofence_action { cdr << ros_message->geofence_action; } // Field name: home_required { cdr << (ros_message->home_required ? true : false); } return true; } static bool _GeofenceResult__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _GeofenceResult__ros_msg_type * ros_message = static_cast<_GeofenceResult__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: geofence_violated { uint8_t tmp; cdr >> tmp; ros_message->geofence_violated = tmp ? true : false; } // Field name: geofence_action { cdr >> ros_message->geofence_action; } // Field name: home_required { uint8_t tmp; cdr >> tmp; ros_message->home_required = tmp ? true : false; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__GeofenceResult( const void * untyped_ros_message, size_t current_alignment) { const _GeofenceResult__ros_msg_type * ros_message = static_cast<const _GeofenceResult__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name geofence_violated { size_t item_size = sizeof(ros_message->geofence_violated); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name geofence_action { size_t item_size = sizeof(ros_message->geofence_action); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name home_required { size_t item_size = sizeof(ros_message->home_required); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _GeofenceResult__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__GeofenceResult( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__GeofenceResult( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: geofence_violated { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: geofence_action { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: home_required { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _GeofenceResult__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__GeofenceResult( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_GeofenceResult = { "px4_msgs::msg", "GeofenceResult", _GeofenceResult__cdr_serialize, _GeofenceResult__cdr_deserialize, _GeofenceResult__get_serialized_size, _GeofenceResult__max_serialized_size }; static rosidl_message_type_support_t _GeofenceResult__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_GeofenceResult, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, GeofenceResult)() { return &_GeofenceResult__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/generator_status__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/GeneratorStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/generator_status__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/generator_status__struct.h" #include "px4_msgs/msg/generator_status__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _GeneratorStatus__ros_msg_type = px4_msgs__msg__GeneratorStatus; static bool _GeneratorStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _GeneratorStatus__ros_msg_type * ros_message = static_cast<const _GeneratorStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: status { cdr << ros_message->status; } // Field name: battery_current { cdr << ros_message->battery_current; } // Field name: load_current { cdr << ros_message->load_current; } // Field name: power_generated { cdr << ros_message->power_generated; } // Field name: bus_voltage { cdr << ros_message->bus_voltage; } // Field name: bat_current_setpoint { cdr << ros_message->bat_current_setpoint; } // Field name: runtime { cdr << ros_message->runtime; } // Field name: time_until_maintenance { cdr << ros_message->time_until_maintenance; } // Field name: generator_speed { cdr << ros_message->generator_speed; } // Field name: rectifier_temperature { cdr << ros_message->rectifier_temperature; } // Field name: generator_temperature { cdr << ros_message->generator_temperature; } return true; } static bool _GeneratorStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _GeneratorStatus__ros_msg_type * ros_message = static_cast<_GeneratorStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: status { cdr >> ros_message->status; } // Field name: battery_current { cdr >> ros_message->battery_current; } // Field name: load_current { cdr >> ros_message->load_current; } // Field name: power_generated { cdr >> ros_message->power_generated; } // Field name: bus_voltage { cdr >> ros_message->bus_voltage; } // Field name: bat_current_setpoint { cdr >> ros_message->bat_current_setpoint; } // Field name: runtime { cdr >> ros_message->runtime; } // Field name: time_until_maintenance { cdr >> ros_message->time_until_maintenance; } // Field name: generator_speed { cdr >> ros_message->generator_speed; } // Field name: rectifier_temperature { cdr >> ros_message->rectifier_temperature; } // Field name: generator_temperature { cdr >> ros_message->generator_temperature; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__GeneratorStatus( const void * untyped_ros_message, size_t current_alignment) { const _GeneratorStatus__ros_msg_type * ros_message = static_cast<const _GeneratorStatus__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name status { size_t item_size = sizeof(ros_message->status); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name battery_current { size_t item_size = sizeof(ros_message->battery_current); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name load_current { size_t item_size = sizeof(ros_message->load_current); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name power_generated { size_t item_size = sizeof(ros_message->power_generated); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name bus_voltage { size_t item_size = sizeof(ros_message->bus_voltage); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name bat_current_setpoint { size_t item_size = sizeof(ros_message->bat_current_setpoint); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name runtime { size_t item_size = sizeof(ros_message->runtime); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name time_until_maintenance { size_t item_size = sizeof(ros_message->time_until_maintenance); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name generator_speed { size_t item_size = sizeof(ros_message->generator_speed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rectifier_temperature { size_t item_size = sizeof(ros_message->rectifier_temperature); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name generator_temperature { size_t item_size = sizeof(ros_message->generator_temperature); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _GeneratorStatus__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__GeneratorStatus( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__GeneratorStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: status { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: battery_current { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: load_current { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: power_generated { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: bus_voltage { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: bat_current_setpoint { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: runtime { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: time_until_maintenance { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: generator_speed { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: rectifier_temperature { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: generator_temperature { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } return current_alignment - initial_alignment; } static size_t _GeneratorStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__GeneratorStatus( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_GeneratorStatus = { "px4_msgs::msg", "GeneratorStatus", _GeneratorStatus__cdr_serialize, _GeneratorStatus__cdr_deserialize, _GeneratorStatus__get_serialized_size, _GeneratorStatus__max_serialized_size }; static rosidl_message_type_support_t _GeneratorStatus__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_GeneratorStatus, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, GeneratorStatus)() { return &_GeneratorStatus__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h // generated from // rosidl_typesupport_introspection_c/resource/rosidl_typesupport_introspection_c__visibility_control.h.in // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ROSIDL_TYPESUPPORT_INTROSPECTION_C__VISIBILITY_CONTROL_H_ #define PX4_MSGS__MSG__ROSIDL_TYPESUPPORT_INTROSPECTION_C__VISIBILITY_CONTROL_H_ #ifdef __cplusplus extern "C" { #endif // This logic was borrowed (then namespaced) from the examples on the gcc wiki: // https://gcc.gnu.org/wiki/Visibility #if defined _WIN32 || defined __CYGWIN__ #ifdef __GNUC__ #define ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs __attribute__ ((dllexport)) #define ROSIDL_TYPESUPPORT_INTROSPECTION_C_IMPORT_px4_msgs __attribute__ ((dllimport)) #else #define ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs __declspec(dllexport) #define ROSIDL_TYPESUPPORT_INTROSPECTION_C_IMPORT_px4_msgs __declspec(dllimport) #endif #ifdef ROSIDL_TYPESUPPORT_INTROSPECTION_C_BUILDING_DLL_px4_msgs #define ROSIDL_TYPESUPPORT_INTROSPECTION_C_PUBLIC_px4_msgs ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs #else #define ROSIDL_TYPESUPPORT_INTROSPECTION_C_PUBLIC_px4_msgs ROSIDL_TYPESUPPORT_INTROSPECTION_C_IMPORT_px4_msgs #endif #else #define ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs __attribute__ ((visibility("default"))) #define ROSIDL_TYPESUPPORT_INTROSPECTION_C_IMPORT_px4_msgs #if __GNUC__ >= 4 #define ROSIDL_TYPESUPPORT_INTROSPECTION_C_PUBLIC_px4_msgs __attribute__ ((visibility("default"))) #else #define ROSIDL_TYPESUPPORT_INTROSPECTION_C_PUBLIC_px4_msgs #endif #endif #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ROSIDL_TYPESUPPORT_INTROSPECTION_C__VISIBILITY_CONTROL_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_odometry__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/EstimatorOdometry.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/estimator_odometry__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void EstimatorOdometry_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::EstimatorOdometry(_init); } void EstimatorOdometry_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::EstimatorOdometry *>(message_memory); typed_message->~EstimatorOdometry(); } size_t size_function__EstimatorOdometry__q(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__EstimatorOdometry__q(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 4> *>(untyped_member); return &member[index]; } void * get_function__EstimatorOdometry__q(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 4> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorOdometry__q_offset(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__EstimatorOdometry__q_offset(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 4> *>(untyped_member); return &member[index]; } void * get_function__EstimatorOdometry__q_offset(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 4> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorOdometry__pose_covariance(const void * untyped_member) { (void)untyped_member; return 21; } const void * get_const_function__EstimatorOdometry__pose_covariance(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 21> *>(untyped_member); return &member[index]; } void * get_function__EstimatorOdometry__pose_covariance(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 21> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorOdometry__velocity_covariance(const void * untyped_member) { (void)untyped_member; return 21; } const void * get_const_function__EstimatorOdometry__velocity_covariance(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 21> *>(untyped_member); return &member[index]; } void * get_function__EstimatorOdometry__velocity_covariance(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 21> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember EstimatorOdometry_message_member_array[17] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorOdometry, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorOdometry, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "local_frame", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorOdometry, local_frame), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "x", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorOdometry, x), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "y", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorOdometry, y), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "z", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorOdometry, z), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "q", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorOdometry, q), // bytes offset in struct nullptr, // default value size_function__EstimatorOdometry__q, // size() function pointer get_const_function__EstimatorOdometry__q, // get_const(index) function pointer get_function__EstimatorOdometry__q, // get(index) function pointer nullptr // resize(index) function pointer }, { "q_offset", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorOdometry, q_offset), // bytes offset in struct nullptr, // default value size_function__EstimatorOdometry__q_offset, // size() function pointer get_const_function__EstimatorOdometry__q_offset, // get_const(index) function pointer get_function__EstimatorOdometry__q_offset, // get(index) function pointer nullptr // resize(index) function pointer }, { "pose_covariance", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 21, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorOdometry, pose_covariance), // bytes offset in struct nullptr, // default value size_function__EstimatorOdometry__pose_covariance, // size() function pointer get_const_function__EstimatorOdometry__pose_covariance, // get_const(index) function pointer get_function__EstimatorOdometry__pose_covariance, // get(index) function pointer nullptr // resize(index) function pointer }, { "velocity_frame", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorOdometry, velocity_frame), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vx", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorOdometry, vx), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vy", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorOdometry, vy), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vz", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorOdometry, vz), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rollspeed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorOdometry, rollspeed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "pitchspeed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorOdometry, pitchspeed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "yawspeed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorOdometry, yawspeed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "velocity_covariance", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 21, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorOdometry, velocity_covariance), // bytes offset in struct nullptr, // default value size_function__EstimatorOdometry__velocity_covariance, // size() function pointer get_const_function__EstimatorOdometry__velocity_covariance, // get_const(index) function pointer get_function__EstimatorOdometry__velocity_covariance, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers EstimatorOdometry_message_members = { "px4_msgs::msg", // message namespace "EstimatorOdometry", // message name 17, // number of fields sizeof(px4_msgs::msg::EstimatorOdometry), EstimatorOdometry_message_member_array, // message members EstimatorOdometry_init_function, // function to initialize message memory (memory has to be allocated) EstimatorOdometry_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t EstimatorOdometry_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &EstimatorOdometry_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::EstimatorOdometry>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EstimatorOdometry_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, EstimatorOdometry)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EstimatorOdometry_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleLocalPosition.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/vehicle_local_position__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void VehicleLocalPosition_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::VehicleLocalPosition(_init); } void VehicleLocalPosition_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::VehicleLocalPosition *>(message_memory); typed_message->~VehicleLocalPosition(); } size_t size_function__VehicleLocalPosition__delta_xy(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__VehicleLocalPosition__delta_xy(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__VehicleLocalPosition__delta_xy(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } size_t size_function__VehicleLocalPosition__delta_vxy(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__VehicleLocalPosition__delta_vxy(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__VehicleLocalPosition__delta_vxy(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember VehicleLocalPosition_message_member_array[44] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "xy_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, xy_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "z_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, z_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "v_xy_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, v_xy_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "v_z_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, v_z_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "x", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, x), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "y", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, y), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "z", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, z), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "delta_xy", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, delta_xy), // bytes offset in struct nullptr, // default value size_function__VehicleLocalPosition__delta_xy, // size() function pointer get_const_function__VehicleLocalPosition__delta_xy, // get_const(index) function pointer get_function__VehicleLocalPosition__delta_xy, // get(index) function pointer nullptr // resize(index) function pointer }, { "xy_reset_counter", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, xy_reset_counter), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "delta_z", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, delta_z), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "z_reset_counter", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, z_reset_counter), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vx", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, vx), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vy", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, vy), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vz", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, vz), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "z_deriv", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, z_deriv), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "delta_vxy", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, delta_vxy), // bytes offset in struct nullptr, // default value size_function__VehicleLocalPosition__delta_vxy, // size() function pointer get_const_function__VehicleLocalPosition__delta_vxy, // get_const(index) function pointer get_function__VehicleLocalPosition__delta_vxy, // get(index) function pointer nullptr // resize(index) function pointer }, { "vxy_reset_counter", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, vxy_reset_counter), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "delta_vz", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, delta_vz), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vz_reset_counter", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, vz_reset_counter), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ax", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, ax), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ay", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, ay), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "az", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, az), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "heading", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, heading), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "delta_heading", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, delta_heading), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "heading_reset_counter", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, heading_reset_counter), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "xy_global", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, xy_global), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "z_global", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, z_global), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ref_timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, ref_timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ref_lat", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_DOUBLE, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, ref_lat), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ref_lon", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_DOUBLE, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, ref_lon), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ref_alt", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, ref_alt), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "dist_bottom", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, dist_bottom), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "dist_bottom_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, dist_bottom_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "dist_bottom_sensor_bitfield", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, dist_bottom_sensor_bitfield), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "eph", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, eph), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "epv", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, epv), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "evh", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, evh), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "evv", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, evv), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vxy_max", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, vxy_max), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vz_max", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, vz_max), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "hagl_min", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, hagl_min), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "hagl_max", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPosition, hagl_max), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers VehicleLocalPosition_message_members = { "px4_msgs::msg", // message namespace "VehicleLocalPosition", // message name 44, // number of fields sizeof(px4_msgs::msg::VehicleLocalPosition), VehicleLocalPosition_message_member_array, // message members VehicleLocalPosition_init_function, // function to initialize message memory (memory has to be allocated) VehicleLocalPosition_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t VehicleLocalPosition_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &VehicleLocalPosition_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleLocalPosition>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleLocalPosition_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, VehicleLocalPosition)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleLocalPosition_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint_triplet__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/PositionSetpointTriplet.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/position_setpoint_triplet__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/position_setpoint_triplet__struct.h" #include "px4_msgs/msg/position_setpoint_triplet__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif #include "px4_msgs/msg/position_setpoint__functions.h" // current, next, previous // forward declare type support functions size_t get_serialized_size_px4_msgs__msg__PositionSetpoint( const void * untyped_ros_message, size_t current_alignment); size_t max_serialized_size_px4_msgs__msg__PositionSetpoint( bool & full_bounded, size_t current_alignment); const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, PositionSetpoint)(); using _PositionSetpointTriplet__ros_msg_type = px4_msgs__msg__PositionSetpointTriplet; static bool _PositionSetpointTriplet__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _PositionSetpointTriplet__ros_msg_type * ros_message = static_cast<const _PositionSetpointTriplet__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: previous { const message_type_support_callbacks_t * callbacks = static_cast<const message_type_support_callbacks_t *>( ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, PositionSetpoint )()->data); if (!callbacks->cdr_serialize( &ros_message->previous, cdr)) { return false; } } // Field name: current { const message_type_support_callbacks_t * callbacks = static_cast<const message_type_support_callbacks_t *>( ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, PositionSetpoint )()->data); if (!callbacks->cdr_serialize( &ros_message->current, cdr)) { return false; } } // Field name: next { const message_type_support_callbacks_t * callbacks = static_cast<const message_type_support_callbacks_t *>( ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, PositionSetpoint )()->data); if (!callbacks->cdr_serialize( &ros_message->next, cdr)) { return false; } } return true; } static bool _PositionSetpointTriplet__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _PositionSetpointTriplet__ros_msg_type * ros_message = static_cast<_PositionSetpointTriplet__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: previous { const message_type_support_callbacks_t * callbacks = static_cast<const message_type_support_callbacks_t *>( ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, PositionSetpoint )()->data); if (!callbacks->cdr_deserialize( cdr, &ros_message->previous)) { return false; } } // Field name: current { const message_type_support_callbacks_t * callbacks = static_cast<const message_type_support_callbacks_t *>( ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, PositionSetpoint )()->data); if (!callbacks->cdr_deserialize( cdr, &ros_message->current)) { return false; } } // Field name: next { const message_type_support_callbacks_t * callbacks = static_cast<const message_type_support_callbacks_t *>( ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, PositionSetpoint )()->data); if (!callbacks->cdr_deserialize( cdr, &ros_message->next)) { return false; } } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__PositionSetpointTriplet( const void * untyped_ros_message, size_t current_alignment) { const _PositionSetpointTriplet__ros_msg_type * ros_message = static_cast<const _PositionSetpointTriplet__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name previous current_alignment += get_serialized_size_px4_msgs__msg__PositionSetpoint( &(ros_message->previous), current_alignment); // field.name current current_alignment += get_serialized_size_px4_msgs__msg__PositionSetpoint( &(ros_message->current), current_alignment); // field.name next current_alignment += get_serialized_size_px4_msgs__msg__PositionSetpoint( &(ros_message->next), current_alignment); return current_alignment - initial_alignment; } static uint32_t _PositionSetpointTriplet__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__PositionSetpointTriplet( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__PositionSetpointTriplet( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: previous { size_t array_size = 1; for (size_t index = 0; index < array_size; ++index) { current_alignment += max_serialized_size_px4_msgs__msg__PositionSetpoint( full_bounded, current_alignment); } } // member: current { size_t array_size = 1; for (size_t index = 0; index < array_size; ++index) { current_alignment += max_serialized_size_px4_msgs__msg__PositionSetpoint( full_bounded, current_alignment); } } // member: next { size_t array_size = 1; for (size_t index = 0; index < array_size; ++index) { current_alignment += max_serialized_size_px4_msgs__msg__PositionSetpoint( full_bounded, current_alignment); } } return current_alignment - initial_alignment; } static size_t _PositionSetpointTriplet__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__PositionSetpointTriplet( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_PositionSetpointTriplet = { "px4_msgs::msg", "PositionSetpointTriplet", _PositionSetpointTriplet__cdr_serialize, _PositionSetpointTriplet__cdr_deserialize, _PositionSetpointTriplet__get_serialized_size, _PositionSetpointTriplet__max_serialized_size }; static rosidl_message_type_support_t _PositionSetpointTriplet__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_PositionSetpointTriplet, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, PositionSetpointTriplet)() { return &_PositionSetpointTriplet__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/battery_status__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/BatteryStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/battery_status__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/battery_status__struct.h" #include "px4_msgs/msg/battery_status__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _BatteryStatus__ros_msg_type = px4_msgs__msg__BatteryStatus; static bool _BatteryStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _BatteryStatus__ros_msg_type * ros_message = static_cast<const _BatteryStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: voltage_v { cdr << ros_message->voltage_v; } // Field name: voltage_filtered_v { cdr << ros_message->voltage_filtered_v; } // Field name: current_a { cdr << ros_message->current_a; } // Field name: current_filtered_a { cdr << ros_message->current_filtered_a; } // Field name: average_current_a { cdr << ros_message->average_current_a; } // Field name: discharged_mah { cdr << ros_message->discharged_mah; } // Field name: remaining { cdr << ros_message->remaining; } // Field name: scale { cdr << ros_message->scale; } // Field name: temperature { cdr << ros_message->temperature; } // Field name: cell_count { cdr << ros_message->cell_count; } // Field name: connected { cdr << (ros_message->connected ? true : false); } // Field name: source { cdr << ros_message->source; } // Field name: priority { cdr << ros_message->priority; } // Field name: capacity { cdr << ros_message->capacity; } // Field name: cycle_count { cdr << ros_message->cycle_count; } // Field name: run_time_to_empty { cdr << ros_message->run_time_to_empty; } // Field name: average_time_to_empty { cdr << ros_message->average_time_to_empty; } // Field name: serial_number { cdr << ros_message->serial_number; } // Field name: manufacture_date { cdr << ros_message->manufacture_date; } // Field name: state_of_health { cdr << ros_message->state_of_health; } // Field name: max_error { cdr << ros_message->max_error; } // Field name: id { cdr << ros_message->id; } // Field name: interface_error { cdr << ros_message->interface_error; } // Field name: voltage_cell_v { size_t size = 14; auto array_ptr = ros_message->voltage_cell_v; cdr.serializeArray(array_ptr, size); } // Field name: max_cell_voltage_delta { cdr << ros_message->max_cell_voltage_delta; } // Field name: is_powering_off { cdr << (ros_message->is_powering_off ? true : false); } // Field name: warning { cdr << ros_message->warning; } // Field name: average_power { cdr << ros_message->average_power; } // Field name: available_energy { cdr << ros_message->available_energy; } // Field name: remaining_capacity { cdr << ros_message->remaining_capacity; } // Field name: design_capacity { cdr << ros_message->design_capacity; } // Field name: average_time_to_full { cdr << ros_message->average_time_to_full; } // Field name: over_discharge_count { cdr << ros_message->over_discharge_count; } // Field name: nominal_voltage { cdr << ros_message->nominal_voltage; } return true; } static bool _BatteryStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _BatteryStatus__ros_msg_type * ros_message = static_cast<_BatteryStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: voltage_v { cdr >> ros_message->voltage_v; } // Field name: voltage_filtered_v { cdr >> ros_message->voltage_filtered_v; } // Field name: current_a { cdr >> ros_message->current_a; } // Field name: current_filtered_a { cdr >> ros_message->current_filtered_a; } // Field name: average_current_a { cdr >> ros_message->average_current_a; } // Field name: discharged_mah { cdr >> ros_message->discharged_mah; } // Field name: remaining { cdr >> ros_message->remaining; } // Field name: scale { cdr >> ros_message->scale; } // Field name: temperature { cdr >> ros_message->temperature; } // Field name: cell_count { cdr >> ros_message->cell_count; } // Field name: connected { uint8_t tmp; cdr >> tmp; ros_message->connected = tmp ? true : false; } // Field name: source { cdr >> ros_message->source; } // Field name: priority { cdr >> ros_message->priority; } // Field name: capacity { cdr >> ros_message->capacity; } // Field name: cycle_count { cdr >> ros_message->cycle_count; } // Field name: run_time_to_empty { cdr >> ros_message->run_time_to_empty; } // Field name: average_time_to_empty { cdr >> ros_message->average_time_to_empty; } // Field name: serial_number { cdr >> ros_message->serial_number; } // Field name: manufacture_date { cdr >> ros_message->manufacture_date; } // Field name: state_of_health { cdr >> ros_message->state_of_health; } // Field name: max_error { cdr >> ros_message->max_error; } // Field name: id { cdr >> ros_message->id; } // Field name: interface_error { cdr >> ros_message->interface_error; } // Field name: voltage_cell_v { size_t size = 14; auto array_ptr = ros_message->voltage_cell_v; cdr.deserializeArray(array_ptr, size); } // Field name: max_cell_voltage_delta { cdr >> ros_message->max_cell_voltage_delta; } // Field name: is_powering_off { uint8_t tmp; cdr >> tmp; ros_message->is_powering_off = tmp ? true : false; } // Field name: warning { cdr >> ros_message->warning; } // Field name: average_power { cdr >> ros_message->average_power; } // Field name: available_energy { cdr >> ros_message->available_energy; } // Field name: remaining_capacity { cdr >> ros_message->remaining_capacity; } // Field name: design_capacity { cdr >> ros_message->design_capacity; } // Field name: average_time_to_full { cdr >> ros_message->average_time_to_full; } // Field name: over_discharge_count { cdr >> ros_message->over_discharge_count; } // Field name: nominal_voltage { cdr >> ros_message->nominal_voltage; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__BatteryStatus( const void * untyped_ros_message, size_t current_alignment) { const _BatteryStatus__ros_msg_type * ros_message = static_cast<const _BatteryStatus__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name voltage_v { size_t item_size = sizeof(ros_message->voltage_v); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name voltage_filtered_v { size_t item_size = sizeof(ros_message->voltage_filtered_v); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name current_a { size_t item_size = sizeof(ros_message->current_a); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name current_filtered_a { size_t item_size = sizeof(ros_message->current_filtered_a); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name average_current_a { size_t item_size = sizeof(ros_message->average_current_a); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name discharged_mah { size_t item_size = sizeof(ros_message->discharged_mah); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name remaining { size_t item_size = sizeof(ros_message->remaining); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name scale { size_t item_size = sizeof(ros_message->scale); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name temperature { size_t item_size = sizeof(ros_message->temperature); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cell_count { size_t item_size = sizeof(ros_message->cell_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name connected { size_t item_size = sizeof(ros_message->connected); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name source { size_t item_size = sizeof(ros_message->source); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name priority { size_t item_size = sizeof(ros_message->priority); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name capacity { size_t item_size = sizeof(ros_message->capacity); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cycle_count { size_t item_size = sizeof(ros_message->cycle_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name run_time_to_empty { size_t item_size = sizeof(ros_message->run_time_to_empty); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name average_time_to_empty { size_t item_size = sizeof(ros_message->average_time_to_empty); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name serial_number { size_t item_size = sizeof(ros_message->serial_number); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name manufacture_date { size_t item_size = sizeof(ros_message->manufacture_date); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name state_of_health { size_t item_size = sizeof(ros_message->state_of_health); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name max_error { size_t item_size = sizeof(ros_message->max_error); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name id { size_t item_size = sizeof(ros_message->id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name interface_error { size_t item_size = sizeof(ros_message->interface_error); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name voltage_cell_v { size_t array_size = 14; auto array_ptr = ros_message->voltage_cell_v; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name max_cell_voltage_delta { size_t item_size = sizeof(ros_message->max_cell_voltage_delta); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name is_powering_off { size_t item_size = sizeof(ros_message->is_powering_off); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name warning { size_t item_size = sizeof(ros_message->warning); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name average_power { size_t item_size = sizeof(ros_message->average_power); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name available_energy { size_t item_size = sizeof(ros_message->available_energy); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name remaining_capacity { size_t item_size = sizeof(ros_message->remaining_capacity); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name design_capacity { size_t item_size = sizeof(ros_message->design_capacity); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name average_time_to_full { size_t item_size = sizeof(ros_message->average_time_to_full); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name over_discharge_count { size_t item_size = sizeof(ros_message->over_discharge_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name nominal_voltage { size_t item_size = sizeof(ros_message->nominal_voltage); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _BatteryStatus__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__BatteryStatus( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__BatteryStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: voltage_v { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: voltage_filtered_v { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: current_a { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: current_filtered_a { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: average_current_a { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: discharged_mah { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: remaining { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: scale { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: temperature { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: cell_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: connected { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: source { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: priority { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: capacity { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: cycle_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: run_time_to_empty { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: average_time_to_empty { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: serial_number { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: manufacture_date { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: state_of_health { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: max_error { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: id { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: interface_error { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: voltage_cell_v { size_t array_size = 14; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: max_cell_voltage_delta { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: is_powering_off { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: warning { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: average_power { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: available_energy { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: remaining_capacity { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: design_capacity { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: average_time_to_full { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: over_discharge_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: nominal_voltage { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _BatteryStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__BatteryStatus( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_BatteryStatus = { "px4_msgs::msg", "BatteryStatus", _BatteryStatus__cdr_serialize, _BatteryStatus__cdr_deserialize, _BatteryStatus__get_serialized_size, _BatteryStatus__max_serialized_size }; static rosidl_message_type_support_t _BatteryStatus__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_BatteryStatus, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, BatteryStatus)() { return &_BatteryStatus__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/debug_vect__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/DebugVect.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/debug_vect__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__DebugVect__init(px4_msgs__msg__DebugVect * msg) { if (!msg) { return false; } // timestamp // name // x // y // z return true; } void px4_msgs__msg__DebugVect__fini(px4_msgs__msg__DebugVect * msg) { if (!msg) { return; } // timestamp // name // x // y // z } px4_msgs__msg__DebugVect * px4_msgs__msg__DebugVect__create() { px4_msgs__msg__DebugVect * msg = (px4_msgs__msg__DebugVect *)malloc(sizeof(px4_msgs__msg__DebugVect)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__DebugVect)); bool success = px4_msgs__msg__DebugVect__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__DebugVect__destroy(px4_msgs__msg__DebugVect * msg) { if (msg) { px4_msgs__msg__DebugVect__fini(msg); } free(msg); } bool px4_msgs__msg__DebugVect__Sequence__init(px4_msgs__msg__DebugVect__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__DebugVect * data = NULL; if (size) { data = (px4_msgs__msg__DebugVect *)calloc(size, sizeof(px4_msgs__msg__DebugVect)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__DebugVect__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__DebugVect__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__DebugVect__Sequence__fini(px4_msgs__msg__DebugVect__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__DebugVect__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__DebugVect__Sequence * px4_msgs__msg__DebugVect__Sequence__create(size_t size) { px4_msgs__msg__DebugVect__Sequence * array = (px4_msgs__msg__DebugVect__Sequence *)malloc(sizeof(px4_msgs__msg__DebugVect__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__DebugVect__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__DebugVect__Sequence__destroy(px4_msgs__msg__DebugVect__Sequence * array) { if (array) { px4_msgs__msg__DebugVect__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_report__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/EscReport.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/esc_report__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void EscReport_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::EscReport(_init); } void EscReport_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::EscReport *>(message_memory); typed_message->~EscReport(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember EscReport_message_member_array[9] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EscReport, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "esc_errorcount", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EscReport, esc_errorcount), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "esc_rpm", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EscReport, esc_rpm), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "esc_voltage", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EscReport, esc_voltage), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "esc_current", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EscReport, esc_current), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "esc_temperature", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EscReport, esc_temperature), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "esc_address", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EscReport, esc_address), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "esc_state", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EscReport, esc_state), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "failures", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EscReport, failures), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers EscReport_message_members = { "px4_msgs::msg", // message namespace "EscReport", // message name 9, // number of fields sizeof(px4_msgs::msg::EscReport), EscReport_message_member_array, // message members EscReport_init_function, // function to initialize message memory (memory has to be allocated) EscReport_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t EscReport_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &EscReport_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::EscReport>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EscReport_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, EscReport)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EscReport_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_gyro_fifo.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/SensorGyroFifo.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_GYRO_FIFO_H_ #define PX4_MSGS__MSG__SENSOR_GYRO_FIFO_H_ #include "px4_msgs/msg/sensor_gyro_fifo__struct.h" #include "px4_msgs/msg/sensor_gyro_fifo__functions.h" #include "px4_msgs/msg/sensor_gyro_fifo__type_support.h" #endif // PX4_MSGS__MSG__SENSOR_GYRO_FIFO_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/actuator_controls2.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS2_HPP_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS2_HPP_ #include "px4_msgs/msg/actuator_controls2__struct.hpp" #include "px4_msgs/msg/actuator_controls2__traits.hpp" #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS2_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/rpm__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/Rpm.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/rpm__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__Rpm__init(px4_msgs__msg__Rpm * msg) { if (!msg) { return false; } // timestamp // indicated_frequency_rpm // estimated_accurancy_rpm return true; } void px4_msgs__msg__Rpm__fini(px4_msgs__msg__Rpm * msg) { if (!msg) { return; } // timestamp // indicated_frequency_rpm // estimated_accurancy_rpm } px4_msgs__msg__Rpm * px4_msgs__msg__Rpm__create() { px4_msgs__msg__Rpm * msg = (px4_msgs__msg__Rpm *)malloc(sizeof(px4_msgs__msg__Rpm)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__Rpm)); bool success = px4_msgs__msg__Rpm__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__Rpm__destroy(px4_msgs__msg__Rpm * msg) { if (msg) { px4_msgs__msg__Rpm__fini(msg); } free(msg); } bool px4_msgs__msg__Rpm__Sequence__init(px4_msgs__msg__Rpm__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__Rpm * data = NULL; if (size) { data = (px4_msgs__msg__Rpm *)calloc(size, sizeof(px4_msgs__msg__Rpm)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__Rpm__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__Rpm__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__Rpm__Sequence__fini(px4_msgs__msg__Rpm__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__Rpm__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__Rpm__Sequence * px4_msgs__msg__Rpm__Sequence__create(size_t size) { px4_msgs__msg__Rpm__Sequence * array = (px4_msgs__msg__Rpm__Sequence *)malloc(sizeof(px4_msgs__msg__Rpm__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__Rpm__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__Rpm__Sequence__destroy(px4_msgs__msg__Rpm__Sequence * array) { if (array) { px4_msgs__msg__Rpm__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/generator_status__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/GeneratorStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GENERATOR_STATUS__STRUCT_HPP_ #define PX4_MSGS__MSG__GENERATOR_STATUS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__GeneratorStatus __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__GeneratorStatus __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct GeneratorStatus_ { using Type = GeneratorStatus_<ContainerAllocator>; explicit GeneratorStatus_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->status = 0ull; this->battery_current = 0.0f; this->load_current = 0.0f; this->power_generated = 0.0f; this->bus_voltage = 0.0f; this->bat_current_setpoint = 0.0f; this->runtime = 0ul; this->time_until_maintenance = 0l; this->generator_speed = 0; this->rectifier_temperature = 0; this->generator_temperature = 0; } } explicit GeneratorStatus_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->status = 0ull; this->battery_current = 0.0f; this->load_current = 0.0f; this->power_generated = 0.0f; this->bus_voltage = 0.0f; this->bat_current_setpoint = 0.0f; this->runtime = 0ul; this->time_until_maintenance = 0l; this->generator_speed = 0; this->rectifier_temperature = 0; this->generator_temperature = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _status_type = uint64_t; _status_type status; using _battery_current_type = float; _battery_current_type battery_current; using _load_current_type = float; _load_current_type load_current; using _power_generated_type = float; _power_generated_type power_generated; using _bus_voltage_type = float; _bus_voltage_type bus_voltage; using _bat_current_setpoint_type = float; _bat_current_setpoint_type bat_current_setpoint; using _runtime_type = uint32_t; _runtime_type runtime; using _time_until_maintenance_type = int32_t; _time_until_maintenance_type time_until_maintenance; using _generator_speed_type = uint16_t; _generator_speed_type generator_speed; using _rectifier_temperature_type = int16_t; _rectifier_temperature_type rectifier_temperature; using _generator_temperature_type = int16_t; _generator_temperature_type generator_temperature; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__status( const uint64_t & _arg) { this->status = _arg; return *this; } Type & set__battery_current( const float & _arg) { this->battery_current = _arg; return *this; } Type & set__load_current( const float & _arg) { this->load_current = _arg; return *this; } Type & set__power_generated( const float & _arg) { this->power_generated = _arg; return *this; } Type & set__bus_voltage( const float & _arg) { this->bus_voltage = _arg; return *this; } Type & set__bat_current_setpoint( const float & _arg) { this->bat_current_setpoint = _arg; return *this; } Type & set__runtime( const uint32_t & _arg) { this->runtime = _arg; return *this; } Type & set__time_until_maintenance( const int32_t & _arg) { this->time_until_maintenance = _arg; return *this; } Type & set__generator_speed( const uint16_t & _arg) { this->generator_speed = _arg; return *this; } Type & set__rectifier_temperature( const int16_t & _arg) { this->rectifier_temperature = _arg; return *this; } Type & set__generator_temperature( const int16_t & _arg) { this->generator_temperature = _arg; return *this; } // constant declarations static constexpr uint64_t STATUS_FLAG_OFF = 1u; static constexpr uint64_t STATUS_FLAG_READY = 2u; static constexpr uint64_t STATUS_FLAG_GENERATING = 4u; static constexpr uint64_t STATUS_FLAG_CHARGING = 8u; static constexpr uint64_t STATUS_FLAG_REDUCED_POWER = 16u; static constexpr uint64_t STATUS_FLAG_MAXPOWER = 32u; static constexpr uint64_t STATUS_FLAG_OVERTEMP_WARNING = 64u; static constexpr uint64_t STATUS_FLAG_OVERTEMP_FAULT = 128u; static constexpr uint64_t STATUS_FLAG_ELECTRONICS_OVERTEMP_WARNING = 256u; static constexpr uint64_t STATUS_FLAG_ELECTRONICS_OVERTEMP_FAULT = 512u; static constexpr uint64_t STATUS_FLAG_ELECTRONICS_FAULT = 1024u; static constexpr uint64_t STATUS_FLAG_POWERSOURCE_FAULT = 2048u; static constexpr uint64_t STATUS_FLAG_COMMUNICATION_WARNING = 4096u; static constexpr uint64_t STATUS_FLAG_COOLING_WARNING = 8192u; static constexpr uint64_t STATUS_FLAG_POWER_RAIL_FAULT = 16384u; static constexpr uint64_t STATUS_FLAG_OVERCURRENT_FAULT = 32768u; static constexpr uint64_t STATUS_FLAG_BATTERY_OVERCHARGE_CURRENT_FAULT = 65536u; static constexpr uint64_t STATUS_FLAG_OVERVOLTAGE_FAULT = 131072u; static constexpr uint64_t STATUS_FLAG_BATTERY_UNDERVOLT_FAULT = 262144u; static constexpr uint64_t STATUS_FLAG_START_INHIBITED = 524288u; static constexpr uint64_t STATUS_FLAG_MAINTENANCE_REQUIRED = 1048576u; static constexpr uint64_t STATUS_FLAG_WARMING_UP = 2097152u; static constexpr uint64_t STATUS_FLAG_IDLE = 4194304u; // pointer types using RawPtr = px4_msgs::msg::GeneratorStatus_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::GeneratorStatus_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::GeneratorStatus_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::GeneratorStatus_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::GeneratorStatus_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::GeneratorStatus_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::GeneratorStatus_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::GeneratorStatus_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::GeneratorStatus_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::GeneratorStatus_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__GeneratorStatus std::shared_ptr<px4_msgs::msg::GeneratorStatus_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__GeneratorStatus std::shared_ptr<px4_msgs::msg::GeneratorStatus_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const GeneratorStatus_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->status != other.status) { return false; } if (this->battery_current != other.battery_current) { return false; } if (this->load_current != other.load_current) { return false; } if (this->power_generated != other.power_generated) { return false; } if (this->bus_voltage != other.bus_voltage) { return false; } if (this->bat_current_setpoint != other.bat_current_setpoint) { return false; } if (this->runtime != other.runtime) { return false; } if (this->time_until_maintenance != other.time_until_maintenance) { return false; } if (this->generator_speed != other.generator_speed) { return false; } if (this->rectifier_temperature != other.rectifier_temperature) { return false; } if (this->generator_temperature != other.generator_temperature) { return false; } return true; } bool operator!=(const GeneratorStatus_ & other) const { return !this->operator==(other); } }; // struct GeneratorStatus_ // alias to use template instance with default allocator using GeneratorStatus = px4_msgs::msg::GeneratorStatus_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint64_t GeneratorStatus_<ContainerAllocator>::STATUS_FLAG_OFF; template<typename ContainerAllocator> constexpr uint64_t GeneratorStatus_<ContainerAllocator>::STATUS_FLAG_READY; template<typename ContainerAllocator> constexpr uint64_t GeneratorStatus_<ContainerAllocator>::STATUS_FLAG_GENERATING; template<typename ContainerAllocator> constexpr uint64_t GeneratorStatus_<ContainerAllocator>::STATUS_FLAG_CHARGING; template<typename ContainerAllocator> constexpr uint64_t GeneratorStatus_<ContainerAllocator>::STATUS_FLAG_REDUCED_POWER; template<typename ContainerAllocator> constexpr uint64_t GeneratorStatus_<ContainerAllocator>::STATUS_FLAG_MAXPOWER; template<typename ContainerAllocator> constexpr uint64_t GeneratorStatus_<ContainerAllocator>::STATUS_FLAG_OVERTEMP_WARNING; template<typename ContainerAllocator> constexpr uint64_t GeneratorStatus_<ContainerAllocator>::STATUS_FLAG_OVERTEMP_FAULT; template<typename ContainerAllocator> constexpr uint64_t GeneratorStatus_<ContainerAllocator>::STATUS_FLAG_ELECTRONICS_OVERTEMP_WARNING; template<typename ContainerAllocator> constexpr uint64_t GeneratorStatus_<ContainerAllocator>::STATUS_FLAG_ELECTRONICS_OVERTEMP_FAULT; template<typename ContainerAllocator> constexpr uint64_t GeneratorStatus_<ContainerAllocator>::STATUS_FLAG_ELECTRONICS_FAULT; template<typename ContainerAllocator> constexpr uint64_t GeneratorStatus_<ContainerAllocator>::STATUS_FLAG_POWERSOURCE_FAULT; template<typename ContainerAllocator> constexpr uint64_t GeneratorStatus_<ContainerAllocator>::STATUS_FLAG_COMMUNICATION_WARNING; template<typename ContainerAllocator> constexpr uint64_t GeneratorStatus_<ContainerAllocator>::STATUS_FLAG_COOLING_WARNING; template<typename ContainerAllocator> constexpr uint64_t GeneratorStatus_<ContainerAllocator>::STATUS_FLAG_POWER_RAIL_FAULT; template<typename ContainerAllocator> constexpr uint64_t GeneratorStatus_<ContainerAllocator>::STATUS_FLAG_OVERCURRENT_FAULT; template<typename ContainerAllocator> constexpr uint64_t GeneratorStatus_<ContainerAllocator>::STATUS_FLAG_BATTERY_OVERCHARGE_CURRENT_FAULT; template<typename ContainerAllocator> constexpr uint64_t GeneratorStatus_<ContainerAllocator>::STATUS_FLAG_OVERVOLTAGE_FAULT; template<typename ContainerAllocator> constexpr uint64_t GeneratorStatus_<ContainerAllocator>::STATUS_FLAG_BATTERY_UNDERVOLT_FAULT; template<typename ContainerAllocator> constexpr uint64_t GeneratorStatus_<ContainerAllocator>::STATUS_FLAG_START_INHIBITED; template<typename ContainerAllocator> constexpr uint64_t GeneratorStatus_<ContainerAllocator>::STATUS_FLAG_MAINTENANCE_REQUIRED; template<typename ContainerAllocator> constexpr uint64_t GeneratorStatus_<ContainerAllocator>::STATUS_FLAG_WARMING_UP; template<typename ContainerAllocator> constexpr uint64_t GeneratorStatus_<ContainerAllocator>::STATUS_FLAG_IDLE; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__GENERATOR_STATUS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_imu__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleImu.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_imu__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__VehicleImu__init(px4_msgs__msg__VehicleImu * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // accel_device_id // gyro_device_id // delta_angle // delta_velocity // delta_angle_dt // delta_velocity_dt // delta_velocity_clipping // calibration_count return true; } void px4_msgs__msg__VehicleImu__fini(px4_msgs__msg__VehicleImu * msg) { if (!msg) { return; } // timestamp // timestamp_sample // accel_device_id // gyro_device_id // delta_angle // delta_velocity // delta_angle_dt // delta_velocity_dt // delta_velocity_clipping // calibration_count } px4_msgs__msg__VehicleImu * px4_msgs__msg__VehicleImu__create() { px4_msgs__msg__VehicleImu * msg = (px4_msgs__msg__VehicleImu *)malloc(sizeof(px4_msgs__msg__VehicleImu)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleImu)); bool success = px4_msgs__msg__VehicleImu__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleImu__destroy(px4_msgs__msg__VehicleImu * msg) { if (msg) { px4_msgs__msg__VehicleImu__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleImu__Sequence__init(px4_msgs__msg__VehicleImu__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleImu * data = NULL; if (size) { data = (px4_msgs__msg__VehicleImu *)calloc(size, sizeof(px4_msgs__msg__VehicleImu)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleImu__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleImu__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleImu__Sequence__fini(px4_msgs__msg__VehicleImu__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleImu__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleImu__Sequence * px4_msgs__msg__VehicleImu__Sequence__create(size_t size) { px4_msgs__msg__VehicleImu__Sequence * array = (px4_msgs__msg__VehicleImu__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleImu__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleImu__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleImu__Sequence__destroy(px4_msgs__msg__VehicleImu__Sequence * array) { if (array) { px4_msgs__msg__VehicleImu__Sequence__fini(array); } free(array); } <file_sep>/install/px4_msgs/share/px4_msgs/cmake/rosidl_cmake-extras.cmake /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_msgs/rosidl_cmake/rosidl_cmake-extras.cmake<file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_esc_report.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/EscReport.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_EscReport(type): """Metaclass of message 'EscReport'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'FAILURE_NONE': 0, 'FAILURE_OVER_CURRENT_MASK': 1, 'FAILURE_OVER_VOLTAGE_MASK': 2, 'FAILURE_OVER_TEMPERATURE_MASK': 4, 'FAILURE_OVER_RPM_MASK': 8, 'FAILURE_INCONSISTENT_CMD_MASK': 16, 'FAILURE_MOTOR_STUCK_MASK': 32, 'FAILURE_GENERIC_MASK': 64, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.EscReport') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__esc_report cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__esc_report cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__esc_report cls._TYPE_SUPPORT = module.type_support_msg__msg__esc_report cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__esc_report @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'FAILURE_NONE': cls.__constants['FAILURE_NONE'], 'FAILURE_OVER_CURRENT_MASK': cls.__constants['FAILURE_OVER_CURRENT_MASK'], 'FAILURE_OVER_VOLTAGE_MASK': cls.__constants['FAILURE_OVER_VOLTAGE_MASK'], 'FAILURE_OVER_TEMPERATURE_MASK': cls.__constants['FAILURE_OVER_TEMPERATURE_MASK'], 'FAILURE_OVER_RPM_MASK': cls.__constants['FAILURE_OVER_RPM_MASK'], 'FAILURE_INCONSISTENT_CMD_MASK': cls.__constants['FAILURE_INCONSISTENT_CMD_MASK'], 'FAILURE_MOTOR_STUCK_MASK': cls.__constants['FAILURE_MOTOR_STUCK_MASK'], 'FAILURE_GENERIC_MASK': cls.__constants['FAILURE_GENERIC_MASK'], } @property def FAILURE_NONE(self): """Message constant 'FAILURE_NONE'.""" return Metaclass_EscReport.__constants['FAILURE_NONE'] @property def FAILURE_OVER_CURRENT_MASK(self): """Message constant 'FAILURE_OVER_CURRENT_MASK'.""" return Metaclass_EscReport.__constants['FAILURE_OVER_CURRENT_MASK'] @property def FAILURE_OVER_VOLTAGE_MASK(self): """Message constant 'FAILURE_OVER_VOLTAGE_MASK'.""" return Metaclass_EscReport.__constants['FAILURE_OVER_VOLTAGE_MASK'] @property def FAILURE_OVER_TEMPERATURE_MASK(self): """Message constant 'FAILURE_OVER_TEMPERATURE_MASK'.""" return Metaclass_EscReport.__constants['FAILURE_OVER_TEMPERATURE_MASK'] @property def FAILURE_OVER_RPM_MASK(self): """Message constant 'FAILURE_OVER_RPM_MASK'.""" return Metaclass_EscReport.__constants['FAILURE_OVER_RPM_MASK'] @property def FAILURE_INCONSISTENT_CMD_MASK(self): """Message constant 'FAILURE_INCONSISTENT_CMD_MASK'.""" return Metaclass_EscReport.__constants['FAILURE_INCONSISTENT_CMD_MASK'] @property def FAILURE_MOTOR_STUCK_MASK(self): """Message constant 'FAILURE_MOTOR_STUCK_MASK'.""" return Metaclass_EscReport.__constants['FAILURE_MOTOR_STUCK_MASK'] @property def FAILURE_GENERIC_MASK(self): """Message constant 'FAILURE_GENERIC_MASK'.""" return Metaclass_EscReport.__constants['FAILURE_GENERIC_MASK'] class EscReport(metaclass=Metaclass_EscReport): """ Message class 'EscReport'. Constants: FAILURE_NONE FAILURE_OVER_CURRENT_MASK FAILURE_OVER_VOLTAGE_MASK FAILURE_OVER_TEMPERATURE_MASK FAILURE_OVER_RPM_MASK FAILURE_INCONSISTENT_CMD_MASK FAILURE_MOTOR_STUCK_MASK FAILURE_GENERIC_MASK """ __slots__ = [ '_timestamp', '_esc_errorcount', '_esc_rpm', '_esc_voltage', '_esc_current', '_esc_temperature', '_esc_address', '_esc_state', '_failures', ] _fields_and_field_types = { 'timestamp': 'uint64', 'esc_errorcount': 'uint32', 'esc_rpm': 'int32', 'esc_voltage': 'float', 'esc_current': 'float', 'esc_temperature': 'uint8', 'esc_address': 'uint8', 'esc_state': 'uint8', 'failures': 'uint8', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('int32'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.esc_errorcount = kwargs.get('esc_errorcount', int()) self.esc_rpm = kwargs.get('esc_rpm', int()) self.esc_voltage = kwargs.get('esc_voltage', float()) self.esc_current = kwargs.get('esc_current', float()) self.esc_temperature = kwargs.get('esc_temperature', int()) self.esc_address = kwargs.get('esc_address', int()) self.esc_state = kwargs.get('esc_state', int()) self.failures = kwargs.get('failures', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.esc_errorcount != other.esc_errorcount: return False if self.esc_rpm != other.esc_rpm: return False if self.esc_voltage != other.esc_voltage: return False if self.esc_current != other.esc_current: return False if self.esc_temperature != other.esc_temperature: return False if self.esc_address != other.esc_address: return False if self.esc_state != other.esc_state: return False if self.failures != other.failures: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def esc_errorcount(self): """Message field 'esc_errorcount'.""" return self._esc_errorcount @esc_errorcount.setter def esc_errorcount(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'esc_errorcount' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'esc_errorcount' field must be an unsigned integer in [0, 4294967295]" self._esc_errorcount = value @property def esc_rpm(self): """Message field 'esc_rpm'.""" return self._esc_rpm @esc_rpm.setter def esc_rpm(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'esc_rpm' field must be of type 'int'" assert value >= -2147483648 and value < 2147483648, \ "The 'esc_rpm' field must be an integer in [-2147483648, 2147483647]" self._esc_rpm = value @property def esc_voltage(self): """Message field 'esc_voltage'.""" return self._esc_voltage @esc_voltage.setter def esc_voltage(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'esc_voltage' field must be of type 'float'" self._esc_voltage = value @property def esc_current(self): """Message field 'esc_current'.""" return self._esc_current @esc_current.setter def esc_current(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'esc_current' field must be of type 'float'" self._esc_current = value @property def esc_temperature(self): """Message field 'esc_temperature'.""" return self._esc_temperature @esc_temperature.setter def esc_temperature(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'esc_temperature' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'esc_temperature' field must be an unsigned integer in [0, 255]" self._esc_temperature = value @property def esc_address(self): """Message field 'esc_address'.""" return self._esc_address @esc_address.setter def esc_address(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'esc_address' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'esc_address' field must be an unsigned integer in [0, 255]" self._esc_address = value @property def esc_state(self): """Message field 'esc_state'.""" return self._esc_state @esc_state.setter def esc_state(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'esc_state' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'esc_state' field must be an unsigned integer in [0, 255]" self._esc_state = value @property def failures(self): """Message field 'failures'.""" return self._failures @failures.setter def failures(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'failures' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'failures' field must be an unsigned integer in [0, 255]" self._failures = value <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/safety__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/Safety.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SAFETY__STRUCT_H_ #define PX4_MSGS__MSG__SAFETY__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/Safety in the package px4_msgs. typedef struct px4_msgs__msg__Safety { uint64_t timestamp; bool safety_switch_available; bool safety_off; bool override_available; bool override_enabled; } px4_msgs__msg__Safety; // Struct for a sequence of px4_msgs__msg__Safety. typedef struct px4_msgs__msg__Safety__Sequence { px4_msgs__msg__Safety * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__Safety__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__SAFETY__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/gimbal_manager_status__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/GimbalManagerStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GIMBAL_MANAGER_STATUS__STRUCT_H_ #define PX4_MSGS__MSG__GIMBAL_MANAGER_STATUS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/GimbalManagerStatus in the package px4_msgs. typedef struct px4_msgs__msg__GimbalManagerStatus { uint64_t timestamp; uint32_t flags; uint8_t gimbal_device_id; uint8_t primary_control_sysid; uint8_t primary_control_compid; uint8_t secondary_control_sysid; uint8_t secondary_control_compid; } px4_msgs__msg__GimbalManagerStatus; // Struct for a sequence of px4_msgs__msg__GimbalManagerStatus. typedef struct px4_msgs__msg__GimbalManagerStatus__Sequence { px4_msgs__msg__GimbalManagerStatus * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__GimbalManagerStatus__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__GIMBAL_MANAGER_STATUS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_status_flags__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/EstimatorStatusFlags.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/estimator_status_flags__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__EstimatorStatusFlags__init(px4_msgs__msg__EstimatorStatusFlags * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // control_status_changes // cs_tilt_align // cs_yaw_align // cs_gps // cs_opt_flow // cs_mag_hdg // cs_mag_3d // cs_mag_dec // cs_in_air // cs_wind // cs_baro_hgt // cs_rng_hgt // cs_gps_hgt // cs_ev_pos // cs_ev_yaw // cs_ev_hgt // cs_fuse_beta // cs_mag_field_disturbed // cs_fixed_wing // cs_mag_fault // cs_fuse_aspd // cs_gnd_effect // cs_rng_stuck // cs_gps_yaw // cs_mag_aligned_in_flight // cs_ev_vel // cs_synthetic_mag_z // cs_vehicle_at_rest // fault_status_changes // fs_bad_mag_x // fs_bad_mag_y // fs_bad_mag_z // fs_bad_hdg // fs_bad_mag_decl // fs_bad_airspeed // fs_bad_sideslip // fs_bad_optflow_x // fs_bad_optflow_y // fs_bad_vel_n // fs_bad_vel_e // fs_bad_vel_d // fs_bad_pos_n // fs_bad_pos_e // fs_bad_pos_d // fs_bad_acc_bias // fs_bad_acc_vertical // fs_bad_acc_clipping // innovation_fault_status_changes // reject_hor_vel // reject_ver_vel // reject_hor_pos // reject_ver_pos // reject_mag_x // reject_mag_y // reject_mag_z // reject_yaw // reject_airspeed // reject_sideslip // reject_hagl // reject_optflow_x // reject_optflow_y return true; } void px4_msgs__msg__EstimatorStatusFlags__fini(px4_msgs__msg__EstimatorStatusFlags * msg) { if (!msg) { return; } // timestamp // timestamp_sample // control_status_changes // cs_tilt_align // cs_yaw_align // cs_gps // cs_opt_flow // cs_mag_hdg // cs_mag_3d // cs_mag_dec // cs_in_air // cs_wind // cs_baro_hgt // cs_rng_hgt // cs_gps_hgt // cs_ev_pos // cs_ev_yaw // cs_ev_hgt // cs_fuse_beta // cs_mag_field_disturbed // cs_fixed_wing // cs_mag_fault // cs_fuse_aspd // cs_gnd_effect // cs_rng_stuck // cs_gps_yaw // cs_mag_aligned_in_flight // cs_ev_vel // cs_synthetic_mag_z // cs_vehicle_at_rest // fault_status_changes // fs_bad_mag_x // fs_bad_mag_y // fs_bad_mag_z // fs_bad_hdg // fs_bad_mag_decl // fs_bad_airspeed // fs_bad_sideslip // fs_bad_optflow_x // fs_bad_optflow_y // fs_bad_vel_n // fs_bad_vel_e // fs_bad_vel_d // fs_bad_pos_n // fs_bad_pos_e // fs_bad_pos_d // fs_bad_acc_bias // fs_bad_acc_vertical // fs_bad_acc_clipping // innovation_fault_status_changes // reject_hor_vel // reject_ver_vel // reject_hor_pos // reject_ver_pos // reject_mag_x // reject_mag_y // reject_mag_z // reject_yaw // reject_airspeed // reject_sideslip // reject_hagl // reject_optflow_x // reject_optflow_y } px4_msgs__msg__EstimatorStatusFlags * px4_msgs__msg__EstimatorStatusFlags__create() { px4_msgs__msg__EstimatorStatusFlags * msg = (px4_msgs__msg__EstimatorStatusFlags *)malloc(sizeof(px4_msgs__msg__EstimatorStatusFlags)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__EstimatorStatusFlags)); bool success = px4_msgs__msg__EstimatorStatusFlags__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__EstimatorStatusFlags__destroy(px4_msgs__msg__EstimatorStatusFlags * msg) { if (msg) { px4_msgs__msg__EstimatorStatusFlags__fini(msg); } free(msg); } bool px4_msgs__msg__EstimatorStatusFlags__Sequence__init(px4_msgs__msg__EstimatorStatusFlags__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__EstimatorStatusFlags * data = NULL; if (size) { data = (px4_msgs__msg__EstimatorStatusFlags *)calloc(size, sizeof(px4_msgs__msg__EstimatorStatusFlags)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__EstimatorStatusFlags__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__EstimatorStatusFlags__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__EstimatorStatusFlags__Sequence__fini(px4_msgs__msg__EstimatorStatusFlags__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__EstimatorStatusFlags__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__EstimatorStatusFlags__Sequence * px4_msgs__msg__EstimatorStatusFlags__Sequence__create(size_t size) { px4_msgs__msg__EstimatorStatusFlags__Sequence * array = (px4_msgs__msg__EstimatorStatusFlags__Sequence *)malloc(sizeof(px4_msgs__msg__EstimatorStatusFlags__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__EstimatorStatusFlags__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__EstimatorStatusFlags__Sequence__destroy(px4_msgs__msg__EstimatorStatusFlags__Sequence * array) { if (array) { px4_msgs__msg__EstimatorStatusFlags__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_armed.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/ActuatorArmed.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_ARMED_H_ #define PX4_MSGS__MSG__ACTUATOR_ARMED_H_ #include "px4_msgs/msg/actuator_armed__struct.h" #include "px4_msgs/msg/actuator_armed__functions.h" #include "px4_msgs/msg/actuator_armed__type_support.h" #endif // PX4_MSGS__MSG__ACTUATOR_ARMED_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_gyro_fft__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/SensorGyroFft.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_GYRO_FFT__FUNCTIONS_H_ #define PX4_MSGS__MSG__SENSOR_GYRO_FFT__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/sensor_gyro_fft__struct.h" /// Initialize msg/SensorGyroFft message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__SensorGyroFft * )) before or use * px4_msgs__msg__SensorGyroFft__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__SensorGyroFft__init(px4_msgs__msg__SensorGyroFft * msg); /// Finalize msg/SensorGyroFft message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__SensorGyroFft__fini(px4_msgs__msg__SensorGyroFft * msg); /// Create msg/SensorGyroFft message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__SensorGyroFft__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__SensorGyroFft * px4_msgs__msg__SensorGyroFft__create(); /// Destroy msg/SensorGyroFft message. /** * It calls * px4_msgs__msg__SensorGyroFft__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__SensorGyroFft__destroy(px4_msgs__msg__SensorGyroFft * msg); /// Initialize array of msg/SensorGyroFft messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__SensorGyroFft__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__SensorGyroFft__Sequence__init(px4_msgs__msg__SensorGyroFft__Sequence * array, size_t size); /// Finalize array of msg/SensorGyroFft messages. /** * It calls * px4_msgs__msg__SensorGyroFft__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__SensorGyroFft__Sequence__fini(px4_msgs__msg__SensorGyroFft__Sequence * array); /// Create array of msg/SensorGyroFft messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__SensorGyroFft__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__SensorGyroFft__Sequence * px4_msgs__msg__SensorGyroFft__Sequence__create(size_t size); /// Destroy array of msg/SensorGyroFft messages. /** * It calls * px4_msgs__msg__SensorGyroFft__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__SensorGyroFft__Sequence__destroy(px4_msgs__msg__SensorGyroFft__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__SENSOR_GYRO_FFT__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/estimator_sensor_bias.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_SENSOR_BIAS_HPP_ #define PX4_MSGS__MSG__ESTIMATOR_SENSOR_BIAS_HPP_ #include "px4_msgs/msg/estimator_sensor_bias__struct.hpp" #include "px4_msgs/msg/estimator_sensor_bias__traits.hpp" #endif // PX4_MSGS__MSG__ESTIMATOR_SENSOR_BIAS_HPP_ <file_sep>/build/multi_rtd_interfaces/CMakeFiles/multi_rtd_interfaces__rosidl_typesupport_fastrtps_c.dir/cmake_clean.cmake file(REMOVE_RECURSE "rosidl_typesupport_fastrtps_c/multi_rtd_interfaces/msg/robot_trajectory__rosidl_typesupport_fastrtps_c.h" "rosidl_typesupport_fastrtps_c/multi_rtd_interfaces/msg/robot_trajectory__type_support_c.cpp" "CMakeFiles/multi_rtd_interfaces__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/multi_rtd_interfaces/msg/robot_trajectory__type_support_c.cpp.o" "libmulti_rtd_interfaces__rosidl_typesupport_fastrtps_c.pdb" "libmulti_rtd_interfaces__rosidl_typesupport_fastrtps_c.so" ) # Per-language clean rules from dependency scanning. foreach(lang CXX) include(CMakeFiles/multi_rtd_interfaces__rosidl_typesupport_fastrtps_c.dir/cmake_clean_${lang}.cmake OPTIONAL) endforeach() <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/offboard_control_mode.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/OffboardControlMode.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__OFFBOARD_CONTROL_MODE_H_ #define PX4_MSGS__MSG__OFFBOARD_CONTROL_MODE_H_ #include "px4_msgs/msg/offboard_control_mode__struct.h" #include "px4_msgs/msg/offboard_control_mode__functions.h" #include "px4_msgs/msg/offboard_control_mode__type_support.h" #endif // PX4_MSGS__MSG__OFFBOARD_CONTROL_MODE_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/mount_orientation__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/MountOrientation.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/mount_orientation__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__MountOrientation__init(px4_msgs__msg__MountOrientation * msg) { if (!msg) { return false; } // timestamp // attitude_euler_angle return true; } void px4_msgs__msg__MountOrientation__fini(px4_msgs__msg__MountOrientation * msg) { if (!msg) { return; } // timestamp // attitude_euler_angle } px4_msgs__msg__MountOrientation * px4_msgs__msg__MountOrientation__create() { px4_msgs__msg__MountOrientation * msg = (px4_msgs__msg__MountOrientation *)malloc(sizeof(px4_msgs__msg__MountOrientation)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__MountOrientation)); bool success = px4_msgs__msg__MountOrientation__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__MountOrientation__destroy(px4_msgs__msg__MountOrientation * msg) { if (msg) { px4_msgs__msg__MountOrientation__fini(msg); } free(msg); } bool px4_msgs__msg__MountOrientation__Sequence__init(px4_msgs__msg__MountOrientation__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__MountOrientation * data = NULL; if (size) { data = (px4_msgs__msg__MountOrientation *)calloc(size, sizeof(px4_msgs__msg__MountOrientation)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__MountOrientation__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__MountOrientation__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__MountOrientation__Sequence__fini(px4_msgs__msg__MountOrientation__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__MountOrientation__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__MountOrientation__Sequence * px4_msgs__msg__MountOrientation__Sequence__create(size_t size) { px4_msgs__msg__MountOrientation__Sequence * array = (px4_msgs__msg__MountOrientation__Sequence *)malloc(sizeof(px4_msgs__msg__MountOrientation__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__MountOrientation__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__MountOrientation__Sequence__destroy(px4_msgs__msg__MountOrientation__Sequence * array) { if (array) { px4_msgs__msg__MountOrientation__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_control_mode__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleControlMode.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_control_mode__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/vehicle_control_mode__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::VehicleControlMode & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: flag_armed cdr << (ros_message.flag_armed ? true : false); // Member: flag_external_manual_override_ok cdr << (ros_message.flag_external_manual_override_ok ? true : false); // Member: flag_control_manual_enabled cdr << (ros_message.flag_control_manual_enabled ? true : false); // Member: flag_control_auto_enabled cdr << (ros_message.flag_control_auto_enabled ? true : false); // Member: flag_control_offboard_enabled cdr << (ros_message.flag_control_offboard_enabled ? true : false); // Member: flag_control_rates_enabled cdr << (ros_message.flag_control_rates_enabled ? true : false); // Member: flag_control_attitude_enabled cdr << (ros_message.flag_control_attitude_enabled ? true : false); // Member: flag_control_acceleration_enabled cdr << (ros_message.flag_control_acceleration_enabled ? true : false); // Member: flag_control_velocity_enabled cdr << (ros_message.flag_control_velocity_enabled ? true : false); // Member: flag_control_position_enabled cdr << (ros_message.flag_control_position_enabled ? true : false); // Member: flag_control_altitude_enabled cdr << (ros_message.flag_control_altitude_enabled ? true : false); // Member: flag_control_climb_rate_enabled cdr << (ros_message.flag_control_climb_rate_enabled ? true : false); // Member: flag_control_termination_enabled cdr << (ros_message.flag_control_termination_enabled ? true : false); return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::VehicleControlMode & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: flag_armed { uint8_t tmp; cdr >> tmp; ros_message.flag_armed = tmp ? true : false; } // Member: flag_external_manual_override_ok { uint8_t tmp; cdr >> tmp; ros_message.flag_external_manual_override_ok = tmp ? true : false; } // Member: flag_control_manual_enabled { uint8_t tmp; cdr >> tmp; ros_message.flag_control_manual_enabled = tmp ? true : false; } // Member: flag_control_auto_enabled { uint8_t tmp; cdr >> tmp; ros_message.flag_control_auto_enabled = tmp ? true : false; } // Member: flag_control_offboard_enabled { uint8_t tmp; cdr >> tmp; ros_message.flag_control_offboard_enabled = tmp ? true : false; } // Member: flag_control_rates_enabled { uint8_t tmp; cdr >> tmp; ros_message.flag_control_rates_enabled = tmp ? true : false; } // Member: flag_control_attitude_enabled { uint8_t tmp; cdr >> tmp; ros_message.flag_control_attitude_enabled = tmp ? true : false; } // Member: flag_control_acceleration_enabled { uint8_t tmp; cdr >> tmp; ros_message.flag_control_acceleration_enabled = tmp ? true : false; } // Member: flag_control_velocity_enabled { uint8_t tmp; cdr >> tmp; ros_message.flag_control_velocity_enabled = tmp ? true : false; } // Member: flag_control_position_enabled { uint8_t tmp; cdr >> tmp; ros_message.flag_control_position_enabled = tmp ? true : false; } // Member: flag_control_altitude_enabled { uint8_t tmp; cdr >> tmp; ros_message.flag_control_altitude_enabled = tmp ? true : false; } // Member: flag_control_climb_rate_enabled { uint8_t tmp; cdr >> tmp; ros_message.flag_control_climb_rate_enabled = tmp ? true : false; } // Member: flag_control_termination_enabled { uint8_t tmp; cdr >> tmp; ros_message.flag_control_termination_enabled = tmp ? true : false; } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::VehicleControlMode & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: flag_armed { size_t item_size = sizeof(ros_message.flag_armed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: flag_external_manual_override_ok { size_t item_size = sizeof(ros_message.flag_external_manual_override_ok); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: flag_control_manual_enabled { size_t item_size = sizeof(ros_message.flag_control_manual_enabled); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: flag_control_auto_enabled { size_t item_size = sizeof(ros_message.flag_control_auto_enabled); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: flag_control_offboard_enabled { size_t item_size = sizeof(ros_message.flag_control_offboard_enabled); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: flag_control_rates_enabled { size_t item_size = sizeof(ros_message.flag_control_rates_enabled); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: flag_control_attitude_enabled { size_t item_size = sizeof(ros_message.flag_control_attitude_enabled); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: flag_control_acceleration_enabled { size_t item_size = sizeof(ros_message.flag_control_acceleration_enabled); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: flag_control_velocity_enabled { size_t item_size = sizeof(ros_message.flag_control_velocity_enabled); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: flag_control_position_enabled { size_t item_size = sizeof(ros_message.flag_control_position_enabled); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: flag_control_altitude_enabled { size_t item_size = sizeof(ros_message.flag_control_altitude_enabled); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: flag_control_climb_rate_enabled { size_t item_size = sizeof(ros_message.flag_control_climb_rate_enabled); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: flag_control_termination_enabled { size_t item_size = sizeof(ros_message.flag_control_termination_enabled); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_VehicleControlMode( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: flag_armed { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: flag_external_manual_override_ok { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: flag_control_manual_enabled { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: flag_control_auto_enabled { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: flag_control_offboard_enabled { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: flag_control_rates_enabled { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: flag_control_attitude_enabled { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: flag_control_acceleration_enabled { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: flag_control_velocity_enabled { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: flag_control_position_enabled { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: flag_control_altitude_enabled { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: flag_control_climb_rate_enabled { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: flag_control_termination_enabled { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _VehicleControlMode__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::VehicleControlMode *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _VehicleControlMode__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::VehicleControlMode *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _VehicleControlMode__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::VehicleControlMode *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _VehicleControlMode__max_serialized_size(bool & full_bounded) { return max_serialized_size_VehicleControlMode(full_bounded, 0); } static message_type_support_callbacks_t _VehicleControlMode__callbacks = { "px4_msgs::msg", "VehicleControlMode", _VehicleControlMode__cdr_serialize, _VehicleControlMode__cdr_deserialize, _VehicleControlMode__get_serialized_size, _VehicleControlMode__max_serialized_size }; static rosidl_message_type_support_t _VehicleControlMode__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_VehicleControlMode__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleControlMode>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_VehicleControlMode__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, VehicleControlMode)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_VehicleControlMode__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/GimbalManagerSetManualControl.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GIMBAL_MANAGER_SET_MANUAL_CONTROL__STRUCT_HPP_ #define PX4_MSGS__MSG__GIMBAL_MANAGER_SET_MANUAL_CONTROL__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__GimbalManagerSetManualControl __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__GimbalManagerSetManualControl __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct GimbalManagerSetManualControl_ { using Type = GimbalManagerSetManualControl_<ContainerAllocator>; explicit GimbalManagerSetManualControl_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->origin_sysid = 0; this->origin_compid = 0; this->target_system = 0; this->target_component = 0; this->flags = 0ul; this->gimbal_device_id = 0; this->pitch = 0.0f; this->yaw = 0.0f; this->pitch_rate = 0.0f; this->yaw_rate = 0.0f; } } explicit GimbalManagerSetManualControl_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->origin_sysid = 0; this->origin_compid = 0; this->target_system = 0; this->target_component = 0; this->flags = 0ul; this->gimbal_device_id = 0; this->pitch = 0.0f; this->yaw = 0.0f; this->pitch_rate = 0.0f; this->yaw_rate = 0.0f; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _origin_sysid_type = uint8_t; _origin_sysid_type origin_sysid; using _origin_compid_type = uint8_t; _origin_compid_type origin_compid; using _target_system_type = uint8_t; _target_system_type target_system; using _target_component_type = uint8_t; _target_component_type target_component; using _flags_type = uint32_t; _flags_type flags; using _gimbal_device_id_type = uint8_t; _gimbal_device_id_type gimbal_device_id; using _pitch_type = float; _pitch_type pitch; using _yaw_type = float; _yaw_type yaw; using _pitch_rate_type = float; _pitch_rate_type pitch_rate; using _yaw_rate_type = float; _yaw_rate_type yaw_rate; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__origin_sysid( const uint8_t & _arg) { this->origin_sysid = _arg; return *this; } Type & set__origin_compid( const uint8_t & _arg) { this->origin_compid = _arg; return *this; } Type & set__target_system( const uint8_t & _arg) { this->target_system = _arg; return *this; } Type & set__target_component( const uint8_t & _arg) { this->target_component = _arg; return *this; } Type & set__flags( const uint32_t & _arg) { this->flags = _arg; return *this; } Type & set__gimbal_device_id( const uint8_t & _arg) { this->gimbal_device_id = _arg; return *this; } Type & set__pitch( const float & _arg) { this->pitch = _arg; return *this; } Type & set__yaw( const float & _arg) { this->yaw = _arg; return *this; } Type & set__pitch_rate( const float & _arg) { this->pitch_rate = _arg; return *this; } Type & set__yaw_rate( const float & _arg) { this->yaw_rate = _arg; return *this; } // constant declarations static constexpr uint32_t GIMBAL_MANAGER_FLAGS_RETRACT = 1u; static constexpr uint32_t GIMBAL_MANAGER_FLAGS_NEUTRAL = 2u; static constexpr uint32_t GIMBAL_MANAGER_FLAGS_ROLL_LOCK = 4u; static constexpr uint32_t GIMBAL_MANAGER_FLAGS_PITCH_LOCK = 8u; static constexpr uint32_t GIMBAL_MANAGER_FLAGS_YAW_LOCK = 16u; // pointer types using RawPtr = px4_msgs::msg::GimbalManagerSetManualControl_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::GimbalManagerSetManualControl_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::GimbalManagerSetManualControl_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::GimbalManagerSetManualControl_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::GimbalManagerSetManualControl_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::GimbalManagerSetManualControl_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::GimbalManagerSetManualControl_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::GimbalManagerSetManualControl_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::GimbalManagerSetManualControl_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::GimbalManagerSetManualControl_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__GimbalManagerSetManualControl std::shared_ptr<px4_msgs::msg::GimbalManagerSetManualControl_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__GimbalManagerSetManualControl std::shared_ptr<px4_msgs::msg::GimbalManagerSetManualControl_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const GimbalManagerSetManualControl_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->origin_sysid != other.origin_sysid) { return false; } if (this->origin_compid != other.origin_compid) { return false; } if (this->target_system != other.target_system) { return false; } if (this->target_component != other.target_component) { return false; } if (this->flags != other.flags) { return false; } if (this->gimbal_device_id != other.gimbal_device_id) { return false; } if (this->pitch != other.pitch) { return false; } if (this->yaw != other.yaw) { return false; } if (this->pitch_rate != other.pitch_rate) { return false; } if (this->yaw_rate != other.yaw_rate) { return false; } return true; } bool operator!=(const GimbalManagerSetManualControl_ & other) const { return !this->operator==(other); } }; // struct GimbalManagerSetManualControl_ // alias to use template instance with default allocator using GimbalManagerSetManualControl = px4_msgs::msg::GimbalManagerSetManualControl_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint32_t GimbalManagerSetManualControl_<ContainerAllocator>::GIMBAL_MANAGER_FLAGS_RETRACT; template<typename ContainerAllocator> constexpr uint32_t GimbalManagerSetManualControl_<ContainerAllocator>::GIMBAL_MANAGER_FLAGS_NEUTRAL; template<typename ContainerAllocator> constexpr uint32_t GimbalManagerSetManualControl_<ContainerAllocator>::GIMBAL_MANAGER_FLAGS_ROLL_LOCK; template<typename ContainerAllocator> constexpr uint32_t GimbalManagerSetManualControl_<ContainerAllocator>::GIMBAL_MANAGER_FLAGS_PITCH_LOCK; template<typename ContainerAllocator> constexpr uint32_t GimbalManagerSetManualControl_<ContainerAllocator>::GIMBAL_MANAGER_FLAGS_YAW_LOCK; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__GIMBAL_MANAGER_SET_MANUAL_CONTROL__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/GimbalManagerSetManualControl.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/gimbal_manager_set_manual_control__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/gimbal_manager_set_manual_control__struct.h" #include "px4_msgs/msg/gimbal_manager_set_manual_control__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _GimbalManagerSetManualControl__ros_msg_type = px4_msgs__msg__GimbalManagerSetManualControl; static bool _GimbalManagerSetManualControl__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _GimbalManagerSetManualControl__ros_msg_type * ros_message = static_cast<const _GimbalManagerSetManualControl__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: origin_sysid { cdr << ros_message->origin_sysid; } // Field name: origin_compid { cdr << ros_message->origin_compid; } // Field name: target_system { cdr << ros_message->target_system; } // Field name: target_component { cdr << ros_message->target_component; } // Field name: flags { cdr << ros_message->flags; } // Field name: gimbal_device_id { cdr << ros_message->gimbal_device_id; } // Field name: pitch { cdr << ros_message->pitch; } // Field name: yaw { cdr << ros_message->yaw; } // Field name: pitch_rate { cdr << ros_message->pitch_rate; } // Field name: yaw_rate { cdr << ros_message->yaw_rate; } return true; } static bool _GimbalManagerSetManualControl__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _GimbalManagerSetManualControl__ros_msg_type * ros_message = static_cast<_GimbalManagerSetManualControl__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: origin_sysid { cdr >> ros_message->origin_sysid; } // Field name: origin_compid { cdr >> ros_message->origin_compid; } // Field name: target_system { cdr >> ros_message->target_system; } // Field name: target_component { cdr >> ros_message->target_component; } // Field name: flags { cdr >> ros_message->flags; } // Field name: gimbal_device_id { cdr >> ros_message->gimbal_device_id; } // Field name: pitch { cdr >> ros_message->pitch; } // Field name: yaw { cdr >> ros_message->yaw; } // Field name: pitch_rate { cdr >> ros_message->pitch_rate; } // Field name: yaw_rate { cdr >> ros_message->yaw_rate; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__GimbalManagerSetManualControl( const void * untyped_ros_message, size_t current_alignment) { const _GimbalManagerSetManualControl__ros_msg_type * ros_message = static_cast<const _GimbalManagerSetManualControl__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name origin_sysid { size_t item_size = sizeof(ros_message->origin_sysid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name origin_compid { size_t item_size = sizeof(ros_message->origin_compid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name target_system { size_t item_size = sizeof(ros_message->target_system); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name target_component { size_t item_size = sizeof(ros_message->target_component); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name flags { size_t item_size = sizeof(ros_message->flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gimbal_device_id { size_t item_size = sizeof(ros_message->gimbal_device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name pitch { size_t item_size = sizeof(ros_message->pitch); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name yaw { size_t item_size = sizeof(ros_message->yaw); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name pitch_rate { size_t item_size = sizeof(ros_message->pitch_rate); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name yaw_rate { size_t item_size = sizeof(ros_message->yaw_rate); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _GimbalManagerSetManualControl__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__GimbalManagerSetManualControl( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__GimbalManagerSetManualControl( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: origin_sysid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: origin_compid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: target_system { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: target_component { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gimbal_device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: pitch { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: yaw { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: pitch_rate { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: yaw_rate { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _GimbalManagerSetManualControl__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__GimbalManagerSetManualControl( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_GimbalManagerSetManualControl = { "px4_msgs::msg", "GimbalManagerSetManualControl", _GimbalManagerSetManualControl__cdr_serialize, _GimbalManagerSetManualControl__cdr_deserialize, _GimbalManagerSetManualControl__get_serialized_size, _GimbalManagerSetManualControl__max_serialized_size }; static rosidl_message_type_support_t _GimbalManagerSetManualControl__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_GimbalManagerSetManualControl, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, GimbalManagerSetManualControl)() { return &_GimbalManagerSetManualControl__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/gimbal_device_attitude_status__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/GimbalDeviceAttitudeStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/gimbal_device_attitude_status__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__GimbalDeviceAttitudeStatus__init(px4_msgs__msg__GimbalDeviceAttitudeStatus * msg) { if (!msg) { return false; } // timestamp // target_system // target_component // device_flags // q // angular_velocity_x // angular_velocity_y // angular_velocity_z // failure_flags return true; } void px4_msgs__msg__GimbalDeviceAttitudeStatus__fini(px4_msgs__msg__GimbalDeviceAttitudeStatus * msg) { if (!msg) { return; } // timestamp // target_system // target_component // device_flags // q // angular_velocity_x // angular_velocity_y // angular_velocity_z // failure_flags } px4_msgs__msg__GimbalDeviceAttitudeStatus * px4_msgs__msg__GimbalDeviceAttitudeStatus__create() { px4_msgs__msg__GimbalDeviceAttitudeStatus * msg = (px4_msgs__msg__GimbalDeviceAttitudeStatus *)malloc(sizeof(px4_msgs__msg__GimbalDeviceAttitudeStatus)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__GimbalDeviceAttitudeStatus)); bool success = px4_msgs__msg__GimbalDeviceAttitudeStatus__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__GimbalDeviceAttitudeStatus__destroy(px4_msgs__msg__GimbalDeviceAttitudeStatus * msg) { if (msg) { px4_msgs__msg__GimbalDeviceAttitudeStatus__fini(msg); } free(msg); } bool px4_msgs__msg__GimbalDeviceAttitudeStatus__Sequence__init(px4_msgs__msg__GimbalDeviceAttitudeStatus__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__GimbalDeviceAttitudeStatus * data = NULL; if (size) { data = (px4_msgs__msg__GimbalDeviceAttitudeStatus *)calloc(size, sizeof(px4_msgs__msg__GimbalDeviceAttitudeStatus)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__GimbalDeviceAttitudeStatus__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__GimbalDeviceAttitudeStatus__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__GimbalDeviceAttitudeStatus__Sequence__fini(px4_msgs__msg__GimbalDeviceAttitudeStatus__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__GimbalDeviceAttitudeStatus__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__GimbalDeviceAttitudeStatus__Sequence * px4_msgs__msg__GimbalDeviceAttitudeStatus__Sequence__create(size_t size) { px4_msgs__msg__GimbalDeviceAttitudeStatus__Sequence * array = (px4_msgs__msg__GimbalDeviceAttitudeStatus__Sequence *)malloc(sizeof(px4_msgs__msg__GimbalDeviceAttitudeStatus__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__GimbalDeviceAttitudeStatus__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__GimbalDeviceAttitudeStatus__Sequence__destroy(px4_msgs__msg__GimbalDeviceAttitudeStatus__Sequence * array) { if (array) { px4_msgs__msg__GimbalDeviceAttitudeStatus__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/px4_io_status.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/Px4IoStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__PX4_IO_STATUS_H_ #define PX4_MSGS__MSG__PX4_IO_STATUS_H_ #include "px4_msgs/msg/px4_io_status__struct.h" #include "px4_msgs/msg/px4_io_status__functions.h" #include "px4_msgs/msg/px4_io_status__type_support.h" #endif // PX4_MSGS__MSG__PX4_IO_STATUS_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_visual_odometry__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/VehicleVisualOdometry.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/vehicle_visual_odometry__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/vehicle_visual_odometry__functions.h" #include "px4_msgs/msg/vehicle_visual_odometry__struct.h" #ifdef __cplusplus extern "C" { #endif void VehicleVisualOdometry__rosidl_typesupport_introspection_c__VehicleVisualOdometry_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__VehicleVisualOdometry__init(message_memory); } void VehicleVisualOdometry__rosidl_typesupport_introspection_c__VehicleVisualOdometry_fini_function(void * message_memory) { px4_msgs__msg__VehicleVisualOdometry__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember VehicleVisualOdometry__rosidl_typesupport_introspection_c__VehicleVisualOdometry_message_member_array[17] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleVisualOdometry, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleVisualOdometry, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "local_frame", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleVisualOdometry, local_frame), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "x", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleVisualOdometry, x), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "y", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleVisualOdometry, y), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "z", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleVisualOdometry, z), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "q", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleVisualOdometry, q), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "q_offset", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleVisualOdometry, q_offset), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "pose_covariance", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 21, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleVisualOdometry, pose_covariance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "velocity_frame", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleVisualOdometry, velocity_frame), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vx", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleVisualOdometry, vx), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vy", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleVisualOdometry, vy), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vz", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleVisualOdometry, vz), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rollspeed", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleVisualOdometry, rollspeed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "pitchspeed", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleVisualOdometry, pitchspeed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yawspeed", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleVisualOdometry, yawspeed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "velocity_covariance", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 21, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleVisualOdometry, velocity_covariance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers VehicleVisualOdometry__rosidl_typesupport_introspection_c__VehicleVisualOdometry_message_members = { "px4_msgs__msg", // message namespace "VehicleVisualOdometry", // message name 17, // number of fields sizeof(px4_msgs__msg__VehicleVisualOdometry), VehicleVisualOdometry__rosidl_typesupport_introspection_c__VehicleVisualOdometry_message_member_array, // message members VehicleVisualOdometry__rosidl_typesupport_introspection_c__VehicleVisualOdometry_init_function, // function to initialize message memory (memory has to be allocated) VehicleVisualOdometry__rosidl_typesupport_introspection_c__VehicleVisualOdometry_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t VehicleVisualOdometry__rosidl_typesupport_introspection_c__VehicleVisualOdometry_message_type_support_handle = { 0, &VehicleVisualOdometry__rosidl_typesupport_introspection_c__VehicleVisualOdometry_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, VehicleVisualOdometry)() { if (!VehicleVisualOdometry__rosidl_typesupport_introspection_c__VehicleVisualOdometry_message_type_support_handle.typesupport_identifier) { VehicleVisualOdometry__rosidl_typesupport_introspection_c__VehicleVisualOdometry_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &VehicleVisualOdometry__rosidl_typesupport_introspection_c__VehicleVisualOdometry_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_groundtruth__rosidl_typesupport_fastrtps_c.h // generated from rosidl_typesupport_fastrtps_c/resource/idl__rosidl_typesupport_fastrtps_c.h.em // with input from px4_msgs:msg/VehicleAttitudeGroundtruth.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ATTITUDE_GROUNDTRUTH__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #define PX4_MSGS__MSG__VEHICLE_ATTITUDE_GROUNDTRUTH__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #include <stddef.h> #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__VehicleAttitudeGroundtruth( const void * untyped_ros_message, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__VehicleAttitudeGroundtruth( bool & full_bounded, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, VehicleAttitudeGroundtruth)(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_ATTITUDE_GROUNDTRUTH__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_report__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/EscReport.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/esc_report__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/esc_report__struct.h" #include "px4_msgs/msg/esc_report__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _EscReport__ros_msg_type = px4_msgs__msg__EscReport; static bool _EscReport__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _EscReport__ros_msg_type * ros_message = static_cast<const _EscReport__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: esc_errorcount { cdr << ros_message->esc_errorcount; } // Field name: esc_rpm { cdr << ros_message->esc_rpm; } // Field name: esc_voltage { cdr << ros_message->esc_voltage; } // Field name: esc_current { cdr << ros_message->esc_current; } // Field name: esc_temperature { cdr << ros_message->esc_temperature; } // Field name: esc_address { cdr << ros_message->esc_address; } // Field name: esc_state { cdr << ros_message->esc_state; } // Field name: failures { cdr << ros_message->failures; } return true; } static bool _EscReport__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _EscReport__ros_msg_type * ros_message = static_cast<_EscReport__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: esc_errorcount { cdr >> ros_message->esc_errorcount; } // Field name: esc_rpm { cdr >> ros_message->esc_rpm; } // Field name: esc_voltage { cdr >> ros_message->esc_voltage; } // Field name: esc_current { cdr >> ros_message->esc_current; } // Field name: esc_temperature { cdr >> ros_message->esc_temperature; } // Field name: esc_address { cdr >> ros_message->esc_address; } // Field name: esc_state { cdr >> ros_message->esc_state; } // Field name: failures { cdr >> ros_message->failures; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__EscReport( const void * untyped_ros_message, size_t current_alignment) { const _EscReport__ros_msg_type * ros_message = static_cast<const _EscReport__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name esc_errorcount { size_t item_size = sizeof(ros_message->esc_errorcount); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name esc_rpm { size_t item_size = sizeof(ros_message->esc_rpm); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name esc_voltage { size_t item_size = sizeof(ros_message->esc_voltage); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name esc_current { size_t item_size = sizeof(ros_message->esc_current); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name esc_temperature { size_t item_size = sizeof(ros_message->esc_temperature); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name esc_address { size_t item_size = sizeof(ros_message->esc_address); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name esc_state { size_t item_size = sizeof(ros_message->esc_state); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name failures { size_t item_size = sizeof(ros_message->failures); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _EscReport__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__EscReport( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__EscReport( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: esc_errorcount { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: esc_rpm { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: esc_voltage { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: esc_current { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: esc_temperature { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: esc_address { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: esc_state { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: failures { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _EscReport__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__EscReport( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_EscReport = { "px4_msgs::msg", "EscReport", _EscReport__cdr_serialize, _EscReport__cdr_deserialize, _EscReport__get_serialized_size, _EscReport__max_serialized_size }; static rosidl_message_type_support_t _EscReport__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_EscReport, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, EscReport)() { return &_EscReport__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/EstimatorStatus.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/estimator_status__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/estimator_status__functions.h" #include "px4_msgs/msg/estimator_status__struct.h" #ifdef __cplusplus extern "C" { #endif void EstimatorStatus__rosidl_typesupport_introspection_c__EstimatorStatus_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__EstimatorStatus__init(message_memory); } void EstimatorStatus__rosidl_typesupport_introspection_c__EstimatorStatus_fini_function(void * message_memory) { px4_msgs__msg__EstimatorStatus__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember EstimatorStatus__rosidl_typesupport_introspection_c__EstimatorStatus_message_member_array[35] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vibe", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, vibe), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "output_tracking_error", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, output_tracking_error), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gps_check_fail_flags", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, gps_check_fail_flags), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "control_mode_flags", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, control_mode_flags), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "filter_fault_flags", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, filter_fault_flags), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "pos_horiz_accuracy", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, pos_horiz_accuracy), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "pos_vert_accuracy", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, pos_vert_accuracy), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "innovation_check_flags", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, innovation_check_flags), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "mag_test_ratio", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, mag_test_ratio), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vel_test_ratio", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, vel_test_ratio), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "pos_test_ratio", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, pos_test_ratio), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "hgt_test_ratio", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, hgt_test_ratio), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "tas_test_ratio", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, tas_test_ratio), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "hagl_test_ratio", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, hagl_test_ratio), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "beta_test_ratio", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, beta_test_ratio), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "solution_status_flags", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, solution_status_flags), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "reset_count_vel_ne", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, reset_count_vel_ne), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "reset_count_vel_d", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, reset_count_vel_d), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "reset_count_pos_ne", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, reset_count_pos_ne), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "reset_count_pod_d", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, reset_count_pod_d), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "reset_count_quat", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, reset_count_quat), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "time_slip", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, time_slip), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "pre_flt_fail_innov_heading", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, pre_flt_fail_innov_heading), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "pre_flt_fail_innov_vel_horiz", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, pre_flt_fail_innov_vel_horiz), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "pre_flt_fail_innov_vel_vert", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, pre_flt_fail_innov_vel_vert), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "pre_flt_fail_innov_height", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, pre_flt_fail_innov_height), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "pre_flt_fail_mag_field_disturbed", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, pre_flt_fail_mag_field_disturbed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accel_device_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, accel_device_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gyro_device_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, gyro_device_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "baro_device_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, baro_device_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "mag_device_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, mag_device_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "health_flags", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, health_flags), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timeout_flags", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatus, timeout_flags), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers EstimatorStatus__rosidl_typesupport_introspection_c__EstimatorStatus_message_members = { "px4_msgs__msg", // message namespace "EstimatorStatus", // message name 35, // number of fields sizeof(px4_msgs__msg__EstimatorStatus), EstimatorStatus__rosidl_typesupport_introspection_c__EstimatorStatus_message_member_array, // message members EstimatorStatus__rosidl_typesupport_introspection_c__EstimatorStatus_init_function, // function to initialize message memory (memory has to be allocated) EstimatorStatus__rosidl_typesupport_introspection_c__EstimatorStatus_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t EstimatorStatus__rosidl_typesupport_introspection_c__EstimatorStatus_message_type_support_handle = { 0, &EstimatorStatus__rosidl_typesupport_introspection_c__EstimatorStatus_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, EstimatorStatus)() { if (!EstimatorStatus__rosidl_typesupport_introspection_c__EstimatorStatus_message_type_support_handle.typesupport_identifier) { EstimatorStatus__rosidl_typesupport_introspection_c__EstimatorStatus_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &EstimatorStatus__rosidl_typesupport_introspection_c__EstimatorStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleLocalPositionGroundtruth.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/vehicle_local_position_groundtruth__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void VehicleLocalPositionGroundtruth_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::VehicleLocalPositionGroundtruth(_init); } void VehicleLocalPositionGroundtruth_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::VehicleLocalPositionGroundtruth *>(message_memory); typed_message->~VehicleLocalPositionGroundtruth(); } size_t size_function__VehicleLocalPositionGroundtruth__delta_xy(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__VehicleLocalPositionGroundtruth__delta_xy(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__VehicleLocalPositionGroundtruth__delta_xy(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } size_t size_function__VehicleLocalPositionGroundtruth__delta_vxy(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__VehicleLocalPositionGroundtruth__delta_vxy(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__VehicleLocalPositionGroundtruth__delta_vxy(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember VehicleLocalPositionGroundtruth_message_member_array[44] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "xy_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, xy_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "z_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, z_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "v_xy_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, v_xy_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "v_z_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, v_z_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "x", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, x), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "y", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, y), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "z", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, z), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "delta_xy", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, delta_xy), // bytes offset in struct nullptr, // default value size_function__VehicleLocalPositionGroundtruth__delta_xy, // size() function pointer get_const_function__VehicleLocalPositionGroundtruth__delta_xy, // get_const(index) function pointer get_function__VehicleLocalPositionGroundtruth__delta_xy, // get(index) function pointer nullptr // resize(index) function pointer }, { "xy_reset_counter", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, xy_reset_counter), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "delta_z", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, delta_z), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "z_reset_counter", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, z_reset_counter), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vx", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, vx), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vy", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, vy), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vz", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, vz), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "z_deriv", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, z_deriv), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "delta_vxy", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, delta_vxy), // bytes offset in struct nullptr, // default value size_function__VehicleLocalPositionGroundtruth__delta_vxy, // size() function pointer get_const_function__VehicleLocalPositionGroundtruth__delta_vxy, // get_const(index) function pointer get_function__VehicleLocalPositionGroundtruth__delta_vxy, // get(index) function pointer nullptr // resize(index) function pointer }, { "vxy_reset_counter", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, vxy_reset_counter), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "delta_vz", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, delta_vz), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vz_reset_counter", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, vz_reset_counter), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ax", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, ax), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ay", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, ay), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "az", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, az), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "heading", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, heading), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "delta_heading", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, delta_heading), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "heading_reset_counter", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, heading_reset_counter), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "xy_global", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, xy_global), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "z_global", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, z_global), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ref_timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, ref_timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ref_lat", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_DOUBLE, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, ref_lat), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ref_lon", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_DOUBLE, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, ref_lon), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ref_alt", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, ref_alt), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "dist_bottom", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, dist_bottom), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "dist_bottom_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, dist_bottom_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "dist_bottom_sensor_bitfield", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, dist_bottom_sensor_bitfield), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "eph", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, eph), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "epv", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, epv), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "evh", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, evh), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "evv", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, evv), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vxy_max", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, vxy_max), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vz_max", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, vz_max), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "hagl_min", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, hagl_min), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "hagl_max", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleLocalPositionGroundtruth, hagl_max), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers VehicleLocalPositionGroundtruth_message_members = { "px4_msgs::msg", // message namespace "VehicleLocalPositionGroundtruth", // message name 44, // number of fields sizeof(px4_msgs::msg::VehicleLocalPositionGroundtruth), VehicleLocalPositionGroundtruth_message_member_array, // message members VehicleLocalPositionGroundtruth_init_function, // function to initialize message memory (memory has to be allocated) VehicleLocalPositionGroundtruth_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t VehicleLocalPositionGroundtruth_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &VehicleLocalPositionGroundtruth_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleLocalPositionGroundtruth>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleLocalPositionGroundtruth_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, VehicleLocalPositionGroundtruth)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleLocalPositionGroundtruth_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_power_monitor_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/PowerMonitor.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/power_monitor__struct.h" #include "px4_msgs/msg/power_monitor__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__power_monitor__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[41]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._power_monitor.PowerMonitor", full_classname_dest, 40) == 0); } px4_msgs__msg__PowerMonitor * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // voltage_v PyObject * field = PyObject_GetAttrString(_pymsg, "voltage_v"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->voltage_v = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // current_a PyObject * field = PyObject_GetAttrString(_pymsg, "current_a"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->current_a = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // power_w PyObject * field = PyObject_GetAttrString(_pymsg, "power_w"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->power_w = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // rconf PyObject * field = PyObject_GetAttrString(_pymsg, "rconf"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->rconf = (int16_t)PyLong_AsLong(field); Py_DECREF(field); } { // rsv PyObject * field = PyObject_GetAttrString(_pymsg, "rsv"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->rsv = (int16_t)PyLong_AsLong(field); Py_DECREF(field); } { // rbv PyObject * field = PyObject_GetAttrString(_pymsg, "rbv"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->rbv = (int16_t)PyLong_AsLong(field); Py_DECREF(field); } { // rp PyObject * field = PyObject_GetAttrString(_pymsg, "rp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->rp = (int16_t)PyLong_AsLong(field); Py_DECREF(field); } { // rc PyObject * field = PyObject_GetAttrString(_pymsg, "rc"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->rc = (int16_t)PyLong_AsLong(field); Py_DECREF(field); } { // rcal PyObject * field = PyObject_GetAttrString(_pymsg, "rcal"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->rcal = (int16_t)PyLong_AsLong(field); Py_DECREF(field); } { // me PyObject * field = PyObject_GetAttrString(_pymsg, "me"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->me = (int16_t)PyLong_AsLong(field); Py_DECREF(field); } { // al PyObject * field = PyObject_GetAttrString(_pymsg, "al"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->al = (int16_t)PyLong_AsLong(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__power_monitor__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of PowerMonitor */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._power_monitor"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "PowerMonitor"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__PowerMonitor * ros_message = (px4_msgs__msg__PowerMonitor *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // voltage_v PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->voltage_v); { int rc = PyObject_SetAttrString(_pymessage, "voltage_v", field); Py_DECREF(field); if (rc) { return NULL; } } } { // current_a PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->current_a); { int rc = PyObject_SetAttrString(_pymessage, "current_a", field); Py_DECREF(field); if (rc) { return NULL; } } } { // power_w PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->power_w); { int rc = PyObject_SetAttrString(_pymessage, "power_w", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rconf PyObject * field = NULL; field = PyLong_FromLong(ros_message->rconf); { int rc = PyObject_SetAttrString(_pymessage, "rconf", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rsv PyObject * field = NULL; field = PyLong_FromLong(ros_message->rsv); { int rc = PyObject_SetAttrString(_pymessage, "rsv", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rbv PyObject * field = NULL; field = PyLong_FromLong(ros_message->rbv); { int rc = PyObject_SetAttrString(_pymessage, "rbv", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rp PyObject * field = NULL; field = PyLong_FromLong(ros_message->rp); { int rc = PyObject_SetAttrString(_pymessage, "rp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rc PyObject * field = NULL; field = PyLong_FromLong(ros_message->rc); { int rc = PyObject_SetAttrString(_pymessage, "rc", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rcal PyObject * field = NULL; field = PyLong_FromLong(ros_message->rcal); { int rc = PyObject_SetAttrString(_pymessage, "rcal", field); Py_DECREF(field); if (rc) { return NULL; } } } { // me PyObject * field = NULL; field = PyLong_FromLong(ros_message->me); { int rc = PyObject_SetAttrString(_pymessage, "me", field); Py_DECREF(field); if (rc) { return NULL; } } } { // al PyObject * field = NULL; field = PyLong_FromLong(ros_message->al); { int rc = PyObject_SetAttrString(_pymessage, "al", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_command_ack__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleCommandAck.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_command_ack__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__VehicleCommandAck__init(px4_msgs__msg__VehicleCommandAck * msg) { if (!msg) { return false; } // timestamp // command // result // from_external // result_param1 // result_param2 // target_system // target_component return true; } void px4_msgs__msg__VehicleCommandAck__fini(px4_msgs__msg__VehicleCommandAck * msg) { if (!msg) { return; } // timestamp // command // result // from_external // result_param1 // result_param2 // target_system // target_component } px4_msgs__msg__VehicleCommandAck * px4_msgs__msg__VehicleCommandAck__create() { px4_msgs__msg__VehicleCommandAck * msg = (px4_msgs__msg__VehicleCommandAck *)malloc(sizeof(px4_msgs__msg__VehicleCommandAck)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleCommandAck)); bool success = px4_msgs__msg__VehicleCommandAck__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleCommandAck__destroy(px4_msgs__msg__VehicleCommandAck * msg) { if (msg) { px4_msgs__msg__VehicleCommandAck__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleCommandAck__Sequence__init(px4_msgs__msg__VehicleCommandAck__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleCommandAck * data = NULL; if (size) { data = (px4_msgs__msg__VehicleCommandAck *)calloc(size, sizeof(px4_msgs__msg__VehicleCommandAck)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleCommandAck__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleCommandAck__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleCommandAck__Sequence__fini(px4_msgs__msg__VehicleCommandAck__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleCommandAck__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleCommandAck__Sequence * px4_msgs__msg__VehicleCommandAck__Sequence__create(size_t size) { px4_msgs__msg__VehicleCommandAck__Sequence * array = (px4_msgs__msg__VehicleCommandAck__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleCommandAck__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleCommandAck__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleCommandAck__Sequence__destroy(px4_msgs__msg__VehicleCommandAck__Sequence * array) { if (array) { px4_msgs__msg__VehicleCommandAck__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/mavlink_log.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__MAVLINK_LOG_HPP_ #define PX4_MSGS__MSG__MAVLINK_LOG_HPP_ #include "px4_msgs/msg/mavlink_log__struct.hpp" #include "px4_msgs/msg/mavlink_log__traits.hpp" #endif // PX4_MSGS__MSG__MAVLINK_LOG_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/onboard_computer_status__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/OnboardComputerStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ONBOARD_COMPUTER_STATUS__FUNCTIONS_H_ #define PX4_MSGS__MSG__ONBOARD_COMPUTER_STATUS__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/onboard_computer_status__struct.h" /// Initialize msg/OnboardComputerStatus message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__OnboardComputerStatus * )) before or use * px4_msgs__msg__OnboardComputerStatus__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__OnboardComputerStatus__init(px4_msgs__msg__OnboardComputerStatus * msg); /// Finalize msg/OnboardComputerStatus message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__OnboardComputerStatus__fini(px4_msgs__msg__OnboardComputerStatus * msg); /// Create msg/OnboardComputerStatus message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__OnboardComputerStatus__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__OnboardComputerStatus * px4_msgs__msg__OnboardComputerStatus__create(); /// Destroy msg/OnboardComputerStatus message. /** * It calls * px4_msgs__msg__OnboardComputerStatus__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__OnboardComputerStatus__destroy(px4_msgs__msg__OnboardComputerStatus * msg); /// Initialize array of msg/OnboardComputerStatus messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__OnboardComputerStatus__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__OnboardComputerStatus__Sequence__init(px4_msgs__msg__OnboardComputerStatus__Sequence * array, size_t size); /// Finalize array of msg/OnboardComputerStatus messages. /** * It calls * px4_msgs__msg__OnboardComputerStatus__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__OnboardComputerStatus__Sequence__fini(px4_msgs__msg__OnboardComputerStatus__Sequence * array); /// Create array of msg/OnboardComputerStatus messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__OnboardComputerStatus__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__OnboardComputerStatus__Sequence * px4_msgs__msg__OnboardComputerStatus__Sequence__create(size_t size); /// Destroy array of msg/OnboardComputerStatus messages. /** * It calls * px4_msgs__msg__OnboardComputerStatus__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__OnboardComputerStatus__Sequence__destroy(px4_msgs__msg__OnboardComputerStatus__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ONBOARD_COMPUTER_STATUS__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/transponder_report.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/TransponderReport.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TRANSPONDER_REPORT_H_ #define PX4_MSGS__MSG__TRANSPONDER_REPORT_H_ #include "px4_msgs/msg/transponder_report__struct.h" #include "px4_msgs/msg/transponder_report__functions.h" #include "px4_msgs/msg/transponder_report__type_support.h" #endif // PX4_MSGS__MSG__TRANSPONDER_REPORT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/qshell_retval.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__QSHELL_RETVAL_HPP_ #define PX4_MSGS__MSG__QSHELL_RETVAL_HPP_ #include "px4_msgs/msg/qshell_retval__struct.hpp" #include "px4_msgs/msg/qshell_retval__traits.hpp" #endif // PX4_MSGS__MSG__QSHELL_RETVAL_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_armed__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/ActuatorArmed.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_ARMED__STRUCT_H_ #define PX4_MSGS__MSG__ACTUATOR_ARMED__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/ActuatorArmed in the package px4_msgs. typedef struct px4_msgs__msg__ActuatorArmed { uint64_t timestamp; bool armed; bool prearmed; bool ready_to_arm; bool lockdown; bool manual_lockdown; bool force_failsafe; bool in_esc_calibration_mode; bool soft_stop; } px4_msgs__msg__ActuatorArmed; // Struct for a sequence of px4_msgs__msg__ActuatorArmed. typedef struct px4_msgs__msg__ActuatorArmed__Sequence { px4_msgs__msg__ActuatorArmed * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__ActuatorArmed__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ACTUATOR_ARMED__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/orb_test.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORB_TEST_HPP_ #define PX4_MSGS__MSG__ORB_TEST_HPP_ #include "px4_msgs/msg/orb_test__struct.hpp" #include "px4_msgs/msg/orb_test__traits.hpp" #endif // PX4_MSGS__MSG__ORB_TEST_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/heater_status__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/HeaterStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/heater_status__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__HeaterStatus__init(px4_msgs__msg__HeaterStatus * msg) { if (!msg) { return false; } // timestamp // device_id // heater_on // temperature_target_met // temperature_sensor // temperature_target // controller_period_usec // controller_time_on_usec // proportional_value // integrator_value // feed_forward_value // mode return true; } void px4_msgs__msg__HeaterStatus__fini(px4_msgs__msg__HeaterStatus * msg) { if (!msg) { return; } // timestamp // device_id // heater_on // temperature_target_met // temperature_sensor // temperature_target // controller_period_usec // controller_time_on_usec // proportional_value // integrator_value // feed_forward_value // mode } px4_msgs__msg__HeaterStatus * px4_msgs__msg__HeaterStatus__create() { px4_msgs__msg__HeaterStatus * msg = (px4_msgs__msg__HeaterStatus *)malloc(sizeof(px4_msgs__msg__HeaterStatus)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__HeaterStatus)); bool success = px4_msgs__msg__HeaterStatus__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__HeaterStatus__destroy(px4_msgs__msg__HeaterStatus * msg) { if (msg) { px4_msgs__msg__HeaterStatus__fini(msg); } free(msg); } bool px4_msgs__msg__HeaterStatus__Sequence__init(px4_msgs__msg__HeaterStatus__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__HeaterStatus * data = NULL; if (size) { data = (px4_msgs__msg__HeaterStatus *)calloc(size, sizeof(px4_msgs__msg__HeaterStatus)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__HeaterStatus__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__HeaterStatus__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__HeaterStatus__Sequence__fini(px4_msgs__msg__HeaterStatus__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__HeaterStatus__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__HeaterStatus__Sequence * px4_msgs__msg__HeaterStatus__Sequence__create(size_t size) { px4_msgs__msg__HeaterStatus__Sequence * array = (px4_msgs__msg__HeaterStatus__Sequence *)malloc(sizeof(px4_msgs__msg__HeaterStatus__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__HeaterStatus__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__HeaterStatus__Sequence__destroy(px4_msgs__msg__HeaterStatus__Sequence * array) { if (array) { px4_msgs__msg__HeaterStatus__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/logger_status__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/LoggerStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/logger_status__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/logger_status__struct.h" #include "px4_msgs/msg/logger_status__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _LoggerStatus__ros_msg_type = px4_msgs__msg__LoggerStatus; static bool _LoggerStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _LoggerStatus__ros_msg_type * ros_message = static_cast<const _LoggerStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: type { cdr << ros_message->type; } // Field name: backend { cdr << ros_message->backend; } // Field name: total_written_kb { cdr << ros_message->total_written_kb; } // Field name: write_rate_kb_s { cdr << ros_message->write_rate_kb_s; } // Field name: dropouts { cdr << ros_message->dropouts; } // Field name: message_gaps { cdr << ros_message->message_gaps; } // Field name: buffer_used_bytes { cdr << ros_message->buffer_used_bytes; } // Field name: buffer_size_bytes { cdr << ros_message->buffer_size_bytes; } // Field name: num_messages { cdr << ros_message->num_messages; } return true; } static bool _LoggerStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _LoggerStatus__ros_msg_type * ros_message = static_cast<_LoggerStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: type { cdr >> ros_message->type; } // Field name: backend { cdr >> ros_message->backend; } // Field name: total_written_kb { cdr >> ros_message->total_written_kb; } // Field name: write_rate_kb_s { cdr >> ros_message->write_rate_kb_s; } // Field name: dropouts { cdr >> ros_message->dropouts; } // Field name: message_gaps { cdr >> ros_message->message_gaps; } // Field name: buffer_used_bytes { cdr >> ros_message->buffer_used_bytes; } // Field name: buffer_size_bytes { cdr >> ros_message->buffer_size_bytes; } // Field name: num_messages { cdr >> ros_message->num_messages; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__LoggerStatus( const void * untyped_ros_message, size_t current_alignment) { const _LoggerStatus__ros_msg_type * ros_message = static_cast<const _LoggerStatus__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name type { size_t item_size = sizeof(ros_message->type); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name backend { size_t item_size = sizeof(ros_message->backend); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name total_written_kb { size_t item_size = sizeof(ros_message->total_written_kb); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name write_rate_kb_s { size_t item_size = sizeof(ros_message->write_rate_kb_s); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name dropouts { size_t item_size = sizeof(ros_message->dropouts); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name message_gaps { size_t item_size = sizeof(ros_message->message_gaps); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name buffer_used_bytes { size_t item_size = sizeof(ros_message->buffer_used_bytes); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name buffer_size_bytes { size_t item_size = sizeof(ros_message->buffer_size_bytes); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name num_messages { size_t item_size = sizeof(ros_message->num_messages); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _LoggerStatus__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__LoggerStatus( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__LoggerStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: type { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: backend { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: total_written_kb { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: write_rate_kb_s { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: dropouts { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: message_gaps { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: buffer_used_bytes { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: buffer_size_bytes { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: num_messages { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _LoggerStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__LoggerStatus( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_LoggerStatus = { "px4_msgs::msg", "LoggerStatus", _LoggerStatus__cdr_serialize, _LoggerStatus__cdr_deserialize, _LoggerStatus__get_serialized_size, _LoggerStatus__max_serialized_size }; static rosidl_message_type_support_t _LoggerStatus__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_LoggerStatus, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, LoggerStatus)() { return &_LoggerStatus__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/multi_rtd/build/lib/multi_rtd/planner_utils.py # Utilities for planner nodes import rclpy import numpy as np from builtin_interfaces.msg import Duration from trajectory_msgs.msg import JointTrajectory, JointTrajectoryPoint from multi_rtd_interfaces.msg import RobotTrajectory def round_to(value, interval): """Round value to nearest multiple of interval. Parameters ---------- value : float interval : float Returns ------- float Rounded value. """ return round(float(value) / interval) * interval def check_plan_collision(plan_1, plan_2, r_collision): """Check 2 plans against each other to see if they collide. Parameters ---------- plan_1 : np.array plan_2 : np.array r_collision : float Returns ------- bool True if the plan is safe, False is there is a collision """ time_1 = plan_1[0,:]; traj_1 = plan_1[1:4,:] time_2 = plan_2[0,:] traj_2 = match_trajectories(time_1, time_2, plan_2[1:4,:]) d_vec = np.linalg.norm(traj_1 - traj_2, 2, 0) if any(d_vec <= r_collision): return False else: return True def wrap_traj_msg(traj, t2start): """Wraps a 3-D trajectory in a JointTrajectory message. Parameters ---------- traj : np.array t2start : float Time to start in seconds Returns ------- JointTrajectory Wrapped message. """ p,v,a = traj traj_msg = JointTrajectory() t2start_sec = int(t2start) t2start_nanosec = int(1e9 * (t2start - t2start_sec)) jtp_x = JointTrajectoryPoint() jtp_x.positions = list(p[0]) jtp_x.velocities = list(v[0]) jtp_x.accelerations = list(a[0]) jtp_x.time_from_start = Duration() jtp_x.time_from_start.sec = t2start_sec jtp_x.time_from_start.nanosec = t2start_nanosec jtp_y = JointTrajectoryPoint() jtp_y.positions = list(p[1]) jtp_y.velocities = list(v[1]) jtp_y.accelerations = list(a[1]) jtp_y.time_from_start = Duration() jtp_y.time_from_start.sec = t2start_sec jtp_y.time_from_start.nanosec = t2start_nanosec jtp_z = JointTrajectoryPoint() jtp_z.positions = list(p[2]) jtp_z.velocities = list(v[2]) jtp_z.accelerations = list(a[2]) jtp_z.time_from_start = Duration() jtp_z.time_from_start.sec = t2start_sec jtp_z.time_from_start.nanosec = t2start_nanosec traj_msg.points = [jtp_x, jtp_y, jtp_z] traj_msg.joint_names = ['x','y','z'] return traj_msg def wrap_robot_traj_msg(traj, t2start, name): """Wraps a 3-D trajectory in a RobotTrajectory message. Parameters ---------- traj : np.array t2start : float name : string Returns ------- RobotTrajectory Wrapped message. """ traj_msg = wrap_traj_msg(traj, t2start) robot_traj_msg = RobotTrajectory() robot_traj_msg.robot_name = name robot_traj_msg.trajectory = traj_msg return robot_traj_msg def rand_in_bounds(bounds, n): """Generate random sample within specified bounds Parameters ---------- bounds : list List of min and max values for each dimension. n : int Number of points to generate. """ x_pts = np.random.uniform(bounds[0], bounds[1], n) y_pts = np.random.uniform(bounds[2], bounds[3], n) # 2D if len(bounds) == 4: return np.vstack((x_pts, y_pts)) # 3D elif len(bounds) == 6: z_pts = np.random.uniform(bounds[4], bounds[5], n) return np.vstack((x_pts, y_pts, z_pts)) else: raise ValueError('Please pass in bounds as either [xmin xmax ymin ymax] ' 'or [xmin xmax ymin ymax zmin zmax] ') def match_trajectories(T_out, T_in, X_in): """Resample a trajectory according to new time vector. Given an input trajectory and associated time vector, resample according to a desired time and return the resulting trajectory assumes input and output times are sampled at same interval. Parameters ---------- T_out : np.array Desired times (1 x n_t_out). T_in : np.array Input times (1 x n_t_in, associated with X_in). X_in : np.array Input trajectory (n_states x n_t_in). Returns ------- np.array Resampled trajectory (n_states x n_t_in). """ # initialize output n_states = X_in.shape[0] n_t_out = len(T_out) X_out = np.zeros((n_states, n_t_out)) for i in range(n_t_out): X_out[:,i] = trajectory_closest_point(T_out[i], T_in, X_in) return X_out def trajectory_closest_point(time, T, X): """Return the point the trajectory closest in time to the provided time. Parameters ---------- time : float Requested time. T : np.array Trajectory time vector. X : np.array Trajectory state vector. Returns ------- np.array Closest point (state). """ idx = np.abs(time - T).argmin() return X[:,idx]<file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gps__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/SensorGps.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/sensor_gps__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/sensor_gps__functions.h" #include "px4_msgs/msg/sensor_gps__struct.h" #ifdef __cplusplus extern "C" { #endif void SensorGps__rosidl_typesupport_introspection_c__SensorGps_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__SensorGps__init(message_memory); } void SensorGps__rosidl_typesupport_introspection_c__SensorGps_fini_function(void * message_memory) { px4_msgs__msg__SensorGps__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember SensorGps__rosidl_typesupport_introspection_c__SensorGps_message_member_array[28] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGps, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "device_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGps, device_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "lat", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGps, lat), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "lon", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGps, lon), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "alt", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGps, alt), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "alt_ellipsoid", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGps, alt_ellipsoid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "s_variance_m_s", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGps, s_variance_m_s), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "c_variance_rad", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGps, c_variance_rad), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "fix_type", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGps, fix_type), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "eph", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGps, eph), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "epv", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGps, epv), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "hdop", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGps, hdop), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vdop", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGps, vdop), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "noise_per_ms", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGps, noise_per_ms), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "automatic_gain_control", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGps, automatic_gain_control), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "jamming_indicator", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGps, jamming_indicator), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "jamming_state", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGps, jamming_state), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vel_m_s", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGps, vel_m_s), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vel_n_m_s", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGps, vel_n_m_s), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vel_e_m_s", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGps, vel_e_m_s), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vel_d_m_s", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGps, vel_d_m_s), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cog_rad", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGps, cog_rad), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vel_ned_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGps, vel_ned_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_time_relative", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGps, timestamp_time_relative), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "time_utc_usec", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGps, time_utc_usec), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "satellites_used", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGps, satellites_used), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "heading", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGps, heading), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "heading_offset", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGps, heading_offset), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers SensorGps__rosidl_typesupport_introspection_c__SensorGps_message_members = { "px4_msgs__msg", // message namespace "SensorGps", // message name 28, // number of fields sizeof(px4_msgs__msg__SensorGps), SensorGps__rosidl_typesupport_introspection_c__SensorGps_message_member_array, // message members SensorGps__rosidl_typesupport_introspection_c__SensorGps_init_function, // function to initialize message memory (memory has to be allocated) SensorGps__rosidl_typesupport_introspection_c__SensorGps_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t SensorGps__rosidl_typesupport_introspection_c__SensorGps_message_type_support_handle = { 0, &SensorGps__rosidl_typesupport_introspection_c__SensorGps_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, SensorGps)() { if (!SensorGps__rosidl_typesupport_introspection_c__SensorGps_message_type_support_handle.typesupport_identifier) { SensorGps__rosidl_typesupport_introspection_c__SensorGps_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &SensorGps__rosidl_typesupport_introspection_c__SensorGps_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_array__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/DebugArray.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/debug_array__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/debug_array__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::DebugArray & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: id cdr << ros_message.id; // Member: name { cdr << ros_message.name; } // Member: data { cdr << ros_message.data; } return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::DebugArray & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: id cdr >> ros_message.id; // Member: name { cdr >> ros_message.name; } // Member: data { cdr >> ros_message.data; } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::DebugArray & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: id { size_t item_size = sizeof(ros_message.id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: name { size_t array_size = 10; size_t item_size = sizeof(ros_message.name[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: data { size_t array_size = 58; size_t item_size = sizeof(ros_message.data[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_DebugArray( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: id { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: name { size_t array_size = 10; current_alignment += array_size * sizeof(uint8_t); } // Member: data { size_t array_size = 58; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static bool _DebugArray__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::DebugArray *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _DebugArray__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::DebugArray *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _DebugArray__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::DebugArray *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _DebugArray__max_serialized_size(bool & full_bounded) { return max_serialized_size_DebugArray(full_bounded, 0); } static message_type_support_callbacks_t _DebugArray__callbacks = { "px4_msgs::msg", "DebugArray", _DebugArray__cdr_serialize, _DebugArray__cdr_deserialize, _DebugArray__get_serialized_size, _DebugArray__max_serialized_size }; static rosidl_message_type_support_t _DebugArray__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_DebugArray__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::DebugArray>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_DebugArray__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, DebugArray)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_DebugArray__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_global_position__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleGlobalPosition.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_global_position__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__VehicleGlobalPosition__init(px4_msgs__msg__VehicleGlobalPosition * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // lat // lon // alt // alt_ellipsoid // delta_alt // lat_lon_reset_counter // alt_reset_counter // eph // epv // terrain_alt // terrain_alt_valid // dead_reckoning return true; } void px4_msgs__msg__VehicleGlobalPosition__fini(px4_msgs__msg__VehicleGlobalPosition * msg) { if (!msg) { return; } // timestamp // timestamp_sample // lat // lon // alt // alt_ellipsoid // delta_alt // lat_lon_reset_counter // alt_reset_counter // eph // epv // terrain_alt // terrain_alt_valid // dead_reckoning } px4_msgs__msg__VehicleGlobalPosition * px4_msgs__msg__VehicleGlobalPosition__create() { px4_msgs__msg__VehicleGlobalPosition * msg = (px4_msgs__msg__VehicleGlobalPosition *)malloc(sizeof(px4_msgs__msg__VehicleGlobalPosition)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleGlobalPosition)); bool success = px4_msgs__msg__VehicleGlobalPosition__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleGlobalPosition__destroy(px4_msgs__msg__VehicleGlobalPosition * msg) { if (msg) { px4_msgs__msg__VehicleGlobalPosition__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleGlobalPosition__Sequence__init(px4_msgs__msg__VehicleGlobalPosition__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleGlobalPosition * data = NULL; if (size) { data = (px4_msgs__msg__VehicleGlobalPosition *)calloc(size, sizeof(px4_msgs__msg__VehicleGlobalPosition)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleGlobalPosition__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleGlobalPosition__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleGlobalPosition__Sequence__fini(px4_msgs__msg__VehicleGlobalPosition__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleGlobalPosition__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleGlobalPosition__Sequence * px4_msgs__msg__VehicleGlobalPosition__Sequence__create(size_t size) { px4_msgs__msg__VehicleGlobalPosition__Sequence * array = (px4_msgs__msg__VehicleGlobalPosition__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleGlobalPosition__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleGlobalPosition__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleGlobalPosition__Sequence__destroy(px4_msgs__msg__VehicleGlobalPosition__Sequence * array) { if (array) { px4_msgs__msg__VehicleGlobalPosition__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_status__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/EscStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/esc_status__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/esc_status__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool cdr_serialize( const px4_msgs::msg::EscReport &, eprosima::fastcdr::Cdr &); bool cdr_deserialize( eprosima::fastcdr::Cdr &, px4_msgs::msg::EscReport &); size_t get_serialized_size( const px4_msgs::msg::EscReport &, size_t current_alignment); size_t max_serialized_size_EscReport( bool & full_bounded, size_t current_alignment); } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::EscStatus & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: counter cdr << ros_message.counter; // Member: esc_count cdr << ros_message.esc_count; // Member: esc_connectiontype cdr << ros_message.esc_connectiontype; // Member: esc_online_flags cdr << ros_message.esc_online_flags; // Member: esc_armed_flags cdr << ros_message.esc_armed_flags; // Member: esc { for (size_t i = 0; i < 8; i++) { px4_msgs::msg::typesupport_fastrtps_cpp::cdr_serialize( ros_message.esc[i], cdr); } } return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::EscStatus & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: counter cdr >> ros_message.counter; // Member: esc_count cdr >> ros_message.esc_count; // Member: esc_connectiontype cdr >> ros_message.esc_connectiontype; // Member: esc_online_flags cdr >> ros_message.esc_online_flags; // Member: esc_armed_flags cdr >> ros_message.esc_armed_flags; // Member: esc { for (size_t i = 0; i < 8; i++) { px4_msgs::msg::typesupport_fastrtps_cpp::cdr_deserialize( cdr, ros_message.esc[i]); } } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::EscStatus & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: counter { size_t item_size = sizeof(ros_message.counter); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: esc_count { size_t item_size = sizeof(ros_message.esc_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: esc_connectiontype { size_t item_size = sizeof(ros_message.esc_connectiontype); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: esc_online_flags { size_t item_size = sizeof(ros_message.esc_online_flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: esc_armed_flags { size_t item_size = sizeof(ros_message.esc_armed_flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: esc { size_t array_size = 8; for (size_t index = 0; index < array_size; ++index) { current_alignment += px4_msgs::msg::typesupport_fastrtps_cpp::get_serialized_size( ros_message.esc[index], current_alignment); } } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_EscStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: counter { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: esc_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: esc_connectiontype { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: esc_online_flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: esc_armed_flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: esc { size_t array_size = 8; for (size_t index = 0; index < array_size; ++index) { current_alignment += px4_msgs::msg::typesupport_fastrtps_cpp::max_serialized_size_EscReport( full_bounded, current_alignment); } } return current_alignment - initial_alignment; } static bool _EscStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::EscStatus *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _EscStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::EscStatus *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _EscStatus__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::EscStatus *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _EscStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_EscStatus(full_bounded, 0); } static message_type_support_callbacks_t _EscStatus__callbacks = { "px4_msgs::msg", "EscStatus", _EscStatus__cdr_serialize, _EscStatus__cdr_deserialize, _EscStatus__get_serialized_size, _EscStatus__max_serialized_size }; static rosidl_message_type_support_t _EscStatus__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_EscStatus__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::EscStatus>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_EscStatus__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, EscStatus)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_EscStatus__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/transponder_report__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/TransponderReport.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TRANSPONDER_REPORT__STRUCT_HPP_ #define PX4_MSGS__MSG__TRANSPONDER_REPORT__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__TransponderReport __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__TransponderReport __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct TransponderReport_ { using Type = TransponderReport_<ContainerAllocator>; explicit TransponderReport_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->icao_address = 0ul; this->lat = 0.0; this->lon = 0.0; this->altitude_type = 0; this->altitude = 0.0f; this->heading = 0.0f; this->hor_velocity = 0.0f; this->ver_velocity = 0.0f; std::fill<typename std::array<uint8_t, 9>::iterator, uint8_t>(this->callsign.begin(), this->callsign.end(), 0); this->emitter_type = 0; this->tslc = 0; this->flags = 0; this->squawk = 0; std::fill<typename std::array<uint8_t, 18>::iterator, uint8_t>(this->uas_id.begin(), this->uas_id.end(), 0); } } explicit TransponderReport_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : callsign(_alloc), uas_id(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->icao_address = 0ul; this->lat = 0.0; this->lon = 0.0; this->altitude_type = 0; this->altitude = 0.0f; this->heading = 0.0f; this->hor_velocity = 0.0f; this->ver_velocity = 0.0f; std::fill<typename std::array<uint8_t, 9>::iterator, uint8_t>(this->callsign.begin(), this->callsign.end(), 0); this->emitter_type = 0; this->tslc = 0; this->flags = 0; this->squawk = 0; std::fill<typename std::array<uint8_t, 18>::iterator, uint8_t>(this->uas_id.begin(), this->uas_id.end(), 0); } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _icao_address_type = uint32_t; _icao_address_type icao_address; using _lat_type = double; _lat_type lat; using _lon_type = double; _lon_type lon; using _altitude_type_type = uint8_t; _altitude_type_type altitude_type; using _altitude_type = float; _altitude_type altitude; using _heading_type = float; _heading_type heading; using _hor_velocity_type = float; _hor_velocity_type hor_velocity; using _ver_velocity_type = float; _ver_velocity_type ver_velocity; using _callsign_type = std::array<uint8_t, 9>; _callsign_type callsign; using _emitter_type_type = uint8_t; _emitter_type_type emitter_type; using _tslc_type = uint8_t; _tslc_type tslc; using _flags_type = uint16_t; _flags_type flags; using _squawk_type = uint16_t; _squawk_type squawk; using _uas_id_type = std::array<uint8_t, 18>; _uas_id_type uas_id; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__icao_address( const uint32_t & _arg) { this->icao_address = _arg; return *this; } Type & set__lat( const double & _arg) { this->lat = _arg; return *this; } Type & set__lon( const double & _arg) { this->lon = _arg; return *this; } Type & set__altitude_type( const uint8_t & _arg) { this->altitude_type = _arg; return *this; } Type & set__altitude( const float & _arg) { this->altitude = _arg; return *this; } Type & set__heading( const float & _arg) { this->heading = _arg; return *this; } Type & set__hor_velocity( const float & _arg) { this->hor_velocity = _arg; return *this; } Type & set__ver_velocity( const float & _arg) { this->ver_velocity = _arg; return *this; } Type & set__callsign( const std::array<uint8_t, 9> & _arg) { this->callsign = _arg; return *this; } Type & set__emitter_type( const uint8_t & _arg) { this->emitter_type = _arg; return *this; } Type & set__tslc( const uint8_t & _arg) { this->tslc = _arg; return *this; } Type & set__flags( const uint16_t & _arg) { this->flags = _arg; return *this; } Type & set__squawk( const uint16_t & _arg) { this->squawk = _arg; return *this; } Type & set__uas_id( const std::array<uint8_t, 18> & _arg) { this->uas_id = _arg; return *this; } // constant declarations static constexpr uint16_t PX4_ADSB_FLAGS_VALID_COORDS = 1u; static constexpr uint16_t PX4_ADSB_FLAGS_VALID_ALTITUDE = 2u; static constexpr uint16_t PX4_ADSB_FLAGS_VALID_HEADING = 4u; static constexpr uint16_t PX4_ADSB_FLAGS_VALID_VELOCITY = 8u; static constexpr uint16_t PX4_ADSB_FLAGS_VALID_CALLSIGN = 16u; static constexpr uint16_t PX4_ADSB_FLAGS_VALID_SQUAWK = 32u; static constexpr uint16_t PX4_ADSB_FLAGS_RETRANSLATE = 256u; static constexpr uint16_t ADSB_EMITTER_TYPE_NO_INFO = 0u; static constexpr uint16_t ADSB_EMITTER_TYPE_LIGHT = 1u; static constexpr uint16_t ADSB_EMITTER_TYPE_SMALL = 2u; static constexpr uint16_t ADSB_EMITTER_TYPE_LARGE = 3u; static constexpr uint16_t ADSB_EMITTER_TYPE_HIGH_VORTEX_LARGE = 4u; static constexpr uint16_t ADSB_EMITTER_TYPE_HEAVY = 5u; static constexpr uint16_t ADSB_EMITTER_TYPE_HIGHLY_MANUV = 6u; static constexpr uint16_t ADSB_EMITTER_TYPE_ROTOCRAFT = 7u; static constexpr uint16_t ADSB_EMITTER_TYPE_UNASSIGNED = 8u; static constexpr uint16_t ADSB_EMITTER_TYPE_GLIDER = 9u; static constexpr uint16_t ADSB_EMITTER_TYPE_LIGHTER_AIR = 10u; static constexpr uint16_t ADSB_EMITTER_TYPE_PARACHUTE = 11u; static constexpr uint16_t ADSB_EMITTER_TYPE_ULTRA_LIGHT = 12u; static constexpr uint16_t ADSB_EMITTER_TYPE_UNASSIGNED2 = 13u; static constexpr uint16_t ADSB_EMITTER_TYPE_UAV = 14u; static constexpr uint16_t ADSB_EMITTER_TYPE_SPACE = 15u; static constexpr uint16_t ADSB_EMITTER_TYPE_UNASSGINED3 = 16u; static constexpr uint16_t ADSB_EMITTER_TYPE_EMERGENCY_SURFACE = 17u; static constexpr uint16_t ADSB_EMITTER_TYPE_SERVICE_SURFACE = 18u; static constexpr uint16_t ADSB_EMITTER_TYPE_POINT_OBSTACLE = 19u; static constexpr uint16_t ADSB_EMITTER_TYPE_ENUM_END = 20u; static constexpr uint8_t ORB_QUEUE_LENGTH = 8u; // pointer types using RawPtr = px4_msgs::msg::TransponderReport_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::TransponderReport_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::TransponderReport_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::TransponderReport_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::TransponderReport_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::TransponderReport_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::TransponderReport_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::TransponderReport_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::TransponderReport_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::TransponderReport_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__TransponderReport std::shared_ptr<px4_msgs::msg::TransponderReport_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__TransponderReport std::shared_ptr<px4_msgs::msg::TransponderReport_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const TransponderReport_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->icao_address != other.icao_address) { return false; } if (this->lat != other.lat) { return false; } if (this->lon != other.lon) { return false; } if (this->altitude_type != other.altitude_type) { return false; } if (this->altitude != other.altitude) { return false; } if (this->heading != other.heading) { return false; } if (this->hor_velocity != other.hor_velocity) { return false; } if (this->ver_velocity != other.ver_velocity) { return false; } if (this->callsign != other.callsign) { return false; } if (this->emitter_type != other.emitter_type) { return false; } if (this->tslc != other.tslc) { return false; } if (this->flags != other.flags) { return false; } if (this->squawk != other.squawk) { return false; } if (this->uas_id != other.uas_id) { return false; } return true; } bool operator!=(const TransponderReport_ & other) const { return !this->operator==(other); } }; // struct TransponderReport_ // alias to use template instance with default allocator using TransponderReport = px4_msgs::msg::TransponderReport_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint16_t TransponderReport_<ContainerAllocator>::PX4_ADSB_FLAGS_VALID_COORDS; template<typename ContainerAllocator> constexpr uint16_t TransponderReport_<ContainerAllocator>::PX4_ADSB_FLAGS_VALID_ALTITUDE; template<typename ContainerAllocator> constexpr uint16_t TransponderReport_<ContainerAllocator>::PX4_ADSB_FLAGS_VALID_HEADING; template<typename ContainerAllocator> constexpr uint16_t TransponderReport_<ContainerAllocator>::PX4_ADSB_FLAGS_VALID_VELOCITY; template<typename ContainerAllocator> constexpr uint16_t TransponderReport_<ContainerAllocator>::PX4_ADSB_FLAGS_VALID_CALLSIGN; template<typename ContainerAllocator> constexpr uint16_t TransponderReport_<ContainerAllocator>::PX4_ADSB_FLAGS_VALID_SQUAWK; template<typename ContainerAllocator> constexpr uint16_t TransponderReport_<ContainerAllocator>::PX4_ADSB_FLAGS_RETRANSLATE; template<typename ContainerAllocator> constexpr uint16_t TransponderReport_<ContainerAllocator>::ADSB_EMITTER_TYPE_NO_INFO; template<typename ContainerAllocator> constexpr uint16_t TransponderReport_<ContainerAllocator>::ADSB_EMITTER_TYPE_LIGHT; template<typename ContainerAllocator> constexpr uint16_t TransponderReport_<ContainerAllocator>::ADSB_EMITTER_TYPE_SMALL; template<typename ContainerAllocator> constexpr uint16_t TransponderReport_<ContainerAllocator>::ADSB_EMITTER_TYPE_LARGE; template<typename ContainerAllocator> constexpr uint16_t TransponderReport_<ContainerAllocator>::ADSB_EMITTER_TYPE_HIGH_VORTEX_LARGE; template<typename ContainerAllocator> constexpr uint16_t TransponderReport_<ContainerAllocator>::ADSB_EMITTER_TYPE_HEAVY; template<typename ContainerAllocator> constexpr uint16_t TransponderReport_<ContainerAllocator>::ADSB_EMITTER_TYPE_HIGHLY_MANUV; template<typename ContainerAllocator> constexpr uint16_t TransponderReport_<ContainerAllocator>::ADSB_EMITTER_TYPE_ROTOCRAFT; template<typename ContainerAllocator> constexpr uint16_t TransponderReport_<ContainerAllocator>::ADSB_EMITTER_TYPE_UNASSIGNED; template<typename ContainerAllocator> constexpr uint16_t TransponderReport_<ContainerAllocator>::ADSB_EMITTER_TYPE_GLIDER; template<typename ContainerAllocator> constexpr uint16_t TransponderReport_<ContainerAllocator>::ADSB_EMITTER_TYPE_LIGHTER_AIR; template<typename ContainerAllocator> constexpr uint16_t TransponderReport_<ContainerAllocator>::ADSB_EMITTER_TYPE_PARACHUTE; template<typename ContainerAllocator> constexpr uint16_t TransponderReport_<ContainerAllocator>::ADSB_EMITTER_TYPE_ULTRA_LIGHT; template<typename ContainerAllocator> constexpr uint16_t TransponderReport_<ContainerAllocator>::ADSB_EMITTER_TYPE_UNASSIGNED2; template<typename ContainerAllocator> constexpr uint16_t TransponderReport_<ContainerAllocator>::ADSB_EMITTER_TYPE_UAV; template<typename ContainerAllocator> constexpr uint16_t TransponderReport_<ContainerAllocator>::ADSB_EMITTER_TYPE_SPACE; template<typename ContainerAllocator> constexpr uint16_t TransponderReport_<ContainerAllocator>::ADSB_EMITTER_TYPE_UNASSGINED3; template<typename ContainerAllocator> constexpr uint16_t TransponderReport_<ContainerAllocator>::ADSB_EMITTER_TYPE_EMERGENCY_SURFACE; template<typename ContainerAllocator> constexpr uint16_t TransponderReport_<ContainerAllocator>::ADSB_EMITTER_TYPE_SERVICE_SURFACE; template<typename ContainerAllocator> constexpr uint16_t TransponderReport_<ContainerAllocator>::ADSB_EMITTER_TYPE_POINT_OBSTACLE; template<typename ContainerAllocator> constexpr uint16_t TransponderReport_<ContainerAllocator>::ADSB_EMITTER_TYPE_ENUM_END; template<typename ContainerAllocator> constexpr uint8_t TransponderReport_<ContainerAllocator>::ORB_QUEUE_LENGTH; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__TRANSPONDER_REPORT__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_imu__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/VehicleImu.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_IMU__STRUCT_HPP_ #define PX4_MSGS__MSG__VEHICLE_IMU__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__VehicleImu __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__VehicleImu __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct VehicleImu_ { using Type = VehicleImu_<ContainerAllocator>; explicit VehicleImu_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->accel_device_id = 0ul; this->gyro_device_id = 0ul; std::fill<typename std::array<float, 3>::iterator, float>(this->delta_angle.begin(), this->delta_angle.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->delta_velocity.begin(), this->delta_velocity.end(), 0.0f); this->delta_angle_dt = 0; this->delta_velocity_dt = 0; this->delta_velocity_clipping = 0; this->calibration_count = 0; } } explicit VehicleImu_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : delta_angle(_alloc), delta_velocity(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->accel_device_id = 0ul; this->gyro_device_id = 0ul; std::fill<typename std::array<float, 3>::iterator, float>(this->delta_angle.begin(), this->delta_angle.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->delta_velocity.begin(), this->delta_velocity.end(), 0.0f); this->delta_angle_dt = 0; this->delta_velocity_dt = 0; this->delta_velocity_clipping = 0; this->calibration_count = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _timestamp_sample_type = uint64_t; _timestamp_sample_type timestamp_sample; using _accel_device_id_type = uint32_t; _accel_device_id_type accel_device_id; using _gyro_device_id_type = uint32_t; _gyro_device_id_type gyro_device_id; using _delta_angle_type = std::array<float, 3>; _delta_angle_type delta_angle; using _delta_velocity_type = std::array<float, 3>; _delta_velocity_type delta_velocity; using _delta_angle_dt_type = uint16_t; _delta_angle_dt_type delta_angle_dt; using _delta_velocity_dt_type = uint16_t; _delta_velocity_dt_type delta_velocity_dt; using _delta_velocity_clipping_type = uint8_t; _delta_velocity_clipping_type delta_velocity_clipping; using _calibration_count_type = uint8_t; _calibration_count_type calibration_count; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__timestamp_sample( const uint64_t & _arg) { this->timestamp_sample = _arg; return *this; } Type & set__accel_device_id( const uint32_t & _arg) { this->accel_device_id = _arg; return *this; } Type & set__gyro_device_id( const uint32_t & _arg) { this->gyro_device_id = _arg; return *this; } Type & set__delta_angle( const std::array<float, 3> & _arg) { this->delta_angle = _arg; return *this; } Type & set__delta_velocity( const std::array<float, 3> & _arg) { this->delta_velocity = _arg; return *this; } Type & set__delta_angle_dt( const uint16_t & _arg) { this->delta_angle_dt = _arg; return *this; } Type & set__delta_velocity_dt( const uint16_t & _arg) { this->delta_velocity_dt = _arg; return *this; } Type & set__delta_velocity_clipping( const uint8_t & _arg) { this->delta_velocity_clipping = _arg; return *this; } Type & set__calibration_count( const uint8_t & _arg) { this->calibration_count = _arg; return *this; } // constant declarations static constexpr uint8_t CLIPPING_X = 1u; static constexpr uint8_t CLIPPING_Y = 2u; static constexpr uint8_t CLIPPING_Z = 4u; // pointer types using RawPtr = px4_msgs::msg::VehicleImu_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::VehicleImu_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::VehicleImu_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::VehicleImu_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleImu_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleImu_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleImu_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleImu_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::VehicleImu_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::VehicleImu_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__VehicleImu std::shared_ptr<px4_msgs::msg::VehicleImu_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__VehicleImu std::shared_ptr<px4_msgs::msg::VehicleImu_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const VehicleImu_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->timestamp_sample != other.timestamp_sample) { return false; } if (this->accel_device_id != other.accel_device_id) { return false; } if (this->gyro_device_id != other.gyro_device_id) { return false; } if (this->delta_angle != other.delta_angle) { return false; } if (this->delta_velocity != other.delta_velocity) { return false; } if (this->delta_angle_dt != other.delta_angle_dt) { return false; } if (this->delta_velocity_dt != other.delta_velocity_dt) { return false; } if (this->delta_velocity_clipping != other.delta_velocity_clipping) { return false; } if (this->calibration_count != other.calibration_count) { return false; } return true; } bool operator!=(const VehicleImu_ & other) const { return !this->operator==(other); } }; // struct VehicleImu_ // alias to use template instance with default allocator using VehicleImu = px4_msgs::msg::VehicleImu_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t VehicleImu_<ContainerAllocator>::CLIPPING_X; template<typename ContainerAllocator> constexpr uint8_t VehicleImu_<ContainerAllocator>::CLIPPING_Y; template<typename ContainerAllocator> constexpr uint8_t VehicleImu_<ContainerAllocator>::CLIPPING_Z; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__VEHICLE_IMU__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/timesync__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/Timesync.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TIMESYNC__STRUCT_HPP_ #define PX4_MSGS__MSG__TIMESYNC__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__Timesync __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__Timesync __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct Timesync_ { using Type = Timesync_<ContainerAllocator>; explicit Timesync_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->sys_id = 0; this->seq = 0; this->tc1 = 0ll; this->ts1 = 0ll; } } explicit Timesync_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->sys_id = 0; this->seq = 0; this->tc1 = 0ll; this->ts1 = 0ll; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _sys_id_type = uint8_t; _sys_id_type sys_id; using _seq_type = uint8_t; _seq_type seq; using _tc1_type = int64_t; _tc1_type tc1; using _ts1_type = int64_t; _ts1_type ts1; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__sys_id( const uint8_t & _arg) { this->sys_id = _arg; return *this; } Type & set__seq( const uint8_t & _arg) { this->seq = _arg; return *this; } Type & set__tc1( const int64_t & _arg) { this->tc1 = _arg; return *this; } Type & set__ts1( const int64_t & _arg) { this->ts1 = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::Timesync_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::Timesync_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::Timesync_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::Timesync_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::Timesync_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::Timesync_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::Timesync_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::Timesync_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::Timesync_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::Timesync_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__Timesync std::shared_ptr<px4_msgs::msg::Timesync_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__Timesync std::shared_ptr<px4_msgs::msg::Timesync_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const Timesync_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->sys_id != other.sys_id) { return false; } if (this->seq != other.seq) { return false; } if (this->tc1 != other.tc1) { return false; } if (this->ts1 != other.ts1) { return false; } return true; } bool operator!=(const Timesync_ & other) const { return !this->operator==(other); } }; // struct Timesync_ // alias to use template instance with default allocator using Timesync = px4_msgs::msg::Timesync_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__TIMESYNC__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_groundtruth_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/VehicleGlobalPositionGroundtruth.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/vehicle_global_position_groundtruth__struct.h" #include "px4_msgs/msg/vehicle_global_position_groundtruth__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__vehicle_global_position_groundtruth__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[83]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._vehicle_global_position_groundtruth.VehicleGlobalPositionGroundtruth", full_classname_dest, 82) == 0); } px4_msgs__msg__VehicleGlobalPositionGroundtruth * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // timestamp_sample PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp_sample"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp_sample = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // lat PyObject * field = PyObject_GetAttrString(_pymsg, "lat"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->lat = PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // lon PyObject * field = PyObject_GetAttrString(_pymsg, "lon"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->lon = PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // alt PyObject * field = PyObject_GetAttrString(_pymsg, "alt"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->alt = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // alt_ellipsoid PyObject * field = PyObject_GetAttrString(_pymsg, "alt_ellipsoid"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->alt_ellipsoid = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // delta_alt PyObject * field = PyObject_GetAttrString(_pymsg, "delta_alt"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->delta_alt = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // lat_lon_reset_counter PyObject * field = PyObject_GetAttrString(_pymsg, "lat_lon_reset_counter"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->lat_lon_reset_counter = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // alt_reset_counter PyObject * field = PyObject_GetAttrString(_pymsg, "alt_reset_counter"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->alt_reset_counter = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // eph PyObject * field = PyObject_GetAttrString(_pymsg, "eph"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->eph = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // epv PyObject * field = PyObject_GetAttrString(_pymsg, "epv"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->epv = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // terrain_alt PyObject * field = PyObject_GetAttrString(_pymsg, "terrain_alt"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->terrain_alt = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // terrain_alt_valid PyObject * field = PyObject_GetAttrString(_pymsg, "terrain_alt_valid"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->terrain_alt_valid = (Py_True == field); Py_DECREF(field); } { // dead_reckoning PyObject * field = PyObject_GetAttrString(_pymsg, "dead_reckoning"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->dead_reckoning = (Py_True == field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__vehicle_global_position_groundtruth__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of VehicleGlobalPositionGroundtruth */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._vehicle_global_position_groundtruth"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "VehicleGlobalPositionGroundtruth"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__VehicleGlobalPositionGroundtruth * ros_message = (px4_msgs__msg__VehicleGlobalPositionGroundtruth *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // timestamp_sample PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp_sample); { int rc = PyObject_SetAttrString(_pymessage, "timestamp_sample", field); Py_DECREF(field); if (rc) { return NULL; } } } { // lat PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->lat); { int rc = PyObject_SetAttrString(_pymessage, "lat", field); Py_DECREF(field); if (rc) { return NULL; } } } { // lon PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->lon); { int rc = PyObject_SetAttrString(_pymessage, "lon", field); Py_DECREF(field); if (rc) { return NULL; } } } { // alt PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->alt); { int rc = PyObject_SetAttrString(_pymessage, "alt", field); Py_DECREF(field); if (rc) { return NULL; } } } { // alt_ellipsoid PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->alt_ellipsoid); { int rc = PyObject_SetAttrString(_pymessage, "alt_ellipsoid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // delta_alt PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->delta_alt); { int rc = PyObject_SetAttrString(_pymessage, "delta_alt", field); Py_DECREF(field); if (rc) { return NULL; } } } { // lat_lon_reset_counter PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->lat_lon_reset_counter); { int rc = PyObject_SetAttrString(_pymessage, "lat_lon_reset_counter", field); Py_DECREF(field); if (rc) { return NULL; } } } { // alt_reset_counter PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->alt_reset_counter); { int rc = PyObject_SetAttrString(_pymessage, "alt_reset_counter", field); Py_DECREF(field); if (rc) { return NULL; } } } { // eph PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->eph); { int rc = PyObject_SetAttrString(_pymessage, "eph", field); Py_DECREF(field); if (rc) { return NULL; } } } { // epv PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->epv); { int rc = PyObject_SetAttrString(_pymessage, "epv", field); Py_DECREF(field); if (rc) { return NULL; } } } { // terrain_alt PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->terrain_alt); { int rc = PyObject_SetAttrString(_pymessage, "terrain_alt", field); Py_DECREF(field); if (rc) { return NULL; } } } { // terrain_alt_valid PyObject * field = NULL; field = PyBool_FromLong(ros_message->terrain_alt_valid ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "terrain_alt_valid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // dead_reckoning PyObject * field = NULL; field = PyBool_FromLong(ros_message->dead_reckoning ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "dead_reckoning", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_controls3__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/ActuatorControls3.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS3__STRUCT_H_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS3__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'NUM_ACTUATOR_CONTROLS'. enum { px4_msgs__msg__ActuatorControls3__NUM_ACTUATOR_CONTROLS = 8 }; /// Constant 'NUM_ACTUATOR_CONTROL_GROUPS'. enum { px4_msgs__msg__ActuatorControls3__NUM_ACTUATOR_CONTROL_GROUPS = 6 }; /// Constant 'INDEX_ROLL'. enum { px4_msgs__msg__ActuatorControls3__INDEX_ROLL = 0 }; /// Constant 'INDEX_PITCH'. enum { px4_msgs__msg__ActuatorControls3__INDEX_PITCH = 1 }; /// Constant 'INDEX_YAW'. enum { px4_msgs__msg__ActuatorControls3__INDEX_YAW = 2 }; /// Constant 'INDEX_THROTTLE'. enum { px4_msgs__msg__ActuatorControls3__INDEX_THROTTLE = 3 }; /// Constant 'INDEX_FLAPS'. enum { px4_msgs__msg__ActuatorControls3__INDEX_FLAPS = 4 }; /// Constant 'INDEX_SPOILERS'. enum { px4_msgs__msg__ActuatorControls3__INDEX_SPOILERS = 5 }; /// Constant 'INDEX_AIRBRAKES'. enum { px4_msgs__msg__ActuatorControls3__INDEX_AIRBRAKES = 6 }; /// Constant 'INDEX_LANDING_GEAR'. enum { px4_msgs__msg__ActuatorControls3__INDEX_LANDING_GEAR = 7 }; /// Constant 'INDEX_GIMBAL_SHUTTER'. enum { px4_msgs__msg__ActuatorControls3__INDEX_GIMBAL_SHUTTER = 3 }; /// Constant 'INDEX_CAMERA_ZOOM'. enum { px4_msgs__msg__ActuatorControls3__INDEX_CAMERA_ZOOM = 4 }; /// Constant 'GROUP_INDEX_ATTITUDE'. enum { px4_msgs__msg__ActuatorControls3__GROUP_INDEX_ATTITUDE = 0 }; /// Constant 'GROUP_INDEX_ATTITUDE_ALTERNATE'. enum { px4_msgs__msg__ActuatorControls3__GROUP_INDEX_ATTITUDE_ALTERNATE = 1 }; /// Constant 'GROUP_INDEX_GIMBAL'. enum { px4_msgs__msg__ActuatorControls3__GROUP_INDEX_GIMBAL = 2 }; /// Constant 'GROUP_INDEX_MANUAL_PASSTHROUGH'. enum { px4_msgs__msg__ActuatorControls3__GROUP_INDEX_MANUAL_PASSTHROUGH = 3 }; /// Constant 'GROUP_INDEX_ALLOCATED_PART1'. enum { px4_msgs__msg__ActuatorControls3__GROUP_INDEX_ALLOCATED_PART1 = 4 }; /// Constant 'GROUP_INDEX_ALLOCATED_PART2'. enum { px4_msgs__msg__ActuatorControls3__GROUP_INDEX_ALLOCATED_PART2 = 5 }; /// Constant 'GROUP_INDEX_PAYLOAD'. enum { px4_msgs__msg__ActuatorControls3__GROUP_INDEX_PAYLOAD = 6 }; // Struct defined in msg/ActuatorControls3 in the package px4_msgs. typedef struct px4_msgs__msg__ActuatorControls3 { uint64_t timestamp; uint64_t timestamp_sample; float control[8]; } px4_msgs__msg__ActuatorControls3; // Struct for a sequence of px4_msgs__msg__ActuatorControls3. typedef struct px4_msgs__msg__ActuatorControls3__Sequence { px4_msgs__msg__ActuatorControls3 * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__ActuatorControls3__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS3__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_event_flags__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/EstimatorEventFlags.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_EVENT_FLAGS__STRUCT_H_ #define PX4_MSGS__MSG__ESTIMATOR_EVENT_FLAGS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/EstimatorEventFlags in the package px4_msgs. typedef struct px4_msgs__msg__EstimatorEventFlags { uint64_t timestamp; uint64_t timestamp_sample; uint32_t information_event_changes; bool gps_checks_passed; bool reset_vel_to_gps; bool reset_vel_to_flow; bool reset_vel_to_vision; bool reset_vel_to_zero; bool reset_pos_to_last_known; bool reset_pos_to_gps; bool reset_pos_to_vision; bool starting_gps_fusion; bool starting_vision_pos_fusion; bool starting_vision_vel_fusion; bool starting_vision_yaw_fusion; bool yaw_aligned_to_imu_gps; uint32_t warning_event_changes; bool gps_quality_poor; bool gps_fusion_timout; bool gps_data_stopped; bool gps_data_stopped_using_alternate; bool height_sensor_timeout; bool stopping_navigation; bool invalid_accel_bias_cov_reset; bool bad_yaw_using_gps_course; bool stopping_mag_use; bool vision_data_stopped; bool emergency_yaw_reset_mag_stopped; } px4_msgs__msg__EstimatorEventFlags; // Struct for a sequence of px4_msgs__msg__EstimatorEventFlags. typedef struct px4_msgs__msg__EstimatorEventFlags__Sequence { px4_msgs__msg__EstimatorEventFlags * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__EstimatorEventFlags__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ESTIMATOR_EVENT_FLAGS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/task_stack_info.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/TaskStackInfo.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TASK_STACK_INFO_H_ #define PX4_MSGS__MSG__TASK_STACK_INFO_H_ #include "px4_msgs/msg/task_stack_info__struct.h" #include "px4_msgs/msg/task_stack_info__functions.h" #include "px4_msgs/msg/task_stack_info__type_support.h" #endif // PX4_MSGS__MSG__TASK_STACK_INFO_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/qshell_retval__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/QshellRetval.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__QSHELL_RETVAL__STRUCT_H_ #define PX4_MSGS__MSG__QSHELL_RETVAL__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/QshellRetval in the package px4_msgs. typedef struct px4_msgs__msg__QshellRetval { uint64_t timestamp; int32_t return_value; uint32_t return_sequence; } px4_msgs__msg__QshellRetval; // Struct for a sequence of px4_msgs__msg__QshellRetval. typedef struct px4_msgs__msg__QshellRetval__Sequence { px4_msgs__msg__QshellRetval * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__QshellRetval__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__QSHELL_RETVAL__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/landing_gear.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__LANDING_GEAR_HPP_ #define PX4_MSGS__MSG__LANDING_GEAR_HPP_ #include "px4_msgs/msg/landing_gear__struct.hpp" #include "px4_msgs/msg/landing_gear__traits.hpp" #endif // PX4_MSGS__MSG__LANDING_GEAR_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/FwVirtualAttitudeSetpoint.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/fw_virtual_attitude_setpoint__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void FwVirtualAttitudeSetpoint_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::FwVirtualAttitudeSetpoint(_init); } void FwVirtualAttitudeSetpoint_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::FwVirtualAttitudeSetpoint *>(message_memory); typed_message->~FwVirtualAttitudeSetpoint(); } size_t size_function__FwVirtualAttitudeSetpoint__q_d(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__FwVirtualAttitudeSetpoint__q_d(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 4> *>(untyped_member); return &member[index]; } void * get_function__FwVirtualAttitudeSetpoint__q_d(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 4> *>(untyped_member); return &member[index]; } size_t size_function__FwVirtualAttitudeSetpoint__thrust_body(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__FwVirtualAttitudeSetpoint__thrust_body(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__FwVirtualAttitudeSetpoint__thrust_body(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember FwVirtualAttitudeSetpoint_message_member_array[12] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::FwVirtualAttitudeSetpoint, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "roll_body", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::FwVirtualAttitudeSetpoint, roll_body), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "pitch_body", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::FwVirtualAttitudeSetpoint, pitch_body), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "yaw_body", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::FwVirtualAttitudeSetpoint, yaw_body), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "yaw_sp_move_rate", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::FwVirtualAttitudeSetpoint, yaw_sp_move_rate), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "q_d", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::FwVirtualAttitudeSetpoint, q_d), // bytes offset in struct nullptr, // default value size_function__FwVirtualAttitudeSetpoint__q_d, // size() function pointer get_const_function__FwVirtualAttitudeSetpoint__q_d, // get_const(index) function pointer get_function__FwVirtualAttitudeSetpoint__q_d, // get(index) function pointer nullptr // resize(index) function pointer }, { "thrust_body", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::FwVirtualAttitudeSetpoint, thrust_body), // bytes offset in struct nullptr, // default value size_function__FwVirtualAttitudeSetpoint__thrust_body, // size() function pointer get_const_function__FwVirtualAttitudeSetpoint__thrust_body, // get_const(index) function pointer get_function__FwVirtualAttitudeSetpoint__thrust_body, // get(index) function pointer nullptr // resize(index) function pointer }, { "roll_reset_integral", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::FwVirtualAttitudeSetpoint, roll_reset_integral), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "pitch_reset_integral", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::FwVirtualAttitudeSetpoint, pitch_reset_integral), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "yaw_reset_integral", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::FwVirtualAttitudeSetpoint, yaw_reset_integral), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "fw_control_yaw", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::FwVirtualAttitudeSetpoint, fw_control_yaw), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "apply_flaps", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::FwVirtualAttitudeSetpoint, apply_flaps), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers FwVirtualAttitudeSetpoint_message_members = { "px4_msgs::msg", // message namespace "FwVirtualAttitudeSetpoint", // message name 12, // number of fields sizeof(px4_msgs::msg::FwVirtualAttitudeSetpoint), FwVirtualAttitudeSetpoint_message_member_array, // message members FwVirtualAttitudeSetpoint_init_function, // function to initialize message memory (memory has to be allocated) FwVirtualAttitudeSetpoint_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t FwVirtualAttitudeSetpoint_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &FwVirtualAttitudeSetpoint_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::FwVirtualAttitudeSetpoint>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::FwVirtualAttitudeSetpoint_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, FwVirtualAttitudeSetpoint)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::FwVirtualAttitudeSetpoint_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/estimator_innovation_variances__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/EstimatorInnovationVariances.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_INNOVATION_VARIANCES__STRUCT_HPP_ #define PX4_MSGS__MSG__ESTIMATOR_INNOVATION_VARIANCES__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__EstimatorInnovationVariances __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__EstimatorInnovationVariances __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct EstimatorInnovationVariances_ { using Type = EstimatorInnovationVariances_<ContainerAllocator>; explicit EstimatorInnovationVariances_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; std::fill<typename std::array<float, 2>::iterator, float>(this->gps_hvel.begin(), this->gps_hvel.end(), 0.0f); this->gps_vvel = 0.0f; std::fill<typename std::array<float, 2>::iterator, float>(this->gps_hpos.begin(), this->gps_hpos.end(), 0.0f); this->gps_vpos = 0.0f; std::fill<typename std::array<float, 2>::iterator, float>(this->ev_hvel.begin(), this->ev_hvel.end(), 0.0f); this->ev_vvel = 0.0f; std::fill<typename std::array<float, 2>::iterator, float>(this->ev_hpos.begin(), this->ev_hpos.end(), 0.0f); this->ev_vpos = 0.0f; this->rng_vpos = 0.0f; this->baro_vpos = 0.0f; std::fill<typename std::array<float, 2>::iterator, float>(this->aux_hvel.begin(), this->aux_hvel.end(), 0.0f); this->aux_vvel = 0.0f; std::fill<typename std::array<float, 2>::iterator, float>(this->flow.begin(), this->flow.end(), 0.0f); this->heading = 0.0f; std::fill<typename std::array<float, 3>::iterator, float>(this->mag_field.begin(), this->mag_field.end(), 0.0f); std::fill<typename std::array<float, 2>::iterator, float>(this->drag.begin(), this->drag.end(), 0.0f); this->airspeed = 0.0f; this->beta = 0.0f; this->hagl = 0.0f; } } explicit EstimatorInnovationVariances_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : gps_hvel(_alloc), gps_hpos(_alloc), ev_hvel(_alloc), ev_hpos(_alloc), aux_hvel(_alloc), flow(_alloc), mag_field(_alloc), drag(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; std::fill<typename std::array<float, 2>::iterator, float>(this->gps_hvel.begin(), this->gps_hvel.end(), 0.0f); this->gps_vvel = 0.0f; std::fill<typename std::array<float, 2>::iterator, float>(this->gps_hpos.begin(), this->gps_hpos.end(), 0.0f); this->gps_vpos = 0.0f; std::fill<typename std::array<float, 2>::iterator, float>(this->ev_hvel.begin(), this->ev_hvel.end(), 0.0f); this->ev_vvel = 0.0f; std::fill<typename std::array<float, 2>::iterator, float>(this->ev_hpos.begin(), this->ev_hpos.end(), 0.0f); this->ev_vpos = 0.0f; this->rng_vpos = 0.0f; this->baro_vpos = 0.0f; std::fill<typename std::array<float, 2>::iterator, float>(this->aux_hvel.begin(), this->aux_hvel.end(), 0.0f); this->aux_vvel = 0.0f; std::fill<typename std::array<float, 2>::iterator, float>(this->flow.begin(), this->flow.end(), 0.0f); this->heading = 0.0f; std::fill<typename std::array<float, 3>::iterator, float>(this->mag_field.begin(), this->mag_field.end(), 0.0f); std::fill<typename std::array<float, 2>::iterator, float>(this->drag.begin(), this->drag.end(), 0.0f); this->airspeed = 0.0f; this->beta = 0.0f; this->hagl = 0.0f; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _timestamp_sample_type = uint64_t; _timestamp_sample_type timestamp_sample; using _gps_hvel_type = std::array<float, 2>; _gps_hvel_type gps_hvel; using _gps_vvel_type = float; _gps_vvel_type gps_vvel; using _gps_hpos_type = std::array<float, 2>; _gps_hpos_type gps_hpos; using _gps_vpos_type = float; _gps_vpos_type gps_vpos; using _ev_hvel_type = std::array<float, 2>; _ev_hvel_type ev_hvel; using _ev_vvel_type = float; _ev_vvel_type ev_vvel; using _ev_hpos_type = std::array<float, 2>; _ev_hpos_type ev_hpos; using _ev_vpos_type = float; _ev_vpos_type ev_vpos; using _rng_vpos_type = float; _rng_vpos_type rng_vpos; using _baro_vpos_type = float; _baro_vpos_type baro_vpos; using _aux_hvel_type = std::array<float, 2>; _aux_hvel_type aux_hvel; using _aux_vvel_type = float; _aux_vvel_type aux_vvel; using _flow_type = std::array<float, 2>; _flow_type flow; using _heading_type = float; _heading_type heading; using _mag_field_type = std::array<float, 3>; _mag_field_type mag_field; using _drag_type = std::array<float, 2>; _drag_type drag; using _airspeed_type = float; _airspeed_type airspeed; using _beta_type = float; _beta_type beta; using _hagl_type = float; _hagl_type hagl; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__timestamp_sample( const uint64_t & _arg) { this->timestamp_sample = _arg; return *this; } Type & set__gps_hvel( const std::array<float, 2> & _arg) { this->gps_hvel = _arg; return *this; } Type & set__gps_vvel( const float & _arg) { this->gps_vvel = _arg; return *this; } Type & set__gps_hpos( const std::array<float, 2> & _arg) { this->gps_hpos = _arg; return *this; } Type & set__gps_vpos( const float & _arg) { this->gps_vpos = _arg; return *this; } Type & set__ev_hvel( const std::array<float, 2> & _arg) { this->ev_hvel = _arg; return *this; } Type & set__ev_vvel( const float & _arg) { this->ev_vvel = _arg; return *this; } Type & set__ev_hpos( const std::array<float, 2> & _arg) { this->ev_hpos = _arg; return *this; } Type & set__ev_vpos( const float & _arg) { this->ev_vpos = _arg; return *this; } Type & set__rng_vpos( const float & _arg) { this->rng_vpos = _arg; return *this; } Type & set__baro_vpos( const float & _arg) { this->baro_vpos = _arg; return *this; } Type & set__aux_hvel( const std::array<float, 2> & _arg) { this->aux_hvel = _arg; return *this; } Type & set__aux_vvel( const float & _arg) { this->aux_vvel = _arg; return *this; } Type & set__flow( const std::array<float, 2> & _arg) { this->flow = _arg; return *this; } Type & set__heading( const float & _arg) { this->heading = _arg; return *this; } Type & set__mag_field( const std::array<float, 3> & _arg) { this->mag_field = _arg; return *this; } Type & set__drag( const std::array<float, 2> & _arg) { this->drag = _arg; return *this; } Type & set__airspeed( const float & _arg) { this->airspeed = _arg; return *this; } Type & set__beta( const float & _arg) { this->beta = _arg; return *this; } Type & set__hagl( const float & _arg) { this->hagl = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::EstimatorInnovationVariances_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::EstimatorInnovationVariances_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::EstimatorInnovationVariances_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::EstimatorInnovationVariances_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::EstimatorInnovationVariances_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::EstimatorInnovationVariances_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::EstimatorInnovationVariances_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::EstimatorInnovationVariances_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::EstimatorInnovationVariances_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::EstimatorInnovationVariances_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__EstimatorInnovationVariances std::shared_ptr<px4_msgs::msg::EstimatorInnovationVariances_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__EstimatorInnovationVariances std::shared_ptr<px4_msgs::msg::EstimatorInnovationVariances_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const EstimatorInnovationVariances_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->timestamp_sample != other.timestamp_sample) { return false; } if (this->gps_hvel != other.gps_hvel) { return false; } if (this->gps_vvel != other.gps_vvel) { return false; } if (this->gps_hpos != other.gps_hpos) { return false; } if (this->gps_vpos != other.gps_vpos) { return false; } if (this->ev_hvel != other.ev_hvel) { return false; } if (this->ev_vvel != other.ev_vvel) { return false; } if (this->ev_hpos != other.ev_hpos) { return false; } if (this->ev_vpos != other.ev_vpos) { return false; } if (this->rng_vpos != other.rng_vpos) { return false; } if (this->baro_vpos != other.baro_vpos) { return false; } if (this->aux_hvel != other.aux_hvel) { return false; } if (this->aux_vvel != other.aux_vvel) { return false; } if (this->flow != other.flow) { return false; } if (this->heading != other.heading) { return false; } if (this->mag_field != other.mag_field) { return false; } if (this->drag != other.drag) { return false; } if (this->airspeed != other.airspeed) { return false; } if (this->beta != other.beta) { return false; } if (this->hagl != other.hagl) { return false; } return true; } bool operator!=(const EstimatorInnovationVariances_ & other) const { return !this->operator==(other); } }; // struct EstimatorInnovationVariances_ // alias to use template instance with default allocator using EstimatorInnovationVariances = px4_msgs::msg::EstimatorInnovationVariances_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__ESTIMATOR_INNOVATION_VARIANCES__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/gimbal_device_information__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/GimbalDeviceInformation.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/gimbal_device_information__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__GimbalDeviceInformation__init(px4_msgs__msg__GimbalDeviceInformation * msg) { if (!msg) { return false; } // timestamp // vendor_name // model_name // custom_name // firmware_version // hardware_version // uid // cap_flags // custom_cap_flags // roll_min // roll_max // pitch_min // pitch_max // yaw_min // yaw_max // gimbal_device_compid return true; } void px4_msgs__msg__GimbalDeviceInformation__fini(px4_msgs__msg__GimbalDeviceInformation * msg) { if (!msg) { return; } // timestamp // vendor_name // model_name // custom_name // firmware_version // hardware_version // uid // cap_flags // custom_cap_flags // roll_min // roll_max // pitch_min // pitch_max // yaw_min // yaw_max // gimbal_device_compid } px4_msgs__msg__GimbalDeviceInformation * px4_msgs__msg__GimbalDeviceInformation__create() { px4_msgs__msg__GimbalDeviceInformation * msg = (px4_msgs__msg__GimbalDeviceInformation *)malloc(sizeof(px4_msgs__msg__GimbalDeviceInformation)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__GimbalDeviceInformation)); bool success = px4_msgs__msg__GimbalDeviceInformation__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__GimbalDeviceInformation__destroy(px4_msgs__msg__GimbalDeviceInformation * msg) { if (msg) { px4_msgs__msg__GimbalDeviceInformation__fini(msg); } free(msg); } bool px4_msgs__msg__GimbalDeviceInformation__Sequence__init(px4_msgs__msg__GimbalDeviceInformation__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__GimbalDeviceInformation * data = NULL; if (size) { data = (px4_msgs__msg__GimbalDeviceInformation *)calloc(size, sizeof(px4_msgs__msg__GimbalDeviceInformation)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__GimbalDeviceInformation__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__GimbalDeviceInformation__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__GimbalDeviceInformation__Sequence__fini(px4_msgs__msg__GimbalDeviceInformation__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__GimbalDeviceInformation__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__GimbalDeviceInformation__Sequence * px4_msgs__msg__GimbalDeviceInformation__Sequence__create(size_t size) { px4_msgs__msg__GimbalDeviceInformation__Sequence * array = (px4_msgs__msg__GimbalDeviceInformation__Sequence *)malloc(sizeof(px4_msgs__msg__GimbalDeviceInformation__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__GimbalDeviceInformation__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__GimbalDeviceInformation__Sequence__destroy(px4_msgs__msg__GimbalDeviceInformation__Sequence * array) { if (array) { px4_msgs__msg__GimbalDeviceInformation__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_gps_position__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/VehicleGpsPosition.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/vehicle_gps_position__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/vehicle_gps_position__functions.h" #include "px4_msgs/msg/vehicle_gps_position__struct.h" #ifdef __cplusplus extern "C" { #endif void VehicleGpsPosition__rosidl_typesupport_introspection_c__VehicleGpsPosition_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__VehicleGpsPosition__init(message_memory); } void VehicleGpsPosition__rosidl_typesupport_introspection_c__VehicleGpsPosition_fini_function(void * message_memory) { px4_msgs__msg__VehicleGpsPosition__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember VehicleGpsPosition__rosidl_typesupport_introspection_c__VehicleGpsPosition_message_member_array[27] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGpsPosition, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "lat", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGpsPosition, lat), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "lon", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGpsPosition, lon), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "alt", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGpsPosition, alt), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "alt_ellipsoid", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGpsPosition, alt_ellipsoid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "s_variance_m_s", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGpsPosition, s_variance_m_s), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "c_variance_rad", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGpsPosition, c_variance_rad), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "fix_type", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGpsPosition, fix_type), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "eph", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGpsPosition, eph), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "epv", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGpsPosition, epv), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "hdop", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGpsPosition, hdop), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vdop", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGpsPosition, vdop), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "noise_per_ms", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGpsPosition, noise_per_ms), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "jamming_indicator", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGpsPosition, jamming_indicator), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "jamming_state", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGpsPosition, jamming_state), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vel_m_s", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGpsPosition, vel_m_s), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vel_n_m_s", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGpsPosition, vel_n_m_s), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vel_e_m_s", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGpsPosition, vel_e_m_s), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vel_d_m_s", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGpsPosition, vel_d_m_s), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cog_rad", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGpsPosition, cog_rad), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vel_ned_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGpsPosition, vel_ned_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_time_relative", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGpsPosition, timestamp_time_relative), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "time_utc_usec", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGpsPosition, time_utc_usec), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "satellites_used", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGpsPosition, satellites_used), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "heading", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGpsPosition, heading), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "heading_offset", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGpsPosition, heading_offset), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "selected", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGpsPosition, selected), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers VehicleGpsPosition__rosidl_typesupport_introspection_c__VehicleGpsPosition_message_members = { "px4_msgs__msg", // message namespace "VehicleGpsPosition", // message name 27, // number of fields sizeof(px4_msgs__msg__VehicleGpsPosition), VehicleGpsPosition__rosidl_typesupport_introspection_c__VehicleGpsPosition_message_member_array, // message members VehicleGpsPosition__rosidl_typesupport_introspection_c__VehicleGpsPosition_init_function, // function to initialize message memory (memory has to be allocated) VehicleGpsPosition__rosidl_typesupport_introspection_c__VehicleGpsPosition_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t VehicleGpsPosition__rosidl_typesupport_introspection_c__VehicleGpsPosition_message_type_support_handle = { 0, &VehicleGpsPosition__rosidl_typesupport_introspection_c__VehicleGpsPosition_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, VehicleGpsPosition)() { if (!VehicleGpsPosition__rosidl_typesupport_introspection_c__VehicleGpsPosition_message_type_support_handle.typesupport_identifier) { VehicleGpsPosition__rosidl_typesupport_introspection_c__VehicleGpsPosition_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &VehicleGpsPosition__rosidl_typesupport_introspection_c__VehicleGpsPosition_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/tecs_status__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/TecsStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TECS_STATUS__STRUCT_H_ #define PX4_MSGS__MSG__TECS_STATUS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'TECS_MODE_NORMAL'. enum { px4_msgs__msg__TecsStatus__TECS_MODE_NORMAL = 0 }; /// Constant 'TECS_MODE_UNDERSPEED'. enum { px4_msgs__msg__TecsStatus__TECS_MODE_UNDERSPEED = 1 }; /// Constant 'TECS_MODE_TAKEOFF'. enum { px4_msgs__msg__TecsStatus__TECS_MODE_TAKEOFF = 2 }; /// Constant 'TECS_MODE_LAND'. enum { px4_msgs__msg__TecsStatus__TECS_MODE_LAND = 3 }; /// Constant 'TECS_MODE_LAND_THROTTLELIM'. enum { px4_msgs__msg__TecsStatus__TECS_MODE_LAND_THROTTLELIM = 4 }; /// Constant 'TECS_MODE_BAD_DESCENT'. enum { px4_msgs__msg__TecsStatus__TECS_MODE_BAD_DESCENT = 5 }; /// Constant 'TECS_MODE_CLIMBOUT'. enum { px4_msgs__msg__TecsStatus__TECS_MODE_CLIMBOUT = 6 }; // Struct defined in msg/TecsStatus in the package px4_msgs. typedef struct px4_msgs__msg__TecsStatus { uint64_t timestamp; float altitude_sp; float altitude_filtered; float height_rate_setpoint; float height_rate; float equivalent_airspeed_sp; float true_airspeed_sp; float true_airspeed_filtered; float true_airspeed_derivative_sp; float true_airspeed_derivative; float total_energy_error; float energy_distribution_error; float total_energy_rate_error; float energy_distribution_rate_error; float total_energy; float total_energy_rate; float total_energy_balance; float total_energy_balance_rate; float total_energy_sp; float total_energy_rate_sp; float total_energy_balance_sp; float total_energy_balance_rate_sp; float throttle_integ; float pitch_integ; float throttle_sp; uint8_t mode; } px4_msgs__msg__TecsStatus; // Struct for a sequence of px4_msgs__msg__TecsStatus. typedef struct px4_msgs__msg__TecsStatus__Sequence { px4_msgs__msg__TecsStatus * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__TecsStatus__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__TECS_STATUS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/rtl_flight_time.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__RTL_FLIGHT_TIME_HPP_ #define PX4_MSGS__MSG__RTL_FLIGHT_TIME_HPP_ #include "px4_msgs/msg/rtl_flight_time__struct.hpp" #include "px4_msgs/msg/rtl_flight_time__traits.hpp" #endif // PX4_MSGS__MSG__RTL_FLIGHT_TIME_HPP_ <file_sep>/build/px4_msgs/CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c__pyext.dir/cmake_clean.cmake file(REMOVE_RECURSE "CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c__pyext.dir/rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_fastrtps_c.c.o" "rosidl_generator_py/px4_msgs/px4_msgs_s__rosidl_typesupport_fastrtps_c.cpython-36m-aarch64-linux-gnu.pdb" "rosidl_generator_py/px4_msgs/px4_msgs_s__rosidl_typesupport_fastrtps_c.cpython-36m-aarch64-linux-gnu.so" ) # Per-language clean rules from dependency scanning. foreach(lang C) include(CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c__pyext.dir/cmake_clean_${lang}.cmake OPTIONAL) endforeach() <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_iridiumsbd_status.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/IridiumsbdStatus.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_IridiumsbdStatus(type): """Metaclass of message 'IridiumsbdStatus'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.IridiumsbdStatus') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__iridiumsbd_status cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__iridiumsbd_status cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__iridiumsbd_status cls._TYPE_SUPPORT = module.type_support_msg__msg__iridiumsbd_status cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__iridiumsbd_status @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class IridiumsbdStatus(metaclass=Metaclass_IridiumsbdStatus): """Message class 'IridiumsbdStatus'.""" __slots__ = [ '_timestamp', '_last_heartbeat', '_tx_buf_write_index', '_rx_buf_read_index', '_rx_buf_end_index', '_failed_sbd_sessions', '_successful_sbd_sessions', '_num_tx_buf_reset', '_signal_quality', '_state', '_ring_pending', '_tx_buf_write_pending', '_tx_session_pending', '_rx_read_pending', '_rx_session_pending', ] _fields_and_field_types = { 'timestamp': 'uint64', 'last_heartbeat': 'uint64', 'tx_buf_write_index': 'uint16', 'rx_buf_read_index': 'uint16', 'rx_buf_end_index': 'uint16', 'failed_sbd_sessions': 'uint16', 'successful_sbd_sessions': 'uint16', 'num_tx_buf_reset': 'uint16', 'signal_quality': 'uint8', 'state': 'uint8', 'ring_pending': 'boolean', 'tx_buf_write_pending': 'boolean', 'tx_session_pending': 'boolean', 'rx_read_pending': 'boolean', 'rx_session_pending': 'boolean', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.last_heartbeat = kwargs.get('last_heartbeat', int()) self.tx_buf_write_index = kwargs.get('tx_buf_write_index', int()) self.rx_buf_read_index = kwargs.get('rx_buf_read_index', int()) self.rx_buf_end_index = kwargs.get('rx_buf_end_index', int()) self.failed_sbd_sessions = kwargs.get('failed_sbd_sessions', int()) self.successful_sbd_sessions = kwargs.get('successful_sbd_sessions', int()) self.num_tx_buf_reset = kwargs.get('num_tx_buf_reset', int()) self.signal_quality = kwargs.get('signal_quality', int()) self.state = kwargs.get('state', int()) self.ring_pending = kwargs.get('ring_pending', bool()) self.tx_buf_write_pending = kwargs.get('tx_buf_write_pending', bool()) self.tx_session_pending = kwargs.get('tx_session_pending', bool()) self.rx_read_pending = kwargs.get('rx_read_pending', bool()) self.rx_session_pending = kwargs.get('rx_session_pending', bool()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.last_heartbeat != other.last_heartbeat: return False if self.tx_buf_write_index != other.tx_buf_write_index: return False if self.rx_buf_read_index != other.rx_buf_read_index: return False if self.rx_buf_end_index != other.rx_buf_end_index: return False if self.failed_sbd_sessions != other.failed_sbd_sessions: return False if self.successful_sbd_sessions != other.successful_sbd_sessions: return False if self.num_tx_buf_reset != other.num_tx_buf_reset: return False if self.signal_quality != other.signal_quality: return False if self.state != other.state: return False if self.ring_pending != other.ring_pending: return False if self.tx_buf_write_pending != other.tx_buf_write_pending: return False if self.tx_session_pending != other.tx_session_pending: return False if self.rx_read_pending != other.rx_read_pending: return False if self.rx_session_pending != other.rx_session_pending: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def last_heartbeat(self): """Message field 'last_heartbeat'.""" return self._last_heartbeat @last_heartbeat.setter def last_heartbeat(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'last_heartbeat' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'last_heartbeat' field must be an unsigned integer in [0, 18446744073709551615]" self._last_heartbeat = value @property def tx_buf_write_index(self): """Message field 'tx_buf_write_index'.""" return self._tx_buf_write_index @tx_buf_write_index.setter def tx_buf_write_index(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'tx_buf_write_index' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'tx_buf_write_index' field must be an unsigned integer in [0, 65535]" self._tx_buf_write_index = value @property def rx_buf_read_index(self): """Message field 'rx_buf_read_index'.""" return self._rx_buf_read_index @rx_buf_read_index.setter def rx_buf_read_index(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'rx_buf_read_index' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'rx_buf_read_index' field must be an unsigned integer in [0, 65535]" self._rx_buf_read_index = value @property def rx_buf_end_index(self): """Message field 'rx_buf_end_index'.""" return self._rx_buf_end_index @rx_buf_end_index.setter def rx_buf_end_index(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'rx_buf_end_index' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'rx_buf_end_index' field must be an unsigned integer in [0, 65535]" self._rx_buf_end_index = value @property def failed_sbd_sessions(self): """Message field 'failed_sbd_sessions'.""" return self._failed_sbd_sessions @failed_sbd_sessions.setter def failed_sbd_sessions(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'failed_sbd_sessions' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'failed_sbd_sessions' field must be an unsigned integer in [0, 65535]" self._failed_sbd_sessions = value @property def successful_sbd_sessions(self): """Message field 'successful_sbd_sessions'.""" return self._successful_sbd_sessions @successful_sbd_sessions.setter def successful_sbd_sessions(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'successful_sbd_sessions' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'successful_sbd_sessions' field must be an unsigned integer in [0, 65535]" self._successful_sbd_sessions = value @property def num_tx_buf_reset(self): """Message field 'num_tx_buf_reset'.""" return self._num_tx_buf_reset @num_tx_buf_reset.setter def num_tx_buf_reset(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'num_tx_buf_reset' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'num_tx_buf_reset' field must be an unsigned integer in [0, 65535]" self._num_tx_buf_reset = value @property def signal_quality(self): """Message field 'signal_quality'.""" return self._signal_quality @signal_quality.setter def signal_quality(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'signal_quality' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'signal_quality' field must be an unsigned integer in [0, 255]" self._signal_quality = value @property def state(self): """Message field 'state'.""" return self._state @state.setter def state(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'state' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'state' field must be an unsigned integer in [0, 255]" self._state = value @property def ring_pending(self): """Message field 'ring_pending'.""" return self._ring_pending @ring_pending.setter def ring_pending(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'ring_pending' field must be of type 'bool'" self._ring_pending = value @property def tx_buf_write_pending(self): """Message field 'tx_buf_write_pending'.""" return self._tx_buf_write_pending @tx_buf_write_pending.setter def tx_buf_write_pending(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'tx_buf_write_pending' field must be of type 'bool'" self._tx_buf_write_pending = value @property def tx_session_pending(self): """Message field 'tx_session_pending'.""" return self._tx_session_pending @tx_session_pending.setter def tx_session_pending(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'tx_session_pending' field must be of type 'bool'" self._tx_session_pending = value @property def rx_read_pending(self): """Message field 'rx_read_pending'.""" return self._rx_read_pending @rx_read_pending.setter def rx_read_pending(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'rx_read_pending' field must be of type 'bool'" self._rx_read_pending = value @property def rx_session_pending(self): """Message field 'rx_session_pending'.""" return self._rx_session_pending @rx_session_pending.setter def rx_session_pending(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'rx_session_pending' field must be of type 'bool'" self._rx_session_pending = value <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_outputs__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/ActuatorOutputs.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/actuator_outputs__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/actuator_outputs__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::ActuatorOutputs & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: noutputs cdr << ros_message.noutputs; // Member: output { cdr << ros_message.output; } return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::ActuatorOutputs & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: noutputs cdr >> ros_message.noutputs; // Member: output { cdr >> ros_message.output; } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::ActuatorOutputs & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: noutputs { size_t item_size = sizeof(ros_message.noutputs); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: output { size_t array_size = 16; size_t item_size = sizeof(ros_message.output[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_ActuatorOutputs( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: noutputs { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: output { size_t array_size = 16; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static bool _ActuatorOutputs__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::ActuatorOutputs *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _ActuatorOutputs__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::ActuatorOutputs *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _ActuatorOutputs__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::ActuatorOutputs *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _ActuatorOutputs__max_serialized_size(bool & full_bounded) { return max_serialized_size_ActuatorOutputs(full_bounded, 0); } static message_type_support_callbacks_t _ActuatorOutputs__callbacks = { "px4_msgs::msg", "ActuatorOutputs", _ActuatorOutputs__cdr_serialize, _ActuatorOutputs__cdr_deserialize, _ActuatorOutputs__get_serialized_size, _ActuatorOutputs__max_serialized_size }; static rosidl_message_type_support_t _ActuatorOutputs__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_ActuatorOutputs__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::ActuatorOutputs>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_ActuatorOutputs__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, ActuatorOutputs)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_ActuatorOutputs__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/__init__.py from px4_msgs.msg._actuator_armed import ActuatorArmed # noqa: F401 from px4_msgs.msg._actuator_controls import ActuatorControls # noqa: F401 from px4_msgs.msg._actuator_controls0 import ActuatorControls0 # noqa: F401 from px4_msgs.msg._actuator_controls1 import ActuatorControls1 # noqa: F401 from px4_msgs.msg._actuator_controls2 import ActuatorControls2 # noqa: F401 from px4_msgs.msg._actuator_controls3 import ActuatorControls3 # noqa: F401 from px4_msgs.msg._actuator_controls4 import ActuatorControls4 # noqa: F401 from px4_msgs.msg._actuator_controls5 import ActuatorControls5 # noqa: F401 from px4_msgs.msg._actuator_controls_virtual_fw import ActuatorControlsVirtualFw # noqa: F401 from px4_msgs.msg._actuator_controls_virtual_mc import ActuatorControlsVirtualMc # noqa: F401 from px4_msgs.msg._actuator_outputs import ActuatorOutputs # noqa: F401 from px4_msgs.msg._adc_report import AdcReport # noqa: F401 from px4_msgs.msg._airspeed import Airspeed # noqa: F401 from px4_msgs.msg._airspeed_validated import AirspeedValidated # noqa: F401 from px4_msgs.msg._airspeed_wind import AirspeedWind # noqa: F401 from px4_msgs.msg._battery_status import BatteryStatus # noqa: F401 from px4_msgs.msg._camera_capture import CameraCapture # noqa: F401 from px4_msgs.msg._camera_trigger import CameraTrigger # noqa: F401 from px4_msgs.msg._camera_trigger_secondary import CameraTriggerSecondary # noqa: F401 from px4_msgs.msg._cellular_status import CellularStatus # noqa: F401 from px4_msgs.msg._collision_constraints import CollisionConstraints # noqa: F401 from px4_msgs.msg._collision_report import CollisionReport # noqa: F401 from px4_msgs.msg._commander_state import CommanderState # noqa: F401 from px4_msgs.msg._control_allocator_status import ControlAllocatorStatus # noqa: F401 from px4_msgs.msg._cpuload import Cpuload # noqa: F401 from px4_msgs.msg._debug_array import DebugArray # noqa: F401 from px4_msgs.msg._debug_key_value import DebugKeyValue # noqa: F401 from px4_msgs.msg._debug_value import DebugValue # noqa: F401 from px4_msgs.msg._debug_vect import DebugVect # noqa: F401 from px4_msgs.msg._differential_pressure import DifferentialPressure # noqa: F401 from px4_msgs.msg._distance_sensor import DistanceSensor # noqa: F401 from px4_msgs.msg._ekf2_timestamps import Ekf2Timestamps # noqa: F401 from px4_msgs.msg._ekf_gps_drift import EkfGpsDrift # noqa: F401 from px4_msgs.msg._esc_report import EscReport # noqa: F401 from px4_msgs.msg._esc_status import EscStatus # noqa: F401 from px4_msgs.msg._estimator_attitude import EstimatorAttitude # noqa: F401 from px4_msgs.msg._estimator_event_flags import EstimatorEventFlags # noqa: F401 from px4_msgs.msg._estimator_global_position import EstimatorGlobalPosition # noqa: F401 from px4_msgs.msg._estimator_innovation_test_ratios import EstimatorInnovationTestRatios # noqa: F401 from px4_msgs.msg._estimator_innovation_variances import EstimatorInnovationVariances # noqa: F401 from px4_msgs.msg._estimator_innovations import EstimatorInnovations # noqa: F401 from px4_msgs.msg._estimator_local_position import EstimatorLocalPosition # noqa: F401 from px4_msgs.msg._estimator_odometry import EstimatorOdometry # noqa: F401 from px4_msgs.msg._estimator_optical_flow_vel import EstimatorOpticalFlowVel # noqa: F401 from px4_msgs.msg._estimator_selector_status import EstimatorSelectorStatus # noqa: F401 from px4_msgs.msg._estimator_sensor_bias import EstimatorSensorBias # noqa: F401 from px4_msgs.msg._estimator_states import EstimatorStates # noqa: F401 from px4_msgs.msg._estimator_status import EstimatorStatus # noqa: F401 from px4_msgs.msg._estimator_status_flags import EstimatorStatusFlags # noqa: F401 from px4_msgs.msg._estimator_visual_odometry_aligned import EstimatorVisualOdometryAligned # noqa: F401 from px4_msgs.msg._estimator_wind import EstimatorWind # noqa: F401 from px4_msgs.msg._follow_target import FollowTarget # noqa: F401 from px4_msgs.msg._fw_virtual_attitude_setpoint import FwVirtualAttitudeSetpoint # noqa: F401 from px4_msgs.msg._generator_status import GeneratorStatus # noqa: F401 from px4_msgs.msg._geofence_result import GeofenceResult # noqa: F401 from px4_msgs.msg._gimbal_device_attitude_status import GimbalDeviceAttitudeStatus # noqa: F401 from px4_msgs.msg._gimbal_device_information import GimbalDeviceInformation # noqa: F401 from px4_msgs.msg._gimbal_device_set_attitude import GimbalDeviceSetAttitude # noqa: F401 from px4_msgs.msg._gimbal_manager_information import GimbalManagerInformation # noqa: F401 from px4_msgs.msg._gimbal_manager_set_attitude import GimbalManagerSetAttitude # noqa: F401 from px4_msgs.msg._gimbal_manager_set_manual_control import GimbalManagerSetManualControl # noqa: F401 from px4_msgs.msg._gimbal_manager_status import GimbalManagerStatus # noqa: F401 from px4_msgs.msg._gps_dump import GpsDump # noqa: F401 from px4_msgs.msg._gps_inject_data import GpsInjectData # noqa: F401 from px4_msgs.msg._heater_status import HeaterStatus # noqa: F401 from px4_msgs.msg._home_position import HomePosition # noqa: F401 from px4_msgs.msg._hover_thrust_estimate import HoverThrustEstimate # noqa: F401 from px4_msgs.msg._input_rc import InputRc # noqa: F401 from px4_msgs.msg._iridiumsbd_status import IridiumsbdStatus # noqa: F401 from px4_msgs.msg._irlock_report import IrlockReport # noqa: F401 from px4_msgs.msg._landing_gear import LandingGear # noqa: F401 from px4_msgs.msg._landing_target_innovations import LandingTargetInnovations # noqa: F401 from px4_msgs.msg._landing_target_pose import LandingTargetPose # noqa: F401 from px4_msgs.msg._led_control import LedControl # noqa: F401 from px4_msgs.msg._log_message import LogMessage # noqa: F401 from px4_msgs.msg._logger_status import LoggerStatus # noqa: F401 from px4_msgs.msg._mag_worker_data import MagWorkerData # noqa: F401 from px4_msgs.msg._manual_control_setpoint import ManualControlSetpoint # noqa: F401 from px4_msgs.msg._manual_control_switches import ManualControlSwitches # noqa: F401 from px4_msgs.msg._mavlink_log import MavlinkLog # noqa: F401 from px4_msgs.msg._mc_virtual_attitude_setpoint import McVirtualAttitudeSetpoint # noqa: F401 from px4_msgs.msg._mission import Mission # noqa: F401 from px4_msgs.msg._mission_result import MissionResult # noqa: F401 from px4_msgs.msg._mount_orientation import MountOrientation # noqa: F401 from px4_msgs.msg._multirotor_motor_limits import MultirotorMotorLimits # noqa: F401 from px4_msgs.msg._navigator_mission_item import NavigatorMissionItem # noqa: F401 from px4_msgs.msg._obstacle_distance import ObstacleDistance # noqa: F401 from px4_msgs.msg._obstacle_distance_fused import ObstacleDistanceFused # noqa: F401 from px4_msgs.msg._offboard_control_mode import OffboardControlMode # noqa: F401 from px4_msgs.msg._onboard_computer_status import OnboardComputerStatus # noqa: F401 from px4_msgs.msg._optical_flow import OpticalFlow # noqa: F401 from px4_msgs.msg._orb_multitest import OrbMultitest # noqa: F401 from px4_msgs.msg._orb_test import OrbTest # noqa: F401 from px4_msgs.msg._orb_test_large import OrbTestLarge # noqa: F401 from px4_msgs.msg._orb_test_medium import OrbTestMedium # noqa: F401 from px4_msgs.msg._orb_test_medium_multi import OrbTestMediumMulti # noqa: F401 from px4_msgs.msg._orb_test_medium_queue import OrbTestMediumQueue # noqa: F401 from px4_msgs.msg._orb_test_medium_queue_poll import OrbTestMediumQueuePoll # noqa: F401 from px4_msgs.msg._orb_test_medium_wrap_around import OrbTestMediumWrapAround # noqa: F401 from px4_msgs.msg._orbit_status import OrbitStatus # noqa: F401 from px4_msgs.msg._parameter_update import ParameterUpdate # noqa: F401 from px4_msgs.msg._ping import Ping # noqa: F401 from px4_msgs.msg._position_controller_landing_status import PositionControllerLandingStatus # noqa: F401 from px4_msgs.msg._position_controller_status import PositionControllerStatus # noqa: F401 from px4_msgs.msg._position_setpoint import PositionSetpoint # noqa: F401 from px4_msgs.msg._position_setpoint_triplet import PositionSetpointTriplet # noqa: F401 from px4_msgs.msg._power_button_state import PowerButtonState # noqa: F401 from px4_msgs.msg._power_monitor import PowerMonitor # noqa: F401 from px4_msgs.msg._pwm_input import PwmInput # noqa: F401 from px4_msgs.msg._px4_io_status import Px4IoStatus # noqa: F401 from px4_msgs.msg._qshell_req import QshellReq # noqa: F401 from px4_msgs.msg._qshell_retval import QshellRetval # noqa: F401 from px4_msgs.msg._radio_status import RadioStatus # noqa: F401 from px4_msgs.msg._rate_ctrl_status import RateCtrlStatus # noqa: F401 from px4_msgs.msg._rc_channels import RcChannels # noqa: F401 from px4_msgs.msg._rc_parameter_map import RcParameterMap # noqa: F401 from px4_msgs.msg._rpm import Rpm # noqa: F401 from px4_msgs.msg._rtl_flight_time import RtlFlightTime # noqa: F401 from px4_msgs.msg._safety import Safety # noqa: F401 from px4_msgs.msg._satellite_info import SatelliteInfo # noqa: F401 from px4_msgs.msg._sensor_accel import SensorAccel # noqa: F401 from px4_msgs.msg._sensor_accel_fifo import SensorAccelFifo # noqa: F401 from px4_msgs.msg._sensor_baro import SensorBaro # noqa: F401 from px4_msgs.msg._sensor_combined import SensorCombined # noqa: F401 from px4_msgs.msg._sensor_correction import SensorCorrection # noqa: F401 from px4_msgs.msg._sensor_gps import SensorGps # noqa: F401 from px4_msgs.msg._sensor_gyro import SensorGyro # noqa: F401 from px4_msgs.msg._sensor_gyro_fft import SensorGyroFft # noqa: F401 from px4_msgs.msg._sensor_gyro_fifo import SensorGyroFifo # noqa: F401 from px4_msgs.msg._sensor_mag import SensorMag # noqa: F401 from px4_msgs.msg._sensor_preflight_mag import SensorPreflightMag # noqa: F401 from px4_msgs.msg._sensor_selection import SensorSelection # noqa: F401 from px4_msgs.msg._sensors_status_imu import SensorsStatusImu # noqa: F401 from px4_msgs.msg._system_power import SystemPower # noqa: F401 from px4_msgs.msg._takeoff_status import TakeoffStatus # noqa: F401 from px4_msgs.msg._task_stack_info import TaskStackInfo # noqa: F401 from px4_msgs.msg._tecs_status import TecsStatus # noqa: F401 from px4_msgs.msg._telemetry_status import TelemetryStatus # noqa: F401 from px4_msgs.msg._test_motor import TestMotor # noqa: F401 from px4_msgs.msg._timesync import Timesync # noqa: F401 from px4_msgs.msg._timesync_status import TimesyncStatus # noqa: F401 from px4_msgs.msg._trajectory_bezier import TrajectoryBezier # noqa: F401 from px4_msgs.msg._trajectory_setpoint import TrajectorySetpoint # noqa: F401 from px4_msgs.msg._trajectory_waypoint import TrajectoryWaypoint # noqa: F401 from px4_msgs.msg._transponder_report import TransponderReport # noqa: F401 from px4_msgs.msg._tune_control import TuneControl # noqa: F401 from px4_msgs.msg._uavcan_parameter_request import UavcanParameterRequest # noqa: F401 from px4_msgs.msg._uavcan_parameter_value import UavcanParameterValue # noqa: F401 from px4_msgs.msg._ulog_stream import UlogStream # noqa: F401 from px4_msgs.msg._ulog_stream_ack import UlogStreamAck # noqa: F401 from px4_msgs.msg._vehicle_acceleration import VehicleAcceleration # noqa: F401 from px4_msgs.msg._vehicle_actuator_setpoint import VehicleActuatorSetpoint # noqa: F401 from px4_msgs.msg._vehicle_air_data import VehicleAirData # noqa: F401 from px4_msgs.msg._vehicle_angular_acceleration import VehicleAngularAcceleration # noqa: F401 from px4_msgs.msg._vehicle_angular_acceleration_setpoint import VehicleAngularAccelerationSetpoint # noqa: F401 from px4_msgs.msg._vehicle_angular_velocity import VehicleAngularVelocity # noqa: F401 from px4_msgs.msg._vehicle_angular_velocity_groundtruth import VehicleAngularVelocityGroundtruth # noqa: F401 from px4_msgs.msg._vehicle_attitude import VehicleAttitude # noqa: F401 from px4_msgs.msg._vehicle_attitude_groundtruth import VehicleAttitudeGroundtruth # noqa: F401 from px4_msgs.msg._vehicle_attitude_setpoint import VehicleAttitudeSetpoint # noqa: F401 from px4_msgs.msg._vehicle_command import VehicleCommand # noqa: F401 from px4_msgs.msg._vehicle_command_ack import VehicleCommandAck # noqa: F401 from px4_msgs.msg._vehicle_constraints import VehicleConstraints # noqa: F401 from px4_msgs.msg._vehicle_control_mode import VehicleControlMode # noqa: F401 from px4_msgs.msg._vehicle_global_position import VehicleGlobalPosition # noqa: F401 from px4_msgs.msg._vehicle_global_position_groundtruth import VehicleGlobalPositionGroundtruth # noqa: F401 from px4_msgs.msg._vehicle_gps_position import VehicleGpsPosition # noqa: F401 from px4_msgs.msg._vehicle_imu import VehicleImu # noqa: F401 from px4_msgs.msg._vehicle_imu_status import VehicleImuStatus # noqa: F401 from px4_msgs.msg._vehicle_land_detected import VehicleLandDetected # noqa: F401 from px4_msgs.msg._vehicle_local_position import VehicleLocalPosition # noqa: F401 from px4_msgs.msg._vehicle_local_position_groundtruth import VehicleLocalPositionGroundtruth # noqa: F401 from px4_msgs.msg._vehicle_local_position_setpoint import VehicleLocalPositionSetpoint # noqa: F401 from px4_msgs.msg._vehicle_magnetometer import VehicleMagnetometer # noqa: F401 from px4_msgs.msg._vehicle_mocap_odometry import VehicleMocapOdometry # noqa: F401 from px4_msgs.msg._vehicle_odometry import VehicleOdometry # noqa: F401 from px4_msgs.msg._vehicle_rates_setpoint import VehicleRatesSetpoint # noqa: F401 from px4_msgs.msg._vehicle_roi import VehicleRoi # noqa: F401 from px4_msgs.msg._vehicle_status import VehicleStatus # noqa: F401 from px4_msgs.msg._vehicle_status_flags import VehicleStatusFlags # noqa: F401 from px4_msgs.msg._vehicle_thrust_setpoint import VehicleThrustSetpoint # noqa: F401 from px4_msgs.msg._vehicle_torque_setpoint import VehicleTorqueSetpoint # noqa: F401 from px4_msgs.msg._vehicle_trajectory_bezier import VehicleTrajectoryBezier # noqa: F401 from px4_msgs.msg._vehicle_trajectory_waypoint import VehicleTrajectoryWaypoint # noqa: F401 from px4_msgs.msg._vehicle_trajectory_waypoint_desired import VehicleTrajectoryWaypointDesired # noqa: F401 from px4_msgs.msg._vehicle_vision_attitude import VehicleVisionAttitude # noqa: F401 from px4_msgs.msg._vehicle_visual_odometry import VehicleVisualOdometry # noqa: F401 from px4_msgs.msg._vtol_vehicle_status import VtolVehicleStatus # noqa: F401 from px4_msgs.msg._wheel_encoders import WheelEncoders # noqa: F401 from px4_msgs.msg._wind import Wind # noqa: F401 from px4_msgs.msg._yaw_estimator_status import YawEstimatorStatus # noqa: F401 <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/position_setpoint__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/PositionSetpoint.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/position_setpoint__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__PositionSetpoint__init(px4_msgs__msg__PositionSetpoint * msg) { if (!msg) { return false; } // timestamp // valid // type // vx // vy // vz // velocity_valid // velocity_frame // alt_valid // lat // lon // alt // yaw // yaw_valid // yawspeed // yawspeed_valid // landing_gear // loiter_radius // loiter_direction // acceptance_radius // cruising_speed // cruising_throttle // disable_weather_vane return true; } void px4_msgs__msg__PositionSetpoint__fini(px4_msgs__msg__PositionSetpoint * msg) { if (!msg) { return; } // timestamp // valid // type // vx // vy // vz // velocity_valid // velocity_frame // alt_valid // lat // lon // alt // yaw // yaw_valid // yawspeed // yawspeed_valid // landing_gear // loiter_radius // loiter_direction // acceptance_radius // cruising_speed // cruising_throttle // disable_weather_vane } px4_msgs__msg__PositionSetpoint * px4_msgs__msg__PositionSetpoint__create() { px4_msgs__msg__PositionSetpoint * msg = (px4_msgs__msg__PositionSetpoint *)malloc(sizeof(px4_msgs__msg__PositionSetpoint)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__PositionSetpoint)); bool success = px4_msgs__msg__PositionSetpoint__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__PositionSetpoint__destroy(px4_msgs__msg__PositionSetpoint * msg) { if (msg) { px4_msgs__msg__PositionSetpoint__fini(msg); } free(msg); } bool px4_msgs__msg__PositionSetpoint__Sequence__init(px4_msgs__msg__PositionSetpoint__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__PositionSetpoint * data = NULL; if (size) { data = (px4_msgs__msg__PositionSetpoint *)calloc(size, sizeof(px4_msgs__msg__PositionSetpoint)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__PositionSetpoint__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__PositionSetpoint__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__PositionSetpoint__Sequence__fini(px4_msgs__msg__PositionSetpoint__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__PositionSetpoint__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__PositionSetpoint__Sequence * px4_msgs__msg__PositionSetpoint__Sequence__create(size_t size) { px4_msgs__msg__PositionSetpoint__Sequence * array = (px4_msgs__msg__PositionSetpoint__Sequence *)malloc(sizeof(px4_msgs__msg__PositionSetpoint__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__PositionSetpoint__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__PositionSetpoint__Sequence__destroy(px4_msgs__msg__PositionSetpoint__Sequence * array) { if (array) { px4_msgs__msg__PositionSetpoint__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_status_flags__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/EstimatorStatusFlags.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_STATUS_FLAGS__STRUCT_H_ #define PX4_MSGS__MSG__ESTIMATOR_STATUS_FLAGS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/EstimatorStatusFlags in the package px4_msgs. typedef struct px4_msgs__msg__EstimatorStatusFlags { uint64_t timestamp; uint64_t timestamp_sample; uint32_t control_status_changes; bool cs_tilt_align; bool cs_yaw_align; bool cs_gps; bool cs_opt_flow; bool cs_mag_hdg; bool cs_mag_3d; bool cs_mag_dec; bool cs_in_air; bool cs_wind; bool cs_baro_hgt; bool cs_rng_hgt; bool cs_gps_hgt; bool cs_ev_pos; bool cs_ev_yaw; bool cs_ev_hgt; bool cs_fuse_beta; bool cs_mag_field_disturbed; bool cs_fixed_wing; bool cs_mag_fault; bool cs_fuse_aspd; bool cs_gnd_effect; bool cs_rng_stuck; bool cs_gps_yaw; bool cs_mag_aligned_in_flight; bool cs_ev_vel; bool cs_synthetic_mag_z; bool cs_vehicle_at_rest; uint32_t fault_status_changes; bool fs_bad_mag_x; bool fs_bad_mag_y; bool fs_bad_mag_z; bool fs_bad_hdg; bool fs_bad_mag_decl; bool fs_bad_airspeed; bool fs_bad_sideslip; bool fs_bad_optflow_x; bool fs_bad_optflow_y; bool fs_bad_vel_n; bool fs_bad_vel_e; bool fs_bad_vel_d; bool fs_bad_pos_n; bool fs_bad_pos_e; bool fs_bad_pos_d; bool fs_bad_acc_bias; bool fs_bad_acc_vertical; bool fs_bad_acc_clipping; uint32_t innovation_fault_status_changes; bool reject_hor_vel; bool reject_ver_vel; bool reject_hor_pos; bool reject_ver_pos; bool reject_mag_x; bool reject_mag_y; bool reject_mag_z; bool reject_yaw; bool reject_airspeed; bool reject_sideslip; bool reject_hagl; bool reject_optflow_x; bool reject_optflow_y; } px4_msgs__msg__EstimatorStatusFlags; // Struct for a sequence of px4_msgs__msg__EstimatorStatusFlags. typedef struct px4_msgs__msg__EstimatorStatusFlags__Sequence { px4_msgs__msg__EstimatorStatusFlags * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__EstimatorStatusFlags__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ESTIMATOR_STATUS_FLAGS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/geofence_result__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/GeofenceResult.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/geofence_result__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/geofence_result__functions.h" #include "px4_msgs/msg/geofence_result__struct.h" #ifdef __cplusplus extern "C" { #endif void GeofenceResult__rosidl_typesupport_introspection_c__GeofenceResult_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__GeofenceResult__init(message_memory); } void GeofenceResult__rosidl_typesupport_introspection_c__GeofenceResult_fini_function(void * message_memory) { px4_msgs__msg__GeofenceResult__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember GeofenceResult__rosidl_typesupport_introspection_c__GeofenceResult_message_member_array[4] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GeofenceResult, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "geofence_violated", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GeofenceResult, geofence_violated), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "geofence_action", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GeofenceResult, geofence_action), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "home_required", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GeofenceResult, home_required), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers GeofenceResult__rosidl_typesupport_introspection_c__GeofenceResult_message_members = { "px4_msgs__msg", // message namespace "GeofenceResult", // message name 4, // number of fields sizeof(px4_msgs__msg__GeofenceResult), GeofenceResult__rosidl_typesupport_introspection_c__GeofenceResult_message_member_array, // message members GeofenceResult__rosidl_typesupport_introspection_c__GeofenceResult_init_function, // function to initialize message memory (memory has to be allocated) GeofenceResult__rosidl_typesupport_introspection_c__GeofenceResult_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t GeofenceResult__rosidl_typesupport_introspection_c__GeofenceResult_message_type_support_handle = { 0, &GeofenceResult__rosidl_typesupport_introspection_c__GeofenceResult_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, GeofenceResult)() { if (!GeofenceResult__rosidl_typesupport_introspection_c__GeofenceResult_message_type_support_handle.typesupport_identifier) { GeofenceResult__rosidl_typesupport_introspection_c__GeofenceResult_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &GeofenceResult__rosidl_typesupport_introspection_c__GeofenceResult_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_information__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/GimbalDeviceInformation.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/gimbal_device_information__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/gimbal_device_information__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::GimbalDeviceInformation & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: vendor_name { cdr << ros_message.vendor_name; } // Member: model_name { cdr << ros_message.model_name; } // Member: custom_name { cdr << ros_message.custom_name; } // Member: firmware_version cdr << ros_message.firmware_version; // Member: hardware_version cdr << ros_message.hardware_version; // Member: uid cdr << ros_message.uid; // Member: cap_flags cdr << ros_message.cap_flags; // Member: custom_cap_flags cdr << ros_message.custom_cap_flags; // Member: roll_min cdr << ros_message.roll_min; // Member: roll_max cdr << ros_message.roll_max; // Member: pitch_min cdr << ros_message.pitch_min; // Member: pitch_max cdr << ros_message.pitch_max; // Member: yaw_min cdr << ros_message.yaw_min; // Member: yaw_max cdr << ros_message.yaw_max; // Member: gimbal_device_compid cdr << ros_message.gimbal_device_compid; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::GimbalDeviceInformation & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: vendor_name { cdr >> ros_message.vendor_name; } // Member: model_name { cdr >> ros_message.model_name; } // Member: custom_name { cdr >> ros_message.custom_name; } // Member: firmware_version cdr >> ros_message.firmware_version; // Member: hardware_version cdr >> ros_message.hardware_version; // Member: uid cdr >> ros_message.uid; // Member: cap_flags cdr >> ros_message.cap_flags; // Member: custom_cap_flags cdr >> ros_message.custom_cap_flags; // Member: roll_min cdr >> ros_message.roll_min; // Member: roll_max cdr >> ros_message.roll_max; // Member: pitch_min cdr >> ros_message.pitch_min; // Member: pitch_max cdr >> ros_message.pitch_max; // Member: yaw_min cdr >> ros_message.yaw_min; // Member: yaw_max cdr >> ros_message.yaw_max; // Member: gimbal_device_compid cdr >> ros_message.gimbal_device_compid; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::GimbalDeviceInformation & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: vendor_name { size_t array_size = 32; size_t item_size = sizeof(ros_message.vendor_name[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: model_name { size_t array_size = 32; size_t item_size = sizeof(ros_message.model_name[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: custom_name { size_t array_size = 32; size_t item_size = sizeof(ros_message.custom_name[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: firmware_version { size_t item_size = sizeof(ros_message.firmware_version); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: hardware_version { size_t item_size = sizeof(ros_message.hardware_version); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: uid { size_t item_size = sizeof(ros_message.uid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cap_flags { size_t item_size = sizeof(ros_message.cap_flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: custom_cap_flags { size_t item_size = sizeof(ros_message.custom_cap_flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: roll_min { size_t item_size = sizeof(ros_message.roll_min); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: roll_max { size_t item_size = sizeof(ros_message.roll_max); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: pitch_min { size_t item_size = sizeof(ros_message.pitch_min); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: pitch_max { size_t item_size = sizeof(ros_message.pitch_max); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: yaw_min { size_t item_size = sizeof(ros_message.yaw_min); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: yaw_max { size_t item_size = sizeof(ros_message.yaw_max); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gimbal_device_compid { size_t item_size = sizeof(ros_message.gimbal_device_compid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_GimbalDeviceInformation( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: vendor_name { size_t array_size = 32; current_alignment += array_size * sizeof(uint8_t); } // Member: model_name { size_t array_size = 32; current_alignment += array_size * sizeof(uint8_t); } // Member: custom_name { size_t array_size = 32; current_alignment += array_size * sizeof(uint8_t); } // Member: firmware_version { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: hardware_version { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: uid { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: cap_flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: custom_cap_flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: roll_min { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: roll_max { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: pitch_min { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: pitch_max { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: yaw_min { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: yaw_max { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: gimbal_device_compid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _GimbalDeviceInformation__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::GimbalDeviceInformation *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _GimbalDeviceInformation__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::GimbalDeviceInformation *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _GimbalDeviceInformation__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::GimbalDeviceInformation *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _GimbalDeviceInformation__max_serialized_size(bool & full_bounded) { return max_serialized_size_GimbalDeviceInformation(full_bounded, 0); } static message_type_support_callbacks_t _GimbalDeviceInformation__callbacks = { "px4_msgs::msg", "GimbalDeviceInformation", _GimbalDeviceInformation__cdr_serialize, _GimbalDeviceInformation__cdr_deserialize, _GimbalDeviceInformation__get_serialized_size, _GimbalDeviceInformation__max_serialized_size }; static rosidl_message_type_support_t _GimbalDeviceInformation__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_GimbalDeviceInformation__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::GimbalDeviceInformation>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_GimbalDeviceInformation__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, GimbalDeviceInformation)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_GimbalDeviceInformation__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_vehicle_constraints.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/VehicleConstraints.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_VehicleConstraints(type): """Metaclass of message 'VehicleConstraints'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.VehicleConstraints') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__vehicle_constraints cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__vehicle_constraints cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__vehicle_constraints cls._TYPE_SUPPORT = module.type_support_msg__msg__vehicle_constraints cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__vehicle_constraints @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class VehicleConstraints(metaclass=Metaclass_VehicleConstraints): """Message class 'VehicleConstraints'.""" __slots__ = [ '_timestamp', '_speed_xy', '_speed_up', '_speed_down', '_want_takeoff', ] _fields_and_field_types = { 'timestamp': 'uint64', 'speed_xy': 'float', 'speed_up': 'float', 'speed_down': 'float', 'want_takeoff': 'boolean', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.speed_xy = kwargs.get('speed_xy', float()) self.speed_up = kwargs.get('speed_up', float()) self.speed_down = kwargs.get('speed_down', float()) self.want_takeoff = kwargs.get('want_takeoff', bool()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.speed_xy != other.speed_xy: return False if self.speed_up != other.speed_up: return False if self.speed_down != other.speed_down: return False if self.want_takeoff != other.want_takeoff: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def speed_xy(self): """Message field 'speed_xy'.""" return self._speed_xy @speed_xy.setter def speed_xy(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'speed_xy' field must be of type 'float'" self._speed_xy = value @property def speed_up(self): """Message field 'speed_up'.""" return self._speed_up @speed_up.setter def speed_up(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'speed_up' field must be of type 'float'" self._speed_up = value @property def speed_down(self): """Message field 'speed_down'.""" return self._speed_down @speed_down.setter def speed_down(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'speed_down' field must be of type 'float'" self._speed_down = value @property def want_takeoff(self): """Message field 'want_takeoff'.""" return self._want_takeoff @want_takeoff.setter def want_takeoff(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'want_takeoff' field must be of type 'bool'" self._want_takeoff = value <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/tune_control__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/TuneControl.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TUNE_CONTROL__STRUCT_H_ #define PX4_MSGS__MSG__TUNE_CONTROL__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'TUNE_ID_STOP'. enum { px4_msgs__msg__TuneControl__TUNE_ID_STOP = 0 }; /// Constant 'TUNE_ID_STARTUP'. enum { px4_msgs__msg__TuneControl__TUNE_ID_STARTUP = 1 }; /// Constant 'TUNE_ID_ERROR'. enum { px4_msgs__msg__TuneControl__TUNE_ID_ERROR = 2 }; /// Constant 'TUNE_ID_NOTIFY_POSITIVE'. enum { px4_msgs__msg__TuneControl__TUNE_ID_NOTIFY_POSITIVE = 3 }; /// Constant 'TUNE_ID_NOTIFY_NEUTRAL'. enum { px4_msgs__msg__TuneControl__TUNE_ID_NOTIFY_NEUTRAL = 4 }; /// Constant 'TUNE_ID_NOTIFY_NEGATIVE'. enum { px4_msgs__msg__TuneControl__TUNE_ID_NOTIFY_NEGATIVE = 5 }; /// Constant 'TUNE_ID_ARMING_WARNING'. enum { px4_msgs__msg__TuneControl__TUNE_ID_ARMING_WARNING = 6 }; /// Constant 'TUNE_ID_BATTERY_WARNING_SLOW'. enum { px4_msgs__msg__TuneControl__TUNE_ID_BATTERY_WARNING_SLOW = 7 }; /// Constant 'TUNE_ID_BATTERY_WARNING_FAST'. enum { px4_msgs__msg__TuneControl__TUNE_ID_BATTERY_WARNING_FAST = 8 }; /// Constant 'TUNE_ID_GPS_WARNING'. enum { px4_msgs__msg__TuneControl__TUNE_ID_GPS_WARNING = 9 }; /// Constant 'TUNE_ID_ARMING_FAILURE'. enum { px4_msgs__msg__TuneControl__TUNE_ID_ARMING_FAILURE = 10 }; /// Constant 'TUNE_ID_PARACHUTE_RELEASE'. enum { px4_msgs__msg__TuneControl__TUNE_ID_PARACHUTE_RELEASE = 11 }; /// Constant 'TUNE_ID_SINGLE_BEEP'. enum { px4_msgs__msg__TuneControl__TUNE_ID_SINGLE_BEEP = 12 }; /// Constant 'TUNE_ID_HOME_SET'. enum { px4_msgs__msg__TuneControl__TUNE_ID_HOME_SET = 13 }; /// Constant 'TUNE_ID_SD_INIT'. enum { px4_msgs__msg__TuneControl__TUNE_ID_SD_INIT = 14 }; /// Constant 'TUNE_ID_SD_ERROR'. enum { px4_msgs__msg__TuneControl__TUNE_ID_SD_ERROR = 15 }; /// Constant 'TUNE_ID_PROG_PX4IO'. enum { px4_msgs__msg__TuneControl__TUNE_ID_PROG_PX4IO = 16 }; /// Constant 'TUNE_ID_PROG_PX4IO_OK'. enum { px4_msgs__msg__TuneControl__TUNE_ID_PROG_PX4IO_OK = 17 }; /// Constant 'TUNE_ID_PROG_PX4IO_ERR'. enum { px4_msgs__msg__TuneControl__TUNE_ID_PROG_PX4IO_ERR = 18 }; /// Constant 'NUMBER_OF_TUNES'. enum { px4_msgs__msg__TuneControl__NUMBER_OF_TUNES = 19 }; /// Constant 'VOLUME_LEVEL_MIN'. enum { px4_msgs__msg__TuneControl__VOLUME_LEVEL_MIN = 0 }; /// Constant 'VOLUME_LEVEL_DEFAULT'. enum { px4_msgs__msg__TuneControl__VOLUME_LEVEL_DEFAULT = 40 }; /// Constant 'VOLUME_LEVEL_MAX'. enum { px4_msgs__msg__TuneControl__VOLUME_LEVEL_MAX = 100 }; /// Constant 'ORB_QUEUE_LENGTH'. enum { px4_msgs__msg__TuneControl__ORB_QUEUE_LENGTH = 4 }; // Struct defined in msg/TuneControl in the package px4_msgs. typedef struct px4_msgs__msg__TuneControl { uint64_t timestamp; uint8_t tune_id; bool tune_override; uint16_t frequency; uint32_t duration; uint32_t silence; uint8_t volume; } px4_msgs__msg__TuneControl; // Struct for a sequence of px4_msgs__msg__TuneControl. typedef struct px4_msgs__msg__TuneControl__Sequence { px4_msgs__msg__TuneControl * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__TuneControl__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__TUNE_CONTROL__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/sensor_gyro_fifo.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_GYRO_FIFO_HPP_ #define PX4_MSGS__MSG__SENSOR_GYRO_FIFO_HPP_ #include "px4_msgs/msg/sensor_gyro_fifo__struct.hpp" #include "px4_msgs/msg/sensor_gyro_fifo__traits.hpp" #endif // PX4_MSGS__MSG__SENSOR_GYRO_FIFO_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/VehicleImu.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/vehicle_imu__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/vehicle_imu__functions.h" #include "px4_msgs/msg/vehicle_imu__struct.h" #ifdef __cplusplus extern "C" { #endif void VehicleImu__rosidl_typesupport_introspection_c__VehicleImu_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__VehicleImu__init(message_memory); } void VehicleImu__rosidl_typesupport_introspection_c__VehicleImu_fini_function(void * message_memory) { px4_msgs__msg__VehicleImu__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember VehicleImu__rosidl_typesupport_introspection_c__VehicleImu_message_member_array[10] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleImu, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleImu, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accel_device_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleImu, accel_device_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gyro_device_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleImu, gyro_device_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "delta_angle", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleImu, delta_angle), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "delta_velocity", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleImu, delta_velocity), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "delta_angle_dt", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleImu, delta_angle_dt), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "delta_velocity_dt", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleImu, delta_velocity_dt), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "delta_velocity_clipping", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleImu, delta_velocity_clipping), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "calibration_count", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleImu, calibration_count), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers VehicleImu__rosidl_typesupport_introspection_c__VehicleImu_message_members = { "px4_msgs__msg", // message namespace "VehicleImu", // message name 10, // number of fields sizeof(px4_msgs__msg__VehicleImu), VehicleImu__rosidl_typesupport_introspection_c__VehicleImu_message_member_array, // message members VehicleImu__rosidl_typesupport_introspection_c__VehicleImu_init_function, // function to initialize message memory (memory has to be allocated) VehicleImu__rosidl_typesupport_introspection_c__VehicleImu_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t VehicleImu__rosidl_typesupport_introspection_c__VehicleImu_message_type_support_handle = { 0, &VehicleImu__rosidl_typesupport_introspection_c__VehicleImu_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, VehicleImu)() { if (!VehicleImu__rosidl_typesupport_introspection_c__VehicleImu_message_type_support_handle.typesupport_identifier) { VehicleImu__rosidl_typesupport_introspection_c__VehicleImu_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &VehicleImu__rosidl_typesupport_introspection_c__VehicleImu_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/cellular_status__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/CellularStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__CELLULAR_STATUS__STRUCT_H_ #define PX4_MSGS__MSG__CELLULAR_STATUS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'CELLULAR_STATUS_FLAG_UNKNOWN'. enum { px4_msgs__msg__CellularStatus__CELLULAR_STATUS_FLAG_UNKNOWN = 0 }; /// Constant 'CELLULAR_STATUS_FLAG_FAILED'. enum { px4_msgs__msg__CellularStatus__CELLULAR_STATUS_FLAG_FAILED = 1 }; /// Constant 'CELLULAR_STATUS_FLAG_INITIALIZING'. enum { px4_msgs__msg__CellularStatus__CELLULAR_STATUS_FLAG_INITIALIZING = 2 }; /// Constant 'CELLULAR_STATUS_FLAG_LOCKED'. enum { px4_msgs__msg__CellularStatus__CELLULAR_STATUS_FLAG_LOCKED = 3 }; /// Constant 'CELLULAR_STATUS_FLAG_DISABLED'. enum { px4_msgs__msg__CellularStatus__CELLULAR_STATUS_FLAG_DISABLED = 4 }; /// Constant 'CELLULAR_STATUS_FLAG_DISABLING'. enum { px4_msgs__msg__CellularStatus__CELLULAR_STATUS_FLAG_DISABLING = 5 }; /// Constant 'CELLULAR_STATUS_FLAG_ENABLING'. enum { px4_msgs__msg__CellularStatus__CELLULAR_STATUS_FLAG_ENABLING = 6 }; /// Constant 'CELLULAR_STATUS_FLAG_ENABLED'. enum { px4_msgs__msg__CellularStatus__CELLULAR_STATUS_FLAG_ENABLED = 7 }; /// Constant 'CELLULAR_STATUS_FLAG_SEARCHING'. enum { px4_msgs__msg__CellularStatus__CELLULAR_STATUS_FLAG_SEARCHING = 8 }; /// Constant 'CELLULAR_STATUS_FLAG_REGISTERED'. enum { px4_msgs__msg__CellularStatus__CELLULAR_STATUS_FLAG_REGISTERED = 9 }; /// Constant 'CELLULAR_STATUS_FLAG_DISCONNECTING'. enum { px4_msgs__msg__CellularStatus__CELLULAR_STATUS_FLAG_DISCONNECTING = 10 }; /// Constant 'CELLULAR_STATUS_FLAG_CONNECTING'. enum { px4_msgs__msg__CellularStatus__CELLULAR_STATUS_FLAG_CONNECTING = 11 }; /// Constant 'CELLULAR_STATUS_FLAG_CONNECTED'. enum { px4_msgs__msg__CellularStatus__CELLULAR_STATUS_FLAG_CONNECTED = 12 }; /// Constant 'CELLULAR_NETWORK_FAILED_REASON_NONE'. enum { px4_msgs__msg__CellularStatus__CELLULAR_NETWORK_FAILED_REASON_NONE = 0 }; /// Constant 'CELLULAR_NETWORK_FAILED_REASON_UNKNOWN'. enum { px4_msgs__msg__CellularStatus__CELLULAR_NETWORK_FAILED_REASON_UNKNOWN = 1 }; /// Constant 'CELLULAR_NETWORK_FAILED_REASON_SIM_MISSING'. enum { px4_msgs__msg__CellularStatus__CELLULAR_NETWORK_FAILED_REASON_SIM_MISSING = 2 }; /// Constant 'CELLULAR_NETWORK_FAILED_REASON_SIM_ERROR'. enum { px4_msgs__msg__CellularStatus__CELLULAR_NETWORK_FAILED_REASON_SIM_ERROR = 3 }; // Struct defined in msg/CellularStatus in the package px4_msgs. typedef struct px4_msgs__msg__CellularStatus { uint64_t timestamp; uint16_t status; uint8_t failure_reason; uint8_t type; uint8_t quality; uint16_t mcc; uint16_t mnc; uint16_t lac; } px4_msgs__msg__CellularStatus; // Struct for a sequence of px4_msgs__msg__CellularStatus. typedef struct px4_msgs__msg__CellularStatus__Sequence { px4_msgs__msg__CellularStatus * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__CellularStatus__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__CELLULAR_STATUS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/control_allocator_status__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/ControlAllocatorStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__CONTROL_ALLOCATOR_STATUS__STRUCT_H_ #define PX4_MSGS__MSG__CONTROL_ALLOCATOR_STATUS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'ACTUATOR_SATURATION_OK'. enum { px4_msgs__msg__ControlAllocatorStatus__ACTUATOR_SATURATION_OK = 0 }; /// Constant 'ACTUATOR_SATURATION_UPPER_DYN'. enum { px4_msgs__msg__ControlAllocatorStatus__ACTUATOR_SATURATION_UPPER_DYN = 1 }; /// Constant 'ACTUATOR_SATURATION_UPPER'. enum { px4_msgs__msg__ControlAllocatorStatus__ACTUATOR_SATURATION_UPPER = 2 }; /// Constant 'ACTUATOR_SATURATION_LOWER_DYN'. enum { px4_msgs__msg__ControlAllocatorStatus__ACTUATOR_SATURATION_LOWER_DYN = -1 }; /// Constant 'ACTUATOR_SATURATION_LOWER'. enum { px4_msgs__msg__ControlAllocatorStatus__ACTUATOR_SATURATION_LOWER = -2 }; // Struct defined in msg/ControlAllocatorStatus in the package px4_msgs. typedef struct px4_msgs__msg__ControlAllocatorStatus { uint64_t timestamp; bool torque_setpoint_achieved; float allocated_torque[3]; float unallocated_torque[3]; bool thrust_setpoint_achieved; float allocated_thrust[3]; float unallocated_thrust[3]; int8_t actuator_saturation[16]; } px4_msgs__msg__ControlAllocatorStatus; // Struct for a sequence of px4_msgs__msg__ControlAllocatorStatus. typedef struct px4_msgs__msg__ControlAllocatorStatus__Sequence { px4_msgs__msg__ControlAllocatorStatus * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__ControlAllocatorStatus__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__CONTROL_ALLOCATOR_STATUS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/irlock_report.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/IrlockReport.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__IRLOCK_REPORT_H_ #define PX4_MSGS__MSG__IRLOCK_REPORT_H_ #include "px4_msgs/msg/irlock_report__struct.h" #include "px4_msgs/msg/irlock_report__functions.h" #include "px4_msgs/msg/irlock_report__type_support.h" #endif // PX4_MSGS__MSG__IRLOCK_REPORT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/gimbal_device_attitude_status.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/GimbalDeviceAttitudeStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GIMBAL_DEVICE_ATTITUDE_STATUS_H_ #define PX4_MSGS__MSG__GIMBAL_DEVICE_ATTITUDE_STATUS_H_ #include "px4_msgs/msg/gimbal_device_attitude_status__struct.h" #include "px4_msgs/msg/gimbal_device_attitude_status__functions.h" #include "px4_msgs/msg/gimbal_device_attitude_status__type_support.h" #endif // PX4_MSGS__MSG__GIMBAL_DEVICE_ATTITUDE_STATUS_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_local_position__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/EstimatorLocalPosition.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/estimator_local_position__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__EstimatorLocalPosition__init(px4_msgs__msg__EstimatorLocalPosition * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // xy_valid // z_valid // v_xy_valid // v_z_valid // x // y // z // delta_xy // xy_reset_counter // delta_z // z_reset_counter // vx // vy // vz // z_deriv // delta_vxy // vxy_reset_counter // delta_vz // vz_reset_counter // ax // ay // az // heading // delta_heading // heading_reset_counter // xy_global // z_global // ref_timestamp // ref_lat // ref_lon // ref_alt // dist_bottom // dist_bottom_valid // dist_bottom_sensor_bitfield // eph // epv // evh // evv // vxy_max // vz_max // hagl_min // hagl_max return true; } void px4_msgs__msg__EstimatorLocalPosition__fini(px4_msgs__msg__EstimatorLocalPosition * msg) { if (!msg) { return; } // timestamp // timestamp_sample // xy_valid // z_valid // v_xy_valid // v_z_valid // x // y // z // delta_xy // xy_reset_counter // delta_z // z_reset_counter // vx // vy // vz // z_deriv // delta_vxy // vxy_reset_counter // delta_vz // vz_reset_counter // ax // ay // az // heading // delta_heading // heading_reset_counter // xy_global // z_global // ref_timestamp // ref_lat // ref_lon // ref_alt // dist_bottom // dist_bottom_valid // dist_bottom_sensor_bitfield // eph // epv // evh // evv // vxy_max // vz_max // hagl_min // hagl_max } px4_msgs__msg__EstimatorLocalPosition * px4_msgs__msg__EstimatorLocalPosition__create() { px4_msgs__msg__EstimatorLocalPosition * msg = (px4_msgs__msg__EstimatorLocalPosition *)malloc(sizeof(px4_msgs__msg__EstimatorLocalPosition)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__EstimatorLocalPosition)); bool success = px4_msgs__msg__EstimatorLocalPosition__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__EstimatorLocalPosition__destroy(px4_msgs__msg__EstimatorLocalPosition * msg) { if (msg) { px4_msgs__msg__EstimatorLocalPosition__fini(msg); } free(msg); } bool px4_msgs__msg__EstimatorLocalPosition__Sequence__init(px4_msgs__msg__EstimatorLocalPosition__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__EstimatorLocalPosition * data = NULL; if (size) { data = (px4_msgs__msg__EstimatorLocalPosition *)calloc(size, sizeof(px4_msgs__msg__EstimatorLocalPosition)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__EstimatorLocalPosition__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__EstimatorLocalPosition__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__EstimatorLocalPosition__Sequence__fini(px4_msgs__msg__EstimatorLocalPosition__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__EstimatorLocalPosition__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__EstimatorLocalPosition__Sequence * px4_msgs__msg__EstimatorLocalPosition__Sequence__create(size_t size) { px4_msgs__msg__EstimatorLocalPosition__Sequence * array = (px4_msgs__msg__EstimatorLocalPosition__Sequence *)malloc(sizeof(px4_msgs__msg__EstimatorLocalPosition__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__EstimatorLocalPosition__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__EstimatorLocalPosition__Sequence__destroy(px4_msgs__msg__EstimatorLocalPosition__Sequence * array) { if (array) { px4_msgs__msg__EstimatorLocalPosition__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/onboard_computer_status__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/OnboardComputerStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/onboard_computer_status__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/onboard_computer_status__struct.h" #include "px4_msgs/msg/onboard_computer_status__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _OnboardComputerStatus__ros_msg_type = px4_msgs__msg__OnboardComputerStatus; static bool _OnboardComputerStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _OnboardComputerStatus__ros_msg_type * ros_message = static_cast<const _OnboardComputerStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: uptime { cdr << ros_message->uptime; } // Field name: type { cdr << ros_message->type; } // Field name: cpu_cores { size_t size = 8; auto array_ptr = ros_message->cpu_cores; cdr.serializeArray(array_ptr, size); } // Field name: cpu_combined { size_t size = 10; auto array_ptr = ros_message->cpu_combined; cdr.serializeArray(array_ptr, size); } // Field name: gpu_cores { size_t size = 4; auto array_ptr = ros_message->gpu_cores; cdr.serializeArray(array_ptr, size); } // Field name: gpu_combined { size_t size = 10; auto array_ptr = ros_message->gpu_combined; cdr.serializeArray(array_ptr, size); } // Field name: temperature_board { cdr << ros_message->temperature_board; } // Field name: temperature_core { size_t size = 8; auto array_ptr = ros_message->temperature_core; cdr.serializeArray(array_ptr, size); } // Field name: fan_speed { size_t size = 4; auto array_ptr = ros_message->fan_speed; cdr.serializeArray(array_ptr, size); } // Field name: ram_usage { cdr << ros_message->ram_usage; } // Field name: ram_total { cdr << ros_message->ram_total; } // Field name: storage_type { size_t size = 4; auto array_ptr = ros_message->storage_type; cdr.serializeArray(array_ptr, size); } // Field name: storage_usage { size_t size = 4; auto array_ptr = ros_message->storage_usage; cdr.serializeArray(array_ptr, size); } // Field name: storage_total { size_t size = 4; auto array_ptr = ros_message->storage_total; cdr.serializeArray(array_ptr, size); } // Field name: link_type { size_t size = 6; auto array_ptr = ros_message->link_type; cdr.serializeArray(array_ptr, size); } // Field name: link_tx_rate { size_t size = 6; auto array_ptr = ros_message->link_tx_rate; cdr.serializeArray(array_ptr, size); } // Field name: link_rx_rate { size_t size = 6; auto array_ptr = ros_message->link_rx_rate; cdr.serializeArray(array_ptr, size); } // Field name: link_tx_max { size_t size = 6; auto array_ptr = ros_message->link_tx_max; cdr.serializeArray(array_ptr, size); } // Field name: link_rx_max { size_t size = 6; auto array_ptr = ros_message->link_rx_max; cdr.serializeArray(array_ptr, size); } return true; } static bool _OnboardComputerStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _OnboardComputerStatus__ros_msg_type * ros_message = static_cast<_OnboardComputerStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: uptime { cdr >> ros_message->uptime; } // Field name: type { cdr >> ros_message->type; } // Field name: cpu_cores { size_t size = 8; auto array_ptr = ros_message->cpu_cores; cdr.deserializeArray(array_ptr, size); } // Field name: cpu_combined { size_t size = 10; auto array_ptr = ros_message->cpu_combined; cdr.deserializeArray(array_ptr, size); } // Field name: gpu_cores { size_t size = 4; auto array_ptr = ros_message->gpu_cores; cdr.deserializeArray(array_ptr, size); } // Field name: gpu_combined { size_t size = 10; auto array_ptr = ros_message->gpu_combined; cdr.deserializeArray(array_ptr, size); } // Field name: temperature_board { cdr >> ros_message->temperature_board; } // Field name: temperature_core { size_t size = 8; auto array_ptr = ros_message->temperature_core; cdr.deserializeArray(array_ptr, size); } // Field name: fan_speed { size_t size = 4; auto array_ptr = ros_message->fan_speed; cdr.deserializeArray(array_ptr, size); } // Field name: ram_usage { cdr >> ros_message->ram_usage; } // Field name: ram_total { cdr >> ros_message->ram_total; } // Field name: storage_type { size_t size = 4; auto array_ptr = ros_message->storage_type; cdr.deserializeArray(array_ptr, size); } // Field name: storage_usage { size_t size = 4; auto array_ptr = ros_message->storage_usage; cdr.deserializeArray(array_ptr, size); } // Field name: storage_total { size_t size = 4; auto array_ptr = ros_message->storage_total; cdr.deserializeArray(array_ptr, size); } // Field name: link_type { size_t size = 6; auto array_ptr = ros_message->link_type; cdr.deserializeArray(array_ptr, size); } // Field name: link_tx_rate { size_t size = 6; auto array_ptr = ros_message->link_tx_rate; cdr.deserializeArray(array_ptr, size); } // Field name: link_rx_rate { size_t size = 6; auto array_ptr = ros_message->link_rx_rate; cdr.deserializeArray(array_ptr, size); } // Field name: link_tx_max { size_t size = 6; auto array_ptr = ros_message->link_tx_max; cdr.deserializeArray(array_ptr, size); } // Field name: link_rx_max { size_t size = 6; auto array_ptr = ros_message->link_rx_max; cdr.deserializeArray(array_ptr, size); } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__OnboardComputerStatus( const void * untyped_ros_message, size_t current_alignment) { const _OnboardComputerStatus__ros_msg_type * ros_message = static_cast<const _OnboardComputerStatus__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name uptime { size_t item_size = sizeof(ros_message->uptime); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name type { size_t item_size = sizeof(ros_message->type); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cpu_cores { size_t array_size = 8; auto array_ptr = ros_message->cpu_cores; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cpu_combined { size_t array_size = 10; auto array_ptr = ros_message->cpu_combined; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gpu_cores { size_t array_size = 4; auto array_ptr = ros_message->gpu_cores; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gpu_combined { size_t array_size = 10; auto array_ptr = ros_message->gpu_combined; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name temperature_board { size_t item_size = sizeof(ros_message->temperature_board); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name temperature_core { size_t array_size = 8; auto array_ptr = ros_message->temperature_core; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name fan_speed { size_t array_size = 4; auto array_ptr = ros_message->fan_speed; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name ram_usage { size_t item_size = sizeof(ros_message->ram_usage); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name ram_total { size_t item_size = sizeof(ros_message->ram_total); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name storage_type { size_t array_size = 4; auto array_ptr = ros_message->storage_type; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name storage_usage { size_t array_size = 4; auto array_ptr = ros_message->storage_usage; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name storage_total { size_t array_size = 4; auto array_ptr = ros_message->storage_total; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name link_type { size_t array_size = 6; auto array_ptr = ros_message->link_type; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name link_tx_rate { size_t array_size = 6; auto array_ptr = ros_message->link_tx_rate; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name link_rx_rate { size_t array_size = 6; auto array_ptr = ros_message->link_rx_rate; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name link_tx_max { size_t array_size = 6; auto array_ptr = ros_message->link_tx_max; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name link_rx_max { size_t array_size = 6; auto array_ptr = ros_message->link_rx_max; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _OnboardComputerStatus__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__OnboardComputerStatus( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__OnboardComputerStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: uptime { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: type { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: cpu_cores { size_t array_size = 8; current_alignment += array_size * sizeof(uint8_t); } // member: cpu_combined { size_t array_size = 10; current_alignment += array_size * sizeof(uint8_t); } // member: gpu_cores { size_t array_size = 4; current_alignment += array_size * sizeof(uint8_t); } // member: gpu_combined { size_t array_size = 10; current_alignment += array_size * sizeof(uint8_t); } // member: temperature_board { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: temperature_core { size_t array_size = 8; current_alignment += array_size * sizeof(uint8_t); } // member: fan_speed { size_t array_size = 4; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: ram_usage { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: ram_total { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: storage_type { size_t array_size = 4; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: storage_usage { size_t array_size = 4; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: storage_total { size_t array_size = 4; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: link_type { size_t array_size = 6; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: link_tx_rate { size_t array_size = 6; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: link_rx_rate { size_t array_size = 6; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: link_tx_max { size_t array_size = 6; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: link_rx_max { size_t array_size = 6; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _OnboardComputerStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__OnboardComputerStatus( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_OnboardComputerStatus = { "px4_msgs::msg", "OnboardComputerStatus", _OnboardComputerStatus__cdr_serialize, _OnboardComputerStatus__cdr_deserialize, _OnboardComputerStatus__get_serialized_size, _OnboardComputerStatus__max_serialized_size }; static rosidl_message_type_support_t _OnboardComputerStatus__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_OnboardComputerStatus, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, OnboardComputerStatus)() { return &_OnboardComputerStatus__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_timesync_status_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/TimesyncStatus.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/timesync_status__struct.h" #include "px4_msgs/msg/timesync_status__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__timesync_status__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[45]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._timesync_status.TimesyncStatus", full_classname_dest, 44) == 0); } px4_msgs__msg__TimesyncStatus * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // remote_timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "remote_timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->remote_timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // observed_offset PyObject * field = PyObject_GetAttrString(_pymsg, "observed_offset"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->observed_offset = PyLong_AsLongLong(field); Py_DECREF(field); } { // estimated_offset PyObject * field = PyObject_GetAttrString(_pymsg, "estimated_offset"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->estimated_offset = PyLong_AsLongLong(field); Py_DECREF(field); } { // round_trip_time PyObject * field = PyObject_GetAttrString(_pymsg, "round_trip_time"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->round_trip_time = PyLong_AsUnsignedLong(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__timesync_status__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of TimesyncStatus */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._timesync_status"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "TimesyncStatus"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__TimesyncStatus * ros_message = (px4_msgs__msg__TimesyncStatus *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // remote_timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->remote_timestamp); { int rc = PyObject_SetAttrString(_pymessage, "remote_timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // observed_offset PyObject * field = NULL; field = PyLong_FromLongLong(ros_message->observed_offset); { int rc = PyObject_SetAttrString(_pymessage, "observed_offset", field); Py_DECREF(field); if (rc) { return NULL; } } } { // estimated_offset PyObject * field = NULL; field = PyLong_FromLongLong(ros_message->estimated_offset); { int rc = PyObject_SetAttrString(_pymessage, "estimated_offset", field); Py_DECREF(field); if (rc) { return NULL; } } } { // round_trip_time PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->round_trip_time); { int rc = PyObject_SetAttrString(_pymessage, "round_trip_time", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/geofence_result__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/GeofenceResult.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GEOFENCE_RESULT__STRUCT_H_ #define PX4_MSGS__MSG__GEOFENCE_RESULT__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'GF_ACTION_NONE'. enum { px4_msgs__msg__GeofenceResult__GF_ACTION_NONE = 0 }; /// Constant 'GF_ACTION_WARN'. enum { px4_msgs__msg__GeofenceResult__GF_ACTION_WARN = 1 }; /// Constant 'GF_ACTION_LOITER'. enum { px4_msgs__msg__GeofenceResult__GF_ACTION_LOITER = 2 }; /// Constant 'GF_ACTION_RTL'. enum { px4_msgs__msg__GeofenceResult__GF_ACTION_RTL = 3 }; /// Constant 'GF_ACTION_TERMINATE'. enum { px4_msgs__msg__GeofenceResult__GF_ACTION_TERMINATE = 4 }; /// Constant 'GF_ACTION_LAND'. enum { px4_msgs__msg__GeofenceResult__GF_ACTION_LAND = 5 }; // Struct defined in msg/GeofenceResult in the package px4_msgs. typedef struct px4_msgs__msg__GeofenceResult { uint64_t timestamp; bool geofence_violated; uint8_t geofence_action; bool home_required; } px4_msgs__msg__GeofenceResult; // Struct for a sequence of px4_msgs__msg__GeofenceResult. typedef struct px4_msgs__msg__GeofenceResult__Sequence { px4_msgs__msg__GeofenceResult * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__GeofenceResult__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__GEOFENCE_RESULT__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/orb_test_medium.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/OrbTestMedium.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORB_TEST_MEDIUM_H_ #define PX4_MSGS__MSG__ORB_TEST_MEDIUM_H_ #include "px4_msgs/msg/orb_test_medium__struct.h" #include "px4_msgs/msg/orb_test_medium__functions.h" #include "px4_msgs/msg/orb_test_medium__type_support.h" #endif // PX4_MSGS__MSG__ORB_TEST_MEDIUM_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ANGULAR_ACCELERATION_SETPOINT_HPP_ #define PX4_MSGS__MSG__VEHICLE_ANGULAR_ACCELERATION_SETPOINT_HPP_ #include "px4_msgs/msg/vehicle_angular_acceleration_setpoint__struct.hpp" #include "px4_msgs/msg/vehicle_angular_acceleration_setpoint__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_ANGULAR_ACCELERATION_SETPOINT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleVisionAttitude.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/vehicle_vision_attitude__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void VehicleVisionAttitude_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::VehicleVisionAttitude(_init); } void VehicleVisionAttitude_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::VehicleVisionAttitude *>(message_memory); typed_message->~VehicleVisionAttitude(); } size_t size_function__VehicleVisionAttitude__q(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__VehicleVisionAttitude__q(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 4> *>(untyped_member); return &member[index]; } void * get_function__VehicleVisionAttitude__q(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 4> *>(untyped_member); return &member[index]; } size_t size_function__VehicleVisionAttitude__delta_q_reset(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__VehicleVisionAttitude__delta_q_reset(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 4> *>(untyped_member); return &member[index]; } void * get_function__VehicleVisionAttitude__delta_q_reset(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 4> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember VehicleVisionAttitude_message_member_array[5] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleVisionAttitude, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleVisionAttitude, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "q", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleVisionAttitude, q), // bytes offset in struct nullptr, // default value size_function__VehicleVisionAttitude__q, // size() function pointer get_const_function__VehicleVisionAttitude__q, // get_const(index) function pointer get_function__VehicleVisionAttitude__q, // get(index) function pointer nullptr // resize(index) function pointer }, { "delta_q_reset", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleVisionAttitude, delta_q_reset), // bytes offset in struct nullptr, // default value size_function__VehicleVisionAttitude__delta_q_reset, // size() function pointer get_const_function__VehicleVisionAttitude__delta_q_reset, // get_const(index) function pointer get_function__VehicleVisionAttitude__delta_q_reset, // get(index) function pointer nullptr // resize(index) function pointer }, { "quat_reset_counter", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleVisionAttitude, quat_reset_counter), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers VehicleVisionAttitude_message_members = { "px4_msgs::msg", // message namespace "VehicleVisionAttitude", // message name 5, // number of fields sizeof(px4_msgs::msg::VehicleVisionAttitude), VehicleVisionAttitude_message_member_array, // message members VehicleVisionAttitude_init_function, // function to initialize message memory (memory has to be allocated) VehicleVisionAttitude_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t VehicleVisionAttitude_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &VehicleVisionAttitude_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleVisionAttitude>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleVisionAttitude_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, VehicleVisionAttitude)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleVisionAttitude_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleMocapOdometry.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/vehicle_mocap_odometry__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void VehicleMocapOdometry_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::VehicleMocapOdometry(_init); } void VehicleMocapOdometry_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::VehicleMocapOdometry *>(message_memory); typed_message->~VehicleMocapOdometry(); } size_t size_function__VehicleMocapOdometry__q(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__VehicleMocapOdometry__q(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 4> *>(untyped_member); return &member[index]; } void * get_function__VehicleMocapOdometry__q(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 4> *>(untyped_member); return &member[index]; } size_t size_function__VehicleMocapOdometry__q_offset(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__VehicleMocapOdometry__q_offset(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 4> *>(untyped_member); return &member[index]; } void * get_function__VehicleMocapOdometry__q_offset(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 4> *>(untyped_member); return &member[index]; } size_t size_function__VehicleMocapOdometry__pose_covariance(const void * untyped_member) { (void)untyped_member; return 21; } const void * get_const_function__VehicleMocapOdometry__pose_covariance(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 21> *>(untyped_member); return &member[index]; } void * get_function__VehicleMocapOdometry__pose_covariance(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 21> *>(untyped_member); return &member[index]; } size_t size_function__VehicleMocapOdometry__velocity_covariance(const void * untyped_member) { (void)untyped_member; return 21; } const void * get_const_function__VehicleMocapOdometry__velocity_covariance(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 21> *>(untyped_member); return &member[index]; } void * get_function__VehicleMocapOdometry__velocity_covariance(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 21> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember VehicleMocapOdometry_message_member_array[17] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleMocapOdometry, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleMocapOdometry, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "local_frame", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleMocapOdometry, local_frame), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "x", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleMocapOdometry, x), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "y", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleMocapOdometry, y), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "z", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleMocapOdometry, z), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "q", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleMocapOdometry, q), // bytes offset in struct nullptr, // default value size_function__VehicleMocapOdometry__q, // size() function pointer get_const_function__VehicleMocapOdometry__q, // get_const(index) function pointer get_function__VehicleMocapOdometry__q, // get(index) function pointer nullptr // resize(index) function pointer }, { "q_offset", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleMocapOdometry, q_offset), // bytes offset in struct nullptr, // default value size_function__VehicleMocapOdometry__q_offset, // size() function pointer get_const_function__VehicleMocapOdometry__q_offset, // get_const(index) function pointer get_function__VehicleMocapOdometry__q_offset, // get(index) function pointer nullptr // resize(index) function pointer }, { "pose_covariance", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 21, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleMocapOdometry, pose_covariance), // bytes offset in struct nullptr, // default value size_function__VehicleMocapOdometry__pose_covariance, // size() function pointer get_const_function__VehicleMocapOdometry__pose_covariance, // get_const(index) function pointer get_function__VehicleMocapOdometry__pose_covariance, // get(index) function pointer nullptr // resize(index) function pointer }, { "velocity_frame", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleMocapOdometry, velocity_frame), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vx", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleMocapOdometry, vx), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vy", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleMocapOdometry, vy), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vz", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleMocapOdometry, vz), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rollspeed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleMocapOdometry, rollspeed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "pitchspeed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleMocapOdometry, pitchspeed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "yawspeed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleMocapOdometry, yawspeed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "velocity_covariance", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 21, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleMocapOdometry, velocity_covariance), // bytes offset in struct nullptr, // default value size_function__VehicleMocapOdometry__velocity_covariance, // size() function pointer get_const_function__VehicleMocapOdometry__velocity_covariance, // get_const(index) function pointer get_function__VehicleMocapOdometry__velocity_covariance, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers VehicleMocapOdometry_message_members = { "px4_msgs::msg", // message namespace "VehicleMocapOdometry", // message name 17, // number of fields sizeof(px4_msgs::msg::VehicleMocapOdometry), VehicleMocapOdometry_message_member_array, // message members VehicleMocapOdometry_init_function, // function to initialize message memory (memory has to be allocated) VehicleMocapOdometry_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t VehicleMocapOdometry_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &VehicleMocapOdometry_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleMocapOdometry>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleMocapOdometry_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, VehicleMocapOdometry)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleMocapOdometry_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/orb_test_large__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/OrbTestLarge.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORB_TEST_LARGE__STRUCT_H_ #define PX4_MSGS__MSG__ORB_TEST_LARGE__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/OrbTestLarge in the package px4_msgs. typedef struct px4_msgs__msg__OrbTestLarge { uint64_t timestamp; int32_t val; uint8_t junk[512]; } px4_msgs__msg__OrbTestLarge; // Struct for a sequence of px4_msgs__msg__OrbTestLarge. typedef struct px4_msgs__msg__OrbTestLarge__Sequence { px4_msgs__msg__OrbTestLarge * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__OrbTestLarge__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ORB_TEST_LARGE__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/esc_status.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESC_STATUS_HPP_ #define PX4_MSGS__MSG__ESC_STATUS_HPP_ #include "px4_msgs/msg/esc_status__struct.hpp" #include "px4_msgs/msg/esc_status__traits.hpp" #endif // PX4_MSGS__MSG__ESC_STATUS_HPP_ <file_sep>/build/offboard_ibqr/colcon_command_prefix_build.sh # generated from colcon_core/shell/template/command_prefix.sh.em . "/home/navlab-tx2-4/px4_ros_com_ros2/install/px4_msgs/share/px4_msgs/package.sh" <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/esc_report.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/EscReport.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESC_REPORT_H_ #define PX4_MSGS__MSG__ESC_REPORT_H_ #include "px4_msgs/msg/esc_report__struct.h" #include "px4_msgs/msg/esc_report__functions.h" #include "px4_msgs/msg/esc_report__type_support.h" #endif // PX4_MSGS__MSG__ESC_REPORT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleCommand.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/vehicle_command__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void VehicleCommand_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::VehicleCommand(_init); } void VehicleCommand_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::VehicleCommand *>(message_memory); typed_message->~VehicleCommand(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember VehicleCommand_message_member_array[15] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleCommand, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "param1", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleCommand, param1), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "param2", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleCommand, param2), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "param3", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleCommand, param3), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "param4", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleCommand, param4), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "param5", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_DOUBLE, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleCommand, param5), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "param6", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_DOUBLE, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleCommand, param6), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "param7", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleCommand, param7), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "command", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleCommand, command), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "target_system", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleCommand, target_system), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "target_component", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleCommand, target_component), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "source_system", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleCommand, source_system), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "source_component", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleCommand, source_component), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "confirmation", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleCommand, confirmation), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "from_external", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleCommand, from_external), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers VehicleCommand_message_members = { "px4_msgs::msg", // message namespace "VehicleCommand", // message name 15, // number of fields sizeof(px4_msgs::msg::VehicleCommand), VehicleCommand_message_member_array, // message members VehicleCommand_init_function, // function to initialize message memory (memory has to be allocated) VehicleCommand_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t VehicleCommand_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &VehicleCommand_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleCommand>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleCommand_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, VehicleCommand)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleCommand_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/collision_report__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/CollisionReport.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__COLLISION_REPORT__STRUCT_H_ #define PX4_MSGS__MSG__COLLISION_REPORT__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/CollisionReport in the package px4_msgs. typedef struct px4_msgs__msg__CollisionReport { uint64_t timestamp; uint8_t src; uint32_t id; uint8_t action; uint8_t threat_level; float time_to_minimum_delta; float altitude_minimum_delta; float horizontal_minimum_delta; } px4_msgs__msg__CollisionReport; // Struct for a sequence of px4_msgs__msg__CollisionReport. typedef struct px4_msgs__msg__CollisionReport__Sequence { px4_msgs__msg__CollisionReport * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__CollisionReport__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__COLLISION_REPORT__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/orbit_status__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/OrbitStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORBIT_STATUS__STRUCT_H_ #define PX4_MSGS__MSG__ORBIT_STATUS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'ORBIT_YAW_BEHAVIOUR_HOLD_FRONT_TO_CIRCLE_CENTER'. enum { px4_msgs__msg__OrbitStatus__ORBIT_YAW_BEHAVIOUR_HOLD_FRONT_TO_CIRCLE_CENTER = 0 }; /// Constant 'ORBIT_YAW_BEHAVIOUR_HOLD_INITIAL_HEADING'. enum { px4_msgs__msg__OrbitStatus__ORBIT_YAW_BEHAVIOUR_HOLD_INITIAL_HEADING = 1 }; /// Constant 'ORBIT_YAW_BEHAVIOUR_UNCONTROLLED'. enum { px4_msgs__msg__OrbitStatus__ORBIT_YAW_BEHAVIOUR_UNCONTROLLED = 2 }; /// Constant 'ORBIT_YAW_BEHAVIOUR_HOLD_FRONT_TANGENT_TO_CIRCLE'. enum { px4_msgs__msg__OrbitStatus__ORBIT_YAW_BEHAVIOUR_HOLD_FRONT_TANGENT_TO_CIRCLE = 3 }; /// Constant 'ORBIT_YAW_BEHAVIOUR_RC_CONTROLLED'. enum { px4_msgs__msg__OrbitStatus__ORBIT_YAW_BEHAVIOUR_RC_CONTROLLED = 4 }; // Struct defined in msg/OrbitStatus in the package px4_msgs. typedef struct px4_msgs__msg__OrbitStatus { uint64_t timestamp; float radius; uint8_t frame; double x; double y; float z; uint8_t yaw_behaviour; } px4_msgs__msg__OrbitStatus; // Struct for a sequence of px4_msgs__msg__OrbitStatus. typedef struct px4_msgs__msg__OrbitStatus__Sequence { px4_msgs__msg__OrbitStatus * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__OrbitStatus__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ORBIT_STATUS__STRUCT_H_ <file_sep>/build/px4_ros_com/CMakeFiles/debug_vect_advertiser.dir/cmake_clean.cmake file(REMOVE_RECURSE "CMakeFiles/debug_vect_advertiser.dir/src/examples/advertisers/debug_vect_advertiser.cpp.o" "debug_vect_advertiser.pdb" "debug_vect_advertiser" ) # Per-language clean rules from dependency scanning. foreach(lang CXX) include(CMakeFiles/debug_vect_advertiser.dir/cmake_clean_${lang}.cmake OPTIONAL) endforeach() <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position_groundtruth__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleGlobalPositionGroundtruth.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_global_position_groundtruth__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/vehicle_global_position_groundtruth__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::VehicleGlobalPositionGroundtruth & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: timestamp_sample cdr << ros_message.timestamp_sample; // Member: lat cdr << ros_message.lat; // Member: lon cdr << ros_message.lon; // Member: alt cdr << ros_message.alt; // Member: alt_ellipsoid cdr << ros_message.alt_ellipsoid; // Member: delta_alt cdr << ros_message.delta_alt; // Member: lat_lon_reset_counter cdr << ros_message.lat_lon_reset_counter; // Member: alt_reset_counter cdr << ros_message.alt_reset_counter; // Member: eph cdr << ros_message.eph; // Member: epv cdr << ros_message.epv; // Member: terrain_alt cdr << ros_message.terrain_alt; // Member: terrain_alt_valid cdr << (ros_message.terrain_alt_valid ? true : false); // Member: dead_reckoning cdr << (ros_message.dead_reckoning ? true : false); return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::VehicleGlobalPositionGroundtruth & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: timestamp_sample cdr >> ros_message.timestamp_sample; // Member: lat cdr >> ros_message.lat; // Member: lon cdr >> ros_message.lon; // Member: alt cdr >> ros_message.alt; // Member: alt_ellipsoid cdr >> ros_message.alt_ellipsoid; // Member: delta_alt cdr >> ros_message.delta_alt; // Member: lat_lon_reset_counter cdr >> ros_message.lat_lon_reset_counter; // Member: alt_reset_counter cdr >> ros_message.alt_reset_counter; // Member: eph cdr >> ros_message.eph; // Member: epv cdr >> ros_message.epv; // Member: terrain_alt cdr >> ros_message.terrain_alt; // Member: terrain_alt_valid { uint8_t tmp; cdr >> tmp; ros_message.terrain_alt_valid = tmp ? true : false; } // Member: dead_reckoning { uint8_t tmp; cdr >> tmp; ros_message.dead_reckoning = tmp ? true : false; } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::VehicleGlobalPositionGroundtruth & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: timestamp_sample { size_t item_size = sizeof(ros_message.timestamp_sample); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: lat { size_t item_size = sizeof(ros_message.lat); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: lon { size_t item_size = sizeof(ros_message.lon); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: alt { size_t item_size = sizeof(ros_message.alt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: alt_ellipsoid { size_t item_size = sizeof(ros_message.alt_ellipsoid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: delta_alt { size_t item_size = sizeof(ros_message.delta_alt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: lat_lon_reset_counter { size_t item_size = sizeof(ros_message.lat_lon_reset_counter); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: alt_reset_counter { size_t item_size = sizeof(ros_message.alt_reset_counter); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: eph { size_t item_size = sizeof(ros_message.eph); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: epv { size_t item_size = sizeof(ros_message.epv); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: terrain_alt { size_t item_size = sizeof(ros_message.terrain_alt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: terrain_alt_valid { size_t item_size = sizeof(ros_message.terrain_alt_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: dead_reckoning { size_t item_size = sizeof(ros_message.dead_reckoning); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_VehicleGlobalPositionGroundtruth( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: timestamp_sample { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: lat { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: lon { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: alt { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: alt_ellipsoid { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: delta_alt { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: lat_lon_reset_counter { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: alt_reset_counter { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: eph { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: epv { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: terrain_alt { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: terrain_alt_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: dead_reckoning { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _VehicleGlobalPositionGroundtruth__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::VehicleGlobalPositionGroundtruth *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _VehicleGlobalPositionGroundtruth__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::VehicleGlobalPositionGroundtruth *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _VehicleGlobalPositionGroundtruth__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::VehicleGlobalPositionGroundtruth *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _VehicleGlobalPositionGroundtruth__max_serialized_size(bool & full_bounded) { return max_serialized_size_VehicleGlobalPositionGroundtruth(full_bounded, 0); } static message_type_support_callbacks_t _VehicleGlobalPositionGroundtruth__callbacks = { "px4_msgs::msg", "VehicleGlobalPositionGroundtruth", _VehicleGlobalPositionGroundtruth__cdr_serialize, _VehicleGlobalPositionGroundtruth__cdr_deserialize, _VehicleGlobalPositionGroundtruth__get_serialized_size, _VehicleGlobalPositionGroundtruth__max_serialized_size }; static rosidl_message_type_support_t _VehicleGlobalPositionGroundtruth__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_VehicleGlobalPositionGroundtruth__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleGlobalPositionGroundtruth>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_VehicleGlobalPositionGroundtruth__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, VehicleGlobalPositionGroundtruth)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_VehicleGlobalPositionGroundtruth__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/wind__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/Wind.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/wind__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/wind__functions.h" #include "px4_msgs/msg/wind__struct.h" #ifdef __cplusplus extern "C" { #endif void Wind__rosidl_typesupport_introspection_c__Wind_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__Wind__init(message_memory); } void Wind__rosidl_typesupport_introspection_c__Wind_fini_function(void * message_memory) { px4_msgs__msg__Wind__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember Wind__rosidl_typesupport_introspection_c__Wind_message_member_array[10] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Wind, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Wind, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "windspeed_north", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Wind, windspeed_north), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "windspeed_east", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Wind, windspeed_east), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "variance_north", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Wind, variance_north), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "variance_east", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Wind, variance_east), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "tas_innov", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Wind, tas_innov), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "tas_innov_var", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Wind, tas_innov_var), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "beta_innov", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Wind, beta_innov), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "beta_innov_var", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Wind, beta_innov_var), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers Wind__rosidl_typesupport_introspection_c__Wind_message_members = { "px4_msgs__msg", // message namespace "Wind", // message name 10, // number of fields sizeof(px4_msgs__msg__Wind), Wind__rosidl_typesupport_introspection_c__Wind_message_member_array, // message members Wind__rosidl_typesupport_introspection_c__Wind_init_function, // function to initialize message memory (memory has to be allocated) Wind__rosidl_typesupport_introspection_c__Wind_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t Wind__rosidl_typesupport_introspection_c__Wind_message_type_support_handle = { 0, &Wind__rosidl_typesupport_introspection_c__Wind_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, Wind)() { if (!Wind__rosidl_typesupport_introspection_c__Wind_message_type_support_handle.typesupport_identifier) { Wind__rosidl_typesupport_introspection_c__Wind_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &Wind__rosidl_typesupport_introspection_c__Wind_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_TRAJECTORY_WAYPOINT_DESIRED_HPP_ #define PX4_MSGS__MSG__VEHICLE_TRAJECTORY_WAYPOINT_DESIRED_HPP_ #include "px4_msgs/msg/vehicle_trajectory_waypoint_desired__struct.hpp" #include "px4_msgs/msg/vehicle_trajectory_waypoint_desired__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_TRAJECTORY_WAYPOINT_DESIRED_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_correction__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/SensorCorrection.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/sensor_correction__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/sensor_correction__functions.h" #include "px4_msgs/msg/sensor_correction__struct.h" #ifdef __cplusplus extern "C" { #endif void SensorCorrection__rosidl_typesupport_introspection_c__SensorCorrection_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__SensorCorrection__init(message_memory); } void SensorCorrection__rosidl_typesupport_introspection_c__SensorCorrection_fini_function(void * message_memory) { px4_msgs__msg__SensorCorrection__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember SensorCorrection__rosidl_typesupport_introspection_c__SensorCorrection_message_member_array[16] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorCorrection, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gyro_device_ids", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorCorrection, gyro_device_ids), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gyro_offset_0", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorCorrection, gyro_offset_0), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gyro_offset_1", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorCorrection, gyro_offset_1), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gyro_offset_2", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorCorrection, gyro_offset_2), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gyro_offset_3", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorCorrection, gyro_offset_3), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accel_device_ids", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorCorrection, accel_device_ids), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accel_offset_0", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorCorrection, accel_offset_0), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accel_offset_1", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorCorrection, accel_offset_1), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accel_offset_2", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorCorrection, accel_offset_2), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accel_offset_3", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorCorrection, accel_offset_3), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "baro_device_ids", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorCorrection, baro_device_ids), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "baro_offset_0", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorCorrection, baro_offset_0), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "baro_offset_1", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorCorrection, baro_offset_1), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "baro_offset_2", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorCorrection, baro_offset_2), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "baro_offset_3", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorCorrection, baro_offset_3), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers SensorCorrection__rosidl_typesupport_introspection_c__SensorCorrection_message_members = { "px4_msgs__msg", // message namespace "SensorCorrection", // message name 16, // number of fields sizeof(px4_msgs__msg__SensorCorrection), SensorCorrection__rosidl_typesupport_introspection_c__SensorCorrection_message_member_array, // message members SensorCorrection__rosidl_typesupport_introspection_c__SensorCorrection_init_function, // function to initialize message memory (memory has to be allocated) SensorCorrection__rosidl_typesupport_introspection_c__SensorCorrection_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t SensorCorrection__rosidl_typesupport_introspection_c__SensorCorrection_message_type_support_handle = { 0, &SensorCorrection__rosidl_typesupport_introspection_c__SensorCorrection_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, SensorCorrection)() { if (!SensorCorrection__rosidl_typesupport_introspection_c__SensorCorrection_message_type_support_handle.typesupport_identifier) { SensorCorrection__rosidl_typesupport_introspection_c__SensorCorrection_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &SensorCorrection__rosidl_typesupport_introspection_c__SensorCorrection_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_bezier__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleTrajectoryBezier.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_trajectory_bezier__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/vehicle_trajectory_bezier__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool cdr_serialize( const px4_msgs::msg::TrajectoryBezier &, eprosima::fastcdr::Cdr &); bool cdr_deserialize( eprosima::fastcdr::Cdr &, px4_msgs::msg::TrajectoryBezier &); size_t get_serialized_size( const px4_msgs::msg::TrajectoryBezier &, size_t current_alignment); size_t max_serialized_size_TrajectoryBezier( bool & full_bounded, size_t current_alignment); } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::VehicleTrajectoryBezier & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: control_points { for (size_t i = 0; i < 5; i++) { px4_msgs::msg::typesupport_fastrtps_cpp::cdr_serialize( ros_message.control_points[i], cdr); } } // Member: bezier_order cdr << ros_message.bezier_order; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::VehicleTrajectoryBezier & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: control_points { for (size_t i = 0; i < 5; i++) { px4_msgs::msg::typesupport_fastrtps_cpp::cdr_deserialize( cdr, ros_message.control_points[i]); } } // Member: bezier_order cdr >> ros_message.bezier_order; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::VehicleTrajectoryBezier & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: control_points { size_t array_size = 5; for (size_t index = 0; index < array_size; ++index) { current_alignment += px4_msgs::msg::typesupport_fastrtps_cpp::get_serialized_size( ros_message.control_points[index], current_alignment); } } // Member: bezier_order { size_t item_size = sizeof(ros_message.bezier_order); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_VehicleTrajectoryBezier( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: control_points { size_t array_size = 5; for (size_t index = 0; index < array_size; ++index) { current_alignment += px4_msgs::msg::typesupport_fastrtps_cpp::max_serialized_size_TrajectoryBezier( full_bounded, current_alignment); } } // Member: bezier_order { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _VehicleTrajectoryBezier__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::VehicleTrajectoryBezier *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _VehicleTrajectoryBezier__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::VehicleTrajectoryBezier *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _VehicleTrajectoryBezier__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::VehicleTrajectoryBezier *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _VehicleTrajectoryBezier__max_serialized_size(bool & full_bounded) { return max_serialized_size_VehicleTrajectoryBezier(full_bounded, 0); } static message_type_support_callbacks_t _VehicleTrajectoryBezier__callbacks = { "px4_msgs::msg", "VehicleTrajectoryBezier", _VehicleTrajectoryBezier__cdr_serialize, _VehicleTrajectoryBezier__cdr_deserialize, _VehicleTrajectoryBezier__get_serialized_size, _VehicleTrajectoryBezier__max_serialized_size }; static rosidl_message_type_support_t _VehicleTrajectoryBezier__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_VehicleTrajectoryBezier__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleTrajectoryBezier>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_VehicleTrajectoryBezier__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, VehicleTrajectoryBezier)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_VehicleTrajectoryBezier__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_local_position__rosidl_typesupport_fastrtps_c.h // generated from rosidl_typesupport_fastrtps_c/resource/idl__rosidl_typesupport_fastrtps_c.h.em // with input from px4_msgs:msg/EstimatorLocalPosition.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_LOCAL_POSITION__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #define PX4_MSGS__MSG__ESTIMATOR_LOCAL_POSITION__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #include <stddef.h> #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__EstimatorLocalPosition( const void * untyped_ros_message, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__EstimatorLocalPosition( bool & full_bounded, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, EstimatorLocalPosition)(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ESTIMATOR_LOCAL_POSITION__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/yaw_estimator_status__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/YawEstimatorStatus.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/yaw_estimator_status__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void YawEstimatorStatus_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::YawEstimatorStatus(_init); } void YawEstimatorStatus_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::YawEstimatorStatus *>(message_memory); typed_message->~YawEstimatorStatus(); } size_t size_function__YawEstimatorStatus__yaw(const void * untyped_member) { (void)untyped_member; return 5; } const void * get_const_function__YawEstimatorStatus__yaw(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 5> *>(untyped_member); return &member[index]; } void * get_function__YawEstimatorStatus__yaw(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 5> *>(untyped_member); return &member[index]; } size_t size_function__YawEstimatorStatus__innov_vn(const void * untyped_member) { (void)untyped_member; return 5; } const void * get_const_function__YawEstimatorStatus__innov_vn(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 5> *>(untyped_member); return &member[index]; } void * get_function__YawEstimatorStatus__innov_vn(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 5> *>(untyped_member); return &member[index]; } size_t size_function__YawEstimatorStatus__innov_ve(const void * untyped_member) { (void)untyped_member; return 5; } const void * get_const_function__YawEstimatorStatus__innov_ve(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 5> *>(untyped_member); return &member[index]; } void * get_function__YawEstimatorStatus__innov_ve(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 5> *>(untyped_member); return &member[index]; } size_t size_function__YawEstimatorStatus__weight(const void * untyped_member) { (void)untyped_member; return 5; } const void * get_const_function__YawEstimatorStatus__weight(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 5> *>(untyped_member); return &member[index]; } void * get_function__YawEstimatorStatus__weight(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 5> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember YawEstimatorStatus_message_member_array[8] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::YawEstimatorStatus, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::YawEstimatorStatus, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "yaw_composite", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::YawEstimatorStatus, yaw_composite), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "yaw_variance", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::YawEstimatorStatus, yaw_variance), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "yaw", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 5, // array size false, // is upper bound offsetof(px4_msgs::msg::YawEstimatorStatus, yaw), // bytes offset in struct nullptr, // default value size_function__YawEstimatorStatus__yaw, // size() function pointer get_const_function__YawEstimatorStatus__yaw, // get_const(index) function pointer get_function__YawEstimatorStatus__yaw, // get(index) function pointer nullptr // resize(index) function pointer }, { "innov_vn", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 5, // array size false, // is upper bound offsetof(px4_msgs::msg::YawEstimatorStatus, innov_vn), // bytes offset in struct nullptr, // default value size_function__YawEstimatorStatus__innov_vn, // size() function pointer get_const_function__YawEstimatorStatus__innov_vn, // get_const(index) function pointer get_function__YawEstimatorStatus__innov_vn, // get(index) function pointer nullptr // resize(index) function pointer }, { "innov_ve", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 5, // array size false, // is upper bound offsetof(px4_msgs::msg::YawEstimatorStatus, innov_ve), // bytes offset in struct nullptr, // default value size_function__YawEstimatorStatus__innov_ve, // size() function pointer get_const_function__YawEstimatorStatus__innov_ve, // get_const(index) function pointer get_function__YawEstimatorStatus__innov_ve, // get(index) function pointer nullptr // resize(index) function pointer }, { "weight", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 5, // array size false, // is upper bound offsetof(px4_msgs::msg::YawEstimatorStatus, weight), // bytes offset in struct nullptr, // default value size_function__YawEstimatorStatus__weight, // size() function pointer get_const_function__YawEstimatorStatus__weight, // get_const(index) function pointer get_function__YawEstimatorStatus__weight, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers YawEstimatorStatus_message_members = { "px4_msgs::msg", // message namespace "YawEstimatorStatus", // message name 8, // number of fields sizeof(px4_msgs::msg::YawEstimatorStatus), YawEstimatorStatus_message_member_array, // message members YawEstimatorStatus_init_function, // function to initialize message memory (memory has to be allocated) YawEstimatorStatus_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t YawEstimatorStatus_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &YawEstimatorStatus_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::YawEstimatorStatus>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::YawEstimatorStatus_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, YawEstimatorStatus)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::YawEstimatorStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_preflight_mag__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/SensorPreflightMag.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/sensor_preflight_mag__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__SensorPreflightMag__init(px4_msgs__msg__SensorPreflightMag * msg) { if (!msg) { return false; } // timestamp // mag_inconsistency_angle return true; } void px4_msgs__msg__SensorPreflightMag__fini(px4_msgs__msg__SensorPreflightMag * msg) { if (!msg) { return; } // timestamp // mag_inconsistency_angle } px4_msgs__msg__SensorPreflightMag * px4_msgs__msg__SensorPreflightMag__create() { px4_msgs__msg__SensorPreflightMag * msg = (px4_msgs__msg__SensorPreflightMag *)malloc(sizeof(px4_msgs__msg__SensorPreflightMag)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__SensorPreflightMag)); bool success = px4_msgs__msg__SensorPreflightMag__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__SensorPreflightMag__destroy(px4_msgs__msg__SensorPreflightMag * msg) { if (msg) { px4_msgs__msg__SensorPreflightMag__fini(msg); } free(msg); } bool px4_msgs__msg__SensorPreflightMag__Sequence__init(px4_msgs__msg__SensorPreflightMag__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__SensorPreflightMag * data = NULL; if (size) { data = (px4_msgs__msg__SensorPreflightMag *)calloc(size, sizeof(px4_msgs__msg__SensorPreflightMag)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__SensorPreflightMag__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__SensorPreflightMag__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__SensorPreflightMag__Sequence__fini(px4_msgs__msg__SensorPreflightMag__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__SensorPreflightMag__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__SensorPreflightMag__Sequence * px4_msgs__msg__SensorPreflightMag__Sequence__create(size_t size) { px4_msgs__msg__SensorPreflightMag__Sequence * array = (px4_msgs__msg__SensorPreflightMag__Sequence *)malloc(sizeof(px4_msgs__msg__SensorPreflightMag__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__SensorPreflightMag__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__SensorPreflightMag__Sequence__destroy(px4_msgs__msg__SensorPreflightMag__Sequence * array) { if (array) { px4_msgs__msg__SensorPreflightMag__Sequence__fini(array); } free(array); } <file_sep>/install/px4_ros_com/share/px4_ros_com/cmake/GenerateMicroRTPSAgent.cmake /home/navlab-tx2-4/px4_ros_com_ros2/src/px4_ros_com/cmake/GenerateMicroRTPSAgent.cmake<file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/navigator_mission_item__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/NavigatorMissionItem.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__NAVIGATOR_MISSION_ITEM__STRUCT_H_ #define PX4_MSGS__MSG__NAVIGATOR_MISSION_ITEM__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/NavigatorMissionItem in the package px4_msgs. typedef struct px4_msgs__msg__NavigatorMissionItem { uint64_t timestamp; uint32_t instance_count; uint16_t sequence_current; uint16_t nav_cmd; float latitude; float longitude; float time_inside; float acceptance_radius; float loiter_radius; float yaw; float altitude; uint8_t frame; uint8_t origin; bool loiter_exit_xtrack; bool force_heading; bool altitude_is_relative; bool autocontinue; bool vtol_back_transition; } px4_msgs__msg__NavigatorMissionItem; // Struct for a sequence of px4_msgs__msg__NavigatorMissionItem. typedef struct px4_msgs__msg__NavigatorMissionItem__Sequence { px4_msgs__msg__NavigatorMissionItem * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__NavigatorMissionItem__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__NAVIGATOR_MISSION_ITEM__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/qshell_retval__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/QshellRetval.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/qshell_retval__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__QshellRetval__init(px4_msgs__msg__QshellRetval * msg) { if (!msg) { return false; } // timestamp // return_value // return_sequence return true; } void px4_msgs__msg__QshellRetval__fini(px4_msgs__msg__QshellRetval * msg) { if (!msg) { return; } // timestamp // return_value // return_sequence } px4_msgs__msg__QshellRetval * px4_msgs__msg__QshellRetval__create() { px4_msgs__msg__QshellRetval * msg = (px4_msgs__msg__QshellRetval *)malloc(sizeof(px4_msgs__msg__QshellRetval)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__QshellRetval)); bool success = px4_msgs__msg__QshellRetval__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__QshellRetval__destroy(px4_msgs__msg__QshellRetval * msg) { if (msg) { px4_msgs__msg__QshellRetval__fini(msg); } free(msg); } bool px4_msgs__msg__QshellRetval__Sequence__init(px4_msgs__msg__QshellRetval__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__QshellRetval * data = NULL; if (size) { data = (px4_msgs__msg__QshellRetval *)calloc(size, sizeof(px4_msgs__msg__QshellRetval)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__QshellRetval__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__QshellRetval__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__QshellRetval__Sequence__fini(px4_msgs__msg__QshellRetval__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__QshellRetval__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__QshellRetval__Sequence * px4_msgs__msg__QshellRetval__Sequence__create(size_t size) { px4_msgs__msg__QshellRetval__Sequence * array = (px4_msgs__msg__QshellRetval__Sequence *)malloc(sizeof(px4_msgs__msg__QshellRetval__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__QshellRetval__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__QshellRetval__Sequence__destroy(px4_msgs__msg__QshellRetval__Sequence * array) { if (array) { px4_msgs__msg__QshellRetval__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_status__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/PositionControllerStatus.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/position_controller_status__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/position_controller_status__functions.h" #include "px4_msgs/msg/position_controller_status__struct.h" #ifdef __cplusplus extern "C" { #endif void PositionControllerStatus__rosidl_typesupport_introspection_c__PositionControllerStatus_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__PositionControllerStatus__init(message_memory); } void PositionControllerStatus__rosidl_typesupport_introspection_c__PositionControllerStatus_fini_function(void * message_memory) { px4_msgs__msg__PositionControllerStatus__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember PositionControllerStatus__rosidl_typesupport_introspection_c__PositionControllerStatus_message_member_array[11] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionControllerStatus, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "nav_roll", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionControllerStatus, nav_roll), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "nav_pitch", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionControllerStatus, nav_pitch), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "nav_bearing", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionControllerStatus, nav_bearing), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "target_bearing", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionControllerStatus, target_bearing), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "xtrack_error", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionControllerStatus, xtrack_error), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "wp_dist", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionControllerStatus, wp_dist), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "acceptance_radius", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionControllerStatus, acceptance_radius), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yaw_acceptance", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionControllerStatus, yaw_acceptance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "altitude_acceptance", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionControllerStatus, altitude_acceptance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "type", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionControllerStatus, type), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers PositionControllerStatus__rosidl_typesupport_introspection_c__PositionControllerStatus_message_members = { "px4_msgs__msg", // message namespace "PositionControllerStatus", // message name 11, // number of fields sizeof(px4_msgs__msg__PositionControllerStatus), PositionControllerStatus__rosidl_typesupport_introspection_c__PositionControllerStatus_message_member_array, // message members PositionControllerStatus__rosidl_typesupport_introspection_c__PositionControllerStatus_init_function, // function to initialize message memory (memory has to be allocated) PositionControllerStatus__rosidl_typesupport_introspection_c__PositionControllerStatus_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t PositionControllerStatus__rosidl_typesupport_introspection_c__PositionControllerStatus_message_type_support_handle = { 0, &PositionControllerStatus__rosidl_typesupport_introspection_c__PositionControllerStatus_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, PositionControllerStatus)() { if (!PositionControllerStatus__rosidl_typesupport_introspection_c__PositionControllerStatus_message_type_support_handle.typesupport_identifier) { PositionControllerStatus__rosidl_typesupport_introspection_c__PositionControllerStatus_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &PositionControllerStatus__rosidl_typesupport_introspection_c__PositionControllerStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/UavcanParameterRequest.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/uavcan_parameter_request__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void UavcanParameterRequest_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::UavcanParameterRequest(_init); } void UavcanParameterRequest_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::UavcanParameterRequest *>(message_memory); typed_message->~UavcanParameterRequest(); } size_t size_function__UavcanParameterRequest__param_id(const void * untyped_member) { (void)untyped_member; return 17; } const void * get_const_function__UavcanParameterRequest__param_id(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint8_t, 17> *>(untyped_member); return &member[index]; } void * get_function__UavcanParameterRequest__param_id(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint8_t, 17> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember UavcanParameterRequest_message_member_array[8] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::UavcanParameterRequest, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "message_type", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::UavcanParameterRequest, message_type), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "node_id", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::UavcanParameterRequest, node_id), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "param_id", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 17, // array size false, // is upper bound offsetof(px4_msgs::msg::UavcanParameterRequest, param_id), // bytes offset in struct nullptr, // default value size_function__UavcanParameterRequest__param_id, // size() function pointer get_const_function__UavcanParameterRequest__param_id, // get_const(index) function pointer get_function__UavcanParameterRequest__param_id, // get(index) function pointer nullptr // resize(index) function pointer }, { "param_index", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::UavcanParameterRequest, param_index), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "param_type", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::UavcanParameterRequest, param_type), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "int_value", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::UavcanParameterRequest, int_value), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "real_value", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::UavcanParameterRequest, real_value), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers UavcanParameterRequest_message_members = { "px4_msgs::msg", // message namespace "UavcanParameterRequest", // message name 8, // number of fields sizeof(px4_msgs::msg::UavcanParameterRequest), UavcanParameterRequest_message_member_array, // message members UavcanParameterRequest_init_function, // function to initialize message memory (memory has to be allocated) UavcanParameterRequest_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t UavcanParameterRequest_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &UavcanParameterRequest_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::UavcanParameterRequest>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::UavcanParameterRequest_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, UavcanParameterRequest)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::UavcanParameterRequest_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_controls1.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/ActuatorControls1.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS1_H_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS1_H_ #include "px4_msgs/msg/actuator_controls1__struct.h" #include "px4_msgs/msg/actuator_controls1__functions.h" #include "px4_msgs/msg/actuator_controls1__type_support.h" #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS1_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/follow_target__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/FollowTarget.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__FOLLOW_TARGET__STRUCT_H_ #define PX4_MSGS__MSG__FOLLOW_TARGET__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/FollowTarget in the package px4_msgs. typedef struct px4_msgs__msg__FollowTarget { uint64_t timestamp; double lat; double lon; float alt; float vy; float vx; float vz; uint8_t est_cap; } px4_msgs__msg__FollowTarget; // Struct for a sequence of px4_msgs__msg__FollowTarget. typedef struct px4_msgs__msg__FollowTarget__Sequence { px4_msgs__msg__FollowTarget * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__FollowTarget__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__FOLLOW_TARGET__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_innovations__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/EstimatorInnovations.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/estimator_innovations__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__EstimatorInnovations__init(px4_msgs__msg__EstimatorInnovations * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // gps_hvel // gps_vvel // gps_hpos // gps_vpos // ev_hvel // ev_vvel // ev_hpos // ev_vpos // rng_vpos // baro_vpos // aux_hvel // aux_vvel // flow // heading // mag_field // drag // airspeed // beta // hagl return true; } void px4_msgs__msg__EstimatorInnovations__fini(px4_msgs__msg__EstimatorInnovations * msg) { if (!msg) { return; } // timestamp // timestamp_sample // gps_hvel // gps_vvel // gps_hpos // gps_vpos // ev_hvel // ev_vvel // ev_hpos // ev_vpos // rng_vpos // baro_vpos // aux_hvel // aux_vvel // flow // heading // mag_field // drag // airspeed // beta // hagl } px4_msgs__msg__EstimatorInnovations * px4_msgs__msg__EstimatorInnovations__create() { px4_msgs__msg__EstimatorInnovations * msg = (px4_msgs__msg__EstimatorInnovations *)malloc(sizeof(px4_msgs__msg__EstimatorInnovations)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__EstimatorInnovations)); bool success = px4_msgs__msg__EstimatorInnovations__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__EstimatorInnovations__destroy(px4_msgs__msg__EstimatorInnovations * msg) { if (msg) { px4_msgs__msg__EstimatorInnovations__fini(msg); } free(msg); } bool px4_msgs__msg__EstimatorInnovations__Sequence__init(px4_msgs__msg__EstimatorInnovations__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__EstimatorInnovations * data = NULL; if (size) { data = (px4_msgs__msg__EstimatorInnovations *)calloc(size, sizeof(px4_msgs__msg__EstimatorInnovations)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__EstimatorInnovations__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__EstimatorInnovations__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__EstimatorInnovations__Sequence__fini(px4_msgs__msg__EstimatorInnovations__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__EstimatorInnovations__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__EstimatorInnovations__Sequence * px4_msgs__msg__EstimatorInnovations__Sequence__create(size_t size) { px4_msgs__msg__EstimatorInnovations__Sequence * array = (px4_msgs__msg__EstimatorInnovations__Sequence *)malloc(sizeof(px4_msgs__msg__EstimatorInnovations__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__EstimatorInnovations__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__EstimatorInnovations__Sequence__destroy(px4_msgs__msg__EstimatorInnovations__Sequence * array) { if (array) { px4_msgs__msg__EstimatorInnovations__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/uavcan_parameter_request.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/UavcanParameterRequest.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__UAVCAN_PARAMETER_REQUEST_H_ #define PX4_MSGS__MSG__UAVCAN_PARAMETER_REQUEST_H_ #include "px4_msgs/msg/uavcan_parameter_request__struct.h" #include "px4_msgs/msg/uavcan_parameter_request__functions.h" #include "px4_msgs/msg/uavcan_parameter_request__type_support.h" #endif // PX4_MSGS__MSG__UAVCAN_PARAMETER_REQUEST_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_monitor__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/PowerMonitor.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/power_monitor__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/power_monitor__struct.h" #include "px4_msgs/msg/power_monitor__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _PowerMonitor__ros_msg_type = px4_msgs__msg__PowerMonitor; static bool _PowerMonitor__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _PowerMonitor__ros_msg_type * ros_message = static_cast<const _PowerMonitor__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: voltage_v { cdr << ros_message->voltage_v; } // Field name: current_a { cdr << ros_message->current_a; } // Field name: power_w { cdr << ros_message->power_w; } // Field name: rconf { cdr << ros_message->rconf; } // Field name: rsv { cdr << ros_message->rsv; } // Field name: rbv { cdr << ros_message->rbv; } // Field name: rp { cdr << ros_message->rp; } // Field name: rc { cdr << ros_message->rc; } // Field name: rcal { cdr << ros_message->rcal; } // Field name: me { cdr << ros_message->me; } // Field name: al { cdr << ros_message->al; } return true; } static bool _PowerMonitor__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _PowerMonitor__ros_msg_type * ros_message = static_cast<_PowerMonitor__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: voltage_v { cdr >> ros_message->voltage_v; } // Field name: current_a { cdr >> ros_message->current_a; } // Field name: power_w { cdr >> ros_message->power_w; } // Field name: rconf { cdr >> ros_message->rconf; } // Field name: rsv { cdr >> ros_message->rsv; } // Field name: rbv { cdr >> ros_message->rbv; } // Field name: rp { cdr >> ros_message->rp; } // Field name: rc { cdr >> ros_message->rc; } // Field name: rcal { cdr >> ros_message->rcal; } // Field name: me { cdr >> ros_message->me; } // Field name: al { cdr >> ros_message->al; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__PowerMonitor( const void * untyped_ros_message, size_t current_alignment) { const _PowerMonitor__ros_msg_type * ros_message = static_cast<const _PowerMonitor__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name voltage_v { size_t item_size = sizeof(ros_message->voltage_v); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name current_a { size_t item_size = sizeof(ros_message->current_a); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name power_w { size_t item_size = sizeof(ros_message->power_w); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rconf { size_t item_size = sizeof(ros_message->rconf); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rsv { size_t item_size = sizeof(ros_message->rsv); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rbv { size_t item_size = sizeof(ros_message->rbv); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rp { size_t item_size = sizeof(ros_message->rp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rc { size_t item_size = sizeof(ros_message->rc); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rcal { size_t item_size = sizeof(ros_message->rcal); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name me { size_t item_size = sizeof(ros_message->me); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name al { size_t item_size = sizeof(ros_message->al); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _PowerMonitor__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__PowerMonitor( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__PowerMonitor( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: voltage_v { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: current_a { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: power_w { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: rconf { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: rsv { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: rbv { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: rp { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: rc { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: rcal { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: me { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: al { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } return current_alignment - initial_alignment; } static size_t _PowerMonitor__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__PowerMonitor( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_PowerMonitor = { "px4_msgs::msg", "PowerMonitor", _PowerMonitor__cdr_serialize, _PowerMonitor__cdr_deserialize, _PowerMonitor__get_serialized_size, _PowerMonitor__max_serialized_size }; static rosidl_message_type_support_t _PowerMonitor__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_PowerMonitor, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, PowerMonitor)() { return &_PowerMonitor__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/optical_flow.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/OpticalFlow.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__OPTICAL_FLOW_H_ #define PX4_MSGS__MSG__OPTICAL_FLOW_H_ #include "px4_msgs/msg/optical_flow__struct.h" #include "px4_msgs/msg/optical_flow__functions.h" #include "px4_msgs/msg/optical_flow__type_support.h" #endif // PX4_MSGS__MSG__OPTICAL_FLOW_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_preflight_mag__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/SensorPreflightMag.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_PREFLIGHT_MAG__STRUCT_H_ #define PX4_MSGS__MSG__SENSOR_PREFLIGHT_MAG__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/SensorPreflightMag in the package px4_msgs. typedef struct px4_msgs__msg__SensorPreflightMag { uint64_t timestamp; float mag_inconsistency_angle; } px4_msgs__msg__SensorPreflightMag; // Struct for a sequence of px4_msgs__msg__SensorPreflightMag. typedef struct px4_msgs__msg__SensorPreflightMag__Sequence { px4_msgs__msg__SensorPreflightMag * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__SensorPreflightMag__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__SENSOR_PREFLIGHT_MAG__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls1__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/ActuatorControls1.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/actuator_controls1__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void ActuatorControls1_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::ActuatorControls1(_init); } void ActuatorControls1_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::ActuatorControls1 *>(message_memory); typed_message->~ActuatorControls1(); } size_t size_function__ActuatorControls1__control(const void * untyped_member) { (void)untyped_member; return 8; } const void * get_const_function__ActuatorControls1__control(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 8> *>(untyped_member); return &member[index]; } void * get_function__ActuatorControls1__control(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 8> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember ActuatorControls1_message_member_array[3] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ActuatorControls1, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ActuatorControls1, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "control", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 8, // array size false, // is upper bound offsetof(px4_msgs::msg::ActuatorControls1, control), // bytes offset in struct nullptr, // default value size_function__ActuatorControls1__control, // size() function pointer get_const_function__ActuatorControls1__control, // get_const(index) function pointer get_function__ActuatorControls1__control, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers ActuatorControls1_message_members = { "px4_msgs::msg", // message namespace "ActuatorControls1", // message name 3, // number of fields sizeof(px4_msgs::msg::ActuatorControls1), ActuatorControls1_message_member_array, // message members ActuatorControls1_init_function, // function to initialize message memory (memory has to be allocated) ActuatorControls1_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t ActuatorControls1_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &ActuatorControls1_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::ActuatorControls1>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::ActuatorControls1_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, ActuatorControls1)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::ActuatorControls1_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_local_position_setpoint__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleLocalPositionSetpoint.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_local_position_setpoint__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__VehicleLocalPositionSetpoint__init(px4_msgs__msg__VehicleLocalPositionSetpoint * msg) { if (!msg) { return false; } // timestamp // x // y // z // yaw // yawspeed // vx // vy // vz // acceleration // jerk // thrust return true; } void px4_msgs__msg__VehicleLocalPositionSetpoint__fini(px4_msgs__msg__VehicleLocalPositionSetpoint * msg) { if (!msg) { return; } // timestamp // x // y // z // yaw // yawspeed // vx // vy // vz // acceleration // jerk // thrust } px4_msgs__msg__VehicleLocalPositionSetpoint * px4_msgs__msg__VehicleLocalPositionSetpoint__create() { px4_msgs__msg__VehicleLocalPositionSetpoint * msg = (px4_msgs__msg__VehicleLocalPositionSetpoint *)malloc(sizeof(px4_msgs__msg__VehicleLocalPositionSetpoint)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleLocalPositionSetpoint)); bool success = px4_msgs__msg__VehicleLocalPositionSetpoint__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleLocalPositionSetpoint__destroy(px4_msgs__msg__VehicleLocalPositionSetpoint * msg) { if (msg) { px4_msgs__msg__VehicleLocalPositionSetpoint__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleLocalPositionSetpoint__Sequence__init(px4_msgs__msg__VehicleLocalPositionSetpoint__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleLocalPositionSetpoint * data = NULL; if (size) { data = (px4_msgs__msg__VehicleLocalPositionSetpoint *)calloc(size, sizeof(px4_msgs__msg__VehicleLocalPositionSetpoint)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleLocalPositionSetpoint__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleLocalPositionSetpoint__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleLocalPositionSetpoint__Sequence__fini(px4_msgs__msg__VehicleLocalPositionSetpoint__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleLocalPositionSetpoint__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleLocalPositionSetpoint__Sequence * px4_msgs__msg__VehicleLocalPositionSetpoint__Sequence__create(size_t size) { px4_msgs__msg__VehicleLocalPositionSetpoint__Sequence * array = (px4_msgs__msg__VehicleLocalPositionSetpoint__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleLocalPositionSetpoint__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleLocalPositionSetpoint__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleLocalPositionSetpoint__Sequence__destroy(px4_msgs__msg__VehicleLocalPositionSetpoint__Sequence * array) { if (array) { px4_msgs__msg__VehicleLocalPositionSetpoint__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/rtl_flight_time.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/RtlFlightTime.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__RTL_FLIGHT_TIME_H_ #define PX4_MSGS__MSG__RTL_FLIGHT_TIME_H_ #include "px4_msgs/msg/rtl_flight_time__struct.h" #include "px4_msgs/msg/rtl_flight_time__functions.h" #include "px4_msgs/msg/rtl_flight_time__type_support.h" #endif // PX4_MSGS__MSG__RTL_FLIGHT_TIME_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/logger_status__rosidl_typesupport_introspection_c.h // generated from rosidl_typesupport_introspection_c/resource/idl__rosidl_typesupport_introspection_c.h.em // with input from px4_msgs:msg/LoggerStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__LOGGER_STATUS__ROSIDL_TYPESUPPORT_INTROSPECTION_C_H_ #define PX4_MSGS__MSG__LOGGER_STATUS__ROSIDL_TYPESUPPORT_INTROSPECTION_C_H_ #ifdef __cplusplus extern "C" { #endif #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" ROSIDL_TYPESUPPORT_INTROSPECTION_C_PUBLIC_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, LoggerStatus)(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__LOGGER_STATUS__ROSIDL_TYPESUPPORT_INTROSPECTION_C_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_event_flags__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/EstimatorEventFlags.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/estimator_event_flags__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/estimator_event_flags__functions.h" #include "px4_msgs/msg/estimator_event_flags__struct.h" #ifdef __cplusplus extern "C" { #endif void EstimatorEventFlags__rosidl_typesupport_introspection_c__EstimatorEventFlags_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__EstimatorEventFlags__init(message_memory); } void EstimatorEventFlags__rosidl_typesupport_introspection_c__EstimatorEventFlags_fini_function(void * message_memory) { px4_msgs__msg__EstimatorEventFlags__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember EstimatorEventFlags__rosidl_typesupport_introspection_c__EstimatorEventFlags_message_member_array[28] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorEventFlags, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorEventFlags, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "information_event_changes", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorEventFlags, information_event_changes), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gps_checks_passed", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorEventFlags, gps_checks_passed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "reset_vel_to_gps", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorEventFlags, reset_vel_to_gps), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "reset_vel_to_flow", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorEventFlags, reset_vel_to_flow), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "reset_vel_to_vision", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorEventFlags, reset_vel_to_vision), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "reset_vel_to_zero", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorEventFlags, reset_vel_to_zero), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "reset_pos_to_last_known", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorEventFlags, reset_pos_to_last_known), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "reset_pos_to_gps", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorEventFlags, reset_pos_to_gps), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "reset_pos_to_vision", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorEventFlags, reset_pos_to_vision), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "starting_gps_fusion", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorEventFlags, starting_gps_fusion), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "starting_vision_pos_fusion", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorEventFlags, starting_vision_pos_fusion), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "starting_vision_vel_fusion", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorEventFlags, starting_vision_vel_fusion), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "starting_vision_yaw_fusion", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorEventFlags, starting_vision_yaw_fusion), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yaw_aligned_to_imu_gps", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorEventFlags, yaw_aligned_to_imu_gps), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "warning_event_changes", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorEventFlags, warning_event_changes), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gps_quality_poor", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorEventFlags, gps_quality_poor), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gps_fusion_timout", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorEventFlags, gps_fusion_timout), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gps_data_stopped", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorEventFlags, gps_data_stopped), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gps_data_stopped_using_alternate", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorEventFlags, gps_data_stopped_using_alternate), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "height_sensor_timeout", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorEventFlags, height_sensor_timeout), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "stopping_navigation", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorEventFlags, stopping_navigation), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "invalid_accel_bias_cov_reset", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorEventFlags, invalid_accel_bias_cov_reset), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "bad_yaw_using_gps_course", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorEventFlags, bad_yaw_using_gps_course), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "stopping_mag_use", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorEventFlags, stopping_mag_use), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vision_data_stopped", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorEventFlags, vision_data_stopped), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "emergency_yaw_reset_mag_stopped", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorEventFlags, emergency_yaw_reset_mag_stopped), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers EstimatorEventFlags__rosidl_typesupport_introspection_c__EstimatorEventFlags_message_members = { "px4_msgs__msg", // message namespace "EstimatorEventFlags", // message name 28, // number of fields sizeof(px4_msgs__msg__EstimatorEventFlags), EstimatorEventFlags__rosidl_typesupport_introspection_c__EstimatorEventFlags_message_member_array, // message members EstimatorEventFlags__rosidl_typesupport_introspection_c__EstimatorEventFlags_init_function, // function to initialize message memory (memory has to be allocated) EstimatorEventFlags__rosidl_typesupport_introspection_c__EstimatorEventFlags_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t EstimatorEventFlags__rosidl_typesupport_introspection_c__EstimatorEventFlags_message_type_support_handle = { 0, &EstimatorEventFlags__rosidl_typesupport_introspection_c__EstimatorEventFlags_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, EstimatorEventFlags)() { if (!EstimatorEventFlags__rosidl_typesupport_introspection_c__EstimatorEventFlags_message_type_support_handle.typesupport_identifier) { EstimatorEventFlags__rosidl_typesupport_introspection_c__EstimatorEventFlags_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &EstimatorEventFlags__rosidl_typesupport_introspection_c__EstimatorEventFlags_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/debug_value__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/DebugValue.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__DEBUG_VALUE__STRUCT_H_ #define PX4_MSGS__MSG__DEBUG_VALUE__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/DebugValue in the package px4_msgs. typedef struct px4_msgs__msg__DebugValue { uint64_t timestamp; int8_t ind; float value; } px4_msgs__msg__DebugValue; // Struct for a sequence of px4_msgs__msg__DebugValue. typedef struct px4_msgs__msg__DebugValue__Sequence { px4_msgs__msg__DebugValue * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__DebugValue__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__DEBUG_VALUE__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/parameter_update.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/ParameterUpdate.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__PARAMETER_UPDATE_H_ #define PX4_MSGS__MSG__PARAMETER_UPDATE_H_ #include "px4_msgs/msg/parameter_update__struct.h" #include "px4_msgs/msg/parameter_update__functions.h" #include "px4_msgs/msg/parameter_update__type_support.h" #endif // PX4_MSGS__MSG__PARAMETER_UPDATE_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/rc_channels__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/RcChannels.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__RC_CHANNELS__FUNCTIONS_H_ #define PX4_MSGS__MSG__RC_CHANNELS__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/rc_channels__struct.h" /// Initialize msg/RcChannels message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__RcChannels * )) before or use * px4_msgs__msg__RcChannels__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__RcChannels__init(px4_msgs__msg__RcChannels * msg); /// Finalize msg/RcChannels message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__RcChannels__fini(px4_msgs__msg__RcChannels * msg); /// Create msg/RcChannels message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__RcChannels__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__RcChannels * px4_msgs__msg__RcChannels__create(); /// Destroy msg/RcChannels message. /** * It calls * px4_msgs__msg__RcChannels__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__RcChannels__destroy(px4_msgs__msg__RcChannels * msg); /// Initialize array of msg/RcChannels messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__RcChannels__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__RcChannels__Sequence__init(px4_msgs__msg__RcChannels__Sequence * array, size_t size); /// Finalize array of msg/RcChannels messages. /** * It calls * px4_msgs__msg__RcChannels__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__RcChannels__Sequence__fini(px4_msgs__msg__RcChannels__Sequence * array); /// Create array of msg/RcChannels messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__RcChannels__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__RcChannels__Sequence * px4_msgs__msg__RcChannels__Sequence__create(size_t size); /// Destroy array of msg/RcChannels messages. /** * It calls * px4_msgs__msg__RcChannels__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__RcChannels__Sequence__destroy(px4_msgs__msg__RcChannels__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__RC_CHANNELS__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_pose__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/LandingTargetPose.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/landing_target_pose__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/landing_target_pose__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::LandingTargetPose & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: is_static cdr << (ros_message.is_static ? true : false); // Member: rel_pos_valid cdr << (ros_message.rel_pos_valid ? true : false); // Member: rel_vel_valid cdr << (ros_message.rel_vel_valid ? true : false); // Member: x_rel cdr << ros_message.x_rel; // Member: y_rel cdr << ros_message.y_rel; // Member: z_rel cdr << ros_message.z_rel; // Member: vx_rel cdr << ros_message.vx_rel; // Member: vy_rel cdr << ros_message.vy_rel; // Member: cov_x_rel cdr << ros_message.cov_x_rel; // Member: cov_y_rel cdr << ros_message.cov_y_rel; // Member: cov_vx_rel cdr << ros_message.cov_vx_rel; // Member: cov_vy_rel cdr << ros_message.cov_vy_rel; // Member: abs_pos_valid cdr << (ros_message.abs_pos_valid ? true : false); // Member: x_abs cdr << ros_message.x_abs; // Member: y_abs cdr << ros_message.y_abs; // Member: z_abs cdr << ros_message.z_abs; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::LandingTargetPose & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: is_static { uint8_t tmp; cdr >> tmp; ros_message.is_static = tmp ? true : false; } // Member: rel_pos_valid { uint8_t tmp; cdr >> tmp; ros_message.rel_pos_valid = tmp ? true : false; } // Member: rel_vel_valid { uint8_t tmp; cdr >> tmp; ros_message.rel_vel_valid = tmp ? true : false; } // Member: x_rel cdr >> ros_message.x_rel; // Member: y_rel cdr >> ros_message.y_rel; // Member: z_rel cdr >> ros_message.z_rel; // Member: vx_rel cdr >> ros_message.vx_rel; // Member: vy_rel cdr >> ros_message.vy_rel; // Member: cov_x_rel cdr >> ros_message.cov_x_rel; // Member: cov_y_rel cdr >> ros_message.cov_y_rel; // Member: cov_vx_rel cdr >> ros_message.cov_vx_rel; // Member: cov_vy_rel cdr >> ros_message.cov_vy_rel; // Member: abs_pos_valid { uint8_t tmp; cdr >> tmp; ros_message.abs_pos_valid = tmp ? true : false; } // Member: x_abs cdr >> ros_message.x_abs; // Member: y_abs cdr >> ros_message.y_abs; // Member: z_abs cdr >> ros_message.z_abs; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::LandingTargetPose & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: is_static { size_t item_size = sizeof(ros_message.is_static); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rel_pos_valid { size_t item_size = sizeof(ros_message.rel_pos_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rel_vel_valid { size_t item_size = sizeof(ros_message.rel_vel_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: x_rel { size_t item_size = sizeof(ros_message.x_rel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: y_rel { size_t item_size = sizeof(ros_message.y_rel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: z_rel { size_t item_size = sizeof(ros_message.z_rel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: vx_rel { size_t item_size = sizeof(ros_message.vx_rel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: vy_rel { size_t item_size = sizeof(ros_message.vy_rel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cov_x_rel { size_t item_size = sizeof(ros_message.cov_x_rel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cov_y_rel { size_t item_size = sizeof(ros_message.cov_y_rel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cov_vx_rel { size_t item_size = sizeof(ros_message.cov_vx_rel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cov_vy_rel { size_t item_size = sizeof(ros_message.cov_vy_rel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: abs_pos_valid { size_t item_size = sizeof(ros_message.abs_pos_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: x_abs { size_t item_size = sizeof(ros_message.x_abs); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: y_abs { size_t item_size = sizeof(ros_message.y_abs); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: z_abs { size_t item_size = sizeof(ros_message.z_abs); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_LandingTargetPose( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: is_static { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: rel_pos_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: rel_vel_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: x_rel { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: y_rel { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: z_rel { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: vx_rel { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: vy_rel { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: cov_x_rel { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: cov_y_rel { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: cov_vx_rel { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: cov_vy_rel { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: abs_pos_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: x_abs { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: y_abs { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: z_abs { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static bool _LandingTargetPose__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::LandingTargetPose *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _LandingTargetPose__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::LandingTargetPose *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _LandingTargetPose__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::LandingTargetPose *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _LandingTargetPose__max_serialized_size(bool & full_bounded) { return max_serialized_size_LandingTargetPose(full_bounded, 0); } static message_type_support_callbacks_t _LandingTargetPose__callbacks = { "px4_msgs::msg", "LandingTargetPose", _LandingTargetPose__cdr_serialize, _LandingTargetPose__cdr_deserialize, _LandingTargetPose__get_serialized_size, _LandingTargetPose__max_serialized_size }; static rosidl_message_type_support_t _LandingTargetPose__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_LandingTargetPose__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::LandingTargetPose>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_LandingTargetPose__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, LandingTargetPose)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_LandingTargetPose__handle; } #ifdef __cplusplus } #endif <file_sep>/build/multi_rtd_interfaces/rosidl_typesupport_fastrtps_cpp/multi_rtd_interfaces/msg/rosidl_typesupport_fastrtps_cpp__visibility_control.h // generated from // rosidl_typesupport_fastrtps_cpp/resource/rosidl_typesupport_fastrtps_cpp__visibility_control.h.in // generated code does not contain a copyright notice #ifndef MULTI_RTD_INTERFACES__MSG__ROSIDL_TYPESUPPORT_FASTRTPS_CPP__VISIBILITY_CONTROL_H_ #define MULTI_RTD_INTERFACES__MSG__ROSIDL_TYPESUPPORT_FASTRTPS_CPP__VISIBILITY_CONTROL_H_ #if __cplusplus extern "C" { #endif // This logic was borrowed (then namespaced) from the examples on the gcc wiki: // https://gcc.gnu.org/wiki/Visibility #if defined _WIN32 || defined __CYGWIN__ #ifdef __GNUC__ #define ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_multi_rtd_interfaces __attribute__ ((dllexport)) #define ROSIDL_TYPESUPPORT_FASTRTPS_CPP_IMPORT_multi_rtd_interfaces __attribute__ ((dllimport)) #else #define ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_multi_rtd_interfaces __declspec(dllexport) #define ROSIDL_TYPESUPPORT_FASTRTPS_CPP_IMPORT_multi_rtd_interfaces __declspec(dllimport) #endif #ifdef ROSIDL_TYPESUPPORT_FASTRTPS_CPP_BUILDING_DLL_multi_rtd_interfaces #define ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_multi_rtd_interfaces ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_multi_rtd_interfaces #else #define ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_multi_rtd_interfaces ROSIDL_TYPESUPPORT_FASTRTPS_CPP_IMPORT_multi_rtd_interfaces #endif #else #define ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_multi_rtd_interfaces __attribute__ ((visibility("default"))) #define ROSIDL_TYPESUPPORT_FASTRTPS_CPP_IMPORT_multi_rtd_interfaces #if __GNUC__ >= 4 #define ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_multi_rtd_interfaces __attribute__ ((visibility("default"))) #else #define ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_multi_rtd_interfaces #endif #endif #if __cplusplus } #endif #endif // MULTI_RTD_INTERFACES__MSG__ROSIDL_TYPESUPPORT_FASTRTPS_CPP__VISIBILITY_CONTROL_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/sensor_correction.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_CORRECTION_HPP_ #define PX4_MSGS__MSG__SENSOR_CORRECTION_HPP_ #include "px4_msgs/msg/sensor_correction__struct.hpp" #include "px4_msgs/msg/sensor_correction__traits.hpp" #endif // PX4_MSGS__MSG__SENSOR_CORRECTION_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_combined__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/SensorCombined.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/sensor_combined__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/sensor_combined__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::SensorCombined & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: gyro_rad { cdr << ros_message.gyro_rad; } // Member: gyro_integral_dt cdr << ros_message.gyro_integral_dt; // Member: accelerometer_timestamp_relative cdr << ros_message.accelerometer_timestamp_relative; // Member: accelerometer_m_s2 { cdr << ros_message.accelerometer_m_s2; } // Member: accelerometer_integral_dt cdr << ros_message.accelerometer_integral_dt; // Member: accelerometer_clipping cdr << ros_message.accelerometer_clipping; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::SensorCombined & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: gyro_rad { cdr >> ros_message.gyro_rad; } // Member: gyro_integral_dt cdr >> ros_message.gyro_integral_dt; // Member: accelerometer_timestamp_relative cdr >> ros_message.accelerometer_timestamp_relative; // Member: accelerometer_m_s2 { cdr >> ros_message.accelerometer_m_s2; } // Member: accelerometer_integral_dt cdr >> ros_message.accelerometer_integral_dt; // Member: accelerometer_clipping cdr >> ros_message.accelerometer_clipping; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::SensorCombined & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gyro_rad { size_t array_size = 3; size_t item_size = sizeof(ros_message.gyro_rad[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gyro_integral_dt { size_t item_size = sizeof(ros_message.gyro_integral_dt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: accelerometer_timestamp_relative { size_t item_size = sizeof(ros_message.accelerometer_timestamp_relative); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: accelerometer_m_s2 { size_t array_size = 3; size_t item_size = sizeof(ros_message.accelerometer_m_s2[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: accelerometer_integral_dt { size_t item_size = sizeof(ros_message.accelerometer_integral_dt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: accelerometer_clipping { size_t item_size = sizeof(ros_message.accelerometer_clipping); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_SensorCombined( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: gyro_rad { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: gyro_integral_dt { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: accelerometer_timestamp_relative { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: accelerometer_m_s2 { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: accelerometer_integral_dt { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: accelerometer_clipping { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _SensorCombined__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::SensorCombined *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _SensorCombined__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::SensorCombined *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _SensorCombined__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::SensorCombined *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _SensorCombined__max_serialized_size(bool & full_bounded) { return max_serialized_size_SensorCombined(full_bounded, 0); } static message_type_support_callbacks_t _SensorCombined__callbacks = { "px4_msgs::msg", "SensorCombined", _SensorCombined__cdr_serialize, _SensorCombined__cdr_deserialize, _SensorCombined__get_serialized_size, _SensorCombined__max_serialized_size }; static rosidl_message_type_support_t _SensorCombined__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_SensorCombined__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::SensorCombined>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_SensorCombined__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, SensorCombined)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_SensorCombined__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_gimbal_manager_information_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/GimbalManagerInformation.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/gimbal_manager_information__struct.h" #include "px4_msgs/msg/gimbal_manager_information__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__gimbal_manager_information__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[66]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._gimbal_manager_information.GimbalManagerInformation", full_classname_dest, 65) == 0); } px4_msgs__msg__GimbalManagerInformation * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // cap_flags PyObject * field = PyObject_GetAttrString(_pymsg, "cap_flags"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->cap_flags = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // gimbal_device_id PyObject * field = PyObject_GetAttrString(_pymsg, "gimbal_device_id"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->gimbal_device_id = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // roll_min PyObject * field = PyObject_GetAttrString(_pymsg, "roll_min"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->roll_min = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // roll_max PyObject * field = PyObject_GetAttrString(_pymsg, "roll_max"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->roll_max = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // pitch_min PyObject * field = PyObject_GetAttrString(_pymsg, "pitch_min"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->pitch_min = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // pitch_max PyObject * field = PyObject_GetAttrString(_pymsg, "pitch_max"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->pitch_max = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // yaw_min PyObject * field = PyObject_GetAttrString(_pymsg, "yaw_min"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->yaw_min = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // yaw_max PyObject * field = PyObject_GetAttrString(_pymsg, "yaw_max"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->yaw_max = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__gimbal_manager_information__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of GimbalManagerInformation */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._gimbal_manager_information"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "GimbalManagerInformation"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__GimbalManagerInformation * ros_message = (px4_msgs__msg__GimbalManagerInformation *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cap_flags PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->cap_flags); { int rc = PyObject_SetAttrString(_pymessage, "cap_flags", field); Py_DECREF(field); if (rc) { return NULL; } } } { // gimbal_device_id PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->gimbal_device_id); { int rc = PyObject_SetAttrString(_pymessage, "gimbal_device_id", field); Py_DECREF(field); if (rc) { return NULL; } } } { // roll_min PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->roll_min); { int rc = PyObject_SetAttrString(_pymessage, "roll_min", field); Py_DECREF(field); if (rc) { return NULL; } } } { // roll_max PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->roll_max); { int rc = PyObject_SetAttrString(_pymessage, "roll_max", field); Py_DECREF(field); if (rc) { return NULL; } } } { // pitch_min PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->pitch_min); { int rc = PyObject_SetAttrString(_pymessage, "pitch_min", field); Py_DECREF(field); if (rc) { return NULL; } } } { // pitch_max PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->pitch_max); { int rc = PyObject_SetAttrString(_pymessage, "pitch_max", field); Py_DECREF(field); if (rc) { return NULL; } } } { // yaw_min PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->yaw_min); { int rc = PyObject_SetAttrString(_pymessage, "yaw_min", field); Py_DECREF(field); if (rc) { return NULL; } } } { // yaw_max PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->yaw_max); { int rc = PyObject_SetAttrString(_pymessage, "yaw_max", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/mission_result.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__MISSION_RESULT_HPP_ #define PX4_MSGS__MSG__MISSION_RESULT_HPP_ #include "px4_msgs/msg/mission_result__struct.hpp" #include "px4_msgs/msg/mission_result__traits.hpp" #endif // PX4_MSGS__MSG__MISSION_RESULT_HPP_ <file_sep>/build/multi_rtd_interfaces/CMakeFiles/multi_rtd_interfaces__rosidl_typesupport_fastrtps_cpp.dir/cmake_clean.cmake file(REMOVE_RECURSE "rosidl_typesupport_fastrtps_cpp/multi_rtd_interfaces/msg/dds_fastrtps/robot_trajectory__type_support.cpp" "rosidl_typesupport_fastrtps_cpp/multi_rtd_interfaces/msg/robot_trajectory__rosidl_typesupport_fastrtps_cpp.hpp" "CMakeFiles/multi_rtd_interfaces__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/multi_rtd_interfaces/msg/dds_fastrtps/robot_trajectory__type_support.cpp.o" "libmulti_rtd_interfaces__rosidl_typesupport_fastrtps_cpp.pdb" "libmulti_rtd_interfaces__rosidl_typesupport_fastrtps_cpp.so" ) # Per-language clean rules from dependency scanning. foreach(lang CXX) include(CMakeFiles/multi_rtd_interfaces__rosidl_typesupport_fastrtps_cpp.dir/cmake_clean_${lang}.cmake OPTIONAL) endforeach() <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_vehicle_command_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/VehicleCommand.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/vehicle_command__struct.h" #include "px4_msgs/msg/vehicle_command__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__vehicle_command__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[45]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._vehicle_command.VehicleCommand", full_classname_dest, 44) == 0); } px4_msgs__msg__VehicleCommand * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // param1 PyObject * field = PyObject_GetAttrString(_pymsg, "param1"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->param1 = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // param2 PyObject * field = PyObject_GetAttrString(_pymsg, "param2"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->param2 = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // param3 PyObject * field = PyObject_GetAttrString(_pymsg, "param3"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->param3 = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // param4 PyObject * field = PyObject_GetAttrString(_pymsg, "param4"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->param4 = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // param5 PyObject * field = PyObject_GetAttrString(_pymsg, "param5"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->param5 = PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // param6 PyObject * field = PyObject_GetAttrString(_pymsg, "param6"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->param6 = PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // param7 PyObject * field = PyObject_GetAttrString(_pymsg, "param7"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->param7 = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // command PyObject * field = PyObject_GetAttrString(_pymsg, "command"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->command = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // target_system PyObject * field = PyObject_GetAttrString(_pymsg, "target_system"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->target_system = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // target_component PyObject * field = PyObject_GetAttrString(_pymsg, "target_component"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->target_component = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // source_system PyObject * field = PyObject_GetAttrString(_pymsg, "source_system"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->source_system = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // source_component PyObject * field = PyObject_GetAttrString(_pymsg, "source_component"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->source_component = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // confirmation PyObject * field = PyObject_GetAttrString(_pymsg, "confirmation"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->confirmation = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // from_external PyObject * field = PyObject_GetAttrString(_pymsg, "from_external"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->from_external = (Py_True == field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__vehicle_command__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of VehicleCommand */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._vehicle_command"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "VehicleCommand"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__VehicleCommand * ros_message = (px4_msgs__msg__VehicleCommand *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // param1 PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->param1); { int rc = PyObject_SetAttrString(_pymessage, "param1", field); Py_DECREF(field); if (rc) { return NULL; } } } { // param2 PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->param2); { int rc = PyObject_SetAttrString(_pymessage, "param2", field); Py_DECREF(field); if (rc) { return NULL; } } } { // param3 PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->param3); { int rc = PyObject_SetAttrString(_pymessage, "param3", field); Py_DECREF(field); if (rc) { return NULL; } } } { // param4 PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->param4); { int rc = PyObject_SetAttrString(_pymessage, "param4", field); Py_DECREF(field); if (rc) { return NULL; } } } { // param5 PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->param5); { int rc = PyObject_SetAttrString(_pymessage, "param5", field); Py_DECREF(field); if (rc) { return NULL; } } } { // param6 PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->param6); { int rc = PyObject_SetAttrString(_pymessage, "param6", field); Py_DECREF(field); if (rc) { return NULL; } } } { // param7 PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->param7); { int rc = PyObject_SetAttrString(_pymessage, "param7", field); Py_DECREF(field); if (rc) { return NULL; } } } { // command PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->command); { int rc = PyObject_SetAttrString(_pymessage, "command", field); Py_DECREF(field); if (rc) { return NULL; } } } { // target_system PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->target_system); { int rc = PyObject_SetAttrString(_pymessage, "target_system", field); Py_DECREF(field); if (rc) { return NULL; } } } { // target_component PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->target_component); { int rc = PyObject_SetAttrString(_pymessage, "target_component", field); Py_DECREF(field); if (rc) { return NULL; } } } { // source_system PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->source_system); { int rc = PyObject_SetAttrString(_pymessage, "source_system", field); Py_DECREF(field); if (rc) { return NULL; } } } { // source_component PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->source_component); { int rc = PyObject_SetAttrString(_pymessage, "source_component", field); Py_DECREF(field); if (rc) { return NULL; } } } { // confirmation PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->confirmation); { int rc = PyObject_SetAttrString(_pymessage, "confirmation", field); Py_DECREF(field); if (rc) { return NULL; } } } { // from_external PyObject * field = NULL; field = PyBool_FromLong(ros_message->from_external ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "from_external", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_channels__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/RcChannels.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/rc_channels__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/rc_channels__struct.h" #include "px4_msgs/msg/rc_channels__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _RcChannels__ros_msg_type = px4_msgs__msg__RcChannels; static bool _RcChannels__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _RcChannels__ros_msg_type * ros_message = static_cast<const _RcChannels__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: timestamp_last_valid { cdr << ros_message->timestamp_last_valid; } // Field name: channels { size_t size = 18; auto array_ptr = ros_message->channels; cdr.serializeArray(array_ptr, size); } // Field name: channel_count { cdr << ros_message->channel_count; } // Field name: function { size_t size = 26; auto array_ptr = ros_message->function; cdr.serializeArray(array_ptr, size); } // Field name: rssi { cdr << ros_message->rssi; } // Field name: signal_lost { cdr << (ros_message->signal_lost ? true : false); } // Field name: frame_drop_count { cdr << ros_message->frame_drop_count; } return true; } static bool _RcChannels__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _RcChannels__ros_msg_type * ros_message = static_cast<_RcChannels__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: timestamp_last_valid { cdr >> ros_message->timestamp_last_valid; } // Field name: channels { size_t size = 18; auto array_ptr = ros_message->channels; cdr.deserializeArray(array_ptr, size); } // Field name: channel_count { cdr >> ros_message->channel_count; } // Field name: function { size_t size = 26; auto array_ptr = ros_message->function; cdr.deserializeArray(array_ptr, size); } // Field name: rssi { cdr >> ros_message->rssi; } // Field name: signal_lost { uint8_t tmp; cdr >> tmp; ros_message->signal_lost = tmp ? true : false; } // Field name: frame_drop_count { cdr >> ros_message->frame_drop_count; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__RcChannels( const void * untyped_ros_message, size_t current_alignment) { const _RcChannels__ros_msg_type * ros_message = static_cast<const _RcChannels__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name timestamp_last_valid { size_t item_size = sizeof(ros_message->timestamp_last_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name channels { size_t array_size = 18; auto array_ptr = ros_message->channels; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name channel_count { size_t item_size = sizeof(ros_message->channel_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name function { size_t array_size = 26; auto array_ptr = ros_message->function; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rssi { size_t item_size = sizeof(ros_message->rssi); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name signal_lost { size_t item_size = sizeof(ros_message->signal_lost); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name frame_drop_count { size_t item_size = sizeof(ros_message->frame_drop_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _RcChannels__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__RcChannels( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__RcChannels( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: timestamp_last_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: channels { size_t array_size = 18; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: channel_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: function { size_t array_size = 26; current_alignment += array_size * sizeof(uint8_t); } // member: rssi { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: signal_lost { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: frame_drop_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _RcChannels__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__RcChannels( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_RcChannels = { "px4_msgs::msg", "RcChannels", _RcChannels__cdr_serialize, _RcChannels__cdr_deserialize, _RcChannels__get_serialized_size, _RcChannels__max_serialized_size }; static rosidl_message_type_support_t _RcChannels__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_RcChannels, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, RcChannels)() { return &_RcChannels__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_optical_flow_vel__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/EstimatorOpticalFlowVel.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/estimator_optical_flow_vel__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__EstimatorOpticalFlowVel__init(px4_msgs__msg__EstimatorOpticalFlowVel * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // vel_body // vel_ne // flow_uncompensated_integral // flow_compensated_integral // gyro_rate_integral return true; } void px4_msgs__msg__EstimatorOpticalFlowVel__fini(px4_msgs__msg__EstimatorOpticalFlowVel * msg) { if (!msg) { return; } // timestamp // timestamp_sample // vel_body // vel_ne // flow_uncompensated_integral // flow_compensated_integral // gyro_rate_integral } px4_msgs__msg__EstimatorOpticalFlowVel * px4_msgs__msg__EstimatorOpticalFlowVel__create() { px4_msgs__msg__EstimatorOpticalFlowVel * msg = (px4_msgs__msg__EstimatorOpticalFlowVel *)malloc(sizeof(px4_msgs__msg__EstimatorOpticalFlowVel)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__EstimatorOpticalFlowVel)); bool success = px4_msgs__msg__EstimatorOpticalFlowVel__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__EstimatorOpticalFlowVel__destroy(px4_msgs__msg__EstimatorOpticalFlowVel * msg) { if (msg) { px4_msgs__msg__EstimatorOpticalFlowVel__fini(msg); } free(msg); } bool px4_msgs__msg__EstimatorOpticalFlowVel__Sequence__init(px4_msgs__msg__EstimatorOpticalFlowVel__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__EstimatorOpticalFlowVel * data = NULL; if (size) { data = (px4_msgs__msg__EstimatorOpticalFlowVel *)calloc(size, sizeof(px4_msgs__msg__EstimatorOpticalFlowVel)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__EstimatorOpticalFlowVel__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__EstimatorOpticalFlowVel__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__EstimatorOpticalFlowVel__Sequence__fini(px4_msgs__msg__EstimatorOpticalFlowVel__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__EstimatorOpticalFlowVel__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__EstimatorOpticalFlowVel__Sequence * px4_msgs__msg__EstimatorOpticalFlowVel__Sequence__create(size_t size) { px4_msgs__msg__EstimatorOpticalFlowVel__Sequence * array = (px4_msgs__msg__EstimatorOpticalFlowVel__Sequence *)malloc(sizeof(px4_msgs__msg__EstimatorOpticalFlowVel__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__EstimatorOpticalFlowVel__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__EstimatorOpticalFlowVel__Sequence__destroy(px4_msgs__msg__EstimatorOpticalFlowVel__Sequence * array) { if (array) { px4_msgs__msg__EstimatorOpticalFlowVel__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/estimator_optical_flow_vel__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/EstimatorOpticalFlowVel.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_OPTICAL_FLOW_VEL__STRUCT_HPP_ #define PX4_MSGS__MSG__ESTIMATOR_OPTICAL_FLOW_VEL__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__EstimatorOpticalFlowVel __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__EstimatorOpticalFlowVel __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct EstimatorOpticalFlowVel_ { using Type = EstimatorOpticalFlowVel_<ContainerAllocator>; explicit EstimatorOpticalFlowVel_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; std::fill<typename std::array<float, 2>::iterator, float>(this->vel_body.begin(), this->vel_body.end(), 0.0f); std::fill<typename std::array<float, 2>::iterator, float>(this->vel_ne.begin(), this->vel_ne.end(), 0.0f); std::fill<typename std::array<float, 2>::iterator, float>(this->flow_uncompensated_integral.begin(), this->flow_uncompensated_integral.end(), 0.0f); std::fill<typename std::array<float, 2>::iterator, float>(this->flow_compensated_integral.begin(), this->flow_compensated_integral.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->gyro_rate_integral.begin(), this->gyro_rate_integral.end(), 0.0f); } } explicit EstimatorOpticalFlowVel_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : vel_body(_alloc), vel_ne(_alloc), flow_uncompensated_integral(_alloc), flow_compensated_integral(_alloc), gyro_rate_integral(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; std::fill<typename std::array<float, 2>::iterator, float>(this->vel_body.begin(), this->vel_body.end(), 0.0f); std::fill<typename std::array<float, 2>::iterator, float>(this->vel_ne.begin(), this->vel_ne.end(), 0.0f); std::fill<typename std::array<float, 2>::iterator, float>(this->flow_uncompensated_integral.begin(), this->flow_uncompensated_integral.end(), 0.0f); std::fill<typename std::array<float, 2>::iterator, float>(this->flow_compensated_integral.begin(), this->flow_compensated_integral.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->gyro_rate_integral.begin(), this->gyro_rate_integral.end(), 0.0f); } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _timestamp_sample_type = uint64_t; _timestamp_sample_type timestamp_sample; using _vel_body_type = std::array<float, 2>; _vel_body_type vel_body; using _vel_ne_type = std::array<float, 2>; _vel_ne_type vel_ne; using _flow_uncompensated_integral_type = std::array<float, 2>; _flow_uncompensated_integral_type flow_uncompensated_integral; using _flow_compensated_integral_type = std::array<float, 2>; _flow_compensated_integral_type flow_compensated_integral; using _gyro_rate_integral_type = std::array<float, 3>; _gyro_rate_integral_type gyro_rate_integral; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__timestamp_sample( const uint64_t & _arg) { this->timestamp_sample = _arg; return *this; } Type & set__vel_body( const std::array<float, 2> & _arg) { this->vel_body = _arg; return *this; } Type & set__vel_ne( const std::array<float, 2> & _arg) { this->vel_ne = _arg; return *this; } Type & set__flow_uncompensated_integral( const std::array<float, 2> & _arg) { this->flow_uncompensated_integral = _arg; return *this; } Type & set__flow_compensated_integral( const std::array<float, 2> & _arg) { this->flow_compensated_integral = _arg; return *this; } Type & set__gyro_rate_integral( const std::array<float, 3> & _arg) { this->gyro_rate_integral = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::EstimatorOpticalFlowVel_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::EstimatorOpticalFlowVel_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::EstimatorOpticalFlowVel_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::EstimatorOpticalFlowVel_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::EstimatorOpticalFlowVel_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::EstimatorOpticalFlowVel_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::EstimatorOpticalFlowVel_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::EstimatorOpticalFlowVel_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::EstimatorOpticalFlowVel_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::EstimatorOpticalFlowVel_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__EstimatorOpticalFlowVel std::shared_ptr<px4_msgs::msg::EstimatorOpticalFlowVel_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__EstimatorOpticalFlowVel std::shared_ptr<px4_msgs::msg::EstimatorOpticalFlowVel_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const EstimatorOpticalFlowVel_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->timestamp_sample != other.timestamp_sample) { return false; } if (this->vel_body != other.vel_body) { return false; } if (this->vel_ne != other.vel_ne) { return false; } if (this->flow_uncompensated_integral != other.flow_uncompensated_integral) { return false; } if (this->flow_compensated_integral != other.flow_compensated_integral) { return false; } if (this->gyro_rate_integral != other.gyro_rate_integral) { return false; } return true; } bool operator!=(const EstimatorOpticalFlowVel_ & other) const { return !this->operator==(other); } }; // struct EstimatorOpticalFlowVel_ // alias to use template instance with default allocator using EstimatorOpticalFlowVel = px4_msgs::msg::EstimatorOpticalFlowVel_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__ESTIMATOR_OPTICAL_FLOW_VEL__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/yaw_estimator_status__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/YawEstimatorStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__YAW_ESTIMATOR_STATUS__STRUCT_HPP_ #define PX4_MSGS__MSG__YAW_ESTIMATOR_STATUS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__YawEstimatorStatus __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__YawEstimatorStatus __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct YawEstimatorStatus_ { using Type = YawEstimatorStatus_<ContainerAllocator>; explicit YawEstimatorStatus_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->yaw_composite = 0.0f; this->yaw_variance = 0.0f; std::fill<typename std::array<float, 5>::iterator, float>(this->yaw.begin(), this->yaw.end(), 0.0f); std::fill<typename std::array<float, 5>::iterator, float>(this->innov_vn.begin(), this->innov_vn.end(), 0.0f); std::fill<typename std::array<float, 5>::iterator, float>(this->innov_ve.begin(), this->innov_ve.end(), 0.0f); std::fill<typename std::array<float, 5>::iterator, float>(this->weight.begin(), this->weight.end(), 0.0f); } } explicit YawEstimatorStatus_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : yaw(_alloc), innov_vn(_alloc), innov_ve(_alloc), weight(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->yaw_composite = 0.0f; this->yaw_variance = 0.0f; std::fill<typename std::array<float, 5>::iterator, float>(this->yaw.begin(), this->yaw.end(), 0.0f); std::fill<typename std::array<float, 5>::iterator, float>(this->innov_vn.begin(), this->innov_vn.end(), 0.0f); std::fill<typename std::array<float, 5>::iterator, float>(this->innov_ve.begin(), this->innov_ve.end(), 0.0f); std::fill<typename std::array<float, 5>::iterator, float>(this->weight.begin(), this->weight.end(), 0.0f); } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _timestamp_sample_type = uint64_t; _timestamp_sample_type timestamp_sample; using _yaw_composite_type = float; _yaw_composite_type yaw_composite; using _yaw_variance_type = float; _yaw_variance_type yaw_variance; using _yaw_type = std::array<float, 5>; _yaw_type yaw; using _innov_vn_type = std::array<float, 5>; _innov_vn_type innov_vn; using _innov_ve_type = std::array<float, 5>; _innov_ve_type innov_ve; using _weight_type = std::array<float, 5>; _weight_type weight; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__timestamp_sample( const uint64_t & _arg) { this->timestamp_sample = _arg; return *this; } Type & set__yaw_composite( const float & _arg) { this->yaw_composite = _arg; return *this; } Type & set__yaw_variance( const float & _arg) { this->yaw_variance = _arg; return *this; } Type & set__yaw( const std::array<float, 5> & _arg) { this->yaw = _arg; return *this; } Type & set__innov_vn( const std::array<float, 5> & _arg) { this->innov_vn = _arg; return *this; } Type & set__innov_ve( const std::array<float, 5> & _arg) { this->innov_ve = _arg; return *this; } Type & set__weight( const std::array<float, 5> & _arg) { this->weight = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::YawEstimatorStatus_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::YawEstimatorStatus_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::YawEstimatorStatus_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::YawEstimatorStatus_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::YawEstimatorStatus_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::YawEstimatorStatus_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::YawEstimatorStatus_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::YawEstimatorStatus_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::YawEstimatorStatus_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::YawEstimatorStatus_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__YawEstimatorStatus std::shared_ptr<px4_msgs::msg::YawEstimatorStatus_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__YawEstimatorStatus std::shared_ptr<px4_msgs::msg::YawEstimatorStatus_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const YawEstimatorStatus_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->timestamp_sample != other.timestamp_sample) { return false; } if (this->yaw_composite != other.yaw_composite) { return false; } if (this->yaw_variance != other.yaw_variance) { return false; } if (this->yaw != other.yaw) { return false; } if (this->innov_vn != other.innov_vn) { return false; } if (this->innov_ve != other.innov_ve) { return false; } if (this->weight != other.weight) { return false; } return true; } bool operator!=(const YawEstimatorStatus_ & other) const { return !this->operator==(other); } }; // struct YawEstimatorStatus_ // alias to use template instance with default allocator using YawEstimatorStatus = px4_msgs::msg::YawEstimatorStatus_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__YAW_ESTIMATOR_STATUS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/irlock_report__rosidl_typesupport_introspection_cpp.hpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__rosidl_typesupport_introspection_cpp.h.em // with input from px4_msgs:msg/IrlockReport.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__IRLOCK_REPORT__ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_HPP_ #define PX4_MSGS__MSG__IRLOCK_REPORT__ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_HPP_ #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" #ifdef __cplusplus extern "C" { #endif // TODO(dirk-thomas) these visibility macros should be message package specific ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, IrlockReport)(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__IRLOCK_REPORT__ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/camera_trigger_secondary.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/CameraTriggerSecondary.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__CAMERA_TRIGGER_SECONDARY_H_ #define PX4_MSGS__MSG__CAMERA_TRIGGER_SECONDARY_H_ #include "px4_msgs/msg/camera_trigger_secondary__struct.h" #include "px4_msgs/msg/camera_trigger_secondary__functions.h" #include "px4_msgs/msg/camera_trigger_secondary__type_support.h" #endif // PX4_MSGS__MSG__CAMERA_TRIGGER_SECONDARY_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/navigator_mission_item__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/NavigatorMissionItem.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/navigator_mission_item__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__NavigatorMissionItem__init(px4_msgs__msg__NavigatorMissionItem * msg) { if (!msg) { return false; } // timestamp // instance_count // sequence_current // nav_cmd // latitude // longitude // time_inside // acceptance_radius // loiter_radius // yaw // altitude // frame // origin // loiter_exit_xtrack // force_heading // altitude_is_relative // autocontinue // vtol_back_transition return true; } void px4_msgs__msg__NavigatorMissionItem__fini(px4_msgs__msg__NavigatorMissionItem * msg) { if (!msg) { return; } // timestamp // instance_count // sequence_current // nav_cmd // latitude // longitude // time_inside // acceptance_radius // loiter_radius // yaw // altitude // frame // origin // loiter_exit_xtrack // force_heading // altitude_is_relative // autocontinue // vtol_back_transition } px4_msgs__msg__NavigatorMissionItem * px4_msgs__msg__NavigatorMissionItem__create() { px4_msgs__msg__NavigatorMissionItem * msg = (px4_msgs__msg__NavigatorMissionItem *)malloc(sizeof(px4_msgs__msg__NavigatorMissionItem)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__NavigatorMissionItem)); bool success = px4_msgs__msg__NavigatorMissionItem__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__NavigatorMissionItem__destroy(px4_msgs__msg__NavigatorMissionItem * msg) { if (msg) { px4_msgs__msg__NavigatorMissionItem__fini(msg); } free(msg); } bool px4_msgs__msg__NavigatorMissionItem__Sequence__init(px4_msgs__msg__NavigatorMissionItem__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__NavigatorMissionItem * data = NULL; if (size) { data = (px4_msgs__msg__NavigatorMissionItem *)calloc(size, sizeof(px4_msgs__msg__NavigatorMissionItem)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__NavigatorMissionItem__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__NavigatorMissionItem__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__NavigatorMissionItem__Sequence__fini(px4_msgs__msg__NavigatorMissionItem__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__NavigatorMissionItem__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__NavigatorMissionItem__Sequence * px4_msgs__msg__NavigatorMissionItem__Sequence__create(size_t size) { px4_msgs__msg__NavigatorMissionItem__Sequence * array = (px4_msgs__msg__NavigatorMissionItem__Sequence *)malloc(sizeof(px4_msgs__msg__NavigatorMissionItem__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__NavigatorMissionItem__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__NavigatorMissionItem__Sequence__destroy(px4_msgs__msg__NavigatorMissionItem__Sequence * array) { if (array) { px4_msgs__msg__NavigatorMissionItem__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/EstimatorStatus.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/estimator_status__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void EstimatorStatus_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::EstimatorStatus(_init); } void EstimatorStatus_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::EstimatorStatus *>(message_memory); typed_message->~EstimatorStatus(); } size_t size_function__EstimatorStatus__vibe(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__EstimatorStatus__vibe(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__EstimatorStatus__vibe(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorStatus__output_tracking_error(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__EstimatorStatus__output_tracking_error(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__EstimatorStatus__output_tracking_error(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember EstimatorStatus_message_member_array[35] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vibe", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, vibe), // bytes offset in struct nullptr, // default value size_function__EstimatorStatus__vibe, // size() function pointer get_const_function__EstimatorStatus__vibe, // get_const(index) function pointer get_function__EstimatorStatus__vibe, // get(index) function pointer nullptr // resize(index) function pointer }, { "output_tracking_error", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, output_tracking_error), // bytes offset in struct nullptr, // default value size_function__EstimatorStatus__output_tracking_error, // size() function pointer get_const_function__EstimatorStatus__output_tracking_error, // get_const(index) function pointer get_function__EstimatorStatus__output_tracking_error, // get(index) function pointer nullptr // resize(index) function pointer }, { "gps_check_fail_flags", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, gps_check_fail_flags), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "control_mode_flags", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, control_mode_flags), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "filter_fault_flags", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, filter_fault_flags), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "pos_horiz_accuracy", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, pos_horiz_accuracy), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "pos_vert_accuracy", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, pos_vert_accuracy), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "innovation_check_flags", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, innovation_check_flags), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "mag_test_ratio", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, mag_test_ratio), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vel_test_ratio", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, vel_test_ratio), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "pos_test_ratio", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, pos_test_ratio), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "hgt_test_ratio", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, hgt_test_ratio), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "tas_test_ratio", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, tas_test_ratio), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "hagl_test_ratio", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, hagl_test_ratio), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "beta_test_ratio", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, beta_test_ratio), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "solution_status_flags", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, solution_status_flags), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "reset_count_vel_ne", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, reset_count_vel_ne), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "reset_count_vel_d", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, reset_count_vel_d), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "reset_count_pos_ne", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, reset_count_pos_ne), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "reset_count_pod_d", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, reset_count_pod_d), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "reset_count_quat", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, reset_count_quat), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "time_slip", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, time_slip), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "pre_flt_fail_innov_heading", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, pre_flt_fail_innov_heading), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "pre_flt_fail_innov_vel_horiz", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, pre_flt_fail_innov_vel_horiz), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "pre_flt_fail_innov_vel_vert", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, pre_flt_fail_innov_vel_vert), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "pre_flt_fail_innov_height", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, pre_flt_fail_innov_height), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "pre_flt_fail_mag_field_disturbed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, pre_flt_fail_mag_field_disturbed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "accel_device_id", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, accel_device_id), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "gyro_device_id", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, gyro_device_id), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "baro_device_id", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, baro_device_id), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "mag_device_id", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, mag_device_id), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "health_flags", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, health_flags), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timeout_flags", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatus, timeout_flags), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers EstimatorStatus_message_members = { "px4_msgs::msg", // message namespace "EstimatorStatus", // message name 35, // number of fields sizeof(px4_msgs::msg::EstimatorStatus), EstimatorStatus_message_member_array, // message members EstimatorStatus_init_function, // function to initialize message memory (memory has to be allocated) EstimatorStatus_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t EstimatorStatus_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &EstimatorStatus_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::EstimatorStatus>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EstimatorStatus_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, EstimatorStatus)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EstimatorStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_global_position__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleGlobalPosition.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_GLOBAL_POSITION__STRUCT_H_ #define PX4_MSGS__MSG__VEHICLE_GLOBAL_POSITION__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/VehicleGlobalPosition in the package px4_msgs. typedef struct px4_msgs__msg__VehicleGlobalPosition { uint64_t timestamp; uint64_t timestamp_sample; double lat; double lon; float alt; float alt_ellipsoid; float delta_alt; uint8_t lat_lon_reset_counter; uint8_t alt_reset_counter; float eph; float epv; float terrain_alt; bool terrain_alt_valid; bool dead_reckoning; } px4_msgs__msg__VehicleGlobalPosition; // Struct for a sequence of px4_msgs__msg__VehicleGlobalPosition. typedef struct px4_msgs__msg__VehicleGlobalPosition__Sequence { px4_msgs__msg__VehicleGlobalPosition * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__VehicleGlobalPosition__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_GLOBAL_POSITION__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_parameter_map__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/RcParameterMap.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/rc_parameter_map__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/rc_parameter_map__struct.h" #include "px4_msgs/msg/rc_parameter_map__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _RcParameterMap__ros_msg_type = px4_msgs__msg__RcParameterMap; static bool _RcParameterMap__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _RcParameterMap__ros_msg_type * ros_message = static_cast<const _RcParameterMap__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: valid { size_t size = 3; auto array_ptr = ros_message->valid; cdr.serializeArray(array_ptr, size); } // Field name: param_index { size_t size = 3; auto array_ptr = ros_message->param_index; cdr.serializeArray(array_ptr, size); } // Field name: param_id { size_t size = 51; auto array_ptr = ros_message->param_id; cdr.serializeArray(array_ptr, size); } // Field name: scale { size_t size = 3; auto array_ptr = ros_message->scale; cdr.serializeArray(array_ptr, size); } // Field name: value0 { size_t size = 3; auto array_ptr = ros_message->value0; cdr.serializeArray(array_ptr, size); } // Field name: value_min { size_t size = 3; auto array_ptr = ros_message->value_min; cdr.serializeArray(array_ptr, size); } // Field name: value_max { size_t size = 3; auto array_ptr = ros_message->value_max; cdr.serializeArray(array_ptr, size); } return true; } static bool _RcParameterMap__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _RcParameterMap__ros_msg_type * ros_message = static_cast<_RcParameterMap__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: valid { size_t size = 3; auto array_ptr = ros_message->valid; for (size_t i = 0; i < size; ++i) { uint8_t tmp; cdr >> tmp; array_ptr[i] = tmp ? true : false; } } // Field name: param_index { size_t size = 3; auto array_ptr = ros_message->param_index; cdr.deserializeArray(array_ptr, size); } // Field name: param_id { size_t size = 51; auto array_ptr = ros_message->param_id; cdr.deserializeArray(array_ptr, size); } // Field name: scale { size_t size = 3; auto array_ptr = ros_message->scale; cdr.deserializeArray(array_ptr, size); } // Field name: value0 { size_t size = 3; auto array_ptr = ros_message->value0; cdr.deserializeArray(array_ptr, size); } // Field name: value_min { size_t size = 3; auto array_ptr = ros_message->value_min; cdr.deserializeArray(array_ptr, size); } // Field name: value_max { size_t size = 3; auto array_ptr = ros_message->value_max; cdr.deserializeArray(array_ptr, size); } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__RcParameterMap( const void * untyped_ros_message, size_t current_alignment) { const _RcParameterMap__ros_msg_type * ros_message = static_cast<const _RcParameterMap__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name valid { size_t array_size = 3; auto array_ptr = ros_message->valid; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name param_index { size_t array_size = 3; auto array_ptr = ros_message->param_index; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name param_id { size_t array_size = 51; auto array_ptr = ros_message->param_id; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name scale { size_t array_size = 3; auto array_ptr = ros_message->scale; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name value0 { size_t array_size = 3; auto array_ptr = ros_message->value0; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name value_min { size_t array_size = 3; auto array_ptr = ros_message->value_min; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name value_max { size_t array_size = 3; auto array_ptr = ros_message->value_max; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _RcParameterMap__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__RcParameterMap( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__RcParameterMap( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: valid { size_t array_size = 3; current_alignment += array_size * sizeof(uint8_t); } // member: param_index { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: param_id { size_t array_size = 51; current_alignment += array_size * sizeof(uint8_t); } // member: scale { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: value0 { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: value_min { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: value_max { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _RcParameterMap__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__RcParameterMap( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_RcParameterMap = { "px4_msgs::msg", "RcParameterMap", _RcParameterMap__cdr_serialize, _RcParameterMap__cdr_deserialize, _RcParameterMap__get_serialized_size, _RcParameterMap__max_serialized_size }; static rosidl_message_type_support_t _RcParameterMap__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_RcParameterMap, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, RcParameterMap)() { return &_RcParameterMap__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_airspeed_validated_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/AirspeedValidated.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/airspeed_validated__struct.h" #include "px4_msgs/msg/airspeed_validated__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__airspeed_validated__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[51]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._airspeed_validated.AirspeedValidated", full_classname_dest, 50) == 0); } px4_msgs__msg__AirspeedValidated * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // indicated_airspeed_m_s PyObject * field = PyObject_GetAttrString(_pymsg, "indicated_airspeed_m_s"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->indicated_airspeed_m_s = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // calibrated_airspeed_m_s PyObject * field = PyObject_GetAttrString(_pymsg, "calibrated_airspeed_m_s"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->calibrated_airspeed_m_s = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // true_airspeed_m_s PyObject * field = PyObject_GetAttrString(_pymsg, "true_airspeed_m_s"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->true_airspeed_m_s = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // calibrated_ground_minus_wind_m_s PyObject * field = PyObject_GetAttrString(_pymsg, "calibrated_ground_minus_wind_m_s"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->calibrated_ground_minus_wind_m_s = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // true_ground_minus_wind_m_s PyObject * field = PyObject_GetAttrString(_pymsg, "true_ground_minus_wind_m_s"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->true_ground_minus_wind_m_s = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // airspeed_sensor_measurement_valid PyObject * field = PyObject_GetAttrString(_pymsg, "airspeed_sensor_measurement_valid"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->airspeed_sensor_measurement_valid = (Py_True == field); Py_DECREF(field); } { // selected_airspeed_index PyObject * field = PyObject_GetAttrString(_pymsg, "selected_airspeed_index"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->selected_airspeed_index = (int8_t)PyLong_AsLong(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__airspeed_validated__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of AirspeedValidated */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._airspeed_validated"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "AirspeedValidated"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__AirspeedValidated * ros_message = (px4_msgs__msg__AirspeedValidated *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // indicated_airspeed_m_s PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->indicated_airspeed_m_s); { int rc = PyObject_SetAttrString(_pymessage, "indicated_airspeed_m_s", field); Py_DECREF(field); if (rc) { return NULL; } } } { // calibrated_airspeed_m_s PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->calibrated_airspeed_m_s); { int rc = PyObject_SetAttrString(_pymessage, "calibrated_airspeed_m_s", field); Py_DECREF(field); if (rc) { return NULL; } } } { // true_airspeed_m_s PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->true_airspeed_m_s); { int rc = PyObject_SetAttrString(_pymessage, "true_airspeed_m_s", field); Py_DECREF(field); if (rc) { return NULL; } } } { // calibrated_ground_minus_wind_m_s PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->calibrated_ground_minus_wind_m_s); { int rc = PyObject_SetAttrString(_pymessage, "calibrated_ground_minus_wind_m_s", field); Py_DECREF(field); if (rc) { return NULL; } } } { // true_ground_minus_wind_m_s PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->true_ground_minus_wind_m_s); { int rc = PyObject_SetAttrString(_pymessage, "true_ground_minus_wind_m_s", field); Py_DECREF(field); if (rc) { return NULL; } } } { // airspeed_sensor_measurement_valid PyObject * field = NULL; field = PyBool_FromLong(ros_message->airspeed_sensor_measurement_valid ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "airspeed_sensor_measurement_valid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // selected_airspeed_index PyObject * field = NULL; field = PyLong_FromLong(ros_message->selected_airspeed_index); { int rc = PyObject_SetAttrString(_pymessage, "selected_airspeed_index", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/actuator_armed.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_ARMED_HPP_ #define PX4_MSGS__MSG__ACTUATOR_ARMED_HPP_ #include "px4_msgs/msg/actuator_armed__struct.hpp" #include "px4_msgs/msg/actuator_armed__traits.hpp" #endif // PX4_MSGS__MSG__ACTUATOR_ARMED_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/mission_result__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/MissionResult.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/mission_result__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/mission_result__functions.h" #include "px4_msgs/msg/mission_result__struct.h" #ifdef __cplusplus extern "C" { #endif void MissionResult__rosidl_typesupport_introspection_c__MissionResult_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__MissionResult__init(message_memory); } void MissionResult__rosidl_typesupport_introspection_c__MissionResult_fini_function(void * message_memory) { px4_msgs__msg__MissionResult__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember MissionResult__rosidl_typesupport_introspection_c__MissionResult_message_member_array[15] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__MissionResult, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "instance_count", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__MissionResult, instance_count), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "seq_reached", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__MissionResult, seq_reached), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "seq_current", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__MissionResult, seq_current), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "seq_total", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__MissionResult, seq_total), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__MissionResult, valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "warning", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__MissionResult, warning), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "finished", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__MissionResult, finished), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "failure", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__MissionResult, failure), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "stay_in_failsafe", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__MissionResult, stay_in_failsafe), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "flight_termination", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__MissionResult, flight_termination), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "item_do_jump_changed", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__MissionResult, item_do_jump_changed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "item_changed_index", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__MissionResult, item_changed_index), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "item_do_jump_remaining", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__MissionResult, item_do_jump_remaining), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "execution_mode", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__MissionResult, execution_mode), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers MissionResult__rosidl_typesupport_introspection_c__MissionResult_message_members = { "px4_msgs__msg", // message namespace "MissionResult", // message name 15, // number of fields sizeof(px4_msgs__msg__MissionResult), MissionResult__rosidl_typesupport_introspection_c__MissionResult_message_member_array, // message members MissionResult__rosidl_typesupport_introspection_c__MissionResult_init_function, // function to initialize message memory (memory has to be allocated) MissionResult__rosidl_typesupport_introspection_c__MissionResult_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t MissionResult__rosidl_typesupport_introspection_c__MissionResult_message_type_support_handle = { 0, &MissionResult__rosidl_typesupport_introspection_c__MissionResult_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, MissionResult)() { if (!MissionResult__rosidl_typesupport_introspection_c__MissionResult_message_type_support_handle.typesupport_identifier) { MissionResult__rosidl_typesupport_introspection_c__MissionResult_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &MissionResult__rosidl_typesupport_introspection_c__MissionResult_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_tune_control.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/TuneControl.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_TuneControl(type): """Metaclass of message 'TuneControl'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'TUNE_ID_STOP': 0, 'TUNE_ID_STARTUP': 1, 'TUNE_ID_ERROR': 2, 'TUNE_ID_NOTIFY_POSITIVE': 3, 'TUNE_ID_NOTIFY_NEUTRAL': 4, 'TUNE_ID_NOTIFY_NEGATIVE': 5, 'TUNE_ID_ARMING_WARNING': 6, 'TUNE_ID_BATTERY_WARNING_SLOW': 7, 'TUNE_ID_BATTERY_WARNING_FAST': 8, 'TUNE_ID_GPS_WARNING': 9, 'TUNE_ID_ARMING_FAILURE': 10, 'TUNE_ID_PARACHUTE_RELEASE': 11, 'TUNE_ID_SINGLE_BEEP': 12, 'TUNE_ID_HOME_SET': 13, 'TUNE_ID_SD_INIT': 14, 'TUNE_ID_SD_ERROR': 15, 'TUNE_ID_PROG_PX4IO': 16, 'TUNE_ID_PROG_PX4IO_OK': 17, 'TUNE_ID_PROG_PX4IO_ERR': 18, 'NUMBER_OF_TUNES': 19, 'VOLUME_LEVEL_MIN': 0, 'VOLUME_LEVEL_DEFAULT': 40, 'VOLUME_LEVEL_MAX': 100, 'ORB_QUEUE_LENGTH': 4, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.TuneControl') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__tune_control cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__tune_control cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__tune_control cls._TYPE_SUPPORT = module.type_support_msg__msg__tune_control cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__tune_control @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'TUNE_ID_STOP': cls.__constants['TUNE_ID_STOP'], 'TUNE_ID_STARTUP': cls.__constants['TUNE_ID_STARTUP'], 'TUNE_ID_ERROR': cls.__constants['TUNE_ID_ERROR'], 'TUNE_ID_NOTIFY_POSITIVE': cls.__constants['TUNE_ID_NOTIFY_POSITIVE'], 'TUNE_ID_NOTIFY_NEUTRAL': cls.__constants['TUNE_ID_NOTIFY_NEUTRAL'], 'TUNE_ID_NOTIFY_NEGATIVE': cls.__constants['TUNE_ID_NOTIFY_NEGATIVE'], 'TUNE_ID_ARMING_WARNING': cls.__constants['TUNE_ID_ARMING_WARNING'], 'TUNE_ID_BATTERY_WARNING_SLOW': cls.__constants['TUNE_ID_BATTERY_WARNING_SLOW'], 'TUNE_ID_BATTERY_WARNING_FAST': cls.__constants['TUNE_ID_BATTERY_WARNING_FAST'], 'TUNE_ID_GPS_WARNING': cls.__constants['TUNE_ID_GPS_WARNING'], 'TUNE_ID_ARMING_FAILURE': cls.__constants['TUNE_ID_ARMING_FAILURE'], 'TUNE_ID_PARACHUTE_RELEASE': cls.__constants['TUNE_ID_PARACHUTE_RELEASE'], 'TUNE_ID_SINGLE_BEEP': cls.__constants['TUNE_ID_SINGLE_BEEP'], 'TUNE_ID_HOME_SET': cls.__constants['TUNE_ID_HOME_SET'], 'TUNE_ID_SD_INIT': cls.__constants['TUNE_ID_SD_INIT'], 'TUNE_ID_SD_ERROR': cls.__constants['TUNE_ID_SD_ERROR'], 'TUNE_ID_PROG_PX4IO': cls.__constants['TUNE_ID_PROG_PX4IO'], 'TUNE_ID_PROG_PX4IO_OK': cls.__constants['TUNE_ID_PROG_PX4IO_OK'], 'TUNE_ID_PROG_PX4IO_ERR': cls.__constants['TUNE_ID_PROG_PX4IO_ERR'], 'NUMBER_OF_TUNES': cls.__constants['NUMBER_OF_TUNES'], 'VOLUME_LEVEL_MIN': cls.__constants['VOLUME_LEVEL_MIN'], 'VOLUME_LEVEL_DEFAULT': cls.__constants['VOLUME_LEVEL_DEFAULT'], 'VOLUME_LEVEL_MAX': cls.__constants['VOLUME_LEVEL_MAX'], 'ORB_QUEUE_LENGTH': cls.__constants['ORB_QUEUE_LENGTH'], } @property def TUNE_ID_STOP(self): """Message constant 'TUNE_ID_STOP'.""" return Metaclass_TuneControl.__constants['TUNE_ID_STOP'] @property def TUNE_ID_STARTUP(self): """Message constant 'TUNE_ID_STARTUP'.""" return Metaclass_TuneControl.__constants['TUNE_ID_STARTUP'] @property def TUNE_ID_ERROR(self): """Message constant 'TUNE_ID_ERROR'.""" return Metaclass_TuneControl.__constants['TUNE_ID_ERROR'] @property def TUNE_ID_NOTIFY_POSITIVE(self): """Message constant 'TUNE_ID_NOTIFY_POSITIVE'.""" return Metaclass_TuneControl.__constants['TUNE_ID_NOTIFY_POSITIVE'] @property def TUNE_ID_NOTIFY_NEUTRAL(self): """Message constant 'TUNE_ID_NOTIFY_NEUTRAL'.""" return Metaclass_TuneControl.__constants['TUNE_ID_NOTIFY_NEUTRAL'] @property def TUNE_ID_NOTIFY_NEGATIVE(self): """Message constant 'TUNE_ID_NOTIFY_NEGATIVE'.""" return Metaclass_TuneControl.__constants['TUNE_ID_NOTIFY_NEGATIVE'] @property def TUNE_ID_ARMING_WARNING(self): """Message constant 'TUNE_ID_ARMING_WARNING'.""" return Metaclass_TuneControl.__constants['TUNE_ID_ARMING_WARNING'] @property def TUNE_ID_BATTERY_WARNING_SLOW(self): """Message constant 'TUNE_ID_BATTERY_WARNING_SLOW'.""" return Metaclass_TuneControl.__constants['TUNE_ID_BATTERY_WARNING_SLOW'] @property def TUNE_ID_BATTERY_WARNING_FAST(self): """Message constant 'TUNE_ID_BATTERY_WARNING_FAST'.""" return Metaclass_TuneControl.__constants['TUNE_ID_BATTERY_WARNING_FAST'] @property def TUNE_ID_GPS_WARNING(self): """Message constant 'TUNE_ID_GPS_WARNING'.""" return Metaclass_TuneControl.__constants['TUNE_ID_GPS_WARNING'] @property def TUNE_ID_ARMING_FAILURE(self): """Message constant 'TUNE_ID_ARMING_FAILURE'.""" return Metaclass_TuneControl.__constants['TUNE_ID_ARMING_FAILURE'] @property def TUNE_ID_PARACHUTE_RELEASE(self): """Message constant 'TUNE_ID_PARACHUTE_RELEASE'.""" return Metaclass_TuneControl.__constants['TUNE_ID_PARACHUTE_RELEASE'] @property def TUNE_ID_SINGLE_BEEP(self): """Message constant 'TUNE_ID_SINGLE_BEEP'.""" return Metaclass_TuneControl.__constants['TUNE_ID_SINGLE_BEEP'] @property def TUNE_ID_HOME_SET(self): """Message constant 'TUNE_ID_HOME_SET'.""" return Metaclass_TuneControl.__constants['TUNE_ID_HOME_SET'] @property def TUNE_ID_SD_INIT(self): """Message constant 'TUNE_ID_SD_INIT'.""" return Metaclass_TuneControl.__constants['TUNE_ID_SD_INIT'] @property def TUNE_ID_SD_ERROR(self): """Message constant 'TUNE_ID_SD_ERROR'.""" return Metaclass_TuneControl.__constants['TUNE_ID_SD_ERROR'] @property def TUNE_ID_PROG_PX4IO(self): """Message constant 'TUNE_ID_PROG_PX4IO'.""" return Metaclass_TuneControl.__constants['TUNE_ID_PROG_PX4IO'] @property def TUNE_ID_PROG_PX4IO_OK(self): """Message constant 'TUNE_ID_PROG_PX4IO_OK'.""" return Metaclass_TuneControl.__constants['TUNE_ID_PROG_PX4IO_OK'] @property def TUNE_ID_PROG_PX4IO_ERR(self): """Message constant 'TUNE_ID_PROG_PX4IO_ERR'.""" return Metaclass_TuneControl.__constants['TUNE_ID_PROG_PX4IO_ERR'] @property def NUMBER_OF_TUNES(self): """Message constant 'NUMBER_OF_TUNES'.""" return Metaclass_TuneControl.__constants['NUMBER_OF_TUNES'] @property def VOLUME_LEVEL_MIN(self): """Message constant 'VOLUME_LEVEL_MIN'.""" return Metaclass_TuneControl.__constants['VOLUME_LEVEL_MIN'] @property def VOLUME_LEVEL_DEFAULT(self): """Message constant 'VOLUME_LEVEL_DEFAULT'.""" return Metaclass_TuneControl.__constants['VOLUME_LEVEL_DEFAULT'] @property def VOLUME_LEVEL_MAX(self): """Message constant 'VOLUME_LEVEL_MAX'.""" return Metaclass_TuneControl.__constants['VOLUME_LEVEL_MAX'] @property def ORB_QUEUE_LENGTH(self): """Message constant 'ORB_QUEUE_LENGTH'.""" return Metaclass_TuneControl.__constants['ORB_QUEUE_LENGTH'] class TuneControl(metaclass=Metaclass_TuneControl): """ Message class 'TuneControl'. Constants: TUNE_ID_STOP TUNE_ID_STARTUP TUNE_ID_ERROR TUNE_ID_NOTIFY_POSITIVE TUNE_ID_NOTIFY_NEUTRAL TUNE_ID_NOTIFY_NEGATIVE TUNE_ID_ARMING_WARNING TUNE_ID_BATTERY_WARNING_SLOW TUNE_ID_BATTERY_WARNING_FAST TUNE_ID_GPS_WARNING TUNE_ID_ARMING_FAILURE TUNE_ID_PARACHUTE_RELEASE TUNE_ID_SINGLE_BEEP TUNE_ID_HOME_SET TUNE_ID_SD_INIT TUNE_ID_SD_ERROR TUNE_ID_PROG_PX4IO TUNE_ID_PROG_PX4IO_OK TUNE_ID_PROG_PX4IO_ERR NUMBER_OF_TUNES VOLUME_LEVEL_MIN VOLUME_LEVEL_DEFAULT VOLUME_LEVEL_MAX ORB_QUEUE_LENGTH """ __slots__ = [ '_timestamp', '_tune_id', '_tune_override', '_frequency', '_duration', '_silence', '_volume', ] _fields_and_field_types = { 'timestamp': 'uint64', 'tune_id': 'uint8', 'tune_override': 'boolean', 'frequency': 'uint16', 'duration': 'uint32', 'silence': 'uint32', 'volume': 'uint8', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.tune_id = kwargs.get('tune_id', int()) self.tune_override = kwargs.get('tune_override', bool()) self.frequency = kwargs.get('frequency', int()) self.duration = kwargs.get('duration', int()) self.silence = kwargs.get('silence', int()) self.volume = kwargs.get('volume', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.tune_id != other.tune_id: return False if self.tune_override != other.tune_override: return False if self.frequency != other.frequency: return False if self.duration != other.duration: return False if self.silence != other.silence: return False if self.volume != other.volume: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def tune_id(self): """Message field 'tune_id'.""" return self._tune_id @tune_id.setter def tune_id(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'tune_id' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'tune_id' field must be an unsigned integer in [0, 255]" self._tune_id = value @property def tune_override(self): """Message field 'tune_override'.""" return self._tune_override @tune_override.setter def tune_override(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'tune_override' field must be of type 'bool'" self._tune_override = value @property def frequency(self): """Message field 'frequency'.""" return self._frequency @frequency.setter def frequency(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'frequency' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'frequency' field must be an unsigned integer in [0, 65535]" self._frequency = value @property def duration(self): """Message field 'duration'.""" return self._duration @duration.setter def duration(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'duration' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'duration' field must be an unsigned integer in [0, 4294967295]" self._duration = value @property def silence(self): """Message field 'silence'.""" return self._silence @silence.setter def silence(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'silence' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'silence' field must be an unsigned integer in [0, 4294967295]" self._silence = value @property def volume(self): """Message field 'volume'.""" return self._volume @volume.setter def volume(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'volume' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'volume' field must be an unsigned integer in [0, 255]" self._volume = value <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/CameraTrigger.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/camera_trigger__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/camera_trigger__functions.h" #include "px4_msgs/msg/camera_trigger__struct.h" #ifdef __cplusplus extern "C" { #endif void CameraTrigger__rosidl_typesupport_introspection_c__CameraTrigger_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__CameraTrigger__init(message_memory); } void CameraTrigger__rosidl_typesupport_introspection_c__CameraTrigger_fini_function(void * message_memory) { px4_msgs__msg__CameraTrigger__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember CameraTrigger__rosidl_typesupport_introspection_c__CameraTrigger_message_member_array[4] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__CameraTrigger, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_utc", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__CameraTrigger, timestamp_utc), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "seq", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__CameraTrigger, seq), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "feedback", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__CameraTrigger, feedback), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers CameraTrigger__rosidl_typesupport_introspection_c__CameraTrigger_message_members = { "px4_msgs__msg", // message namespace "CameraTrigger", // message name 4, // number of fields sizeof(px4_msgs__msg__CameraTrigger), CameraTrigger__rosidl_typesupport_introspection_c__CameraTrigger_message_member_array, // message members CameraTrigger__rosidl_typesupport_introspection_c__CameraTrigger_init_function, // function to initialize message memory (memory has to be allocated) CameraTrigger__rosidl_typesupport_introspection_c__CameraTrigger_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t CameraTrigger__rosidl_typesupport_introspection_c__CameraTrigger_message_type_support_handle = { 0, &CameraTrigger__rosidl_typesupport_introspection_c__CameraTrigger_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, CameraTrigger)() { if (!CameraTrigger__rosidl_typesupport_introspection_c__CameraTrigger_message_type_support_handle.typesupport_identifier) { CameraTrigger__rosidl_typesupport_introspection_c__CameraTrigger_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &CameraTrigger__rosidl_typesupport_introspection_c__CameraTrigger_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_actuator_setpoint.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleActuatorSetpoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ACTUATOR_SETPOINT_H_ #define PX4_MSGS__MSG__VEHICLE_ACTUATOR_SETPOINT_H_ #include "px4_msgs/msg/vehicle_actuator_setpoint__struct.h" #include "px4_msgs/msg/vehicle_actuator_setpoint__functions.h" #include "px4_msgs/msg/vehicle_actuator_setpoint__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_ACTUATOR_SETPOINT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_setpoint__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/ManualControlSetpoint.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/manual_control_setpoint__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/manual_control_setpoint__functions.h" #include "px4_msgs/msg/manual_control_setpoint__struct.h" #ifdef __cplusplus extern "C" { #endif void ManualControlSetpoint__rosidl_typesupport_introspection_c__ManualControlSetpoint_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__ManualControlSetpoint__init(message_memory); } void ManualControlSetpoint__rosidl_typesupport_introspection_c__ManualControlSetpoint_fini_function(void * message_memory) { px4_msgs__msg__ManualControlSetpoint__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember ManualControlSetpoint__rosidl_typesupport_introspection_c__ManualControlSetpoint_message_member_array[14] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSetpoint, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSetpoint, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "data_source", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSetpoint, data_source), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "x", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSetpoint, x), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "y", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSetpoint, y), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "z", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSetpoint, z), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "r", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSetpoint, r), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "flaps", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSetpoint, flaps), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "aux1", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSetpoint, aux1), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "aux2", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSetpoint, aux2), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "aux3", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSetpoint, aux3), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "aux4", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSetpoint, aux4), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "aux5", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSetpoint, aux5), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "aux6", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSetpoint, aux6), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers ManualControlSetpoint__rosidl_typesupport_introspection_c__ManualControlSetpoint_message_members = { "px4_msgs__msg", // message namespace "ManualControlSetpoint", // message name 14, // number of fields sizeof(px4_msgs__msg__ManualControlSetpoint), ManualControlSetpoint__rosidl_typesupport_introspection_c__ManualControlSetpoint_message_member_array, // message members ManualControlSetpoint__rosidl_typesupport_introspection_c__ManualControlSetpoint_init_function, // function to initialize message memory (memory has to be allocated) ManualControlSetpoint__rosidl_typesupport_introspection_c__ManualControlSetpoint_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t ManualControlSetpoint__rosidl_typesupport_introspection_c__ManualControlSetpoint_message_type_support_handle = { 0, &ManualControlSetpoint__rosidl_typesupport_introspection_c__ManualControlSetpoint_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, ManualControlSetpoint)() { if (!ManualControlSetpoint__rosidl_typesupport_introspection_c__ManualControlSetpoint_message_type_support_handle.typesupport_identifier) { ManualControlSetpoint__rosidl_typesupport_introspection_c__ManualControlSetpoint_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &ManualControlSetpoint__rosidl_typesupport_introspection_c__ManualControlSetpoint_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/heater_status.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/HeaterStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__HEATER_STATUS_H_ #define PX4_MSGS__MSG__HEATER_STATUS_H_ #include "px4_msgs/msg/heater_status__struct.h" #include "px4_msgs/msg/heater_status__functions.h" #include "px4_msgs/msg/heater_status__type_support.h" #endif // PX4_MSGS__MSG__HEATER_STATUS_H_ <file_sep>/build/multi_rtd_interfaces/rosidl_generator_c/multi_rtd_interfaces/msg/robot_trajectory.h // generated from rosidl_generator_c/resource/idl.h.em // with input from multi_rtd_interfaces:msg/RobotTrajectory.idl // generated code does not contain a copyright notice #ifndef MULTI_RTD_INTERFACES__MSG__ROBOT_TRAJECTORY_H_ #define MULTI_RTD_INTERFACES__MSG__ROBOT_TRAJECTORY_H_ #include "multi_rtd_interfaces/msg/robot_trajectory__struct.h" #include "multi_rtd_interfaces/msg/robot_trajectory__functions.h" #include "multi_rtd_interfaces/msg/robot_trajectory__type_support.h" #endif // MULTI_RTD_INTERFACES__MSG__ROBOT_TRAJECTORY_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/distance_sensor__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/DistanceSensor.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__DISTANCE_SENSOR__FUNCTIONS_H_ #define PX4_MSGS__MSG__DISTANCE_SENSOR__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/distance_sensor__struct.h" /// Initialize msg/DistanceSensor message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__DistanceSensor * )) before or use * px4_msgs__msg__DistanceSensor__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__DistanceSensor__init(px4_msgs__msg__DistanceSensor * msg); /// Finalize msg/DistanceSensor message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__DistanceSensor__fini(px4_msgs__msg__DistanceSensor * msg); /// Create msg/DistanceSensor message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__DistanceSensor__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__DistanceSensor * px4_msgs__msg__DistanceSensor__create(); /// Destroy msg/DistanceSensor message. /** * It calls * px4_msgs__msg__DistanceSensor__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__DistanceSensor__destroy(px4_msgs__msg__DistanceSensor * msg); /// Initialize array of msg/DistanceSensor messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__DistanceSensor__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__DistanceSensor__Sequence__init(px4_msgs__msg__DistanceSensor__Sequence * array, size_t size); /// Finalize array of msg/DistanceSensor messages. /** * It calls * px4_msgs__msg__DistanceSensor__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__DistanceSensor__Sequence__fini(px4_msgs__msg__DistanceSensor__Sequence * array); /// Create array of msg/DistanceSensor messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__DistanceSensor__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__DistanceSensor__Sequence * px4_msgs__msg__DistanceSensor__Sequence__create(size_t size); /// Destroy array of msg/DistanceSensor messages. /** * It calls * px4_msgs__msg__DistanceSensor__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__DistanceSensor__Sequence__destroy(px4_msgs__msg__DistanceSensor__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__DISTANCE_SENSOR__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/estimator_local_position.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_LOCAL_POSITION_HPP_ #define PX4_MSGS__MSG__ESTIMATOR_LOCAL_POSITION_HPP_ #include "px4_msgs/msg/estimator_local_position__struct.hpp" #include "px4_msgs/msg/estimator_local_position__traits.hpp" #endif // PX4_MSGS__MSG__ESTIMATOR_LOCAL_POSITION_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/yaw_estimator_status.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/YawEstimatorStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__YAW_ESTIMATOR_STATUS_H_ #define PX4_MSGS__MSG__YAW_ESTIMATOR_STATUS_H_ #include "px4_msgs/msg/yaw_estimator_status__struct.h" #include "px4_msgs/msg/yaw_estimator_status__functions.h" #include "px4_msgs/msg/yaw_estimator_status__type_support.h" #endif // PX4_MSGS__MSG__YAW_ESTIMATOR_STATUS_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/EstimatorVisualOdometryAligned.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_VISUAL_ODOMETRY_ALIGNED__STRUCT_HPP_ #define PX4_MSGS__MSG__ESTIMATOR_VISUAL_ODOMETRY_ALIGNED__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__EstimatorVisualOdometryAligned __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__EstimatorVisualOdometryAligned __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct EstimatorVisualOdometryAligned_ { using Type = EstimatorVisualOdometryAligned_<ContainerAllocator>; explicit EstimatorVisualOdometryAligned_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->local_frame = 0; this->x = 0.0f; this->y = 0.0f; this->z = 0.0f; std::fill<typename std::array<float, 4>::iterator, float>(this->q.begin(), this->q.end(), 0.0f); std::fill<typename std::array<float, 4>::iterator, float>(this->q_offset.begin(), this->q_offset.end(), 0.0f); std::fill<typename std::array<float, 21>::iterator, float>(this->pose_covariance.begin(), this->pose_covariance.end(), 0.0f); this->velocity_frame = 0; this->vx = 0.0f; this->vy = 0.0f; this->vz = 0.0f; this->rollspeed = 0.0f; this->pitchspeed = 0.0f; this->yawspeed = 0.0f; std::fill<typename std::array<float, 21>::iterator, float>(this->velocity_covariance.begin(), this->velocity_covariance.end(), 0.0f); } } explicit EstimatorVisualOdometryAligned_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : q(_alloc), q_offset(_alloc), pose_covariance(_alloc), velocity_covariance(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->local_frame = 0; this->x = 0.0f; this->y = 0.0f; this->z = 0.0f; std::fill<typename std::array<float, 4>::iterator, float>(this->q.begin(), this->q.end(), 0.0f); std::fill<typename std::array<float, 4>::iterator, float>(this->q_offset.begin(), this->q_offset.end(), 0.0f); std::fill<typename std::array<float, 21>::iterator, float>(this->pose_covariance.begin(), this->pose_covariance.end(), 0.0f); this->velocity_frame = 0; this->vx = 0.0f; this->vy = 0.0f; this->vz = 0.0f; this->rollspeed = 0.0f; this->pitchspeed = 0.0f; this->yawspeed = 0.0f; std::fill<typename std::array<float, 21>::iterator, float>(this->velocity_covariance.begin(), this->velocity_covariance.end(), 0.0f); } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _timestamp_sample_type = uint64_t; _timestamp_sample_type timestamp_sample; using _local_frame_type = uint8_t; _local_frame_type local_frame; using _x_type = float; _x_type x; using _y_type = float; _y_type y; using _z_type = float; _z_type z; using _q_type = std::array<float, 4>; _q_type q; using _q_offset_type = std::array<float, 4>; _q_offset_type q_offset; using _pose_covariance_type = std::array<float, 21>; _pose_covariance_type pose_covariance; using _velocity_frame_type = uint8_t; _velocity_frame_type velocity_frame; using _vx_type = float; _vx_type vx; using _vy_type = float; _vy_type vy; using _vz_type = float; _vz_type vz; using _rollspeed_type = float; _rollspeed_type rollspeed; using _pitchspeed_type = float; _pitchspeed_type pitchspeed; using _yawspeed_type = float; _yawspeed_type yawspeed; using _velocity_covariance_type = std::array<float, 21>; _velocity_covariance_type velocity_covariance; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__timestamp_sample( const uint64_t & _arg) { this->timestamp_sample = _arg; return *this; } Type & set__local_frame( const uint8_t & _arg) { this->local_frame = _arg; return *this; } Type & set__x( const float & _arg) { this->x = _arg; return *this; } Type & set__y( const float & _arg) { this->y = _arg; return *this; } Type & set__z( const float & _arg) { this->z = _arg; return *this; } Type & set__q( const std::array<float, 4> & _arg) { this->q = _arg; return *this; } Type & set__q_offset( const std::array<float, 4> & _arg) { this->q_offset = _arg; return *this; } Type & set__pose_covariance( const std::array<float, 21> & _arg) { this->pose_covariance = _arg; return *this; } Type & set__velocity_frame( const uint8_t & _arg) { this->velocity_frame = _arg; return *this; } Type & set__vx( const float & _arg) { this->vx = _arg; return *this; } Type & set__vy( const float & _arg) { this->vy = _arg; return *this; } Type & set__vz( const float & _arg) { this->vz = _arg; return *this; } Type & set__rollspeed( const float & _arg) { this->rollspeed = _arg; return *this; } Type & set__pitchspeed( const float & _arg) { this->pitchspeed = _arg; return *this; } Type & set__yawspeed( const float & _arg) { this->yawspeed = _arg; return *this; } Type & set__velocity_covariance( const std::array<float, 21> & _arg) { this->velocity_covariance = _arg; return *this; } // constant declarations static constexpr uint8_t COVARIANCE_MATRIX_X_VARIANCE = 0u; static constexpr uint8_t COVARIANCE_MATRIX_Y_VARIANCE = 6u; static constexpr uint8_t COVARIANCE_MATRIX_Z_VARIANCE = 11u; static constexpr uint8_t COVARIANCE_MATRIX_ROLL_VARIANCE = 15u; static constexpr uint8_t COVARIANCE_MATRIX_PITCH_VARIANCE = 18u; static constexpr uint8_t COVARIANCE_MATRIX_YAW_VARIANCE = 20u; static constexpr uint8_t COVARIANCE_MATRIX_VX_VARIANCE = 0u; static constexpr uint8_t COVARIANCE_MATRIX_VY_VARIANCE = 6u; static constexpr uint8_t COVARIANCE_MATRIX_VZ_VARIANCE = 11u; static constexpr uint8_t COVARIANCE_MATRIX_ROLLRATE_VARIANCE = 15u; static constexpr uint8_t COVARIANCE_MATRIX_PITCHRATE_VARIANCE = 18u; static constexpr uint8_t COVARIANCE_MATRIX_YAWRATE_VARIANCE = 20u; static constexpr uint8_t LOCAL_FRAME_NED = 0u; static constexpr uint8_t LOCAL_FRAME_FRD = 1u; static constexpr uint8_t LOCAL_FRAME_OTHER = 2u; static constexpr uint8_t BODY_FRAME_FRD = 3u; // pointer types using RawPtr = px4_msgs::msg::EstimatorVisualOdometryAligned_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::EstimatorVisualOdometryAligned_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::EstimatorVisualOdometryAligned_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::EstimatorVisualOdometryAligned_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::EstimatorVisualOdometryAligned_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::EstimatorVisualOdometryAligned_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::EstimatorVisualOdometryAligned_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::EstimatorVisualOdometryAligned_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::EstimatorVisualOdometryAligned_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::EstimatorVisualOdometryAligned_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__EstimatorVisualOdometryAligned std::shared_ptr<px4_msgs::msg::EstimatorVisualOdometryAligned_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__EstimatorVisualOdometryAligned std::shared_ptr<px4_msgs::msg::EstimatorVisualOdometryAligned_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const EstimatorVisualOdometryAligned_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->timestamp_sample != other.timestamp_sample) { return false; } if (this->local_frame != other.local_frame) { return false; } if (this->x != other.x) { return false; } if (this->y != other.y) { return false; } if (this->z != other.z) { return false; } if (this->q != other.q) { return false; } if (this->q_offset != other.q_offset) { return false; } if (this->pose_covariance != other.pose_covariance) { return false; } if (this->velocity_frame != other.velocity_frame) { return false; } if (this->vx != other.vx) { return false; } if (this->vy != other.vy) { return false; } if (this->vz != other.vz) { return false; } if (this->rollspeed != other.rollspeed) { return false; } if (this->pitchspeed != other.pitchspeed) { return false; } if (this->yawspeed != other.yawspeed) { return false; } if (this->velocity_covariance != other.velocity_covariance) { return false; } return true; } bool operator!=(const EstimatorVisualOdometryAligned_ & other) const { return !this->operator==(other); } }; // struct EstimatorVisualOdometryAligned_ // alias to use template instance with default allocator using EstimatorVisualOdometryAligned = px4_msgs::msg::EstimatorVisualOdometryAligned_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t EstimatorVisualOdometryAligned_<ContainerAllocator>::COVARIANCE_MATRIX_X_VARIANCE; template<typename ContainerAllocator> constexpr uint8_t EstimatorVisualOdometryAligned_<ContainerAllocator>::COVARIANCE_MATRIX_Y_VARIANCE; template<typename ContainerAllocator> constexpr uint8_t EstimatorVisualOdometryAligned_<ContainerAllocator>::COVARIANCE_MATRIX_Z_VARIANCE; template<typename ContainerAllocator> constexpr uint8_t EstimatorVisualOdometryAligned_<ContainerAllocator>::COVARIANCE_MATRIX_ROLL_VARIANCE; template<typename ContainerAllocator> constexpr uint8_t EstimatorVisualOdometryAligned_<ContainerAllocator>::COVARIANCE_MATRIX_PITCH_VARIANCE; template<typename ContainerAllocator> constexpr uint8_t EstimatorVisualOdometryAligned_<ContainerAllocator>::COVARIANCE_MATRIX_YAW_VARIANCE; template<typename ContainerAllocator> constexpr uint8_t EstimatorVisualOdometryAligned_<ContainerAllocator>::COVARIANCE_MATRIX_VX_VARIANCE; template<typename ContainerAllocator> constexpr uint8_t EstimatorVisualOdometryAligned_<ContainerAllocator>::COVARIANCE_MATRIX_VY_VARIANCE; template<typename ContainerAllocator> constexpr uint8_t EstimatorVisualOdometryAligned_<ContainerAllocator>::COVARIANCE_MATRIX_VZ_VARIANCE; template<typename ContainerAllocator> constexpr uint8_t EstimatorVisualOdometryAligned_<ContainerAllocator>::COVARIANCE_MATRIX_ROLLRATE_VARIANCE; template<typename ContainerAllocator> constexpr uint8_t EstimatorVisualOdometryAligned_<ContainerAllocator>::COVARIANCE_MATRIX_PITCHRATE_VARIANCE; template<typename ContainerAllocator> constexpr uint8_t EstimatorVisualOdometryAligned_<ContainerAllocator>::COVARIANCE_MATRIX_YAWRATE_VARIANCE; template<typename ContainerAllocator> constexpr uint8_t EstimatorVisualOdometryAligned_<ContainerAllocator>::LOCAL_FRAME_NED; template<typename ContainerAllocator> constexpr uint8_t EstimatorVisualOdometryAligned_<ContainerAllocator>::LOCAL_FRAME_FRD; template<typename ContainerAllocator> constexpr uint8_t EstimatorVisualOdometryAligned_<ContainerAllocator>::LOCAL_FRAME_OTHER; template<typename ContainerAllocator> constexpr uint8_t EstimatorVisualOdometryAligned_<ContainerAllocator>::BODY_FRAME_FRD; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__ESTIMATOR_VISUAL_ODOMETRY_ALIGNED__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/actuator_controls_virtual_fw.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS_VIRTUAL_FW_HPP_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS_VIRTUAL_FW_HPP_ #include "px4_msgs/msg/actuator_controls_virtual_fw__struct.hpp" #include "px4_msgs/msg/actuator_controls_virtual_fw__traits.hpp" #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS_VIRTUAL_FW_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_setpoint__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/ManualControlSetpoint.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/manual_control_setpoint__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/manual_control_setpoint__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::ManualControlSetpoint & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: timestamp_sample cdr << ros_message.timestamp_sample; // Member: data_source cdr << ros_message.data_source; // Member: x cdr << ros_message.x; // Member: y cdr << ros_message.y; // Member: z cdr << ros_message.z; // Member: r cdr << ros_message.r; // Member: flaps cdr << ros_message.flaps; // Member: aux1 cdr << ros_message.aux1; // Member: aux2 cdr << ros_message.aux2; // Member: aux3 cdr << ros_message.aux3; // Member: aux4 cdr << ros_message.aux4; // Member: aux5 cdr << ros_message.aux5; // Member: aux6 cdr << ros_message.aux6; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::ManualControlSetpoint & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: timestamp_sample cdr >> ros_message.timestamp_sample; // Member: data_source cdr >> ros_message.data_source; // Member: x cdr >> ros_message.x; // Member: y cdr >> ros_message.y; // Member: z cdr >> ros_message.z; // Member: r cdr >> ros_message.r; // Member: flaps cdr >> ros_message.flaps; // Member: aux1 cdr >> ros_message.aux1; // Member: aux2 cdr >> ros_message.aux2; // Member: aux3 cdr >> ros_message.aux3; // Member: aux4 cdr >> ros_message.aux4; // Member: aux5 cdr >> ros_message.aux5; // Member: aux6 cdr >> ros_message.aux6; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::ManualControlSetpoint & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: timestamp_sample { size_t item_size = sizeof(ros_message.timestamp_sample); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: data_source { size_t item_size = sizeof(ros_message.data_source); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: x { size_t item_size = sizeof(ros_message.x); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: y { size_t item_size = sizeof(ros_message.y); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: z { size_t item_size = sizeof(ros_message.z); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: r { size_t item_size = sizeof(ros_message.r); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: flaps { size_t item_size = sizeof(ros_message.flaps); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: aux1 { size_t item_size = sizeof(ros_message.aux1); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: aux2 { size_t item_size = sizeof(ros_message.aux2); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: aux3 { size_t item_size = sizeof(ros_message.aux3); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: aux4 { size_t item_size = sizeof(ros_message.aux4); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: aux5 { size_t item_size = sizeof(ros_message.aux5); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: aux6 { size_t item_size = sizeof(ros_message.aux6); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_ManualControlSetpoint( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: timestamp_sample { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: data_source { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: x { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: y { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: z { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: r { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: flaps { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: aux1 { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: aux2 { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: aux3 { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: aux4 { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: aux5 { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: aux6 { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static bool _ManualControlSetpoint__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::ManualControlSetpoint *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _ManualControlSetpoint__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::ManualControlSetpoint *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _ManualControlSetpoint__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::ManualControlSetpoint *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _ManualControlSetpoint__max_serialized_size(bool & full_bounded) { return max_serialized_size_ManualControlSetpoint(full_bounded, 0); } static message_type_support_callbacks_t _ManualControlSetpoint__callbacks = { "px4_msgs::msg", "ManualControlSetpoint", _ManualControlSetpoint__cdr_serialize, _ManualControlSetpoint__cdr_deserialize, _ManualControlSetpoint__get_serialized_size, _ManualControlSetpoint__max_serialized_size }; static rosidl_message_type_support_t _ManualControlSetpoint__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_ManualControlSetpoint__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::ManualControlSetpoint>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_ManualControlSetpoint__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, ManualControlSetpoint)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_ManualControlSetpoint__handle; } #ifdef __cplusplus } #endif <file_sep>/install/px4_msgs/include/px4_msgs/msg/debug_value.h /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/debug_value.h<file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_gyro_fft.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/SensorGyroFft.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_GYRO_FFT_H_ #define PX4_MSGS__MSG__SENSOR_GYRO_FFT_H_ #include "px4_msgs/msg/sensor_gyro_fft__struct.h" #include "px4_msgs/msg/sensor_gyro_fft__functions.h" #include "px4_msgs/msg/sensor_gyro_fft__type_support.h" #endif // PX4_MSGS__MSG__SENSOR_GYRO_FFT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensors_status_imu__rosidl_typesupport_fastrtps_c.h // generated from rosidl_typesupport_fastrtps_c/resource/idl__rosidl_typesupport_fastrtps_c.h.em // with input from px4_msgs:msg/SensorsStatusImu.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSORS_STATUS_IMU__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #define PX4_MSGS__MSG__SENSORS_STATUS_IMU__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #include <stddef.h> #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__SensorsStatusImu( const void * untyped_ros_message, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__SensorsStatusImu( bool & full_bounded, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, SensorsStatusImu)(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__SENSORS_STATUS_IMU__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_actuator_setpoint__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/VehicleActuatorSetpoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ACTUATOR_SETPOINT__STRUCT_HPP_ #define PX4_MSGS__MSG__VEHICLE_ACTUATOR_SETPOINT__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__VehicleActuatorSetpoint __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__VehicleActuatorSetpoint __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct VehicleActuatorSetpoint_ { using Type = VehicleActuatorSetpoint_<ContainerAllocator>; explicit VehicleActuatorSetpoint_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; std::fill<typename std::array<float, 16>::iterator, float>(this->actuator.begin(), this->actuator.end(), 0.0f); } } explicit VehicleActuatorSetpoint_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : actuator(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; std::fill<typename std::array<float, 16>::iterator, float>(this->actuator.begin(), this->actuator.end(), 0.0f); } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _timestamp_sample_type = uint64_t; _timestamp_sample_type timestamp_sample; using _actuator_type = std::array<float, 16>; _actuator_type actuator; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__timestamp_sample( const uint64_t & _arg) { this->timestamp_sample = _arg; return *this; } Type & set__actuator( const std::array<float, 16> & _arg) { this->actuator = _arg; return *this; } // constant declarations static constexpr uint8_t NUM_ACTUATOR_SETPOINT = 16u; // pointer types using RawPtr = px4_msgs::msg::VehicleActuatorSetpoint_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::VehicleActuatorSetpoint_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::VehicleActuatorSetpoint_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::VehicleActuatorSetpoint_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleActuatorSetpoint_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleActuatorSetpoint_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleActuatorSetpoint_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleActuatorSetpoint_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::VehicleActuatorSetpoint_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::VehicleActuatorSetpoint_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__VehicleActuatorSetpoint std::shared_ptr<px4_msgs::msg::VehicleActuatorSetpoint_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__VehicleActuatorSetpoint std::shared_ptr<px4_msgs::msg::VehicleActuatorSetpoint_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const VehicleActuatorSetpoint_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->timestamp_sample != other.timestamp_sample) { return false; } if (this->actuator != other.actuator) { return false; } return true; } bool operator!=(const VehicleActuatorSetpoint_ & other) const { return !this->operator==(other); } }; // struct VehicleActuatorSetpoint_ // alias to use template instance with default allocator using VehicleActuatorSetpoint = px4_msgs::msg::VehicleActuatorSetpoint_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t VehicleActuatorSetpoint_<ContainerAllocator>::NUM_ACTUATOR_SETPOINT; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__VEHICLE_ACTUATOR_SETPOINT__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_validated__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/AirspeedValidated.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/airspeed_validated__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void AirspeedValidated_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::AirspeedValidated(_init); } void AirspeedValidated_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::AirspeedValidated *>(message_memory); typed_message->~AirspeedValidated(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember AirspeedValidated_message_member_array[8] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::AirspeedValidated, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "indicated_airspeed_m_s", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::AirspeedValidated, indicated_airspeed_m_s), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "calibrated_airspeed_m_s", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::AirspeedValidated, calibrated_airspeed_m_s), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "true_airspeed_m_s", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::AirspeedValidated, true_airspeed_m_s), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "calibrated_ground_minus_wind_m_s", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::AirspeedValidated, calibrated_ground_minus_wind_m_s), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "true_ground_minus_wind_m_s", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::AirspeedValidated, true_ground_minus_wind_m_s), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "airspeed_sensor_measurement_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::AirspeedValidated, airspeed_sensor_measurement_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "selected_airspeed_index", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::AirspeedValidated, selected_airspeed_index), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers AirspeedValidated_message_members = { "px4_msgs::msg", // message namespace "AirspeedValidated", // message name 8, // number of fields sizeof(px4_msgs::msg::AirspeedValidated), AirspeedValidated_message_member_array, // message members AirspeedValidated_init_function, // function to initialize message memory (memory has to be allocated) AirspeedValidated_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t AirspeedValidated_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &AirspeedValidated_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::AirspeedValidated>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::AirspeedValidated_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, AirspeedValidated)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::AirspeedValidated_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/commander_state__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/CommanderState.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/commander_state__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__CommanderState__init(px4_msgs__msg__CommanderState * msg) { if (!msg) { return false; } // timestamp // main_state // main_state_changes return true; } void px4_msgs__msg__CommanderState__fini(px4_msgs__msg__CommanderState * msg) { if (!msg) { return; } // timestamp // main_state // main_state_changes } px4_msgs__msg__CommanderState * px4_msgs__msg__CommanderState__create() { px4_msgs__msg__CommanderState * msg = (px4_msgs__msg__CommanderState *)malloc(sizeof(px4_msgs__msg__CommanderState)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__CommanderState)); bool success = px4_msgs__msg__CommanderState__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__CommanderState__destroy(px4_msgs__msg__CommanderState * msg) { if (msg) { px4_msgs__msg__CommanderState__fini(msg); } free(msg); } bool px4_msgs__msg__CommanderState__Sequence__init(px4_msgs__msg__CommanderState__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__CommanderState * data = NULL; if (size) { data = (px4_msgs__msg__CommanderState *)calloc(size, sizeof(px4_msgs__msg__CommanderState)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__CommanderState__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__CommanderState__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__CommanderState__Sequence__fini(px4_msgs__msg__CommanderState__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__CommanderState__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__CommanderState__Sequence * px4_msgs__msg__CommanderState__Sequence__create(size_t size) { px4_msgs__msg__CommanderState__Sequence * array = (px4_msgs__msg__CommanderState__Sequence *)malloc(sizeof(px4_msgs__msg__CommanderState__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__CommanderState__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__CommanderState__Sequence__destroy(px4_msgs__msg__CommanderState__Sequence * array) { if (array) { px4_msgs__msg__CommanderState__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/airspeed_wind__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/AirspeedWind.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__AIRSPEED_WIND__STRUCT_H_ #define PX4_MSGS__MSG__AIRSPEED_WIND__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'SOURCE_AS_BETA_ONLY'. enum { px4_msgs__msg__AirspeedWind__SOURCE_AS_BETA_ONLY = 0 }; /// Constant 'SOURCE_AS_SENSOR_1'. enum { px4_msgs__msg__AirspeedWind__SOURCE_AS_SENSOR_1 = 1 }; /// Constant 'SOURCE_AS_SENSOR_2'. enum { px4_msgs__msg__AirspeedWind__SOURCE_AS_SENSOR_2 = 2 }; /// Constant 'SOURCE_AS_SENSOR_3'. enum { px4_msgs__msg__AirspeedWind__SOURCE_AS_SENSOR_3 = 3 }; // Struct defined in msg/AirspeedWind in the package px4_msgs. typedef struct px4_msgs__msg__AirspeedWind { uint64_t timestamp; uint64_t timestamp_sample; float windspeed_north; float windspeed_east; float variance_north; float variance_east; float tas_innov; float tas_innov_var; float tas_scale; float beta_innov; float beta_innov_var; uint8_t source; } px4_msgs__msg__AirspeedWind; // Struct for a sequence of px4_msgs__msg__AirspeedWind. typedef struct px4_msgs__msg__AirspeedWind__Sequence { px4_msgs__msg__AirspeedWind * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__AirspeedWind__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__AIRSPEED_WIND__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/differential_pressure.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__DIFFERENTIAL_PRESSURE_HPP_ #define PX4_MSGS__MSG__DIFFERENTIAL_PRESSURE_HPP_ #include "px4_msgs/msg/differential_pressure__struct.hpp" #include "px4_msgs/msg/differential_pressure__traits.hpp" #endif // PX4_MSGS__MSG__DIFFERENTIAL_PRESSURE_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/debug_key_value__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/DebugKeyValue.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/debug_key_value__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/debug_key_value__functions.h" #include "px4_msgs/msg/debug_key_value__struct.h" #ifdef __cplusplus extern "C" { #endif void DebugKeyValue__rosidl_typesupport_introspection_c__DebugKeyValue_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__DebugKeyValue__init(message_memory); } void DebugKeyValue__rosidl_typesupport_introspection_c__DebugKeyValue_fini_function(void * message_memory) { px4_msgs__msg__DebugKeyValue__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember DebugKeyValue__rosidl_typesupport_introspection_c__DebugKeyValue_message_member_array[3] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__DebugKeyValue, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "key", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message true, // is array 10, // array size false, // is upper bound offsetof(px4_msgs__msg__DebugKeyValue, key), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "value", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__DebugKeyValue, value), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers DebugKeyValue__rosidl_typesupport_introspection_c__DebugKeyValue_message_members = { "px4_msgs__msg", // message namespace "DebugKeyValue", // message name 3, // number of fields sizeof(px4_msgs__msg__DebugKeyValue), DebugKeyValue__rosidl_typesupport_introspection_c__DebugKeyValue_message_member_array, // message members DebugKeyValue__rosidl_typesupport_introspection_c__DebugKeyValue_init_function, // function to initialize message memory (memory has to be allocated) DebugKeyValue__rosidl_typesupport_introspection_c__DebugKeyValue_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t DebugKeyValue__rosidl_typesupport_introspection_c__DebugKeyValue_message_type_support_handle = { 0, &DebugKeyValue__rosidl_typesupport_introspection_c__DebugKeyValue_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, DebugKeyValue)() { if (!DebugKeyValue__rosidl_typesupport_introspection_c__DebugKeyValue_message_type_support_handle.typesupport_identifier) { DebugKeyValue__rosidl_typesupport_introspection_c__DebugKeyValue_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &DebugKeyValue__rosidl_typesupport_introspection_c__DebugKeyValue_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/satellite_info__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/SatelliteInfo.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/satellite_info__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/satellite_info__struct.h" #include "px4_msgs/msg/satellite_info__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _SatelliteInfo__ros_msg_type = px4_msgs__msg__SatelliteInfo; static bool _SatelliteInfo__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _SatelliteInfo__ros_msg_type * ros_message = static_cast<const _SatelliteInfo__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: count { cdr << ros_message->count; } // Field name: svid { size_t size = 20; auto array_ptr = ros_message->svid; cdr.serializeArray(array_ptr, size); } // Field name: used { size_t size = 20; auto array_ptr = ros_message->used; cdr.serializeArray(array_ptr, size); } // Field name: elevation { size_t size = 20; auto array_ptr = ros_message->elevation; cdr.serializeArray(array_ptr, size); } // Field name: azimuth { size_t size = 20; auto array_ptr = ros_message->azimuth; cdr.serializeArray(array_ptr, size); } // Field name: snr { size_t size = 20; auto array_ptr = ros_message->snr; cdr.serializeArray(array_ptr, size); } // Field name: prn { size_t size = 20; auto array_ptr = ros_message->prn; cdr.serializeArray(array_ptr, size); } return true; } static bool _SatelliteInfo__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _SatelliteInfo__ros_msg_type * ros_message = static_cast<_SatelliteInfo__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: count { cdr >> ros_message->count; } // Field name: svid { size_t size = 20; auto array_ptr = ros_message->svid; cdr.deserializeArray(array_ptr, size); } // Field name: used { size_t size = 20; auto array_ptr = ros_message->used; cdr.deserializeArray(array_ptr, size); } // Field name: elevation { size_t size = 20; auto array_ptr = ros_message->elevation; cdr.deserializeArray(array_ptr, size); } // Field name: azimuth { size_t size = 20; auto array_ptr = ros_message->azimuth; cdr.deserializeArray(array_ptr, size); } // Field name: snr { size_t size = 20; auto array_ptr = ros_message->snr; cdr.deserializeArray(array_ptr, size); } // Field name: prn { size_t size = 20; auto array_ptr = ros_message->prn; cdr.deserializeArray(array_ptr, size); } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__SatelliteInfo( const void * untyped_ros_message, size_t current_alignment) { const _SatelliteInfo__ros_msg_type * ros_message = static_cast<const _SatelliteInfo__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name count { size_t item_size = sizeof(ros_message->count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name svid { size_t array_size = 20; auto array_ptr = ros_message->svid; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name used { size_t array_size = 20; auto array_ptr = ros_message->used; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name elevation { size_t array_size = 20; auto array_ptr = ros_message->elevation; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name azimuth { size_t array_size = 20; auto array_ptr = ros_message->azimuth; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name snr { size_t array_size = 20; auto array_ptr = ros_message->snr; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name prn { size_t array_size = 20; auto array_ptr = ros_message->prn; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _SatelliteInfo__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__SatelliteInfo( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__SatelliteInfo( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: count { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: svid { size_t array_size = 20; current_alignment += array_size * sizeof(uint8_t); } // member: used { size_t array_size = 20; current_alignment += array_size * sizeof(uint8_t); } // member: elevation { size_t array_size = 20; current_alignment += array_size * sizeof(uint8_t); } // member: azimuth { size_t array_size = 20; current_alignment += array_size * sizeof(uint8_t); } // member: snr { size_t array_size = 20; current_alignment += array_size * sizeof(uint8_t); } // member: prn { size_t array_size = 20; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _SatelliteInfo__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__SatelliteInfo( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_SatelliteInfo = { "px4_msgs::msg", "SatelliteInfo", _SatelliteInfo__cdr_serialize, _SatelliteInfo__cdr_deserialize, _SatelliteInfo__get_serialized_size, _SatelliteInfo__max_serialized_size }; static rosidl_message_type_support_t _SatelliteInfo__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_SatelliteInfo, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, SatelliteInfo)() { return &_SatelliteInfo__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/takeoff_status__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/TakeoffStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TAKEOFF_STATUS__FUNCTIONS_H_ #define PX4_MSGS__MSG__TAKEOFF_STATUS__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/takeoff_status__struct.h" /// Initialize msg/TakeoffStatus message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__TakeoffStatus * )) before or use * px4_msgs__msg__TakeoffStatus__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__TakeoffStatus__init(px4_msgs__msg__TakeoffStatus * msg); /// Finalize msg/TakeoffStatus message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__TakeoffStatus__fini(px4_msgs__msg__TakeoffStatus * msg); /// Create msg/TakeoffStatus message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__TakeoffStatus__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__TakeoffStatus * px4_msgs__msg__TakeoffStatus__create(); /// Destroy msg/TakeoffStatus message. /** * It calls * px4_msgs__msg__TakeoffStatus__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__TakeoffStatus__destroy(px4_msgs__msg__TakeoffStatus * msg); /// Initialize array of msg/TakeoffStatus messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__TakeoffStatus__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__TakeoffStatus__Sequence__init(px4_msgs__msg__TakeoffStatus__Sequence * array, size_t size); /// Finalize array of msg/TakeoffStatus messages. /** * It calls * px4_msgs__msg__TakeoffStatus__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__TakeoffStatus__Sequence__fini(px4_msgs__msg__TakeoffStatus__Sequence * array); /// Create array of msg/TakeoffStatus messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__TakeoffStatus__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__TakeoffStatus__Sequence * px4_msgs__msg__TakeoffStatus__Sequence__create(size_t size); /// Destroy array of msg/TakeoffStatus messages. /** * It calls * px4_msgs__msg__TakeoffStatus__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__TakeoffStatus__Sequence__destroy(px4_msgs__msg__TakeoffStatus__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__TAKEOFF_STATUS__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_c/px4_msgs/msg/transponder_report__type_support.cpp // generated from rosidl_typesupport_c/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/TransponderReport.idl // generated code does not contain a copyright notice #include "cstddef" #include "rosidl_generator_c/message_type_support_struct.h" #include "px4_msgs/msg/rosidl_typesupport_c__visibility_control.h" #include "px4_msgs/msg/transponder_report__struct.h" #include "rosidl_typesupport_c/visibility_control.h" #include "px4_msgs/msg/transponder_report__rosidl_typesupport_fastrtps_c.h" #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_c, px4_msgs, msg, TransponderReport)() { return ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, TransponderReport)(); } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/OrbTestMedium.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/orb_test_medium__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/orb_test_medium__struct.h" #include "px4_msgs/msg/orb_test_medium__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _OrbTestMedium__ros_msg_type = px4_msgs__msg__OrbTestMedium; static bool _OrbTestMedium__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _OrbTestMedium__ros_msg_type * ros_message = static_cast<const _OrbTestMedium__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: val { cdr << ros_message->val; } // Field name: junk { size_t size = 64; auto array_ptr = ros_message->junk; cdr.serializeArray(array_ptr, size); } return true; } static bool _OrbTestMedium__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _OrbTestMedium__ros_msg_type * ros_message = static_cast<_OrbTestMedium__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: val { cdr >> ros_message->val; } // Field name: junk { size_t size = 64; auto array_ptr = ros_message->junk; cdr.deserializeArray(array_ptr, size); } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__OrbTestMedium( const void * untyped_ros_message, size_t current_alignment) { const _OrbTestMedium__ros_msg_type * ros_message = static_cast<const _OrbTestMedium__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name val { size_t item_size = sizeof(ros_message->val); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name junk { size_t array_size = 64; auto array_ptr = ros_message->junk; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _OrbTestMedium__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__OrbTestMedium( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__OrbTestMedium( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: val { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: junk { size_t array_size = 64; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _OrbTestMedium__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__OrbTestMedium( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_OrbTestMedium = { "px4_msgs::msg", "OrbTestMedium", _OrbTestMedium__cdr_serialize, _OrbTestMedium__cdr_deserialize, _OrbTestMedium__get_serialized_size, _OrbTestMedium__max_serialized_size }; static rosidl_message_type_support_t _OrbTestMedium__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_OrbTestMedium, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, OrbTestMedium)() { return &_OrbTestMedium__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_estimator_sensor_bias.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/EstimatorSensorBias.idl # generated code does not contain a copyright notice # Import statements for member types # Member 'gyro_bias' # Member 'gyro_bias_variance' # Member 'accel_bias' # Member 'accel_bias_variance' # Member 'mag_bias' # Member 'mag_bias_variance' import numpy # noqa: E402, I100 import rosidl_parser.definition # noqa: E402, I100 class Metaclass_EstimatorSensorBias(type): """Metaclass of message 'EstimatorSensorBias'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.EstimatorSensorBias') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__estimator_sensor_bias cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__estimator_sensor_bias cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__estimator_sensor_bias cls._TYPE_SUPPORT = module.type_support_msg__msg__estimator_sensor_bias cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__estimator_sensor_bias @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class EstimatorSensorBias(metaclass=Metaclass_EstimatorSensorBias): """Message class 'EstimatorSensorBias'.""" __slots__ = [ '_timestamp', '_timestamp_sample', '_gyro_device_id', '_gyro_bias', '_gyro_bias_limit', '_gyro_bias_variance', '_gyro_bias_valid', '_accel_device_id', '_accel_bias', '_accel_bias_limit', '_accel_bias_variance', '_accel_bias_valid', '_mag_device_id', '_mag_bias', '_mag_bias_limit', '_mag_bias_variance', '_mag_bias_valid', ] _fields_and_field_types = { 'timestamp': 'uint64', 'timestamp_sample': 'uint64', 'gyro_device_id': 'uint32', 'gyro_bias': 'float[3]', 'gyro_bias_limit': 'float', 'gyro_bias_variance': 'float[3]', 'gyro_bias_valid': 'boolean', 'accel_device_id': 'uint32', 'accel_bias': 'float[3]', 'accel_bias_limit': 'float', 'accel_bias_variance': 'float[3]', 'accel_bias_valid': 'boolean', 'mag_device_id': 'uint32', 'mag_bias': 'float[3]', 'mag_bias_limit': 'float', 'mag_bias_variance': 'float[3]', 'mag_bias_valid': 'boolean', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.timestamp_sample = kwargs.get('timestamp_sample', int()) self.gyro_device_id = kwargs.get('gyro_device_id', int()) if 'gyro_bias' not in kwargs: self.gyro_bias = numpy.zeros(3, dtype=numpy.float32) else: self.gyro_bias = numpy.array(kwargs.get('gyro_bias'), dtype=numpy.float32) assert self.gyro_bias.shape == (3, ) self.gyro_bias_limit = kwargs.get('gyro_bias_limit', float()) if 'gyro_bias_variance' not in kwargs: self.gyro_bias_variance = numpy.zeros(3, dtype=numpy.float32) else: self.gyro_bias_variance = numpy.array(kwargs.get('gyro_bias_variance'), dtype=numpy.float32) assert self.gyro_bias_variance.shape == (3, ) self.gyro_bias_valid = kwargs.get('gyro_bias_valid', bool()) self.accel_device_id = kwargs.get('accel_device_id', int()) if 'accel_bias' not in kwargs: self.accel_bias = numpy.zeros(3, dtype=numpy.float32) else: self.accel_bias = numpy.array(kwargs.get('accel_bias'), dtype=numpy.float32) assert self.accel_bias.shape == (3, ) self.accel_bias_limit = kwargs.get('accel_bias_limit', float()) if 'accel_bias_variance' not in kwargs: self.accel_bias_variance = numpy.zeros(3, dtype=numpy.float32) else: self.accel_bias_variance = numpy.array(kwargs.get('accel_bias_variance'), dtype=numpy.float32) assert self.accel_bias_variance.shape == (3, ) self.accel_bias_valid = kwargs.get('accel_bias_valid', bool()) self.mag_device_id = kwargs.get('mag_device_id', int()) if 'mag_bias' not in kwargs: self.mag_bias = numpy.zeros(3, dtype=numpy.float32) else: self.mag_bias = numpy.array(kwargs.get('mag_bias'), dtype=numpy.float32) assert self.mag_bias.shape == (3, ) self.mag_bias_limit = kwargs.get('mag_bias_limit', float()) if 'mag_bias_variance' not in kwargs: self.mag_bias_variance = numpy.zeros(3, dtype=numpy.float32) else: self.mag_bias_variance = numpy.array(kwargs.get('mag_bias_variance'), dtype=numpy.float32) assert self.mag_bias_variance.shape == (3, ) self.mag_bias_valid = kwargs.get('mag_bias_valid', bool()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.timestamp_sample != other.timestamp_sample: return False if self.gyro_device_id != other.gyro_device_id: return False if all(self.gyro_bias != other.gyro_bias): return False if self.gyro_bias_limit != other.gyro_bias_limit: return False if all(self.gyro_bias_variance != other.gyro_bias_variance): return False if self.gyro_bias_valid != other.gyro_bias_valid: return False if self.accel_device_id != other.accel_device_id: return False if all(self.accel_bias != other.accel_bias): return False if self.accel_bias_limit != other.accel_bias_limit: return False if all(self.accel_bias_variance != other.accel_bias_variance): return False if self.accel_bias_valid != other.accel_bias_valid: return False if self.mag_device_id != other.mag_device_id: return False if all(self.mag_bias != other.mag_bias): return False if self.mag_bias_limit != other.mag_bias_limit: return False if all(self.mag_bias_variance != other.mag_bias_variance): return False if self.mag_bias_valid != other.mag_bias_valid: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def timestamp_sample(self): """Message field 'timestamp_sample'.""" return self._timestamp_sample @timestamp_sample.setter def timestamp_sample(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp_sample' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp_sample' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp_sample = value @property def gyro_device_id(self): """Message field 'gyro_device_id'.""" return self._gyro_device_id @gyro_device_id.setter def gyro_device_id(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'gyro_device_id' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'gyro_device_id' field must be an unsigned integer in [0, 4294967295]" self._gyro_device_id = value @property def gyro_bias(self): """Message field 'gyro_bias'.""" return self._gyro_bias @gyro_bias.setter def gyro_bias(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'gyro_bias' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'gyro_bias' numpy.ndarray() must have a size of 3" self._gyro_bias = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'gyro_bias' field must be a set or sequence with length 3 and each value of type 'float'" self._gyro_bias = numpy.array(value, dtype=numpy.float32) @property def gyro_bias_limit(self): """Message field 'gyro_bias_limit'.""" return self._gyro_bias_limit @gyro_bias_limit.setter def gyro_bias_limit(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'gyro_bias_limit' field must be of type 'float'" self._gyro_bias_limit = value @property def gyro_bias_variance(self): """Message field 'gyro_bias_variance'.""" return self._gyro_bias_variance @gyro_bias_variance.setter def gyro_bias_variance(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'gyro_bias_variance' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'gyro_bias_variance' numpy.ndarray() must have a size of 3" self._gyro_bias_variance = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'gyro_bias_variance' field must be a set or sequence with length 3 and each value of type 'float'" self._gyro_bias_variance = numpy.array(value, dtype=numpy.float32) @property def gyro_bias_valid(self): """Message field 'gyro_bias_valid'.""" return self._gyro_bias_valid @gyro_bias_valid.setter def gyro_bias_valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'gyro_bias_valid' field must be of type 'bool'" self._gyro_bias_valid = value @property def accel_device_id(self): """Message field 'accel_device_id'.""" return self._accel_device_id @accel_device_id.setter def accel_device_id(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'accel_device_id' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'accel_device_id' field must be an unsigned integer in [0, 4294967295]" self._accel_device_id = value @property def accel_bias(self): """Message field 'accel_bias'.""" return self._accel_bias @accel_bias.setter def accel_bias(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'accel_bias' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'accel_bias' numpy.ndarray() must have a size of 3" self._accel_bias = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'accel_bias' field must be a set or sequence with length 3 and each value of type 'float'" self._accel_bias = numpy.array(value, dtype=numpy.float32) @property def accel_bias_limit(self): """Message field 'accel_bias_limit'.""" return self._accel_bias_limit @accel_bias_limit.setter def accel_bias_limit(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'accel_bias_limit' field must be of type 'float'" self._accel_bias_limit = value @property def accel_bias_variance(self): """Message field 'accel_bias_variance'.""" return self._accel_bias_variance @accel_bias_variance.setter def accel_bias_variance(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'accel_bias_variance' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'accel_bias_variance' numpy.ndarray() must have a size of 3" self._accel_bias_variance = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'accel_bias_variance' field must be a set or sequence with length 3 and each value of type 'float'" self._accel_bias_variance = numpy.array(value, dtype=numpy.float32) @property def accel_bias_valid(self): """Message field 'accel_bias_valid'.""" return self._accel_bias_valid @accel_bias_valid.setter def accel_bias_valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'accel_bias_valid' field must be of type 'bool'" self._accel_bias_valid = value @property def mag_device_id(self): """Message field 'mag_device_id'.""" return self._mag_device_id @mag_device_id.setter def mag_device_id(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'mag_device_id' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'mag_device_id' field must be an unsigned integer in [0, 4294967295]" self._mag_device_id = value @property def mag_bias(self): """Message field 'mag_bias'.""" return self._mag_bias @mag_bias.setter def mag_bias(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'mag_bias' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'mag_bias' numpy.ndarray() must have a size of 3" self._mag_bias = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'mag_bias' field must be a set or sequence with length 3 and each value of type 'float'" self._mag_bias = numpy.array(value, dtype=numpy.float32) @property def mag_bias_limit(self): """Message field 'mag_bias_limit'.""" return self._mag_bias_limit @mag_bias_limit.setter def mag_bias_limit(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'mag_bias_limit' field must be of type 'float'" self._mag_bias_limit = value @property def mag_bias_variance(self): """Message field 'mag_bias_variance'.""" return self._mag_bias_variance @mag_bias_variance.setter def mag_bias_variance(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'mag_bias_variance' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'mag_bias_variance' numpy.ndarray() must have a size of 3" self._mag_bias_variance = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'mag_bias_variance' field must be a set or sequence with length 3 and each value of type 'float'" self._mag_bias_variance = numpy.array(value, dtype=numpy.float32) @property def mag_bias_valid(self): """Message field 'mag_bias_valid'.""" return self._mag_bias_valid @mag_bias_valid.setter def mag_bias_valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'mag_bias_valid' field must be of type 'bool'" self._mag_bias_valid = value <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_pose__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/LandingTargetPose.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/landing_target_pose__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/landing_target_pose__functions.h" #include "px4_msgs/msg/landing_target_pose__struct.h" #ifdef __cplusplus extern "C" { #endif void LandingTargetPose__rosidl_typesupport_introspection_c__LandingTargetPose_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__LandingTargetPose__init(message_memory); } void LandingTargetPose__rosidl_typesupport_introspection_c__LandingTargetPose_fini_function(void * message_memory) { px4_msgs__msg__LandingTargetPose__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember LandingTargetPose__rosidl_typesupport_introspection_c__LandingTargetPose_message_member_array[17] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__LandingTargetPose, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "is_static", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__LandingTargetPose, is_static), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rel_pos_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__LandingTargetPose, rel_pos_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rel_vel_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__LandingTargetPose, rel_vel_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "x_rel", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__LandingTargetPose, x_rel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "y_rel", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__LandingTargetPose, y_rel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "z_rel", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__LandingTargetPose, z_rel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vx_rel", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__LandingTargetPose, vx_rel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vy_rel", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__LandingTargetPose, vy_rel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cov_x_rel", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__LandingTargetPose, cov_x_rel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cov_y_rel", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__LandingTargetPose, cov_y_rel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cov_vx_rel", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__LandingTargetPose, cov_vx_rel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cov_vy_rel", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__LandingTargetPose, cov_vy_rel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "abs_pos_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__LandingTargetPose, abs_pos_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "x_abs", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__LandingTargetPose, x_abs), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "y_abs", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__LandingTargetPose, y_abs), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "z_abs", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__LandingTargetPose, z_abs), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers LandingTargetPose__rosidl_typesupport_introspection_c__LandingTargetPose_message_members = { "px4_msgs__msg", // message namespace "LandingTargetPose", // message name 17, // number of fields sizeof(px4_msgs__msg__LandingTargetPose), LandingTargetPose__rosidl_typesupport_introspection_c__LandingTargetPose_message_member_array, // message members LandingTargetPose__rosidl_typesupport_introspection_c__LandingTargetPose_init_function, // function to initialize message memory (memory has to be allocated) LandingTargetPose__rosidl_typesupport_introspection_c__LandingTargetPose_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t LandingTargetPose__rosidl_typesupport_introspection_c__LandingTargetPose_message_type_support_handle = { 0, &LandingTargetPose__rosidl_typesupport_introspection_c__LandingTargetPose_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, LandingTargetPose)() { if (!LandingTargetPose__rosidl_typesupport_introspection_c__LandingTargetPose_message_type_support_handle.typesupport_identifier) { LandingTargetPose__rosidl_typesupport_introspection_c__LandingTargetPose_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &LandingTargetPose__rosidl_typesupport_introspection_c__LandingTargetPose_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_rc_parameter_map.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/RcParameterMap.idl # generated code does not contain a copyright notice # Import statements for member types # Member 'param_index' # Member 'param_id' # Member 'scale' # Member 'value0' # Member 'value_min' # Member 'value_max' import numpy # noqa: E402, I100 import rosidl_parser.definition # noqa: E402, I100 class Metaclass_RcParameterMap(type): """Metaclass of message 'RcParameterMap'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'RC_PARAM_MAP_NCHAN': 3, 'PARAM_ID_LEN': 16, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.RcParameterMap') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__rc_parameter_map cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__rc_parameter_map cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__rc_parameter_map cls._TYPE_SUPPORT = module.type_support_msg__msg__rc_parameter_map cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__rc_parameter_map @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'RC_PARAM_MAP_NCHAN': cls.__constants['RC_PARAM_MAP_NCHAN'], 'PARAM_ID_LEN': cls.__constants['PARAM_ID_LEN'], } @property def RC_PARAM_MAP_NCHAN(self): """Message constant 'RC_PARAM_MAP_NCHAN'.""" return Metaclass_RcParameterMap.__constants['RC_PARAM_MAP_NCHAN'] @property def PARAM_ID_LEN(self): """Message constant 'PARAM_ID_LEN'.""" return Metaclass_RcParameterMap.__constants['PARAM_ID_LEN'] class RcParameterMap(metaclass=Metaclass_RcParameterMap): """ Message class 'RcParameterMap'. Constants: RC_PARAM_MAP_NCHAN PARAM_ID_LEN """ __slots__ = [ '_timestamp', '_valid', '_param_index', '_param_id', '_scale', '_value0', '_value_min', '_value_max', ] _fields_and_field_types = { 'timestamp': 'uint64', 'valid': 'boolean[3]', 'param_index': 'int32[3]', 'param_id': 'uint8[51]', 'scale': 'float[3]', 'value0': 'float[3]', 'value_min': 'float[3]', 'value_max': 'float[3]', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('boolean'), 3), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('int32'), 3), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('uint8'), 51), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.valid = kwargs.get( 'valid', [bool() for x in range(3)] ) if 'param_index' not in kwargs: self.param_index = numpy.zeros(3, dtype=numpy.int32) else: self.param_index = numpy.array(kwargs.get('param_index'), dtype=numpy.int32) assert self.param_index.shape == (3, ) if 'param_id' not in kwargs: self.param_id = numpy.zeros(51, dtype=numpy.uint8) else: self.param_id = numpy.array(kwargs.get('param_id'), dtype=numpy.uint8) assert self.param_id.shape == (51, ) if 'scale' not in kwargs: self.scale = numpy.zeros(3, dtype=numpy.float32) else: self.scale = numpy.array(kwargs.get('scale'), dtype=numpy.float32) assert self.scale.shape == (3, ) if 'value0' not in kwargs: self.value0 = numpy.zeros(3, dtype=numpy.float32) else: self.value0 = numpy.array(kwargs.get('value0'), dtype=numpy.float32) assert self.value0.shape == (3, ) if 'value_min' not in kwargs: self.value_min = numpy.zeros(3, dtype=numpy.float32) else: self.value_min = numpy.array(kwargs.get('value_min'), dtype=numpy.float32) assert self.value_min.shape == (3, ) if 'value_max' not in kwargs: self.value_max = numpy.zeros(3, dtype=numpy.float32) else: self.value_max = numpy.array(kwargs.get('value_max'), dtype=numpy.float32) assert self.value_max.shape == (3, ) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.valid != other.valid: return False if all(self.param_index != other.param_index): return False if all(self.param_id != other.param_id): return False if all(self.scale != other.scale): return False if all(self.value0 != other.value0): return False if all(self.value_min != other.value_min): return False if all(self.value_max != other.value_max): return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def valid(self): """Message field 'valid'.""" return self._valid @valid.setter def valid(self, value): if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, bool) for v in value) and True), \ "The 'valid' field must be a set or sequence with length 3 and each value of type 'bool'" self._valid = value @property def param_index(self): """Message field 'param_index'.""" return self._param_index @param_index.setter def param_index(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.int32, \ "The 'param_index' numpy.ndarray() must have the dtype of 'numpy.int32'" assert value.size == 3, \ "The 'param_index' numpy.ndarray() must have a size of 3" self._param_index = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, int) for v in value) and all(val >= -2147483648 and val < 2147483648 for val in value)), \ "The 'param_index' field must be a set or sequence with length 3 and each value of type 'int' and each integer in [-2147483648, 2147483647]" self._param_index = numpy.array(value, dtype=numpy.int32) @property def param_id(self): """Message field 'param_id'.""" return self._param_id @param_id.setter def param_id(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.uint8, \ "The 'param_id' numpy.ndarray() must have the dtype of 'numpy.uint8'" assert value.size == 51, \ "The 'param_id' numpy.ndarray() must have a size of 51" self._param_id = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 51 and all(isinstance(v, int) for v in value) and all(val >= 0 and val < 256 for val in value)), \ "The 'param_id' field must be a set or sequence with length 51 and each value of type 'int' and each unsigned integer in [0, 255]" self._param_id = numpy.array(value, dtype=numpy.uint8) @property def scale(self): """Message field 'scale'.""" return self._scale @scale.setter def scale(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'scale' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'scale' numpy.ndarray() must have a size of 3" self._scale = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'scale' field must be a set or sequence with length 3 and each value of type 'float'" self._scale = numpy.array(value, dtype=numpy.float32) @property def value0(self): """Message field 'value0'.""" return self._value0 @value0.setter def value0(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'value0' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'value0' numpy.ndarray() must have a size of 3" self._value0 = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'value0' field must be a set or sequence with length 3 and each value of type 'float'" self._value0 = numpy.array(value, dtype=numpy.float32) @property def value_min(self): """Message field 'value_min'.""" return self._value_min @value_min.setter def value_min(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'value_min' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'value_min' numpy.ndarray() must have a size of 3" self._value_min = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'value_min' field must be a set or sequence with length 3 and each value of type 'float'" self._value_min = numpy.array(value, dtype=numpy.float32) @property def value_max(self): """Message field 'value_max'.""" return self._value_max @value_max.setter def value_max(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'value_max' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'value_max' numpy.ndarray() must have a size of 3" self._value_max = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'value_max' field must be a set or sequence with length 3 and each value of type 'float'" self._value_max = numpy.array(value, dtype=numpy.float32) <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_pose__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/LandingTargetPose.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/landing_target_pose__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/landing_target_pose__struct.h" #include "px4_msgs/msg/landing_target_pose__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _LandingTargetPose__ros_msg_type = px4_msgs__msg__LandingTargetPose; static bool _LandingTargetPose__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _LandingTargetPose__ros_msg_type * ros_message = static_cast<const _LandingTargetPose__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: is_static { cdr << (ros_message->is_static ? true : false); } // Field name: rel_pos_valid { cdr << (ros_message->rel_pos_valid ? true : false); } // Field name: rel_vel_valid { cdr << (ros_message->rel_vel_valid ? true : false); } // Field name: x_rel { cdr << ros_message->x_rel; } // Field name: y_rel { cdr << ros_message->y_rel; } // Field name: z_rel { cdr << ros_message->z_rel; } // Field name: vx_rel { cdr << ros_message->vx_rel; } // Field name: vy_rel { cdr << ros_message->vy_rel; } // Field name: cov_x_rel { cdr << ros_message->cov_x_rel; } // Field name: cov_y_rel { cdr << ros_message->cov_y_rel; } // Field name: cov_vx_rel { cdr << ros_message->cov_vx_rel; } // Field name: cov_vy_rel { cdr << ros_message->cov_vy_rel; } // Field name: abs_pos_valid { cdr << (ros_message->abs_pos_valid ? true : false); } // Field name: x_abs { cdr << ros_message->x_abs; } // Field name: y_abs { cdr << ros_message->y_abs; } // Field name: z_abs { cdr << ros_message->z_abs; } return true; } static bool _LandingTargetPose__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _LandingTargetPose__ros_msg_type * ros_message = static_cast<_LandingTargetPose__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: is_static { uint8_t tmp; cdr >> tmp; ros_message->is_static = tmp ? true : false; } // Field name: rel_pos_valid { uint8_t tmp; cdr >> tmp; ros_message->rel_pos_valid = tmp ? true : false; } // Field name: rel_vel_valid { uint8_t tmp; cdr >> tmp; ros_message->rel_vel_valid = tmp ? true : false; } // Field name: x_rel { cdr >> ros_message->x_rel; } // Field name: y_rel { cdr >> ros_message->y_rel; } // Field name: z_rel { cdr >> ros_message->z_rel; } // Field name: vx_rel { cdr >> ros_message->vx_rel; } // Field name: vy_rel { cdr >> ros_message->vy_rel; } // Field name: cov_x_rel { cdr >> ros_message->cov_x_rel; } // Field name: cov_y_rel { cdr >> ros_message->cov_y_rel; } // Field name: cov_vx_rel { cdr >> ros_message->cov_vx_rel; } // Field name: cov_vy_rel { cdr >> ros_message->cov_vy_rel; } // Field name: abs_pos_valid { uint8_t tmp; cdr >> tmp; ros_message->abs_pos_valid = tmp ? true : false; } // Field name: x_abs { cdr >> ros_message->x_abs; } // Field name: y_abs { cdr >> ros_message->y_abs; } // Field name: z_abs { cdr >> ros_message->z_abs; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__LandingTargetPose( const void * untyped_ros_message, size_t current_alignment) { const _LandingTargetPose__ros_msg_type * ros_message = static_cast<const _LandingTargetPose__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name is_static { size_t item_size = sizeof(ros_message->is_static); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rel_pos_valid { size_t item_size = sizeof(ros_message->rel_pos_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rel_vel_valid { size_t item_size = sizeof(ros_message->rel_vel_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name x_rel { size_t item_size = sizeof(ros_message->x_rel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name y_rel { size_t item_size = sizeof(ros_message->y_rel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name z_rel { size_t item_size = sizeof(ros_message->z_rel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vx_rel { size_t item_size = sizeof(ros_message->vx_rel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vy_rel { size_t item_size = sizeof(ros_message->vy_rel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cov_x_rel { size_t item_size = sizeof(ros_message->cov_x_rel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cov_y_rel { size_t item_size = sizeof(ros_message->cov_y_rel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cov_vx_rel { size_t item_size = sizeof(ros_message->cov_vx_rel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cov_vy_rel { size_t item_size = sizeof(ros_message->cov_vy_rel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name abs_pos_valid { size_t item_size = sizeof(ros_message->abs_pos_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name x_abs { size_t item_size = sizeof(ros_message->x_abs); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name y_abs { size_t item_size = sizeof(ros_message->y_abs); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name z_abs { size_t item_size = sizeof(ros_message->z_abs); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _LandingTargetPose__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__LandingTargetPose( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__LandingTargetPose( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: is_static { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: rel_pos_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: rel_vel_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: x_rel { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: y_rel { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: z_rel { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: vx_rel { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: vy_rel { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: cov_x_rel { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: cov_y_rel { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: cov_vx_rel { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: cov_vy_rel { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: abs_pos_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: x_abs { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: y_abs { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: z_abs { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _LandingTargetPose__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__LandingTargetPose( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_LandingTargetPose = { "px4_msgs::msg", "LandingTargetPose", _LandingTargetPose__cdr_serialize, _LandingTargetPose__cdr_deserialize, _LandingTargetPose__get_serialized_size, _LandingTargetPose__max_serialized_size }; static rosidl_message_type_support_t _LandingTargetPose__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_LandingTargetPose, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, LandingTargetPose)() { return &_LandingTargetPose__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/control_allocator_status__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/ControlAllocatorStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__CONTROL_ALLOCATOR_STATUS__STRUCT_HPP_ #define PX4_MSGS__MSG__CONTROL_ALLOCATOR_STATUS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__ControlAllocatorStatus __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__ControlAllocatorStatus __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct ControlAllocatorStatus_ { using Type = ControlAllocatorStatus_<ContainerAllocator>; explicit ControlAllocatorStatus_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->torque_setpoint_achieved = false; std::fill<typename std::array<float, 3>::iterator, float>(this->allocated_torque.begin(), this->allocated_torque.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->unallocated_torque.begin(), this->unallocated_torque.end(), 0.0f); this->thrust_setpoint_achieved = false; std::fill<typename std::array<float, 3>::iterator, float>(this->allocated_thrust.begin(), this->allocated_thrust.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->unallocated_thrust.begin(), this->unallocated_thrust.end(), 0.0f); std::fill<typename std::array<int8_t, 16>::iterator, int8_t>(this->actuator_saturation.begin(), this->actuator_saturation.end(), 0); } } explicit ControlAllocatorStatus_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : allocated_torque(_alloc), unallocated_torque(_alloc), allocated_thrust(_alloc), unallocated_thrust(_alloc), actuator_saturation(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->torque_setpoint_achieved = false; std::fill<typename std::array<float, 3>::iterator, float>(this->allocated_torque.begin(), this->allocated_torque.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->unallocated_torque.begin(), this->unallocated_torque.end(), 0.0f); this->thrust_setpoint_achieved = false; std::fill<typename std::array<float, 3>::iterator, float>(this->allocated_thrust.begin(), this->allocated_thrust.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->unallocated_thrust.begin(), this->unallocated_thrust.end(), 0.0f); std::fill<typename std::array<int8_t, 16>::iterator, int8_t>(this->actuator_saturation.begin(), this->actuator_saturation.end(), 0); } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _torque_setpoint_achieved_type = bool; _torque_setpoint_achieved_type torque_setpoint_achieved; using _allocated_torque_type = std::array<float, 3>; _allocated_torque_type allocated_torque; using _unallocated_torque_type = std::array<float, 3>; _unallocated_torque_type unallocated_torque; using _thrust_setpoint_achieved_type = bool; _thrust_setpoint_achieved_type thrust_setpoint_achieved; using _allocated_thrust_type = std::array<float, 3>; _allocated_thrust_type allocated_thrust; using _unallocated_thrust_type = std::array<float, 3>; _unallocated_thrust_type unallocated_thrust; using _actuator_saturation_type = std::array<int8_t, 16>; _actuator_saturation_type actuator_saturation; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__torque_setpoint_achieved( const bool & _arg) { this->torque_setpoint_achieved = _arg; return *this; } Type & set__allocated_torque( const std::array<float, 3> & _arg) { this->allocated_torque = _arg; return *this; } Type & set__unallocated_torque( const std::array<float, 3> & _arg) { this->unallocated_torque = _arg; return *this; } Type & set__thrust_setpoint_achieved( const bool & _arg) { this->thrust_setpoint_achieved = _arg; return *this; } Type & set__allocated_thrust( const std::array<float, 3> & _arg) { this->allocated_thrust = _arg; return *this; } Type & set__unallocated_thrust( const std::array<float, 3> & _arg) { this->unallocated_thrust = _arg; return *this; } Type & set__actuator_saturation( const std::array<int8_t, 16> & _arg) { this->actuator_saturation = _arg; return *this; } // constant declarations static constexpr int8_t ACTUATOR_SATURATION_OK = 0; static constexpr int8_t ACTUATOR_SATURATION_UPPER_DYN = 1; static constexpr int8_t ACTUATOR_SATURATION_UPPER = 2; static constexpr int8_t ACTUATOR_SATURATION_LOWER_DYN = -1; static constexpr int8_t ACTUATOR_SATURATION_LOWER = -2; // pointer types using RawPtr = px4_msgs::msg::ControlAllocatorStatus_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::ControlAllocatorStatus_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::ControlAllocatorStatus_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::ControlAllocatorStatus_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::ControlAllocatorStatus_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::ControlAllocatorStatus_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::ControlAllocatorStatus_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::ControlAllocatorStatus_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::ControlAllocatorStatus_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::ControlAllocatorStatus_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__ControlAllocatorStatus std::shared_ptr<px4_msgs::msg::ControlAllocatorStatus_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__ControlAllocatorStatus std::shared_ptr<px4_msgs::msg::ControlAllocatorStatus_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const ControlAllocatorStatus_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->torque_setpoint_achieved != other.torque_setpoint_achieved) { return false; } if (this->allocated_torque != other.allocated_torque) { return false; } if (this->unallocated_torque != other.unallocated_torque) { return false; } if (this->thrust_setpoint_achieved != other.thrust_setpoint_achieved) { return false; } if (this->allocated_thrust != other.allocated_thrust) { return false; } if (this->unallocated_thrust != other.unallocated_thrust) { return false; } if (this->actuator_saturation != other.actuator_saturation) { return false; } return true; } bool operator!=(const ControlAllocatorStatus_ & other) const { return !this->operator==(other); } }; // struct ControlAllocatorStatus_ // alias to use template instance with default allocator using ControlAllocatorStatus = px4_msgs::msg::ControlAllocatorStatus_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr int8_t ControlAllocatorStatus_<ContainerAllocator>::ACTUATOR_SATURATION_OK; template<typename ContainerAllocator> constexpr int8_t ControlAllocatorStatus_<ContainerAllocator>::ACTUATOR_SATURATION_UPPER_DYN; template<typename ContainerAllocator> constexpr int8_t ControlAllocatorStatus_<ContainerAllocator>::ACTUATOR_SATURATION_UPPER; template<typename ContainerAllocator> constexpr int8_t ControlAllocatorStatus_<ContainerAllocator>::ACTUATOR_SATURATION_LOWER_DYN; template<typename ContainerAllocator> constexpr int8_t ControlAllocatorStatus_<ContainerAllocator>::ACTUATOR_SATURATION_LOWER; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__CONTROL_ALLOCATOR_STATUS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/system_power.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SYSTEM_POWER_HPP_ #define PX4_MSGS__MSG__SYSTEM_POWER_HPP_ #include "px4_msgs/msg/system_power__struct.hpp" #include "px4_msgs/msg/system_power__traits.hpp" #endif // PX4_MSGS__MSG__SYSTEM_POWER_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/ping__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/Ping.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__PING__STRUCT_HPP_ #define PX4_MSGS__MSG__PING__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__Ping __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__Ping __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct Ping_ { using Type = Ping_<ContainerAllocator>; explicit Ping_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->ping_time = 0ull; this->ping_sequence = 0ul; this->dropped_packets = 0ul; this->rtt_ms = 0.0f; this->system_id = 0; this->component_id = 0; } } explicit Ping_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->ping_time = 0ull; this->ping_sequence = 0ul; this->dropped_packets = 0ul; this->rtt_ms = 0.0f; this->system_id = 0; this->component_id = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _ping_time_type = uint64_t; _ping_time_type ping_time; using _ping_sequence_type = uint32_t; _ping_sequence_type ping_sequence; using _dropped_packets_type = uint32_t; _dropped_packets_type dropped_packets; using _rtt_ms_type = float; _rtt_ms_type rtt_ms; using _system_id_type = uint8_t; _system_id_type system_id; using _component_id_type = uint8_t; _component_id_type component_id; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__ping_time( const uint64_t & _arg) { this->ping_time = _arg; return *this; } Type & set__ping_sequence( const uint32_t & _arg) { this->ping_sequence = _arg; return *this; } Type & set__dropped_packets( const uint32_t & _arg) { this->dropped_packets = _arg; return *this; } Type & set__rtt_ms( const float & _arg) { this->rtt_ms = _arg; return *this; } Type & set__system_id( const uint8_t & _arg) { this->system_id = _arg; return *this; } Type & set__component_id( const uint8_t & _arg) { this->component_id = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::Ping_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::Ping_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::Ping_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::Ping_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::Ping_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::Ping_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::Ping_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::Ping_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::Ping_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::Ping_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__Ping std::shared_ptr<px4_msgs::msg::Ping_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__Ping std::shared_ptr<px4_msgs::msg::Ping_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const Ping_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->ping_time != other.ping_time) { return false; } if (this->ping_sequence != other.ping_sequence) { return false; } if (this->dropped_packets != other.dropped_packets) { return false; } if (this->rtt_ms != other.rtt_ms) { return false; } if (this->system_id != other.system_id) { return false; } if (this->component_id != other.component_id) { return false; } return true; } bool operator!=(const Ping_ & other) const { return !this->operator==(other); } }; // struct Ping_ // alias to use template instance with default allocator using Ping = px4_msgs::msg::Ping_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__PING__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_sensor_bias__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/EstimatorSensorBias.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/estimator_sensor_bias__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/estimator_sensor_bias__struct.h" #include "px4_msgs/msg/estimator_sensor_bias__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _EstimatorSensorBias__ros_msg_type = px4_msgs__msg__EstimatorSensorBias; static bool _EstimatorSensorBias__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _EstimatorSensorBias__ros_msg_type * ros_message = static_cast<const _EstimatorSensorBias__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: timestamp_sample { cdr << ros_message->timestamp_sample; } // Field name: gyro_device_id { cdr << ros_message->gyro_device_id; } // Field name: gyro_bias { size_t size = 3; auto array_ptr = ros_message->gyro_bias; cdr.serializeArray(array_ptr, size); } // Field name: gyro_bias_limit { cdr << ros_message->gyro_bias_limit; } // Field name: gyro_bias_variance { size_t size = 3; auto array_ptr = ros_message->gyro_bias_variance; cdr.serializeArray(array_ptr, size); } // Field name: gyro_bias_valid { cdr << (ros_message->gyro_bias_valid ? true : false); } // Field name: accel_device_id { cdr << ros_message->accel_device_id; } // Field name: accel_bias { size_t size = 3; auto array_ptr = ros_message->accel_bias; cdr.serializeArray(array_ptr, size); } // Field name: accel_bias_limit { cdr << ros_message->accel_bias_limit; } // Field name: accel_bias_variance { size_t size = 3; auto array_ptr = ros_message->accel_bias_variance; cdr.serializeArray(array_ptr, size); } // Field name: accel_bias_valid { cdr << (ros_message->accel_bias_valid ? true : false); } // Field name: mag_device_id { cdr << ros_message->mag_device_id; } // Field name: mag_bias { size_t size = 3; auto array_ptr = ros_message->mag_bias; cdr.serializeArray(array_ptr, size); } // Field name: mag_bias_limit { cdr << ros_message->mag_bias_limit; } // Field name: mag_bias_variance { size_t size = 3; auto array_ptr = ros_message->mag_bias_variance; cdr.serializeArray(array_ptr, size); } // Field name: mag_bias_valid { cdr << (ros_message->mag_bias_valid ? true : false); } return true; } static bool _EstimatorSensorBias__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _EstimatorSensorBias__ros_msg_type * ros_message = static_cast<_EstimatorSensorBias__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: timestamp_sample { cdr >> ros_message->timestamp_sample; } // Field name: gyro_device_id { cdr >> ros_message->gyro_device_id; } // Field name: gyro_bias { size_t size = 3; auto array_ptr = ros_message->gyro_bias; cdr.deserializeArray(array_ptr, size); } // Field name: gyro_bias_limit { cdr >> ros_message->gyro_bias_limit; } // Field name: gyro_bias_variance { size_t size = 3; auto array_ptr = ros_message->gyro_bias_variance; cdr.deserializeArray(array_ptr, size); } // Field name: gyro_bias_valid { uint8_t tmp; cdr >> tmp; ros_message->gyro_bias_valid = tmp ? true : false; } // Field name: accel_device_id { cdr >> ros_message->accel_device_id; } // Field name: accel_bias { size_t size = 3; auto array_ptr = ros_message->accel_bias; cdr.deserializeArray(array_ptr, size); } // Field name: accel_bias_limit { cdr >> ros_message->accel_bias_limit; } // Field name: accel_bias_variance { size_t size = 3; auto array_ptr = ros_message->accel_bias_variance; cdr.deserializeArray(array_ptr, size); } // Field name: accel_bias_valid { uint8_t tmp; cdr >> tmp; ros_message->accel_bias_valid = tmp ? true : false; } // Field name: mag_device_id { cdr >> ros_message->mag_device_id; } // Field name: mag_bias { size_t size = 3; auto array_ptr = ros_message->mag_bias; cdr.deserializeArray(array_ptr, size); } // Field name: mag_bias_limit { cdr >> ros_message->mag_bias_limit; } // Field name: mag_bias_variance { size_t size = 3; auto array_ptr = ros_message->mag_bias_variance; cdr.deserializeArray(array_ptr, size); } // Field name: mag_bias_valid { uint8_t tmp; cdr >> tmp; ros_message->mag_bias_valid = tmp ? true : false; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__EstimatorSensorBias( const void * untyped_ros_message, size_t current_alignment) { const _EstimatorSensorBias__ros_msg_type * ros_message = static_cast<const _EstimatorSensorBias__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name timestamp_sample { size_t item_size = sizeof(ros_message->timestamp_sample); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gyro_device_id { size_t item_size = sizeof(ros_message->gyro_device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gyro_bias { size_t array_size = 3; auto array_ptr = ros_message->gyro_bias; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gyro_bias_limit { size_t item_size = sizeof(ros_message->gyro_bias_limit); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gyro_bias_variance { size_t array_size = 3; auto array_ptr = ros_message->gyro_bias_variance; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gyro_bias_valid { size_t item_size = sizeof(ros_message->gyro_bias_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name accel_device_id { size_t item_size = sizeof(ros_message->accel_device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name accel_bias { size_t array_size = 3; auto array_ptr = ros_message->accel_bias; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name accel_bias_limit { size_t item_size = sizeof(ros_message->accel_bias_limit); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name accel_bias_variance { size_t array_size = 3; auto array_ptr = ros_message->accel_bias_variance; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name accel_bias_valid { size_t item_size = sizeof(ros_message->accel_bias_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name mag_device_id { size_t item_size = sizeof(ros_message->mag_device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name mag_bias { size_t array_size = 3; auto array_ptr = ros_message->mag_bias; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name mag_bias_limit { size_t item_size = sizeof(ros_message->mag_bias_limit); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name mag_bias_variance { size_t array_size = 3; auto array_ptr = ros_message->mag_bias_variance; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name mag_bias_valid { size_t item_size = sizeof(ros_message->mag_bias_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _EstimatorSensorBias__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__EstimatorSensorBias( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__EstimatorSensorBias( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: timestamp_sample { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: gyro_device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gyro_bias { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gyro_bias_limit { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gyro_bias_variance { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gyro_bias_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: accel_device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: accel_bias { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: accel_bias_limit { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: accel_bias_variance { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: accel_bias_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: mag_device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: mag_bias { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: mag_bias_limit { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: mag_bias_variance { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: mag_bias_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _EstimatorSensorBias__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__EstimatorSensorBias( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_EstimatorSensorBias = { "px4_msgs::msg", "EstimatorSensorBias", _EstimatorSensorBias__cdr_serialize, _EstimatorSensorBias__cdr_deserialize, _EstimatorSensorBias__get_serialized_size, _EstimatorSensorBias__max_serialized_size }; static rosidl_message_type_support_t _EstimatorSensorBias__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_EstimatorSensorBias, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, EstimatorSensorBias)() { return &_EstimatorSensorBias__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/camera_trigger__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/CameraTrigger.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/camera_trigger__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__CameraTrigger__init(px4_msgs__msg__CameraTrigger * msg) { if (!msg) { return false; } // timestamp // timestamp_utc // seq // feedback return true; } void px4_msgs__msg__CameraTrigger__fini(px4_msgs__msg__CameraTrigger * msg) { if (!msg) { return; } // timestamp // timestamp_utc // seq // feedback } px4_msgs__msg__CameraTrigger * px4_msgs__msg__CameraTrigger__create() { px4_msgs__msg__CameraTrigger * msg = (px4_msgs__msg__CameraTrigger *)malloc(sizeof(px4_msgs__msg__CameraTrigger)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__CameraTrigger)); bool success = px4_msgs__msg__CameraTrigger__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__CameraTrigger__destroy(px4_msgs__msg__CameraTrigger * msg) { if (msg) { px4_msgs__msg__CameraTrigger__fini(msg); } free(msg); } bool px4_msgs__msg__CameraTrigger__Sequence__init(px4_msgs__msg__CameraTrigger__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__CameraTrigger * data = NULL; if (size) { data = (px4_msgs__msg__CameraTrigger *)calloc(size, sizeof(px4_msgs__msg__CameraTrigger)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__CameraTrigger__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__CameraTrigger__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__CameraTrigger__Sequence__fini(px4_msgs__msg__CameraTrigger__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__CameraTrigger__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__CameraTrigger__Sequence * px4_msgs__msg__CameraTrigger__Sequence__create(size_t size) { px4_msgs__msg__CameraTrigger__Sequence * array = (px4_msgs__msg__CameraTrigger__Sequence *)malloc(sizeof(px4_msgs__msg__CameraTrigger__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__CameraTrigger__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__CameraTrigger__Sequence__destroy(px4_msgs__msg__CameraTrigger__Sequence * array) { if (array) { px4_msgs__msg__CameraTrigger__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/px4_msgs__py/CMakeFiles/px4_msgs__py.dir/cmake_clean.cmake file(REMOVE_RECURSE "CMakeFiles/px4_msgs__py" "../rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_c.c" "../rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_fastrtps_c.c" "../rosidl_generator_py/px4_msgs/msg/_actuator_armed.py" "../rosidl_generator_py/px4_msgs/msg/_actuator_controls.py" "../rosidl_generator_py/px4_msgs/msg/_actuator_controls0.py" "../rosidl_generator_py/px4_msgs/msg/_actuator_controls1.py" "../rosidl_generator_py/px4_msgs/msg/_actuator_controls2.py" "../rosidl_generator_py/px4_msgs/msg/_actuator_controls3.py" "../rosidl_generator_py/px4_msgs/msg/_actuator_controls4.py" "../rosidl_generator_py/px4_msgs/msg/_actuator_controls5.py" "../rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_fw.py" "../rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_mc.py" "../rosidl_generator_py/px4_msgs/msg/_actuator_outputs.py" "../rosidl_generator_py/px4_msgs/msg/_adc_report.py" "../rosidl_generator_py/px4_msgs/msg/_airspeed.py" "../rosidl_generator_py/px4_msgs/msg/_airspeed_validated.py" "../rosidl_generator_py/px4_msgs/msg/_airspeed_wind.py" "../rosidl_generator_py/px4_msgs/msg/_battery_status.py" "../rosidl_generator_py/px4_msgs/msg/_camera_capture.py" "../rosidl_generator_py/px4_msgs/msg/_camera_trigger.py" "../rosidl_generator_py/px4_msgs/msg/_camera_trigger_secondary.py" "../rosidl_generator_py/px4_msgs/msg/_cellular_status.py" "../rosidl_generator_py/px4_msgs/msg/_collision_constraints.py" "../rosidl_generator_py/px4_msgs/msg/_collision_report.py" "../rosidl_generator_py/px4_msgs/msg/_commander_state.py" "../rosidl_generator_py/px4_msgs/msg/_control_allocator_status.py" "../rosidl_generator_py/px4_msgs/msg/_cpuload.py" "../rosidl_generator_py/px4_msgs/msg/_debug_array.py" "../rosidl_generator_py/px4_msgs/msg/_debug_key_value.py" "../rosidl_generator_py/px4_msgs/msg/_debug_value.py" "../rosidl_generator_py/px4_msgs/msg/_debug_vect.py" "../rosidl_generator_py/px4_msgs/msg/_differential_pressure.py" "../rosidl_generator_py/px4_msgs/msg/_distance_sensor.py" "../rosidl_generator_py/px4_msgs/msg/_ekf2_timestamps.py" "../rosidl_generator_py/px4_msgs/msg/_ekf_gps_drift.py" "../rosidl_generator_py/px4_msgs/msg/_esc_report.py" "../rosidl_generator_py/px4_msgs/msg/_esc_status.py" "../rosidl_generator_py/px4_msgs/msg/_estimator_attitude.py" "../rosidl_generator_py/px4_msgs/msg/_estimator_event_flags.py" "../rosidl_generator_py/px4_msgs/msg/_estimator_global_position.py" "../rosidl_generator_py/px4_msgs/msg/_estimator_innovation_test_ratios.py" "../rosidl_generator_py/px4_msgs/msg/_estimator_innovation_variances.py" "../rosidl_generator_py/px4_msgs/msg/_estimator_innovations.py" "../rosidl_generator_py/px4_msgs/msg/_estimator_local_position.py" "../rosidl_generator_py/px4_msgs/msg/_estimator_odometry.py" "../rosidl_generator_py/px4_msgs/msg/_estimator_optical_flow_vel.py" "../rosidl_generator_py/px4_msgs/msg/_estimator_selector_status.py" "../rosidl_generator_py/px4_msgs/msg/_estimator_sensor_bias.py" "../rosidl_generator_py/px4_msgs/msg/_estimator_states.py" "../rosidl_generator_py/px4_msgs/msg/_estimator_status.py" "../rosidl_generator_py/px4_msgs/msg/_estimator_status_flags.py" "../rosidl_generator_py/px4_msgs/msg/_estimator_visual_odometry_aligned.py" "../rosidl_generator_py/px4_msgs/msg/_estimator_wind.py" "../rosidl_generator_py/px4_msgs/msg/_follow_target.py" "../rosidl_generator_py/px4_msgs/msg/_fw_virtual_attitude_setpoint.py" "../rosidl_generator_py/px4_msgs/msg/_generator_status.py" "../rosidl_generator_py/px4_msgs/msg/_geofence_result.py" "../rosidl_generator_py/px4_msgs/msg/_gimbal_device_attitude_status.py" "../rosidl_generator_py/px4_msgs/msg/_gimbal_device_information.py" "../rosidl_generator_py/px4_msgs/msg/_gimbal_device_set_attitude.py" "../rosidl_generator_py/px4_msgs/msg/_gimbal_manager_information.py" "../rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_attitude.py" "../rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_manual_control.py" "../rosidl_generator_py/px4_msgs/msg/_gimbal_manager_status.py" "../rosidl_generator_py/px4_msgs/msg/_gps_dump.py" "../rosidl_generator_py/px4_msgs/msg/_gps_inject_data.py" "../rosidl_generator_py/px4_msgs/msg/_heater_status.py" "../rosidl_generator_py/px4_msgs/msg/_home_position.py" "../rosidl_generator_py/px4_msgs/msg/_hover_thrust_estimate.py" "../rosidl_generator_py/px4_msgs/msg/_input_rc.py" "../rosidl_generator_py/px4_msgs/msg/_iridiumsbd_status.py" "../rosidl_generator_py/px4_msgs/msg/_irlock_report.py" "../rosidl_generator_py/px4_msgs/msg/_landing_gear.py" "../rosidl_generator_py/px4_msgs/msg/_landing_target_innovations.py" "../rosidl_generator_py/px4_msgs/msg/_landing_target_pose.py" "../rosidl_generator_py/px4_msgs/msg/_led_control.py" "../rosidl_generator_py/px4_msgs/msg/_log_message.py" "../rosidl_generator_py/px4_msgs/msg/_logger_status.py" "../rosidl_generator_py/px4_msgs/msg/_mag_worker_data.py" "../rosidl_generator_py/px4_msgs/msg/_manual_control_setpoint.py" "../rosidl_generator_py/px4_msgs/msg/_manual_control_switches.py" "../rosidl_generator_py/px4_msgs/msg/_mavlink_log.py" "../rosidl_generator_py/px4_msgs/msg/_mc_virtual_attitude_setpoint.py" "../rosidl_generator_py/px4_msgs/msg/_mission.py" "../rosidl_generator_py/px4_msgs/msg/_mission_result.py" "../rosidl_generator_py/px4_msgs/msg/_mount_orientation.py" "../rosidl_generator_py/px4_msgs/msg/_multirotor_motor_limits.py" "../rosidl_generator_py/px4_msgs/msg/_navigator_mission_item.py" "../rosidl_generator_py/px4_msgs/msg/_obstacle_distance.py" "../rosidl_generator_py/px4_msgs/msg/_obstacle_distance_fused.py" "../rosidl_generator_py/px4_msgs/msg/_offboard_control_mode.py" "../rosidl_generator_py/px4_msgs/msg/_onboard_computer_status.py" "../rosidl_generator_py/px4_msgs/msg/_optical_flow.py" "../rosidl_generator_py/px4_msgs/msg/_orb_multitest.py" "../rosidl_generator_py/px4_msgs/msg/_orb_test.py" "../rosidl_generator_py/px4_msgs/msg/_orb_test_large.py" "../rosidl_generator_py/px4_msgs/msg/_orb_test_medium.py" "../rosidl_generator_py/px4_msgs/msg/_orb_test_medium_multi.py" "../rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue.py" "../rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_poll.py" "../rosidl_generator_py/px4_msgs/msg/_orb_test_medium_wrap_around.py" "../rosidl_generator_py/px4_msgs/msg/_orbit_status.py" "../rosidl_generator_py/px4_msgs/msg/_parameter_update.py" "../rosidl_generator_py/px4_msgs/msg/_ping.py" "../rosidl_generator_py/px4_msgs/msg/_position_controller_landing_status.py" "../rosidl_generator_py/px4_msgs/msg/_position_controller_status.py" "../rosidl_generator_py/px4_msgs/msg/_position_setpoint.py" "../rosidl_generator_py/px4_msgs/msg/_position_setpoint_triplet.py" "../rosidl_generator_py/px4_msgs/msg/_power_button_state.py" "../rosidl_generator_py/px4_msgs/msg/_power_monitor.py" "../rosidl_generator_py/px4_msgs/msg/_pwm_input.py" "../rosidl_generator_py/px4_msgs/msg/_px4_io_status.py" "../rosidl_generator_py/px4_msgs/msg/_qshell_req.py" "../rosidl_generator_py/px4_msgs/msg/_qshell_retval.py" "../rosidl_generator_py/px4_msgs/msg/_radio_status.py" "../rosidl_generator_py/px4_msgs/msg/_rate_ctrl_status.py" "../rosidl_generator_py/px4_msgs/msg/_rc_channels.py" "../rosidl_generator_py/px4_msgs/msg/_rc_parameter_map.py" "../rosidl_generator_py/px4_msgs/msg/_rpm.py" "../rosidl_generator_py/px4_msgs/msg/_rtl_flight_time.py" "../rosidl_generator_py/px4_msgs/msg/_safety.py" "../rosidl_generator_py/px4_msgs/msg/_satellite_info.py" "../rosidl_generator_py/px4_msgs/msg/_sensor_accel.py" "../rosidl_generator_py/px4_msgs/msg/_sensor_accel_fifo.py" "../rosidl_generator_py/px4_msgs/msg/_sensor_baro.py" "../rosidl_generator_py/px4_msgs/msg/_sensor_combined.py" "../rosidl_generator_py/px4_msgs/msg/_sensor_correction.py" "../rosidl_generator_py/px4_msgs/msg/_sensor_gps.py" "../rosidl_generator_py/px4_msgs/msg/_sensor_gyro.py" "../rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fft.py" "../rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fifo.py" "../rosidl_generator_py/px4_msgs/msg/_sensor_mag.py" "../rosidl_generator_py/px4_msgs/msg/_sensor_preflight_mag.py" "../rosidl_generator_py/px4_msgs/msg/_sensor_selection.py" "../rosidl_generator_py/px4_msgs/msg/_sensors_status_imu.py" "../rosidl_generator_py/px4_msgs/msg/_system_power.py" "../rosidl_generator_py/px4_msgs/msg/_takeoff_status.py" "../rosidl_generator_py/px4_msgs/msg/_task_stack_info.py" "../rosidl_generator_py/px4_msgs/msg/_tecs_status.py" "../rosidl_generator_py/px4_msgs/msg/_telemetry_status.py" "../rosidl_generator_py/px4_msgs/msg/_test_motor.py" "../rosidl_generator_py/px4_msgs/msg/_timesync.py" "../rosidl_generator_py/px4_msgs/msg/_timesync_status.py" "../rosidl_generator_py/px4_msgs/msg/_trajectory_bezier.py" "../rosidl_generator_py/px4_msgs/msg/_trajectory_setpoint.py" "../rosidl_generator_py/px4_msgs/msg/_trajectory_waypoint.py" "../rosidl_generator_py/px4_msgs/msg/_transponder_report.py" "../rosidl_generator_py/px4_msgs/msg/_tune_control.py" "../rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_request.py" "../rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_value.py" "../rosidl_generator_py/px4_msgs/msg/_ulog_stream.py" "../rosidl_generator_py/px4_msgs/msg/_ulog_stream_ack.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_acceleration.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_actuator_setpoint.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_air_data.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_setpoint.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_groundtruth.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_attitude.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_groundtruth.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_setpoint.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_command.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_command_ack.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_constraints.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_control_mode.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_global_position.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_groundtruth.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_gps_position.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_imu.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_imu_status.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_land_detected.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_local_position.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_groundtruth.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_setpoint.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_magnetometer.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_mocap_odometry.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_odometry.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_rates_setpoint.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_roi.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_status.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_status_flags.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_thrust_setpoint.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_torque_setpoint.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_bezier.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_desired.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_vision_attitude.py" "../rosidl_generator_py/px4_msgs/msg/_vehicle_visual_odometry.py" "../rosidl_generator_py/px4_msgs/msg/_vtol_vehicle_status.py" "../rosidl_generator_py/px4_msgs/msg/_wheel_encoders.py" "../rosidl_generator_py/px4_msgs/msg/_wind.py" "../rosidl_generator_py/px4_msgs/msg/_yaw_estimator_status.py" "../rosidl_generator_py/px4_msgs/msg/__init__.py" "../rosidl_generator_py/px4_msgs/msg/_actuator_armed_s.c" "../rosidl_generator_py/px4_msgs/msg/_actuator_controls_s.c" "../rosidl_generator_py/px4_msgs/msg/_actuator_controls0_s.c" "../rosidl_generator_py/px4_msgs/msg/_actuator_controls1_s.c" "../rosidl_generator_py/px4_msgs/msg/_actuator_controls2_s.c" "../rosidl_generator_py/px4_msgs/msg/_actuator_controls3_s.c" "../rosidl_generator_py/px4_msgs/msg/_actuator_controls4_s.c" "../rosidl_generator_py/px4_msgs/msg/_actuator_controls5_s.c" "../rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_fw_s.c" "../rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_mc_s.c" "../rosidl_generator_py/px4_msgs/msg/_actuator_outputs_s.c" "../rosidl_generator_py/px4_msgs/msg/_adc_report_s.c" "../rosidl_generator_py/px4_msgs/msg/_airspeed_s.c" "../rosidl_generator_py/px4_msgs/msg/_airspeed_validated_s.c" "../rosidl_generator_py/px4_msgs/msg/_airspeed_wind_s.c" "../rosidl_generator_py/px4_msgs/msg/_battery_status_s.c" "../rosidl_generator_py/px4_msgs/msg/_camera_capture_s.c" "../rosidl_generator_py/px4_msgs/msg/_camera_trigger_s.c" "../rosidl_generator_py/px4_msgs/msg/_camera_trigger_secondary_s.c" "../rosidl_generator_py/px4_msgs/msg/_cellular_status_s.c" "../rosidl_generator_py/px4_msgs/msg/_collision_constraints_s.c" "../rosidl_generator_py/px4_msgs/msg/_collision_report_s.c" "../rosidl_generator_py/px4_msgs/msg/_commander_state_s.c" "../rosidl_generator_py/px4_msgs/msg/_control_allocator_status_s.c" "../rosidl_generator_py/px4_msgs/msg/_cpuload_s.c" "../rosidl_generator_py/px4_msgs/msg/_debug_array_s.c" "../rosidl_generator_py/px4_msgs/msg/_debug_key_value_s.c" "../rosidl_generator_py/px4_msgs/msg/_debug_value_s.c" "../rosidl_generator_py/px4_msgs/msg/_debug_vect_s.c" "../rosidl_generator_py/px4_msgs/msg/_differential_pressure_s.c" "../rosidl_generator_py/px4_msgs/msg/_distance_sensor_s.c" "../rosidl_generator_py/px4_msgs/msg/_ekf2_timestamps_s.c" "../rosidl_generator_py/px4_msgs/msg/_ekf_gps_drift_s.c" "../rosidl_generator_py/px4_msgs/msg/_esc_report_s.c" "../rosidl_generator_py/px4_msgs/msg/_esc_status_s.c" "../rosidl_generator_py/px4_msgs/msg/_estimator_attitude_s.c" "../rosidl_generator_py/px4_msgs/msg/_estimator_event_flags_s.c" "../rosidl_generator_py/px4_msgs/msg/_estimator_global_position_s.c" "../rosidl_generator_py/px4_msgs/msg/_estimator_innovation_test_ratios_s.c" "../rosidl_generator_py/px4_msgs/msg/_estimator_innovation_variances_s.c" "../rosidl_generator_py/px4_msgs/msg/_estimator_innovations_s.c" "../rosidl_generator_py/px4_msgs/msg/_estimator_local_position_s.c" "../rosidl_generator_py/px4_msgs/msg/_estimator_odometry_s.c" "../rosidl_generator_py/px4_msgs/msg/_estimator_optical_flow_vel_s.c" "../rosidl_generator_py/px4_msgs/msg/_estimator_selector_status_s.c" "../rosidl_generator_py/px4_msgs/msg/_estimator_sensor_bias_s.c" "../rosidl_generator_py/px4_msgs/msg/_estimator_states_s.c" "../rosidl_generator_py/px4_msgs/msg/_estimator_status_s.c" "../rosidl_generator_py/px4_msgs/msg/_estimator_status_flags_s.c" "../rosidl_generator_py/px4_msgs/msg/_estimator_visual_odometry_aligned_s.c" "../rosidl_generator_py/px4_msgs/msg/_estimator_wind_s.c" "../rosidl_generator_py/px4_msgs/msg/_follow_target_s.c" "../rosidl_generator_py/px4_msgs/msg/_fw_virtual_attitude_setpoint_s.c" "../rosidl_generator_py/px4_msgs/msg/_generator_status_s.c" "../rosidl_generator_py/px4_msgs/msg/_geofence_result_s.c" "../rosidl_generator_py/px4_msgs/msg/_gimbal_device_attitude_status_s.c" "../rosidl_generator_py/px4_msgs/msg/_gimbal_device_information_s.c" "../rosidl_generator_py/px4_msgs/msg/_gimbal_device_set_attitude_s.c" "../rosidl_generator_py/px4_msgs/msg/_gimbal_manager_information_s.c" "../rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_attitude_s.c" "../rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_manual_control_s.c" "../rosidl_generator_py/px4_msgs/msg/_gimbal_manager_status_s.c" "../rosidl_generator_py/px4_msgs/msg/_gps_dump_s.c" "../rosidl_generator_py/px4_msgs/msg/_gps_inject_data_s.c" "../rosidl_generator_py/px4_msgs/msg/_heater_status_s.c" "../rosidl_generator_py/px4_msgs/msg/_home_position_s.c" "../rosidl_generator_py/px4_msgs/msg/_hover_thrust_estimate_s.c" "../rosidl_generator_py/px4_msgs/msg/_input_rc_s.c" "../rosidl_generator_py/px4_msgs/msg/_iridiumsbd_status_s.c" "../rosidl_generator_py/px4_msgs/msg/_irlock_report_s.c" "../rosidl_generator_py/px4_msgs/msg/_landing_gear_s.c" "../rosidl_generator_py/px4_msgs/msg/_landing_target_innovations_s.c" "../rosidl_generator_py/px4_msgs/msg/_landing_target_pose_s.c" "../rosidl_generator_py/px4_msgs/msg/_led_control_s.c" "../rosidl_generator_py/px4_msgs/msg/_log_message_s.c" "../rosidl_generator_py/px4_msgs/msg/_logger_status_s.c" "../rosidl_generator_py/px4_msgs/msg/_mag_worker_data_s.c" "../rosidl_generator_py/px4_msgs/msg/_manual_control_setpoint_s.c" "../rosidl_generator_py/px4_msgs/msg/_manual_control_switches_s.c" "../rosidl_generator_py/px4_msgs/msg/_mavlink_log_s.c" "../rosidl_generator_py/px4_msgs/msg/_mc_virtual_attitude_setpoint_s.c" "../rosidl_generator_py/px4_msgs/msg/_mission_s.c" "../rosidl_generator_py/px4_msgs/msg/_mission_result_s.c" "../rosidl_generator_py/px4_msgs/msg/_mount_orientation_s.c" "../rosidl_generator_py/px4_msgs/msg/_multirotor_motor_limits_s.c" "../rosidl_generator_py/px4_msgs/msg/_navigator_mission_item_s.c" "../rosidl_generator_py/px4_msgs/msg/_obstacle_distance_s.c" "../rosidl_generator_py/px4_msgs/msg/_obstacle_distance_fused_s.c" "../rosidl_generator_py/px4_msgs/msg/_offboard_control_mode_s.c" "../rosidl_generator_py/px4_msgs/msg/_onboard_computer_status_s.c" "../rosidl_generator_py/px4_msgs/msg/_optical_flow_s.c" "../rosidl_generator_py/px4_msgs/msg/_orb_multitest_s.c" "../rosidl_generator_py/px4_msgs/msg/_orb_test_s.c" "../rosidl_generator_py/px4_msgs/msg/_orb_test_large_s.c" "../rosidl_generator_py/px4_msgs/msg/_orb_test_medium_s.c" "../rosidl_generator_py/px4_msgs/msg/_orb_test_medium_multi_s.c" "../rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_s.c" "../rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_poll_s.c" "../rosidl_generator_py/px4_msgs/msg/_orb_test_medium_wrap_around_s.c" "../rosidl_generator_py/px4_msgs/msg/_orbit_status_s.c" "../rosidl_generator_py/px4_msgs/msg/_parameter_update_s.c" "../rosidl_generator_py/px4_msgs/msg/_ping_s.c" "../rosidl_generator_py/px4_msgs/msg/_position_controller_landing_status_s.c" "../rosidl_generator_py/px4_msgs/msg/_position_controller_status_s.c" "../rosidl_generator_py/px4_msgs/msg/_position_setpoint_s.c" "../rosidl_generator_py/px4_msgs/msg/_position_setpoint_triplet_s.c" "../rosidl_generator_py/px4_msgs/msg/_power_button_state_s.c" "../rosidl_generator_py/px4_msgs/msg/_power_monitor_s.c" "../rosidl_generator_py/px4_msgs/msg/_pwm_input_s.c" "../rosidl_generator_py/px4_msgs/msg/_px4_io_status_s.c" "../rosidl_generator_py/px4_msgs/msg/_qshell_req_s.c" "../rosidl_generator_py/px4_msgs/msg/_qshell_retval_s.c" "../rosidl_generator_py/px4_msgs/msg/_radio_status_s.c" "../rosidl_generator_py/px4_msgs/msg/_rate_ctrl_status_s.c" "../rosidl_generator_py/px4_msgs/msg/_rc_channels_s.c" "../rosidl_generator_py/px4_msgs/msg/_rc_parameter_map_s.c" "../rosidl_generator_py/px4_msgs/msg/_rpm_s.c" "../rosidl_generator_py/px4_msgs/msg/_rtl_flight_time_s.c" "../rosidl_generator_py/px4_msgs/msg/_safety_s.c" "../rosidl_generator_py/px4_msgs/msg/_satellite_info_s.c" "../rosidl_generator_py/px4_msgs/msg/_sensor_accel_s.c" "../rosidl_generator_py/px4_msgs/msg/_sensor_accel_fifo_s.c" "../rosidl_generator_py/px4_msgs/msg/_sensor_baro_s.c" "../rosidl_generator_py/px4_msgs/msg/_sensor_combined_s.c" "../rosidl_generator_py/px4_msgs/msg/_sensor_correction_s.c" "../rosidl_generator_py/px4_msgs/msg/_sensor_gps_s.c" "../rosidl_generator_py/px4_msgs/msg/_sensor_gyro_s.c" "../rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fft_s.c" "../rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fifo_s.c" "../rosidl_generator_py/px4_msgs/msg/_sensor_mag_s.c" "../rosidl_generator_py/px4_msgs/msg/_sensor_preflight_mag_s.c" "../rosidl_generator_py/px4_msgs/msg/_sensor_selection_s.c" "../rosidl_generator_py/px4_msgs/msg/_sensors_status_imu_s.c" "../rosidl_generator_py/px4_msgs/msg/_system_power_s.c" "../rosidl_generator_py/px4_msgs/msg/_takeoff_status_s.c" "../rosidl_generator_py/px4_msgs/msg/_task_stack_info_s.c" "../rosidl_generator_py/px4_msgs/msg/_tecs_status_s.c" "../rosidl_generator_py/px4_msgs/msg/_telemetry_status_s.c" "../rosidl_generator_py/px4_msgs/msg/_test_motor_s.c" "../rosidl_generator_py/px4_msgs/msg/_timesync_s.c" "../rosidl_generator_py/px4_msgs/msg/_timesync_status_s.c" "../rosidl_generator_py/px4_msgs/msg/_trajectory_bezier_s.c" "../rosidl_generator_py/px4_msgs/msg/_trajectory_setpoint_s.c" "../rosidl_generator_py/px4_msgs/msg/_trajectory_waypoint_s.c" "../rosidl_generator_py/px4_msgs/msg/_transponder_report_s.c" "../rosidl_generator_py/px4_msgs/msg/_tune_control_s.c" "../rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_request_s.c" "../rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_value_s.c" "../rosidl_generator_py/px4_msgs/msg/_ulog_stream_s.c" "../rosidl_generator_py/px4_msgs/msg/_ulog_stream_ack_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_acceleration_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_actuator_setpoint_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_air_data_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_setpoint_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_groundtruth_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_groundtruth_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_setpoint_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_command_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_command_ack_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_constraints_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_control_mode_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_groundtruth_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_gps_position_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_imu_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_imu_status_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_land_detected_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_groundtruth_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_setpoint_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_magnetometer_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_mocap_odometry_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_odometry_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_rates_setpoint_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_roi_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_status_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_status_flags_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_thrust_setpoint_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_torque_setpoint_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_bezier_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_desired_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_vision_attitude_s.c" "../rosidl_generator_py/px4_msgs/msg/_vehicle_visual_odometry_s.c" "../rosidl_generator_py/px4_msgs/msg/_vtol_vehicle_status_s.c" "../rosidl_generator_py/px4_msgs/msg/_wheel_encoders_s.c" "../rosidl_generator_py/px4_msgs/msg/_wind_s.c" "../rosidl_generator_py/px4_msgs/msg/_yaw_estimator_status_s.c" ) # Per-language clean rules from dependency scanning. foreach(lang ) include(CMakeFiles/px4_msgs__py.dir/cmake_clean_${lang}.cmake OPTIONAL) endforeach() <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_magnetometer__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleMagnetometer.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_magnetometer__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__VehicleMagnetometer__init(px4_msgs__msg__VehicleMagnetometer * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // device_id // magnetometer_ga // calibration_count return true; } void px4_msgs__msg__VehicleMagnetometer__fini(px4_msgs__msg__VehicleMagnetometer * msg) { if (!msg) { return; } // timestamp // timestamp_sample // device_id // magnetometer_ga // calibration_count } px4_msgs__msg__VehicleMagnetometer * px4_msgs__msg__VehicleMagnetometer__create() { px4_msgs__msg__VehicleMagnetometer * msg = (px4_msgs__msg__VehicleMagnetometer *)malloc(sizeof(px4_msgs__msg__VehicleMagnetometer)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleMagnetometer)); bool success = px4_msgs__msg__VehicleMagnetometer__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleMagnetometer__destroy(px4_msgs__msg__VehicleMagnetometer * msg) { if (msg) { px4_msgs__msg__VehicleMagnetometer__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleMagnetometer__Sequence__init(px4_msgs__msg__VehicleMagnetometer__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleMagnetometer * data = NULL; if (size) { data = (px4_msgs__msg__VehicleMagnetometer *)calloc(size, sizeof(px4_msgs__msg__VehicleMagnetometer)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleMagnetometer__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleMagnetometer__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleMagnetometer__Sequence__fini(px4_msgs__msg__VehicleMagnetometer__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleMagnetometer__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleMagnetometer__Sequence * px4_msgs__msg__VehicleMagnetometer__Sequence__create(size_t size) { px4_msgs__msg__VehicleMagnetometer__Sequence * array = (px4_msgs__msg__VehicleMagnetometer__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleMagnetometer__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleMagnetometer__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleMagnetometer__Sequence__destroy(px4_msgs__msg__VehicleMagnetometer__Sequence * array) { if (array) { px4_msgs__msg__VehicleMagnetometer__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/generator_status__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/GeneratorStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GENERATOR_STATUS__STRUCT_H_ #define PX4_MSGS__MSG__GENERATOR_STATUS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'STATUS_FLAG_OFF'. enum { px4_msgs__msg__GeneratorStatus__STATUS_FLAG_OFF = 1ull }; /// Constant 'STATUS_FLAG_READY'. enum { px4_msgs__msg__GeneratorStatus__STATUS_FLAG_READY = 2ull }; /// Constant 'STATUS_FLAG_GENERATING'. enum { px4_msgs__msg__GeneratorStatus__STATUS_FLAG_GENERATING = 4ull }; /// Constant 'STATUS_FLAG_CHARGING'. enum { px4_msgs__msg__GeneratorStatus__STATUS_FLAG_CHARGING = 8ull }; /// Constant 'STATUS_FLAG_REDUCED_POWER'. enum { px4_msgs__msg__GeneratorStatus__STATUS_FLAG_REDUCED_POWER = 16ull }; /// Constant 'STATUS_FLAG_MAXPOWER'. enum { px4_msgs__msg__GeneratorStatus__STATUS_FLAG_MAXPOWER = 32ull }; /// Constant 'STATUS_FLAG_OVERTEMP_WARNING'. enum { px4_msgs__msg__GeneratorStatus__STATUS_FLAG_OVERTEMP_WARNING = 64ull }; /// Constant 'STATUS_FLAG_OVERTEMP_FAULT'. enum { px4_msgs__msg__GeneratorStatus__STATUS_FLAG_OVERTEMP_FAULT = 128ull }; /// Constant 'STATUS_FLAG_ELECTRONICS_OVERTEMP_WARNING'. enum { px4_msgs__msg__GeneratorStatus__STATUS_FLAG_ELECTRONICS_OVERTEMP_WARNING = 256ull }; /// Constant 'STATUS_FLAG_ELECTRONICS_OVERTEMP_FAULT'. enum { px4_msgs__msg__GeneratorStatus__STATUS_FLAG_ELECTRONICS_OVERTEMP_FAULT = 512ull }; /// Constant 'STATUS_FLAG_ELECTRONICS_FAULT'. enum { px4_msgs__msg__GeneratorStatus__STATUS_FLAG_ELECTRONICS_FAULT = 1024ull }; /// Constant 'STATUS_FLAG_POWERSOURCE_FAULT'. enum { px4_msgs__msg__GeneratorStatus__STATUS_FLAG_POWERSOURCE_FAULT = 2048ull }; /// Constant 'STATUS_FLAG_COMMUNICATION_WARNING'. enum { px4_msgs__msg__GeneratorStatus__STATUS_FLAG_COMMUNICATION_WARNING = 4096ull }; /// Constant 'STATUS_FLAG_COOLING_WARNING'. enum { px4_msgs__msg__GeneratorStatus__STATUS_FLAG_COOLING_WARNING = 8192ull }; /// Constant 'STATUS_FLAG_POWER_RAIL_FAULT'. enum { px4_msgs__msg__GeneratorStatus__STATUS_FLAG_POWER_RAIL_FAULT = 16384ull }; /// Constant 'STATUS_FLAG_OVERCURRENT_FAULT'. enum { px4_msgs__msg__GeneratorStatus__STATUS_FLAG_OVERCURRENT_FAULT = 32768ull }; /// Constant 'STATUS_FLAG_BATTERY_OVERCHARGE_CURRENT_FAULT'. enum { px4_msgs__msg__GeneratorStatus__STATUS_FLAG_BATTERY_OVERCHARGE_CURRENT_FAULT = 65536ull }; /// Constant 'STATUS_FLAG_OVERVOLTAGE_FAULT'. enum { px4_msgs__msg__GeneratorStatus__STATUS_FLAG_OVERVOLTAGE_FAULT = 131072ull }; /// Constant 'STATUS_FLAG_BATTERY_UNDERVOLT_FAULT'. enum { px4_msgs__msg__GeneratorStatus__STATUS_FLAG_BATTERY_UNDERVOLT_FAULT = 262144ull }; /// Constant 'STATUS_FLAG_START_INHIBITED'. enum { px4_msgs__msg__GeneratorStatus__STATUS_FLAG_START_INHIBITED = 524288ull }; /// Constant 'STATUS_FLAG_MAINTENANCE_REQUIRED'. enum { px4_msgs__msg__GeneratorStatus__STATUS_FLAG_MAINTENANCE_REQUIRED = 1048576ull }; /// Constant 'STATUS_FLAG_WARMING_UP'. enum { px4_msgs__msg__GeneratorStatus__STATUS_FLAG_WARMING_UP = 2097152ull }; /// Constant 'STATUS_FLAG_IDLE'. enum { px4_msgs__msg__GeneratorStatus__STATUS_FLAG_IDLE = 4194304ull }; // Struct defined in msg/GeneratorStatus in the package px4_msgs. typedef struct px4_msgs__msg__GeneratorStatus { uint64_t timestamp; uint64_t status; float battery_current; float load_current; float power_generated; float bus_voltage; float bat_current_setpoint; uint32_t runtime; int32_t time_until_maintenance; uint16_t generator_speed; int16_t rectifier_temperature; int16_t generator_temperature; } px4_msgs__msg__GeneratorStatus; // Struct for a sequence of px4_msgs__msg__GeneratorStatus. typedef struct px4_msgs__msg__GeneratorStatus__Sequence { px4_msgs__msg__GeneratorStatus * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__GeneratorStatus__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__GENERATOR_STATUS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/position_controller_landing_status__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/PositionControllerLandingStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__POSITION_CONTROLLER_LANDING_STATUS__FUNCTIONS_H_ #define PX4_MSGS__MSG__POSITION_CONTROLLER_LANDING_STATUS__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/position_controller_landing_status__struct.h" /// Initialize msg/PositionControllerLandingStatus message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__PositionControllerLandingStatus * )) before or use * px4_msgs__msg__PositionControllerLandingStatus__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__PositionControllerLandingStatus__init(px4_msgs__msg__PositionControllerLandingStatus * msg); /// Finalize msg/PositionControllerLandingStatus message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__PositionControllerLandingStatus__fini(px4_msgs__msg__PositionControllerLandingStatus * msg); /// Create msg/PositionControllerLandingStatus message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__PositionControllerLandingStatus__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__PositionControllerLandingStatus * px4_msgs__msg__PositionControllerLandingStatus__create(); /// Destroy msg/PositionControllerLandingStatus message. /** * It calls * px4_msgs__msg__PositionControllerLandingStatus__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__PositionControllerLandingStatus__destroy(px4_msgs__msg__PositionControllerLandingStatus * msg); /// Initialize array of msg/PositionControllerLandingStatus messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__PositionControllerLandingStatus__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__PositionControllerLandingStatus__Sequence__init(px4_msgs__msg__PositionControllerLandingStatus__Sequence * array, size_t size); /// Finalize array of msg/PositionControllerLandingStatus messages. /** * It calls * px4_msgs__msg__PositionControllerLandingStatus__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__PositionControllerLandingStatus__Sequence__fini(px4_msgs__msg__PositionControllerLandingStatus__Sequence * array); /// Create array of msg/PositionControllerLandingStatus messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__PositionControllerLandingStatus__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__PositionControllerLandingStatus__Sequence * px4_msgs__msg__PositionControllerLandingStatus__Sequence__create(size_t size); /// Destroy array of msg/PositionControllerLandingStatus messages. /** * It calls * px4_msgs__msg__PositionControllerLandingStatus__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__PositionControllerLandingStatus__Sequence__destroy(px4_msgs__msg__PositionControllerLandingStatus__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__POSITION_CONTROLLER_LANDING_STATUS__FUNCTIONS_H_ <file_sep>/install/px4_msgs/lib/python3.6/site-packages/px4_msgs/__init__.py /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_msgs/rosidl_generator_py/px4_msgs/__init__.py<file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/gimbal_manager_status__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/GimbalManagerStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/gimbal_manager_status__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__GimbalManagerStatus__init(px4_msgs__msg__GimbalManagerStatus * msg) { if (!msg) { return false; } // timestamp // flags // gimbal_device_id // primary_control_sysid // primary_control_compid // secondary_control_sysid // secondary_control_compid return true; } void px4_msgs__msg__GimbalManagerStatus__fini(px4_msgs__msg__GimbalManagerStatus * msg) { if (!msg) { return; } // timestamp // flags // gimbal_device_id // primary_control_sysid // primary_control_compid // secondary_control_sysid // secondary_control_compid } px4_msgs__msg__GimbalManagerStatus * px4_msgs__msg__GimbalManagerStatus__create() { px4_msgs__msg__GimbalManagerStatus * msg = (px4_msgs__msg__GimbalManagerStatus *)malloc(sizeof(px4_msgs__msg__GimbalManagerStatus)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__GimbalManagerStatus)); bool success = px4_msgs__msg__GimbalManagerStatus__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__GimbalManagerStatus__destroy(px4_msgs__msg__GimbalManagerStatus * msg) { if (msg) { px4_msgs__msg__GimbalManagerStatus__fini(msg); } free(msg); } bool px4_msgs__msg__GimbalManagerStatus__Sequence__init(px4_msgs__msg__GimbalManagerStatus__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__GimbalManagerStatus * data = NULL; if (size) { data = (px4_msgs__msg__GimbalManagerStatus *)calloc(size, sizeof(px4_msgs__msg__GimbalManagerStatus)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__GimbalManagerStatus__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__GimbalManagerStatus__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__GimbalManagerStatus__Sequence__fini(px4_msgs__msg__GimbalManagerStatus__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__GimbalManagerStatus__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__GimbalManagerStatus__Sequence * px4_msgs__msg__GimbalManagerStatus__Sequence__create(size_t size) { px4_msgs__msg__GimbalManagerStatus__Sequence * array = (px4_msgs__msg__GimbalManagerStatus__Sequence *)malloc(sizeof(px4_msgs__msg__GimbalManagerStatus__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__GimbalManagerStatus__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__GimbalManagerStatus__Sequence__destroy(px4_msgs__msg__GimbalManagerStatus__Sequence * array) { if (array) { px4_msgs__msg__GimbalManagerStatus__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleAngularVelocityGroundtruth.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ANGULAR_VELOCITY_GROUNDTRUTH_H_ #define PX4_MSGS__MSG__VEHICLE_ANGULAR_VELOCITY_GROUNDTRUTH_H_ #include "px4_msgs/msg/vehicle_angular_velocity_groundtruth__struct.h" #include "px4_msgs/msg/vehicle_angular_velocity_groundtruth__functions.h" #include "px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_ANGULAR_VELOCITY_GROUNDTRUTH_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/orb_test_medium.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORB_TEST_MEDIUM_HPP_ #define PX4_MSGS__MSG__ORB_TEST_MEDIUM_HPP_ #include "px4_msgs/msg/orb_test_medium__struct.hpp" #include "px4_msgs/msg/orb_test_medium__traits.hpp" #endif // PX4_MSGS__MSG__ORB_TEST_MEDIUM_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/wind.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/Wind.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__WIND_H_ #define PX4_MSGS__MSG__WIND_H_ #include "px4_msgs/msg/wind__struct.h" #include "px4_msgs/msg/wind__functions.h" #include "px4_msgs/msg/wind__type_support.h" #endif // PX4_MSGS__MSG__WIND_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/gimbal_manager_status__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/GimbalManagerStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GIMBAL_MANAGER_STATUS__FUNCTIONS_H_ #define PX4_MSGS__MSG__GIMBAL_MANAGER_STATUS__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/gimbal_manager_status__struct.h" /// Initialize msg/GimbalManagerStatus message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__GimbalManagerStatus * )) before or use * px4_msgs__msg__GimbalManagerStatus__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__GimbalManagerStatus__init(px4_msgs__msg__GimbalManagerStatus * msg); /// Finalize msg/GimbalManagerStatus message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__GimbalManagerStatus__fini(px4_msgs__msg__GimbalManagerStatus * msg); /// Create msg/GimbalManagerStatus message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__GimbalManagerStatus__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__GimbalManagerStatus * px4_msgs__msg__GimbalManagerStatus__create(); /// Destroy msg/GimbalManagerStatus message. /** * It calls * px4_msgs__msg__GimbalManagerStatus__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__GimbalManagerStatus__destroy(px4_msgs__msg__GimbalManagerStatus * msg); /// Initialize array of msg/GimbalManagerStatus messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__GimbalManagerStatus__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__GimbalManagerStatus__Sequence__init(px4_msgs__msg__GimbalManagerStatus__Sequence * array, size_t size); /// Finalize array of msg/GimbalManagerStatus messages. /** * It calls * px4_msgs__msg__GimbalManagerStatus__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__GimbalManagerStatus__Sequence__fini(px4_msgs__msg__GimbalManagerStatus__Sequence * array); /// Create array of msg/GimbalManagerStatus messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__GimbalManagerStatus__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__GimbalManagerStatus__Sequence * px4_msgs__msg__GimbalManagerStatus__Sequence__create(size_t size); /// Destroy array of msg/GimbalManagerStatus messages. /** * It calls * px4_msgs__msg__GimbalManagerStatus__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__GimbalManagerStatus__Sequence__destroy(px4_msgs__msg__GimbalManagerStatus__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__GIMBAL_MANAGER_STATUS__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/collision_report.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__COLLISION_REPORT_HPP_ #define PX4_MSGS__MSG__COLLISION_REPORT_HPP_ #include "px4_msgs/msg/collision_report__struct.hpp" #include "px4_msgs/msg/collision_report__traits.hpp" #endif // PX4_MSGS__MSG__COLLISION_REPORT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_correction__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/SensorCorrection.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/sensor_correction__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void SensorCorrection_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::SensorCorrection(_init); } void SensorCorrection_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::SensorCorrection *>(message_memory); typed_message->~SensorCorrection(); } size_t size_function__SensorCorrection__gyro_device_ids(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__SensorCorrection__gyro_device_ids(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint32_t, 4> *>(untyped_member); return &member[index]; } void * get_function__SensorCorrection__gyro_device_ids(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint32_t, 4> *>(untyped_member); return &member[index]; } size_t size_function__SensorCorrection__gyro_offset_0(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__SensorCorrection__gyro_offset_0(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__SensorCorrection__gyro_offset_0(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } size_t size_function__SensorCorrection__gyro_offset_1(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__SensorCorrection__gyro_offset_1(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__SensorCorrection__gyro_offset_1(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } size_t size_function__SensorCorrection__gyro_offset_2(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__SensorCorrection__gyro_offset_2(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__SensorCorrection__gyro_offset_2(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } size_t size_function__SensorCorrection__gyro_offset_3(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__SensorCorrection__gyro_offset_3(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__SensorCorrection__gyro_offset_3(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } size_t size_function__SensorCorrection__accel_device_ids(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__SensorCorrection__accel_device_ids(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint32_t, 4> *>(untyped_member); return &member[index]; } void * get_function__SensorCorrection__accel_device_ids(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint32_t, 4> *>(untyped_member); return &member[index]; } size_t size_function__SensorCorrection__accel_offset_0(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__SensorCorrection__accel_offset_0(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__SensorCorrection__accel_offset_0(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } size_t size_function__SensorCorrection__accel_offset_1(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__SensorCorrection__accel_offset_1(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__SensorCorrection__accel_offset_1(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } size_t size_function__SensorCorrection__accel_offset_2(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__SensorCorrection__accel_offset_2(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__SensorCorrection__accel_offset_2(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } size_t size_function__SensorCorrection__accel_offset_3(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__SensorCorrection__accel_offset_3(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__SensorCorrection__accel_offset_3(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } size_t size_function__SensorCorrection__baro_device_ids(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__SensorCorrection__baro_device_ids(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint32_t, 4> *>(untyped_member); return &member[index]; } void * get_function__SensorCorrection__baro_device_ids(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint32_t, 4> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember SensorCorrection_message_member_array[16] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorCorrection, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "gyro_device_ids", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorCorrection, gyro_device_ids), // bytes offset in struct nullptr, // default value size_function__SensorCorrection__gyro_device_ids, // size() function pointer get_const_function__SensorCorrection__gyro_device_ids, // get_const(index) function pointer get_function__SensorCorrection__gyro_device_ids, // get(index) function pointer nullptr // resize(index) function pointer }, { "gyro_offset_0", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorCorrection, gyro_offset_0), // bytes offset in struct nullptr, // default value size_function__SensorCorrection__gyro_offset_0, // size() function pointer get_const_function__SensorCorrection__gyro_offset_0, // get_const(index) function pointer get_function__SensorCorrection__gyro_offset_0, // get(index) function pointer nullptr // resize(index) function pointer }, { "gyro_offset_1", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorCorrection, gyro_offset_1), // bytes offset in struct nullptr, // default value size_function__SensorCorrection__gyro_offset_1, // size() function pointer get_const_function__SensorCorrection__gyro_offset_1, // get_const(index) function pointer get_function__SensorCorrection__gyro_offset_1, // get(index) function pointer nullptr // resize(index) function pointer }, { "gyro_offset_2", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorCorrection, gyro_offset_2), // bytes offset in struct nullptr, // default value size_function__SensorCorrection__gyro_offset_2, // size() function pointer get_const_function__SensorCorrection__gyro_offset_2, // get_const(index) function pointer get_function__SensorCorrection__gyro_offset_2, // get(index) function pointer nullptr // resize(index) function pointer }, { "gyro_offset_3", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorCorrection, gyro_offset_3), // bytes offset in struct nullptr, // default value size_function__SensorCorrection__gyro_offset_3, // size() function pointer get_const_function__SensorCorrection__gyro_offset_3, // get_const(index) function pointer get_function__SensorCorrection__gyro_offset_3, // get(index) function pointer nullptr // resize(index) function pointer }, { "accel_device_ids", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorCorrection, accel_device_ids), // bytes offset in struct nullptr, // default value size_function__SensorCorrection__accel_device_ids, // size() function pointer get_const_function__SensorCorrection__accel_device_ids, // get_const(index) function pointer get_function__SensorCorrection__accel_device_ids, // get(index) function pointer nullptr // resize(index) function pointer }, { "accel_offset_0", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorCorrection, accel_offset_0), // bytes offset in struct nullptr, // default value size_function__SensorCorrection__accel_offset_0, // size() function pointer get_const_function__SensorCorrection__accel_offset_0, // get_const(index) function pointer get_function__SensorCorrection__accel_offset_0, // get(index) function pointer nullptr // resize(index) function pointer }, { "accel_offset_1", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorCorrection, accel_offset_1), // bytes offset in struct nullptr, // default value size_function__SensorCorrection__accel_offset_1, // size() function pointer get_const_function__SensorCorrection__accel_offset_1, // get_const(index) function pointer get_function__SensorCorrection__accel_offset_1, // get(index) function pointer nullptr // resize(index) function pointer }, { "accel_offset_2", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorCorrection, accel_offset_2), // bytes offset in struct nullptr, // default value size_function__SensorCorrection__accel_offset_2, // size() function pointer get_const_function__SensorCorrection__accel_offset_2, // get_const(index) function pointer get_function__SensorCorrection__accel_offset_2, // get(index) function pointer nullptr // resize(index) function pointer }, { "accel_offset_3", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorCorrection, accel_offset_3), // bytes offset in struct nullptr, // default value size_function__SensorCorrection__accel_offset_3, // size() function pointer get_const_function__SensorCorrection__accel_offset_3, // get_const(index) function pointer get_function__SensorCorrection__accel_offset_3, // get(index) function pointer nullptr // resize(index) function pointer }, { "baro_device_ids", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorCorrection, baro_device_ids), // bytes offset in struct nullptr, // default value size_function__SensorCorrection__baro_device_ids, // size() function pointer get_const_function__SensorCorrection__baro_device_ids, // get_const(index) function pointer get_function__SensorCorrection__baro_device_ids, // get(index) function pointer nullptr // resize(index) function pointer }, { "baro_offset_0", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorCorrection, baro_offset_0), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "baro_offset_1", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorCorrection, baro_offset_1), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "baro_offset_2", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorCorrection, baro_offset_2), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "baro_offset_3", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorCorrection, baro_offset_3), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers SensorCorrection_message_members = { "px4_msgs::msg", // message namespace "SensorCorrection", // message name 16, // number of fields sizeof(px4_msgs::msg::SensorCorrection), SensorCorrection_message_member_array, // message members SensorCorrection_init_function, // function to initialize message memory (memory has to be allocated) SensorCorrection_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t SensorCorrection_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &SensorCorrection_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::SensorCorrection>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::SensorCorrection_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, SensorCorrection)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::SensorCorrection_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/sensors_status_imu__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/SensorsStatusImu.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSORS_STATUS_IMU__STRUCT_HPP_ #define PX4_MSGS__MSG__SENSORS_STATUS_IMU__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__SensorsStatusImu __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__SensorsStatusImu __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct SensorsStatusImu_ { using Type = SensorsStatusImu_<ContainerAllocator>; explicit SensorsStatusImu_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->accel_device_id_primary = 0ul; std::fill<typename std::array<uint32_t, 4>::iterator, uint32_t>(this->accel_device_ids.begin(), this->accel_device_ids.end(), 0ul); std::fill<typename std::array<float, 4>::iterator, float>(this->accel_inconsistency_m_s_s.begin(), this->accel_inconsistency_m_s_s.end(), 0.0f); std::fill<typename std::array<bool, 4>::iterator, bool>(this->accel_healthy.begin(), this->accel_healthy.end(), false); this->gyro_device_id_primary = 0ul; std::fill<typename std::array<uint32_t, 4>::iterator, uint32_t>(this->gyro_device_ids.begin(), this->gyro_device_ids.end(), 0ul); std::fill<typename std::array<float, 4>::iterator, float>(this->gyro_inconsistency_rad_s.begin(), this->gyro_inconsistency_rad_s.end(), 0.0f); std::fill<typename std::array<bool, 4>::iterator, bool>(this->gyro_healthy.begin(), this->gyro_healthy.end(), false); } } explicit SensorsStatusImu_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : accel_device_ids(_alloc), accel_inconsistency_m_s_s(_alloc), accel_healthy(_alloc), gyro_device_ids(_alloc), gyro_inconsistency_rad_s(_alloc), gyro_healthy(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->accel_device_id_primary = 0ul; std::fill<typename std::array<uint32_t, 4>::iterator, uint32_t>(this->accel_device_ids.begin(), this->accel_device_ids.end(), 0ul); std::fill<typename std::array<float, 4>::iterator, float>(this->accel_inconsistency_m_s_s.begin(), this->accel_inconsistency_m_s_s.end(), 0.0f); std::fill<typename std::array<bool, 4>::iterator, bool>(this->accel_healthy.begin(), this->accel_healthy.end(), false); this->gyro_device_id_primary = 0ul; std::fill<typename std::array<uint32_t, 4>::iterator, uint32_t>(this->gyro_device_ids.begin(), this->gyro_device_ids.end(), 0ul); std::fill<typename std::array<float, 4>::iterator, float>(this->gyro_inconsistency_rad_s.begin(), this->gyro_inconsistency_rad_s.end(), 0.0f); std::fill<typename std::array<bool, 4>::iterator, bool>(this->gyro_healthy.begin(), this->gyro_healthy.end(), false); } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _accel_device_id_primary_type = uint32_t; _accel_device_id_primary_type accel_device_id_primary; using _accel_device_ids_type = std::array<uint32_t, 4>; _accel_device_ids_type accel_device_ids; using _accel_inconsistency_m_s_s_type = std::array<float, 4>; _accel_inconsistency_m_s_s_type accel_inconsistency_m_s_s; using _accel_healthy_type = std::array<bool, 4>; _accel_healthy_type accel_healthy; using _gyro_device_id_primary_type = uint32_t; _gyro_device_id_primary_type gyro_device_id_primary; using _gyro_device_ids_type = std::array<uint32_t, 4>; _gyro_device_ids_type gyro_device_ids; using _gyro_inconsistency_rad_s_type = std::array<float, 4>; _gyro_inconsistency_rad_s_type gyro_inconsistency_rad_s; using _gyro_healthy_type = std::array<bool, 4>; _gyro_healthy_type gyro_healthy; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__accel_device_id_primary( const uint32_t & _arg) { this->accel_device_id_primary = _arg; return *this; } Type & set__accel_device_ids( const std::array<uint32_t, 4> & _arg) { this->accel_device_ids = _arg; return *this; } Type & set__accel_inconsistency_m_s_s( const std::array<float, 4> & _arg) { this->accel_inconsistency_m_s_s = _arg; return *this; } Type & set__accel_healthy( const std::array<bool, 4> & _arg) { this->accel_healthy = _arg; return *this; } Type & set__gyro_device_id_primary( const uint32_t & _arg) { this->gyro_device_id_primary = _arg; return *this; } Type & set__gyro_device_ids( const std::array<uint32_t, 4> & _arg) { this->gyro_device_ids = _arg; return *this; } Type & set__gyro_inconsistency_rad_s( const std::array<float, 4> & _arg) { this->gyro_inconsistency_rad_s = _arg; return *this; } Type & set__gyro_healthy( const std::array<bool, 4> & _arg) { this->gyro_healthy = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::SensorsStatusImu_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::SensorsStatusImu_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::SensorsStatusImu_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::SensorsStatusImu_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::SensorsStatusImu_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::SensorsStatusImu_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::SensorsStatusImu_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::SensorsStatusImu_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::SensorsStatusImu_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::SensorsStatusImu_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__SensorsStatusImu std::shared_ptr<px4_msgs::msg::SensorsStatusImu_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__SensorsStatusImu std::shared_ptr<px4_msgs::msg::SensorsStatusImu_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const SensorsStatusImu_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->accel_device_id_primary != other.accel_device_id_primary) { return false; } if (this->accel_device_ids != other.accel_device_ids) { return false; } if (this->accel_inconsistency_m_s_s != other.accel_inconsistency_m_s_s) { return false; } if (this->accel_healthy != other.accel_healthy) { return false; } if (this->gyro_device_id_primary != other.gyro_device_id_primary) { return false; } if (this->gyro_device_ids != other.gyro_device_ids) { return false; } if (this->gyro_inconsistency_rad_s != other.gyro_inconsistency_rad_s) { return false; } if (this->gyro_healthy != other.gyro_healthy) { return false; } return true; } bool operator!=(const SensorsStatusImu_ & other) const { return !this->operator==(other); } }; // struct SensorsStatusImu_ // alias to use template instance with default allocator using SensorsStatusImu = px4_msgs::msg::SensorsStatusImu_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__SENSORS_STATUS_IMU__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/ping.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/Ping.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__PING_H_ #define PX4_MSGS__MSG__PING_H_ #include "px4_msgs/msg/ping__struct.h" #include "px4_msgs/msg/ping__functions.h" #include "px4_msgs/msg/ping__type_support.h" #endif // PX4_MSGS__MSG__PING_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/navigator_mission_item__rosidl_typesupport_fastrtps_c.h // generated from rosidl_typesupport_fastrtps_c/resource/idl__rosidl_typesupport_fastrtps_c.h.em // with input from px4_msgs:msg/NavigatorMissionItem.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__NAVIGATOR_MISSION_ITEM__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #define PX4_MSGS__MSG__NAVIGATOR_MISSION_ITEM__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #include <stddef.h> #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__NavigatorMissionItem( const void * untyped_ros_message, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__NavigatorMissionItem( bool & full_bounded, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, NavigatorMissionItem)(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__NAVIGATOR_MISSION_ITEM__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_vehicle_command_ack_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/VehicleCommandAck.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/vehicle_command_ack__struct.h" #include "px4_msgs/msg/vehicle_command_ack__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__vehicle_command_ack__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[52]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._vehicle_command_ack.VehicleCommandAck", full_classname_dest, 51) == 0); } px4_msgs__msg__VehicleCommandAck * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // command PyObject * field = PyObject_GetAttrString(_pymsg, "command"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->command = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // result PyObject * field = PyObject_GetAttrString(_pymsg, "result"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->result = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // from_external PyObject * field = PyObject_GetAttrString(_pymsg, "from_external"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->from_external = (Py_True == field); Py_DECREF(field); } { // result_param1 PyObject * field = PyObject_GetAttrString(_pymsg, "result_param1"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->result_param1 = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // result_param2 PyObject * field = PyObject_GetAttrString(_pymsg, "result_param2"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->result_param2 = (int32_t)PyLong_AsLong(field); Py_DECREF(field); } { // target_system PyObject * field = PyObject_GetAttrString(_pymsg, "target_system"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->target_system = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // target_component PyObject * field = PyObject_GetAttrString(_pymsg, "target_component"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->target_component = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__vehicle_command_ack__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of VehicleCommandAck */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._vehicle_command_ack"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "VehicleCommandAck"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__VehicleCommandAck * ros_message = (px4_msgs__msg__VehicleCommandAck *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // command PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->command); { int rc = PyObject_SetAttrString(_pymessage, "command", field); Py_DECREF(field); if (rc) { return NULL; } } } { // result PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->result); { int rc = PyObject_SetAttrString(_pymessage, "result", field); Py_DECREF(field); if (rc) { return NULL; } } } { // from_external PyObject * field = NULL; field = PyBool_FromLong(ros_message->from_external ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "from_external", field); Py_DECREF(field); if (rc) { return NULL; } } } { // result_param1 PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->result_param1); { int rc = PyObject_SetAttrString(_pymessage, "result_param1", field); Py_DECREF(field); if (rc) { return NULL; } } } { // result_param2 PyObject * field = NULL; field = PyLong_FromLong(ros_message->result_param2); { int rc = PyObject_SetAttrString(_pymessage, "result_param2", field); Py_DECREF(field); if (rc) { return NULL; } } } { // target_system PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->target_system); { int rc = PyObject_SetAttrString(_pymessage, "target_system", field); Py_DECREF(field); if (rc) { return NULL; } } } { // target_component PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->target_component); { int rc = PyObject_SetAttrString(_pymessage, "target_component", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_angular_acceleration.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ANGULAR_ACCELERATION_HPP_ #define PX4_MSGS__MSG__VEHICLE_ANGULAR_ACCELERATION_HPP_ #include "px4_msgs/msg/vehicle_angular_acceleration__struct.hpp" #include "px4_msgs/msg/vehicle_angular_acceleration__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_ANGULAR_ACCELERATION_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/offboard_control_mode__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/OffboardControlMode.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/offboard_control_mode__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void OffboardControlMode_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::OffboardControlMode(_init); } void OffboardControlMode_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::OffboardControlMode *>(message_memory); typed_message->~OffboardControlMode(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember OffboardControlMode_message_member_array[6] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::OffboardControlMode, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "position", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::OffboardControlMode, position), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "velocity", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::OffboardControlMode, velocity), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "acceleration", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::OffboardControlMode, acceleration), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "attitude", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::OffboardControlMode, attitude), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "body_rate", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::OffboardControlMode, body_rate), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers OffboardControlMode_message_members = { "px4_msgs::msg", // message namespace "OffboardControlMode", // message name 6, // number of fields sizeof(px4_msgs::msg::OffboardControlMode), OffboardControlMode_message_member_array, // message members OffboardControlMode_init_function, // function to initialize message memory (memory has to be allocated) OffboardControlMode_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t OffboardControlMode_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &OffboardControlMode_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::OffboardControlMode>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::OffboardControlMode_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, OffboardControlMode)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::OffboardControlMode_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/position_setpoint_triplet__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/PositionSetpointTriplet.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__POSITION_SETPOINT_TRIPLET__STRUCT_HPP_ #define PX4_MSGS__MSG__POSITION_SETPOINT_TRIPLET__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> // Include directives for member types // Member 'previous' // Member 'current' // Member 'next' #include "px4_msgs/msg/position_setpoint__struct.hpp" #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__PositionSetpointTriplet __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__PositionSetpointTriplet __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct PositionSetpointTriplet_ { using Type = PositionSetpointTriplet_<ContainerAllocator>; explicit PositionSetpointTriplet_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : previous(_init), current(_init), next(_init) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; } } explicit PositionSetpointTriplet_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : previous(_alloc, _init), current(_alloc, _init), next(_alloc, _init) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _previous_type = px4_msgs::msg::PositionSetpoint_<ContainerAllocator>; _previous_type previous; using _current_type = px4_msgs::msg::PositionSetpoint_<ContainerAllocator>; _current_type current; using _next_type = px4_msgs::msg::PositionSetpoint_<ContainerAllocator>; _next_type next; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__previous( const px4_msgs::msg::PositionSetpoint_<ContainerAllocator> & _arg) { this->previous = _arg; return *this; } Type & set__current( const px4_msgs::msg::PositionSetpoint_<ContainerAllocator> & _arg) { this->current = _arg; return *this; } Type & set__next( const px4_msgs::msg::PositionSetpoint_<ContainerAllocator> & _arg) { this->next = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::PositionSetpointTriplet_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::PositionSetpointTriplet_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::PositionSetpointTriplet_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::PositionSetpointTriplet_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::PositionSetpointTriplet_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::PositionSetpointTriplet_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::PositionSetpointTriplet_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::PositionSetpointTriplet_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::PositionSetpointTriplet_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::PositionSetpointTriplet_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__PositionSetpointTriplet std::shared_ptr<px4_msgs::msg::PositionSetpointTriplet_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__PositionSetpointTriplet std::shared_ptr<px4_msgs::msg::PositionSetpointTriplet_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const PositionSetpointTriplet_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->previous != other.previous) { return false; } if (this->current != other.current) { return false; } if (this->next != other.next) { return false; } return true; } bool operator!=(const PositionSetpointTriplet_ & other) const { return !this->operator==(other); } }; // struct PositionSetpointTriplet_ // alias to use template instance with default allocator using PositionSetpointTriplet = px4_msgs::msg::PositionSetpointTriplet_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__POSITION_SETPOINT_TRIPLET__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_visual_odometry__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleVisualOdometry.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_VISUAL_ODOMETRY__STRUCT_H_ #define PX4_MSGS__MSG__VEHICLE_VISUAL_ODOMETRY__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'COVARIANCE_MATRIX_X_VARIANCE'. enum { px4_msgs__msg__VehicleVisualOdometry__COVARIANCE_MATRIX_X_VARIANCE = 0 }; /// Constant 'COVARIANCE_MATRIX_Y_VARIANCE'. enum { px4_msgs__msg__VehicleVisualOdometry__COVARIANCE_MATRIX_Y_VARIANCE = 6 }; /// Constant 'COVARIANCE_MATRIX_Z_VARIANCE'. enum { px4_msgs__msg__VehicleVisualOdometry__COVARIANCE_MATRIX_Z_VARIANCE = 11 }; /// Constant 'COVARIANCE_MATRIX_ROLL_VARIANCE'. enum { px4_msgs__msg__VehicleVisualOdometry__COVARIANCE_MATRIX_ROLL_VARIANCE = 15 }; /// Constant 'COVARIANCE_MATRIX_PITCH_VARIANCE'. enum { px4_msgs__msg__VehicleVisualOdometry__COVARIANCE_MATRIX_PITCH_VARIANCE = 18 }; /// Constant 'COVARIANCE_MATRIX_YAW_VARIANCE'. enum { px4_msgs__msg__VehicleVisualOdometry__COVARIANCE_MATRIX_YAW_VARIANCE = 20 }; /// Constant 'COVARIANCE_MATRIX_VX_VARIANCE'. enum { px4_msgs__msg__VehicleVisualOdometry__COVARIANCE_MATRIX_VX_VARIANCE = 0 }; /// Constant 'COVARIANCE_MATRIX_VY_VARIANCE'. enum { px4_msgs__msg__VehicleVisualOdometry__COVARIANCE_MATRIX_VY_VARIANCE = 6 }; /// Constant 'COVARIANCE_MATRIX_VZ_VARIANCE'. enum { px4_msgs__msg__VehicleVisualOdometry__COVARIANCE_MATRIX_VZ_VARIANCE = 11 }; /// Constant 'COVARIANCE_MATRIX_ROLLRATE_VARIANCE'. enum { px4_msgs__msg__VehicleVisualOdometry__COVARIANCE_MATRIX_ROLLRATE_VARIANCE = 15 }; /// Constant 'COVARIANCE_MATRIX_PITCHRATE_VARIANCE'. enum { px4_msgs__msg__VehicleVisualOdometry__COVARIANCE_MATRIX_PITCHRATE_VARIANCE = 18 }; /// Constant 'COVARIANCE_MATRIX_YAWRATE_VARIANCE'. enum { px4_msgs__msg__VehicleVisualOdometry__COVARIANCE_MATRIX_YAWRATE_VARIANCE = 20 }; /// Constant 'LOCAL_FRAME_NED'. enum { px4_msgs__msg__VehicleVisualOdometry__LOCAL_FRAME_NED = 0 }; /// Constant 'LOCAL_FRAME_FRD'. enum { px4_msgs__msg__VehicleVisualOdometry__LOCAL_FRAME_FRD = 1 }; /// Constant 'LOCAL_FRAME_OTHER'. enum { px4_msgs__msg__VehicleVisualOdometry__LOCAL_FRAME_OTHER = 2 }; /// Constant 'BODY_FRAME_FRD'. enum { px4_msgs__msg__VehicleVisualOdometry__BODY_FRAME_FRD = 3 }; // Struct defined in msg/VehicleVisualOdometry in the package px4_msgs. typedef struct px4_msgs__msg__VehicleVisualOdometry { uint64_t timestamp; uint64_t timestamp_sample; uint8_t local_frame; float x; float y; float z; float q[4]; float q_offset[4]; float pose_covariance[21]; uint8_t velocity_frame; float vx; float vy; float vz; float rollspeed; float pitchspeed; float yawspeed; float velocity_covariance[21]; } px4_msgs__msg__VehicleVisualOdometry; // Struct for a sequence of px4_msgs__msg__VehicleVisualOdometry. typedef struct px4_msgs__msg__VehicleVisualOdometry__Sequence { px4_msgs__msg__VehicleVisualOdometry * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__VehicleVisualOdometry__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_VISUAL_ODOMETRY__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_estimator_event_flags_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/EstimatorEventFlags.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/estimator_event_flags__struct.h" #include "px4_msgs/msg/estimator_event_flags__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__estimator_event_flags__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[56]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._estimator_event_flags.EstimatorEventFlags", full_classname_dest, 55) == 0); } px4_msgs__msg__EstimatorEventFlags * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // timestamp_sample PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp_sample"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp_sample = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // information_event_changes PyObject * field = PyObject_GetAttrString(_pymsg, "information_event_changes"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->information_event_changes = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // gps_checks_passed PyObject * field = PyObject_GetAttrString(_pymsg, "gps_checks_passed"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->gps_checks_passed = (Py_True == field); Py_DECREF(field); } { // reset_vel_to_gps PyObject * field = PyObject_GetAttrString(_pymsg, "reset_vel_to_gps"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->reset_vel_to_gps = (Py_True == field); Py_DECREF(field); } { // reset_vel_to_flow PyObject * field = PyObject_GetAttrString(_pymsg, "reset_vel_to_flow"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->reset_vel_to_flow = (Py_True == field); Py_DECREF(field); } { // reset_vel_to_vision PyObject * field = PyObject_GetAttrString(_pymsg, "reset_vel_to_vision"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->reset_vel_to_vision = (Py_True == field); Py_DECREF(field); } { // reset_vel_to_zero PyObject * field = PyObject_GetAttrString(_pymsg, "reset_vel_to_zero"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->reset_vel_to_zero = (Py_True == field); Py_DECREF(field); } { // reset_pos_to_last_known PyObject * field = PyObject_GetAttrString(_pymsg, "reset_pos_to_last_known"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->reset_pos_to_last_known = (Py_True == field); Py_DECREF(field); } { // reset_pos_to_gps PyObject * field = PyObject_GetAttrString(_pymsg, "reset_pos_to_gps"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->reset_pos_to_gps = (Py_True == field); Py_DECREF(field); } { // reset_pos_to_vision PyObject * field = PyObject_GetAttrString(_pymsg, "reset_pos_to_vision"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->reset_pos_to_vision = (Py_True == field); Py_DECREF(field); } { // starting_gps_fusion PyObject * field = PyObject_GetAttrString(_pymsg, "starting_gps_fusion"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->starting_gps_fusion = (Py_True == field); Py_DECREF(field); } { // starting_vision_pos_fusion PyObject * field = PyObject_GetAttrString(_pymsg, "starting_vision_pos_fusion"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->starting_vision_pos_fusion = (Py_True == field); Py_DECREF(field); } { // starting_vision_vel_fusion PyObject * field = PyObject_GetAttrString(_pymsg, "starting_vision_vel_fusion"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->starting_vision_vel_fusion = (Py_True == field); Py_DECREF(field); } { // starting_vision_yaw_fusion PyObject * field = PyObject_GetAttrString(_pymsg, "starting_vision_yaw_fusion"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->starting_vision_yaw_fusion = (Py_True == field); Py_DECREF(field); } { // yaw_aligned_to_imu_gps PyObject * field = PyObject_GetAttrString(_pymsg, "yaw_aligned_to_imu_gps"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->yaw_aligned_to_imu_gps = (Py_True == field); Py_DECREF(field); } { // warning_event_changes PyObject * field = PyObject_GetAttrString(_pymsg, "warning_event_changes"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->warning_event_changes = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // gps_quality_poor PyObject * field = PyObject_GetAttrString(_pymsg, "gps_quality_poor"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->gps_quality_poor = (Py_True == field); Py_DECREF(field); } { // gps_fusion_timout PyObject * field = PyObject_GetAttrString(_pymsg, "gps_fusion_timout"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->gps_fusion_timout = (Py_True == field); Py_DECREF(field); } { // gps_data_stopped PyObject * field = PyObject_GetAttrString(_pymsg, "gps_data_stopped"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->gps_data_stopped = (Py_True == field); Py_DECREF(field); } { // gps_data_stopped_using_alternate PyObject * field = PyObject_GetAttrString(_pymsg, "gps_data_stopped_using_alternate"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->gps_data_stopped_using_alternate = (Py_True == field); Py_DECREF(field); } { // height_sensor_timeout PyObject * field = PyObject_GetAttrString(_pymsg, "height_sensor_timeout"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->height_sensor_timeout = (Py_True == field); Py_DECREF(field); } { // stopping_navigation PyObject * field = PyObject_GetAttrString(_pymsg, "stopping_navigation"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->stopping_navigation = (Py_True == field); Py_DECREF(field); } { // invalid_accel_bias_cov_reset PyObject * field = PyObject_GetAttrString(_pymsg, "invalid_accel_bias_cov_reset"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->invalid_accel_bias_cov_reset = (Py_True == field); Py_DECREF(field); } { // bad_yaw_using_gps_course PyObject * field = PyObject_GetAttrString(_pymsg, "bad_yaw_using_gps_course"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->bad_yaw_using_gps_course = (Py_True == field); Py_DECREF(field); } { // stopping_mag_use PyObject * field = PyObject_GetAttrString(_pymsg, "stopping_mag_use"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->stopping_mag_use = (Py_True == field); Py_DECREF(field); } { // vision_data_stopped PyObject * field = PyObject_GetAttrString(_pymsg, "vision_data_stopped"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->vision_data_stopped = (Py_True == field); Py_DECREF(field); } { // emergency_yaw_reset_mag_stopped PyObject * field = PyObject_GetAttrString(_pymsg, "emergency_yaw_reset_mag_stopped"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->emergency_yaw_reset_mag_stopped = (Py_True == field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__estimator_event_flags__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of EstimatorEventFlags */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._estimator_event_flags"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "EstimatorEventFlags"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__EstimatorEventFlags * ros_message = (px4_msgs__msg__EstimatorEventFlags *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // timestamp_sample PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp_sample); { int rc = PyObject_SetAttrString(_pymessage, "timestamp_sample", field); Py_DECREF(field); if (rc) { return NULL; } } } { // information_event_changes PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->information_event_changes); { int rc = PyObject_SetAttrString(_pymessage, "information_event_changes", field); Py_DECREF(field); if (rc) { return NULL; } } } { // gps_checks_passed PyObject * field = NULL; field = PyBool_FromLong(ros_message->gps_checks_passed ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "gps_checks_passed", field); Py_DECREF(field); if (rc) { return NULL; } } } { // reset_vel_to_gps PyObject * field = NULL; field = PyBool_FromLong(ros_message->reset_vel_to_gps ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "reset_vel_to_gps", field); Py_DECREF(field); if (rc) { return NULL; } } } { // reset_vel_to_flow PyObject * field = NULL; field = PyBool_FromLong(ros_message->reset_vel_to_flow ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "reset_vel_to_flow", field); Py_DECREF(field); if (rc) { return NULL; } } } { // reset_vel_to_vision PyObject * field = NULL; field = PyBool_FromLong(ros_message->reset_vel_to_vision ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "reset_vel_to_vision", field); Py_DECREF(field); if (rc) { return NULL; } } } { // reset_vel_to_zero PyObject * field = NULL; field = PyBool_FromLong(ros_message->reset_vel_to_zero ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "reset_vel_to_zero", field); Py_DECREF(field); if (rc) { return NULL; } } } { // reset_pos_to_last_known PyObject * field = NULL; field = PyBool_FromLong(ros_message->reset_pos_to_last_known ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "reset_pos_to_last_known", field); Py_DECREF(field); if (rc) { return NULL; } } } { // reset_pos_to_gps PyObject * field = NULL; field = PyBool_FromLong(ros_message->reset_pos_to_gps ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "reset_pos_to_gps", field); Py_DECREF(field); if (rc) { return NULL; } } } { // reset_pos_to_vision PyObject * field = NULL; field = PyBool_FromLong(ros_message->reset_pos_to_vision ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "reset_pos_to_vision", field); Py_DECREF(field); if (rc) { return NULL; } } } { // starting_gps_fusion PyObject * field = NULL; field = PyBool_FromLong(ros_message->starting_gps_fusion ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "starting_gps_fusion", field); Py_DECREF(field); if (rc) { return NULL; } } } { // starting_vision_pos_fusion PyObject * field = NULL; field = PyBool_FromLong(ros_message->starting_vision_pos_fusion ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "starting_vision_pos_fusion", field); Py_DECREF(field); if (rc) { return NULL; } } } { // starting_vision_vel_fusion PyObject * field = NULL; field = PyBool_FromLong(ros_message->starting_vision_vel_fusion ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "starting_vision_vel_fusion", field); Py_DECREF(field); if (rc) { return NULL; } } } { // starting_vision_yaw_fusion PyObject * field = NULL; field = PyBool_FromLong(ros_message->starting_vision_yaw_fusion ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "starting_vision_yaw_fusion", field); Py_DECREF(field); if (rc) { return NULL; } } } { // yaw_aligned_to_imu_gps PyObject * field = NULL; field = PyBool_FromLong(ros_message->yaw_aligned_to_imu_gps ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "yaw_aligned_to_imu_gps", field); Py_DECREF(field); if (rc) { return NULL; } } } { // warning_event_changes PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->warning_event_changes); { int rc = PyObject_SetAttrString(_pymessage, "warning_event_changes", field); Py_DECREF(field); if (rc) { return NULL; } } } { // gps_quality_poor PyObject * field = NULL; field = PyBool_FromLong(ros_message->gps_quality_poor ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "gps_quality_poor", field); Py_DECREF(field); if (rc) { return NULL; } } } { // gps_fusion_timout PyObject * field = NULL; field = PyBool_FromLong(ros_message->gps_fusion_timout ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "gps_fusion_timout", field); Py_DECREF(field); if (rc) { return NULL; } } } { // gps_data_stopped PyObject * field = NULL; field = PyBool_FromLong(ros_message->gps_data_stopped ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "gps_data_stopped", field); Py_DECREF(field); if (rc) { return NULL; } } } { // gps_data_stopped_using_alternate PyObject * field = NULL; field = PyBool_FromLong(ros_message->gps_data_stopped_using_alternate ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "gps_data_stopped_using_alternate", field); Py_DECREF(field); if (rc) { return NULL; } } } { // height_sensor_timeout PyObject * field = NULL; field = PyBool_FromLong(ros_message->height_sensor_timeout ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "height_sensor_timeout", field); Py_DECREF(field); if (rc) { return NULL; } } } { // stopping_navigation PyObject * field = NULL; field = PyBool_FromLong(ros_message->stopping_navigation ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "stopping_navigation", field); Py_DECREF(field); if (rc) { return NULL; } } } { // invalid_accel_bias_cov_reset PyObject * field = NULL; field = PyBool_FromLong(ros_message->invalid_accel_bias_cov_reset ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "invalid_accel_bias_cov_reset", field); Py_DECREF(field); if (rc) { return NULL; } } } { // bad_yaw_using_gps_course PyObject * field = NULL; field = PyBool_FromLong(ros_message->bad_yaw_using_gps_course ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "bad_yaw_using_gps_course", field); Py_DECREF(field); if (rc) { return NULL; } } } { // stopping_mag_use PyObject * field = NULL; field = PyBool_FromLong(ros_message->stopping_mag_use ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "stopping_mag_use", field); Py_DECREF(field); if (rc) { return NULL; } } } { // vision_data_stopped PyObject * field = NULL; field = PyBool_FromLong(ros_message->vision_data_stopped ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "vision_data_stopped", field); Py_DECREF(field); if (rc) { return NULL; } } } { // emergency_yaw_reset_mag_stopped PyObject * field = NULL; field = PyBool_FromLong(ros_message->emergency_yaw_reset_mag_stopped ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "emergency_yaw_reset_mag_stopped", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/gps_dump__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/GpsDump.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GPS_DUMP__STRUCT_H_ #define PX4_MSGS__MSG__GPS_DUMP__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'ORB_QUEUE_LENGTH'. enum { px4_msgs__msg__GpsDump__ORB_QUEUE_LENGTH = 8 }; // Struct defined in msg/GpsDump in the package px4_msgs. typedef struct px4_msgs__msg__GpsDump { uint64_t timestamp; uint8_t instance; uint8_t len; uint8_t data[79]; } px4_msgs__msg__GpsDump; // Struct for a sequence of px4_msgs__msg__GpsDump. typedef struct px4_msgs__msg__GpsDump__Sequence { px4_msgs__msg__GpsDump * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__GpsDump__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__GPS_DUMP__STRUCT_H_ <file_sep>/install/px4_msgs/share/px4_msgs/cmake/px4_msgsConfig-version.cmake /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_msgs/ament_cmake_core/px4_msgsConfig-version.cmake<file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_position_setpoint_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/PositionSetpoint.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/position_setpoint__struct.h" #include "px4_msgs/msg/position_setpoint__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__position_setpoint__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[49]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._position_setpoint.PositionSetpoint", full_classname_dest, 48) == 0); } px4_msgs__msg__PositionSetpoint * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // valid PyObject * field = PyObject_GetAttrString(_pymsg, "valid"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->valid = (Py_True == field); Py_DECREF(field); } { // type PyObject * field = PyObject_GetAttrString(_pymsg, "type"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->type = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // vx PyObject * field = PyObject_GetAttrString(_pymsg, "vx"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->vx = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // vy PyObject * field = PyObject_GetAttrString(_pymsg, "vy"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->vy = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // vz PyObject * field = PyObject_GetAttrString(_pymsg, "vz"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->vz = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // velocity_valid PyObject * field = PyObject_GetAttrString(_pymsg, "velocity_valid"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->velocity_valid = (Py_True == field); Py_DECREF(field); } { // velocity_frame PyObject * field = PyObject_GetAttrString(_pymsg, "velocity_frame"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->velocity_frame = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // alt_valid PyObject * field = PyObject_GetAttrString(_pymsg, "alt_valid"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->alt_valid = (Py_True == field); Py_DECREF(field); } { // lat PyObject * field = PyObject_GetAttrString(_pymsg, "lat"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->lat = PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // lon PyObject * field = PyObject_GetAttrString(_pymsg, "lon"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->lon = PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // alt PyObject * field = PyObject_GetAttrString(_pymsg, "alt"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->alt = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // yaw PyObject * field = PyObject_GetAttrString(_pymsg, "yaw"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->yaw = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // yaw_valid PyObject * field = PyObject_GetAttrString(_pymsg, "yaw_valid"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->yaw_valid = (Py_True == field); Py_DECREF(field); } { // yawspeed PyObject * field = PyObject_GetAttrString(_pymsg, "yawspeed"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->yawspeed = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // yawspeed_valid PyObject * field = PyObject_GetAttrString(_pymsg, "yawspeed_valid"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->yawspeed_valid = (Py_True == field); Py_DECREF(field); } { // landing_gear PyObject * field = PyObject_GetAttrString(_pymsg, "landing_gear"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->landing_gear = (int8_t)PyLong_AsLong(field); Py_DECREF(field); } { // loiter_radius PyObject * field = PyObject_GetAttrString(_pymsg, "loiter_radius"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->loiter_radius = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // loiter_direction PyObject * field = PyObject_GetAttrString(_pymsg, "loiter_direction"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->loiter_direction = (int8_t)PyLong_AsLong(field); Py_DECREF(field); } { // acceptance_radius PyObject * field = PyObject_GetAttrString(_pymsg, "acceptance_radius"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->acceptance_radius = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // cruising_speed PyObject * field = PyObject_GetAttrString(_pymsg, "cruising_speed"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->cruising_speed = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // cruising_throttle PyObject * field = PyObject_GetAttrString(_pymsg, "cruising_throttle"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->cruising_throttle = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // disable_weather_vane PyObject * field = PyObject_GetAttrString(_pymsg, "disable_weather_vane"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->disable_weather_vane = (Py_True == field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__position_setpoint__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of PositionSetpoint */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._position_setpoint"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "PositionSetpoint"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__PositionSetpoint * ros_message = (px4_msgs__msg__PositionSetpoint *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // valid PyObject * field = NULL; field = PyBool_FromLong(ros_message->valid ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "valid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // type PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->type); { int rc = PyObject_SetAttrString(_pymessage, "type", field); Py_DECREF(field); if (rc) { return NULL; } } } { // vx PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->vx); { int rc = PyObject_SetAttrString(_pymessage, "vx", field); Py_DECREF(field); if (rc) { return NULL; } } } { // vy PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->vy); { int rc = PyObject_SetAttrString(_pymessage, "vy", field); Py_DECREF(field); if (rc) { return NULL; } } } { // vz PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->vz); { int rc = PyObject_SetAttrString(_pymessage, "vz", field); Py_DECREF(field); if (rc) { return NULL; } } } { // velocity_valid PyObject * field = NULL; field = PyBool_FromLong(ros_message->velocity_valid ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "velocity_valid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // velocity_frame PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->velocity_frame); { int rc = PyObject_SetAttrString(_pymessage, "velocity_frame", field); Py_DECREF(field); if (rc) { return NULL; } } } { // alt_valid PyObject * field = NULL; field = PyBool_FromLong(ros_message->alt_valid ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "alt_valid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // lat PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->lat); { int rc = PyObject_SetAttrString(_pymessage, "lat", field); Py_DECREF(field); if (rc) { return NULL; } } } { // lon PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->lon); { int rc = PyObject_SetAttrString(_pymessage, "lon", field); Py_DECREF(field); if (rc) { return NULL; } } } { // alt PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->alt); { int rc = PyObject_SetAttrString(_pymessage, "alt", field); Py_DECREF(field); if (rc) { return NULL; } } } { // yaw PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->yaw); { int rc = PyObject_SetAttrString(_pymessage, "yaw", field); Py_DECREF(field); if (rc) { return NULL; } } } { // yaw_valid PyObject * field = NULL; field = PyBool_FromLong(ros_message->yaw_valid ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "yaw_valid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // yawspeed PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->yawspeed); { int rc = PyObject_SetAttrString(_pymessage, "yawspeed", field); Py_DECREF(field); if (rc) { return NULL; } } } { // yawspeed_valid PyObject * field = NULL; field = PyBool_FromLong(ros_message->yawspeed_valid ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "yawspeed_valid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // landing_gear PyObject * field = NULL; field = PyLong_FromLong(ros_message->landing_gear); { int rc = PyObject_SetAttrString(_pymessage, "landing_gear", field); Py_DECREF(field); if (rc) { return NULL; } } } { // loiter_radius PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->loiter_radius); { int rc = PyObject_SetAttrString(_pymessage, "loiter_radius", field); Py_DECREF(field); if (rc) { return NULL; } } } { // loiter_direction PyObject * field = NULL; field = PyLong_FromLong(ros_message->loiter_direction); { int rc = PyObject_SetAttrString(_pymessage, "loiter_direction", field); Py_DECREF(field); if (rc) { return NULL; } } } { // acceptance_radius PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->acceptance_radius); { int rc = PyObject_SetAttrString(_pymessage, "acceptance_radius", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cruising_speed PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->cruising_speed); { int rc = PyObject_SetAttrString(_pymessage, "cruising_speed", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cruising_throttle PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->cruising_throttle); { int rc = PyObject_SetAttrString(_pymessage, "cruising_throttle", field); Py_DECREF(field); if (rc) { return NULL; } } } { // disable_weather_vane PyObject * field = NULL; field = PyBool_FromLong(ros_message->disable_weather_vane ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "disable_weather_vane", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/radio_status__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/RadioStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__RADIO_STATUS__STRUCT_H_ #define PX4_MSGS__MSG__RADIO_STATUS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/RadioStatus in the package px4_msgs. typedef struct px4_msgs__msg__RadioStatus { uint64_t timestamp; uint8_t rssi; uint8_t remote_rssi; uint8_t txbuf; uint8_t noise; uint8_t remote_noise; uint16_t rxerrors; uint16_t fix; } px4_msgs__msg__RadioStatus; // Struct for a sequence of px4_msgs__msg__RadioStatus. typedef struct px4_msgs__msg__RadioStatus__Sequence { px4_msgs__msg__RadioStatus * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__RadioStatus__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__RADIO_STATUS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/estimator_selector_status.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_SELECTOR_STATUS_HPP_ #define PX4_MSGS__MSG__ESTIMATOR_SELECTOR_STATUS_HPP_ #include "px4_msgs/msg/estimator_selector_status__struct.hpp" #include "px4_msgs/msg/estimator_selector_status__traits.hpp" #endif // PX4_MSGS__MSG__ESTIMATOR_SELECTOR_STATUS_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/camera_capture.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__CAMERA_CAPTURE_HPP_ #define PX4_MSGS__MSG__CAMERA_CAPTURE_HPP_ #include "px4_msgs/msg/camera_capture__struct.hpp" #include "px4_msgs/msg/camera_capture__traits.hpp" #endif // PX4_MSGS__MSG__CAMERA_CAPTURE_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_states__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/EstimatorStates.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/estimator_states__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/estimator_states__struct.h" #include "px4_msgs/msg/estimator_states__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _EstimatorStates__ros_msg_type = px4_msgs__msg__EstimatorStates; static bool _EstimatorStates__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _EstimatorStates__ros_msg_type * ros_message = static_cast<const _EstimatorStates__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: timestamp_sample { cdr << ros_message->timestamp_sample; } // Field name: states { size_t size = 24; auto array_ptr = ros_message->states; cdr.serializeArray(array_ptr, size); } // Field name: n_states { cdr << ros_message->n_states; } // Field name: covariances { size_t size = 24; auto array_ptr = ros_message->covariances; cdr.serializeArray(array_ptr, size); } return true; } static bool _EstimatorStates__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _EstimatorStates__ros_msg_type * ros_message = static_cast<_EstimatorStates__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: timestamp_sample { cdr >> ros_message->timestamp_sample; } // Field name: states { size_t size = 24; auto array_ptr = ros_message->states; cdr.deserializeArray(array_ptr, size); } // Field name: n_states { cdr >> ros_message->n_states; } // Field name: covariances { size_t size = 24; auto array_ptr = ros_message->covariances; cdr.deserializeArray(array_ptr, size); } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__EstimatorStates( const void * untyped_ros_message, size_t current_alignment) { const _EstimatorStates__ros_msg_type * ros_message = static_cast<const _EstimatorStates__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name timestamp_sample { size_t item_size = sizeof(ros_message->timestamp_sample); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name states { size_t array_size = 24; auto array_ptr = ros_message->states; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name n_states { size_t item_size = sizeof(ros_message->n_states); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name covariances { size_t array_size = 24; auto array_ptr = ros_message->covariances; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _EstimatorStates__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__EstimatorStates( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__EstimatorStates( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: timestamp_sample { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: states { size_t array_size = 24; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: n_states { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: covariances { size_t array_size = 24; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _EstimatorStates__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__EstimatorStates( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_EstimatorStates = { "px4_msgs::msg", "EstimatorStates", _EstimatorStates__cdr_serialize, _EstimatorStates__cdr_deserialize, _EstimatorStates__get_serialized_size, _EstimatorStates__max_serialized_size }; static rosidl_message_type_support_t _EstimatorStates__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_EstimatorStates, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, EstimatorStates)() { return &_EstimatorStates__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/actuator_controls1.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS1_HPP_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS1_HPP_ #include "px4_msgs/msg/actuator_controls1__struct.hpp" #include "px4_msgs/msg/actuator_controls1__traits.hpp" #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS1_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_c/px4_msgs/msg/ping__type_support.cpp // generated from rosidl_typesupport_c/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/Ping.idl // generated code does not contain a copyright notice #include "cstddef" #include "rosidl_generator_c/message_type_support_struct.h" #include "px4_msgs/msg/rosidl_typesupport_c__visibility_control.h" #include "px4_msgs/msg/ping__struct.h" #include "rosidl_typesupport_c/visibility_control.h" #include "px4_msgs/msg/ping__rosidl_typesupport_fastrtps_c.h" #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_c, px4_msgs, msg, Ping)() { return ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, Ping)(); } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_px4_io_status_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/Px4IoStatus.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/px4_io_status__struct.h" #include "px4_msgs/msg/px4_io_status__functions.h" #include "rosidl_generator_c/primitives_sequence.h" #include "rosidl_generator_c/primitives_sequence_functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__px4_io_status__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[40]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._px4_io_status.Px4IoStatus", full_classname_dest, 39) == 0); } px4_msgs__msg__Px4IoStatus * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // free_memory_bytes PyObject * field = PyObject_GetAttrString(_pymsg, "free_memory_bytes"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->free_memory_bytes = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // voltage_v PyObject * field = PyObject_GetAttrString(_pymsg, "voltage_v"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->voltage_v = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // rssi_v PyObject * field = PyObject_GetAttrString(_pymsg, "rssi_v"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->rssi_v = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // status_outputs_armed PyObject * field = PyObject_GetAttrString(_pymsg, "status_outputs_armed"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->status_outputs_armed = (Py_True == field); Py_DECREF(field); } { // status_override PyObject * field = PyObject_GetAttrString(_pymsg, "status_override"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->status_override = (Py_True == field); Py_DECREF(field); } { // status_rc_ok PyObject * field = PyObject_GetAttrString(_pymsg, "status_rc_ok"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->status_rc_ok = (Py_True == field); Py_DECREF(field); } { // status_rc_ppm PyObject * field = PyObject_GetAttrString(_pymsg, "status_rc_ppm"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->status_rc_ppm = (Py_True == field); Py_DECREF(field); } { // status_rc_dsm PyObject * field = PyObject_GetAttrString(_pymsg, "status_rc_dsm"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->status_rc_dsm = (Py_True == field); Py_DECREF(field); } { // status_rc_sbus PyObject * field = PyObject_GetAttrString(_pymsg, "status_rc_sbus"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->status_rc_sbus = (Py_True == field); Py_DECREF(field); } { // status_fmu_ok PyObject * field = PyObject_GetAttrString(_pymsg, "status_fmu_ok"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->status_fmu_ok = (Py_True == field); Py_DECREF(field); } { // status_raw_pwm PyObject * field = PyObject_GetAttrString(_pymsg, "status_raw_pwm"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->status_raw_pwm = (Py_True == field); Py_DECREF(field); } { // status_mixer_ok PyObject * field = PyObject_GetAttrString(_pymsg, "status_mixer_ok"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->status_mixer_ok = (Py_True == field); Py_DECREF(field); } { // status_arm_sync PyObject * field = PyObject_GetAttrString(_pymsg, "status_arm_sync"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->status_arm_sync = (Py_True == field); Py_DECREF(field); } { // status_init_ok PyObject * field = PyObject_GetAttrString(_pymsg, "status_init_ok"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->status_init_ok = (Py_True == field); Py_DECREF(field); } { // status_failsafe PyObject * field = PyObject_GetAttrString(_pymsg, "status_failsafe"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->status_failsafe = (Py_True == field); Py_DECREF(field); } { // status_safety_off PyObject * field = PyObject_GetAttrString(_pymsg, "status_safety_off"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->status_safety_off = (Py_True == field); Py_DECREF(field); } { // status_fmu_initialized PyObject * field = PyObject_GetAttrString(_pymsg, "status_fmu_initialized"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->status_fmu_initialized = (Py_True == field); Py_DECREF(field); } { // status_rc_st24 PyObject * field = PyObject_GetAttrString(_pymsg, "status_rc_st24"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->status_rc_st24 = (Py_True == field); Py_DECREF(field); } { // status_rc_sumd PyObject * field = PyObject_GetAttrString(_pymsg, "status_rc_sumd"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->status_rc_sumd = (Py_True == field); Py_DECREF(field); } { // alarm_vbatt_low PyObject * field = PyObject_GetAttrString(_pymsg, "alarm_vbatt_low"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->alarm_vbatt_low = (Py_True == field); Py_DECREF(field); } { // alarm_temperature PyObject * field = PyObject_GetAttrString(_pymsg, "alarm_temperature"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->alarm_temperature = (Py_True == field); Py_DECREF(field); } { // alarm_servo_current PyObject * field = PyObject_GetAttrString(_pymsg, "alarm_servo_current"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->alarm_servo_current = (Py_True == field); Py_DECREF(field); } { // alarm_acc_current PyObject * field = PyObject_GetAttrString(_pymsg, "alarm_acc_current"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->alarm_acc_current = (Py_True == field); Py_DECREF(field); } { // alarm_fmu_lost PyObject * field = PyObject_GetAttrString(_pymsg, "alarm_fmu_lost"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->alarm_fmu_lost = (Py_True == field); Py_DECREF(field); } { // alarm_rc_lost PyObject * field = PyObject_GetAttrString(_pymsg, "alarm_rc_lost"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->alarm_rc_lost = (Py_True == field); Py_DECREF(field); } { // alarm_pwm_error PyObject * field = PyObject_GetAttrString(_pymsg, "alarm_pwm_error"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->alarm_pwm_error = (Py_True == field); Py_DECREF(field); } { // alarm_vservo_fault PyObject * field = PyObject_GetAttrString(_pymsg, "alarm_vservo_fault"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->alarm_vservo_fault = (Py_True == field); Py_DECREF(field); } { // arming_io_arm_ok PyObject * field = PyObject_GetAttrString(_pymsg, "arming_io_arm_ok"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->arming_io_arm_ok = (Py_True == field); Py_DECREF(field); } { // arming_fmu_armed PyObject * field = PyObject_GetAttrString(_pymsg, "arming_fmu_armed"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->arming_fmu_armed = (Py_True == field); Py_DECREF(field); } { // arming_fmu_prearmed PyObject * field = PyObject_GetAttrString(_pymsg, "arming_fmu_prearmed"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->arming_fmu_prearmed = (Py_True == field); Py_DECREF(field); } { // arming_manual_override_ok PyObject * field = PyObject_GetAttrString(_pymsg, "arming_manual_override_ok"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->arming_manual_override_ok = (Py_True == field); Py_DECREF(field); } { // arming_failsafe_custom PyObject * field = PyObject_GetAttrString(_pymsg, "arming_failsafe_custom"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->arming_failsafe_custom = (Py_True == field); Py_DECREF(field); } { // arming_inair_restart_ok PyObject * field = PyObject_GetAttrString(_pymsg, "arming_inair_restart_ok"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->arming_inair_restart_ok = (Py_True == field); Py_DECREF(field); } { // arming_always_pwm_enable PyObject * field = PyObject_GetAttrString(_pymsg, "arming_always_pwm_enable"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->arming_always_pwm_enable = (Py_True == field); Py_DECREF(field); } { // arming_rc_handling_disabled PyObject * field = PyObject_GetAttrString(_pymsg, "arming_rc_handling_disabled"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->arming_rc_handling_disabled = (Py_True == field); Py_DECREF(field); } { // arming_lockdown PyObject * field = PyObject_GetAttrString(_pymsg, "arming_lockdown"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->arming_lockdown = (Py_True == field); Py_DECREF(field); } { // arming_force_failsafe PyObject * field = PyObject_GetAttrString(_pymsg, "arming_force_failsafe"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->arming_force_failsafe = (Py_True == field); Py_DECREF(field); } { // arming_termination_failsafe PyObject * field = PyObject_GetAttrString(_pymsg, "arming_termination_failsafe"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->arming_termination_failsafe = (Py_True == field); Py_DECREF(field); } { // arming_override_immediate PyObject * field = PyObject_GetAttrString(_pymsg, "arming_override_immediate"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->arming_override_immediate = (Py_True == field); Py_DECREF(field); } { // actuators PyObject * field = PyObject_GetAttrString(_pymsg, "actuators"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_INT16); Py_ssize_t size = 8; int16_t * dest = ros_message->actuators; for (Py_ssize_t i = 0; i < size; ++i) { int16_t tmp = *(npy_int16 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(int16_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // servos PyObject * field = PyObject_GetAttrString(_pymsg, "servos"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT16); Py_ssize_t size = 8; uint16_t * dest = ros_message->servos; for (Py_ssize_t i = 0; i < size; ++i) { uint16_t tmp = *(npy_uint16 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint16_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // raw_inputs PyObject * field = PyObject_GetAttrString(_pymsg, "raw_inputs"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT16); Py_ssize_t size = 18; uint16_t * dest = ros_message->raw_inputs; for (Py_ssize_t i = 0; i < size; ++i) { uint16_t tmp = *(npy_uint16 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint16_t)); } Py_DECREF(seq_field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__px4_io_status__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of Px4IoStatus */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._px4_io_status"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "Px4IoStatus"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__Px4IoStatus * ros_message = (px4_msgs__msg__Px4IoStatus *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // free_memory_bytes PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->free_memory_bytes); { int rc = PyObject_SetAttrString(_pymessage, "free_memory_bytes", field); Py_DECREF(field); if (rc) { return NULL; } } } { // voltage_v PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->voltage_v); { int rc = PyObject_SetAttrString(_pymessage, "voltage_v", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rssi_v PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->rssi_v); { int rc = PyObject_SetAttrString(_pymessage, "rssi_v", field); Py_DECREF(field); if (rc) { return NULL; } } } { // status_outputs_armed PyObject * field = NULL; field = PyBool_FromLong(ros_message->status_outputs_armed ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "status_outputs_armed", field); Py_DECREF(field); if (rc) { return NULL; } } } { // status_override PyObject * field = NULL; field = PyBool_FromLong(ros_message->status_override ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "status_override", field); Py_DECREF(field); if (rc) { return NULL; } } } { // status_rc_ok PyObject * field = NULL; field = PyBool_FromLong(ros_message->status_rc_ok ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "status_rc_ok", field); Py_DECREF(field); if (rc) { return NULL; } } } { // status_rc_ppm PyObject * field = NULL; field = PyBool_FromLong(ros_message->status_rc_ppm ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "status_rc_ppm", field); Py_DECREF(field); if (rc) { return NULL; } } } { // status_rc_dsm PyObject * field = NULL; field = PyBool_FromLong(ros_message->status_rc_dsm ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "status_rc_dsm", field); Py_DECREF(field); if (rc) { return NULL; } } } { // status_rc_sbus PyObject * field = NULL; field = PyBool_FromLong(ros_message->status_rc_sbus ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "status_rc_sbus", field); Py_DECREF(field); if (rc) { return NULL; } } } { // status_fmu_ok PyObject * field = NULL; field = PyBool_FromLong(ros_message->status_fmu_ok ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "status_fmu_ok", field); Py_DECREF(field); if (rc) { return NULL; } } } { // status_raw_pwm PyObject * field = NULL; field = PyBool_FromLong(ros_message->status_raw_pwm ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "status_raw_pwm", field); Py_DECREF(field); if (rc) { return NULL; } } } { // status_mixer_ok PyObject * field = NULL; field = PyBool_FromLong(ros_message->status_mixer_ok ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "status_mixer_ok", field); Py_DECREF(field); if (rc) { return NULL; } } } { // status_arm_sync PyObject * field = NULL; field = PyBool_FromLong(ros_message->status_arm_sync ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "status_arm_sync", field); Py_DECREF(field); if (rc) { return NULL; } } } { // status_init_ok PyObject * field = NULL; field = PyBool_FromLong(ros_message->status_init_ok ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "status_init_ok", field); Py_DECREF(field); if (rc) { return NULL; } } } { // status_failsafe PyObject * field = NULL; field = PyBool_FromLong(ros_message->status_failsafe ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "status_failsafe", field); Py_DECREF(field); if (rc) { return NULL; } } } { // status_safety_off PyObject * field = NULL; field = PyBool_FromLong(ros_message->status_safety_off ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "status_safety_off", field); Py_DECREF(field); if (rc) { return NULL; } } } { // status_fmu_initialized PyObject * field = NULL; field = PyBool_FromLong(ros_message->status_fmu_initialized ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "status_fmu_initialized", field); Py_DECREF(field); if (rc) { return NULL; } } } { // status_rc_st24 PyObject * field = NULL; field = PyBool_FromLong(ros_message->status_rc_st24 ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "status_rc_st24", field); Py_DECREF(field); if (rc) { return NULL; } } } { // status_rc_sumd PyObject * field = NULL; field = PyBool_FromLong(ros_message->status_rc_sumd ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "status_rc_sumd", field); Py_DECREF(field); if (rc) { return NULL; } } } { // alarm_vbatt_low PyObject * field = NULL; field = PyBool_FromLong(ros_message->alarm_vbatt_low ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "alarm_vbatt_low", field); Py_DECREF(field); if (rc) { return NULL; } } } { // alarm_temperature PyObject * field = NULL; field = PyBool_FromLong(ros_message->alarm_temperature ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "alarm_temperature", field); Py_DECREF(field); if (rc) { return NULL; } } } { // alarm_servo_current PyObject * field = NULL; field = PyBool_FromLong(ros_message->alarm_servo_current ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "alarm_servo_current", field); Py_DECREF(field); if (rc) { return NULL; } } } { // alarm_acc_current PyObject * field = NULL; field = PyBool_FromLong(ros_message->alarm_acc_current ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "alarm_acc_current", field); Py_DECREF(field); if (rc) { return NULL; } } } { // alarm_fmu_lost PyObject * field = NULL; field = PyBool_FromLong(ros_message->alarm_fmu_lost ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "alarm_fmu_lost", field); Py_DECREF(field); if (rc) { return NULL; } } } { // alarm_rc_lost PyObject * field = NULL; field = PyBool_FromLong(ros_message->alarm_rc_lost ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "alarm_rc_lost", field); Py_DECREF(field); if (rc) { return NULL; } } } { // alarm_pwm_error PyObject * field = NULL; field = PyBool_FromLong(ros_message->alarm_pwm_error ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "alarm_pwm_error", field); Py_DECREF(field); if (rc) { return NULL; } } } { // alarm_vservo_fault PyObject * field = NULL; field = PyBool_FromLong(ros_message->alarm_vservo_fault ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "alarm_vservo_fault", field); Py_DECREF(field); if (rc) { return NULL; } } } { // arming_io_arm_ok PyObject * field = NULL; field = PyBool_FromLong(ros_message->arming_io_arm_ok ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "arming_io_arm_ok", field); Py_DECREF(field); if (rc) { return NULL; } } } { // arming_fmu_armed PyObject * field = NULL; field = PyBool_FromLong(ros_message->arming_fmu_armed ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "arming_fmu_armed", field); Py_DECREF(field); if (rc) { return NULL; } } } { // arming_fmu_prearmed PyObject * field = NULL; field = PyBool_FromLong(ros_message->arming_fmu_prearmed ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "arming_fmu_prearmed", field); Py_DECREF(field); if (rc) { return NULL; } } } { // arming_manual_override_ok PyObject * field = NULL; field = PyBool_FromLong(ros_message->arming_manual_override_ok ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "arming_manual_override_ok", field); Py_DECREF(field); if (rc) { return NULL; } } } { // arming_failsafe_custom PyObject * field = NULL; field = PyBool_FromLong(ros_message->arming_failsafe_custom ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "arming_failsafe_custom", field); Py_DECREF(field); if (rc) { return NULL; } } } { // arming_inair_restart_ok PyObject * field = NULL; field = PyBool_FromLong(ros_message->arming_inair_restart_ok ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "arming_inair_restart_ok", field); Py_DECREF(field); if (rc) { return NULL; } } } { // arming_always_pwm_enable PyObject * field = NULL; field = PyBool_FromLong(ros_message->arming_always_pwm_enable ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "arming_always_pwm_enable", field); Py_DECREF(field); if (rc) { return NULL; } } } { // arming_rc_handling_disabled PyObject * field = NULL; field = PyBool_FromLong(ros_message->arming_rc_handling_disabled ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "arming_rc_handling_disabled", field); Py_DECREF(field); if (rc) { return NULL; } } } { // arming_lockdown PyObject * field = NULL; field = PyBool_FromLong(ros_message->arming_lockdown ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "arming_lockdown", field); Py_DECREF(field); if (rc) { return NULL; } } } { // arming_force_failsafe PyObject * field = NULL; field = PyBool_FromLong(ros_message->arming_force_failsafe ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "arming_force_failsafe", field); Py_DECREF(field); if (rc) { return NULL; } } } { // arming_termination_failsafe PyObject * field = NULL; field = PyBool_FromLong(ros_message->arming_termination_failsafe ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "arming_termination_failsafe", field); Py_DECREF(field); if (rc) { return NULL; } } } { // arming_override_immediate PyObject * field = NULL; field = PyBool_FromLong(ros_message->arming_override_immediate ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "arming_override_immediate", field); Py_DECREF(field); if (rc) { return NULL; } } } { // actuators PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "actuators"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_INT16); assert(sizeof(npy_int16) == sizeof(int16_t)); npy_int16 * dst = (npy_int16 *)PyArray_GETPTR1(seq_field, 0); int16_t * src = &(ros_message->actuators[0]); memcpy(dst, src, 8 * sizeof(int16_t)); Py_DECREF(field); } { // servos PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "servos"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT16); assert(sizeof(npy_uint16) == sizeof(uint16_t)); npy_uint16 * dst = (npy_uint16 *)PyArray_GETPTR1(seq_field, 0); uint16_t * src = &(ros_message->servos[0]); memcpy(dst, src, 8 * sizeof(uint16_t)); Py_DECREF(field); } { // raw_inputs PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "raw_inputs"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT16); assert(sizeof(npy_uint16) == sizeof(uint16_t)); npy_uint16 * dst = (npy_uint16 *)PyArray_GETPTR1(seq_field, 0); uint16_t * src = &(ros_message->raw_inputs[0]); memcpy(dst, src, 18 * sizeof(uint16_t)); Py_DECREF(field); } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_gps_position__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleGpsPosition.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_GPS_POSITION__STRUCT_H_ #define PX4_MSGS__MSG__VEHICLE_GPS_POSITION__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/VehicleGpsPosition in the package px4_msgs. typedef struct px4_msgs__msg__VehicleGpsPosition { uint64_t timestamp; int32_t lat; int32_t lon; int32_t alt; int32_t alt_ellipsoid; float s_variance_m_s; float c_variance_rad; uint8_t fix_type; float eph; float epv; float hdop; float vdop; int32_t noise_per_ms; int32_t jamming_indicator; uint8_t jamming_state; float vel_m_s; float vel_n_m_s; float vel_e_m_s; float vel_d_m_s; float cog_rad; bool vel_ned_valid; int32_t timestamp_time_relative; uint64_t time_utc_usec; uint8_t satellites_used; float heading; float heading_offset; uint8_t selected; } px4_msgs__msg__VehicleGpsPosition; // Struct for a sequence of px4_msgs__msg__VehicleGpsPosition. typedef struct px4_msgs__msg__VehicleGpsPosition__Sequence { px4_msgs__msg__VehicleGpsPosition * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__VehicleGpsPosition__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_GPS_POSITION__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_air_data__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleAirData.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/vehicle_air_data__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void VehicleAirData_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::VehicleAirData(_init); } void VehicleAirData_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::VehicleAirData *>(message_memory); typed_message->~VehicleAirData(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember VehicleAirData_message_member_array[7] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleAirData, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleAirData, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "baro_device_id", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleAirData, baro_device_id), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "baro_alt_meter", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleAirData, baro_alt_meter), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "baro_temp_celcius", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleAirData, baro_temp_celcius), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "baro_pressure_pa", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleAirData, baro_pressure_pa), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rho", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleAirData, rho), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers VehicleAirData_message_members = { "px4_msgs::msg", // message namespace "VehicleAirData", // message name 7, // number of fields sizeof(px4_msgs::msg::VehicleAirData), VehicleAirData_message_member_array, // message members VehicleAirData_init_function, // function to initialize message memory (memory has to be allocated) VehicleAirData_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t VehicleAirData_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &VehicleAirData_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleAirData>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleAirData_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, VehicleAirData)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleAirData_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/VehicleTrajectoryWaypointDesired.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/vehicle_trajectory_waypoint_desired__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/vehicle_trajectory_waypoint_desired__functions.h" #include "px4_msgs/msg/vehicle_trajectory_waypoint_desired__struct.h" // Include directives for member types // Member `waypoints` #include "px4_msgs/msg/trajectory_waypoint.h" // Member `waypoints` #include "px4_msgs/msg/trajectory_waypoint__rosidl_typesupport_introspection_c.h" #ifdef __cplusplus extern "C" { #endif void VehicleTrajectoryWaypointDesired__rosidl_typesupport_introspection_c__VehicleTrajectoryWaypointDesired_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__VehicleTrajectoryWaypointDesired__init(message_memory); } void VehicleTrajectoryWaypointDesired__rosidl_typesupport_introspection_c__VehicleTrajectoryWaypointDesired_fini_function(void * message_memory) { px4_msgs__msg__VehicleTrajectoryWaypointDesired__fini(message_memory); } size_t VehicleTrajectoryWaypointDesired__rosidl_typesupport_introspection_c__size_function__TrajectoryWaypoint__waypoints( const void * untyped_member) { (void)untyped_member; return 5; } const void * VehicleTrajectoryWaypointDesired__rosidl_typesupport_introspection_c__get_const_function__TrajectoryWaypoint__waypoints( const void * untyped_member, size_t index) { const px4_msgs__msg__TrajectoryWaypoint ** member = (const px4_msgs__msg__TrajectoryWaypoint **)(untyped_member); return &(*member)[index]; } void * VehicleTrajectoryWaypointDesired__rosidl_typesupport_introspection_c__get_function__TrajectoryWaypoint__waypoints( void * untyped_member, size_t index) { px4_msgs__msg__TrajectoryWaypoint ** member = (px4_msgs__msg__TrajectoryWaypoint **)(untyped_member); return &(*member)[index]; } static rosidl_typesupport_introspection_c__MessageMember VehicleTrajectoryWaypointDesired__rosidl_typesupport_introspection_c__VehicleTrajectoryWaypointDesired_message_member_array[3] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleTrajectoryWaypointDesired, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "type", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleTrajectoryWaypointDesired, type), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "waypoints", // name rosidl_typesupport_introspection_c__ROS_TYPE_MESSAGE, // type 0, // upper bound of string NULL, // members of sub message (initialized later) true, // is array 5, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleTrajectoryWaypointDesired, waypoints), // bytes offset in struct NULL, // default value VehicleTrajectoryWaypointDesired__rosidl_typesupport_introspection_c__size_function__TrajectoryWaypoint__waypoints, // size() function pointer VehicleTrajectoryWaypointDesired__rosidl_typesupport_introspection_c__get_const_function__TrajectoryWaypoint__waypoints, // get_const(index) function pointer VehicleTrajectoryWaypointDesired__rosidl_typesupport_introspection_c__get_function__TrajectoryWaypoint__waypoints, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers VehicleTrajectoryWaypointDesired__rosidl_typesupport_introspection_c__VehicleTrajectoryWaypointDesired_message_members = { "px4_msgs__msg", // message namespace "VehicleTrajectoryWaypointDesired", // message name 3, // number of fields sizeof(px4_msgs__msg__VehicleTrajectoryWaypointDesired), VehicleTrajectoryWaypointDesired__rosidl_typesupport_introspection_c__VehicleTrajectoryWaypointDesired_message_member_array, // message members VehicleTrajectoryWaypointDesired__rosidl_typesupport_introspection_c__VehicleTrajectoryWaypointDesired_init_function, // function to initialize message memory (memory has to be allocated) VehicleTrajectoryWaypointDesired__rosidl_typesupport_introspection_c__VehicleTrajectoryWaypointDesired_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t VehicleTrajectoryWaypointDesired__rosidl_typesupport_introspection_c__VehicleTrajectoryWaypointDesired_message_type_support_handle = { 0, &VehicleTrajectoryWaypointDesired__rosidl_typesupport_introspection_c__VehicleTrajectoryWaypointDesired_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, VehicleTrajectoryWaypointDesired)() { VehicleTrajectoryWaypointDesired__rosidl_typesupport_introspection_c__VehicleTrajectoryWaypointDesired_message_member_array[2].members_ = ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, TrajectoryWaypoint)(); if (!VehicleTrajectoryWaypointDesired__rosidl_typesupport_introspection_c__VehicleTrajectoryWaypointDesired_message_type_support_handle.typesupport_identifier) { VehicleTrajectoryWaypointDesired__rosidl_typesupport_introspection_c__VehicleTrajectoryWaypointDesired_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &VehicleTrajectoryWaypointDesired__rosidl_typesupport_introspection_c__VehicleTrajectoryWaypointDesired_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint_triplet__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/PositionSetpointTriplet.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/position_setpoint_triplet__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/position_setpoint_triplet__functions.h" #include "px4_msgs/msg/position_setpoint_triplet__struct.h" // Include directives for member types // Member `previous` // Member `current` // Member `next` #include "px4_msgs/msg/position_setpoint.h" // Member `previous` // Member `current` // Member `next` #include "px4_msgs/msg/position_setpoint__rosidl_typesupport_introspection_c.h" #ifdef __cplusplus extern "C" { #endif void PositionSetpointTriplet__rosidl_typesupport_introspection_c__PositionSetpointTriplet_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__PositionSetpointTriplet__init(message_memory); } void PositionSetpointTriplet__rosidl_typesupport_introspection_c__PositionSetpointTriplet_fini_function(void * message_memory) { px4_msgs__msg__PositionSetpointTriplet__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember PositionSetpointTriplet__rosidl_typesupport_introspection_c__PositionSetpointTriplet_message_member_array[4] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionSetpointTriplet, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "previous", // name rosidl_typesupport_introspection_c__ROS_TYPE_MESSAGE, // type 0, // upper bound of string NULL, // members of sub message (initialized later) false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionSetpointTriplet, previous), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "current", // name rosidl_typesupport_introspection_c__ROS_TYPE_MESSAGE, // type 0, // upper bound of string NULL, // members of sub message (initialized later) false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionSetpointTriplet, current), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "next", // name rosidl_typesupport_introspection_c__ROS_TYPE_MESSAGE, // type 0, // upper bound of string NULL, // members of sub message (initialized later) false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PositionSetpointTriplet, next), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers PositionSetpointTriplet__rosidl_typesupport_introspection_c__PositionSetpointTriplet_message_members = { "px4_msgs__msg", // message namespace "PositionSetpointTriplet", // message name 4, // number of fields sizeof(px4_msgs__msg__PositionSetpointTriplet), PositionSetpointTriplet__rosidl_typesupport_introspection_c__PositionSetpointTriplet_message_member_array, // message members PositionSetpointTriplet__rosidl_typesupport_introspection_c__PositionSetpointTriplet_init_function, // function to initialize message memory (memory has to be allocated) PositionSetpointTriplet__rosidl_typesupport_introspection_c__PositionSetpointTriplet_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t PositionSetpointTriplet__rosidl_typesupport_introspection_c__PositionSetpointTriplet_message_type_support_handle = { 0, &PositionSetpointTriplet__rosidl_typesupport_introspection_c__PositionSetpointTriplet_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, PositionSetpointTriplet)() { PositionSetpointTriplet__rosidl_typesupport_introspection_c__PositionSetpointTriplet_message_member_array[1].members_ = ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, PositionSetpoint)(); PositionSetpointTriplet__rosidl_typesupport_introspection_c__PositionSetpointTriplet_message_member_array[2].members_ = ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, PositionSetpoint)(); PositionSetpointTriplet__rosidl_typesupport_introspection_c__PositionSetpointTriplet_message_member_array[3].members_ = ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, PositionSetpoint)(); if (!PositionSetpointTriplet__rosidl_typesupport_introspection_c__PositionSetpointTriplet_message_type_support_handle.typesupport_identifier) { PositionSetpointTriplet__rosidl_typesupport_introspection_c__PositionSetpointTriplet_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &PositionSetpointTriplet__rosidl_typesupport_introspection_c__PositionSetpointTriplet_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleTrajectoryWaypoint.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_trajectory_waypoint__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/vehicle_trajectory_waypoint__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool cdr_serialize( const px4_msgs::msg::TrajectoryWaypoint &, eprosima::fastcdr::Cdr &); bool cdr_deserialize( eprosima::fastcdr::Cdr &, px4_msgs::msg::TrajectoryWaypoint &); size_t get_serialized_size( const px4_msgs::msg::TrajectoryWaypoint &, size_t current_alignment); size_t max_serialized_size_TrajectoryWaypoint( bool & full_bounded, size_t current_alignment); } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::VehicleTrajectoryWaypoint & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: type cdr << ros_message.type; // Member: waypoints { for (size_t i = 0; i < 5; i++) { px4_msgs::msg::typesupport_fastrtps_cpp::cdr_serialize( ros_message.waypoints[i], cdr); } } return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::VehicleTrajectoryWaypoint & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: type cdr >> ros_message.type; // Member: waypoints { for (size_t i = 0; i < 5; i++) { px4_msgs::msg::typesupport_fastrtps_cpp::cdr_deserialize( cdr, ros_message.waypoints[i]); } } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::VehicleTrajectoryWaypoint & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: type { size_t item_size = sizeof(ros_message.type); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: waypoints { size_t array_size = 5; for (size_t index = 0; index < array_size; ++index) { current_alignment += px4_msgs::msg::typesupport_fastrtps_cpp::get_serialized_size( ros_message.waypoints[index], current_alignment); } } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_VehicleTrajectoryWaypoint( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: type { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: waypoints { size_t array_size = 5; for (size_t index = 0; index < array_size; ++index) { current_alignment += px4_msgs::msg::typesupport_fastrtps_cpp::max_serialized_size_TrajectoryWaypoint( full_bounded, current_alignment); } } return current_alignment - initial_alignment; } static bool _VehicleTrajectoryWaypoint__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::VehicleTrajectoryWaypoint *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _VehicleTrajectoryWaypoint__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::VehicleTrajectoryWaypoint *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _VehicleTrajectoryWaypoint__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::VehicleTrajectoryWaypoint *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _VehicleTrajectoryWaypoint__max_serialized_size(bool & full_bounded) { return max_serialized_size_VehicleTrajectoryWaypoint(full_bounded, 0); } static message_type_support_callbacks_t _VehicleTrajectoryWaypoint__callbacks = { "px4_msgs::msg", "VehicleTrajectoryWaypoint", _VehicleTrajectoryWaypoint__cdr_serialize, _VehicleTrajectoryWaypoint__cdr_deserialize, _VehicleTrajectoryWaypoint__get_serialized_size, _VehicleTrajectoryWaypoint__max_serialized_size }; static rosidl_message_type_support_t _VehicleTrajectoryWaypoint__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_VehicleTrajectoryWaypoint__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleTrajectoryWaypoint>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_VehicleTrajectoryWaypoint__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, VehicleTrajectoryWaypoint)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_VehicleTrajectoryWaypoint__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_rates_setpoint__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/VehicleRatesSetpoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_RATES_SETPOINT__STRUCT_HPP_ #define PX4_MSGS__MSG__VEHICLE_RATES_SETPOINT__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__VehicleRatesSetpoint __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__VehicleRatesSetpoint __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct VehicleRatesSetpoint_ { using Type = VehicleRatesSetpoint_<ContainerAllocator>; explicit VehicleRatesSetpoint_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->roll = 0.0f; this->pitch = 0.0f; this->yaw = 0.0f; std::fill<typename std::array<float, 3>::iterator, float>(this->thrust_body.begin(), this->thrust_body.end(), 0.0f); } } explicit VehicleRatesSetpoint_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : thrust_body(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->roll = 0.0f; this->pitch = 0.0f; this->yaw = 0.0f; std::fill<typename std::array<float, 3>::iterator, float>(this->thrust_body.begin(), this->thrust_body.end(), 0.0f); } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _roll_type = float; _roll_type roll; using _pitch_type = float; _pitch_type pitch; using _yaw_type = float; _yaw_type yaw; using _thrust_body_type = std::array<float, 3>; _thrust_body_type thrust_body; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__roll( const float & _arg) { this->roll = _arg; return *this; } Type & set__pitch( const float & _arg) { this->pitch = _arg; return *this; } Type & set__yaw( const float & _arg) { this->yaw = _arg; return *this; } Type & set__thrust_body( const std::array<float, 3> & _arg) { this->thrust_body = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::VehicleRatesSetpoint_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::VehicleRatesSetpoint_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::VehicleRatesSetpoint_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::VehicleRatesSetpoint_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleRatesSetpoint_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleRatesSetpoint_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleRatesSetpoint_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleRatesSetpoint_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::VehicleRatesSetpoint_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::VehicleRatesSetpoint_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__VehicleRatesSetpoint std::shared_ptr<px4_msgs::msg::VehicleRatesSetpoint_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__VehicleRatesSetpoint std::shared_ptr<px4_msgs::msg::VehicleRatesSetpoint_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const VehicleRatesSetpoint_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->roll != other.roll) { return false; } if (this->pitch != other.pitch) { return false; } if (this->yaw != other.yaw) { return false; } if (this->thrust_body != other.thrust_body) { return false; } return true; } bool operator!=(const VehicleRatesSetpoint_ & other) const { return !this->operator==(other); } }; // struct VehicleRatesSetpoint_ // alias to use template instance with default allocator using VehicleRatesSetpoint = px4_msgs::msg::VehicleRatesSetpoint_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__VEHICLE_RATES_SETPOINT__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/px4_io_status__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/Px4IoStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/px4_io_status__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/px4_io_status__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::Px4IoStatus & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: free_memory_bytes cdr << ros_message.free_memory_bytes; // Member: voltage_v cdr << ros_message.voltage_v; // Member: rssi_v cdr << ros_message.rssi_v; // Member: status_outputs_armed cdr << (ros_message.status_outputs_armed ? true : false); // Member: status_override cdr << (ros_message.status_override ? true : false); // Member: status_rc_ok cdr << (ros_message.status_rc_ok ? true : false); // Member: status_rc_ppm cdr << (ros_message.status_rc_ppm ? true : false); // Member: status_rc_dsm cdr << (ros_message.status_rc_dsm ? true : false); // Member: status_rc_sbus cdr << (ros_message.status_rc_sbus ? true : false); // Member: status_fmu_ok cdr << (ros_message.status_fmu_ok ? true : false); // Member: status_raw_pwm cdr << (ros_message.status_raw_pwm ? true : false); // Member: status_mixer_ok cdr << (ros_message.status_mixer_ok ? true : false); // Member: status_arm_sync cdr << (ros_message.status_arm_sync ? true : false); // Member: status_init_ok cdr << (ros_message.status_init_ok ? true : false); // Member: status_failsafe cdr << (ros_message.status_failsafe ? true : false); // Member: status_safety_off cdr << (ros_message.status_safety_off ? true : false); // Member: status_fmu_initialized cdr << (ros_message.status_fmu_initialized ? true : false); // Member: status_rc_st24 cdr << (ros_message.status_rc_st24 ? true : false); // Member: status_rc_sumd cdr << (ros_message.status_rc_sumd ? true : false); // Member: alarm_vbatt_low cdr << (ros_message.alarm_vbatt_low ? true : false); // Member: alarm_temperature cdr << (ros_message.alarm_temperature ? true : false); // Member: alarm_servo_current cdr << (ros_message.alarm_servo_current ? true : false); // Member: alarm_acc_current cdr << (ros_message.alarm_acc_current ? true : false); // Member: alarm_fmu_lost cdr << (ros_message.alarm_fmu_lost ? true : false); // Member: alarm_rc_lost cdr << (ros_message.alarm_rc_lost ? true : false); // Member: alarm_pwm_error cdr << (ros_message.alarm_pwm_error ? true : false); // Member: alarm_vservo_fault cdr << (ros_message.alarm_vservo_fault ? true : false); // Member: arming_io_arm_ok cdr << (ros_message.arming_io_arm_ok ? true : false); // Member: arming_fmu_armed cdr << (ros_message.arming_fmu_armed ? true : false); // Member: arming_fmu_prearmed cdr << (ros_message.arming_fmu_prearmed ? true : false); // Member: arming_manual_override_ok cdr << (ros_message.arming_manual_override_ok ? true : false); // Member: arming_failsafe_custom cdr << (ros_message.arming_failsafe_custom ? true : false); // Member: arming_inair_restart_ok cdr << (ros_message.arming_inair_restart_ok ? true : false); // Member: arming_always_pwm_enable cdr << (ros_message.arming_always_pwm_enable ? true : false); // Member: arming_rc_handling_disabled cdr << (ros_message.arming_rc_handling_disabled ? true : false); // Member: arming_lockdown cdr << (ros_message.arming_lockdown ? true : false); // Member: arming_force_failsafe cdr << (ros_message.arming_force_failsafe ? true : false); // Member: arming_termination_failsafe cdr << (ros_message.arming_termination_failsafe ? true : false); // Member: arming_override_immediate cdr << (ros_message.arming_override_immediate ? true : false); // Member: actuators { cdr << ros_message.actuators; } // Member: servos { cdr << ros_message.servos; } // Member: raw_inputs { cdr << ros_message.raw_inputs; } return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::Px4IoStatus & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: free_memory_bytes cdr >> ros_message.free_memory_bytes; // Member: voltage_v cdr >> ros_message.voltage_v; // Member: rssi_v cdr >> ros_message.rssi_v; // Member: status_outputs_armed { uint8_t tmp; cdr >> tmp; ros_message.status_outputs_armed = tmp ? true : false; } // Member: status_override { uint8_t tmp; cdr >> tmp; ros_message.status_override = tmp ? true : false; } // Member: status_rc_ok { uint8_t tmp; cdr >> tmp; ros_message.status_rc_ok = tmp ? true : false; } // Member: status_rc_ppm { uint8_t tmp; cdr >> tmp; ros_message.status_rc_ppm = tmp ? true : false; } // Member: status_rc_dsm { uint8_t tmp; cdr >> tmp; ros_message.status_rc_dsm = tmp ? true : false; } // Member: status_rc_sbus { uint8_t tmp; cdr >> tmp; ros_message.status_rc_sbus = tmp ? true : false; } // Member: status_fmu_ok { uint8_t tmp; cdr >> tmp; ros_message.status_fmu_ok = tmp ? true : false; } // Member: status_raw_pwm { uint8_t tmp; cdr >> tmp; ros_message.status_raw_pwm = tmp ? true : false; } // Member: status_mixer_ok { uint8_t tmp; cdr >> tmp; ros_message.status_mixer_ok = tmp ? true : false; } // Member: status_arm_sync { uint8_t tmp; cdr >> tmp; ros_message.status_arm_sync = tmp ? true : false; } // Member: status_init_ok { uint8_t tmp; cdr >> tmp; ros_message.status_init_ok = tmp ? true : false; } // Member: status_failsafe { uint8_t tmp; cdr >> tmp; ros_message.status_failsafe = tmp ? true : false; } // Member: status_safety_off { uint8_t tmp; cdr >> tmp; ros_message.status_safety_off = tmp ? true : false; } // Member: status_fmu_initialized { uint8_t tmp; cdr >> tmp; ros_message.status_fmu_initialized = tmp ? true : false; } // Member: status_rc_st24 { uint8_t tmp; cdr >> tmp; ros_message.status_rc_st24 = tmp ? true : false; } // Member: status_rc_sumd { uint8_t tmp; cdr >> tmp; ros_message.status_rc_sumd = tmp ? true : false; } // Member: alarm_vbatt_low { uint8_t tmp; cdr >> tmp; ros_message.alarm_vbatt_low = tmp ? true : false; } // Member: alarm_temperature { uint8_t tmp; cdr >> tmp; ros_message.alarm_temperature = tmp ? true : false; } // Member: alarm_servo_current { uint8_t tmp; cdr >> tmp; ros_message.alarm_servo_current = tmp ? true : false; } // Member: alarm_acc_current { uint8_t tmp; cdr >> tmp; ros_message.alarm_acc_current = tmp ? true : false; } // Member: alarm_fmu_lost { uint8_t tmp; cdr >> tmp; ros_message.alarm_fmu_lost = tmp ? true : false; } // Member: alarm_rc_lost { uint8_t tmp; cdr >> tmp; ros_message.alarm_rc_lost = tmp ? true : false; } // Member: alarm_pwm_error { uint8_t tmp; cdr >> tmp; ros_message.alarm_pwm_error = tmp ? true : false; } // Member: alarm_vservo_fault { uint8_t tmp; cdr >> tmp; ros_message.alarm_vservo_fault = tmp ? true : false; } // Member: arming_io_arm_ok { uint8_t tmp; cdr >> tmp; ros_message.arming_io_arm_ok = tmp ? true : false; } // Member: arming_fmu_armed { uint8_t tmp; cdr >> tmp; ros_message.arming_fmu_armed = tmp ? true : false; } // Member: arming_fmu_prearmed { uint8_t tmp; cdr >> tmp; ros_message.arming_fmu_prearmed = tmp ? true : false; } // Member: arming_manual_override_ok { uint8_t tmp; cdr >> tmp; ros_message.arming_manual_override_ok = tmp ? true : false; } // Member: arming_failsafe_custom { uint8_t tmp; cdr >> tmp; ros_message.arming_failsafe_custom = tmp ? true : false; } // Member: arming_inair_restart_ok { uint8_t tmp; cdr >> tmp; ros_message.arming_inair_restart_ok = tmp ? true : false; } // Member: arming_always_pwm_enable { uint8_t tmp; cdr >> tmp; ros_message.arming_always_pwm_enable = tmp ? true : false; } // Member: arming_rc_handling_disabled { uint8_t tmp; cdr >> tmp; ros_message.arming_rc_handling_disabled = tmp ? true : false; } // Member: arming_lockdown { uint8_t tmp; cdr >> tmp; ros_message.arming_lockdown = tmp ? true : false; } // Member: arming_force_failsafe { uint8_t tmp; cdr >> tmp; ros_message.arming_force_failsafe = tmp ? true : false; } // Member: arming_termination_failsafe { uint8_t tmp; cdr >> tmp; ros_message.arming_termination_failsafe = tmp ? true : false; } // Member: arming_override_immediate { uint8_t tmp; cdr >> tmp; ros_message.arming_override_immediate = tmp ? true : false; } // Member: actuators { cdr >> ros_message.actuators; } // Member: servos { cdr >> ros_message.servos; } // Member: raw_inputs { cdr >> ros_message.raw_inputs; } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::Px4IoStatus & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: free_memory_bytes { size_t item_size = sizeof(ros_message.free_memory_bytes); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: voltage_v { size_t item_size = sizeof(ros_message.voltage_v); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rssi_v { size_t item_size = sizeof(ros_message.rssi_v); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: status_outputs_armed { size_t item_size = sizeof(ros_message.status_outputs_armed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: status_override { size_t item_size = sizeof(ros_message.status_override); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: status_rc_ok { size_t item_size = sizeof(ros_message.status_rc_ok); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: status_rc_ppm { size_t item_size = sizeof(ros_message.status_rc_ppm); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: status_rc_dsm { size_t item_size = sizeof(ros_message.status_rc_dsm); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: status_rc_sbus { size_t item_size = sizeof(ros_message.status_rc_sbus); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: status_fmu_ok { size_t item_size = sizeof(ros_message.status_fmu_ok); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: status_raw_pwm { size_t item_size = sizeof(ros_message.status_raw_pwm); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: status_mixer_ok { size_t item_size = sizeof(ros_message.status_mixer_ok); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: status_arm_sync { size_t item_size = sizeof(ros_message.status_arm_sync); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: status_init_ok { size_t item_size = sizeof(ros_message.status_init_ok); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: status_failsafe { size_t item_size = sizeof(ros_message.status_failsafe); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: status_safety_off { size_t item_size = sizeof(ros_message.status_safety_off); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: status_fmu_initialized { size_t item_size = sizeof(ros_message.status_fmu_initialized); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: status_rc_st24 { size_t item_size = sizeof(ros_message.status_rc_st24); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: status_rc_sumd { size_t item_size = sizeof(ros_message.status_rc_sumd); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: alarm_vbatt_low { size_t item_size = sizeof(ros_message.alarm_vbatt_low); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: alarm_temperature { size_t item_size = sizeof(ros_message.alarm_temperature); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: alarm_servo_current { size_t item_size = sizeof(ros_message.alarm_servo_current); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: alarm_acc_current { size_t item_size = sizeof(ros_message.alarm_acc_current); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: alarm_fmu_lost { size_t item_size = sizeof(ros_message.alarm_fmu_lost); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: alarm_rc_lost { size_t item_size = sizeof(ros_message.alarm_rc_lost); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: alarm_pwm_error { size_t item_size = sizeof(ros_message.alarm_pwm_error); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: alarm_vservo_fault { size_t item_size = sizeof(ros_message.alarm_vservo_fault); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: arming_io_arm_ok { size_t item_size = sizeof(ros_message.arming_io_arm_ok); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: arming_fmu_armed { size_t item_size = sizeof(ros_message.arming_fmu_armed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: arming_fmu_prearmed { size_t item_size = sizeof(ros_message.arming_fmu_prearmed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: arming_manual_override_ok { size_t item_size = sizeof(ros_message.arming_manual_override_ok); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: arming_failsafe_custom { size_t item_size = sizeof(ros_message.arming_failsafe_custom); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: arming_inair_restart_ok { size_t item_size = sizeof(ros_message.arming_inair_restart_ok); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: arming_always_pwm_enable { size_t item_size = sizeof(ros_message.arming_always_pwm_enable); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: arming_rc_handling_disabled { size_t item_size = sizeof(ros_message.arming_rc_handling_disabled); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: arming_lockdown { size_t item_size = sizeof(ros_message.arming_lockdown); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: arming_force_failsafe { size_t item_size = sizeof(ros_message.arming_force_failsafe); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: arming_termination_failsafe { size_t item_size = sizeof(ros_message.arming_termination_failsafe); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: arming_override_immediate { size_t item_size = sizeof(ros_message.arming_override_immediate); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: actuators { size_t array_size = 8; size_t item_size = sizeof(ros_message.actuators[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: servos { size_t array_size = 8; size_t item_size = sizeof(ros_message.servos[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: raw_inputs { size_t array_size = 18; size_t item_size = sizeof(ros_message.raw_inputs[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_Px4IoStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: free_memory_bytes { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: voltage_v { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: rssi_v { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: status_outputs_armed { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: status_override { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: status_rc_ok { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: status_rc_ppm { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: status_rc_dsm { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: status_rc_sbus { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: status_fmu_ok { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: status_raw_pwm { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: status_mixer_ok { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: status_arm_sync { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: status_init_ok { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: status_failsafe { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: status_safety_off { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: status_fmu_initialized { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: status_rc_st24 { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: status_rc_sumd { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: alarm_vbatt_low { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: alarm_temperature { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: alarm_servo_current { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: alarm_acc_current { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: alarm_fmu_lost { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: alarm_rc_lost { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: alarm_pwm_error { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: alarm_vservo_fault { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: arming_io_arm_ok { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: arming_fmu_armed { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: arming_fmu_prearmed { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: arming_manual_override_ok { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: arming_failsafe_custom { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: arming_inair_restart_ok { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: arming_always_pwm_enable { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: arming_rc_handling_disabled { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: arming_lockdown { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: arming_force_failsafe { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: arming_termination_failsafe { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: arming_override_immediate { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: actuators { size_t array_size = 8; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: servos { size_t array_size = 8; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: raw_inputs { size_t array_size = 18; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } return current_alignment - initial_alignment; } static bool _Px4IoStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::Px4IoStatus *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _Px4IoStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::Px4IoStatus *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _Px4IoStatus__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::Px4IoStatus *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _Px4IoStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_Px4IoStatus(full_bounded, 0); } static message_type_support_callbacks_t _Px4IoStatus__callbacks = { "px4_msgs::msg", "Px4IoStatus", _Px4IoStatus__cdr_serialize, _Px4IoStatus__cdr_deserialize, _Px4IoStatus__get_serialized_size, _Px4IoStatus__max_serialized_size }; static rosidl_message_type_support_t _Px4IoStatus__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_Px4IoStatus__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::Px4IoStatus>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_Px4IoStatus__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, Px4IoStatus)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_Px4IoStatus__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_selector_status.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/EstimatorSelectorStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_SELECTOR_STATUS_H_ #define PX4_MSGS__MSG__ESTIMATOR_SELECTOR_STATUS_H_ #include "px4_msgs/msg/estimator_selector_status__struct.h" #include "px4_msgs/msg/estimator_selector_status__functions.h" #include "px4_msgs/msg/estimator_selector_status__type_support.h" #endif // PX4_MSGS__MSG__ESTIMATOR_SELECTOR_STATUS_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_gps__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/SensorGps.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/sensor_gps__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__SensorGps__init(px4_msgs__msg__SensorGps * msg) { if (!msg) { return false; } // timestamp // device_id // lat // lon // alt // alt_ellipsoid // s_variance_m_s // c_variance_rad // fix_type // eph // epv // hdop // vdop // noise_per_ms // automatic_gain_control // jamming_indicator // jamming_state // vel_m_s // vel_n_m_s // vel_e_m_s // vel_d_m_s // cog_rad // vel_ned_valid // timestamp_time_relative // time_utc_usec // satellites_used // heading // heading_offset return true; } void px4_msgs__msg__SensorGps__fini(px4_msgs__msg__SensorGps * msg) { if (!msg) { return; } // timestamp // device_id // lat // lon // alt // alt_ellipsoid // s_variance_m_s // c_variance_rad // fix_type // eph // epv // hdop // vdop // noise_per_ms // automatic_gain_control // jamming_indicator // jamming_state // vel_m_s // vel_n_m_s // vel_e_m_s // vel_d_m_s // cog_rad // vel_ned_valid // timestamp_time_relative // time_utc_usec // satellites_used // heading // heading_offset } px4_msgs__msg__SensorGps * px4_msgs__msg__SensorGps__create() { px4_msgs__msg__SensorGps * msg = (px4_msgs__msg__SensorGps *)malloc(sizeof(px4_msgs__msg__SensorGps)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__SensorGps)); bool success = px4_msgs__msg__SensorGps__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__SensorGps__destroy(px4_msgs__msg__SensorGps * msg) { if (msg) { px4_msgs__msg__SensorGps__fini(msg); } free(msg); } bool px4_msgs__msg__SensorGps__Sequence__init(px4_msgs__msg__SensorGps__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__SensorGps * data = NULL; if (size) { data = (px4_msgs__msg__SensorGps *)calloc(size, sizeof(px4_msgs__msg__SensorGps)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__SensorGps__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__SensorGps__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__SensorGps__Sequence__fini(px4_msgs__msg__SensorGps__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__SensorGps__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__SensorGps__Sequence * px4_msgs__msg__SensorGps__Sequence__create(size_t size) { px4_msgs__msg__SensorGps__Sequence * array = (px4_msgs__msg__SensorGps__Sequence *)malloc(sizeof(px4_msgs__msg__SensorGps__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__SensorGps__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__SensorGps__Sequence__destroy(px4_msgs__msg__SensorGps__Sequence * array) { if (array) { px4_msgs__msg__SensorGps__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_manual_control_setpoint_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/ManualControlSetpoint.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/manual_control_setpoint__struct.h" #include "px4_msgs/msg/manual_control_setpoint__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__manual_control_setpoint__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[60]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._manual_control_setpoint.ManualControlSetpoint", full_classname_dest, 59) == 0); } px4_msgs__msg__ManualControlSetpoint * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // timestamp_sample PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp_sample"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp_sample = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // data_source PyObject * field = PyObject_GetAttrString(_pymsg, "data_source"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->data_source = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // x PyObject * field = PyObject_GetAttrString(_pymsg, "x"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->x = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // y PyObject * field = PyObject_GetAttrString(_pymsg, "y"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->y = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // z PyObject * field = PyObject_GetAttrString(_pymsg, "z"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->z = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // r PyObject * field = PyObject_GetAttrString(_pymsg, "r"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->r = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // flaps PyObject * field = PyObject_GetAttrString(_pymsg, "flaps"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->flaps = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // aux1 PyObject * field = PyObject_GetAttrString(_pymsg, "aux1"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->aux1 = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // aux2 PyObject * field = PyObject_GetAttrString(_pymsg, "aux2"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->aux2 = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // aux3 PyObject * field = PyObject_GetAttrString(_pymsg, "aux3"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->aux3 = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // aux4 PyObject * field = PyObject_GetAttrString(_pymsg, "aux4"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->aux4 = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // aux5 PyObject * field = PyObject_GetAttrString(_pymsg, "aux5"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->aux5 = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // aux6 PyObject * field = PyObject_GetAttrString(_pymsg, "aux6"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->aux6 = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__manual_control_setpoint__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of ManualControlSetpoint */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._manual_control_setpoint"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "ManualControlSetpoint"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__ManualControlSetpoint * ros_message = (px4_msgs__msg__ManualControlSetpoint *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // timestamp_sample PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp_sample); { int rc = PyObject_SetAttrString(_pymessage, "timestamp_sample", field); Py_DECREF(field); if (rc) { return NULL; } } } { // data_source PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->data_source); { int rc = PyObject_SetAttrString(_pymessage, "data_source", field); Py_DECREF(field); if (rc) { return NULL; } } } { // x PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->x); { int rc = PyObject_SetAttrString(_pymessage, "x", field); Py_DECREF(field); if (rc) { return NULL; } } } { // y PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->y); { int rc = PyObject_SetAttrString(_pymessage, "y", field); Py_DECREF(field); if (rc) { return NULL; } } } { // z PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->z); { int rc = PyObject_SetAttrString(_pymessage, "z", field); Py_DECREF(field); if (rc) { return NULL; } } } { // r PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->r); { int rc = PyObject_SetAttrString(_pymessage, "r", field); Py_DECREF(field); if (rc) { return NULL; } } } { // flaps PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->flaps); { int rc = PyObject_SetAttrString(_pymessage, "flaps", field); Py_DECREF(field); if (rc) { return NULL; } } } { // aux1 PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->aux1); { int rc = PyObject_SetAttrString(_pymessage, "aux1", field); Py_DECREF(field); if (rc) { return NULL; } } } { // aux2 PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->aux2); { int rc = PyObject_SetAttrString(_pymessage, "aux2", field); Py_DECREF(field); if (rc) { return NULL; } } } { // aux3 PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->aux3); { int rc = PyObject_SetAttrString(_pymessage, "aux3", field); Py_DECREF(field); if (rc) { return NULL; } } } { // aux4 PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->aux4); { int rc = PyObject_SetAttrString(_pymessage, "aux4", field); Py_DECREF(field); if (rc) { return NULL; } } } { // aux5 PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->aux5); { int rc = PyObject_SetAttrString(_pymessage, "aux5", field); Py_DECREF(field); if (rc) { return NULL; } } } { // aux6 PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->aux6); { int rc = PyObject_SetAttrString(_pymessage, "aux6", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/logger_status__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/LoggerStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__LOGGER_STATUS__STRUCT_HPP_ #define PX4_MSGS__MSG__LOGGER_STATUS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__LoggerStatus __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__LoggerStatus __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct LoggerStatus_ { using Type = LoggerStatus_<ContainerAllocator>; explicit LoggerStatus_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->type = 0; this->backend = 0; this->total_written_kb = 0.0f; this->write_rate_kb_s = 0.0f; this->dropouts = 0ul; this->message_gaps = 0ul; this->buffer_used_bytes = 0ul; this->buffer_size_bytes = 0ul; this->num_messages = 0; } } explicit LoggerStatus_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->type = 0; this->backend = 0; this->total_written_kb = 0.0f; this->write_rate_kb_s = 0.0f; this->dropouts = 0ul; this->message_gaps = 0ul; this->buffer_used_bytes = 0ul; this->buffer_size_bytes = 0ul; this->num_messages = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _type_type = uint8_t; _type_type type; using _backend_type = uint8_t; _backend_type backend; using _total_written_kb_type = float; _total_written_kb_type total_written_kb; using _write_rate_kb_s_type = float; _write_rate_kb_s_type write_rate_kb_s; using _dropouts_type = uint32_t; _dropouts_type dropouts; using _message_gaps_type = uint32_t; _message_gaps_type message_gaps; using _buffer_used_bytes_type = uint32_t; _buffer_used_bytes_type buffer_used_bytes; using _buffer_size_bytes_type = uint32_t; _buffer_size_bytes_type buffer_size_bytes; using _num_messages_type = uint8_t; _num_messages_type num_messages; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__type( const uint8_t & _arg) { this->type = _arg; return *this; } Type & set__backend( const uint8_t & _arg) { this->backend = _arg; return *this; } Type & set__total_written_kb( const float & _arg) { this->total_written_kb = _arg; return *this; } Type & set__write_rate_kb_s( const float & _arg) { this->write_rate_kb_s = _arg; return *this; } Type & set__dropouts( const uint32_t & _arg) { this->dropouts = _arg; return *this; } Type & set__message_gaps( const uint32_t & _arg) { this->message_gaps = _arg; return *this; } Type & set__buffer_used_bytes( const uint32_t & _arg) { this->buffer_used_bytes = _arg; return *this; } Type & set__buffer_size_bytes( const uint32_t & _arg) { this->buffer_size_bytes = _arg; return *this; } Type & set__num_messages( const uint8_t & _arg) { this->num_messages = _arg; return *this; } // constant declarations static constexpr uint8_t LOGGER_TYPE_FULL = 0u; static constexpr uint8_t LOGGER_TYPE_MISSION = 1u; static constexpr uint8_t BACKEND_FILE = 1u; static constexpr uint8_t BACKEND_MAVLINK = 2u; static constexpr uint8_t BACKEND_ALL = 3u; // pointer types using RawPtr = px4_msgs::msg::LoggerStatus_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::LoggerStatus_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::LoggerStatus_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::LoggerStatus_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::LoggerStatus_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::LoggerStatus_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::LoggerStatus_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::LoggerStatus_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::LoggerStatus_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::LoggerStatus_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__LoggerStatus std::shared_ptr<px4_msgs::msg::LoggerStatus_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__LoggerStatus std::shared_ptr<px4_msgs::msg::LoggerStatus_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const LoggerStatus_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->type != other.type) { return false; } if (this->backend != other.backend) { return false; } if (this->total_written_kb != other.total_written_kb) { return false; } if (this->write_rate_kb_s != other.write_rate_kb_s) { return false; } if (this->dropouts != other.dropouts) { return false; } if (this->message_gaps != other.message_gaps) { return false; } if (this->buffer_used_bytes != other.buffer_used_bytes) { return false; } if (this->buffer_size_bytes != other.buffer_size_bytes) { return false; } if (this->num_messages != other.num_messages) { return false; } return true; } bool operator!=(const LoggerStatus_ & other) const { return !this->operator==(other); } }; // struct LoggerStatus_ // alias to use template instance with default allocator using LoggerStatus = px4_msgs::msg::LoggerStatus_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t LoggerStatus_<ContainerAllocator>::LOGGER_TYPE_FULL; template<typename ContainerAllocator> constexpr uint8_t LoggerStatus_<ContainerAllocator>::LOGGER_TYPE_MISSION; template<typename ContainerAllocator> constexpr uint8_t LoggerStatus_<ContainerAllocator>::BACKEND_FILE; template<typename ContainerAllocator> constexpr uint8_t LoggerStatus_<ContainerAllocator>::BACKEND_MAVLINK; template<typename ContainerAllocator> constexpr uint8_t LoggerStatus_<ContainerAllocator>::BACKEND_ALL; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__LOGGER_STATUS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/debug_vect__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/DebugVect.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__DEBUG_VECT__STRUCT_H_ #define PX4_MSGS__MSG__DEBUG_VECT__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/DebugVect in the package px4_msgs. typedef struct px4_msgs__msg__DebugVect { uint64_t timestamp; uint8_t name[10]; float x; float y; float z; } px4_msgs__msg__DebugVect; // Struct for a sequence of px4_msgs__msg__DebugVect. typedef struct px4_msgs__msg__DebugVect__Sequence { px4_msgs__msg__DebugVect * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__DebugVect__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__DEBUG_VECT__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_mag.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/SensorMag.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_MAG_H_ #define PX4_MSGS__MSG__SENSOR_MAG_H_ #include "px4_msgs/msg/sensor_mag__struct.h" #include "px4_msgs/msg/sensor_mag__functions.h" #include "px4_msgs/msg/sensor_mag__type_support.h" #endif // PX4_MSGS__MSG__SENSOR_MAG_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/wheel_encoders__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/WheelEncoders.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/wheel_encoders__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/wheel_encoders__struct.h" #include "px4_msgs/msg/wheel_encoders__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _WheelEncoders__ros_msg_type = px4_msgs__msg__WheelEncoders; static bool _WheelEncoders__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _WheelEncoders__ros_msg_type * ros_message = static_cast<const _WheelEncoders__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: encoder_position { cdr << ros_message->encoder_position; } // Field name: speed { cdr << ros_message->speed; } // Field name: pulses_per_rev { cdr << ros_message->pulses_per_rev; } return true; } static bool _WheelEncoders__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _WheelEncoders__ros_msg_type * ros_message = static_cast<_WheelEncoders__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: encoder_position { cdr >> ros_message->encoder_position; } // Field name: speed { cdr >> ros_message->speed; } // Field name: pulses_per_rev { cdr >> ros_message->pulses_per_rev; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__WheelEncoders( const void * untyped_ros_message, size_t current_alignment) { const _WheelEncoders__ros_msg_type * ros_message = static_cast<const _WheelEncoders__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name encoder_position { size_t item_size = sizeof(ros_message->encoder_position); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name speed { size_t item_size = sizeof(ros_message->speed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name pulses_per_rev { size_t item_size = sizeof(ros_message->pulses_per_rev); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _WheelEncoders__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__WheelEncoders( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__WheelEncoders( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: encoder_position { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: speed { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: pulses_per_rev { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _WheelEncoders__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__WheelEncoders( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_WheelEncoders = { "px4_msgs::msg", "WheelEncoders", _WheelEncoders__cdr_serialize, _WheelEncoders__cdr_deserialize, _WheelEncoders__get_serialized_size, _WheelEncoders__max_serialized_size }; static rosidl_message_type_support_t _WheelEncoders__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_WheelEncoders, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, WheelEncoders)() { return &_WheelEncoders__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/gimbal_device_attitude_status.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GIMBAL_DEVICE_ATTITUDE_STATUS_HPP_ #define PX4_MSGS__MSG__GIMBAL_DEVICE_ATTITUDE_STATUS_HPP_ #include "px4_msgs/msg/gimbal_device_attitude_status__struct.hpp" #include "px4_msgs/msg/gimbal_device_attitude_status__traits.hpp" #endif // PX4_MSGS__MSG__GIMBAL_DEVICE_ATTITUDE_STATUS_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gps__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/SensorGps.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/sensor_gps__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/sensor_gps__struct.h" #include "px4_msgs/msg/sensor_gps__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _SensorGps__ros_msg_type = px4_msgs__msg__SensorGps; static bool _SensorGps__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _SensorGps__ros_msg_type * ros_message = static_cast<const _SensorGps__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: device_id { cdr << ros_message->device_id; } // Field name: lat { cdr << ros_message->lat; } // Field name: lon { cdr << ros_message->lon; } // Field name: alt { cdr << ros_message->alt; } // Field name: alt_ellipsoid { cdr << ros_message->alt_ellipsoid; } // Field name: s_variance_m_s { cdr << ros_message->s_variance_m_s; } // Field name: c_variance_rad { cdr << ros_message->c_variance_rad; } // Field name: fix_type { cdr << ros_message->fix_type; } // Field name: eph { cdr << ros_message->eph; } // Field name: epv { cdr << ros_message->epv; } // Field name: hdop { cdr << ros_message->hdop; } // Field name: vdop { cdr << ros_message->vdop; } // Field name: noise_per_ms { cdr << ros_message->noise_per_ms; } // Field name: automatic_gain_control { cdr << ros_message->automatic_gain_control; } // Field name: jamming_indicator { cdr << ros_message->jamming_indicator; } // Field name: jamming_state { cdr << ros_message->jamming_state; } // Field name: vel_m_s { cdr << ros_message->vel_m_s; } // Field name: vel_n_m_s { cdr << ros_message->vel_n_m_s; } // Field name: vel_e_m_s { cdr << ros_message->vel_e_m_s; } // Field name: vel_d_m_s { cdr << ros_message->vel_d_m_s; } // Field name: cog_rad { cdr << ros_message->cog_rad; } // Field name: vel_ned_valid { cdr << (ros_message->vel_ned_valid ? true : false); } // Field name: timestamp_time_relative { cdr << ros_message->timestamp_time_relative; } // Field name: time_utc_usec { cdr << ros_message->time_utc_usec; } // Field name: satellites_used { cdr << ros_message->satellites_used; } // Field name: heading { cdr << ros_message->heading; } // Field name: heading_offset { cdr << ros_message->heading_offset; } return true; } static bool _SensorGps__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _SensorGps__ros_msg_type * ros_message = static_cast<_SensorGps__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: device_id { cdr >> ros_message->device_id; } // Field name: lat { cdr >> ros_message->lat; } // Field name: lon { cdr >> ros_message->lon; } // Field name: alt { cdr >> ros_message->alt; } // Field name: alt_ellipsoid { cdr >> ros_message->alt_ellipsoid; } // Field name: s_variance_m_s { cdr >> ros_message->s_variance_m_s; } // Field name: c_variance_rad { cdr >> ros_message->c_variance_rad; } // Field name: fix_type { cdr >> ros_message->fix_type; } // Field name: eph { cdr >> ros_message->eph; } // Field name: epv { cdr >> ros_message->epv; } // Field name: hdop { cdr >> ros_message->hdop; } // Field name: vdop { cdr >> ros_message->vdop; } // Field name: noise_per_ms { cdr >> ros_message->noise_per_ms; } // Field name: automatic_gain_control { cdr >> ros_message->automatic_gain_control; } // Field name: jamming_indicator { cdr >> ros_message->jamming_indicator; } // Field name: jamming_state { cdr >> ros_message->jamming_state; } // Field name: vel_m_s { cdr >> ros_message->vel_m_s; } // Field name: vel_n_m_s { cdr >> ros_message->vel_n_m_s; } // Field name: vel_e_m_s { cdr >> ros_message->vel_e_m_s; } // Field name: vel_d_m_s { cdr >> ros_message->vel_d_m_s; } // Field name: cog_rad { cdr >> ros_message->cog_rad; } // Field name: vel_ned_valid { uint8_t tmp; cdr >> tmp; ros_message->vel_ned_valid = tmp ? true : false; } // Field name: timestamp_time_relative { cdr >> ros_message->timestamp_time_relative; } // Field name: time_utc_usec { cdr >> ros_message->time_utc_usec; } // Field name: satellites_used { cdr >> ros_message->satellites_used; } // Field name: heading { cdr >> ros_message->heading; } // Field name: heading_offset { cdr >> ros_message->heading_offset; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__SensorGps( const void * untyped_ros_message, size_t current_alignment) { const _SensorGps__ros_msg_type * ros_message = static_cast<const _SensorGps__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name device_id { size_t item_size = sizeof(ros_message->device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name lat { size_t item_size = sizeof(ros_message->lat); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name lon { size_t item_size = sizeof(ros_message->lon); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name alt { size_t item_size = sizeof(ros_message->alt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name alt_ellipsoid { size_t item_size = sizeof(ros_message->alt_ellipsoid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name s_variance_m_s { size_t item_size = sizeof(ros_message->s_variance_m_s); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name c_variance_rad { size_t item_size = sizeof(ros_message->c_variance_rad); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name fix_type { size_t item_size = sizeof(ros_message->fix_type); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name eph { size_t item_size = sizeof(ros_message->eph); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name epv { size_t item_size = sizeof(ros_message->epv); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name hdop { size_t item_size = sizeof(ros_message->hdop); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vdop { size_t item_size = sizeof(ros_message->vdop); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name noise_per_ms { size_t item_size = sizeof(ros_message->noise_per_ms); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name automatic_gain_control { size_t item_size = sizeof(ros_message->automatic_gain_control); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name jamming_indicator { size_t item_size = sizeof(ros_message->jamming_indicator); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name jamming_state { size_t item_size = sizeof(ros_message->jamming_state); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vel_m_s { size_t item_size = sizeof(ros_message->vel_m_s); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vel_n_m_s { size_t item_size = sizeof(ros_message->vel_n_m_s); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vel_e_m_s { size_t item_size = sizeof(ros_message->vel_e_m_s); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vel_d_m_s { size_t item_size = sizeof(ros_message->vel_d_m_s); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cog_rad { size_t item_size = sizeof(ros_message->cog_rad); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vel_ned_valid { size_t item_size = sizeof(ros_message->vel_ned_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name timestamp_time_relative { size_t item_size = sizeof(ros_message->timestamp_time_relative); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name time_utc_usec { size_t item_size = sizeof(ros_message->time_utc_usec); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name satellites_used { size_t item_size = sizeof(ros_message->satellites_used); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name heading { size_t item_size = sizeof(ros_message->heading); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name heading_offset { size_t item_size = sizeof(ros_message->heading_offset); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _SensorGps__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__SensorGps( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__SensorGps( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: lat { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: lon { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: alt { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: alt_ellipsoid { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: s_variance_m_s { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: c_variance_rad { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: fix_type { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: eph { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: epv { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: hdop { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: vdop { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: noise_per_ms { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: automatic_gain_control { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: jamming_indicator { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: jamming_state { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: vel_m_s { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: vel_n_m_s { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: vel_e_m_s { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: vel_d_m_s { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: cog_rad { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: vel_ned_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: timestamp_time_relative { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: time_utc_usec { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: satellites_used { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: heading { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: heading_offset { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _SensorGps__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__SensorGps( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_SensorGps = { "px4_msgs::msg", "SensorGps", _SensorGps__cdr_serialize, _SensorGps__cdr_deserialize, _SensorGps__get_serialized_size, _SensorGps__max_serialized_size }; static rosidl_message_type_support_t _SensorGps__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_SensorGps, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, SensorGps)() { return &_SensorGps__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_status__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_status__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__VehicleStatus__init(px4_msgs__msg__VehicleStatus * msg) { if (!msg) { return false; } // timestamp // nav_state // nav_state_timestamp // arming_state // hil_state // failsafe // failsafe_timestamp // system_type // system_id // component_id // vehicle_type // is_vtol // is_vtol_tailsitter // vtol_fw_permanent_stab // in_transition_mode // in_transition_to_fw // rc_signal_lost // rc_input_mode // data_link_lost // data_link_lost_counter // high_latency_data_link_lost // engine_failure // mission_failure // failure_detector_status // onboard_control_sensors_present // onboard_control_sensors_enabled // onboard_control_sensors_health // latest_arming_reason // latest_disarming_reason // armed_time // takeoff_time return true; } void px4_msgs__msg__VehicleStatus__fini(px4_msgs__msg__VehicleStatus * msg) { if (!msg) { return; } // timestamp // nav_state // nav_state_timestamp // arming_state // hil_state // failsafe // failsafe_timestamp // system_type // system_id // component_id // vehicle_type // is_vtol // is_vtol_tailsitter // vtol_fw_permanent_stab // in_transition_mode // in_transition_to_fw // rc_signal_lost // rc_input_mode // data_link_lost // data_link_lost_counter // high_latency_data_link_lost // engine_failure // mission_failure // failure_detector_status // onboard_control_sensors_present // onboard_control_sensors_enabled // onboard_control_sensors_health // latest_arming_reason // latest_disarming_reason // armed_time // takeoff_time } px4_msgs__msg__VehicleStatus * px4_msgs__msg__VehicleStatus__create() { px4_msgs__msg__VehicleStatus * msg = (px4_msgs__msg__VehicleStatus *)malloc(sizeof(px4_msgs__msg__VehicleStatus)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleStatus)); bool success = px4_msgs__msg__VehicleStatus__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleStatus__destroy(px4_msgs__msg__VehicleStatus * msg) { if (msg) { px4_msgs__msg__VehicleStatus__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleStatus__Sequence__init(px4_msgs__msg__VehicleStatus__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleStatus * data = NULL; if (size) { data = (px4_msgs__msg__VehicleStatus *)calloc(size, sizeof(px4_msgs__msg__VehicleStatus)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleStatus__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleStatus__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleStatus__Sequence__fini(px4_msgs__msg__VehicleStatus__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleStatus__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleStatus__Sequence * px4_msgs__msg__VehicleStatus__Sequence__create(size_t size) { px4_msgs__msg__VehicleStatus__Sequence * array = (px4_msgs__msg__VehicleStatus__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleStatus__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleStatus__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleStatus__Sequence__destroy(px4_msgs__msg__VehicleStatus__Sequence * array) { if (array) { px4_msgs__msg__VehicleStatus__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/sensor_selection__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/SensorSelection.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_SELECTION__STRUCT_HPP_ #define PX4_MSGS__MSG__SENSOR_SELECTION__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__SensorSelection __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__SensorSelection __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct SensorSelection_ { using Type = SensorSelection_<ContainerAllocator>; explicit SensorSelection_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->accel_device_id = 0ul; this->gyro_device_id = 0ul; } } explicit SensorSelection_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->accel_device_id = 0ul; this->gyro_device_id = 0ul; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _accel_device_id_type = uint32_t; _accel_device_id_type accel_device_id; using _gyro_device_id_type = uint32_t; _gyro_device_id_type gyro_device_id; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__accel_device_id( const uint32_t & _arg) { this->accel_device_id = _arg; return *this; } Type & set__gyro_device_id( const uint32_t & _arg) { this->gyro_device_id = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::SensorSelection_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::SensorSelection_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::SensorSelection_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::SensorSelection_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::SensorSelection_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::SensorSelection_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::SensorSelection_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::SensorSelection_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::SensorSelection_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::SensorSelection_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__SensorSelection std::shared_ptr<px4_msgs::msg::SensorSelection_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__SensorSelection std::shared_ptr<px4_msgs::msg::SensorSelection_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const SensorSelection_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->accel_device_id != other.accel_device_id) { return false; } if (this->gyro_device_id != other.gyro_device_id) { return false; } return true; } bool operator!=(const SensorSelection_ & other) const { return !this->operator==(other); } }; // struct SensorSelection_ // alias to use template instance with default allocator using SensorSelection = px4_msgs::msg::SensorSelection_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__SENSOR_SELECTION__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_landing_target_innovations.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/LandingTargetInnovations.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_LandingTargetInnovations(type): """Metaclass of message 'LandingTargetInnovations'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.LandingTargetInnovations') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__landing_target_innovations cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__landing_target_innovations cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__landing_target_innovations cls._TYPE_SUPPORT = module.type_support_msg__msg__landing_target_innovations cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__landing_target_innovations @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class LandingTargetInnovations(metaclass=Metaclass_LandingTargetInnovations): """Message class 'LandingTargetInnovations'.""" __slots__ = [ '_timestamp', '_innov_x', '_innov_y', '_innov_cov_x', '_innov_cov_y', ] _fields_and_field_types = { 'timestamp': 'uint64', 'innov_x': 'float', 'innov_y': 'float', 'innov_cov_x': 'float', 'innov_cov_y': 'float', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.innov_x = kwargs.get('innov_x', float()) self.innov_y = kwargs.get('innov_y', float()) self.innov_cov_x = kwargs.get('innov_cov_x', float()) self.innov_cov_y = kwargs.get('innov_cov_y', float()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.innov_x != other.innov_x: return False if self.innov_y != other.innov_y: return False if self.innov_cov_x != other.innov_cov_x: return False if self.innov_cov_y != other.innov_cov_y: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def innov_x(self): """Message field 'innov_x'.""" return self._innov_x @innov_x.setter def innov_x(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'innov_x' field must be of type 'float'" self._innov_x = value @property def innov_y(self): """Message field 'innov_y'.""" return self._innov_y @innov_y.setter def innov_y(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'innov_y' field must be of type 'float'" self._innov_y = value @property def innov_cov_x(self): """Message field 'innov_cov_x'.""" return self._innov_cov_x @innov_cov_x.setter def innov_cov_x(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'innov_cov_x' field must be of type 'float'" self._innov_cov_x = value @property def innov_cov_y(self): """Message field 'innov_cov_y'.""" return self._innov_cov_y @innov_cov_y.setter def innov_cov_y(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'innov_cov_y' field must be of type 'float'" self._innov_cov_y = value <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/timesync__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/Timesync.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/timesync__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/timesync__functions.h" #include "px4_msgs/msg/timesync__struct.h" #ifdef __cplusplus extern "C" { #endif void Timesync__rosidl_typesupport_introspection_c__Timesync_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__Timesync__init(message_memory); } void Timesync__rosidl_typesupport_introspection_c__Timesync_fini_function(void * message_memory) { px4_msgs__msg__Timesync__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember Timesync__rosidl_typesupport_introspection_c__Timesync_message_member_array[5] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Timesync, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "sys_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Timesync, sys_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "seq", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Timesync, seq), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "tc1", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Timesync, tc1), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ts1", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Timesync, ts1), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers Timesync__rosidl_typesupport_introspection_c__Timesync_message_members = { "px4_msgs__msg", // message namespace "Timesync", // message name 5, // number of fields sizeof(px4_msgs__msg__Timesync), Timesync__rosidl_typesupport_introspection_c__Timesync_message_member_array, // message members Timesync__rosidl_typesupport_introspection_c__Timesync_init_function, // function to initialize message memory (memory has to be allocated) Timesync__rosidl_typesupport_introspection_c__Timesync_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t Timesync__rosidl_typesupport_introspection_c__Timesync_message_type_support_handle = { 0, &Timesync__rosidl_typesupport_introspection_c__Timesync_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, Timesync)() { if (!Timesync__rosidl_typesupport_introspection_c__Timesync_message_type_support_handle.typesupport_identifier) { Timesync__rosidl_typesupport_introspection_c__Timesync_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &Timesync__rosidl_typesupport_introspection_c__Timesync_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/mag_worker_data__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/MagWorkerData.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/mag_worker_data__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void MagWorkerData_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::MagWorkerData(_init); } void MagWorkerData_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::MagWorkerData *>(message_memory); typed_message->~MagWorkerData(); } size_t size_function__MagWorkerData__calibration_counter_total(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__MagWorkerData__calibration_counter_total(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint32_t, 4> *>(untyped_member); return &member[index]; } void * get_function__MagWorkerData__calibration_counter_total(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint32_t, 4> *>(untyped_member); return &member[index]; } size_t size_function__MagWorkerData__side_data_collected(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__MagWorkerData__side_data_collected(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<bool, 4> *>(untyped_member); return &member[index]; } void * get_function__MagWorkerData__side_data_collected(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<bool, 4> *>(untyped_member); return &member[index]; } size_t size_function__MagWorkerData__x(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__MagWorkerData__x(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 4> *>(untyped_member); return &member[index]; } void * get_function__MagWorkerData__x(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 4> *>(untyped_member); return &member[index]; } size_t size_function__MagWorkerData__y(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__MagWorkerData__y(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 4> *>(untyped_member); return &member[index]; } void * get_function__MagWorkerData__y(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 4> *>(untyped_member); return &member[index]; } size_t size_function__MagWorkerData__z(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__MagWorkerData__z(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 4> *>(untyped_member); return &member[index]; } void * get_function__MagWorkerData__z(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 4> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember MagWorkerData_message_member_array[10] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::MagWorkerData, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::MagWorkerData, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "done_count", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::MagWorkerData, done_count), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "calibration_points_perside", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::MagWorkerData, calibration_points_perside), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "calibration_interval_perside_us", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::MagWorkerData, calibration_interval_perside_us), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "calibration_counter_total", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::MagWorkerData, calibration_counter_total), // bytes offset in struct nullptr, // default value size_function__MagWorkerData__calibration_counter_total, // size() function pointer get_const_function__MagWorkerData__calibration_counter_total, // get_const(index) function pointer get_function__MagWorkerData__calibration_counter_total, // get(index) function pointer nullptr // resize(index) function pointer }, { "side_data_collected", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::MagWorkerData, side_data_collected), // bytes offset in struct nullptr, // default value size_function__MagWorkerData__side_data_collected, // size() function pointer get_const_function__MagWorkerData__side_data_collected, // get_const(index) function pointer get_function__MagWorkerData__side_data_collected, // get(index) function pointer nullptr // resize(index) function pointer }, { "x", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::MagWorkerData, x), // bytes offset in struct nullptr, // default value size_function__MagWorkerData__x, // size() function pointer get_const_function__MagWorkerData__x, // get_const(index) function pointer get_function__MagWorkerData__x, // get(index) function pointer nullptr // resize(index) function pointer }, { "y", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::MagWorkerData, y), // bytes offset in struct nullptr, // default value size_function__MagWorkerData__y, // size() function pointer get_const_function__MagWorkerData__y, // get_const(index) function pointer get_function__MagWorkerData__y, // get(index) function pointer nullptr // resize(index) function pointer }, { "z", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::MagWorkerData, z), // bytes offset in struct nullptr, // default value size_function__MagWorkerData__z, // size() function pointer get_const_function__MagWorkerData__z, // get_const(index) function pointer get_function__MagWorkerData__z, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers MagWorkerData_message_members = { "px4_msgs::msg", // message namespace "MagWorkerData", // message name 10, // number of fields sizeof(px4_msgs::msg::MagWorkerData), MagWorkerData_message_member_array, // message members MagWorkerData_init_function, // function to initialize message memory (memory has to be allocated) MagWorkerData_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t MagWorkerData_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &MagWorkerData_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::MagWorkerData>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::MagWorkerData_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, MagWorkerData)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::MagWorkerData_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/iridiumsbd_status__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/IridiumsbdStatus.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/iridiumsbd_status__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/iridiumsbd_status__functions.h" #include "px4_msgs/msg/iridiumsbd_status__struct.h" #ifdef __cplusplus extern "C" { #endif void IridiumsbdStatus__rosidl_typesupport_introspection_c__IridiumsbdStatus_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__IridiumsbdStatus__init(message_memory); } void IridiumsbdStatus__rosidl_typesupport_introspection_c__IridiumsbdStatus_fini_function(void * message_memory) { px4_msgs__msg__IridiumsbdStatus__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember IridiumsbdStatus__rosidl_typesupport_introspection_c__IridiumsbdStatus_message_member_array[15] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__IridiumsbdStatus, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "last_heartbeat", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__IridiumsbdStatus, last_heartbeat), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "tx_buf_write_index", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__IridiumsbdStatus, tx_buf_write_index), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rx_buf_read_index", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__IridiumsbdStatus, rx_buf_read_index), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rx_buf_end_index", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__IridiumsbdStatus, rx_buf_end_index), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "failed_sbd_sessions", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__IridiumsbdStatus, failed_sbd_sessions), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "successful_sbd_sessions", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__IridiumsbdStatus, successful_sbd_sessions), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "num_tx_buf_reset", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__IridiumsbdStatus, num_tx_buf_reset), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "signal_quality", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__IridiumsbdStatus, signal_quality), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "state", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__IridiumsbdStatus, state), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ring_pending", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__IridiumsbdStatus, ring_pending), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "tx_buf_write_pending", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__IridiumsbdStatus, tx_buf_write_pending), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "tx_session_pending", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__IridiumsbdStatus, tx_session_pending), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rx_read_pending", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__IridiumsbdStatus, rx_read_pending), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rx_session_pending", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__IridiumsbdStatus, rx_session_pending), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers IridiumsbdStatus__rosidl_typesupport_introspection_c__IridiumsbdStatus_message_members = { "px4_msgs__msg", // message namespace "IridiumsbdStatus", // message name 15, // number of fields sizeof(px4_msgs__msg__IridiumsbdStatus), IridiumsbdStatus__rosidl_typesupport_introspection_c__IridiumsbdStatus_message_member_array, // message members IridiumsbdStatus__rosidl_typesupport_introspection_c__IridiumsbdStatus_init_function, // function to initialize message memory (memory has to be allocated) IridiumsbdStatus__rosidl_typesupport_introspection_c__IridiumsbdStatus_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t IridiumsbdStatus__rosidl_typesupport_introspection_c__IridiumsbdStatus_message_type_support_handle = { 0, &IridiumsbdStatus__rosidl_typesupport_introspection_c__IridiumsbdStatus_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, IridiumsbdStatus)() { if (!IridiumsbdStatus__rosidl_typesupport_introspection_c__IridiumsbdStatus_message_type_support_handle.typesupport_identifier) { IridiumsbdStatus__rosidl_typesupport_introspection_c__IridiumsbdStatus_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &IridiumsbdStatus__rosidl_typesupport_introspection_c__IridiumsbdStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_navigator_mission_item.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/NavigatorMissionItem.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_NavigatorMissionItem(type): """Metaclass of message 'NavigatorMissionItem'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.NavigatorMissionItem') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__navigator_mission_item cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__navigator_mission_item cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__navigator_mission_item cls._TYPE_SUPPORT = module.type_support_msg__msg__navigator_mission_item cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__navigator_mission_item @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class NavigatorMissionItem(metaclass=Metaclass_NavigatorMissionItem): """Message class 'NavigatorMissionItem'.""" __slots__ = [ '_timestamp', '_instance_count', '_sequence_current', '_nav_cmd', '_latitude', '_longitude', '_time_inside', '_acceptance_radius', '_loiter_radius', '_yaw', '_altitude', '_frame', '_origin', '_loiter_exit_xtrack', '_force_heading', '_altitude_is_relative', '_autocontinue', '_vtol_back_transition', ] _fields_and_field_types = { 'timestamp': 'uint64', 'instance_count': 'uint32', 'sequence_current': 'uint16', 'nav_cmd': 'uint16', 'latitude': 'float', 'longitude': 'float', 'time_inside': 'float', 'acceptance_radius': 'float', 'loiter_radius': 'float', 'yaw': 'float', 'altitude': 'float', 'frame': 'uint8', 'origin': 'uint8', 'loiter_exit_xtrack': 'boolean', 'force_heading': 'boolean', 'altitude_is_relative': 'boolean', 'autocontinue': 'boolean', 'vtol_back_transition': 'boolean', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.instance_count = kwargs.get('instance_count', int()) self.sequence_current = kwargs.get('sequence_current', int()) self.nav_cmd = kwargs.get('nav_cmd', int()) self.latitude = kwargs.get('latitude', float()) self.longitude = kwargs.get('longitude', float()) self.time_inside = kwargs.get('time_inside', float()) self.acceptance_radius = kwargs.get('acceptance_radius', float()) self.loiter_radius = kwargs.get('loiter_radius', float()) self.yaw = kwargs.get('yaw', float()) self.altitude = kwargs.get('altitude', float()) self.frame = kwargs.get('frame', int()) self.origin = kwargs.get('origin', int()) self.loiter_exit_xtrack = kwargs.get('loiter_exit_xtrack', bool()) self.force_heading = kwargs.get('force_heading', bool()) self.altitude_is_relative = kwargs.get('altitude_is_relative', bool()) self.autocontinue = kwargs.get('autocontinue', bool()) self.vtol_back_transition = kwargs.get('vtol_back_transition', bool()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.instance_count != other.instance_count: return False if self.sequence_current != other.sequence_current: return False if self.nav_cmd != other.nav_cmd: return False if self.latitude != other.latitude: return False if self.longitude != other.longitude: return False if self.time_inside != other.time_inside: return False if self.acceptance_radius != other.acceptance_radius: return False if self.loiter_radius != other.loiter_radius: return False if self.yaw != other.yaw: return False if self.altitude != other.altitude: return False if self.frame != other.frame: return False if self.origin != other.origin: return False if self.loiter_exit_xtrack != other.loiter_exit_xtrack: return False if self.force_heading != other.force_heading: return False if self.altitude_is_relative != other.altitude_is_relative: return False if self.autocontinue != other.autocontinue: return False if self.vtol_back_transition != other.vtol_back_transition: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def instance_count(self): """Message field 'instance_count'.""" return self._instance_count @instance_count.setter def instance_count(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'instance_count' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'instance_count' field must be an unsigned integer in [0, 4294967295]" self._instance_count = value @property def sequence_current(self): """Message field 'sequence_current'.""" return self._sequence_current @sequence_current.setter def sequence_current(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'sequence_current' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'sequence_current' field must be an unsigned integer in [0, 65535]" self._sequence_current = value @property def nav_cmd(self): """Message field 'nav_cmd'.""" return self._nav_cmd @nav_cmd.setter def nav_cmd(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'nav_cmd' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'nav_cmd' field must be an unsigned integer in [0, 65535]" self._nav_cmd = value @property def latitude(self): """Message field 'latitude'.""" return self._latitude @latitude.setter def latitude(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'latitude' field must be of type 'float'" self._latitude = value @property def longitude(self): """Message field 'longitude'.""" return self._longitude @longitude.setter def longitude(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'longitude' field must be of type 'float'" self._longitude = value @property def time_inside(self): """Message field 'time_inside'.""" return self._time_inside @time_inside.setter def time_inside(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'time_inside' field must be of type 'float'" self._time_inside = value @property def acceptance_radius(self): """Message field 'acceptance_radius'.""" return self._acceptance_radius @acceptance_radius.setter def acceptance_radius(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'acceptance_radius' field must be of type 'float'" self._acceptance_radius = value @property def loiter_radius(self): """Message field 'loiter_radius'.""" return self._loiter_radius @loiter_radius.setter def loiter_radius(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'loiter_radius' field must be of type 'float'" self._loiter_radius = value @property def yaw(self): """Message field 'yaw'.""" return self._yaw @yaw.setter def yaw(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'yaw' field must be of type 'float'" self._yaw = value @property def altitude(self): """Message field 'altitude'.""" return self._altitude @altitude.setter def altitude(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'altitude' field must be of type 'float'" self._altitude = value @property def frame(self): """Message field 'frame'.""" return self._frame @frame.setter def frame(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'frame' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'frame' field must be an unsigned integer in [0, 255]" self._frame = value @property def origin(self): """Message field 'origin'.""" return self._origin @origin.setter def origin(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'origin' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'origin' field must be an unsigned integer in [0, 255]" self._origin = value @property def loiter_exit_xtrack(self): """Message field 'loiter_exit_xtrack'.""" return self._loiter_exit_xtrack @loiter_exit_xtrack.setter def loiter_exit_xtrack(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'loiter_exit_xtrack' field must be of type 'bool'" self._loiter_exit_xtrack = value @property def force_heading(self): """Message field 'force_heading'.""" return self._force_heading @force_heading.setter def force_heading(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'force_heading' field must be of type 'bool'" self._force_heading = value @property def altitude_is_relative(self): """Message field 'altitude_is_relative'.""" return self._altitude_is_relative @altitude_is_relative.setter def altitude_is_relative(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'altitude_is_relative' field must be of type 'bool'" self._altitude_is_relative = value @property def autocontinue(self): """Message field 'autocontinue'.""" return self._autocontinue @autocontinue.setter def autocontinue(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'autocontinue' field must be of type 'bool'" self._autocontinue = value @property def vtol_back_transition(self): """Message field 'vtol_back_transition'.""" return self._vtol_back_transition @vtol_back_transition.setter def vtol_back_transition(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'vtol_back_transition' field must be of type 'bool'" self._vtol_back_transition = value <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleLocalPosition.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_local_position__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/vehicle_local_position__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::VehicleLocalPosition & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: timestamp_sample cdr << ros_message.timestamp_sample; // Member: xy_valid cdr << (ros_message.xy_valid ? true : false); // Member: z_valid cdr << (ros_message.z_valid ? true : false); // Member: v_xy_valid cdr << (ros_message.v_xy_valid ? true : false); // Member: v_z_valid cdr << (ros_message.v_z_valid ? true : false); // Member: x cdr << ros_message.x; // Member: y cdr << ros_message.y; // Member: z cdr << ros_message.z; // Member: delta_xy { cdr << ros_message.delta_xy; } // Member: xy_reset_counter cdr << ros_message.xy_reset_counter; // Member: delta_z cdr << ros_message.delta_z; // Member: z_reset_counter cdr << ros_message.z_reset_counter; // Member: vx cdr << ros_message.vx; // Member: vy cdr << ros_message.vy; // Member: vz cdr << ros_message.vz; // Member: z_deriv cdr << ros_message.z_deriv; // Member: delta_vxy { cdr << ros_message.delta_vxy; } // Member: vxy_reset_counter cdr << ros_message.vxy_reset_counter; // Member: delta_vz cdr << ros_message.delta_vz; // Member: vz_reset_counter cdr << ros_message.vz_reset_counter; // Member: ax cdr << ros_message.ax; // Member: ay cdr << ros_message.ay; // Member: az cdr << ros_message.az; // Member: heading cdr << ros_message.heading; // Member: delta_heading cdr << ros_message.delta_heading; // Member: heading_reset_counter cdr << ros_message.heading_reset_counter; // Member: xy_global cdr << (ros_message.xy_global ? true : false); // Member: z_global cdr << (ros_message.z_global ? true : false); // Member: ref_timestamp cdr << ros_message.ref_timestamp; // Member: ref_lat cdr << ros_message.ref_lat; // Member: ref_lon cdr << ros_message.ref_lon; // Member: ref_alt cdr << ros_message.ref_alt; // Member: dist_bottom cdr << ros_message.dist_bottom; // Member: dist_bottom_valid cdr << (ros_message.dist_bottom_valid ? true : false); // Member: dist_bottom_sensor_bitfield cdr << ros_message.dist_bottom_sensor_bitfield; // Member: eph cdr << ros_message.eph; // Member: epv cdr << ros_message.epv; // Member: evh cdr << ros_message.evh; // Member: evv cdr << ros_message.evv; // Member: vxy_max cdr << ros_message.vxy_max; // Member: vz_max cdr << ros_message.vz_max; // Member: hagl_min cdr << ros_message.hagl_min; // Member: hagl_max cdr << ros_message.hagl_max; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::VehicleLocalPosition & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: timestamp_sample cdr >> ros_message.timestamp_sample; // Member: xy_valid { uint8_t tmp; cdr >> tmp; ros_message.xy_valid = tmp ? true : false; } // Member: z_valid { uint8_t tmp; cdr >> tmp; ros_message.z_valid = tmp ? true : false; } // Member: v_xy_valid { uint8_t tmp; cdr >> tmp; ros_message.v_xy_valid = tmp ? true : false; } // Member: v_z_valid { uint8_t tmp; cdr >> tmp; ros_message.v_z_valid = tmp ? true : false; } // Member: x cdr >> ros_message.x; // Member: y cdr >> ros_message.y; // Member: z cdr >> ros_message.z; // Member: delta_xy { cdr >> ros_message.delta_xy; } // Member: xy_reset_counter cdr >> ros_message.xy_reset_counter; // Member: delta_z cdr >> ros_message.delta_z; // Member: z_reset_counter cdr >> ros_message.z_reset_counter; // Member: vx cdr >> ros_message.vx; // Member: vy cdr >> ros_message.vy; // Member: vz cdr >> ros_message.vz; // Member: z_deriv cdr >> ros_message.z_deriv; // Member: delta_vxy { cdr >> ros_message.delta_vxy; } // Member: vxy_reset_counter cdr >> ros_message.vxy_reset_counter; // Member: delta_vz cdr >> ros_message.delta_vz; // Member: vz_reset_counter cdr >> ros_message.vz_reset_counter; // Member: ax cdr >> ros_message.ax; // Member: ay cdr >> ros_message.ay; // Member: az cdr >> ros_message.az; // Member: heading cdr >> ros_message.heading; // Member: delta_heading cdr >> ros_message.delta_heading; // Member: heading_reset_counter cdr >> ros_message.heading_reset_counter; // Member: xy_global { uint8_t tmp; cdr >> tmp; ros_message.xy_global = tmp ? true : false; } // Member: z_global { uint8_t tmp; cdr >> tmp; ros_message.z_global = tmp ? true : false; } // Member: ref_timestamp cdr >> ros_message.ref_timestamp; // Member: ref_lat cdr >> ros_message.ref_lat; // Member: ref_lon cdr >> ros_message.ref_lon; // Member: ref_alt cdr >> ros_message.ref_alt; // Member: dist_bottom cdr >> ros_message.dist_bottom; // Member: dist_bottom_valid { uint8_t tmp; cdr >> tmp; ros_message.dist_bottom_valid = tmp ? true : false; } // Member: dist_bottom_sensor_bitfield cdr >> ros_message.dist_bottom_sensor_bitfield; // Member: eph cdr >> ros_message.eph; // Member: epv cdr >> ros_message.epv; // Member: evh cdr >> ros_message.evh; // Member: evv cdr >> ros_message.evv; // Member: vxy_max cdr >> ros_message.vxy_max; // Member: vz_max cdr >> ros_message.vz_max; // Member: hagl_min cdr >> ros_message.hagl_min; // Member: hagl_max cdr >> ros_message.hagl_max; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::VehicleLocalPosition & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: timestamp_sample { size_t item_size = sizeof(ros_message.timestamp_sample); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: xy_valid { size_t item_size = sizeof(ros_message.xy_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: z_valid { size_t item_size = sizeof(ros_message.z_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: v_xy_valid { size_t item_size = sizeof(ros_message.v_xy_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: v_z_valid { size_t item_size = sizeof(ros_message.v_z_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: x { size_t item_size = sizeof(ros_message.x); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: y { size_t item_size = sizeof(ros_message.y); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: z { size_t item_size = sizeof(ros_message.z); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: delta_xy { size_t array_size = 2; size_t item_size = sizeof(ros_message.delta_xy[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: xy_reset_counter { size_t item_size = sizeof(ros_message.xy_reset_counter); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: delta_z { size_t item_size = sizeof(ros_message.delta_z); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: z_reset_counter { size_t item_size = sizeof(ros_message.z_reset_counter); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: vx { size_t item_size = sizeof(ros_message.vx); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: vy { size_t item_size = sizeof(ros_message.vy); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: vz { size_t item_size = sizeof(ros_message.vz); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: z_deriv { size_t item_size = sizeof(ros_message.z_deriv); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: delta_vxy { size_t array_size = 2; size_t item_size = sizeof(ros_message.delta_vxy[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: vxy_reset_counter { size_t item_size = sizeof(ros_message.vxy_reset_counter); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: delta_vz { size_t item_size = sizeof(ros_message.delta_vz); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: vz_reset_counter { size_t item_size = sizeof(ros_message.vz_reset_counter); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: ax { size_t item_size = sizeof(ros_message.ax); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: ay { size_t item_size = sizeof(ros_message.ay); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: az { size_t item_size = sizeof(ros_message.az); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: heading { size_t item_size = sizeof(ros_message.heading); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: delta_heading { size_t item_size = sizeof(ros_message.delta_heading); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: heading_reset_counter { size_t item_size = sizeof(ros_message.heading_reset_counter); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: xy_global { size_t item_size = sizeof(ros_message.xy_global); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: z_global { size_t item_size = sizeof(ros_message.z_global); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: ref_timestamp { size_t item_size = sizeof(ros_message.ref_timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: ref_lat { size_t item_size = sizeof(ros_message.ref_lat); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: ref_lon { size_t item_size = sizeof(ros_message.ref_lon); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: ref_alt { size_t item_size = sizeof(ros_message.ref_alt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: dist_bottom { size_t item_size = sizeof(ros_message.dist_bottom); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: dist_bottom_valid { size_t item_size = sizeof(ros_message.dist_bottom_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: dist_bottom_sensor_bitfield { size_t item_size = sizeof(ros_message.dist_bottom_sensor_bitfield); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: eph { size_t item_size = sizeof(ros_message.eph); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: epv { size_t item_size = sizeof(ros_message.epv); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: evh { size_t item_size = sizeof(ros_message.evh); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: evv { size_t item_size = sizeof(ros_message.evv); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: vxy_max { size_t item_size = sizeof(ros_message.vxy_max); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: vz_max { size_t item_size = sizeof(ros_message.vz_max); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: hagl_min { size_t item_size = sizeof(ros_message.hagl_min); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: hagl_max { size_t item_size = sizeof(ros_message.hagl_max); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_VehicleLocalPosition( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: timestamp_sample { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: xy_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: z_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: v_xy_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: v_z_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: x { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: y { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: z { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: delta_xy { size_t array_size = 2; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: xy_reset_counter { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: delta_z { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: z_reset_counter { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: vx { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: vy { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: vz { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: z_deriv { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: delta_vxy { size_t array_size = 2; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: vxy_reset_counter { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: delta_vz { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: vz_reset_counter { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: ax { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: ay { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: az { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: heading { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: delta_heading { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: heading_reset_counter { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: xy_global { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: z_global { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: ref_timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: ref_lat { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: ref_lon { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: ref_alt { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: dist_bottom { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: dist_bottom_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: dist_bottom_sensor_bitfield { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: eph { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: epv { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: evh { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: evv { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: vxy_max { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: vz_max { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: hagl_min { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: hagl_max { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static bool _VehicleLocalPosition__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::VehicleLocalPosition *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _VehicleLocalPosition__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::VehicleLocalPosition *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _VehicleLocalPosition__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::VehicleLocalPosition *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _VehicleLocalPosition__max_serialized_size(bool & full_bounded) { return max_serialized_size_VehicleLocalPosition(full_bounded, 0); } static message_type_support_callbacks_t _VehicleLocalPosition__callbacks = { "px4_msgs::msg", "VehicleLocalPosition", _VehicleLocalPosition__cdr_serialize, _VehicleLocalPosition__cdr_deserialize, _VehicleLocalPosition__get_serialized_size, _VehicleLocalPosition__max_serialized_size }; static rosidl_message_type_support_t _VehicleLocalPosition__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_VehicleLocalPosition__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleLocalPosition>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_VehicleLocalPosition__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, VehicleLocalPosition)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_VehicleLocalPosition__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/hover_thrust_estimate__rosidl_typesupport_fastrtps_c.h // generated from rosidl_typesupport_fastrtps_c/resource/idl__rosidl_typesupport_fastrtps_c.h.em // with input from px4_msgs:msg/HoverThrustEstimate.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__HOVER_THRUST_ESTIMATE__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #define PX4_MSGS__MSG__HOVER_THRUST_ESTIMATE__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #include <stddef.h> #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__HoverThrustEstimate( const void * untyped_ros_message, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__HoverThrustEstimate( bool & full_bounded, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, HoverThrustEstimate)(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__HOVER_THRUST_ESTIMATE__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_home_position.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/HomePosition.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_HomePosition(type): """Metaclass of message 'HomePosition'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.HomePosition') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__home_position cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__home_position cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__home_position cls._TYPE_SUPPORT = module.type_support_msg__msg__home_position cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__home_position @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class HomePosition(metaclass=Metaclass_HomePosition): """Message class 'HomePosition'.""" __slots__ = [ '_timestamp', '_lat', '_lon', '_alt', '_x', '_y', '_z', '_yaw', '_valid_alt', '_valid_hpos', '_valid_lpos', '_manual_home', ] _fields_and_field_types = { 'timestamp': 'uint64', 'lat': 'double', 'lon': 'double', 'alt': 'float', 'x': 'float', 'y': 'float', 'z': 'float', 'yaw': 'float', 'valid_alt': 'boolean', 'valid_hpos': 'boolean', 'valid_lpos': 'boolean', 'manual_home': 'boolean', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('double'), # noqa: E501 rosidl_parser.definition.BasicType('double'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.lat = kwargs.get('lat', float()) self.lon = kwargs.get('lon', float()) self.alt = kwargs.get('alt', float()) self.x = kwargs.get('x', float()) self.y = kwargs.get('y', float()) self.z = kwargs.get('z', float()) self.yaw = kwargs.get('yaw', float()) self.valid_alt = kwargs.get('valid_alt', bool()) self.valid_hpos = kwargs.get('valid_hpos', bool()) self.valid_lpos = kwargs.get('valid_lpos', bool()) self.manual_home = kwargs.get('manual_home', bool()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.lat != other.lat: return False if self.lon != other.lon: return False if self.alt != other.alt: return False if self.x != other.x: return False if self.y != other.y: return False if self.z != other.z: return False if self.yaw != other.yaw: return False if self.valid_alt != other.valid_alt: return False if self.valid_hpos != other.valid_hpos: return False if self.valid_lpos != other.valid_lpos: return False if self.manual_home != other.manual_home: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def lat(self): """Message field 'lat'.""" return self._lat @lat.setter def lat(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'lat' field must be of type 'float'" self._lat = value @property def lon(self): """Message field 'lon'.""" return self._lon @lon.setter def lon(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'lon' field must be of type 'float'" self._lon = value @property def alt(self): """Message field 'alt'.""" return self._alt @alt.setter def alt(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'alt' field must be of type 'float'" self._alt = value @property def x(self): """Message field 'x'.""" return self._x @x.setter def x(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'x' field must be of type 'float'" self._x = value @property def y(self): """Message field 'y'.""" return self._y @y.setter def y(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'y' field must be of type 'float'" self._y = value @property def z(self): """Message field 'z'.""" return self._z @z.setter def z(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'z' field must be of type 'float'" self._z = value @property def yaw(self): """Message field 'yaw'.""" return self._yaw @yaw.setter def yaw(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'yaw' field must be of type 'float'" self._yaw = value @property def valid_alt(self): """Message field 'valid_alt'.""" return self._valid_alt @valid_alt.setter def valid_alt(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'valid_alt' field must be of type 'bool'" self._valid_alt = value @property def valid_hpos(self): """Message field 'valid_hpos'.""" return self._valid_hpos @valid_hpos.setter def valid_hpos(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'valid_hpos' field must be of type 'bool'" self._valid_hpos = value @property def valid_lpos(self): """Message field 'valid_lpos'.""" return self._valid_lpos @valid_lpos.setter def valid_lpos(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'valid_lpos' field must be of type 'bool'" self._valid_lpos = value @property def manual_home(self): """Message field 'manual_home'.""" return self._manual_home @manual_home.setter def manual_home(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'manual_home' field must be of type 'bool'" self._manual_home = value <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/rate_ctrl_status.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__RATE_CTRL_STATUS_HPP_ #define PX4_MSGS__MSG__RATE_CTRL_STATUS_HPP_ #include "px4_msgs/msg/rate_ctrl_status__struct.hpp" #include "px4_msgs/msg/rate_ctrl_status__traits.hpp" #endif // PX4_MSGS__MSG__RATE_CTRL_STATUS_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/safety__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/Safety.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SAFETY__STRUCT_HPP_ #define PX4_MSGS__MSG__SAFETY__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__Safety __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__Safety __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct Safety_ { using Type = Safety_<ContainerAllocator>; explicit Safety_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->safety_switch_available = false; this->safety_off = false; this->override_available = false; this->override_enabled = false; } } explicit Safety_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->safety_switch_available = false; this->safety_off = false; this->override_available = false; this->override_enabled = false; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _safety_switch_available_type = bool; _safety_switch_available_type safety_switch_available; using _safety_off_type = bool; _safety_off_type safety_off; using _override_available_type = bool; _override_available_type override_available; using _override_enabled_type = bool; _override_enabled_type override_enabled; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__safety_switch_available( const bool & _arg) { this->safety_switch_available = _arg; return *this; } Type & set__safety_off( const bool & _arg) { this->safety_off = _arg; return *this; } Type & set__override_available( const bool & _arg) { this->override_available = _arg; return *this; } Type & set__override_enabled( const bool & _arg) { this->override_enabled = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::Safety_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::Safety_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::Safety_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::Safety_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::Safety_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::Safety_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::Safety_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::Safety_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::Safety_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::Safety_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__Safety std::shared_ptr<px4_msgs::msg::Safety_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__Safety std::shared_ptr<px4_msgs::msg::Safety_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const Safety_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->safety_switch_available != other.safety_switch_available) { return false; } if (this->safety_off != other.safety_off) { return false; } if (this->override_available != other.override_available) { return false; } if (this->override_enabled != other.override_enabled) { return false; } return true; } bool operator!=(const Safety_ & other) const { return !this->operator==(other); } }; // struct Safety_ // alias to use template instance with default allocator using Safety = px4_msgs::msg::Safety_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__SAFETY__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_roi__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/VehicleRoi.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ROI__STRUCT_HPP_ #define PX4_MSGS__MSG__VEHICLE_ROI__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__VehicleRoi __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__VehicleRoi __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct VehicleRoi_ { using Type = VehicleRoi_<ContainerAllocator>; explicit VehicleRoi_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->mode = 0; this->lat = 0.0; this->lon = 0.0; this->alt = 0.0f; this->roll_offset = 0.0f; this->pitch_offset = 0.0f; this->yaw_offset = 0.0f; } } explicit VehicleRoi_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->mode = 0; this->lat = 0.0; this->lon = 0.0; this->alt = 0.0f; this->roll_offset = 0.0f; this->pitch_offset = 0.0f; this->yaw_offset = 0.0f; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _mode_type = uint8_t; _mode_type mode; using _lat_type = double; _lat_type lat; using _lon_type = double; _lon_type lon; using _alt_type = float; _alt_type alt; using _roll_offset_type = float; _roll_offset_type roll_offset; using _pitch_offset_type = float; _pitch_offset_type pitch_offset; using _yaw_offset_type = float; _yaw_offset_type yaw_offset; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__mode( const uint8_t & _arg) { this->mode = _arg; return *this; } Type & set__lat( const double & _arg) { this->lat = _arg; return *this; } Type & set__lon( const double & _arg) { this->lon = _arg; return *this; } Type & set__alt( const float & _arg) { this->alt = _arg; return *this; } Type & set__roll_offset( const float & _arg) { this->roll_offset = _arg; return *this; } Type & set__pitch_offset( const float & _arg) { this->pitch_offset = _arg; return *this; } Type & set__yaw_offset( const float & _arg) { this->yaw_offset = _arg; return *this; } // constant declarations static constexpr uint8_t ROI_NONE = 0u; static constexpr uint8_t ROI_WPNEXT = 1u; static constexpr uint8_t ROI_WPINDEX = 2u; static constexpr uint8_t ROI_LOCATION = 3u; static constexpr uint8_t ROI_TARGET = 4u; static constexpr uint8_t ROI_ENUM_END = 5u; // pointer types using RawPtr = px4_msgs::msg::VehicleRoi_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::VehicleRoi_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::VehicleRoi_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::VehicleRoi_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleRoi_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleRoi_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleRoi_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleRoi_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::VehicleRoi_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::VehicleRoi_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__VehicleRoi std::shared_ptr<px4_msgs::msg::VehicleRoi_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__VehicleRoi std::shared_ptr<px4_msgs::msg::VehicleRoi_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const VehicleRoi_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->mode != other.mode) { return false; } if (this->lat != other.lat) { return false; } if (this->lon != other.lon) { return false; } if (this->alt != other.alt) { return false; } if (this->roll_offset != other.roll_offset) { return false; } if (this->pitch_offset != other.pitch_offset) { return false; } if (this->yaw_offset != other.yaw_offset) { return false; } return true; } bool operator!=(const VehicleRoi_ & other) const { return !this->operator==(other); } }; // struct VehicleRoi_ // alias to use template instance with default allocator using VehicleRoi = px4_msgs::msg::VehicleRoi_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t VehicleRoi_<ContainerAllocator>::ROI_NONE; template<typename ContainerAllocator> constexpr uint8_t VehicleRoi_<ContainerAllocator>::ROI_WPNEXT; template<typename ContainerAllocator> constexpr uint8_t VehicleRoi_<ContainerAllocator>::ROI_WPINDEX; template<typename ContainerAllocator> constexpr uint8_t VehicleRoi_<ContainerAllocator>::ROI_LOCATION; template<typename ContainerAllocator> constexpr uint8_t VehicleRoi_<ContainerAllocator>::ROI_TARGET; template<typename ContainerAllocator> constexpr uint8_t VehicleRoi_<ContainerAllocator>::ROI_ENUM_END; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__VEHICLE_ROI__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/battery_status.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__BATTERY_STATUS_HPP_ #define PX4_MSGS__MSG__BATTERY_STATUS_HPP_ #include "px4_msgs/msg/battery_status__struct.hpp" #include "px4_msgs/msg/battery_status__traits.hpp" #endif // PX4_MSGS__MSG__BATTERY_STATUS_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/wind__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/Wind.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__WIND__STRUCT_H_ #define PX4_MSGS__MSG__WIND__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/Wind in the package px4_msgs. typedef struct px4_msgs__msg__Wind { uint64_t timestamp; uint64_t timestamp_sample; float windspeed_north; float windspeed_east; float variance_north; float variance_east; float tas_innov; float tas_innov_var; float beta_innov; float beta_innov_var; } px4_msgs__msg__Wind; // Struct for a sequence of px4_msgs__msg__Wind. typedef struct px4_msgs__msg__Wind__Sequence { px4_msgs__msg__Wind * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__Wind__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__WIND__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_geofence_result.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/GeofenceResult.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_GeofenceResult(type): """Metaclass of message 'GeofenceResult'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'GF_ACTION_NONE': 0, 'GF_ACTION_WARN': 1, 'GF_ACTION_LOITER': 2, 'GF_ACTION_RTL': 3, 'GF_ACTION_TERMINATE': 4, 'GF_ACTION_LAND': 5, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.GeofenceResult') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__geofence_result cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__geofence_result cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__geofence_result cls._TYPE_SUPPORT = module.type_support_msg__msg__geofence_result cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__geofence_result @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'GF_ACTION_NONE': cls.__constants['GF_ACTION_NONE'], 'GF_ACTION_WARN': cls.__constants['GF_ACTION_WARN'], 'GF_ACTION_LOITER': cls.__constants['GF_ACTION_LOITER'], 'GF_ACTION_RTL': cls.__constants['GF_ACTION_RTL'], 'GF_ACTION_TERMINATE': cls.__constants['GF_ACTION_TERMINATE'], 'GF_ACTION_LAND': cls.__constants['GF_ACTION_LAND'], } @property def GF_ACTION_NONE(self): """Message constant 'GF_ACTION_NONE'.""" return Metaclass_GeofenceResult.__constants['GF_ACTION_NONE'] @property def GF_ACTION_WARN(self): """Message constant 'GF_ACTION_WARN'.""" return Metaclass_GeofenceResult.__constants['GF_ACTION_WARN'] @property def GF_ACTION_LOITER(self): """Message constant 'GF_ACTION_LOITER'.""" return Metaclass_GeofenceResult.__constants['GF_ACTION_LOITER'] @property def GF_ACTION_RTL(self): """Message constant 'GF_ACTION_RTL'.""" return Metaclass_GeofenceResult.__constants['GF_ACTION_RTL'] @property def GF_ACTION_TERMINATE(self): """Message constant 'GF_ACTION_TERMINATE'.""" return Metaclass_GeofenceResult.__constants['GF_ACTION_TERMINATE'] @property def GF_ACTION_LAND(self): """Message constant 'GF_ACTION_LAND'.""" return Metaclass_GeofenceResult.__constants['GF_ACTION_LAND'] class GeofenceResult(metaclass=Metaclass_GeofenceResult): """ Message class 'GeofenceResult'. Constants: GF_ACTION_NONE GF_ACTION_WARN GF_ACTION_LOITER GF_ACTION_RTL GF_ACTION_TERMINATE GF_ACTION_LAND """ __slots__ = [ '_timestamp', '_geofence_violated', '_geofence_action', '_home_required', ] _fields_and_field_types = { 'timestamp': 'uint64', 'geofence_violated': 'boolean', 'geofence_action': 'uint8', 'home_required': 'boolean', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.geofence_violated = kwargs.get('geofence_violated', bool()) self.geofence_action = kwargs.get('geofence_action', int()) self.home_required = kwargs.get('home_required', bool()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.geofence_violated != other.geofence_violated: return False if self.geofence_action != other.geofence_action: return False if self.home_required != other.home_required: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def geofence_violated(self): """Message field 'geofence_violated'.""" return self._geofence_violated @geofence_violated.setter def geofence_violated(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'geofence_violated' field must be of type 'bool'" self._geofence_violated = value @property def geofence_action(self): """Message field 'geofence_action'.""" return self._geofence_action @geofence_action.setter def geofence_action(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'geofence_action' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'geofence_action' field must be an unsigned integer in [0, 255]" self._geofence_action = value @property def home_required(self): """Message field 'home_required'.""" return self._home_required @home_required.setter def home_required(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'home_required' field must be of type 'bool'" self._home_required = value <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_visual_odometry__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleVisualOdometry.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_VISUAL_ODOMETRY__FUNCTIONS_H_ #define PX4_MSGS__MSG__VEHICLE_VISUAL_ODOMETRY__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/vehicle_visual_odometry__struct.h" /// Initialize msg/VehicleVisualOdometry message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__VehicleVisualOdometry * )) before or use * px4_msgs__msg__VehicleVisualOdometry__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__VehicleVisualOdometry__init(px4_msgs__msg__VehicleVisualOdometry * msg); /// Finalize msg/VehicleVisualOdometry message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleVisualOdometry__fini(px4_msgs__msg__VehicleVisualOdometry * msg); /// Create msg/VehicleVisualOdometry message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__VehicleVisualOdometry__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__VehicleVisualOdometry * px4_msgs__msg__VehicleVisualOdometry__create(); /// Destroy msg/VehicleVisualOdometry message. /** * It calls * px4_msgs__msg__VehicleVisualOdometry__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleVisualOdometry__destroy(px4_msgs__msg__VehicleVisualOdometry * msg); /// Initialize array of msg/VehicleVisualOdometry messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__VehicleVisualOdometry__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__VehicleVisualOdometry__Sequence__init(px4_msgs__msg__VehicleVisualOdometry__Sequence * array, size_t size); /// Finalize array of msg/VehicleVisualOdometry messages. /** * It calls * px4_msgs__msg__VehicleVisualOdometry__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleVisualOdometry__Sequence__fini(px4_msgs__msg__VehicleVisualOdometry__Sequence * array); /// Create array of msg/VehicleVisualOdometry messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__VehicleVisualOdometry__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__VehicleVisualOdometry__Sequence * px4_msgs__msg__VehicleVisualOdometry__Sequence__create(size_t size); /// Destroy array of msg/VehicleVisualOdometry messages. /** * It calls * px4_msgs__msg__VehicleVisualOdometry__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleVisualOdometry__Sequence__destroy(px4_msgs__msg__VehicleVisualOdometry__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_VISUAL_ODOMETRY__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/uavcan_parameter_value__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/UavcanParameterValue.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__UAVCAN_PARAMETER_VALUE__STRUCT_H_ #define PX4_MSGS__MSG__UAVCAN_PARAMETER_VALUE__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/UavcanParameterValue in the package px4_msgs. typedef struct px4_msgs__msg__UavcanParameterValue { uint64_t timestamp; uint8_t node_id; uint8_t param_id[17]; int16_t param_index; uint16_t param_count; uint8_t param_type; int64_t int_value; float real_value; } px4_msgs__msg__UavcanParameterValue; // Struct for a sequence of px4_msgs__msg__UavcanParameterValue. typedef struct px4_msgs__msg__UavcanParameterValue__Sequence { px4_msgs__msg__UavcanParameterValue * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__UavcanParameterValue__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__UAVCAN_PARAMETER_VALUE__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/sensor_gps__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/SensorGps.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_GPS__STRUCT_HPP_ #define PX4_MSGS__MSG__SENSOR_GPS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__SensorGps __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__SensorGps __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct SensorGps_ { using Type = SensorGps_<ContainerAllocator>; explicit SensorGps_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->device_id = 0ul; this->lat = 0l; this->lon = 0l; this->alt = 0l; this->alt_ellipsoid = 0l; this->s_variance_m_s = 0.0f; this->c_variance_rad = 0.0f; this->fix_type = 0; this->eph = 0.0f; this->epv = 0.0f; this->hdop = 0.0f; this->vdop = 0.0f; this->noise_per_ms = 0l; this->automatic_gain_control = 0; this->jamming_indicator = 0l; this->jamming_state = 0; this->vel_m_s = 0.0f; this->vel_n_m_s = 0.0f; this->vel_e_m_s = 0.0f; this->vel_d_m_s = 0.0f; this->cog_rad = 0.0f; this->vel_ned_valid = false; this->timestamp_time_relative = 0l; this->time_utc_usec = 0ull; this->satellites_used = 0; this->heading = 0.0f; this->heading_offset = 0.0f; } } explicit SensorGps_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->device_id = 0ul; this->lat = 0l; this->lon = 0l; this->alt = 0l; this->alt_ellipsoid = 0l; this->s_variance_m_s = 0.0f; this->c_variance_rad = 0.0f; this->fix_type = 0; this->eph = 0.0f; this->epv = 0.0f; this->hdop = 0.0f; this->vdop = 0.0f; this->noise_per_ms = 0l; this->automatic_gain_control = 0; this->jamming_indicator = 0l; this->jamming_state = 0; this->vel_m_s = 0.0f; this->vel_n_m_s = 0.0f; this->vel_e_m_s = 0.0f; this->vel_d_m_s = 0.0f; this->cog_rad = 0.0f; this->vel_ned_valid = false; this->timestamp_time_relative = 0l; this->time_utc_usec = 0ull; this->satellites_used = 0; this->heading = 0.0f; this->heading_offset = 0.0f; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _device_id_type = uint32_t; _device_id_type device_id; using _lat_type = int32_t; _lat_type lat; using _lon_type = int32_t; _lon_type lon; using _alt_type = int32_t; _alt_type alt; using _alt_ellipsoid_type = int32_t; _alt_ellipsoid_type alt_ellipsoid; using _s_variance_m_s_type = float; _s_variance_m_s_type s_variance_m_s; using _c_variance_rad_type = float; _c_variance_rad_type c_variance_rad; using _fix_type_type = uint8_t; _fix_type_type fix_type; using _eph_type = float; _eph_type eph; using _epv_type = float; _epv_type epv; using _hdop_type = float; _hdop_type hdop; using _vdop_type = float; _vdop_type vdop; using _noise_per_ms_type = int32_t; _noise_per_ms_type noise_per_ms; using _automatic_gain_control_type = uint16_t; _automatic_gain_control_type automatic_gain_control; using _jamming_indicator_type = int32_t; _jamming_indicator_type jamming_indicator; using _jamming_state_type = uint8_t; _jamming_state_type jamming_state; using _vel_m_s_type = float; _vel_m_s_type vel_m_s; using _vel_n_m_s_type = float; _vel_n_m_s_type vel_n_m_s; using _vel_e_m_s_type = float; _vel_e_m_s_type vel_e_m_s; using _vel_d_m_s_type = float; _vel_d_m_s_type vel_d_m_s; using _cog_rad_type = float; _cog_rad_type cog_rad; using _vel_ned_valid_type = bool; _vel_ned_valid_type vel_ned_valid; using _timestamp_time_relative_type = int32_t; _timestamp_time_relative_type timestamp_time_relative; using _time_utc_usec_type = uint64_t; _time_utc_usec_type time_utc_usec; using _satellites_used_type = uint8_t; _satellites_used_type satellites_used; using _heading_type = float; _heading_type heading; using _heading_offset_type = float; _heading_offset_type heading_offset; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__device_id( const uint32_t & _arg) { this->device_id = _arg; return *this; } Type & set__lat( const int32_t & _arg) { this->lat = _arg; return *this; } Type & set__lon( const int32_t & _arg) { this->lon = _arg; return *this; } Type & set__alt( const int32_t & _arg) { this->alt = _arg; return *this; } Type & set__alt_ellipsoid( const int32_t & _arg) { this->alt_ellipsoid = _arg; return *this; } Type & set__s_variance_m_s( const float & _arg) { this->s_variance_m_s = _arg; return *this; } Type & set__c_variance_rad( const float & _arg) { this->c_variance_rad = _arg; return *this; } Type & set__fix_type( const uint8_t & _arg) { this->fix_type = _arg; return *this; } Type & set__eph( const float & _arg) { this->eph = _arg; return *this; } Type & set__epv( const float & _arg) { this->epv = _arg; return *this; } Type & set__hdop( const float & _arg) { this->hdop = _arg; return *this; } Type & set__vdop( const float & _arg) { this->vdop = _arg; return *this; } Type & set__noise_per_ms( const int32_t & _arg) { this->noise_per_ms = _arg; return *this; } Type & set__automatic_gain_control( const uint16_t & _arg) { this->automatic_gain_control = _arg; return *this; } Type & set__jamming_indicator( const int32_t & _arg) { this->jamming_indicator = _arg; return *this; } Type & set__jamming_state( const uint8_t & _arg) { this->jamming_state = _arg; return *this; } Type & set__vel_m_s( const float & _arg) { this->vel_m_s = _arg; return *this; } Type & set__vel_n_m_s( const float & _arg) { this->vel_n_m_s = _arg; return *this; } Type & set__vel_e_m_s( const float & _arg) { this->vel_e_m_s = _arg; return *this; } Type & set__vel_d_m_s( const float & _arg) { this->vel_d_m_s = _arg; return *this; } Type & set__cog_rad( const float & _arg) { this->cog_rad = _arg; return *this; } Type & set__vel_ned_valid( const bool & _arg) { this->vel_ned_valid = _arg; return *this; } Type & set__timestamp_time_relative( const int32_t & _arg) { this->timestamp_time_relative = _arg; return *this; } Type & set__time_utc_usec( const uint64_t & _arg) { this->time_utc_usec = _arg; return *this; } Type & set__satellites_used( const uint8_t & _arg) { this->satellites_used = _arg; return *this; } Type & set__heading( const float & _arg) { this->heading = _arg; return *this; } Type & set__heading_offset( const float & _arg) { this->heading_offset = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::SensorGps_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::SensorGps_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::SensorGps_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::SensorGps_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::SensorGps_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::SensorGps_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::SensorGps_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::SensorGps_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::SensorGps_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::SensorGps_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__SensorGps std::shared_ptr<px4_msgs::msg::SensorGps_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__SensorGps std::shared_ptr<px4_msgs::msg::SensorGps_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const SensorGps_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->device_id != other.device_id) { return false; } if (this->lat != other.lat) { return false; } if (this->lon != other.lon) { return false; } if (this->alt != other.alt) { return false; } if (this->alt_ellipsoid != other.alt_ellipsoid) { return false; } if (this->s_variance_m_s != other.s_variance_m_s) { return false; } if (this->c_variance_rad != other.c_variance_rad) { return false; } if (this->fix_type != other.fix_type) { return false; } if (this->eph != other.eph) { return false; } if (this->epv != other.epv) { return false; } if (this->hdop != other.hdop) { return false; } if (this->vdop != other.vdop) { return false; } if (this->noise_per_ms != other.noise_per_ms) { return false; } if (this->automatic_gain_control != other.automatic_gain_control) { return false; } if (this->jamming_indicator != other.jamming_indicator) { return false; } if (this->jamming_state != other.jamming_state) { return false; } if (this->vel_m_s != other.vel_m_s) { return false; } if (this->vel_n_m_s != other.vel_n_m_s) { return false; } if (this->vel_e_m_s != other.vel_e_m_s) { return false; } if (this->vel_d_m_s != other.vel_d_m_s) { return false; } if (this->cog_rad != other.cog_rad) { return false; } if (this->vel_ned_valid != other.vel_ned_valid) { return false; } if (this->timestamp_time_relative != other.timestamp_time_relative) { return false; } if (this->time_utc_usec != other.time_utc_usec) { return false; } if (this->satellites_used != other.satellites_used) { return false; } if (this->heading != other.heading) { return false; } if (this->heading_offset != other.heading_offset) { return false; } return true; } bool operator!=(const SensorGps_ & other) const { return !this->operator==(other); } }; // struct SensorGps_ // alias to use template instance with default allocator using SensorGps = px4_msgs::msg::SensorGps_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__SENSOR_GPS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/logger_status.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__LOGGER_STATUS_HPP_ #define PX4_MSGS__MSG__LOGGER_STATUS_HPP_ #include "px4_msgs/msg/logger_status__struct.hpp" #include "px4_msgs/msg/logger_status__traits.hpp" #endif // PX4_MSGS__MSG__LOGGER_STATUS_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/gps_inject_data.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GPS_INJECT_DATA_HPP_ #define PX4_MSGS__MSG__GPS_INJECT_DATA_HPP_ #include "px4_msgs/msg/gps_inject_data__struct.hpp" #include "px4_msgs/msg/gps_inject_data__traits.hpp" #endif // PX4_MSGS__MSG__GPS_INJECT_DATA_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_attitude_groundtruth.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleAttitudeGroundtruth.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ATTITUDE_GROUNDTRUTH_H_ #define PX4_MSGS__MSG__VEHICLE_ATTITUDE_GROUNDTRUTH_H_ #include "px4_msgs/msg/vehicle_attitude_groundtruth__struct.h" #include "px4_msgs/msg/vehicle_attitude_groundtruth__functions.h" #include "px4_msgs/msg/vehicle_attitude_groundtruth__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_ATTITUDE_GROUNDTRUTH_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_air_data__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/VehicleAirData.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_air_data__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/vehicle_air_data__struct.h" #include "px4_msgs/msg/vehicle_air_data__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _VehicleAirData__ros_msg_type = px4_msgs__msg__VehicleAirData; static bool _VehicleAirData__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _VehicleAirData__ros_msg_type * ros_message = static_cast<const _VehicleAirData__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: timestamp_sample { cdr << ros_message->timestamp_sample; } // Field name: baro_device_id { cdr << ros_message->baro_device_id; } // Field name: baro_alt_meter { cdr << ros_message->baro_alt_meter; } // Field name: baro_temp_celcius { cdr << ros_message->baro_temp_celcius; } // Field name: baro_pressure_pa { cdr << ros_message->baro_pressure_pa; } // Field name: rho { cdr << ros_message->rho; } return true; } static bool _VehicleAirData__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _VehicleAirData__ros_msg_type * ros_message = static_cast<_VehicleAirData__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: timestamp_sample { cdr >> ros_message->timestamp_sample; } // Field name: baro_device_id { cdr >> ros_message->baro_device_id; } // Field name: baro_alt_meter { cdr >> ros_message->baro_alt_meter; } // Field name: baro_temp_celcius { cdr >> ros_message->baro_temp_celcius; } // Field name: baro_pressure_pa { cdr >> ros_message->baro_pressure_pa; } // Field name: rho { cdr >> ros_message->rho; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__VehicleAirData( const void * untyped_ros_message, size_t current_alignment) { const _VehicleAirData__ros_msg_type * ros_message = static_cast<const _VehicleAirData__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name timestamp_sample { size_t item_size = sizeof(ros_message->timestamp_sample); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name baro_device_id { size_t item_size = sizeof(ros_message->baro_device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name baro_alt_meter { size_t item_size = sizeof(ros_message->baro_alt_meter); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name baro_temp_celcius { size_t item_size = sizeof(ros_message->baro_temp_celcius); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name baro_pressure_pa { size_t item_size = sizeof(ros_message->baro_pressure_pa); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rho { size_t item_size = sizeof(ros_message->rho); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _VehicleAirData__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__VehicleAirData( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__VehicleAirData( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: timestamp_sample { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: baro_device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: baro_alt_meter { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: baro_temp_celcius { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: baro_pressure_pa { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: rho { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _VehicleAirData__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__VehicleAirData( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_VehicleAirData = { "px4_msgs::msg", "VehicleAirData", _VehicleAirData__cdr_serialize, _VehicleAirData__cdr_deserialize, _VehicleAirData__get_serialized_size, _VehicleAirData__max_serialized_size }; static rosidl_message_type_support_t _VehicleAirData__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_VehicleAirData, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, VehicleAirData)() { return &_VehicleAirData__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vtol_vehicle_status__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VtolVehicleStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VTOL_VEHICLE_STATUS__STRUCT_H_ #define PX4_MSGS__MSG__VTOL_VEHICLE_STATUS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'VEHICLE_VTOL_STATE_UNDEFINED'. enum { px4_msgs__msg__VtolVehicleStatus__VEHICLE_VTOL_STATE_UNDEFINED = 0 }; /// Constant 'VEHICLE_VTOL_STATE_TRANSITION_TO_FW'. enum { px4_msgs__msg__VtolVehicleStatus__VEHICLE_VTOL_STATE_TRANSITION_TO_FW = 1 }; /// Constant 'VEHICLE_VTOL_STATE_TRANSITION_TO_MC'. enum { px4_msgs__msg__VtolVehicleStatus__VEHICLE_VTOL_STATE_TRANSITION_TO_MC = 2 }; /// Constant 'VEHICLE_VTOL_STATE_MC'. enum { px4_msgs__msg__VtolVehicleStatus__VEHICLE_VTOL_STATE_MC = 3 }; /// Constant 'VEHICLE_VTOL_STATE_FW'. enum { px4_msgs__msg__VtolVehicleStatus__VEHICLE_VTOL_STATE_FW = 4 }; // Struct defined in msg/VtolVehicleStatus in the package px4_msgs. typedef struct px4_msgs__msg__VtolVehicleStatus { uint64_t timestamp; bool vtol_in_rw_mode; bool vtol_in_trans_mode; bool in_transition_to_fw; bool vtol_transition_failsafe; bool fw_permanent_stab; } px4_msgs__msg__VtolVehicleStatus; // Struct for a sequence of px4_msgs__msg__VtolVehicleStatus. typedef struct px4_msgs__msg__VtolVehicleStatus__Sequence { px4_msgs__msg__VtolVehicleStatus * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__VtolVehicleStatus__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VTOL_VEHICLE_STATUS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/airspeed_wind__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/AirspeedWind.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__AIRSPEED_WIND__STRUCT_HPP_ #define PX4_MSGS__MSG__AIRSPEED_WIND__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__AirspeedWind __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__AirspeedWind __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct AirspeedWind_ { using Type = AirspeedWind_<ContainerAllocator>; explicit AirspeedWind_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->windspeed_north = 0.0f; this->windspeed_east = 0.0f; this->variance_north = 0.0f; this->variance_east = 0.0f; this->tas_innov = 0.0f; this->tas_innov_var = 0.0f; this->tas_scale = 0.0f; this->beta_innov = 0.0f; this->beta_innov_var = 0.0f; this->source = 0; } } explicit AirspeedWind_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->windspeed_north = 0.0f; this->windspeed_east = 0.0f; this->variance_north = 0.0f; this->variance_east = 0.0f; this->tas_innov = 0.0f; this->tas_innov_var = 0.0f; this->tas_scale = 0.0f; this->beta_innov = 0.0f; this->beta_innov_var = 0.0f; this->source = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _timestamp_sample_type = uint64_t; _timestamp_sample_type timestamp_sample; using _windspeed_north_type = float; _windspeed_north_type windspeed_north; using _windspeed_east_type = float; _windspeed_east_type windspeed_east; using _variance_north_type = float; _variance_north_type variance_north; using _variance_east_type = float; _variance_east_type variance_east; using _tas_innov_type = float; _tas_innov_type tas_innov; using _tas_innov_var_type = float; _tas_innov_var_type tas_innov_var; using _tas_scale_type = float; _tas_scale_type tas_scale; using _beta_innov_type = float; _beta_innov_type beta_innov; using _beta_innov_var_type = float; _beta_innov_var_type beta_innov_var; using _source_type = uint8_t; _source_type source; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__timestamp_sample( const uint64_t & _arg) { this->timestamp_sample = _arg; return *this; } Type & set__windspeed_north( const float & _arg) { this->windspeed_north = _arg; return *this; } Type & set__windspeed_east( const float & _arg) { this->windspeed_east = _arg; return *this; } Type & set__variance_north( const float & _arg) { this->variance_north = _arg; return *this; } Type & set__variance_east( const float & _arg) { this->variance_east = _arg; return *this; } Type & set__tas_innov( const float & _arg) { this->tas_innov = _arg; return *this; } Type & set__tas_innov_var( const float & _arg) { this->tas_innov_var = _arg; return *this; } Type & set__tas_scale( const float & _arg) { this->tas_scale = _arg; return *this; } Type & set__beta_innov( const float & _arg) { this->beta_innov = _arg; return *this; } Type & set__beta_innov_var( const float & _arg) { this->beta_innov_var = _arg; return *this; } Type & set__source( const uint8_t & _arg) { this->source = _arg; return *this; } // constant declarations static constexpr uint8_t SOURCE_AS_BETA_ONLY = 0u; static constexpr uint8_t SOURCE_AS_SENSOR_1 = 1u; static constexpr uint8_t SOURCE_AS_SENSOR_2 = 2u; static constexpr uint8_t SOURCE_AS_SENSOR_3 = 3u; // pointer types using RawPtr = px4_msgs::msg::AirspeedWind_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::AirspeedWind_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::AirspeedWind_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::AirspeedWind_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::AirspeedWind_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::AirspeedWind_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::AirspeedWind_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::AirspeedWind_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::AirspeedWind_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::AirspeedWind_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__AirspeedWind std::shared_ptr<px4_msgs::msg::AirspeedWind_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__AirspeedWind std::shared_ptr<px4_msgs::msg::AirspeedWind_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const AirspeedWind_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->timestamp_sample != other.timestamp_sample) { return false; } if (this->windspeed_north != other.windspeed_north) { return false; } if (this->windspeed_east != other.windspeed_east) { return false; } if (this->variance_north != other.variance_north) { return false; } if (this->variance_east != other.variance_east) { return false; } if (this->tas_innov != other.tas_innov) { return false; } if (this->tas_innov_var != other.tas_innov_var) { return false; } if (this->tas_scale != other.tas_scale) { return false; } if (this->beta_innov != other.beta_innov) { return false; } if (this->beta_innov_var != other.beta_innov_var) { return false; } if (this->source != other.source) { return false; } return true; } bool operator!=(const AirspeedWind_ & other) const { return !this->operator==(other); } }; // struct AirspeedWind_ // alias to use template instance with default allocator using AirspeedWind = px4_msgs::msg::AirspeedWind_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t AirspeedWind_<ContainerAllocator>::SOURCE_AS_BETA_ONLY; template<typename ContainerAllocator> constexpr uint8_t AirspeedWind_<ContainerAllocator>::SOURCE_AS_SENSOR_1; template<typename ContainerAllocator> constexpr uint8_t AirspeedWind_<ContainerAllocator>::SOURCE_AS_SENSOR_2; template<typename ContainerAllocator> constexpr uint8_t AirspeedWind_<ContainerAllocator>::SOURCE_AS_SENSOR_3; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__AIRSPEED_WIND__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/Airspeed.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/airspeed__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/airspeed__functions.h" #include "px4_msgs/msg/airspeed__struct.h" #ifdef __cplusplus extern "C" { #endif void Airspeed__rosidl_typesupport_introspection_c__Airspeed_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__Airspeed__init(message_memory); } void Airspeed__rosidl_typesupport_introspection_c__Airspeed_fini_function(void * message_memory) { px4_msgs__msg__Airspeed__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember Airspeed__rosidl_typesupport_introspection_c__Airspeed_message_member_array[5] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Airspeed, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "indicated_airspeed_m_s", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Airspeed, indicated_airspeed_m_s), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "true_airspeed_m_s", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Airspeed, true_airspeed_m_s), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "air_temperature_celsius", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Airspeed, air_temperature_celsius), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "confidence", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Airspeed, confidence), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers Airspeed__rosidl_typesupport_introspection_c__Airspeed_message_members = { "px4_msgs__msg", // message namespace "Airspeed", // message name 5, // number of fields sizeof(px4_msgs__msg__Airspeed), Airspeed__rosidl_typesupport_introspection_c__Airspeed_message_member_array, // message members Airspeed__rosidl_typesupport_introspection_c__Airspeed_init_function, // function to initialize message memory (memory has to be allocated) Airspeed__rosidl_typesupport_introspection_c__Airspeed_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t Airspeed__rosidl_typesupport_introspection_c__Airspeed_message_type_support_handle = { 0, &Airspeed__rosidl_typesupport_introspection_c__Airspeed_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, Airspeed)() { if (!Airspeed__rosidl_typesupport_introspection_c__Airspeed_message_type_support_handle.typesupport_identifier) { Airspeed__rosidl_typesupport_introspection_c__Airspeed_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &Airspeed__rosidl_typesupport_introspection_c__Airspeed_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/led_control__rosidl_typesupport_fastrtps_c.h // generated from rosidl_typesupport_fastrtps_c/resource/idl__rosidl_typesupport_fastrtps_c.h.em // with input from px4_msgs:msg/LedControl.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__LED_CONTROL__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #define PX4_MSGS__MSG__LED_CONTROL__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #include <stddef.h> #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__LedControl( const void * untyped_ros_message, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__LedControl( bool & full_bounded, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, LedControl)(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__LED_CONTROL__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ <file_sep>/install/multi_rtd_interfaces/include/multi_rtd_interfaces/msg/robot_trajectory__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from multi_rtd_interfaces:msg/RobotTrajectory.idl // generated code does not contain a copyright notice #ifndef MULTI_RTD_INTERFACES__MSG__ROBOT_TRAJECTORY__STRUCT_HPP_ #define MULTI_RTD_INTERFACES__MSG__ROBOT_TRAJECTORY__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> // Include directives for member types // Member 'trajectory' #include "trajectory_msgs/msg/joint_trajectory__struct.hpp" #ifndef _WIN32 # define DEPRECATED__multi_rtd_interfaces__msg__RobotTrajectory __attribute__((deprecated)) #else # define DEPRECATED__multi_rtd_interfaces__msg__RobotTrajectory __declspec(deprecated) #endif namespace multi_rtd_interfaces { namespace msg { // message struct template<class ContainerAllocator> struct RobotTrajectory_ { using Type = RobotTrajectory_<ContainerAllocator>; explicit RobotTrajectory_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : trajectory(_init) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->robot_name = ""; } } explicit RobotTrajectory_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : robot_name(_alloc), trajectory(_alloc, _init) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->robot_name = ""; } } // field types and members using _robot_name_type = std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other>; _robot_name_type robot_name; using _trajectory_type = trajectory_msgs::msg::JointTrajectory_<ContainerAllocator>; _trajectory_type trajectory; // setters for named parameter idiom Type & set__robot_name( const std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other> & _arg) { this->robot_name = _arg; return *this; } Type & set__trajectory( const trajectory_msgs::msg::JointTrajectory_<ContainerAllocator> & _arg) { this->trajectory = _arg; return *this; } // constant declarations // pointer types using RawPtr = multi_rtd_interfaces::msg::RobotTrajectory_<ContainerAllocator> *; using ConstRawPtr = const multi_rtd_interfaces::msg::RobotTrajectory_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<multi_rtd_interfaces::msg::RobotTrajectory_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<multi_rtd_interfaces::msg::RobotTrajectory_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< multi_rtd_interfaces::msg::RobotTrajectory_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<multi_rtd_interfaces::msg::RobotTrajectory_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< multi_rtd_interfaces::msg::RobotTrajectory_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<multi_rtd_interfaces::msg::RobotTrajectory_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<multi_rtd_interfaces::msg::RobotTrajectory_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<multi_rtd_interfaces::msg::RobotTrajectory_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__multi_rtd_interfaces__msg__RobotTrajectory std::shared_ptr<multi_rtd_interfaces::msg::RobotTrajectory_<ContainerAllocator>> Ptr; typedef DEPRECATED__multi_rtd_interfaces__msg__RobotTrajectory std::shared_ptr<multi_rtd_interfaces::msg::RobotTrajectory_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const RobotTrajectory_ & other) const { if (this->robot_name != other.robot_name) { return false; } if (this->trajectory != other.trajectory) { return false; } return true; } bool operator!=(const RobotTrajectory_ & other) const { return !this->operator==(other); } }; // struct RobotTrajectory_ // alias to use template instance with default allocator using RobotTrajectory = multi_rtd_interfaces::msg::RobotTrajectory_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace multi_rtd_interfaces #endif // MULTI_RTD_INTERFACES__MSG__ROBOT_TRAJECTORY__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_generator_status_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/GeneratorStatus.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/generator_status__struct.h" #include "px4_msgs/msg/generator_status__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__generator_status__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[47]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._generator_status.GeneratorStatus", full_classname_dest, 46) == 0); } px4_msgs__msg__GeneratorStatus * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // status PyObject * field = PyObject_GetAttrString(_pymsg, "status"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->status = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // battery_current PyObject * field = PyObject_GetAttrString(_pymsg, "battery_current"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->battery_current = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // load_current PyObject * field = PyObject_GetAttrString(_pymsg, "load_current"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->load_current = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // power_generated PyObject * field = PyObject_GetAttrString(_pymsg, "power_generated"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->power_generated = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // bus_voltage PyObject * field = PyObject_GetAttrString(_pymsg, "bus_voltage"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->bus_voltage = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // bat_current_setpoint PyObject * field = PyObject_GetAttrString(_pymsg, "bat_current_setpoint"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->bat_current_setpoint = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // runtime PyObject * field = PyObject_GetAttrString(_pymsg, "runtime"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->runtime = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // time_until_maintenance PyObject * field = PyObject_GetAttrString(_pymsg, "time_until_maintenance"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->time_until_maintenance = (int32_t)PyLong_AsLong(field); Py_DECREF(field); } { // generator_speed PyObject * field = PyObject_GetAttrString(_pymsg, "generator_speed"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->generator_speed = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // rectifier_temperature PyObject * field = PyObject_GetAttrString(_pymsg, "rectifier_temperature"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->rectifier_temperature = (int16_t)PyLong_AsLong(field); Py_DECREF(field); } { // generator_temperature PyObject * field = PyObject_GetAttrString(_pymsg, "generator_temperature"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->generator_temperature = (int16_t)PyLong_AsLong(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__generator_status__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of GeneratorStatus */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._generator_status"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "GeneratorStatus"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__GeneratorStatus * ros_message = (px4_msgs__msg__GeneratorStatus *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // status PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->status); { int rc = PyObject_SetAttrString(_pymessage, "status", field); Py_DECREF(field); if (rc) { return NULL; } } } { // battery_current PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->battery_current); { int rc = PyObject_SetAttrString(_pymessage, "battery_current", field); Py_DECREF(field); if (rc) { return NULL; } } } { // load_current PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->load_current); { int rc = PyObject_SetAttrString(_pymessage, "load_current", field); Py_DECREF(field); if (rc) { return NULL; } } } { // power_generated PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->power_generated); { int rc = PyObject_SetAttrString(_pymessage, "power_generated", field); Py_DECREF(field); if (rc) { return NULL; } } } { // bus_voltage PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->bus_voltage); { int rc = PyObject_SetAttrString(_pymessage, "bus_voltage", field); Py_DECREF(field); if (rc) { return NULL; } } } { // bat_current_setpoint PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->bat_current_setpoint); { int rc = PyObject_SetAttrString(_pymessage, "bat_current_setpoint", field); Py_DECREF(field); if (rc) { return NULL; } } } { // runtime PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->runtime); { int rc = PyObject_SetAttrString(_pymessage, "runtime", field); Py_DECREF(field); if (rc) { return NULL; } } } { // time_until_maintenance PyObject * field = NULL; field = PyLong_FromLong(ros_message->time_until_maintenance); { int rc = PyObject_SetAttrString(_pymessage, "time_until_maintenance", field); Py_DECREF(field); if (rc) { return NULL; } } } { // generator_speed PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->generator_speed); { int rc = PyObject_SetAttrString(_pymessage, "generator_speed", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rectifier_temperature PyObject * field = NULL; field = PyLong_FromLong(ros_message->rectifier_temperature); { int rc = PyObject_SetAttrString(_pymessage, "rectifier_temperature", field); Py_DECREF(field); if (rc) { return NULL; } } } { // generator_temperature PyObject * field = NULL; field = PyLong_FromLong(ros_message->generator_temperature); { int rc = PyObject_SetAttrString(_pymessage, "generator_temperature", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleAngularVelocityGroundtruth.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_angular_velocity_groundtruth__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__VehicleAngularVelocityGroundtruth__init(px4_msgs__msg__VehicleAngularVelocityGroundtruth * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // xyz return true; } void px4_msgs__msg__VehicleAngularVelocityGroundtruth__fini(px4_msgs__msg__VehicleAngularVelocityGroundtruth * msg) { if (!msg) { return; } // timestamp // timestamp_sample // xyz } px4_msgs__msg__VehicleAngularVelocityGroundtruth * px4_msgs__msg__VehicleAngularVelocityGroundtruth__create() { px4_msgs__msg__VehicleAngularVelocityGroundtruth * msg = (px4_msgs__msg__VehicleAngularVelocityGroundtruth *)malloc(sizeof(px4_msgs__msg__VehicleAngularVelocityGroundtruth)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleAngularVelocityGroundtruth)); bool success = px4_msgs__msg__VehicleAngularVelocityGroundtruth__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleAngularVelocityGroundtruth__destroy(px4_msgs__msg__VehicleAngularVelocityGroundtruth * msg) { if (msg) { px4_msgs__msg__VehicleAngularVelocityGroundtruth__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleAngularVelocityGroundtruth__Sequence__init(px4_msgs__msg__VehicleAngularVelocityGroundtruth__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleAngularVelocityGroundtruth * data = NULL; if (size) { data = (px4_msgs__msg__VehicleAngularVelocityGroundtruth *)calloc(size, sizeof(px4_msgs__msg__VehicleAngularVelocityGroundtruth)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleAngularVelocityGroundtruth__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleAngularVelocityGroundtruth__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleAngularVelocityGroundtruth__Sequence__fini(px4_msgs__msg__VehicleAngularVelocityGroundtruth__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleAngularVelocityGroundtruth__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleAngularVelocityGroundtruth__Sequence * px4_msgs__msg__VehicleAngularVelocityGroundtruth__Sequence__create(size_t size) { px4_msgs__msg__VehicleAngularVelocityGroundtruth__Sequence * array = (px4_msgs__msg__VehicleAngularVelocityGroundtruth__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleAngularVelocityGroundtruth__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleAngularVelocityGroundtruth__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleAngularVelocityGroundtruth__Sequence__destroy(px4_msgs__msg__VehicleAngularVelocityGroundtruth__Sequence * array) { if (array) { px4_msgs__msg__VehicleAngularVelocityGroundtruth__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_status.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_STATUS_HPP_ #define PX4_MSGS__MSG__VEHICLE_STATUS_HPP_ #include "px4_msgs/msg/vehicle_status__struct.hpp" #include "px4_msgs/msg/vehicle_status__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_STATUS_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/ekf_gps_drift.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__EKF_GPS_DRIFT_HPP_ #define PX4_MSGS__MSG__EKF_GPS_DRIFT_HPP_ #include "px4_msgs/msg/ekf_gps_drift__struct.hpp" #include "px4_msgs/msg/ekf_gps_drift__traits.hpp" #endif // PX4_MSGS__MSG__EKF_GPS_DRIFT_HPP_ <file_sep>/build/px4_msgs/Makefile # CMAKE generated file: DO NOT EDIT! # Generated by "Unix Makefiles" Generator, CMake Version 3.10 # Default target executed when no arguments are given to make. default_target: all .PHONY : default_target # Allow only one "make -f Makefile2" at a time, but pass parallelism. .NOTPARALLEL: #============================================================================= # Special targets provided by cmake. # Disable implicit rules so canonical targets will work. .SUFFIXES: # Remove some rules from gmake that .SUFFIXES does not remove. SUFFIXES = .SUFFIXES: .hpux_make_needs_suffix_list # Suppress display of executed commands. $(VERBOSE).SILENT: # A target that is always out of date. cmake_force: .PHONY : cmake_force #============================================================================= # Set environment variables for the build. # The shell in which to execute make rules. SHELL = /bin/sh # The CMake executable. CMAKE_COMMAND = /usr/bin/cmake # The command to remove a file. RM = /usr/bin/cmake -E remove -f # Escaping for special characters. EQUALS = = # The top-level source directory on which CMake was run. CMAKE_SOURCE_DIR = /home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs # The top-level build directory on which CMake was run. CMAKE_BINARY_DIR = /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_msgs #============================================================================= # Targets provided globally by CMake. # Special rule for the target install/local install/local: preinstall @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake .PHONY : install/local # Special rule for the target install/local install/local/fast: preinstall/fast @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake .PHONY : install/local/fast # Special rule for the target install install: preinstall @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." /usr/bin/cmake -P cmake_install.cmake .PHONY : install # Special rule for the target install install/fast: preinstall/fast @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." /usr/bin/cmake -P cmake_install.cmake .PHONY : install/fast # Special rule for the target list_install_components list_install_components: @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" .PHONY : list_install_components # Special rule for the target list_install_components list_install_components/fast: list_install_components .PHONY : list_install_components/fast # Special rule for the target rebuild_cache rebuild_cache: @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." /usr/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) .PHONY : rebuild_cache # Special rule for the target rebuild_cache rebuild_cache/fast: rebuild_cache .PHONY : rebuild_cache/fast # Special rule for the target edit_cache edit_cache: @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. .PHONY : edit_cache # Special rule for the target edit_cache edit_cache/fast: edit_cache .PHONY : edit_cache/fast # Special rule for the target install/strip install/strip: preinstall @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake .PHONY : install/strip # Special rule for the target install/strip install/strip/fast: preinstall/fast @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake .PHONY : install/strip/fast # Special rule for the target test test: @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..." /usr/bin/ctest --force-new-ctest-process $(ARGS) .PHONY : test # Special rule for the target test test/fast: test .PHONY : test/fast # The main all target all: cmake_check_build_system $(CMAKE_COMMAND) -E cmake_progress_start /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_msgs/CMakeFiles /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_msgs/CMakeFiles/progress.marks $(MAKE) -f CMakeFiles/Makefile2 all $(CMAKE_COMMAND) -E cmake_progress_start /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_msgs/CMakeFiles 0 .PHONY : all # The main clean target clean: $(MAKE) -f CMakeFiles/Makefile2 clean .PHONY : clean # The main clean target clean/fast: clean .PHONY : clean/fast # Prepare targets for installation. preinstall: all $(MAKE) -f CMakeFiles/Makefile2 preinstall .PHONY : preinstall # Prepare targets for installation. preinstall/fast: $(MAKE) -f CMakeFiles/Makefile2 preinstall .PHONY : preinstall/fast # clear depends depend: $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 .PHONY : depend #============================================================================= # Target rules for targets named px4_msgs__rosidl_typesupport_fastrtps_cpp # Build rule for target. px4_msgs__rosidl_typesupport_fastrtps_cpp: cmake_check_build_system $(MAKE) -f CMakeFiles/Makefile2 px4_msgs__rosidl_typesupport_fastrtps_cpp .PHONY : px4_msgs__rosidl_typesupport_fastrtps_cpp # fast build rule for target. px4_msgs__rosidl_typesupport_fastrtps_cpp/fast: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build .PHONY : px4_msgs__rosidl_typesupport_fastrtps_cpp/fast #============================================================================= # Target rules for targets named px4_msgs__cpp # Build rule for target. px4_msgs__cpp: cmake_check_build_system $(MAKE) -f CMakeFiles/Makefile2 px4_msgs__cpp .PHONY : px4_msgs__cpp # fast build rule for target. px4_msgs__cpp/fast: $(MAKE) -f CMakeFiles/px4_msgs__cpp.dir/build.make CMakeFiles/px4_msgs__cpp.dir/build .PHONY : px4_msgs__cpp/fast #============================================================================= # Target rules for targets named uninstall # Build rule for target. uninstall: cmake_check_build_system $(MAKE) -f CMakeFiles/Makefile2 uninstall .PHONY : uninstall # fast build rule for target. uninstall/fast: $(MAKE) -f CMakeFiles/uninstall.dir/build.make CMakeFiles/uninstall.dir/build .PHONY : uninstall/fast #============================================================================= # Target rules for targets named px4_msgs__rosidl_typesupport_c # Build rule for target. px4_msgs__rosidl_typesupport_c: cmake_check_build_system $(MAKE) -f CMakeFiles/Makefile2 px4_msgs__rosidl_typesupport_c .PHONY : px4_msgs__rosidl_typesupport_c # fast build rule for target. px4_msgs__rosidl_typesupport_c/fast: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build .PHONY : px4_msgs__rosidl_typesupport_c/fast #============================================================================= # Target rules for targets named px4_msgs # Build rule for target. px4_msgs: cmake_check_build_system $(MAKE) -f CMakeFiles/Makefile2 px4_msgs .PHONY : px4_msgs # fast build rule for target. px4_msgs/fast: $(MAKE) -f CMakeFiles/px4_msgs.dir/build.make CMakeFiles/px4_msgs.dir/build .PHONY : px4_msgs/fast #============================================================================= # Target rules for targets named px4_msgs_uninstall # Build rule for target. px4_msgs_uninstall: cmake_check_build_system $(MAKE) -f CMakeFiles/Makefile2 px4_msgs_uninstall .PHONY : px4_msgs_uninstall # fast build rule for target. px4_msgs_uninstall/fast: $(MAKE) -f CMakeFiles/px4_msgs_uninstall.dir/build.make CMakeFiles/px4_msgs_uninstall.dir/build .PHONY : px4_msgs_uninstall/fast #============================================================================= # Target rules for targets named px4_msgs__rosidl_generator_c # Build rule for target. px4_msgs__rosidl_generator_c: cmake_check_build_system $(MAKE) -f CMakeFiles/Makefile2 px4_msgs__rosidl_generator_c .PHONY : px4_msgs__rosidl_generator_c # fast build rule for target. px4_msgs__rosidl_generator_c/fast: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/build .PHONY : px4_msgs__rosidl_generator_c/fast #============================================================================= # Target rules for targets named px4_msgs__rosidl_typesupport_c__pyext # Build rule for target. px4_msgs__rosidl_typesupport_c__pyext: cmake_check_build_system $(MAKE) -f CMakeFiles/Makefile2 px4_msgs__rosidl_typesupport_c__pyext .PHONY : px4_msgs__rosidl_typesupport_c__pyext # fast build rule for target. px4_msgs__rosidl_typesupport_c__pyext/fast: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c__pyext.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c__pyext.dir/build .PHONY : px4_msgs__rosidl_typesupport_c__pyext/fast #============================================================================= # Target rules for targets named px4_msgs__rosidl_typesupport_introspection_c # Build rule for target. px4_msgs__rosidl_typesupport_introspection_c: cmake_check_build_system $(MAKE) -f CMakeFiles/Makefile2 px4_msgs__rosidl_typesupport_introspection_c .PHONY : px4_msgs__rosidl_typesupport_introspection_c # fast build rule for target. px4_msgs__rosidl_typesupport_introspection_c/fast: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build .PHONY : px4_msgs__rosidl_typesupport_introspection_c/fast #============================================================================= # Target rules for targets named px4_msgs__python # Build rule for target. px4_msgs__python: cmake_check_build_system $(MAKE) -f CMakeFiles/Makefile2 px4_msgs__python .PHONY : px4_msgs__python # fast build rule for target. px4_msgs__python/fast: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/build .PHONY : px4_msgs__python/fast #============================================================================= # Target rules for targets named px4_msgs__rosidl_typesupport_introspection_cpp # Build rule for target. px4_msgs__rosidl_typesupport_introspection_cpp: cmake_check_build_system $(MAKE) -f CMakeFiles/Makefile2 px4_msgs__rosidl_typesupport_introspection_cpp .PHONY : px4_msgs__rosidl_typesupport_introspection_cpp # fast build rule for target. px4_msgs__rosidl_typesupport_introspection_cpp/fast: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build .PHONY : px4_msgs__rosidl_typesupport_introspection_cpp/fast #============================================================================= # Target rules for targets named px4_msgs__rosidl_typesupport_fastrtps_c # Build rule for target. px4_msgs__rosidl_typesupport_fastrtps_c: cmake_check_build_system $(MAKE) -f CMakeFiles/Makefile2 px4_msgs__rosidl_typesupport_fastrtps_c .PHONY : px4_msgs__rosidl_typesupport_fastrtps_c # fast build rule for target. px4_msgs__rosidl_typesupport_fastrtps_c/fast: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build .PHONY : px4_msgs__rosidl_typesupport_fastrtps_c/fast #============================================================================= # Target rules for targets named px4_msgs__rosidl_typesupport_fastrtps_c__pyext # Build rule for target. px4_msgs__rosidl_typesupport_fastrtps_c__pyext: cmake_check_build_system $(MAKE) -f CMakeFiles/Makefile2 px4_msgs__rosidl_typesupport_fastrtps_c__pyext .PHONY : px4_msgs__rosidl_typesupport_fastrtps_c__pyext # fast build rule for target. px4_msgs__rosidl_typesupport_fastrtps_c__pyext/fast: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c__pyext.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c__pyext.dir/build .PHONY : px4_msgs__rosidl_typesupport_fastrtps_c__pyext/fast #============================================================================= # Target rules for targets named px4_msgs__rosidl_typesupport_cpp # Build rule for target. px4_msgs__rosidl_typesupport_cpp: cmake_check_build_system $(MAKE) -f CMakeFiles/Makefile2 px4_msgs__rosidl_typesupport_cpp .PHONY : px4_msgs__rosidl_typesupport_cpp # fast build rule for target. px4_msgs__rosidl_typesupport_cpp/fast: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build .PHONY : px4_msgs__rosidl_typesupport_cpp/fast #============================================================================= # Target rules for targets named px4_msgs__py # Build rule for target. px4_msgs__py: cmake_check_build_system $(MAKE) -f CMakeFiles/Makefile2 px4_msgs__py .PHONY : px4_msgs__py # fast build rule for target. px4_msgs__py/fast: $(MAKE) -f px4_msgs__py/CMakeFiles/px4_msgs__py.dir/build.make px4_msgs__py/CMakeFiles/px4_msgs__py.dir/build .PHONY : px4_msgs__py/fast rosidl_generator_c/px4_msgs/msg/actuator_armed__functions.o: rosidl_generator_c/px4_msgs/msg/actuator_armed__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_armed__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/actuator_armed__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_armed__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_armed__functions.c.o rosidl_generator_c/px4_msgs/msg/actuator_armed__functions.i: rosidl_generator_c/px4_msgs/msg/actuator_armed__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_armed__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/actuator_armed__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_armed__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_armed__functions.c.i rosidl_generator_c/px4_msgs/msg/actuator_armed__functions.s: rosidl_generator_c/px4_msgs/msg/actuator_armed__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_armed__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/actuator_armed__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_armed__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_armed__functions.c.s rosidl_generator_c/px4_msgs/msg/actuator_controls0__functions.o: rosidl_generator_c/px4_msgs/msg/actuator_controls0__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls0__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/actuator_controls0__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_controls0__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls0__functions.c.o rosidl_generator_c/px4_msgs/msg/actuator_controls0__functions.i: rosidl_generator_c/px4_msgs/msg/actuator_controls0__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls0__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/actuator_controls0__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_controls0__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls0__functions.c.i rosidl_generator_c/px4_msgs/msg/actuator_controls0__functions.s: rosidl_generator_c/px4_msgs/msg/actuator_controls0__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls0__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/actuator_controls0__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_controls0__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls0__functions.c.s rosidl_generator_c/px4_msgs/msg/actuator_controls1__functions.o: rosidl_generator_c/px4_msgs/msg/actuator_controls1__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls1__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/actuator_controls1__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_controls1__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls1__functions.c.o rosidl_generator_c/px4_msgs/msg/actuator_controls1__functions.i: rosidl_generator_c/px4_msgs/msg/actuator_controls1__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls1__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/actuator_controls1__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_controls1__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls1__functions.c.i rosidl_generator_c/px4_msgs/msg/actuator_controls1__functions.s: rosidl_generator_c/px4_msgs/msg/actuator_controls1__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls1__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/actuator_controls1__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_controls1__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls1__functions.c.s rosidl_generator_c/px4_msgs/msg/actuator_controls2__functions.o: rosidl_generator_c/px4_msgs/msg/actuator_controls2__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls2__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/actuator_controls2__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_controls2__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls2__functions.c.o rosidl_generator_c/px4_msgs/msg/actuator_controls2__functions.i: rosidl_generator_c/px4_msgs/msg/actuator_controls2__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls2__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/actuator_controls2__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_controls2__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls2__functions.c.i rosidl_generator_c/px4_msgs/msg/actuator_controls2__functions.s: rosidl_generator_c/px4_msgs/msg/actuator_controls2__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls2__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/actuator_controls2__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_controls2__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls2__functions.c.s rosidl_generator_c/px4_msgs/msg/actuator_controls3__functions.o: rosidl_generator_c/px4_msgs/msg/actuator_controls3__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls3__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/actuator_controls3__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_controls3__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls3__functions.c.o rosidl_generator_c/px4_msgs/msg/actuator_controls3__functions.i: rosidl_generator_c/px4_msgs/msg/actuator_controls3__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls3__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/actuator_controls3__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_controls3__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls3__functions.c.i rosidl_generator_c/px4_msgs/msg/actuator_controls3__functions.s: rosidl_generator_c/px4_msgs/msg/actuator_controls3__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls3__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/actuator_controls3__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_controls3__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls3__functions.c.s rosidl_generator_c/px4_msgs/msg/actuator_controls4__functions.o: rosidl_generator_c/px4_msgs/msg/actuator_controls4__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls4__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/actuator_controls4__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_controls4__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls4__functions.c.o rosidl_generator_c/px4_msgs/msg/actuator_controls4__functions.i: rosidl_generator_c/px4_msgs/msg/actuator_controls4__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls4__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/actuator_controls4__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_controls4__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls4__functions.c.i rosidl_generator_c/px4_msgs/msg/actuator_controls4__functions.s: rosidl_generator_c/px4_msgs/msg/actuator_controls4__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls4__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/actuator_controls4__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_controls4__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls4__functions.c.s rosidl_generator_c/px4_msgs/msg/actuator_controls5__functions.o: rosidl_generator_c/px4_msgs/msg/actuator_controls5__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls5__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/actuator_controls5__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_controls5__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls5__functions.c.o rosidl_generator_c/px4_msgs/msg/actuator_controls5__functions.i: rosidl_generator_c/px4_msgs/msg/actuator_controls5__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls5__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/actuator_controls5__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_controls5__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls5__functions.c.i rosidl_generator_c/px4_msgs/msg/actuator_controls5__functions.s: rosidl_generator_c/px4_msgs/msg/actuator_controls5__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls5__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/actuator_controls5__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_controls5__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls5__functions.c.s rosidl_generator_c/px4_msgs/msg/actuator_controls__functions.o: rosidl_generator_c/px4_msgs/msg/actuator_controls__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/actuator_controls__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_controls__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls__functions.c.o rosidl_generator_c/px4_msgs/msg/actuator_controls__functions.i: rosidl_generator_c/px4_msgs/msg/actuator_controls__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/actuator_controls__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_controls__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls__functions.c.i rosidl_generator_c/px4_msgs/msg/actuator_controls__functions.s: rosidl_generator_c/px4_msgs/msg/actuator_controls__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/actuator_controls__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_controls__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls__functions.c.s rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_fw__functions.o: rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_fw__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_fw__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_fw__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_fw__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_fw__functions.c.o rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_fw__functions.i: rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_fw__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_fw__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_fw__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_fw__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_fw__functions.c.i rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_fw__functions.s: rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_fw__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_fw__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_fw__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_fw__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_fw__functions.c.s rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_mc__functions.o: rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_mc__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_mc__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_mc__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_mc__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_mc__functions.c.o rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_mc__functions.i: rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_mc__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_mc__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_mc__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_mc__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_mc__functions.c.i rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_mc__functions.s: rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_mc__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_mc__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_mc__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_mc__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_mc__functions.c.s rosidl_generator_c/px4_msgs/msg/actuator_outputs__functions.o: rosidl_generator_c/px4_msgs/msg/actuator_outputs__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_outputs__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/actuator_outputs__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_outputs__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_outputs__functions.c.o rosidl_generator_c/px4_msgs/msg/actuator_outputs__functions.i: rosidl_generator_c/px4_msgs/msg/actuator_outputs__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_outputs__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/actuator_outputs__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_outputs__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_outputs__functions.c.i rosidl_generator_c/px4_msgs/msg/actuator_outputs__functions.s: rosidl_generator_c/px4_msgs/msg/actuator_outputs__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_outputs__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/actuator_outputs__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/actuator_outputs__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/actuator_outputs__functions.c.s rosidl_generator_c/px4_msgs/msg/adc_report__functions.o: rosidl_generator_c/px4_msgs/msg/adc_report__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/adc_report__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/adc_report__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/adc_report__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/adc_report__functions.c.o rosidl_generator_c/px4_msgs/msg/adc_report__functions.i: rosidl_generator_c/px4_msgs/msg/adc_report__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/adc_report__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/adc_report__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/adc_report__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/adc_report__functions.c.i rosidl_generator_c/px4_msgs/msg/adc_report__functions.s: rosidl_generator_c/px4_msgs/msg/adc_report__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/adc_report__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/adc_report__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/adc_report__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/adc_report__functions.c.s rosidl_generator_c/px4_msgs/msg/airspeed__functions.o: rosidl_generator_c/px4_msgs/msg/airspeed__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/airspeed__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/airspeed__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/airspeed__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/airspeed__functions.c.o rosidl_generator_c/px4_msgs/msg/airspeed__functions.i: rosidl_generator_c/px4_msgs/msg/airspeed__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/airspeed__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/airspeed__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/airspeed__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/airspeed__functions.c.i rosidl_generator_c/px4_msgs/msg/airspeed__functions.s: rosidl_generator_c/px4_msgs/msg/airspeed__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/airspeed__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/airspeed__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/airspeed__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/airspeed__functions.c.s rosidl_generator_c/px4_msgs/msg/airspeed_validated__functions.o: rosidl_generator_c/px4_msgs/msg/airspeed_validated__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/airspeed_validated__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/airspeed_validated__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/airspeed_validated__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/airspeed_validated__functions.c.o rosidl_generator_c/px4_msgs/msg/airspeed_validated__functions.i: rosidl_generator_c/px4_msgs/msg/airspeed_validated__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/airspeed_validated__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/airspeed_validated__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/airspeed_validated__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/airspeed_validated__functions.c.i rosidl_generator_c/px4_msgs/msg/airspeed_validated__functions.s: rosidl_generator_c/px4_msgs/msg/airspeed_validated__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/airspeed_validated__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/airspeed_validated__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/airspeed_validated__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/airspeed_validated__functions.c.s rosidl_generator_c/px4_msgs/msg/airspeed_wind__functions.o: rosidl_generator_c/px4_msgs/msg/airspeed_wind__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/airspeed_wind__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/airspeed_wind__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/airspeed_wind__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/airspeed_wind__functions.c.o rosidl_generator_c/px4_msgs/msg/airspeed_wind__functions.i: rosidl_generator_c/px4_msgs/msg/airspeed_wind__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/airspeed_wind__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/airspeed_wind__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/airspeed_wind__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/airspeed_wind__functions.c.i rosidl_generator_c/px4_msgs/msg/airspeed_wind__functions.s: rosidl_generator_c/px4_msgs/msg/airspeed_wind__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/airspeed_wind__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/airspeed_wind__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/airspeed_wind__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/airspeed_wind__functions.c.s rosidl_generator_c/px4_msgs/msg/battery_status__functions.o: rosidl_generator_c/px4_msgs/msg/battery_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/battery_status__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/battery_status__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/battery_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/battery_status__functions.c.o rosidl_generator_c/px4_msgs/msg/battery_status__functions.i: rosidl_generator_c/px4_msgs/msg/battery_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/battery_status__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/battery_status__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/battery_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/battery_status__functions.c.i rosidl_generator_c/px4_msgs/msg/battery_status__functions.s: rosidl_generator_c/px4_msgs/msg/battery_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/battery_status__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/battery_status__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/battery_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/battery_status__functions.c.s rosidl_generator_c/px4_msgs/msg/camera_capture__functions.o: rosidl_generator_c/px4_msgs/msg/camera_capture__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/camera_capture__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/camera_capture__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/camera_capture__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/camera_capture__functions.c.o rosidl_generator_c/px4_msgs/msg/camera_capture__functions.i: rosidl_generator_c/px4_msgs/msg/camera_capture__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/camera_capture__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/camera_capture__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/camera_capture__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/camera_capture__functions.c.i rosidl_generator_c/px4_msgs/msg/camera_capture__functions.s: rosidl_generator_c/px4_msgs/msg/camera_capture__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/camera_capture__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/camera_capture__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/camera_capture__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/camera_capture__functions.c.s rosidl_generator_c/px4_msgs/msg/camera_trigger__functions.o: rosidl_generator_c/px4_msgs/msg/camera_trigger__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/camera_trigger__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/camera_trigger__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/camera_trigger__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/camera_trigger__functions.c.o rosidl_generator_c/px4_msgs/msg/camera_trigger__functions.i: rosidl_generator_c/px4_msgs/msg/camera_trigger__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/camera_trigger__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/camera_trigger__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/camera_trigger__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/camera_trigger__functions.c.i rosidl_generator_c/px4_msgs/msg/camera_trigger__functions.s: rosidl_generator_c/px4_msgs/msg/camera_trigger__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/camera_trigger__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/camera_trigger__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/camera_trigger__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/camera_trigger__functions.c.s rosidl_generator_c/px4_msgs/msg/camera_trigger_secondary__functions.o: rosidl_generator_c/px4_msgs/msg/camera_trigger_secondary__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/camera_trigger_secondary__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/camera_trigger_secondary__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/camera_trigger_secondary__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/camera_trigger_secondary__functions.c.o rosidl_generator_c/px4_msgs/msg/camera_trigger_secondary__functions.i: rosidl_generator_c/px4_msgs/msg/camera_trigger_secondary__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/camera_trigger_secondary__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/camera_trigger_secondary__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/camera_trigger_secondary__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/camera_trigger_secondary__functions.c.i rosidl_generator_c/px4_msgs/msg/camera_trigger_secondary__functions.s: rosidl_generator_c/px4_msgs/msg/camera_trigger_secondary__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/camera_trigger_secondary__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/camera_trigger_secondary__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/camera_trigger_secondary__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/camera_trigger_secondary__functions.c.s rosidl_generator_c/px4_msgs/msg/cellular_status__functions.o: rosidl_generator_c/px4_msgs/msg/cellular_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/cellular_status__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/cellular_status__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/cellular_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/cellular_status__functions.c.o rosidl_generator_c/px4_msgs/msg/cellular_status__functions.i: rosidl_generator_c/px4_msgs/msg/cellular_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/cellular_status__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/cellular_status__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/cellular_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/cellular_status__functions.c.i rosidl_generator_c/px4_msgs/msg/cellular_status__functions.s: rosidl_generator_c/px4_msgs/msg/cellular_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/cellular_status__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/cellular_status__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/cellular_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/cellular_status__functions.c.s rosidl_generator_c/px4_msgs/msg/collision_constraints__functions.o: rosidl_generator_c/px4_msgs/msg/collision_constraints__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/collision_constraints__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/collision_constraints__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/collision_constraints__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/collision_constraints__functions.c.o rosidl_generator_c/px4_msgs/msg/collision_constraints__functions.i: rosidl_generator_c/px4_msgs/msg/collision_constraints__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/collision_constraints__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/collision_constraints__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/collision_constraints__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/collision_constraints__functions.c.i rosidl_generator_c/px4_msgs/msg/collision_constraints__functions.s: rosidl_generator_c/px4_msgs/msg/collision_constraints__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/collision_constraints__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/collision_constraints__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/collision_constraints__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/collision_constraints__functions.c.s rosidl_generator_c/px4_msgs/msg/collision_report__functions.o: rosidl_generator_c/px4_msgs/msg/collision_report__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/collision_report__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/collision_report__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/collision_report__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/collision_report__functions.c.o rosidl_generator_c/px4_msgs/msg/collision_report__functions.i: rosidl_generator_c/px4_msgs/msg/collision_report__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/collision_report__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/collision_report__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/collision_report__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/collision_report__functions.c.i rosidl_generator_c/px4_msgs/msg/collision_report__functions.s: rosidl_generator_c/px4_msgs/msg/collision_report__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/collision_report__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/collision_report__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/collision_report__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/collision_report__functions.c.s rosidl_generator_c/px4_msgs/msg/commander_state__functions.o: rosidl_generator_c/px4_msgs/msg/commander_state__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/commander_state__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/commander_state__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/commander_state__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/commander_state__functions.c.o rosidl_generator_c/px4_msgs/msg/commander_state__functions.i: rosidl_generator_c/px4_msgs/msg/commander_state__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/commander_state__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/commander_state__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/commander_state__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/commander_state__functions.c.i rosidl_generator_c/px4_msgs/msg/commander_state__functions.s: rosidl_generator_c/px4_msgs/msg/commander_state__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/commander_state__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/commander_state__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/commander_state__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/commander_state__functions.c.s rosidl_generator_c/px4_msgs/msg/control_allocator_status__functions.o: rosidl_generator_c/px4_msgs/msg/control_allocator_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/control_allocator_status__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/control_allocator_status__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/control_allocator_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/control_allocator_status__functions.c.o rosidl_generator_c/px4_msgs/msg/control_allocator_status__functions.i: rosidl_generator_c/px4_msgs/msg/control_allocator_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/control_allocator_status__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/control_allocator_status__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/control_allocator_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/control_allocator_status__functions.c.i rosidl_generator_c/px4_msgs/msg/control_allocator_status__functions.s: rosidl_generator_c/px4_msgs/msg/control_allocator_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/control_allocator_status__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/control_allocator_status__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/control_allocator_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/control_allocator_status__functions.c.s rosidl_generator_c/px4_msgs/msg/cpuload__functions.o: rosidl_generator_c/px4_msgs/msg/cpuload__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/cpuload__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/cpuload__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/cpuload__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/cpuload__functions.c.o rosidl_generator_c/px4_msgs/msg/cpuload__functions.i: rosidl_generator_c/px4_msgs/msg/cpuload__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/cpuload__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/cpuload__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/cpuload__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/cpuload__functions.c.i rosidl_generator_c/px4_msgs/msg/cpuload__functions.s: rosidl_generator_c/px4_msgs/msg/cpuload__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/cpuload__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/cpuload__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/cpuload__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/cpuload__functions.c.s rosidl_generator_c/px4_msgs/msg/debug_array__functions.o: rosidl_generator_c/px4_msgs/msg/debug_array__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/debug_array__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/debug_array__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/debug_array__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/debug_array__functions.c.o rosidl_generator_c/px4_msgs/msg/debug_array__functions.i: rosidl_generator_c/px4_msgs/msg/debug_array__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/debug_array__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/debug_array__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/debug_array__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/debug_array__functions.c.i rosidl_generator_c/px4_msgs/msg/debug_array__functions.s: rosidl_generator_c/px4_msgs/msg/debug_array__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/debug_array__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/debug_array__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/debug_array__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/debug_array__functions.c.s rosidl_generator_c/px4_msgs/msg/debug_key_value__functions.o: rosidl_generator_c/px4_msgs/msg/debug_key_value__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/debug_key_value__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/debug_key_value__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/debug_key_value__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/debug_key_value__functions.c.o rosidl_generator_c/px4_msgs/msg/debug_key_value__functions.i: rosidl_generator_c/px4_msgs/msg/debug_key_value__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/debug_key_value__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/debug_key_value__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/debug_key_value__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/debug_key_value__functions.c.i rosidl_generator_c/px4_msgs/msg/debug_key_value__functions.s: rosidl_generator_c/px4_msgs/msg/debug_key_value__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/debug_key_value__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/debug_key_value__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/debug_key_value__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/debug_key_value__functions.c.s rosidl_generator_c/px4_msgs/msg/debug_value__functions.o: rosidl_generator_c/px4_msgs/msg/debug_value__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/debug_value__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/debug_value__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/debug_value__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/debug_value__functions.c.o rosidl_generator_c/px4_msgs/msg/debug_value__functions.i: rosidl_generator_c/px4_msgs/msg/debug_value__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/debug_value__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/debug_value__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/debug_value__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/debug_value__functions.c.i rosidl_generator_c/px4_msgs/msg/debug_value__functions.s: rosidl_generator_c/px4_msgs/msg/debug_value__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/debug_value__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/debug_value__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/debug_value__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/debug_value__functions.c.s rosidl_generator_c/px4_msgs/msg/debug_vect__functions.o: rosidl_generator_c/px4_msgs/msg/debug_vect__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/debug_vect__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/debug_vect__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/debug_vect__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/debug_vect__functions.c.o rosidl_generator_c/px4_msgs/msg/debug_vect__functions.i: rosidl_generator_c/px4_msgs/msg/debug_vect__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/debug_vect__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/debug_vect__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/debug_vect__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/debug_vect__functions.c.i rosidl_generator_c/px4_msgs/msg/debug_vect__functions.s: rosidl_generator_c/px4_msgs/msg/debug_vect__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/debug_vect__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/debug_vect__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/debug_vect__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/debug_vect__functions.c.s rosidl_generator_c/px4_msgs/msg/differential_pressure__functions.o: rosidl_generator_c/px4_msgs/msg/differential_pressure__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/differential_pressure__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/differential_pressure__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/differential_pressure__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/differential_pressure__functions.c.o rosidl_generator_c/px4_msgs/msg/differential_pressure__functions.i: rosidl_generator_c/px4_msgs/msg/differential_pressure__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/differential_pressure__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/differential_pressure__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/differential_pressure__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/differential_pressure__functions.c.i rosidl_generator_c/px4_msgs/msg/differential_pressure__functions.s: rosidl_generator_c/px4_msgs/msg/differential_pressure__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/differential_pressure__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/differential_pressure__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/differential_pressure__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/differential_pressure__functions.c.s rosidl_generator_c/px4_msgs/msg/distance_sensor__functions.o: rosidl_generator_c/px4_msgs/msg/distance_sensor__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/distance_sensor__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/distance_sensor__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/distance_sensor__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/distance_sensor__functions.c.o rosidl_generator_c/px4_msgs/msg/distance_sensor__functions.i: rosidl_generator_c/px4_msgs/msg/distance_sensor__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/distance_sensor__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/distance_sensor__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/distance_sensor__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/distance_sensor__functions.c.i rosidl_generator_c/px4_msgs/msg/distance_sensor__functions.s: rosidl_generator_c/px4_msgs/msg/distance_sensor__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/distance_sensor__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/distance_sensor__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/distance_sensor__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/distance_sensor__functions.c.s rosidl_generator_c/px4_msgs/msg/ekf2_timestamps__functions.o: rosidl_generator_c/px4_msgs/msg/ekf2_timestamps__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/ekf2_timestamps__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/ekf2_timestamps__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/ekf2_timestamps__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/ekf2_timestamps__functions.c.o rosidl_generator_c/px4_msgs/msg/ekf2_timestamps__functions.i: rosidl_generator_c/px4_msgs/msg/ekf2_timestamps__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/ekf2_timestamps__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/ekf2_timestamps__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/ekf2_timestamps__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/ekf2_timestamps__functions.c.i rosidl_generator_c/px4_msgs/msg/ekf2_timestamps__functions.s: rosidl_generator_c/px4_msgs/msg/ekf2_timestamps__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/ekf2_timestamps__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/ekf2_timestamps__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/ekf2_timestamps__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/ekf2_timestamps__functions.c.s rosidl_generator_c/px4_msgs/msg/ekf_gps_drift__functions.o: rosidl_generator_c/px4_msgs/msg/ekf_gps_drift__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/ekf_gps_drift__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/ekf_gps_drift__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/ekf_gps_drift__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/ekf_gps_drift__functions.c.o rosidl_generator_c/px4_msgs/msg/ekf_gps_drift__functions.i: rosidl_generator_c/px4_msgs/msg/ekf_gps_drift__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/ekf_gps_drift__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/ekf_gps_drift__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/ekf_gps_drift__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/ekf_gps_drift__functions.c.i rosidl_generator_c/px4_msgs/msg/ekf_gps_drift__functions.s: rosidl_generator_c/px4_msgs/msg/ekf_gps_drift__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/ekf_gps_drift__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/ekf_gps_drift__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/ekf_gps_drift__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/ekf_gps_drift__functions.c.s rosidl_generator_c/px4_msgs/msg/esc_report__functions.o: rosidl_generator_c/px4_msgs/msg/esc_report__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/esc_report__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/esc_report__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/esc_report__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/esc_report__functions.c.o rosidl_generator_c/px4_msgs/msg/esc_report__functions.i: rosidl_generator_c/px4_msgs/msg/esc_report__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/esc_report__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/esc_report__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/esc_report__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/esc_report__functions.c.i rosidl_generator_c/px4_msgs/msg/esc_report__functions.s: rosidl_generator_c/px4_msgs/msg/esc_report__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/esc_report__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/esc_report__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/esc_report__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/esc_report__functions.c.s rosidl_generator_c/px4_msgs/msg/esc_status__functions.o: rosidl_generator_c/px4_msgs/msg/esc_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/esc_status__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/esc_status__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/esc_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/esc_status__functions.c.o rosidl_generator_c/px4_msgs/msg/esc_status__functions.i: rosidl_generator_c/px4_msgs/msg/esc_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/esc_status__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/esc_status__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/esc_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/esc_status__functions.c.i rosidl_generator_c/px4_msgs/msg/esc_status__functions.s: rosidl_generator_c/px4_msgs/msg/esc_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/esc_status__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/esc_status__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/esc_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/esc_status__functions.c.s rosidl_generator_c/px4_msgs/msg/estimator_attitude__functions.o: rosidl_generator_c/px4_msgs/msg/estimator_attitude__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_attitude__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/estimator_attitude__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_attitude__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_attitude__functions.c.o rosidl_generator_c/px4_msgs/msg/estimator_attitude__functions.i: rosidl_generator_c/px4_msgs/msg/estimator_attitude__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_attitude__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/estimator_attitude__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_attitude__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_attitude__functions.c.i rosidl_generator_c/px4_msgs/msg/estimator_attitude__functions.s: rosidl_generator_c/px4_msgs/msg/estimator_attitude__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_attitude__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/estimator_attitude__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_attitude__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_attitude__functions.c.s rosidl_generator_c/px4_msgs/msg/estimator_event_flags__functions.o: rosidl_generator_c/px4_msgs/msg/estimator_event_flags__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_event_flags__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/estimator_event_flags__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_event_flags__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_event_flags__functions.c.o rosidl_generator_c/px4_msgs/msg/estimator_event_flags__functions.i: rosidl_generator_c/px4_msgs/msg/estimator_event_flags__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_event_flags__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/estimator_event_flags__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_event_flags__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_event_flags__functions.c.i rosidl_generator_c/px4_msgs/msg/estimator_event_flags__functions.s: rosidl_generator_c/px4_msgs/msg/estimator_event_flags__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_event_flags__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/estimator_event_flags__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_event_flags__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_event_flags__functions.c.s rosidl_generator_c/px4_msgs/msg/estimator_global_position__functions.o: rosidl_generator_c/px4_msgs/msg/estimator_global_position__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_global_position__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/estimator_global_position__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_global_position__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_global_position__functions.c.o rosidl_generator_c/px4_msgs/msg/estimator_global_position__functions.i: rosidl_generator_c/px4_msgs/msg/estimator_global_position__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_global_position__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/estimator_global_position__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_global_position__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_global_position__functions.c.i rosidl_generator_c/px4_msgs/msg/estimator_global_position__functions.s: rosidl_generator_c/px4_msgs/msg/estimator_global_position__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_global_position__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/estimator_global_position__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_global_position__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_global_position__functions.c.s rosidl_generator_c/px4_msgs/msg/estimator_innovation_test_ratios__functions.o: rosidl_generator_c/px4_msgs/msg/estimator_innovation_test_ratios__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_innovation_test_ratios__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/estimator_innovation_test_ratios__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_innovation_test_ratios__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_innovation_test_ratios__functions.c.o rosidl_generator_c/px4_msgs/msg/estimator_innovation_test_ratios__functions.i: rosidl_generator_c/px4_msgs/msg/estimator_innovation_test_ratios__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_innovation_test_ratios__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/estimator_innovation_test_ratios__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_innovation_test_ratios__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_innovation_test_ratios__functions.c.i rosidl_generator_c/px4_msgs/msg/estimator_innovation_test_ratios__functions.s: rosidl_generator_c/px4_msgs/msg/estimator_innovation_test_ratios__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_innovation_test_ratios__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/estimator_innovation_test_ratios__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_innovation_test_ratios__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_innovation_test_ratios__functions.c.s rosidl_generator_c/px4_msgs/msg/estimator_innovation_variances__functions.o: rosidl_generator_c/px4_msgs/msg/estimator_innovation_variances__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_innovation_variances__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/estimator_innovation_variances__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_innovation_variances__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_innovation_variances__functions.c.o rosidl_generator_c/px4_msgs/msg/estimator_innovation_variances__functions.i: rosidl_generator_c/px4_msgs/msg/estimator_innovation_variances__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_innovation_variances__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/estimator_innovation_variances__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_innovation_variances__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_innovation_variances__functions.c.i rosidl_generator_c/px4_msgs/msg/estimator_innovation_variances__functions.s: rosidl_generator_c/px4_msgs/msg/estimator_innovation_variances__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_innovation_variances__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/estimator_innovation_variances__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_innovation_variances__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_innovation_variances__functions.c.s rosidl_generator_c/px4_msgs/msg/estimator_innovations__functions.o: rosidl_generator_c/px4_msgs/msg/estimator_innovations__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_innovations__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/estimator_innovations__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_innovations__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_innovations__functions.c.o rosidl_generator_c/px4_msgs/msg/estimator_innovations__functions.i: rosidl_generator_c/px4_msgs/msg/estimator_innovations__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_innovations__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/estimator_innovations__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_innovations__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_innovations__functions.c.i rosidl_generator_c/px4_msgs/msg/estimator_innovations__functions.s: rosidl_generator_c/px4_msgs/msg/estimator_innovations__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_innovations__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/estimator_innovations__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_innovations__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_innovations__functions.c.s rosidl_generator_c/px4_msgs/msg/estimator_local_position__functions.o: rosidl_generator_c/px4_msgs/msg/estimator_local_position__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_local_position__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/estimator_local_position__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_local_position__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_local_position__functions.c.o rosidl_generator_c/px4_msgs/msg/estimator_local_position__functions.i: rosidl_generator_c/px4_msgs/msg/estimator_local_position__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_local_position__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/estimator_local_position__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_local_position__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_local_position__functions.c.i rosidl_generator_c/px4_msgs/msg/estimator_local_position__functions.s: rosidl_generator_c/px4_msgs/msg/estimator_local_position__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_local_position__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/estimator_local_position__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_local_position__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_local_position__functions.c.s rosidl_generator_c/px4_msgs/msg/estimator_odometry__functions.o: rosidl_generator_c/px4_msgs/msg/estimator_odometry__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_odometry__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/estimator_odometry__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_odometry__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_odometry__functions.c.o rosidl_generator_c/px4_msgs/msg/estimator_odometry__functions.i: rosidl_generator_c/px4_msgs/msg/estimator_odometry__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_odometry__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/estimator_odometry__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_odometry__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_odometry__functions.c.i rosidl_generator_c/px4_msgs/msg/estimator_odometry__functions.s: rosidl_generator_c/px4_msgs/msg/estimator_odometry__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_odometry__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/estimator_odometry__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_odometry__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_odometry__functions.c.s rosidl_generator_c/px4_msgs/msg/estimator_optical_flow_vel__functions.o: rosidl_generator_c/px4_msgs/msg/estimator_optical_flow_vel__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_optical_flow_vel__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/estimator_optical_flow_vel__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_optical_flow_vel__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_optical_flow_vel__functions.c.o rosidl_generator_c/px4_msgs/msg/estimator_optical_flow_vel__functions.i: rosidl_generator_c/px4_msgs/msg/estimator_optical_flow_vel__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_optical_flow_vel__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/estimator_optical_flow_vel__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_optical_flow_vel__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_optical_flow_vel__functions.c.i rosidl_generator_c/px4_msgs/msg/estimator_optical_flow_vel__functions.s: rosidl_generator_c/px4_msgs/msg/estimator_optical_flow_vel__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_optical_flow_vel__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/estimator_optical_flow_vel__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_optical_flow_vel__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_optical_flow_vel__functions.c.s rosidl_generator_c/px4_msgs/msg/estimator_selector_status__functions.o: rosidl_generator_c/px4_msgs/msg/estimator_selector_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_selector_status__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/estimator_selector_status__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_selector_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_selector_status__functions.c.o rosidl_generator_c/px4_msgs/msg/estimator_selector_status__functions.i: rosidl_generator_c/px4_msgs/msg/estimator_selector_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_selector_status__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/estimator_selector_status__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_selector_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_selector_status__functions.c.i rosidl_generator_c/px4_msgs/msg/estimator_selector_status__functions.s: rosidl_generator_c/px4_msgs/msg/estimator_selector_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_selector_status__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/estimator_selector_status__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_selector_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_selector_status__functions.c.s rosidl_generator_c/px4_msgs/msg/estimator_sensor_bias__functions.o: rosidl_generator_c/px4_msgs/msg/estimator_sensor_bias__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_sensor_bias__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/estimator_sensor_bias__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_sensor_bias__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_sensor_bias__functions.c.o rosidl_generator_c/px4_msgs/msg/estimator_sensor_bias__functions.i: rosidl_generator_c/px4_msgs/msg/estimator_sensor_bias__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_sensor_bias__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/estimator_sensor_bias__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_sensor_bias__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_sensor_bias__functions.c.i rosidl_generator_c/px4_msgs/msg/estimator_sensor_bias__functions.s: rosidl_generator_c/px4_msgs/msg/estimator_sensor_bias__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_sensor_bias__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/estimator_sensor_bias__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_sensor_bias__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_sensor_bias__functions.c.s rosidl_generator_c/px4_msgs/msg/estimator_states__functions.o: rosidl_generator_c/px4_msgs/msg/estimator_states__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_states__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/estimator_states__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_states__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_states__functions.c.o rosidl_generator_c/px4_msgs/msg/estimator_states__functions.i: rosidl_generator_c/px4_msgs/msg/estimator_states__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_states__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/estimator_states__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_states__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_states__functions.c.i rosidl_generator_c/px4_msgs/msg/estimator_states__functions.s: rosidl_generator_c/px4_msgs/msg/estimator_states__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_states__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/estimator_states__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_states__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_states__functions.c.s rosidl_generator_c/px4_msgs/msg/estimator_status__functions.o: rosidl_generator_c/px4_msgs/msg/estimator_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_status__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/estimator_status__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_status__functions.c.o rosidl_generator_c/px4_msgs/msg/estimator_status__functions.i: rosidl_generator_c/px4_msgs/msg/estimator_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_status__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/estimator_status__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_status__functions.c.i rosidl_generator_c/px4_msgs/msg/estimator_status__functions.s: rosidl_generator_c/px4_msgs/msg/estimator_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_status__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/estimator_status__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_status__functions.c.s rosidl_generator_c/px4_msgs/msg/estimator_status_flags__functions.o: rosidl_generator_c/px4_msgs/msg/estimator_status_flags__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_status_flags__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/estimator_status_flags__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_status_flags__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_status_flags__functions.c.o rosidl_generator_c/px4_msgs/msg/estimator_status_flags__functions.i: rosidl_generator_c/px4_msgs/msg/estimator_status_flags__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_status_flags__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/estimator_status_flags__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_status_flags__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_status_flags__functions.c.i rosidl_generator_c/px4_msgs/msg/estimator_status_flags__functions.s: rosidl_generator_c/px4_msgs/msg/estimator_status_flags__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_status_flags__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/estimator_status_flags__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_status_flags__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_status_flags__functions.c.s rosidl_generator_c/px4_msgs/msg/estimator_visual_odometry_aligned__functions.o: rosidl_generator_c/px4_msgs/msg/estimator_visual_odometry_aligned__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_visual_odometry_aligned__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/estimator_visual_odometry_aligned__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_visual_odometry_aligned__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_visual_odometry_aligned__functions.c.o rosidl_generator_c/px4_msgs/msg/estimator_visual_odometry_aligned__functions.i: rosidl_generator_c/px4_msgs/msg/estimator_visual_odometry_aligned__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_visual_odometry_aligned__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/estimator_visual_odometry_aligned__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_visual_odometry_aligned__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_visual_odometry_aligned__functions.c.i rosidl_generator_c/px4_msgs/msg/estimator_visual_odometry_aligned__functions.s: rosidl_generator_c/px4_msgs/msg/estimator_visual_odometry_aligned__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_visual_odometry_aligned__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/estimator_visual_odometry_aligned__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_visual_odometry_aligned__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_visual_odometry_aligned__functions.c.s rosidl_generator_c/px4_msgs/msg/estimator_wind__functions.o: rosidl_generator_c/px4_msgs/msg/estimator_wind__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_wind__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/estimator_wind__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_wind__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_wind__functions.c.o rosidl_generator_c/px4_msgs/msg/estimator_wind__functions.i: rosidl_generator_c/px4_msgs/msg/estimator_wind__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_wind__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/estimator_wind__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_wind__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_wind__functions.c.i rosidl_generator_c/px4_msgs/msg/estimator_wind__functions.s: rosidl_generator_c/px4_msgs/msg/estimator_wind__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_wind__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/estimator_wind__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/estimator_wind__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/estimator_wind__functions.c.s rosidl_generator_c/px4_msgs/msg/follow_target__functions.o: rosidl_generator_c/px4_msgs/msg/follow_target__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/follow_target__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/follow_target__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/follow_target__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/follow_target__functions.c.o rosidl_generator_c/px4_msgs/msg/follow_target__functions.i: rosidl_generator_c/px4_msgs/msg/follow_target__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/follow_target__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/follow_target__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/follow_target__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/follow_target__functions.c.i rosidl_generator_c/px4_msgs/msg/follow_target__functions.s: rosidl_generator_c/px4_msgs/msg/follow_target__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/follow_target__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/follow_target__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/follow_target__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/follow_target__functions.c.s rosidl_generator_c/px4_msgs/msg/fw_virtual_attitude_setpoint__functions.o: rosidl_generator_c/px4_msgs/msg/fw_virtual_attitude_setpoint__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/fw_virtual_attitude_setpoint__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/fw_virtual_attitude_setpoint__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/fw_virtual_attitude_setpoint__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/fw_virtual_attitude_setpoint__functions.c.o rosidl_generator_c/px4_msgs/msg/fw_virtual_attitude_setpoint__functions.i: rosidl_generator_c/px4_msgs/msg/fw_virtual_attitude_setpoint__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/fw_virtual_attitude_setpoint__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/fw_virtual_attitude_setpoint__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/fw_virtual_attitude_setpoint__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/fw_virtual_attitude_setpoint__functions.c.i rosidl_generator_c/px4_msgs/msg/fw_virtual_attitude_setpoint__functions.s: rosidl_generator_c/px4_msgs/msg/fw_virtual_attitude_setpoint__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/fw_virtual_attitude_setpoint__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/fw_virtual_attitude_setpoint__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/fw_virtual_attitude_setpoint__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/fw_virtual_attitude_setpoint__functions.c.s rosidl_generator_c/px4_msgs/msg/generator_status__functions.o: rosidl_generator_c/px4_msgs/msg/generator_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/generator_status__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/generator_status__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/generator_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/generator_status__functions.c.o rosidl_generator_c/px4_msgs/msg/generator_status__functions.i: rosidl_generator_c/px4_msgs/msg/generator_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/generator_status__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/generator_status__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/generator_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/generator_status__functions.c.i rosidl_generator_c/px4_msgs/msg/generator_status__functions.s: rosidl_generator_c/px4_msgs/msg/generator_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/generator_status__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/generator_status__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/generator_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/generator_status__functions.c.s rosidl_generator_c/px4_msgs/msg/geofence_result__functions.o: rosidl_generator_c/px4_msgs/msg/geofence_result__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/geofence_result__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/geofence_result__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/geofence_result__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/geofence_result__functions.c.o rosidl_generator_c/px4_msgs/msg/geofence_result__functions.i: rosidl_generator_c/px4_msgs/msg/geofence_result__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/geofence_result__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/geofence_result__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/geofence_result__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/geofence_result__functions.c.i rosidl_generator_c/px4_msgs/msg/geofence_result__functions.s: rosidl_generator_c/px4_msgs/msg/geofence_result__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/geofence_result__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/geofence_result__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/geofence_result__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/geofence_result__functions.c.s rosidl_generator_c/px4_msgs/msg/gimbal_device_attitude_status__functions.o: rosidl_generator_c/px4_msgs/msg/gimbal_device_attitude_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_device_attitude_status__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/gimbal_device_attitude_status__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/gimbal_device_attitude_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_device_attitude_status__functions.c.o rosidl_generator_c/px4_msgs/msg/gimbal_device_attitude_status__functions.i: rosidl_generator_c/px4_msgs/msg/gimbal_device_attitude_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_device_attitude_status__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/gimbal_device_attitude_status__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/gimbal_device_attitude_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_device_attitude_status__functions.c.i rosidl_generator_c/px4_msgs/msg/gimbal_device_attitude_status__functions.s: rosidl_generator_c/px4_msgs/msg/gimbal_device_attitude_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_device_attitude_status__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/gimbal_device_attitude_status__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/gimbal_device_attitude_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_device_attitude_status__functions.c.s rosidl_generator_c/px4_msgs/msg/gimbal_device_information__functions.o: rosidl_generator_c/px4_msgs/msg/gimbal_device_information__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_device_information__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/gimbal_device_information__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/gimbal_device_information__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_device_information__functions.c.o rosidl_generator_c/px4_msgs/msg/gimbal_device_information__functions.i: rosidl_generator_c/px4_msgs/msg/gimbal_device_information__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_device_information__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/gimbal_device_information__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/gimbal_device_information__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_device_information__functions.c.i rosidl_generator_c/px4_msgs/msg/gimbal_device_information__functions.s: rosidl_generator_c/px4_msgs/msg/gimbal_device_information__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_device_information__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/gimbal_device_information__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/gimbal_device_information__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_device_information__functions.c.s rosidl_generator_c/px4_msgs/msg/gimbal_device_set_attitude__functions.o: rosidl_generator_c/px4_msgs/msg/gimbal_device_set_attitude__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_device_set_attitude__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/gimbal_device_set_attitude__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/gimbal_device_set_attitude__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_device_set_attitude__functions.c.o rosidl_generator_c/px4_msgs/msg/gimbal_device_set_attitude__functions.i: rosidl_generator_c/px4_msgs/msg/gimbal_device_set_attitude__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_device_set_attitude__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/gimbal_device_set_attitude__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/gimbal_device_set_attitude__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_device_set_attitude__functions.c.i rosidl_generator_c/px4_msgs/msg/gimbal_device_set_attitude__functions.s: rosidl_generator_c/px4_msgs/msg/gimbal_device_set_attitude__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_device_set_attitude__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/gimbal_device_set_attitude__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/gimbal_device_set_attitude__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_device_set_attitude__functions.c.s rosidl_generator_c/px4_msgs/msg/gimbal_manager_information__functions.o: rosidl_generator_c/px4_msgs/msg/gimbal_manager_information__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_manager_information__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/gimbal_manager_information__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/gimbal_manager_information__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_manager_information__functions.c.o rosidl_generator_c/px4_msgs/msg/gimbal_manager_information__functions.i: rosidl_generator_c/px4_msgs/msg/gimbal_manager_information__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_manager_information__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/gimbal_manager_information__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/gimbal_manager_information__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_manager_information__functions.c.i rosidl_generator_c/px4_msgs/msg/gimbal_manager_information__functions.s: rosidl_generator_c/px4_msgs/msg/gimbal_manager_information__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_manager_information__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/gimbal_manager_information__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/gimbal_manager_information__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_manager_information__functions.c.s rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_attitude__functions.o: rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_attitude__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_attitude__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_attitude__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_attitude__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_attitude__functions.c.o rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_attitude__functions.i: rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_attitude__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_attitude__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_attitude__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_attitude__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_attitude__functions.c.i rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_attitude__functions.s: rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_attitude__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_attitude__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_attitude__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_attitude__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_attitude__functions.c.s rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_manual_control__functions.o: rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_manual_control__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_manual_control__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_manual_control__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_manual_control__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_manual_control__functions.c.o rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_manual_control__functions.i: rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_manual_control__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_manual_control__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_manual_control__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_manual_control__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_manual_control__functions.c.i rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_manual_control__functions.s: rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_manual_control__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_manual_control__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_manual_control__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_manual_control__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_manual_control__functions.c.s rosidl_generator_c/px4_msgs/msg/gimbal_manager_status__functions.o: rosidl_generator_c/px4_msgs/msg/gimbal_manager_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_manager_status__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/gimbal_manager_status__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/gimbal_manager_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_manager_status__functions.c.o rosidl_generator_c/px4_msgs/msg/gimbal_manager_status__functions.i: rosidl_generator_c/px4_msgs/msg/gimbal_manager_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_manager_status__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/gimbal_manager_status__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/gimbal_manager_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_manager_status__functions.c.i rosidl_generator_c/px4_msgs/msg/gimbal_manager_status__functions.s: rosidl_generator_c/px4_msgs/msg/gimbal_manager_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_manager_status__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/gimbal_manager_status__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/gimbal_manager_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/gimbal_manager_status__functions.c.s rosidl_generator_c/px4_msgs/msg/gps_dump__functions.o: rosidl_generator_c/px4_msgs/msg/gps_dump__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/gps_dump__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/gps_dump__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/gps_dump__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/gps_dump__functions.c.o rosidl_generator_c/px4_msgs/msg/gps_dump__functions.i: rosidl_generator_c/px4_msgs/msg/gps_dump__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/gps_dump__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/gps_dump__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/gps_dump__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/gps_dump__functions.c.i rosidl_generator_c/px4_msgs/msg/gps_dump__functions.s: rosidl_generator_c/px4_msgs/msg/gps_dump__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/gps_dump__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/gps_dump__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/gps_dump__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/gps_dump__functions.c.s rosidl_generator_c/px4_msgs/msg/gps_inject_data__functions.o: rosidl_generator_c/px4_msgs/msg/gps_inject_data__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/gps_inject_data__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/gps_inject_data__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/gps_inject_data__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/gps_inject_data__functions.c.o rosidl_generator_c/px4_msgs/msg/gps_inject_data__functions.i: rosidl_generator_c/px4_msgs/msg/gps_inject_data__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/gps_inject_data__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/gps_inject_data__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/gps_inject_data__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/gps_inject_data__functions.c.i rosidl_generator_c/px4_msgs/msg/gps_inject_data__functions.s: rosidl_generator_c/px4_msgs/msg/gps_inject_data__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/gps_inject_data__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/gps_inject_data__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/gps_inject_data__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/gps_inject_data__functions.c.s rosidl_generator_c/px4_msgs/msg/heater_status__functions.o: rosidl_generator_c/px4_msgs/msg/heater_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/heater_status__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/heater_status__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/heater_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/heater_status__functions.c.o rosidl_generator_c/px4_msgs/msg/heater_status__functions.i: rosidl_generator_c/px4_msgs/msg/heater_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/heater_status__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/heater_status__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/heater_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/heater_status__functions.c.i rosidl_generator_c/px4_msgs/msg/heater_status__functions.s: rosidl_generator_c/px4_msgs/msg/heater_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/heater_status__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/heater_status__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/heater_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/heater_status__functions.c.s rosidl_generator_c/px4_msgs/msg/home_position__functions.o: rosidl_generator_c/px4_msgs/msg/home_position__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/home_position__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/home_position__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/home_position__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/home_position__functions.c.o rosidl_generator_c/px4_msgs/msg/home_position__functions.i: rosidl_generator_c/px4_msgs/msg/home_position__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/home_position__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/home_position__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/home_position__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/home_position__functions.c.i rosidl_generator_c/px4_msgs/msg/home_position__functions.s: rosidl_generator_c/px4_msgs/msg/home_position__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/home_position__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/home_position__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/home_position__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/home_position__functions.c.s rosidl_generator_c/px4_msgs/msg/hover_thrust_estimate__functions.o: rosidl_generator_c/px4_msgs/msg/hover_thrust_estimate__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/hover_thrust_estimate__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/hover_thrust_estimate__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/hover_thrust_estimate__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/hover_thrust_estimate__functions.c.o rosidl_generator_c/px4_msgs/msg/hover_thrust_estimate__functions.i: rosidl_generator_c/px4_msgs/msg/hover_thrust_estimate__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/hover_thrust_estimate__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/hover_thrust_estimate__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/hover_thrust_estimate__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/hover_thrust_estimate__functions.c.i rosidl_generator_c/px4_msgs/msg/hover_thrust_estimate__functions.s: rosidl_generator_c/px4_msgs/msg/hover_thrust_estimate__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/hover_thrust_estimate__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/hover_thrust_estimate__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/hover_thrust_estimate__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/hover_thrust_estimate__functions.c.s rosidl_generator_c/px4_msgs/msg/input_rc__functions.o: rosidl_generator_c/px4_msgs/msg/input_rc__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/input_rc__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/input_rc__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/input_rc__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/input_rc__functions.c.o rosidl_generator_c/px4_msgs/msg/input_rc__functions.i: rosidl_generator_c/px4_msgs/msg/input_rc__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/input_rc__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/input_rc__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/input_rc__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/input_rc__functions.c.i rosidl_generator_c/px4_msgs/msg/input_rc__functions.s: rosidl_generator_c/px4_msgs/msg/input_rc__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/input_rc__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/input_rc__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/input_rc__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/input_rc__functions.c.s rosidl_generator_c/px4_msgs/msg/iridiumsbd_status__functions.o: rosidl_generator_c/px4_msgs/msg/iridiumsbd_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/iridiumsbd_status__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/iridiumsbd_status__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/iridiumsbd_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/iridiumsbd_status__functions.c.o rosidl_generator_c/px4_msgs/msg/iridiumsbd_status__functions.i: rosidl_generator_c/px4_msgs/msg/iridiumsbd_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/iridiumsbd_status__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/iridiumsbd_status__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/iridiumsbd_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/iridiumsbd_status__functions.c.i rosidl_generator_c/px4_msgs/msg/iridiumsbd_status__functions.s: rosidl_generator_c/px4_msgs/msg/iridiumsbd_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/iridiumsbd_status__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/iridiumsbd_status__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/iridiumsbd_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/iridiumsbd_status__functions.c.s rosidl_generator_c/px4_msgs/msg/irlock_report__functions.o: rosidl_generator_c/px4_msgs/msg/irlock_report__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/irlock_report__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/irlock_report__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/irlock_report__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/irlock_report__functions.c.o rosidl_generator_c/px4_msgs/msg/irlock_report__functions.i: rosidl_generator_c/px4_msgs/msg/irlock_report__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/irlock_report__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/irlock_report__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/irlock_report__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/irlock_report__functions.c.i rosidl_generator_c/px4_msgs/msg/irlock_report__functions.s: rosidl_generator_c/px4_msgs/msg/irlock_report__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/irlock_report__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/irlock_report__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/irlock_report__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/irlock_report__functions.c.s rosidl_generator_c/px4_msgs/msg/landing_gear__functions.o: rosidl_generator_c/px4_msgs/msg/landing_gear__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/landing_gear__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/landing_gear__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/landing_gear__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/landing_gear__functions.c.o rosidl_generator_c/px4_msgs/msg/landing_gear__functions.i: rosidl_generator_c/px4_msgs/msg/landing_gear__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/landing_gear__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/landing_gear__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/landing_gear__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/landing_gear__functions.c.i rosidl_generator_c/px4_msgs/msg/landing_gear__functions.s: rosidl_generator_c/px4_msgs/msg/landing_gear__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/landing_gear__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/landing_gear__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/landing_gear__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/landing_gear__functions.c.s rosidl_generator_c/px4_msgs/msg/landing_target_innovations__functions.o: rosidl_generator_c/px4_msgs/msg/landing_target_innovations__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/landing_target_innovations__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/landing_target_innovations__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/landing_target_innovations__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/landing_target_innovations__functions.c.o rosidl_generator_c/px4_msgs/msg/landing_target_innovations__functions.i: rosidl_generator_c/px4_msgs/msg/landing_target_innovations__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/landing_target_innovations__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/landing_target_innovations__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/landing_target_innovations__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/landing_target_innovations__functions.c.i rosidl_generator_c/px4_msgs/msg/landing_target_innovations__functions.s: rosidl_generator_c/px4_msgs/msg/landing_target_innovations__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/landing_target_innovations__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/landing_target_innovations__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/landing_target_innovations__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/landing_target_innovations__functions.c.s rosidl_generator_c/px4_msgs/msg/landing_target_pose__functions.o: rosidl_generator_c/px4_msgs/msg/landing_target_pose__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/landing_target_pose__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/landing_target_pose__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/landing_target_pose__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/landing_target_pose__functions.c.o rosidl_generator_c/px4_msgs/msg/landing_target_pose__functions.i: rosidl_generator_c/px4_msgs/msg/landing_target_pose__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/landing_target_pose__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/landing_target_pose__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/landing_target_pose__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/landing_target_pose__functions.c.i rosidl_generator_c/px4_msgs/msg/landing_target_pose__functions.s: rosidl_generator_c/px4_msgs/msg/landing_target_pose__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/landing_target_pose__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/landing_target_pose__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/landing_target_pose__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/landing_target_pose__functions.c.s rosidl_generator_c/px4_msgs/msg/led_control__functions.o: rosidl_generator_c/px4_msgs/msg/led_control__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/led_control__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/led_control__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/led_control__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/led_control__functions.c.o rosidl_generator_c/px4_msgs/msg/led_control__functions.i: rosidl_generator_c/px4_msgs/msg/led_control__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/led_control__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/led_control__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/led_control__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/led_control__functions.c.i rosidl_generator_c/px4_msgs/msg/led_control__functions.s: rosidl_generator_c/px4_msgs/msg/led_control__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/led_control__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/led_control__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/led_control__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/led_control__functions.c.s rosidl_generator_c/px4_msgs/msg/log_message__functions.o: rosidl_generator_c/px4_msgs/msg/log_message__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/log_message__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/log_message__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/log_message__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/log_message__functions.c.o rosidl_generator_c/px4_msgs/msg/log_message__functions.i: rosidl_generator_c/px4_msgs/msg/log_message__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/log_message__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/log_message__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/log_message__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/log_message__functions.c.i rosidl_generator_c/px4_msgs/msg/log_message__functions.s: rosidl_generator_c/px4_msgs/msg/log_message__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/log_message__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/log_message__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/log_message__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/log_message__functions.c.s rosidl_generator_c/px4_msgs/msg/logger_status__functions.o: rosidl_generator_c/px4_msgs/msg/logger_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/logger_status__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/logger_status__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/logger_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/logger_status__functions.c.o rosidl_generator_c/px4_msgs/msg/logger_status__functions.i: rosidl_generator_c/px4_msgs/msg/logger_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/logger_status__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/logger_status__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/logger_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/logger_status__functions.c.i rosidl_generator_c/px4_msgs/msg/logger_status__functions.s: rosidl_generator_c/px4_msgs/msg/logger_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/logger_status__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/logger_status__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/logger_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/logger_status__functions.c.s rosidl_generator_c/px4_msgs/msg/mag_worker_data__functions.o: rosidl_generator_c/px4_msgs/msg/mag_worker_data__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/mag_worker_data__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/mag_worker_data__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/mag_worker_data__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/mag_worker_data__functions.c.o rosidl_generator_c/px4_msgs/msg/mag_worker_data__functions.i: rosidl_generator_c/px4_msgs/msg/mag_worker_data__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/mag_worker_data__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/mag_worker_data__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/mag_worker_data__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/mag_worker_data__functions.c.i rosidl_generator_c/px4_msgs/msg/mag_worker_data__functions.s: rosidl_generator_c/px4_msgs/msg/mag_worker_data__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/mag_worker_data__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/mag_worker_data__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/mag_worker_data__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/mag_worker_data__functions.c.s rosidl_generator_c/px4_msgs/msg/manual_control_setpoint__functions.o: rosidl_generator_c/px4_msgs/msg/manual_control_setpoint__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/manual_control_setpoint__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/manual_control_setpoint__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/manual_control_setpoint__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/manual_control_setpoint__functions.c.o rosidl_generator_c/px4_msgs/msg/manual_control_setpoint__functions.i: rosidl_generator_c/px4_msgs/msg/manual_control_setpoint__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/manual_control_setpoint__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/manual_control_setpoint__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/manual_control_setpoint__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/manual_control_setpoint__functions.c.i rosidl_generator_c/px4_msgs/msg/manual_control_setpoint__functions.s: rosidl_generator_c/px4_msgs/msg/manual_control_setpoint__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/manual_control_setpoint__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/manual_control_setpoint__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/manual_control_setpoint__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/manual_control_setpoint__functions.c.s rosidl_generator_c/px4_msgs/msg/manual_control_switches__functions.o: rosidl_generator_c/px4_msgs/msg/manual_control_switches__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/manual_control_switches__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/manual_control_switches__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/manual_control_switches__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/manual_control_switches__functions.c.o rosidl_generator_c/px4_msgs/msg/manual_control_switches__functions.i: rosidl_generator_c/px4_msgs/msg/manual_control_switches__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/manual_control_switches__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/manual_control_switches__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/manual_control_switches__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/manual_control_switches__functions.c.i rosidl_generator_c/px4_msgs/msg/manual_control_switches__functions.s: rosidl_generator_c/px4_msgs/msg/manual_control_switches__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/manual_control_switches__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/manual_control_switches__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/manual_control_switches__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/manual_control_switches__functions.c.s rosidl_generator_c/px4_msgs/msg/mavlink_log__functions.o: rosidl_generator_c/px4_msgs/msg/mavlink_log__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/mavlink_log__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/mavlink_log__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/mavlink_log__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/mavlink_log__functions.c.o rosidl_generator_c/px4_msgs/msg/mavlink_log__functions.i: rosidl_generator_c/px4_msgs/msg/mavlink_log__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/mavlink_log__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/mavlink_log__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/mavlink_log__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/mavlink_log__functions.c.i rosidl_generator_c/px4_msgs/msg/mavlink_log__functions.s: rosidl_generator_c/px4_msgs/msg/mavlink_log__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/mavlink_log__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/mavlink_log__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/mavlink_log__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/mavlink_log__functions.c.s rosidl_generator_c/px4_msgs/msg/mc_virtual_attitude_setpoint__functions.o: rosidl_generator_c/px4_msgs/msg/mc_virtual_attitude_setpoint__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/mc_virtual_attitude_setpoint__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/mc_virtual_attitude_setpoint__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/mc_virtual_attitude_setpoint__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/mc_virtual_attitude_setpoint__functions.c.o rosidl_generator_c/px4_msgs/msg/mc_virtual_attitude_setpoint__functions.i: rosidl_generator_c/px4_msgs/msg/mc_virtual_attitude_setpoint__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/mc_virtual_attitude_setpoint__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/mc_virtual_attitude_setpoint__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/mc_virtual_attitude_setpoint__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/mc_virtual_attitude_setpoint__functions.c.i rosidl_generator_c/px4_msgs/msg/mc_virtual_attitude_setpoint__functions.s: rosidl_generator_c/px4_msgs/msg/mc_virtual_attitude_setpoint__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/mc_virtual_attitude_setpoint__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/mc_virtual_attitude_setpoint__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/mc_virtual_attitude_setpoint__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/mc_virtual_attitude_setpoint__functions.c.s rosidl_generator_c/px4_msgs/msg/mission__functions.o: rosidl_generator_c/px4_msgs/msg/mission__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/mission__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/mission__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/mission__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/mission__functions.c.o rosidl_generator_c/px4_msgs/msg/mission__functions.i: rosidl_generator_c/px4_msgs/msg/mission__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/mission__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/mission__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/mission__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/mission__functions.c.i rosidl_generator_c/px4_msgs/msg/mission__functions.s: rosidl_generator_c/px4_msgs/msg/mission__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/mission__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/mission__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/mission__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/mission__functions.c.s rosidl_generator_c/px4_msgs/msg/mission_result__functions.o: rosidl_generator_c/px4_msgs/msg/mission_result__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/mission_result__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/mission_result__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/mission_result__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/mission_result__functions.c.o rosidl_generator_c/px4_msgs/msg/mission_result__functions.i: rosidl_generator_c/px4_msgs/msg/mission_result__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/mission_result__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/mission_result__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/mission_result__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/mission_result__functions.c.i rosidl_generator_c/px4_msgs/msg/mission_result__functions.s: rosidl_generator_c/px4_msgs/msg/mission_result__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/mission_result__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/mission_result__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/mission_result__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/mission_result__functions.c.s rosidl_generator_c/px4_msgs/msg/mount_orientation__functions.o: rosidl_generator_c/px4_msgs/msg/mount_orientation__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/mount_orientation__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/mount_orientation__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/mount_orientation__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/mount_orientation__functions.c.o rosidl_generator_c/px4_msgs/msg/mount_orientation__functions.i: rosidl_generator_c/px4_msgs/msg/mount_orientation__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/mount_orientation__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/mount_orientation__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/mount_orientation__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/mount_orientation__functions.c.i rosidl_generator_c/px4_msgs/msg/mount_orientation__functions.s: rosidl_generator_c/px4_msgs/msg/mount_orientation__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/mount_orientation__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/mount_orientation__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/mount_orientation__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/mount_orientation__functions.c.s rosidl_generator_c/px4_msgs/msg/multirotor_motor_limits__functions.o: rosidl_generator_c/px4_msgs/msg/multirotor_motor_limits__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/multirotor_motor_limits__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/multirotor_motor_limits__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/multirotor_motor_limits__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/multirotor_motor_limits__functions.c.o rosidl_generator_c/px4_msgs/msg/multirotor_motor_limits__functions.i: rosidl_generator_c/px4_msgs/msg/multirotor_motor_limits__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/multirotor_motor_limits__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/multirotor_motor_limits__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/multirotor_motor_limits__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/multirotor_motor_limits__functions.c.i rosidl_generator_c/px4_msgs/msg/multirotor_motor_limits__functions.s: rosidl_generator_c/px4_msgs/msg/multirotor_motor_limits__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/multirotor_motor_limits__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/multirotor_motor_limits__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/multirotor_motor_limits__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/multirotor_motor_limits__functions.c.s rosidl_generator_c/px4_msgs/msg/navigator_mission_item__functions.o: rosidl_generator_c/px4_msgs/msg/navigator_mission_item__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/navigator_mission_item__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/navigator_mission_item__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/navigator_mission_item__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/navigator_mission_item__functions.c.o rosidl_generator_c/px4_msgs/msg/navigator_mission_item__functions.i: rosidl_generator_c/px4_msgs/msg/navigator_mission_item__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/navigator_mission_item__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/navigator_mission_item__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/navigator_mission_item__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/navigator_mission_item__functions.c.i rosidl_generator_c/px4_msgs/msg/navigator_mission_item__functions.s: rosidl_generator_c/px4_msgs/msg/navigator_mission_item__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/navigator_mission_item__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/navigator_mission_item__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/navigator_mission_item__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/navigator_mission_item__functions.c.s rosidl_generator_c/px4_msgs/msg/obstacle_distance__functions.o: rosidl_generator_c/px4_msgs/msg/obstacle_distance__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/obstacle_distance__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/obstacle_distance__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/obstacle_distance__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/obstacle_distance__functions.c.o rosidl_generator_c/px4_msgs/msg/obstacle_distance__functions.i: rosidl_generator_c/px4_msgs/msg/obstacle_distance__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/obstacle_distance__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/obstacle_distance__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/obstacle_distance__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/obstacle_distance__functions.c.i rosidl_generator_c/px4_msgs/msg/obstacle_distance__functions.s: rosidl_generator_c/px4_msgs/msg/obstacle_distance__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/obstacle_distance__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/obstacle_distance__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/obstacle_distance__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/obstacle_distance__functions.c.s rosidl_generator_c/px4_msgs/msg/obstacle_distance_fused__functions.o: rosidl_generator_c/px4_msgs/msg/obstacle_distance_fused__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/obstacle_distance_fused__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/obstacle_distance_fused__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/obstacle_distance_fused__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/obstacle_distance_fused__functions.c.o rosidl_generator_c/px4_msgs/msg/obstacle_distance_fused__functions.i: rosidl_generator_c/px4_msgs/msg/obstacle_distance_fused__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/obstacle_distance_fused__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/obstacle_distance_fused__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/obstacle_distance_fused__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/obstacle_distance_fused__functions.c.i rosidl_generator_c/px4_msgs/msg/obstacle_distance_fused__functions.s: rosidl_generator_c/px4_msgs/msg/obstacle_distance_fused__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/obstacle_distance_fused__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/obstacle_distance_fused__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/obstacle_distance_fused__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/obstacle_distance_fused__functions.c.s rosidl_generator_c/px4_msgs/msg/offboard_control_mode__functions.o: rosidl_generator_c/px4_msgs/msg/offboard_control_mode__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/offboard_control_mode__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/offboard_control_mode__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/offboard_control_mode__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/offboard_control_mode__functions.c.o rosidl_generator_c/px4_msgs/msg/offboard_control_mode__functions.i: rosidl_generator_c/px4_msgs/msg/offboard_control_mode__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/offboard_control_mode__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/offboard_control_mode__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/offboard_control_mode__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/offboard_control_mode__functions.c.i rosidl_generator_c/px4_msgs/msg/offboard_control_mode__functions.s: rosidl_generator_c/px4_msgs/msg/offboard_control_mode__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/offboard_control_mode__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/offboard_control_mode__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/offboard_control_mode__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/offboard_control_mode__functions.c.s rosidl_generator_c/px4_msgs/msg/onboard_computer_status__functions.o: rosidl_generator_c/px4_msgs/msg/onboard_computer_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/onboard_computer_status__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/onboard_computer_status__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/onboard_computer_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/onboard_computer_status__functions.c.o rosidl_generator_c/px4_msgs/msg/onboard_computer_status__functions.i: rosidl_generator_c/px4_msgs/msg/onboard_computer_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/onboard_computer_status__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/onboard_computer_status__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/onboard_computer_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/onboard_computer_status__functions.c.i rosidl_generator_c/px4_msgs/msg/onboard_computer_status__functions.s: rosidl_generator_c/px4_msgs/msg/onboard_computer_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/onboard_computer_status__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/onboard_computer_status__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/onboard_computer_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/onboard_computer_status__functions.c.s rosidl_generator_c/px4_msgs/msg/optical_flow__functions.o: rosidl_generator_c/px4_msgs/msg/optical_flow__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/optical_flow__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/optical_flow__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/optical_flow__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/optical_flow__functions.c.o rosidl_generator_c/px4_msgs/msg/optical_flow__functions.i: rosidl_generator_c/px4_msgs/msg/optical_flow__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/optical_flow__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/optical_flow__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/optical_flow__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/optical_flow__functions.c.i rosidl_generator_c/px4_msgs/msg/optical_flow__functions.s: rosidl_generator_c/px4_msgs/msg/optical_flow__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/optical_flow__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/optical_flow__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/optical_flow__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/optical_flow__functions.c.s rosidl_generator_c/px4_msgs/msg/orb_multitest__functions.o: rosidl_generator_c/px4_msgs/msg/orb_multitest__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/orb_multitest__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/orb_multitest__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/orb_multitest__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/orb_multitest__functions.c.o rosidl_generator_c/px4_msgs/msg/orb_multitest__functions.i: rosidl_generator_c/px4_msgs/msg/orb_multitest__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/orb_multitest__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/orb_multitest__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/orb_multitest__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/orb_multitest__functions.c.i rosidl_generator_c/px4_msgs/msg/orb_multitest__functions.s: rosidl_generator_c/px4_msgs/msg/orb_multitest__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/orb_multitest__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/orb_multitest__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/orb_multitest__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/orb_multitest__functions.c.s rosidl_generator_c/px4_msgs/msg/orb_test__functions.o: rosidl_generator_c/px4_msgs/msg/orb_test__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/orb_test__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/orb_test__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test__functions.c.o rosidl_generator_c/px4_msgs/msg/orb_test__functions.i: rosidl_generator_c/px4_msgs/msg/orb_test__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/orb_test__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/orb_test__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test__functions.c.i rosidl_generator_c/px4_msgs/msg/orb_test__functions.s: rosidl_generator_c/px4_msgs/msg/orb_test__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/orb_test__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/orb_test__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test__functions.c.s rosidl_generator_c/px4_msgs/msg/orb_test_large__functions.o: rosidl_generator_c/px4_msgs/msg/orb_test_large__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_large__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/orb_test_large__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/orb_test_large__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_large__functions.c.o rosidl_generator_c/px4_msgs/msg/orb_test_large__functions.i: rosidl_generator_c/px4_msgs/msg/orb_test_large__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_large__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/orb_test_large__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/orb_test_large__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_large__functions.c.i rosidl_generator_c/px4_msgs/msg/orb_test_large__functions.s: rosidl_generator_c/px4_msgs/msg/orb_test_large__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_large__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/orb_test_large__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/orb_test_large__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_large__functions.c.s rosidl_generator_c/px4_msgs/msg/orb_test_medium__functions.o: rosidl_generator_c/px4_msgs/msg/orb_test_medium__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/orb_test_medium__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/orb_test_medium__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium__functions.c.o rosidl_generator_c/px4_msgs/msg/orb_test_medium__functions.i: rosidl_generator_c/px4_msgs/msg/orb_test_medium__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/orb_test_medium__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/orb_test_medium__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium__functions.c.i rosidl_generator_c/px4_msgs/msg/orb_test_medium__functions.s: rosidl_generator_c/px4_msgs/msg/orb_test_medium__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/orb_test_medium__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/orb_test_medium__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium__functions.c.s rosidl_generator_c/px4_msgs/msg/orb_test_medium_multi__functions.o: rosidl_generator_c/px4_msgs/msg/orb_test_medium_multi__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium_multi__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/orb_test_medium_multi__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/orb_test_medium_multi__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium_multi__functions.c.o rosidl_generator_c/px4_msgs/msg/orb_test_medium_multi__functions.i: rosidl_generator_c/px4_msgs/msg/orb_test_medium_multi__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium_multi__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/orb_test_medium_multi__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/orb_test_medium_multi__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium_multi__functions.c.i rosidl_generator_c/px4_msgs/msg/orb_test_medium_multi__functions.s: rosidl_generator_c/px4_msgs/msg/orb_test_medium_multi__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium_multi__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/orb_test_medium_multi__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/orb_test_medium_multi__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium_multi__functions.c.s rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue__functions.o: rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue__functions.c.o rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue__functions.i: rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue__functions.c.i rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue__functions.s: rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue__functions.c.s rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue_poll__functions.o: rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue_poll__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue_poll__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue_poll__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue_poll__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue_poll__functions.c.o rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue_poll__functions.i: rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue_poll__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue_poll__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue_poll__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue_poll__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue_poll__functions.c.i rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue_poll__functions.s: rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue_poll__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue_poll__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue_poll__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue_poll__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue_poll__functions.c.s rosidl_generator_c/px4_msgs/msg/orb_test_medium_wrap_around__functions.o: rosidl_generator_c/px4_msgs/msg/orb_test_medium_wrap_around__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium_wrap_around__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/orb_test_medium_wrap_around__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/orb_test_medium_wrap_around__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium_wrap_around__functions.c.o rosidl_generator_c/px4_msgs/msg/orb_test_medium_wrap_around__functions.i: rosidl_generator_c/px4_msgs/msg/orb_test_medium_wrap_around__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium_wrap_around__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/orb_test_medium_wrap_around__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/orb_test_medium_wrap_around__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium_wrap_around__functions.c.i rosidl_generator_c/px4_msgs/msg/orb_test_medium_wrap_around__functions.s: rosidl_generator_c/px4_msgs/msg/orb_test_medium_wrap_around__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium_wrap_around__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/orb_test_medium_wrap_around__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/orb_test_medium_wrap_around__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/orb_test_medium_wrap_around__functions.c.s rosidl_generator_c/px4_msgs/msg/orbit_status__functions.o: rosidl_generator_c/px4_msgs/msg/orbit_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/orbit_status__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/orbit_status__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/orbit_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/orbit_status__functions.c.o rosidl_generator_c/px4_msgs/msg/orbit_status__functions.i: rosidl_generator_c/px4_msgs/msg/orbit_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/orbit_status__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/orbit_status__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/orbit_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/orbit_status__functions.c.i rosidl_generator_c/px4_msgs/msg/orbit_status__functions.s: rosidl_generator_c/px4_msgs/msg/orbit_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/orbit_status__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/orbit_status__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/orbit_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/orbit_status__functions.c.s rosidl_generator_c/px4_msgs/msg/parameter_update__functions.o: rosidl_generator_c/px4_msgs/msg/parameter_update__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/parameter_update__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/parameter_update__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/parameter_update__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/parameter_update__functions.c.o rosidl_generator_c/px4_msgs/msg/parameter_update__functions.i: rosidl_generator_c/px4_msgs/msg/parameter_update__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/parameter_update__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/parameter_update__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/parameter_update__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/parameter_update__functions.c.i rosidl_generator_c/px4_msgs/msg/parameter_update__functions.s: rosidl_generator_c/px4_msgs/msg/parameter_update__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/parameter_update__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/parameter_update__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/parameter_update__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/parameter_update__functions.c.s rosidl_generator_c/px4_msgs/msg/ping__functions.o: rosidl_generator_c/px4_msgs/msg/ping__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/ping__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/ping__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/ping__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/ping__functions.c.o rosidl_generator_c/px4_msgs/msg/ping__functions.i: rosidl_generator_c/px4_msgs/msg/ping__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/ping__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/ping__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/ping__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/ping__functions.c.i rosidl_generator_c/px4_msgs/msg/ping__functions.s: rosidl_generator_c/px4_msgs/msg/ping__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/ping__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/ping__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/ping__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/ping__functions.c.s rosidl_generator_c/px4_msgs/msg/position_controller_landing_status__functions.o: rosidl_generator_c/px4_msgs/msg/position_controller_landing_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/position_controller_landing_status__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/position_controller_landing_status__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/position_controller_landing_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/position_controller_landing_status__functions.c.o rosidl_generator_c/px4_msgs/msg/position_controller_landing_status__functions.i: rosidl_generator_c/px4_msgs/msg/position_controller_landing_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/position_controller_landing_status__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/position_controller_landing_status__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/position_controller_landing_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/position_controller_landing_status__functions.c.i rosidl_generator_c/px4_msgs/msg/position_controller_landing_status__functions.s: rosidl_generator_c/px4_msgs/msg/position_controller_landing_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/position_controller_landing_status__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/position_controller_landing_status__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/position_controller_landing_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/position_controller_landing_status__functions.c.s rosidl_generator_c/px4_msgs/msg/position_controller_status__functions.o: rosidl_generator_c/px4_msgs/msg/position_controller_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/position_controller_status__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/position_controller_status__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/position_controller_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/position_controller_status__functions.c.o rosidl_generator_c/px4_msgs/msg/position_controller_status__functions.i: rosidl_generator_c/px4_msgs/msg/position_controller_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/position_controller_status__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/position_controller_status__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/position_controller_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/position_controller_status__functions.c.i rosidl_generator_c/px4_msgs/msg/position_controller_status__functions.s: rosidl_generator_c/px4_msgs/msg/position_controller_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/position_controller_status__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/position_controller_status__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/position_controller_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/position_controller_status__functions.c.s rosidl_generator_c/px4_msgs/msg/position_setpoint__functions.o: rosidl_generator_c/px4_msgs/msg/position_setpoint__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/position_setpoint__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/position_setpoint__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/position_setpoint__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/position_setpoint__functions.c.o rosidl_generator_c/px4_msgs/msg/position_setpoint__functions.i: rosidl_generator_c/px4_msgs/msg/position_setpoint__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/position_setpoint__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/position_setpoint__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/position_setpoint__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/position_setpoint__functions.c.i rosidl_generator_c/px4_msgs/msg/position_setpoint__functions.s: rosidl_generator_c/px4_msgs/msg/position_setpoint__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/position_setpoint__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/position_setpoint__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/position_setpoint__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/position_setpoint__functions.c.s rosidl_generator_c/px4_msgs/msg/position_setpoint_triplet__functions.o: rosidl_generator_c/px4_msgs/msg/position_setpoint_triplet__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/position_setpoint_triplet__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/position_setpoint_triplet__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/position_setpoint_triplet__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/position_setpoint_triplet__functions.c.o rosidl_generator_c/px4_msgs/msg/position_setpoint_triplet__functions.i: rosidl_generator_c/px4_msgs/msg/position_setpoint_triplet__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/position_setpoint_triplet__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/position_setpoint_triplet__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/position_setpoint_triplet__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/position_setpoint_triplet__functions.c.i rosidl_generator_c/px4_msgs/msg/position_setpoint_triplet__functions.s: rosidl_generator_c/px4_msgs/msg/position_setpoint_triplet__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/position_setpoint_triplet__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/position_setpoint_triplet__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/position_setpoint_triplet__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/position_setpoint_triplet__functions.c.s rosidl_generator_c/px4_msgs/msg/power_button_state__functions.o: rosidl_generator_c/px4_msgs/msg/power_button_state__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/power_button_state__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/power_button_state__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/power_button_state__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/power_button_state__functions.c.o rosidl_generator_c/px4_msgs/msg/power_button_state__functions.i: rosidl_generator_c/px4_msgs/msg/power_button_state__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/power_button_state__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/power_button_state__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/power_button_state__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/power_button_state__functions.c.i rosidl_generator_c/px4_msgs/msg/power_button_state__functions.s: rosidl_generator_c/px4_msgs/msg/power_button_state__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/power_button_state__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/power_button_state__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/power_button_state__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/power_button_state__functions.c.s rosidl_generator_c/px4_msgs/msg/power_monitor__functions.o: rosidl_generator_c/px4_msgs/msg/power_monitor__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/power_monitor__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/power_monitor__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/power_monitor__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/power_monitor__functions.c.o rosidl_generator_c/px4_msgs/msg/power_monitor__functions.i: rosidl_generator_c/px4_msgs/msg/power_monitor__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/power_monitor__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/power_monitor__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/power_monitor__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/power_monitor__functions.c.i rosidl_generator_c/px4_msgs/msg/power_monitor__functions.s: rosidl_generator_c/px4_msgs/msg/power_monitor__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/power_monitor__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/power_monitor__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/power_monitor__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/power_monitor__functions.c.s rosidl_generator_c/px4_msgs/msg/pwm_input__functions.o: rosidl_generator_c/px4_msgs/msg/pwm_input__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/pwm_input__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/pwm_input__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/pwm_input__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/pwm_input__functions.c.o rosidl_generator_c/px4_msgs/msg/pwm_input__functions.i: rosidl_generator_c/px4_msgs/msg/pwm_input__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/pwm_input__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/pwm_input__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/pwm_input__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/pwm_input__functions.c.i rosidl_generator_c/px4_msgs/msg/pwm_input__functions.s: rosidl_generator_c/px4_msgs/msg/pwm_input__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/pwm_input__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/pwm_input__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/pwm_input__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/pwm_input__functions.c.s rosidl_generator_c/px4_msgs/msg/px4_io_status__functions.o: rosidl_generator_c/px4_msgs/msg/px4_io_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/px4_io_status__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/px4_io_status__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/px4_io_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/px4_io_status__functions.c.o rosidl_generator_c/px4_msgs/msg/px4_io_status__functions.i: rosidl_generator_c/px4_msgs/msg/px4_io_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/px4_io_status__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/px4_io_status__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/px4_io_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/px4_io_status__functions.c.i rosidl_generator_c/px4_msgs/msg/px4_io_status__functions.s: rosidl_generator_c/px4_msgs/msg/px4_io_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/px4_io_status__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/px4_io_status__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/px4_io_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/px4_io_status__functions.c.s rosidl_generator_c/px4_msgs/msg/qshell_req__functions.o: rosidl_generator_c/px4_msgs/msg/qshell_req__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/qshell_req__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/qshell_req__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/qshell_req__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/qshell_req__functions.c.o rosidl_generator_c/px4_msgs/msg/qshell_req__functions.i: rosidl_generator_c/px4_msgs/msg/qshell_req__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/qshell_req__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/qshell_req__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/qshell_req__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/qshell_req__functions.c.i rosidl_generator_c/px4_msgs/msg/qshell_req__functions.s: rosidl_generator_c/px4_msgs/msg/qshell_req__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/qshell_req__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/qshell_req__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/qshell_req__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/qshell_req__functions.c.s rosidl_generator_c/px4_msgs/msg/qshell_retval__functions.o: rosidl_generator_c/px4_msgs/msg/qshell_retval__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/qshell_retval__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/qshell_retval__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/qshell_retval__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/qshell_retval__functions.c.o rosidl_generator_c/px4_msgs/msg/qshell_retval__functions.i: rosidl_generator_c/px4_msgs/msg/qshell_retval__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/qshell_retval__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/qshell_retval__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/qshell_retval__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/qshell_retval__functions.c.i rosidl_generator_c/px4_msgs/msg/qshell_retval__functions.s: rosidl_generator_c/px4_msgs/msg/qshell_retval__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/qshell_retval__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/qshell_retval__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/qshell_retval__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/qshell_retval__functions.c.s rosidl_generator_c/px4_msgs/msg/radio_status__functions.o: rosidl_generator_c/px4_msgs/msg/radio_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/radio_status__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/radio_status__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/radio_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/radio_status__functions.c.o rosidl_generator_c/px4_msgs/msg/radio_status__functions.i: rosidl_generator_c/px4_msgs/msg/radio_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/radio_status__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/radio_status__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/radio_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/radio_status__functions.c.i rosidl_generator_c/px4_msgs/msg/radio_status__functions.s: rosidl_generator_c/px4_msgs/msg/radio_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/radio_status__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/radio_status__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/radio_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/radio_status__functions.c.s rosidl_generator_c/px4_msgs/msg/rate_ctrl_status__functions.o: rosidl_generator_c/px4_msgs/msg/rate_ctrl_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/rate_ctrl_status__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/rate_ctrl_status__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/rate_ctrl_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/rate_ctrl_status__functions.c.o rosidl_generator_c/px4_msgs/msg/rate_ctrl_status__functions.i: rosidl_generator_c/px4_msgs/msg/rate_ctrl_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/rate_ctrl_status__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/rate_ctrl_status__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/rate_ctrl_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/rate_ctrl_status__functions.c.i rosidl_generator_c/px4_msgs/msg/rate_ctrl_status__functions.s: rosidl_generator_c/px4_msgs/msg/rate_ctrl_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/rate_ctrl_status__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/rate_ctrl_status__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/rate_ctrl_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/rate_ctrl_status__functions.c.s rosidl_generator_c/px4_msgs/msg/rc_channels__functions.o: rosidl_generator_c/px4_msgs/msg/rc_channels__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/rc_channels__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/rc_channels__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/rc_channels__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/rc_channels__functions.c.o rosidl_generator_c/px4_msgs/msg/rc_channels__functions.i: rosidl_generator_c/px4_msgs/msg/rc_channels__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/rc_channels__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/rc_channels__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/rc_channels__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/rc_channels__functions.c.i rosidl_generator_c/px4_msgs/msg/rc_channels__functions.s: rosidl_generator_c/px4_msgs/msg/rc_channels__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/rc_channels__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/rc_channels__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/rc_channels__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/rc_channels__functions.c.s rosidl_generator_c/px4_msgs/msg/rc_parameter_map__functions.o: rosidl_generator_c/px4_msgs/msg/rc_parameter_map__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/rc_parameter_map__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/rc_parameter_map__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/rc_parameter_map__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/rc_parameter_map__functions.c.o rosidl_generator_c/px4_msgs/msg/rc_parameter_map__functions.i: rosidl_generator_c/px4_msgs/msg/rc_parameter_map__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/rc_parameter_map__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/rc_parameter_map__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/rc_parameter_map__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/rc_parameter_map__functions.c.i rosidl_generator_c/px4_msgs/msg/rc_parameter_map__functions.s: rosidl_generator_c/px4_msgs/msg/rc_parameter_map__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/rc_parameter_map__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/rc_parameter_map__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/rc_parameter_map__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/rc_parameter_map__functions.c.s rosidl_generator_c/px4_msgs/msg/rpm__functions.o: rosidl_generator_c/px4_msgs/msg/rpm__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/rpm__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/rpm__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/rpm__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/rpm__functions.c.o rosidl_generator_c/px4_msgs/msg/rpm__functions.i: rosidl_generator_c/px4_msgs/msg/rpm__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/rpm__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/rpm__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/rpm__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/rpm__functions.c.i rosidl_generator_c/px4_msgs/msg/rpm__functions.s: rosidl_generator_c/px4_msgs/msg/rpm__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/rpm__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/rpm__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/rpm__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/rpm__functions.c.s rosidl_generator_c/px4_msgs/msg/rtl_flight_time__functions.o: rosidl_generator_c/px4_msgs/msg/rtl_flight_time__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/rtl_flight_time__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/rtl_flight_time__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/rtl_flight_time__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/rtl_flight_time__functions.c.o rosidl_generator_c/px4_msgs/msg/rtl_flight_time__functions.i: rosidl_generator_c/px4_msgs/msg/rtl_flight_time__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/rtl_flight_time__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/rtl_flight_time__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/rtl_flight_time__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/rtl_flight_time__functions.c.i rosidl_generator_c/px4_msgs/msg/rtl_flight_time__functions.s: rosidl_generator_c/px4_msgs/msg/rtl_flight_time__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/rtl_flight_time__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/rtl_flight_time__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/rtl_flight_time__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/rtl_flight_time__functions.c.s rosidl_generator_c/px4_msgs/msg/safety__functions.o: rosidl_generator_c/px4_msgs/msg/safety__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/safety__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/safety__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/safety__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/safety__functions.c.o rosidl_generator_c/px4_msgs/msg/safety__functions.i: rosidl_generator_c/px4_msgs/msg/safety__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/safety__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/safety__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/safety__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/safety__functions.c.i rosidl_generator_c/px4_msgs/msg/safety__functions.s: rosidl_generator_c/px4_msgs/msg/safety__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/safety__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/safety__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/safety__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/safety__functions.c.s rosidl_generator_c/px4_msgs/msg/satellite_info__functions.o: rosidl_generator_c/px4_msgs/msg/satellite_info__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/satellite_info__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/satellite_info__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/satellite_info__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/satellite_info__functions.c.o rosidl_generator_c/px4_msgs/msg/satellite_info__functions.i: rosidl_generator_c/px4_msgs/msg/satellite_info__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/satellite_info__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/satellite_info__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/satellite_info__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/satellite_info__functions.c.i rosidl_generator_c/px4_msgs/msg/satellite_info__functions.s: rosidl_generator_c/px4_msgs/msg/satellite_info__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/satellite_info__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/satellite_info__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/satellite_info__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/satellite_info__functions.c.s rosidl_generator_c/px4_msgs/msg/sensor_accel__functions.o: rosidl_generator_c/px4_msgs/msg/sensor_accel__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_accel__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/sensor_accel__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_accel__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_accel__functions.c.o rosidl_generator_c/px4_msgs/msg/sensor_accel__functions.i: rosidl_generator_c/px4_msgs/msg/sensor_accel__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_accel__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/sensor_accel__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_accel__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_accel__functions.c.i rosidl_generator_c/px4_msgs/msg/sensor_accel__functions.s: rosidl_generator_c/px4_msgs/msg/sensor_accel__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_accel__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/sensor_accel__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_accel__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_accel__functions.c.s rosidl_generator_c/px4_msgs/msg/sensor_accel_fifo__functions.o: rosidl_generator_c/px4_msgs/msg/sensor_accel_fifo__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_accel_fifo__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/sensor_accel_fifo__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_accel_fifo__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_accel_fifo__functions.c.o rosidl_generator_c/px4_msgs/msg/sensor_accel_fifo__functions.i: rosidl_generator_c/px4_msgs/msg/sensor_accel_fifo__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_accel_fifo__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/sensor_accel_fifo__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_accel_fifo__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_accel_fifo__functions.c.i rosidl_generator_c/px4_msgs/msg/sensor_accel_fifo__functions.s: rosidl_generator_c/px4_msgs/msg/sensor_accel_fifo__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_accel_fifo__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/sensor_accel_fifo__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_accel_fifo__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_accel_fifo__functions.c.s rosidl_generator_c/px4_msgs/msg/sensor_baro__functions.o: rosidl_generator_c/px4_msgs/msg/sensor_baro__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_baro__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/sensor_baro__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_baro__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_baro__functions.c.o rosidl_generator_c/px4_msgs/msg/sensor_baro__functions.i: rosidl_generator_c/px4_msgs/msg/sensor_baro__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_baro__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/sensor_baro__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_baro__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_baro__functions.c.i rosidl_generator_c/px4_msgs/msg/sensor_baro__functions.s: rosidl_generator_c/px4_msgs/msg/sensor_baro__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_baro__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/sensor_baro__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_baro__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_baro__functions.c.s rosidl_generator_c/px4_msgs/msg/sensor_combined__functions.o: rosidl_generator_c/px4_msgs/msg/sensor_combined__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_combined__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/sensor_combined__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_combined__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_combined__functions.c.o rosidl_generator_c/px4_msgs/msg/sensor_combined__functions.i: rosidl_generator_c/px4_msgs/msg/sensor_combined__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_combined__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/sensor_combined__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_combined__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_combined__functions.c.i rosidl_generator_c/px4_msgs/msg/sensor_combined__functions.s: rosidl_generator_c/px4_msgs/msg/sensor_combined__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_combined__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/sensor_combined__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_combined__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_combined__functions.c.s rosidl_generator_c/px4_msgs/msg/sensor_correction__functions.o: rosidl_generator_c/px4_msgs/msg/sensor_correction__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_correction__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/sensor_correction__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_correction__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_correction__functions.c.o rosidl_generator_c/px4_msgs/msg/sensor_correction__functions.i: rosidl_generator_c/px4_msgs/msg/sensor_correction__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_correction__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/sensor_correction__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_correction__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_correction__functions.c.i rosidl_generator_c/px4_msgs/msg/sensor_correction__functions.s: rosidl_generator_c/px4_msgs/msg/sensor_correction__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_correction__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/sensor_correction__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_correction__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_correction__functions.c.s rosidl_generator_c/px4_msgs/msg/sensor_gps__functions.o: rosidl_generator_c/px4_msgs/msg/sensor_gps__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_gps__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/sensor_gps__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_gps__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_gps__functions.c.o rosidl_generator_c/px4_msgs/msg/sensor_gps__functions.i: rosidl_generator_c/px4_msgs/msg/sensor_gps__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_gps__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/sensor_gps__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_gps__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_gps__functions.c.i rosidl_generator_c/px4_msgs/msg/sensor_gps__functions.s: rosidl_generator_c/px4_msgs/msg/sensor_gps__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_gps__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/sensor_gps__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_gps__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_gps__functions.c.s rosidl_generator_c/px4_msgs/msg/sensor_gyro__functions.o: rosidl_generator_c/px4_msgs/msg/sensor_gyro__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_gyro__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/sensor_gyro__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_gyro__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_gyro__functions.c.o rosidl_generator_c/px4_msgs/msg/sensor_gyro__functions.i: rosidl_generator_c/px4_msgs/msg/sensor_gyro__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_gyro__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/sensor_gyro__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_gyro__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_gyro__functions.c.i rosidl_generator_c/px4_msgs/msg/sensor_gyro__functions.s: rosidl_generator_c/px4_msgs/msg/sensor_gyro__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_gyro__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/sensor_gyro__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_gyro__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_gyro__functions.c.s rosidl_generator_c/px4_msgs/msg/sensor_gyro_fft__functions.o: rosidl_generator_c/px4_msgs/msg/sensor_gyro_fft__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_gyro_fft__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/sensor_gyro_fft__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_gyro_fft__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_gyro_fft__functions.c.o rosidl_generator_c/px4_msgs/msg/sensor_gyro_fft__functions.i: rosidl_generator_c/px4_msgs/msg/sensor_gyro_fft__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_gyro_fft__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/sensor_gyro_fft__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_gyro_fft__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_gyro_fft__functions.c.i rosidl_generator_c/px4_msgs/msg/sensor_gyro_fft__functions.s: rosidl_generator_c/px4_msgs/msg/sensor_gyro_fft__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_gyro_fft__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/sensor_gyro_fft__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_gyro_fft__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_gyro_fft__functions.c.s rosidl_generator_c/px4_msgs/msg/sensor_gyro_fifo__functions.o: rosidl_generator_c/px4_msgs/msg/sensor_gyro_fifo__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_gyro_fifo__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/sensor_gyro_fifo__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_gyro_fifo__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_gyro_fifo__functions.c.o rosidl_generator_c/px4_msgs/msg/sensor_gyro_fifo__functions.i: rosidl_generator_c/px4_msgs/msg/sensor_gyro_fifo__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_gyro_fifo__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/sensor_gyro_fifo__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_gyro_fifo__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_gyro_fifo__functions.c.i rosidl_generator_c/px4_msgs/msg/sensor_gyro_fifo__functions.s: rosidl_generator_c/px4_msgs/msg/sensor_gyro_fifo__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_gyro_fifo__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/sensor_gyro_fifo__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_gyro_fifo__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_gyro_fifo__functions.c.s rosidl_generator_c/px4_msgs/msg/sensor_mag__functions.o: rosidl_generator_c/px4_msgs/msg/sensor_mag__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_mag__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/sensor_mag__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_mag__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_mag__functions.c.o rosidl_generator_c/px4_msgs/msg/sensor_mag__functions.i: rosidl_generator_c/px4_msgs/msg/sensor_mag__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_mag__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/sensor_mag__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_mag__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_mag__functions.c.i rosidl_generator_c/px4_msgs/msg/sensor_mag__functions.s: rosidl_generator_c/px4_msgs/msg/sensor_mag__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_mag__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/sensor_mag__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_mag__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_mag__functions.c.s rosidl_generator_c/px4_msgs/msg/sensor_preflight_mag__functions.o: rosidl_generator_c/px4_msgs/msg/sensor_preflight_mag__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_preflight_mag__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/sensor_preflight_mag__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_preflight_mag__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_preflight_mag__functions.c.o rosidl_generator_c/px4_msgs/msg/sensor_preflight_mag__functions.i: rosidl_generator_c/px4_msgs/msg/sensor_preflight_mag__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_preflight_mag__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/sensor_preflight_mag__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_preflight_mag__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_preflight_mag__functions.c.i rosidl_generator_c/px4_msgs/msg/sensor_preflight_mag__functions.s: rosidl_generator_c/px4_msgs/msg/sensor_preflight_mag__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_preflight_mag__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/sensor_preflight_mag__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_preflight_mag__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_preflight_mag__functions.c.s rosidl_generator_c/px4_msgs/msg/sensor_selection__functions.o: rosidl_generator_c/px4_msgs/msg/sensor_selection__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_selection__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/sensor_selection__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_selection__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_selection__functions.c.o rosidl_generator_c/px4_msgs/msg/sensor_selection__functions.i: rosidl_generator_c/px4_msgs/msg/sensor_selection__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_selection__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/sensor_selection__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_selection__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_selection__functions.c.i rosidl_generator_c/px4_msgs/msg/sensor_selection__functions.s: rosidl_generator_c/px4_msgs/msg/sensor_selection__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_selection__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/sensor_selection__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensor_selection__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/sensor_selection__functions.c.s rosidl_generator_c/px4_msgs/msg/sensors_status_imu__functions.o: rosidl_generator_c/px4_msgs/msg/sensors_status_imu__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/sensors_status_imu__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/sensors_status_imu__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensors_status_imu__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/sensors_status_imu__functions.c.o rosidl_generator_c/px4_msgs/msg/sensors_status_imu__functions.i: rosidl_generator_c/px4_msgs/msg/sensors_status_imu__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/sensors_status_imu__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/sensors_status_imu__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensors_status_imu__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/sensors_status_imu__functions.c.i rosidl_generator_c/px4_msgs/msg/sensors_status_imu__functions.s: rosidl_generator_c/px4_msgs/msg/sensors_status_imu__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/sensors_status_imu__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/sensors_status_imu__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/sensors_status_imu__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/sensors_status_imu__functions.c.s rosidl_generator_c/px4_msgs/msg/system_power__functions.o: rosidl_generator_c/px4_msgs/msg/system_power__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/system_power__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/system_power__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/system_power__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/system_power__functions.c.o rosidl_generator_c/px4_msgs/msg/system_power__functions.i: rosidl_generator_c/px4_msgs/msg/system_power__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/system_power__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/system_power__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/system_power__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/system_power__functions.c.i rosidl_generator_c/px4_msgs/msg/system_power__functions.s: rosidl_generator_c/px4_msgs/msg/system_power__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/system_power__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/system_power__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/system_power__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/system_power__functions.c.s rosidl_generator_c/px4_msgs/msg/takeoff_status__functions.o: rosidl_generator_c/px4_msgs/msg/takeoff_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/takeoff_status__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/takeoff_status__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/takeoff_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/takeoff_status__functions.c.o rosidl_generator_c/px4_msgs/msg/takeoff_status__functions.i: rosidl_generator_c/px4_msgs/msg/takeoff_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/takeoff_status__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/takeoff_status__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/takeoff_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/takeoff_status__functions.c.i rosidl_generator_c/px4_msgs/msg/takeoff_status__functions.s: rosidl_generator_c/px4_msgs/msg/takeoff_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/takeoff_status__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/takeoff_status__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/takeoff_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/takeoff_status__functions.c.s rosidl_generator_c/px4_msgs/msg/task_stack_info__functions.o: rosidl_generator_c/px4_msgs/msg/task_stack_info__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/task_stack_info__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/task_stack_info__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/task_stack_info__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/task_stack_info__functions.c.o rosidl_generator_c/px4_msgs/msg/task_stack_info__functions.i: rosidl_generator_c/px4_msgs/msg/task_stack_info__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/task_stack_info__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/task_stack_info__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/task_stack_info__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/task_stack_info__functions.c.i rosidl_generator_c/px4_msgs/msg/task_stack_info__functions.s: rosidl_generator_c/px4_msgs/msg/task_stack_info__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/task_stack_info__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/task_stack_info__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/task_stack_info__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/task_stack_info__functions.c.s rosidl_generator_c/px4_msgs/msg/tecs_status__functions.o: rosidl_generator_c/px4_msgs/msg/tecs_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/tecs_status__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/tecs_status__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/tecs_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/tecs_status__functions.c.o rosidl_generator_c/px4_msgs/msg/tecs_status__functions.i: rosidl_generator_c/px4_msgs/msg/tecs_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/tecs_status__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/tecs_status__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/tecs_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/tecs_status__functions.c.i rosidl_generator_c/px4_msgs/msg/tecs_status__functions.s: rosidl_generator_c/px4_msgs/msg/tecs_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/tecs_status__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/tecs_status__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/tecs_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/tecs_status__functions.c.s rosidl_generator_c/px4_msgs/msg/telemetry_status__functions.o: rosidl_generator_c/px4_msgs/msg/telemetry_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/telemetry_status__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/telemetry_status__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/telemetry_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/telemetry_status__functions.c.o rosidl_generator_c/px4_msgs/msg/telemetry_status__functions.i: rosidl_generator_c/px4_msgs/msg/telemetry_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/telemetry_status__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/telemetry_status__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/telemetry_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/telemetry_status__functions.c.i rosidl_generator_c/px4_msgs/msg/telemetry_status__functions.s: rosidl_generator_c/px4_msgs/msg/telemetry_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/telemetry_status__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/telemetry_status__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/telemetry_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/telemetry_status__functions.c.s rosidl_generator_c/px4_msgs/msg/test_motor__functions.o: rosidl_generator_c/px4_msgs/msg/test_motor__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/test_motor__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/test_motor__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/test_motor__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/test_motor__functions.c.o rosidl_generator_c/px4_msgs/msg/test_motor__functions.i: rosidl_generator_c/px4_msgs/msg/test_motor__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/test_motor__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/test_motor__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/test_motor__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/test_motor__functions.c.i rosidl_generator_c/px4_msgs/msg/test_motor__functions.s: rosidl_generator_c/px4_msgs/msg/test_motor__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/test_motor__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/test_motor__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/test_motor__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/test_motor__functions.c.s rosidl_generator_c/px4_msgs/msg/timesync__functions.o: rosidl_generator_c/px4_msgs/msg/timesync__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/timesync__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/timesync__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/timesync__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/timesync__functions.c.o rosidl_generator_c/px4_msgs/msg/timesync__functions.i: rosidl_generator_c/px4_msgs/msg/timesync__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/timesync__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/timesync__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/timesync__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/timesync__functions.c.i rosidl_generator_c/px4_msgs/msg/timesync__functions.s: rosidl_generator_c/px4_msgs/msg/timesync__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/timesync__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/timesync__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/timesync__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/timesync__functions.c.s rosidl_generator_c/px4_msgs/msg/timesync_status__functions.o: rosidl_generator_c/px4_msgs/msg/timesync_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/timesync_status__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/timesync_status__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/timesync_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/timesync_status__functions.c.o rosidl_generator_c/px4_msgs/msg/timesync_status__functions.i: rosidl_generator_c/px4_msgs/msg/timesync_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/timesync_status__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/timesync_status__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/timesync_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/timesync_status__functions.c.i rosidl_generator_c/px4_msgs/msg/timesync_status__functions.s: rosidl_generator_c/px4_msgs/msg/timesync_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/timesync_status__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/timesync_status__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/timesync_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/timesync_status__functions.c.s rosidl_generator_c/px4_msgs/msg/trajectory_bezier__functions.o: rosidl_generator_c/px4_msgs/msg/trajectory_bezier__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/trajectory_bezier__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/trajectory_bezier__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/trajectory_bezier__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/trajectory_bezier__functions.c.o rosidl_generator_c/px4_msgs/msg/trajectory_bezier__functions.i: rosidl_generator_c/px4_msgs/msg/trajectory_bezier__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/trajectory_bezier__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/trajectory_bezier__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/trajectory_bezier__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/trajectory_bezier__functions.c.i rosidl_generator_c/px4_msgs/msg/trajectory_bezier__functions.s: rosidl_generator_c/px4_msgs/msg/trajectory_bezier__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/trajectory_bezier__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/trajectory_bezier__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/trajectory_bezier__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/trajectory_bezier__functions.c.s rosidl_generator_c/px4_msgs/msg/trajectory_setpoint__functions.o: rosidl_generator_c/px4_msgs/msg/trajectory_setpoint__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/trajectory_setpoint__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/trajectory_setpoint__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/trajectory_setpoint__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/trajectory_setpoint__functions.c.o rosidl_generator_c/px4_msgs/msg/trajectory_setpoint__functions.i: rosidl_generator_c/px4_msgs/msg/trajectory_setpoint__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/trajectory_setpoint__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/trajectory_setpoint__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/trajectory_setpoint__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/trajectory_setpoint__functions.c.i rosidl_generator_c/px4_msgs/msg/trajectory_setpoint__functions.s: rosidl_generator_c/px4_msgs/msg/trajectory_setpoint__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/trajectory_setpoint__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/trajectory_setpoint__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/trajectory_setpoint__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/trajectory_setpoint__functions.c.s rosidl_generator_c/px4_msgs/msg/trajectory_waypoint__functions.o: rosidl_generator_c/px4_msgs/msg/trajectory_waypoint__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/trajectory_waypoint__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/trajectory_waypoint__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/trajectory_waypoint__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/trajectory_waypoint__functions.c.o rosidl_generator_c/px4_msgs/msg/trajectory_waypoint__functions.i: rosidl_generator_c/px4_msgs/msg/trajectory_waypoint__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/trajectory_waypoint__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/trajectory_waypoint__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/trajectory_waypoint__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/trajectory_waypoint__functions.c.i rosidl_generator_c/px4_msgs/msg/trajectory_waypoint__functions.s: rosidl_generator_c/px4_msgs/msg/trajectory_waypoint__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/trajectory_waypoint__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/trajectory_waypoint__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/trajectory_waypoint__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/trajectory_waypoint__functions.c.s rosidl_generator_c/px4_msgs/msg/transponder_report__functions.o: rosidl_generator_c/px4_msgs/msg/transponder_report__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/transponder_report__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/transponder_report__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/transponder_report__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/transponder_report__functions.c.o rosidl_generator_c/px4_msgs/msg/transponder_report__functions.i: rosidl_generator_c/px4_msgs/msg/transponder_report__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/transponder_report__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/transponder_report__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/transponder_report__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/transponder_report__functions.c.i rosidl_generator_c/px4_msgs/msg/transponder_report__functions.s: rosidl_generator_c/px4_msgs/msg/transponder_report__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/transponder_report__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/transponder_report__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/transponder_report__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/transponder_report__functions.c.s rosidl_generator_c/px4_msgs/msg/tune_control__functions.o: rosidl_generator_c/px4_msgs/msg/tune_control__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/tune_control__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/tune_control__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/tune_control__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/tune_control__functions.c.o rosidl_generator_c/px4_msgs/msg/tune_control__functions.i: rosidl_generator_c/px4_msgs/msg/tune_control__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/tune_control__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/tune_control__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/tune_control__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/tune_control__functions.c.i rosidl_generator_c/px4_msgs/msg/tune_control__functions.s: rosidl_generator_c/px4_msgs/msg/tune_control__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/tune_control__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/tune_control__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/tune_control__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/tune_control__functions.c.s rosidl_generator_c/px4_msgs/msg/uavcan_parameter_request__functions.o: rosidl_generator_c/px4_msgs/msg/uavcan_parameter_request__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/uavcan_parameter_request__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/uavcan_parameter_request__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/uavcan_parameter_request__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/uavcan_parameter_request__functions.c.o rosidl_generator_c/px4_msgs/msg/uavcan_parameter_request__functions.i: rosidl_generator_c/px4_msgs/msg/uavcan_parameter_request__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/uavcan_parameter_request__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/uavcan_parameter_request__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/uavcan_parameter_request__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/uavcan_parameter_request__functions.c.i rosidl_generator_c/px4_msgs/msg/uavcan_parameter_request__functions.s: rosidl_generator_c/px4_msgs/msg/uavcan_parameter_request__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/uavcan_parameter_request__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/uavcan_parameter_request__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/uavcan_parameter_request__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/uavcan_parameter_request__functions.c.s rosidl_generator_c/px4_msgs/msg/uavcan_parameter_value__functions.o: rosidl_generator_c/px4_msgs/msg/uavcan_parameter_value__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/uavcan_parameter_value__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/uavcan_parameter_value__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/uavcan_parameter_value__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/uavcan_parameter_value__functions.c.o rosidl_generator_c/px4_msgs/msg/uavcan_parameter_value__functions.i: rosidl_generator_c/px4_msgs/msg/uavcan_parameter_value__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/uavcan_parameter_value__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/uavcan_parameter_value__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/uavcan_parameter_value__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/uavcan_parameter_value__functions.c.i rosidl_generator_c/px4_msgs/msg/uavcan_parameter_value__functions.s: rosidl_generator_c/px4_msgs/msg/uavcan_parameter_value__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/uavcan_parameter_value__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/uavcan_parameter_value__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/uavcan_parameter_value__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/uavcan_parameter_value__functions.c.s rosidl_generator_c/px4_msgs/msg/ulog_stream__functions.o: rosidl_generator_c/px4_msgs/msg/ulog_stream__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/ulog_stream__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/ulog_stream__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/ulog_stream__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/ulog_stream__functions.c.o rosidl_generator_c/px4_msgs/msg/ulog_stream__functions.i: rosidl_generator_c/px4_msgs/msg/ulog_stream__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/ulog_stream__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/ulog_stream__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/ulog_stream__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/ulog_stream__functions.c.i rosidl_generator_c/px4_msgs/msg/ulog_stream__functions.s: rosidl_generator_c/px4_msgs/msg/ulog_stream__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/ulog_stream__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/ulog_stream__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/ulog_stream__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/ulog_stream__functions.c.s rosidl_generator_c/px4_msgs/msg/ulog_stream_ack__functions.o: rosidl_generator_c/px4_msgs/msg/ulog_stream_ack__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/ulog_stream_ack__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/ulog_stream_ack__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/ulog_stream_ack__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/ulog_stream_ack__functions.c.o rosidl_generator_c/px4_msgs/msg/ulog_stream_ack__functions.i: rosidl_generator_c/px4_msgs/msg/ulog_stream_ack__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/ulog_stream_ack__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/ulog_stream_ack__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/ulog_stream_ack__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/ulog_stream_ack__functions.c.i rosidl_generator_c/px4_msgs/msg/ulog_stream_ack__functions.s: rosidl_generator_c/px4_msgs/msg/ulog_stream_ack__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/ulog_stream_ack__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/ulog_stream_ack__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/ulog_stream_ack__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/ulog_stream_ack__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_acceleration__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_acceleration__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_acceleration__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_acceleration__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_acceleration__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_acceleration__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_acceleration__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_acceleration__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_acceleration__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_acceleration__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_acceleration__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_acceleration__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_acceleration__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_acceleration__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_acceleration__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_acceleration__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_acceleration__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_acceleration__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_actuator_setpoint__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_actuator_setpoint__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_actuator_setpoint__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_actuator_setpoint__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_actuator_setpoint__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_actuator_setpoint__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_actuator_setpoint__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_actuator_setpoint__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_actuator_setpoint__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_actuator_setpoint__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_actuator_setpoint__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_actuator_setpoint__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_actuator_setpoint__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_actuator_setpoint__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_actuator_setpoint__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_actuator_setpoint__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_actuator_setpoint__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_actuator_setpoint__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_air_data__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_air_data__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_air_data__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_air_data__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_air_data__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_air_data__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_air_data__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_air_data__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_air_data__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_air_data__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_air_data__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_air_data__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_air_data__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_air_data__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_air_data__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_air_data__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_air_data__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_air_data__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_attitude__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_attitude__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_attitude__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_attitude__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_attitude__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_attitude__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_attitude__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_attitude__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_attitude__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_attitude__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_attitude__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_attitude__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_attitude__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_attitude__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_attitude__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_attitude__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_attitude__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_attitude__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_attitude_groundtruth__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_attitude_groundtruth__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_attitude_groundtruth__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_attitude_groundtruth__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_attitude_groundtruth__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_attitude_groundtruth__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_attitude_groundtruth__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_attitude_groundtruth__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_attitude_groundtruth__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_attitude_groundtruth__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_attitude_groundtruth__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_attitude_groundtruth__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_attitude_groundtruth__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_attitude_groundtruth__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_attitude_groundtruth__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_attitude_groundtruth__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_attitude_groundtruth__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_attitude_groundtruth__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_attitude_setpoint__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_attitude_setpoint__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_attitude_setpoint__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_attitude_setpoint__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_attitude_setpoint__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_attitude_setpoint__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_attitude_setpoint__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_attitude_setpoint__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_attitude_setpoint__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_attitude_setpoint__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_attitude_setpoint__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_attitude_setpoint__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_attitude_setpoint__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_attitude_setpoint__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_attitude_setpoint__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_attitude_setpoint__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_attitude_setpoint__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_attitude_setpoint__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_command__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_command__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_command__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_command__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_command__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_command__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_command__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_command__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_command__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_command__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_command__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_command__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_command__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_command__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_command__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_command__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_command__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_command__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_command_ack__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_command_ack__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_command_ack__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_command_ack__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_command_ack__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_command_ack__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_command_ack__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_command_ack__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_command_ack__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_command_ack__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_command_ack__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_command_ack__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_command_ack__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_command_ack__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_command_ack__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_command_ack__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_command_ack__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_command_ack__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_constraints__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_constraints__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_constraints__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_constraints__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_constraints__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_constraints__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_constraints__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_constraints__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_constraints__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_constraints__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_constraints__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_constraints__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_constraints__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_constraints__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_constraints__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_constraints__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_constraints__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_constraints__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_control_mode__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_control_mode__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_control_mode__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_control_mode__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_control_mode__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_control_mode__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_control_mode__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_control_mode__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_control_mode__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_control_mode__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_control_mode__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_control_mode__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_control_mode__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_control_mode__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_control_mode__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_control_mode__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_control_mode__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_control_mode__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_global_position__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_global_position__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_global_position__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_global_position__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_global_position__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_global_position__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_global_position__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_global_position__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_global_position__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_global_position__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_global_position__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_global_position__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_global_position__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_global_position__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_global_position__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_global_position__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_global_position__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_global_position__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_global_position_groundtruth__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_global_position_groundtruth__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_global_position_groundtruth__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_global_position_groundtruth__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_global_position_groundtruth__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_global_position_groundtruth__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_global_position_groundtruth__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_global_position_groundtruth__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_global_position_groundtruth__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_global_position_groundtruth__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_global_position_groundtruth__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_global_position_groundtruth__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_global_position_groundtruth__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_global_position_groundtruth__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_global_position_groundtruth__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_global_position_groundtruth__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_global_position_groundtruth__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_global_position_groundtruth__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_gps_position__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_gps_position__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_gps_position__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_gps_position__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_gps_position__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_gps_position__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_gps_position__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_gps_position__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_gps_position__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_gps_position__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_gps_position__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_gps_position__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_gps_position__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_gps_position__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_gps_position__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_gps_position__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_gps_position__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_gps_position__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_imu__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_imu__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_imu__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_imu__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_imu__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_imu__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_imu__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_imu__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_imu__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_imu__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_imu__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_imu__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_imu__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_imu__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_imu__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_imu__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_imu__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_imu__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_imu_status__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_imu_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_imu_status__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_imu_status__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_imu_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_imu_status__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_imu_status__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_imu_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_imu_status__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_imu_status__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_imu_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_imu_status__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_imu_status__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_imu_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_imu_status__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_imu_status__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_imu_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_imu_status__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_land_detected__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_land_detected__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_land_detected__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_land_detected__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_land_detected__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_land_detected__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_land_detected__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_land_detected__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_land_detected__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_land_detected__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_land_detected__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_land_detected__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_land_detected__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_land_detected__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_land_detected__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_land_detected__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_land_detected__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_land_detected__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_local_position__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_local_position__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_local_position__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_local_position__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_local_position__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_local_position__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_local_position__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_local_position__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_local_position__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_local_position__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_local_position__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_local_position__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_local_position__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_local_position__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_local_position__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_local_position__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_local_position__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_local_position__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_local_position_groundtruth__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_local_position_groundtruth__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_local_position_groundtruth__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_local_position_groundtruth__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_local_position_groundtruth__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_local_position_groundtruth__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_local_position_groundtruth__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_local_position_groundtruth__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_local_position_groundtruth__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_local_position_groundtruth__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_local_position_groundtruth__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_local_position_groundtruth__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_local_position_groundtruth__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_local_position_groundtruth__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_local_position_groundtruth__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_local_position_groundtruth__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_local_position_groundtruth__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_local_position_groundtruth__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_local_position_setpoint__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_local_position_setpoint__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_local_position_setpoint__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_local_position_setpoint__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_local_position_setpoint__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_local_position_setpoint__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_local_position_setpoint__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_local_position_setpoint__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_local_position_setpoint__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_local_position_setpoint__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_local_position_setpoint__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_local_position_setpoint__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_local_position_setpoint__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_local_position_setpoint__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_local_position_setpoint__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_local_position_setpoint__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_local_position_setpoint__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_local_position_setpoint__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_magnetometer__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_magnetometer__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_magnetometer__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_magnetometer__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_magnetometer__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_magnetometer__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_magnetometer__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_magnetometer__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_magnetometer__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_magnetometer__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_magnetometer__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_magnetometer__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_magnetometer__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_magnetometer__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_magnetometer__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_magnetometer__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_magnetometer__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_magnetometer__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_mocap_odometry__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_mocap_odometry__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_mocap_odometry__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_mocap_odometry__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_mocap_odometry__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_mocap_odometry__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_mocap_odometry__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_mocap_odometry__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_mocap_odometry__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_mocap_odometry__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_mocap_odometry__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_mocap_odometry__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_mocap_odometry__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_mocap_odometry__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_mocap_odometry__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_mocap_odometry__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_mocap_odometry__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_mocap_odometry__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_odometry__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_odometry__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_odometry__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_odometry__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_odometry__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_odometry__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_odometry__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_odometry__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_odometry__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_odometry__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_odometry__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_odometry__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_odometry__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_odometry__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_odometry__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_odometry__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_odometry__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_odometry__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_rates_setpoint__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_rates_setpoint__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_rates_setpoint__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_rates_setpoint__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_rates_setpoint__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_rates_setpoint__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_rates_setpoint__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_rates_setpoint__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_rates_setpoint__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_rates_setpoint__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_rates_setpoint__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_rates_setpoint__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_rates_setpoint__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_rates_setpoint__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_rates_setpoint__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_rates_setpoint__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_rates_setpoint__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_rates_setpoint__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_roi__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_roi__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_roi__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_roi__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_roi__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_roi__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_roi__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_roi__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_roi__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_roi__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_roi__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_roi__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_roi__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_roi__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_roi__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_roi__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_roi__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_roi__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_status__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_status__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_status__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_status__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_status__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_status__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_status__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_status__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_status__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_status__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_status__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_status__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_status_flags__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_status_flags__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_status_flags__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_status_flags__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_status_flags__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_status_flags__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_status_flags__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_status_flags__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_status_flags__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_status_flags__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_status_flags__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_status_flags__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_status_flags__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_status_flags__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_status_flags__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_status_flags__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_status_flags__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_status_flags__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_thrust_setpoint__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_thrust_setpoint__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_thrust_setpoint__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_thrust_setpoint__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_thrust_setpoint__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_thrust_setpoint__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_thrust_setpoint__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_thrust_setpoint__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_thrust_setpoint__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_thrust_setpoint__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_thrust_setpoint__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_thrust_setpoint__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_thrust_setpoint__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_thrust_setpoint__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_thrust_setpoint__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_thrust_setpoint__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_thrust_setpoint__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_thrust_setpoint__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_torque_setpoint__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_torque_setpoint__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_torque_setpoint__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_torque_setpoint__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_torque_setpoint__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_torque_setpoint__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_torque_setpoint__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_torque_setpoint__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_torque_setpoint__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_torque_setpoint__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_torque_setpoint__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_torque_setpoint__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_torque_setpoint__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_torque_setpoint__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_torque_setpoint__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_torque_setpoint__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_torque_setpoint__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_torque_setpoint__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_bezier__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_bezier__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_bezier__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_bezier__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_bezier__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_bezier__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_bezier__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_bezier__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_bezier__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_bezier__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_bezier__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_bezier__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_bezier__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_bezier__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_bezier__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_bezier__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_bezier__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_bezier__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_vision_attitude__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_vision_attitude__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_vision_attitude__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_vision_attitude__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_vision_attitude__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_vision_attitude__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_vision_attitude__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_vision_attitude__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_vision_attitude__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_vision_attitude__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_vision_attitude__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_vision_attitude__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_vision_attitude__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_vision_attitude__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_vision_attitude__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_vision_attitude__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_vision_attitude__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_vision_attitude__functions.c.s rosidl_generator_c/px4_msgs/msg/vehicle_visual_odometry__functions.o: rosidl_generator_c/px4_msgs/msg/vehicle_visual_odometry__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_visual_odometry__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vehicle_visual_odometry__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_visual_odometry__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_visual_odometry__functions.c.o rosidl_generator_c/px4_msgs/msg/vehicle_visual_odometry__functions.i: rosidl_generator_c/px4_msgs/msg/vehicle_visual_odometry__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_visual_odometry__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vehicle_visual_odometry__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_visual_odometry__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_visual_odometry__functions.c.i rosidl_generator_c/px4_msgs/msg/vehicle_visual_odometry__functions.s: rosidl_generator_c/px4_msgs/msg/vehicle_visual_odometry__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_visual_odometry__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vehicle_visual_odometry__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vehicle_visual_odometry__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vehicle_visual_odometry__functions.c.s rosidl_generator_c/px4_msgs/msg/vtol_vehicle_status__functions.o: rosidl_generator_c/px4_msgs/msg/vtol_vehicle_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vtol_vehicle_status__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/vtol_vehicle_status__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vtol_vehicle_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/vtol_vehicle_status__functions.c.o rosidl_generator_c/px4_msgs/msg/vtol_vehicle_status__functions.i: rosidl_generator_c/px4_msgs/msg/vtol_vehicle_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vtol_vehicle_status__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/vtol_vehicle_status__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vtol_vehicle_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/vtol_vehicle_status__functions.c.i rosidl_generator_c/px4_msgs/msg/vtol_vehicle_status__functions.s: rosidl_generator_c/px4_msgs/msg/vtol_vehicle_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vtol_vehicle_status__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/vtol_vehicle_status__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/vtol_vehicle_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/vtol_vehicle_status__functions.c.s rosidl_generator_c/px4_msgs/msg/wheel_encoders__functions.o: rosidl_generator_c/px4_msgs/msg/wheel_encoders__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/wheel_encoders__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/wheel_encoders__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/wheel_encoders__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/wheel_encoders__functions.c.o rosidl_generator_c/px4_msgs/msg/wheel_encoders__functions.i: rosidl_generator_c/px4_msgs/msg/wheel_encoders__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/wheel_encoders__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/wheel_encoders__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/wheel_encoders__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/wheel_encoders__functions.c.i rosidl_generator_c/px4_msgs/msg/wheel_encoders__functions.s: rosidl_generator_c/px4_msgs/msg/wheel_encoders__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/wheel_encoders__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/wheel_encoders__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/wheel_encoders__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/wheel_encoders__functions.c.s rosidl_generator_c/px4_msgs/msg/wind__functions.o: rosidl_generator_c/px4_msgs/msg/wind__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/wind__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/wind__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/wind__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/wind__functions.c.o rosidl_generator_c/px4_msgs/msg/wind__functions.i: rosidl_generator_c/px4_msgs/msg/wind__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/wind__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/wind__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/wind__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/wind__functions.c.i rosidl_generator_c/px4_msgs/msg/wind__functions.s: rosidl_generator_c/px4_msgs/msg/wind__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/wind__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/wind__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/wind__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/wind__functions.c.s rosidl_generator_c/px4_msgs/msg/yaw_estimator_status__functions.o: rosidl_generator_c/px4_msgs/msg/yaw_estimator_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/yaw_estimator_status__functions.o # target to build an object file rosidl_generator_c/px4_msgs/msg/yaw_estimator_status__functions.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/yaw_estimator_status__functions.c.o .PHONY : rosidl_generator_c/px4_msgs/msg/yaw_estimator_status__functions.c.o rosidl_generator_c/px4_msgs/msg/yaw_estimator_status__functions.i: rosidl_generator_c/px4_msgs/msg/yaw_estimator_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/yaw_estimator_status__functions.i # target to preprocess a source file rosidl_generator_c/px4_msgs/msg/yaw_estimator_status__functions.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/yaw_estimator_status__functions.c.i .PHONY : rosidl_generator_c/px4_msgs/msg/yaw_estimator_status__functions.c.i rosidl_generator_c/px4_msgs/msg/yaw_estimator_status__functions.s: rosidl_generator_c/px4_msgs/msg/yaw_estimator_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/yaw_estimator_status__functions.s # target to generate assembly for a file rosidl_generator_c/px4_msgs/msg/yaw_estimator_status__functions.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_generator_c.dir/build.make CMakeFiles/px4_msgs__rosidl_generator_c.dir/rosidl_generator_c/px4_msgs/msg/yaw_estimator_status__functions.c.s .PHONY : rosidl_generator_c/px4_msgs/msg/yaw_estimator_status__functions.c.s rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_c.o: rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_c.c.o .PHONY : rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_c.o # target to build an object file rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_c.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c__pyext.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c__pyext.dir/rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_c.c.o .PHONY : rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_c.c.o rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_c.i: rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_c.c.i .PHONY : rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_c.i # target to preprocess a source file rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_c.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c__pyext.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c__pyext.dir/rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_c.c.i .PHONY : rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_c.c.i rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_c.s: rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_c.c.s .PHONY : rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_c.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_c.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c__pyext.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c__pyext.dir/rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_c.c.s .PHONY : rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_c.c.s rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_fastrtps_c.o: rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_fastrtps_c.c.o .PHONY : rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_fastrtps_c.o # target to build an object file rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_fastrtps_c.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c__pyext.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c__pyext.dir/rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_fastrtps_c.c.o .PHONY : rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_fastrtps_c.c.o rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_fastrtps_c.i: rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_fastrtps_c.c.i .PHONY : rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_fastrtps_c.i # target to preprocess a source file rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_fastrtps_c.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c__pyext.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c__pyext.dir/rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_fastrtps_c.c.i .PHONY : rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_fastrtps_c.c.i rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_fastrtps_c.s: rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_fastrtps_c.c.s .PHONY : rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_fastrtps_c.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_fastrtps_c.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c__pyext.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c__pyext.dir/rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_fastrtps_c.c.s .PHONY : rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_fastrtps_c.c.s rosidl_generator_py/px4_msgs/msg/_actuator_armed_s.o: rosidl_generator_py/px4_msgs/msg/_actuator_armed_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_armed_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_actuator_armed_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_armed_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_armed_s.c.o rosidl_generator_py/px4_msgs/msg/_actuator_armed_s.i: rosidl_generator_py/px4_msgs/msg/_actuator_armed_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_armed_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_actuator_armed_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_armed_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_armed_s.c.i rosidl_generator_py/px4_msgs/msg/_actuator_armed_s.s: rosidl_generator_py/px4_msgs/msg/_actuator_armed_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_armed_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_actuator_armed_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_armed_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_armed_s.c.s rosidl_generator_py/px4_msgs/msg/_actuator_controls0_s.o: rosidl_generator_py/px4_msgs/msg/_actuator_controls0_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls0_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_actuator_controls0_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls0_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls0_s.c.o rosidl_generator_py/px4_msgs/msg/_actuator_controls0_s.i: rosidl_generator_py/px4_msgs/msg/_actuator_controls0_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls0_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_actuator_controls0_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls0_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls0_s.c.i rosidl_generator_py/px4_msgs/msg/_actuator_controls0_s.s: rosidl_generator_py/px4_msgs/msg/_actuator_controls0_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls0_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_actuator_controls0_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls0_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls0_s.c.s rosidl_generator_py/px4_msgs/msg/_actuator_controls1_s.o: rosidl_generator_py/px4_msgs/msg/_actuator_controls1_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls1_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_actuator_controls1_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls1_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls1_s.c.o rosidl_generator_py/px4_msgs/msg/_actuator_controls1_s.i: rosidl_generator_py/px4_msgs/msg/_actuator_controls1_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls1_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_actuator_controls1_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls1_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls1_s.c.i rosidl_generator_py/px4_msgs/msg/_actuator_controls1_s.s: rosidl_generator_py/px4_msgs/msg/_actuator_controls1_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls1_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_actuator_controls1_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls1_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls1_s.c.s rosidl_generator_py/px4_msgs/msg/_actuator_controls2_s.o: rosidl_generator_py/px4_msgs/msg/_actuator_controls2_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls2_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_actuator_controls2_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls2_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls2_s.c.o rosidl_generator_py/px4_msgs/msg/_actuator_controls2_s.i: rosidl_generator_py/px4_msgs/msg/_actuator_controls2_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls2_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_actuator_controls2_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls2_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls2_s.c.i rosidl_generator_py/px4_msgs/msg/_actuator_controls2_s.s: rosidl_generator_py/px4_msgs/msg/_actuator_controls2_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls2_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_actuator_controls2_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls2_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls2_s.c.s rosidl_generator_py/px4_msgs/msg/_actuator_controls3_s.o: rosidl_generator_py/px4_msgs/msg/_actuator_controls3_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls3_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_actuator_controls3_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls3_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls3_s.c.o rosidl_generator_py/px4_msgs/msg/_actuator_controls3_s.i: rosidl_generator_py/px4_msgs/msg/_actuator_controls3_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls3_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_actuator_controls3_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls3_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls3_s.c.i rosidl_generator_py/px4_msgs/msg/_actuator_controls3_s.s: rosidl_generator_py/px4_msgs/msg/_actuator_controls3_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls3_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_actuator_controls3_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls3_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls3_s.c.s rosidl_generator_py/px4_msgs/msg/_actuator_controls4_s.o: rosidl_generator_py/px4_msgs/msg/_actuator_controls4_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls4_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_actuator_controls4_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls4_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls4_s.c.o rosidl_generator_py/px4_msgs/msg/_actuator_controls4_s.i: rosidl_generator_py/px4_msgs/msg/_actuator_controls4_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls4_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_actuator_controls4_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls4_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls4_s.c.i rosidl_generator_py/px4_msgs/msg/_actuator_controls4_s.s: rosidl_generator_py/px4_msgs/msg/_actuator_controls4_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls4_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_actuator_controls4_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls4_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls4_s.c.s rosidl_generator_py/px4_msgs/msg/_actuator_controls5_s.o: rosidl_generator_py/px4_msgs/msg/_actuator_controls5_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls5_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_actuator_controls5_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls5_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls5_s.c.o rosidl_generator_py/px4_msgs/msg/_actuator_controls5_s.i: rosidl_generator_py/px4_msgs/msg/_actuator_controls5_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls5_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_actuator_controls5_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls5_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls5_s.c.i rosidl_generator_py/px4_msgs/msg/_actuator_controls5_s.s: rosidl_generator_py/px4_msgs/msg/_actuator_controls5_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls5_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_actuator_controls5_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls5_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls5_s.c.s rosidl_generator_py/px4_msgs/msg/_actuator_controls_s.o: rosidl_generator_py/px4_msgs/msg/_actuator_controls_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_actuator_controls_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls_s.c.o rosidl_generator_py/px4_msgs/msg/_actuator_controls_s.i: rosidl_generator_py/px4_msgs/msg/_actuator_controls_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_actuator_controls_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls_s.c.i rosidl_generator_py/px4_msgs/msg/_actuator_controls_s.s: rosidl_generator_py/px4_msgs/msg/_actuator_controls_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_actuator_controls_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls_s.c.s rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_fw_s.o: rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_fw_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_fw_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_fw_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_fw_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_fw_s.c.o rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_fw_s.i: rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_fw_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_fw_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_fw_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_fw_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_fw_s.c.i rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_fw_s.s: rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_fw_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_fw_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_fw_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_fw_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_fw_s.c.s rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_mc_s.o: rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_mc_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_mc_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_mc_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_mc_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_mc_s.c.o rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_mc_s.i: rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_mc_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_mc_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_mc_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_mc_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_mc_s.c.i rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_mc_s.s: rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_mc_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_mc_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_mc_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_mc_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_mc_s.c.s rosidl_generator_py/px4_msgs/msg/_actuator_outputs_s.o: rosidl_generator_py/px4_msgs/msg/_actuator_outputs_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_outputs_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_actuator_outputs_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_outputs_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_outputs_s.c.o rosidl_generator_py/px4_msgs/msg/_actuator_outputs_s.i: rosidl_generator_py/px4_msgs/msg/_actuator_outputs_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_outputs_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_actuator_outputs_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_outputs_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_outputs_s.c.i rosidl_generator_py/px4_msgs/msg/_actuator_outputs_s.s: rosidl_generator_py/px4_msgs/msg/_actuator_outputs_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_outputs_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_actuator_outputs_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_actuator_outputs_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_actuator_outputs_s.c.s rosidl_generator_py/px4_msgs/msg/_adc_report_s.o: rosidl_generator_py/px4_msgs/msg/_adc_report_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_adc_report_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_adc_report_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_adc_report_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_adc_report_s.c.o rosidl_generator_py/px4_msgs/msg/_adc_report_s.i: rosidl_generator_py/px4_msgs/msg/_adc_report_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_adc_report_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_adc_report_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_adc_report_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_adc_report_s.c.i rosidl_generator_py/px4_msgs/msg/_adc_report_s.s: rosidl_generator_py/px4_msgs/msg/_adc_report_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_adc_report_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_adc_report_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_adc_report_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_adc_report_s.c.s rosidl_generator_py/px4_msgs/msg/_airspeed_s.o: rosidl_generator_py/px4_msgs/msg/_airspeed_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_airspeed_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_airspeed_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_airspeed_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_airspeed_s.c.o rosidl_generator_py/px4_msgs/msg/_airspeed_s.i: rosidl_generator_py/px4_msgs/msg/_airspeed_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_airspeed_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_airspeed_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_airspeed_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_airspeed_s.c.i rosidl_generator_py/px4_msgs/msg/_airspeed_s.s: rosidl_generator_py/px4_msgs/msg/_airspeed_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_airspeed_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_airspeed_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_airspeed_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_airspeed_s.c.s rosidl_generator_py/px4_msgs/msg/_airspeed_validated_s.o: rosidl_generator_py/px4_msgs/msg/_airspeed_validated_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_airspeed_validated_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_airspeed_validated_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_airspeed_validated_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_airspeed_validated_s.c.o rosidl_generator_py/px4_msgs/msg/_airspeed_validated_s.i: rosidl_generator_py/px4_msgs/msg/_airspeed_validated_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_airspeed_validated_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_airspeed_validated_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_airspeed_validated_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_airspeed_validated_s.c.i rosidl_generator_py/px4_msgs/msg/_airspeed_validated_s.s: rosidl_generator_py/px4_msgs/msg/_airspeed_validated_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_airspeed_validated_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_airspeed_validated_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_airspeed_validated_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_airspeed_validated_s.c.s rosidl_generator_py/px4_msgs/msg/_airspeed_wind_s.o: rosidl_generator_py/px4_msgs/msg/_airspeed_wind_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_airspeed_wind_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_airspeed_wind_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_airspeed_wind_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_airspeed_wind_s.c.o rosidl_generator_py/px4_msgs/msg/_airspeed_wind_s.i: rosidl_generator_py/px4_msgs/msg/_airspeed_wind_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_airspeed_wind_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_airspeed_wind_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_airspeed_wind_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_airspeed_wind_s.c.i rosidl_generator_py/px4_msgs/msg/_airspeed_wind_s.s: rosidl_generator_py/px4_msgs/msg/_airspeed_wind_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_airspeed_wind_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_airspeed_wind_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_airspeed_wind_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_airspeed_wind_s.c.s rosidl_generator_py/px4_msgs/msg/_battery_status_s.o: rosidl_generator_py/px4_msgs/msg/_battery_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_battery_status_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_battery_status_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_battery_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_battery_status_s.c.o rosidl_generator_py/px4_msgs/msg/_battery_status_s.i: rosidl_generator_py/px4_msgs/msg/_battery_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_battery_status_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_battery_status_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_battery_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_battery_status_s.c.i rosidl_generator_py/px4_msgs/msg/_battery_status_s.s: rosidl_generator_py/px4_msgs/msg/_battery_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_battery_status_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_battery_status_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_battery_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_battery_status_s.c.s rosidl_generator_py/px4_msgs/msg/_camera_capture_s.o: rosidl_generator_py/px4_msgs/msg/_camera_capture_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_camera_capture_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_camera_capture_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_camera_capture_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_camera_capture_s.c.o rosidl_generator_py/px4_msgs/msg/_camera_capture_s.i: rosidl_generator_py/px4_msgs/msg/_camera_capture_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_camera_capture_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_camera_capture_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_camera_capture_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_camera_capture_s.c.i rosidl_generator_py/px4_msgs/msg/_camera_capture_s.s: rosidl_generator_py/px4_msgs/msg/_camera_capture_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_camera_capture_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_camera_capture_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_camera_capture_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_camera_capture_s.c.s rosidl_generator_py/px4_msgs/msg/_camera_trigger_s.o: rosidl_generator_py/px4_msgs/msg/_camera_trigger_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_camera_trigger_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_camera_trigger_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_camera_trigger_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_camera_trigger_s.c.o rosidl_generator_py/px4_msgs/msg/_camera_trigger_s.i: rosidl_generator_py/px4_msgs/msg/_camera_trigger_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_camera_trigger_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_camera_trigger_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_camera_trigger_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_camera_trigger_s.c.i rosidl_generator_py/px4_msgs/msg/_camera_trigger_s.s: rosidl_generator_py/px4_msgs/msg/_camera_trigger_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_camera_trigger_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_camera_trigger_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_camera_trigger_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_camera_trigger_s.c.s rosidl_generator_py/px4_msgs/msg/_camera_trigger_secondary_s.o: rosidl_generator_py/px4_msgs/msg/_camera_trigger_secondary_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_camera_trigger_secondary_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_camera_trigger_secondary_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_camera_trigger_secondary_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_camera_trigger_secondary_s.c.o rosidl_generator_py/px4_msgs/msg/_camera_trigger_secondary_s.i: rosidl_generator_py/px4_msgs/msg/_camera_trigger_secondary_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_camera_trigger_secondary_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_camera_trigger_secondary_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_camera_trigger_secondary_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_camera_trigger_secondary_s.c.i rosidl_generator_py/px4_msgs/msg/_camera_trigger_secondary_s.s: rosidl_generator_py/px4_msgs/msg/_camera_trigger_secondary_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_camera_trigger_secondary_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_camera_trigger_secondary_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_camera_trigger_secondary_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_camera_trigger_secondary_s.c.s rosidl_generator_py/px4_msgs/msg/_cellular_status_s.o: rosidl_generator_py/px4_msgs/msg/_cellular_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_cellular_status_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_cellular_status_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_cellular_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_cellular_status_s.c.o rosidl_generator_py/px4_msgs/msg/_cellular_status_s.i: rosidl_generator_py/px4_msgs/msg/_cellular_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_cellular_status_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_cellular_status_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_cellular_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_cellular_status_s.c.i rosidl_generator_py/px4_msgs/msg/_cellular_status_s.s: rosidl_generator_py/px4_msgs/msg/_cellular_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_cellular_status_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_cellular_status_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_cellular_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_cellular_status_s.c.s rosidl_generator_py/px4_msgs/msg/_collision_constraints_s.o: rosidl_generator_py/px4_msgs/msg/_collision_constraints_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_collision_constraints_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_collision_constraints_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_collision_constraints_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_collision_constraints_s.c.o rosidl_generator_py/px4_msgs/msg/_collision_constraints_s.i: rosidl_generator_py/px4_msgs/msg/_collision_constraints_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_collision_constraints_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_collision_constraints_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_collision_constraints_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_collision_constraints_s.c.i rosidl_generator_py/px4_msgs/msg/_collision_constraints_s.s: rosidl_generator_py/px4_msgs/msg/_collision_constraints_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_collision_constraints_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_collision_constraints_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_collision_constraints_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_collision_constraints_s.c.s rosidl_generator_py/px4_msgs/msg/_collision_report_s.o: rosidl_generator_py/px4_msgs/msg/_collision_report_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_collision_report_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_collision_report_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_collision_report_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_collision_report_s.c.o rosidl_generator_py/px4_msgs/msg/_collision_report_s.i: rosidl_generator_py/px4_msgs/msg/_collision_report_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_collision_report_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_collision_report_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_collision_report_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_collision_report_s.c.i rosidl_generator_py/px4_msgs/msg/_collision_report_s.s: rosidl_generator_py/px4_msgs/msg/_collision_report_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_collision_report_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_collision_report_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_collision_report_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_collision_report_s.c.s rosidl_generator_py/px4_msgs/msg/_commander_state_s.o: rosidl_generator_py/px4_msgs/msg/_commander_state_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_commander_state_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_commander_state_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_commander_state_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_commander_state_s.c.o rosidl_generator_py/px4_msgs/msg/_commander_state_s.i: rosidl_generator_py/px4_msgs/msg/_commander_state_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_commander_state_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_commander_state_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_commander_state_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_commander_state_s.c.i rosidl_generator_py/px4_msgs/msg/_commander_state_s.s: rosidl_generator_py/px4_msgs/msg/_commander_state_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_commander_state_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_commander_state_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_commander_state_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_commander_state_s.c.s rosidl_generator_py/px4_msgs/msg/_control_allocator_status_s.o: rosidl_generator_py/px4_msgs/msg/_control_allocator_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_control_allocator_status_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_control_allocator_status_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_control_allocator_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_control_allocator_status_s.c.o rosidl_generator_py/px4_msgs/msg/_control_allocator_status_s.i: rosidl_generator_py/px4_msgs/msg/_control_allocator_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_control_allocator_status_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_control_allocator_status_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_control_allocator_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_control_allocator_status_s.c.i rosidl_generator_py/px4_msgs/msg/_control_allocator_status_s.s: rosidl_generator_py/px4_msgs/msg/_control_allocator_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_control_allocator_status_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_control_allocator_status_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_control_allocator_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_control_allocator_status_s.c.s rosidl_generator_py/px4_msgs/msg/_cpuload_s.o: rosidl_generator_py/px4_msgs/msg/_cpuload_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_cpuload_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_cpuload_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_cpuload_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_cpuload_s.c.o rosidl_generator_py/px4_msgs/msg/_cpuload_s.i: rosidl_generator_py/px4_msgs/msg/_cpuload_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_cpuload_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_cpuload_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_cpuload_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_cpuload_s.c.i rosidl_generator_py/px4_msgs/msg/_cpuload_s.s: rosidl_generator_py/px4_msgs/msg/_cpuload_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_cpuload_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_cpuload_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_cpuload_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_cpuload_s.c.s rosidl_generator_py/px4_msgs/msg/_debug_array_s.o: rosidl_generator_py/px4_msgs/msg/_debug_array_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_debug_array_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_debug_array_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_debug_array_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_debug_array_s.c.o rosidl_generator_py/px4_msgs/msg/_debug_array_s.i: rosidl_generator_py/px4_msgs/msg/_debug_array_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_debug_array_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_debug_array_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_debug_array_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_debug_array_s.c.i rosidl_generator_py/px4_msgs/msg/_debug_array_s.s: rosidl_generator_py/px4_msgs/msg/_debug_array_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_debug_array_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_debug_array_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_debug_array_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_debug_array_s.c.s rosidl_generator_py/px4_msgs/msg/_debug_key_value_s.o: rosidl_generator_py/px4_msgs/msg/_debug_key_value_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_debug_key_value_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_debug_key_value_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_debug_key_value_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_debug_key_value_s.c.o rosidl_generator_py/px4_msgs/msg/_debug_key_value_s.i: rosidl_generator_py/px4_msgs/msg/_debug_key_value_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_debug_key_value_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_debug_key_value_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_debug_key_value_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_debug_key_value_s.c.i rosidl_generator_py/px4_msgs/msg/_debug_key_value_s.s: rosidl_generator_py/px4_msgs/msg/_debug_key_value_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_debug_key_value_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_debug_key_value_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_debug_key_value_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_debug_key_value_s.c.s rosidl_generator_py/px4_msgs/msg/_debug_value_s.o: rosidl_generator_py/px4_msgs/msg/_debug_value_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_debug_value_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_debug_value_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_debug_value_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_debug_value_s.c.o rosidl_generator_py/px4_msgs/msg/_debug_value_s.i: rosidl_generator_py/px4_msgs/msg/_debug_value_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_debug_value_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_debug_value_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_debug_value_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_debug_value_s.c.i rosidl_generator_py/px4_msgs/msg/_debug_value_s.s: rosidl_generator_py/px4_msgs/msg/_debug_value_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_debug_value_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_debug_value_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_debug_value_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_debug_value_s.c.s rosidl_generator_py/px4_msgs/msg/_debug_vect_s.o: rosidl_generator_py/px4_msgs/msg/_debug_vect_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_debug_vect_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_debug_vect_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_debug_vect_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_debug_vect_s.c.o rosidl_generator_py/px4_msgs/msg/_debug_vect_s.i: rosidl_generator_py/px4_msgs/msg/_debug_vect_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_debug_vect_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_debug_vect_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_debug_vect_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_debug_vect_s.c.i rosidl_generator_py/px4_msgs/msg/_debug_vect_s.s: rosidl_generator_py/px4_msgs/msg/_debug_vect_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_debug_vect_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_debug_vect_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_debug_vect_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_debug_vect_s.c.s rosidl_generator_py/px4_msgs/msg/_differential_pressure_s.o: rosidl_generator_py/px4_msgs/msg/_differential_pressure_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_differential_pressure_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_differential_pressure_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_differential_pressure_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_differential_pressure_s.c.o rosidl_generator_py/px4_msgs/msg/_differential_pressure_s.i: rosidl_generator_py/px4_msgs/msg/_differential_pressure_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_differential_pressure_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_differential_pressure_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_differential_pressure_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_differential_pressure_s.c.i rosidl_generator_py/px4_msgs/msg/_differential_pressure_s.s: rosidl_generator_py/px4_msgs/msg/_differential_pressure_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_differential_pressure_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_differential_pressure_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_differential_pressure_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_differential_pressure_s.c.s rosidl_generator_py/px4_msgs/msg/_distance_sensor_s.o: rosidl_generator_py/px4_msgs/msg/_distance_sensor_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_distance_sensor_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_distance_sensor_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_distance_sensor_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_distance_sensor_s.c.o rosidl_generator_py/px4_msgs/msg/_distance_sensor_s.i: rosidl_generator_py/px4_msgs/msg/_distance_sensor_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_distance_sensor_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_distance_sensor_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_distance_sensor_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_distance_sensor_s.c.i rosidl_generator_py/px4_msgs/msg/_distance_sensor_s.s: rosidl_generator_py/px4_msgs/msg/_distance_sensor_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_distance_sensor_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_distance_sensor_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_distance_sensor_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_distance_sensor_s.c.s rosidl_generator_py/px4_msgs/msg/_ekf2_timestamps_s.o: rosidl_generator_py/px4_msgs/msg/_ekf2_timestamps_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_ekf2_timestamps_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_ekf2_timestamps_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_ekf2_timestamps_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_ekf2_timestamps_s.c.o rosidl_generator_py/px4_msgs/msg/_ekf2_timestamps_s.i: rosidl_generator_py/px4_msgs/msg/_ekf2_timestamps_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_ekf2_timestamps_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_ekf2_timestamps_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_ekf2_timestamps_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_ekf2_timestamps_s.c.i rosidl_generator_py/px4_msgs/msg/_ekf2_timestamps_s.s: rosidl_generator_py/px4_msgs/msg/_ekf2_timestamps_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_ekf2_timestamps_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_ekf2_timestamps_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_ekf2_timestamps_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_ekf2_timestamps_s.c.s rosidl_generator_py/px4_msgs/msg/_ekf_gps_drift_s.o: rosidl_generator_py/px4_msgs/msg/_ekf_gps_drift_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_ekf_gps_drift_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_ekf_gps_drift_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_ekf_gps_drift_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_ekf_gps_drift_s.c.o rosidl_generator_py/px4_msgs/msg/_ekf_gps_drift_s.i: rosidl_generator_py/px4_msgs/msg/_ekf_gps_drift_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_ekf_gps_drift_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_ekf_gps_drift_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_ekf_gps_drift_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_ekf_gps_drift_s.c.i rosidl_generator_py/px4_msgs/msg/_ekf_gps_drift_s.s: rosidl_generator_py/px4_msgs/msg/_ekf_gps_drift_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_ekf_gps_drift_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_ekf_gps_drift_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_ekf_gps_drift_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_ekf_gps_drift_s.c.s rosidl_generator_py/px4_msgs/msg/_esc_report_s.o: rosidl_generator_py/px4_msgs/msg/_esc_report_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_esc_report_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_esc_report_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_esc_report_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_esc_report_s.c.o rosidl_generator_py/px4_msgs/msg/_esc_report_s.i: rosidl_generator_py/px4_msgs/msg/_esc_report_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_esc_report_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_esc_report_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_esc_report_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_esc_report_s.c.i rosidl_generator_py/px4_msgs/msg/_esc_report_s.s: rosidl_generator_py/px4_msgs/msg/_esc_report_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_esc_report_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_esc_report_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_esc_report_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_esc_report_s.c.s rosidl_generator_py/px4_msgs/msg/_esc_status_s.o: rosidl_generator_py/px4_msgs/msg/_esc_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_esc_status_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_esc_status_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_esc_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_esc_status_s.c.o rosidl_generator_py/px4_msgs/msg/_esc_status_s.i: rosidl_generator_py/px4_msgs/msg/_esc_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_esc_status_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_esc_status_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_esc_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_esc_status_s.c.i rosidl_generator_py/px4_msgs/msg/_esc_status_s.s: rosidl_generator_py/px4_msgs/msg/_esc_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_esc_status_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_esc_status_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_esc_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_esc_status_s.c.s rosidl_generator_py/px4_msgs/msg/_estimator_attitude_s.o: rosidl_generator_py/px4_msgs/msg/_estimator_attitude_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_attitude_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_estimator_attitude_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_attitude_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_attitude_s.c.o rosidl_generator_py/px4_msgs/msg/_estimator_attitude_s.i: rosidl_generator_py/px4_msgs/msg/_estimator_attitude_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_attitude_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_estimator_attitude_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_attitude_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_attitude_s.c.i rosidl_generator_py/px4_msgs/msg/_estimator_attitude_s.s: rosidl_generator_py/px4_msgs/msg/_estimator_attitude_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_attitude_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_estimator_attitude_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_attitude_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_attitude_s.c.s rosidl_generator_py/px4_msgs/msg/_estimator_event_flags_s.o: rosidl_generator_py/px4_msgs/msg/_estimator_event_flags_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_event_flags_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_estimator_event_flags_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_event_flags_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_event_flags_s.c.o rosidl_generator_py/px4_msgs/msg/_estimator_event_flags_s.i: rosidl_generator_py/px4_msgs/msg/_estimator_event_flags_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_event_flags_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_estimator_event_flags_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_event_flags_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_event_flags_s.c.i rosidl_generator_py/px4_msgs/msg/_estimator_event_flags_s.s: rosidl_generator_py/px4_msgs/msg/_estimator_event_flags_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_event_flags_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_estimator_event_flags_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_event_flags_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_event_flags_s.c.s rosidl_generator_py/px4_msgs/msg/_estimator_global_position_s.o: rosidl_generator_py/px4_msgs/msg/_estimator_global_position_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_global_position_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_estimator_global_position_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_global_position_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_global_position_s.c.o rosidl_generator_py/px4_msgs/msg/_estimator_global_position_s.i: rosidl_generator_py/px4_msgs/msg/_estimator_global_position_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_global_position_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_estimator_global_position_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_global_position_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_global_position_s.c.i rosidl_generator_py/px4_msgs/msg/_estimator_global_position_s.s: rosidl_generator_py/px4_msgs/msg/_estimator_global_position_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_global_position_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_estimator_global_position_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_global_position_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_global_position_s.c.s rosidl_generator_py/px4_msgs/msg/_estimator_innovation_test_ratios_s.o: rosidl_generator_py/px4_msgs/msg/_estimator_innovation_test_ratios_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_innovation_test_ratios_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_estimator_innovation_test_ratios_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_innovation_test_ratios_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_innovation_test_ratios_s.c.o rosidl_generator_py/px4_msgs/msg/_estimator_innovation_test_ratios_s.i: rosidl_generator_py/px4_msgs/msg/_estimator_innovation_test_ratios_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_innovation_test_ratios_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_estimator_innovation_test_ratios_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_innovation_test_ratios_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_innovation_test_ratios_s.c.i rosidl_generator_py/px4_msgs/msg/_estimator_innovation_test_ratios_s.s: rosidl_generator_py/px4_msgs/msg/_estimator_innovation_test_ratios_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_innovation_test_ratios_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_estimator_innovation_test_ratios_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_innovation_test_ratios_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_innovation_test_ratios_s.c.s rosidl_generator_py/px4_msgs/msg/_estimator_innovation_variances_s.o: rosidl_generator_py/px4_msgs/msg/_estimator_innovation_variances_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_innovation_variances_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_estimator_innovation_variances_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_innovation_variances_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_innovation_variances_s.c.o rosidl_generator_py/px4_msgs/msg/_estimator_innovation_variances_s.i: rosidl_generator_py/px4_msgs/msg/_estimator_innovation_variances_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_innovation_variances_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_estimator_innovation_variances_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_innovation_variances_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_innovation_variances_s.c.i rosidl_generator_py/px4_msgs/msg/_estimator_innovation_variances_s.s: rosidl_generator_py/px4_msgs/msg/_estimator_innovation_variances_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_innovation_variances_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_estimator_innovation_variances_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_innovation_variances_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_innovation_variances_s.c.s rosidl_generator_py/px4_msgs/msg/_estimator_innovations_s.o: rosidl_generator_py/px4_msgs/msg/_estimator_innovations_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_innovations_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_estimator_innovations_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_innovations_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_innovations_s.c.o rosidl_generator_py/px4_msgs/msg/_estimator_innovations_s.i: rosidl_generator_py/px4_msgs/msg/_estimator_innovations_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_innovations_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_estimator_innovations_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_innovations_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_innovations_s.c.i rosidl_generator_py/px4_msgs/msg/_estimator_innovations_s.s: rosidl_generator_py/px4_msgs/msg/_estimator_innovations_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_innovations_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_estimator_innovations_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_innovations_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_innovations_s.c.s rosidl_generator_py/px4_msgs/msg/_estimator_local_position_s.o: rosidl_generator_py/px4_msgs/msg/_estimator_local_position_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_local_position_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_estimator_local_position_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_local_position_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_local_position_s.c.o rosidl_generator_py/px4_msgs/msg/_estimator_local_position_s.i: rosidl_generator_py/px4_msgs/msg/_estimator_local_position_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_local_position_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_estimator_local_position_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_local_position_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_local_position_s.c.i rosidl_generator_py/px4_msgs/msg/_estimator_local_position_s.s: rosidl_generator_py/px4_msgs/msg/_estimator_local_position_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_local_position_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_estimator_local_position_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_local_position_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_local_position_s.c.s rosidl_generator_py/px4_msgs/msg/_estimator_odometry_s.o: rosidl_generator_py/px4_msgs/msg/_estimator_odometry_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_odometry_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_estimator_odometry_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_odometry_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_odometry_s.c.o rosidl_generator_py/px4_msgs/msg/_estimator_odometry_s.i: rosidl_generator_py/px4_msgs/msg/_estimator_odometry_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_odometry_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_estimator_odometry_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_odometry_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_odometry_s.c.i rosidl_generator_py/px4_msgs/msg/_estimator_odometry_s.s: rosidl_generator_py/px4_msgs/msg/_estimator_odometry_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_odometry_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_estimator_odometry_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_odometry_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_odometry_s.c.s rosidl_generator_py/px4_msgs/msg/_estimator_optical_flow_vel_s.o: rosidl_generator_py/px4_msgs/msg/_estimator_optical_flow_vel_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_optical_flow_vel_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_estimator_optical_flow_vel_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_optical_flow_vel_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_optical_flow_vel_s.c.o rosidl_generator_py/px4_msgs/msg/_estimator_optical_flow_vel_s.i: rosidl_generator_py/px4_msgs/msg/_estimator_optical_flow_vel_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_optical_flow_vel_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_estimator_optical_flow_vel_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_optical_flow_vel_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_optical_flow_vel_s.c.i rosidl_generator_py/px4_msgs/msg/_estimator_optical_flow_vel_s.s: rosidl_generator_py/px4_msgs/msg/_estimator_optical_flow_vel_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_optical_flow_vel_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_estimator_optical_flow_vel_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_optical_flow_vel_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_optical_flow_vel_s.c.s rosidl_generator_py/px4_msgs/msg/_estimator_selector_status_s.o: rosidl_generator_py/px4_msgs/msg/_estimator_selector_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_selector_status_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_estimator_selector_status_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_selector_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_selector_status_s.c.o rosidl_generator_py/px4_msgs/msg/_estimator_selector_status_s.i: rosidl_generator_py/px4_msgs/msg/_estimator_selector_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_selector_status_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_estimator_selector_status_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_selector_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_selector_status_s.c.i rosidl_generator_py/px4_msgs/msg/_estimator_selector_status_s.s: rosidl_generator_py/px4_msgs/msg/_estimator_selector_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_selector_status_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_estimator_selector_status_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_selector_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_selector_status_s.c.s rosidl_generator_py/px4_msgs/msg/_estimator_sensor_bias_s.o: rosidl_generator_py/px4_msgs/msg/_estimator_sensor_bias_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_sensor_bias_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_estimator_sensor_bias_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_sensor_bias_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_sensor_bias_s.c.o rosidl_generator_py/px4_msgs/msg/_estimator_sensor_bias_s.i: rosidl_generator_py/px4_msgs/msg/_estimator_sensor_bias_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_sensor_bias_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_estimator_sensor_bias_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_sensor_bias_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_sensor_bias_s.c.i rosidl_generator_py/px4_msgs/msg/_estimator_sensor_bias_s.s: rosidl_generator_py/px4_msgs/msg/_estimator_sensor_bias_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_sensor_bias_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_estimator_sensor_bias_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_sensor_bias_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_sensor_bias_s.c.s rosidl_generator_py/px4_msgs/msg/_estimator_states_s.o: rosidl_generator_py/px4_msgs/msg/_estimator_states_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_states_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_estimator_states_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_states_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_states_s.c.o rosidl_generator_py/px4_msgs/msg/_estimator_states_s.i: rosidl_generator_py/px4_msgs/msg/_estimator_states_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_states_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_estimator_states_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_states_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_states_s.c.i rosidl_generator_py/px4_msgs/msg/_estimator_states_s.s: rosidl_generator_py/px4_msgs/msg/_estimator_states_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_states_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_estimator_states_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_states_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_states_s.c.s rosidl_generator_py/px4_msgs/msg/_estimator_status_flags_s.o: rosidl_generator_py/px4_msgs/msg/_estimator_status_flags_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_status_flags_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_estimator_status_flags_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_status_flags_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_status_flags_s.c.o rosidl_generator_py/px4_msgs/msg/_estimator_status_flags_s.i: rosidl_generator_py/px4_msgs/msg/_estimator_status_flags_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_status_flags_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_estimator_status_flags_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_status_flags_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_status_flags_s.c.i rosidl_generator_py/px4_msgs/msg/_estimator_status_flags_s.s: rosidl_generator_py/px4_msgs/msg/_estimator_status_flags_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_status_flags_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_estimator_status_flags_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_status_flags_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_status_flags_s.c.s rosidl_generator_py/px4_msgs/msg/_estimator_status_s.o: rosidl_generator_py/px4_msgs/msg/_estimator_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_status_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_estimator_status_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_status_s.c.o rosidl_generator_py/px4_msgs/msg/_estimator_status_s.i: rosidl_generator_py/px4_msgs/msg/_estimator_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_status_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_estimator_status_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_status_s.c.i rosidl_generator_py/px4_msgs/msg/_estimator_status_s.s: rosidl_generator_py/px4_msgs/msg/_estimator_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_status_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_estimator_status_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_status_s.c.s rosidl_generator_py/px4_msgs/msg/_estimator_visual_odometry_aligned_s.o: rosidl_generator_py/px4_msgs/msg/_estimator_visual_odometry_aligned_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_visual_odometry_aligned_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_estimator_visual_odometry_aligned_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_visual_odometry_aligned_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_visual_odometry_aligned_s.c.o rosidl_generator_py/px4_msgs/msg/_estimator_visual_odometry_aligned_s.i: rosidl_generator_py/px4_msgs/msg/_estimator_visual_odometry_aligned_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_visual_odometry_aligned_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_estimator_visual_odometry_aligned_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_visual_odometry_aligned_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_visual_odometry_aligned_s.c.i rosidl_generator_py/px4_msgs/msg/_estimator_visual_odometry_aligned_s.s: rosidl_generator_py/px4_msgs/msg/_estimator_visual_odometry_aligned_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_visual_odometry_aligned_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_estimator_visual_odometry_aligned_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_visual_odometry_aligned_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_visual_odometry_aligned_s.c.s rosidl_generator_py/px4_msgs/msg/_estimator_wind_s.o: rosidl_generator_py/px4_msgs/msg/_estimator_wind_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_wind_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_estimator_wind_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_wind_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_wind_s.c.o rosidl_generator_py/px4_msgs/msg/_estimator_wind_s.i: rosidl_generator_py/px4_msgs/msg/_estimator_wind_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_wind_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_estimator_wind_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_wind_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_wind_s.c.i rosidl_generator_py/px4_msgs/msg/_estimator_wind_s.s: rosidl_generator_py/px4_msgs/msg/_estimator_wind_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_wind_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_estimator_wind_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_estimator_wind_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_estimator_wind_s.c.s rosidl_generator_py/px4_msgs/msg/_follow_target_s.o: rosidl_generator_py/px4_msgs/msg/_follow_target_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_follow_target_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_follow_target_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_follow_target_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_follow_target_s.c.o rosidl_generator_py/px4_msgs/msg/_follow_target_s.i: rosidl_generator_py/px4_msgs/msg/_follow_target_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_follow_target_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_follow_target_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_follow_target_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_follow_target_s.c.i rosidl_generator_py/px4_msgs/msg/_follow_target_s.s: rosidl_generator_py/px4_msgs/msg/_follow_target_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_follow_target_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_follow_target_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_follow_target_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_follow_target_s.c.s rosidl_generator_py/px4_msgs/msg/_fw_virtual_attitude_setpoint_s.o: rosidl_generator_py/px4_msgs/msg/_fw_virtual_attitude_setpoint_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_fw_virtual_attitude_setpoint_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_fw_virtual_attitude_setpoint_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_fw_virtual_attitude_setpoint_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_fw_virtual_attitude_setpoint_s.c.o rosidl_generator_py/px4_msgs/msg/_fw_virtual_attitude_setpoint_s.i: rosidl_generator_py/px4_msgs/msg/_fw_virtual_attitude_setpoint_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_fw_virtual_attitude_setpoint_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_fw_virtual_attitude_setpoint_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_fw_virtual_attitude_setpoint_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_fw_virtual_attitude_setpoint_s.c.i rosidl_generator_py/px4_msgs/msg/_fw_virtual_attitude_setpoint_s.s: rosidl_generator_py/px4_msgs/msg/_fw_virtual_attitude_setpoint_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_fw_virtual_attitude_setpoint_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_fw_virtual_attitude_setpoint_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_fw_virtual_attitude_setpoint_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_fw_virtual_attitude_setpoint_s.c.s rosidl_generator_py/px4_msgs/msg/_generator_status_s.o: rosidl_generator_py/px4_msgs/msg/_generator_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_generator_status_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_generator_status_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_generator_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_generator_status_s.c.o rosidl_generator_py/px4_msgs/msg/_generator_status_s.i: rosidl_generator_py/px4_msgs/msg/_generator_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_generator_status_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_generator_status_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_generator_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_generator_status_s.c.i rosidl_generator_py/px4_msgs/msg/_generator_status_s.s: rosidl_generator_py/px4_msgs/msg/_generator_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_generator_status_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_generator_status_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_generator_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_generator_status_s.c.s rosidl_generator_py/px4_msgs/msg/_geofence_result_s.o: rosidl_generator_py/px4_msgs/msg/_geofence_result_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_geofence_result_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_geofence_result_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_geofence_result_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_geofence_result_s.c.o rosidl_generator_py/px4_msgs/msg/_geofence_result_s.i: rosidl_generator_py/px4_msgs/msg/_geofence_result_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_geofence_result_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_geofence_result_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_geofence_result_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_geofence_result_s.c.i rosidl_generator_py/px4_msgs/msg/_geofence_result_s.s: rosidl_generator_py/px4_msgs/msg/_geofence_result_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_geofence_result_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_geofence_result_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_geofence_result_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_geofence_result_s.c.s rosidl_generator_py/px4_msgs/msg/_gimbal_device_attitude_status_s.o: rosidl_generator_py/px4_msgs/msg/_gimbal_device_attitude_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_device_attitude_status_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_gimbal_device_attitude_status_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gimbal_device_attitude_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_device_attitude_status_s.c.o rosidl_generator_py/px4_msgs/msg/_gimbal_device_attitude_status_s.i: rosidl_generator_py/px4_msgs/msg/_gimbal_device_attitude_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_device_attitude_status_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_gimbal_device_attitude_status_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gimbal_device_attitude_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_device_attitude_status_s.c.i rosidl_generator_py/px4_msgs/msg/_gimbal_device_attitude_status_s.s: rosidl_generator_py/px4_msgs/msg/_gimbal_device_attitude_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_device_attitude_status_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_gimbal_device_attitude_status_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gimbal_device_attitude_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_device_attitude_status_s.c.s rosidl_generator_py/px4_msgs/msg/_gimbal_device_information_s.o: rosidl_generator_py/px4_msgs/msg/_gimbal_device_information_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_device_information_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_gimbal_device_information_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gimbal_device_information_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_device_information_s.c.o rosidl_generator_py/px4_msgs/msg/_gimbal_device_information_s.i: rosidl_generator_py/px4_msgs/msg/_gimbal_device_information_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_device_information_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_gimbal_device_information_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gimbal_device_information_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_device_information_s.c.i rosidl_generator_py/px4_msgs/msg/_gimbal_device_information_s.s: rosidl_generator_py/px4_msgs/msg/_gimbal_device_information_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_device_information_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_gimbal_device_information_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gimbal_device_information_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_device_information_s.c.s rosidl_generator_py/px4_msgs/msg/_gimbal_device_set_attitude_s.o: rosidl_generator_py/px4_msgs/msg/_gimbal_device_set_attitude_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_device_set_attitude_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_gimbal_device_set_attitude_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gimbal_device_set_attitude_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_device_set_attitude_s.c.o rosidl_generator_py/px4_msgs/msg/_gimbal_device_set_attitude_s.i: rosidl_generator_py/px4_msgs/msg/_gimbal_device_set_attitude_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_device_set_attitude_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_gimbal_device_set_attitude_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gimbal_device_set_attitude_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_device_set_attitude_s.c.i rosidl_generator_py/px4_msgs/msg/_gimbal_device_set_attitude_s.s: rosidl_generator_py/px4_msgs/msg/_gimbal_device_set_attitude_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_device_set_attitude_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_gimbal_device_set_attitude_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gimbal_device_set_attitude_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_device_set_attitude_s.c.s rosidl_generator_py/px4_msgs/msg/_gimbal_manager_information_s.o: rosidl_generator_py/px4_msgs/msg/_gimbal_manager_information_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_manager_information_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_gimbal_manager_information_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gimbal_manager_information_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_manager_information_s.c.o rosidl_generator_py/px4_msgs/msg/_gimbal_manager_information_s.i: rosidl_generator_py/px4_msgs/msg/_gimbal_manager_information_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_manager_information_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_gimbal_manager_information_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gimbal_manager_information_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_manager_information_s.c.i rosidl_generator_py/px4_msgs/msg/_gimbal_manager_information_s.s: rosidl_generator_py/px4_msgs/msg/_gimbal_manager_information_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_manager_information_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_gimbal_manager_information_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gimbal_manager_information_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_manager_information_s.c.s rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_attitude_s.o: rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_attitude_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_attitude_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_attitude_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_attitude_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_attitude_s.c.o rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_attitude_s.i: rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_attitude_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_attitude_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_attitude_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_attitude_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_attitude_s.c.i rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_attitude_s.s: rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_attitude_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_attitude_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_attitude_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_attitude_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_attitude_s.c.s rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_manual_control_s.o: rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_manual_control_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_manual_control_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_manual_control_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_manual_control_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_manual_control_s.c.o rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_manual_control_s.i: rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_manual_control_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_manual_control_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_manual_control_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_manual_control_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_manual_control_s.c.i rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_manual_control_s.s: rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_manual_control_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_manual_control_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_manual_control_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_manual_control_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_manual_control_s.c.s rosidl_generator_py/px4_msgs/msg/_gimbal_manager_status_s.o: rosidl_generator_py/px4_msgs/msg/_gimbal_manager_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_manager_status_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_gimbal_manager_status_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gimbal_manager_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_manager_status_s.c.o rosidl_generator_py/px4_msgs/msg/_gimbal_manager_status_s.i: rosidl_generator_py/px4_msgs/msg/_gimbal_manager_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_manager_status_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_gimbal_manager_status_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gimbal_manager_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_manager_status_s.c.i rosidl_generator_py/px4_msgs/msg/_gimbal_manager_status_s.s: rosidl_generator_py/px4_msgs/msg/_gimbal_manager_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_manager_status_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_gimbal_manager_status_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gimbal_manager_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_gimbal_manager_status_s.c.s rosidl_generator_py/px4_msgs/msg/_gps_dump_s.o: rosidl_generator_py/px4_msgs/msg/_gps_dump_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_gps_dump_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_gps_dump_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gps_dump_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_gps_dump_s.c.o rosidl_generator_py/px4_msgs/msg/_gps_dump_s.i: rosidl_generator_py/px4_msgs/msg/_gps_dump_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_gps_dump_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_gps_dump_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gps_dump_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_gps_dump_s.c.i rosidl_generator_py/px4_msgs/msg/_gps_dump_s.s: rosidl_generator_py/px4_msgs/msg/_gps_dump_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_gps_dump_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_gps_dump_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gps_dump_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_gps_dump_s.c.s rosidl_generator_py/px4_msgs/msg/_gps_inject_data_s.o: rosidl_generator_py/px4_msgs/msg/_gps_inject_data_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_gps_inject_data_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_gps_inject_data_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gps_inject_data_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_gps_inject_data_s.c.o rosidl_generator_py/px4_msgs/msg/_gps_inject_data_s.i: rosidl_generator_py/px4_msgs/msg/_gps_inject_data_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_gps_inject_data_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_gps_inject_data_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gps_inject_data_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_gps_inject_data_s.c.i rosidl_generator_py/px4_msgs/msg/_gps_inject_data_s.s: rosidl_generator_py/px4_msgs/msg/_gps_inject_data_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_gps_inject_data_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_gps_inject_data_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_gps_inject_data_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_gps_inject_data_s.c.s rosidl_generator_py/px4_msgs/msg/_heater_status_s.o: rosidl_generator_py/px4_msgs/msg/_heater_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_heater_status_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_heater_status_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_heater_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_heater_status_s.c.o rosidl_generator_py/px4_msgs/msg/_heater_status_s.i: rosidl_generator_py/px4_msgs/msg/_heater_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_heater_status_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_heater_status_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_heater_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_heater_status_s.c.i rosidl_generator_py/px4_msgs/msg/_heater_status_s.s: rosidl_generator_py/px4_msgs/msg/_heater_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_heater_status_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_heater_status_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_heater_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_heater_status_s.c.s rosidl_generator_py/px4_msgs/msg/_home_position_s.o: rosidl_generator_py/px4_msgs/msg/_home_position_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_home_position_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_home_position_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_home_position_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_home_position_s.c.o rosidl_generator_py/px4_msgs/msg/_home_position_s.i: rosidl_generator_py/px4_msgs/msg/_home_position_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_home_position_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_home_position_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_home_position_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_home_position_s.c.i rosidl_generator_py/px4_msgs/msg/_home_position_s.s: rosidl_generator_py/px4_msgs/msg/_home_position_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_home_position_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_home_position_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_home_position_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_home_position_s.c.s rosidl_generator_py/px4_msgs/msg/_hover_thrust_estimate_s.o: rosidl_generator_py/px4_msgs/msg/_hover_thrust_estimate_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_hover_thrust_estimate_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_hover_thrust_estimate_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_hover_thrust_estimate_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_hover_thrust_estimate_s.c.o rosidl_generator_py/px4_msgs/msg/_hover_thrust_estimate_s.i: rosidl_generator_py/px4_msgs/msg/_hover_thrust_estimate_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_hover_thrust_estimate_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_hover_thrust_estimate_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_hover_thrust_estimate_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_hover_thrust_estimate_s.c.i rosidl_generator_py/px4_msgs/msg/_hover_thrust_estimate_s.s: rosidl_generator_py/px4_msgs/msg/_hover_thrust_estimate_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_hover_thrust_estimate_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_hover_thrust_estimate_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_hover_thrust_estimate_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_hover_thrust_estimate_s.c.s rosidl_generator_py/px4_msgs/msg/_input_rc_s.o: rosidl_generator_py/px4_msgs/msg/_input_rc_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_input_rc_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_input_rc_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_input_rc_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_input_rc_s.c.o rosidl_generator_py/px4_msgs/msg/_input_rc_s.i: rosidl_generator_py/px4_msgs/msg/_input_rc_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_input_rc_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_input_rc_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_input_rc_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_input_rc_s.c.i rosidl_generator_py/px4_msgs/msg/_input_rc_s.s: rosidl_generator_py/px4_msgs/msg/_input_rc_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_input_rc_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_input_rc_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_input_rc_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_input_rc_s.c.s rosidl_generator_py/px4_msgs/msg/_iridiumsbd_status_s.o: rosidl_generator_py/px4_msgs/msg/_iridiumsbd_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_iridiumsbd_status_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_iridiumsbd_status_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_iridiumsbd_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_iridiumsbd_status_s.c.o rosidl_generator_py/px4_msgs/msg/_iridiumsbd_status_s.i: rosidl_generator_py/px4_msgs/msg/_iridiumsbd_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_iridiumsbd_status_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_iridiumsbd_status_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_iridiumsbd_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_iridiumsbd_status_s.c.i rosidl_generator_py/px4_msgs/msg/_iridiumsbd_status_s.s: rosidl_generator_py/px4_msgs/msg/_iridiumsbd_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_iridiumsbd_status_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_iridiumsbd_status_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_iridiumsbd_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_iridiumsbd_status_s.c.s rosidl_generator_py/px4_msgs/msg/_irlock_report_s.o: rosidl_generator_py/px4_msgs/msg/_irlock_report_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_irlock_report_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_irlock_report_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_irlock_report_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_irlock_report_s.c.o rosidl_generator_py/px4_msgs/msg/_irlock_report_s.i: rosidl_generator_py/px4_msgs/msg/_irlock_report_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_irlock_report_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_irlock_report_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_irlock_report_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_irlock_report_s.c.i rosidl_generator_py/px4_msgs/msg/_irlock_report_s.s: rosidl_generator_py/px4_msgs/msg/_irlock_report_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_irlock_report_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_irlock_report_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_irlock_report_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_irlock_report_s.c.s rosidl_generator_py/px4_msgs/msg/_landing_gear_s.o: rosidl_generator_py/px4_msgs/msg/_landing_gear_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_landing_gear_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_landing_gear_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_landing_gear_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_landing_gear_s.c.o rosidl_generator_py/px4_msgs/msg/_landing_gear_s.i: rosidl_generator_py/px4_msgs/msg/_landing_gear_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_landing_gear_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_landing_gear_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_landing_gear_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_landing_gear_s.c.i rosidl_generator_py/px4_msgs/msg/_landing_gear_s.s: rosidl_generator_py/px4_msgs/msg/_landing_gear_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_landing_gear_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_landing_gear_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_landing_gear_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_landing_gear_s.c.s rosidl_generator_py/px4_msgs/msg/_landing_target_innovations_s.o: rosidl_generator_py/px4_msgs/msg/_landing_target_innovations_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_landing_target_innovations_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_landing_target_innovations_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_landing_target_innovations_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_landing_target_innovations_s.c.o rosidl_generator_py/px4_msgs/msg/_landing_target_innovations_s.i: rosidl_generator_py/px4_msgs/msg/_landing_target_innovations_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_landing_target_innovations_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_landing_target_innovations_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_landing_target_innovations_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_landing_target_innovations_s.c.i rosidl_generator_py/px4_msgs/msg/_landing_target_innovations_s.s: rosidl_generator_py/px4_msgs/msg/_landing_target_innovations_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_landing_target_innovations_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_landing_target_innovations_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_landing_target_innovations_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_landing_target_innovations_s.c.s rosidl_generator_py/px4_msgs/msg/_landing_target_pose_s.o: rosidl_generator_py/px4_msgs/msg/_landing_target_pose_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_landing_target_pose_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_landing_target_pose_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_landing_target_pose_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_landing_target_pose_s.c.o rosidl_generator_py/px4_msgs/msg/_landing_target_pose_s.i: rosidl_generator_py/px4_msgs/msg/_landing_target_pose_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_landing_target_pose_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_landing_target_pose_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_landing_target_pose_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_landing_target_pose_s.c.i rosidl_generator_py/px4_msgs/msg/_landing_target_pose_s.s: rosidl_generator_py/px4_msgs/msg/_landing_target_pose_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_landing_target_pose_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_landing_target_pose_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_landing_target_pose_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_landing_target_pose_s.c.s rosidl_generator_py/px4_msgs/msg/_led_control_s.o: rosidl_generator_py/px4_msgs/msg/_led_control_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_led_control_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_led_control_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_led_control_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_led_control_s.c.o rosidl_generator_py/px4_msgs/msg/_led_control_s.i: rosidl_generator_py/px4_msgs/msg/_led_control_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_led_control_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_led_control_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_led_control_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_led_control_s.c.i rosidl_generator_py/px4_msgs/msg/_led_control_s.s: rosidl_generator_py/px4_msgs/msg/_led_control_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_led_control_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_led_control_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_led_control_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_led_control_s.c.s rosidl_generator_py/px4_msgs/msg/_log_message_s.o: rosidl_generator_py/px4_msgs/msg/_log_message_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_log_message_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_log_message_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_log_message_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_log_message_s.c.o rosidl_generator_py/px4_msgs/msg/_log_message_s.i: rosidl_generator_py/px4_msgs/msg/_log_message_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_log_message_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_log_message_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_log_message_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_log_message_s.c.i rosidl_generator_py/px4_msgs/msg/_log_message_s.s: rosidl_generator_py/px4_msgs/msg/_log_message_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_log_message_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_log_message_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_log_message_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_log_message_s.c.s rosidl_generator_py/px4_msgs/msg/_logger_status_s.o: rosidl_generator_py/px4_msgs/msg/_logger_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_logger_status_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_logger_status_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_logger_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_logger_status_s.c.o rosidl_generator_py/px4_msgs/msg/_logger_status_s.i: rosidl_generator_py/px4_msgs/msg/_logger_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_logger_status_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_logger_status_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_logger_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_logger_status_s.c.i rosidl_generator_py/px4_msgs/msg/_logger_status_s.s: rosidl_generator_py/px4_msgs/msg/_logger_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_logger_status_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_logger_status_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_logger_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_logger_status_s.c.s rosidl_generator_py/px4_msgs/msg/_mag_worker_data_s.o: rosidl_generator_py/px4_msgs/msg/_mag_worker_data_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_mag_worker_data_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_mag_worker_data_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_mag_worker_data_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_mag_worker_data_s.c.o rosidl_generator_py/px4_msgs/msg/_mag_worker_data_s.i: rosidl_generator_py/px4_msgs/msg/_mag_worker_data_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_mag_worker_data_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_mag_worker_data_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_mag_worker_data_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_mag_worker_data_s.c.i rosidl_generator_py/px4_msgs/msg/_mag_worker_data_s.s: rosidl_generator_py/px4_msgs/msg/_mag_worker_data_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_mag_worker_data_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_mag_worker_data_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_mag_worker_data_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_mag_worker_data_s.c.s rosidl_generator_py/px4_msgs/msg/_manual_control_setpoint_s.o: rosidl_generator_py/px4_msgs/msg/_manual_control_setpoint_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_manual_control_setpoint_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_manual_control_setpoint_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_manual_control_setpoint_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_manual_control_setpoint_s.c.o rosidl_generator_py/px4_msgs/msg/_manual_control_setpoint_s.i: rosidl_generator_py/px4_msgs/msg/_manual_control_setpoint_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_manual_control_setpoint_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_manual_control_setpoint_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_manual_control_setpoint_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_manual_control_setpoint_s.c.i rosidl_generator_py/px4_msgs/msg/_manual_control_setpoint_s.s: rosidl_generator_py/px4_msgs/msg/_manual_control_setpoint_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_manual_control_setpoint_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_manual_control_setpoint_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_manual_control_setpoint_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_manual_control_setpoint_s.c.s rosidl_generator_py/px4_msgs/msg/_manual_control_switches_s.o: rosidl_generator_py/px4_msgs/msg/_manual_control_switches_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_manual_control_switches_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_manual_control_switches_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_manual_control_switches_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_manual_control_switches_s.c.o rosidl_generator_py/px4_msgs/msg/_manual_control_switches_s.i: rosidl_generator_py/px4_msgs/msg/_manual_control_switches_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_manual_control_switches_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_manual_control_switches_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_manual_control_switches_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_manual_control_switches_s.c.i rosidl_generator_py/px4_msgs/msg/_manual_control_switches_s.s: rosidl_generator_py/px4_msgs/msg/_manual_control_switches_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_manual_control_switches_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_manual_control_switches_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_manual_control_switches_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_manual_control_switches_s.c.s rosidl_generator_py/px4_msgs/msg/_mavlink_log_s.o: rosidl_generator_py/px4_msgs/msg/_mavlink_log_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_mavlink_log_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_mavlink_log_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_mavlink_log_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_mavlink_log_s.c.o rosidl_generator_py/px4_msgs/msg/_mavlink_log_s.i: rosidl_generator_py/px4_msgs/msg/_mavlink_log_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_mavlink_log_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_mavlink_log_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_mavlink_log_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_mavlink_log_s.c.i rosidl_generator_py/px4_msgs/msg/_mavlink_log_s.s: rosidl_generator_py/px4_msgs/msg/_mavlink_log_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_mavlink_log_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_mavlink_log_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_mavlink_log_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_mavlink_log_s.c.s rosidl_generator_py/px4_msgs/msg/_mc_virtual_attitude_setpoint_s.o: rosidl_generator_py/px4_msgs/msg/_mc_virtual_attitude_setpoint_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_mc_virtual_attitude_setpoint_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_mc_virtual_attitude_setpoint_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_mc_virtual_attitude_setpoint_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_mc_virtual_attitude_setpoint_s.c.o rosidl_generator_py/px4_msgs/msg/_mc_virtual_attitude_setpoint_s.i: rosidl_generator_py/px4_msgs/msg/_mc_virtual_attitude_setpoint_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_mc_virtual_attitude_setpoint_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_mc_virtual_attitude_setpoint_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_mc_virtual_attitude_setpoint_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_mc_virtual_attitude_setpoint_s.c.i rosidl_generator_py/px4_msgs/msg/_mc_virtual_attitude_setpoint_s.s: rosidl_generator_py/px4_msgs/msg/_mc_virtual_attitude_setpoint_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_mc_virtual_attitude_setpoint_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_mc_virtual_attitude_setpoint_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_mc_virtual_attitude_setpoint_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_mc_virtual_attitude_setpoint_s.c.s rosidl_generator_py/px4_msgs/msg/_mission_result_s.o: rosidl_generator_py/px4_msgs/msg/_mission_result_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_mission_result_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_mission_result_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_mission_result_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_mission_result_s.c.o rosidl_generator_py/px4_msgs/msg/_mission_result_s.i: rosidl_generator_py/px4_msgs/msg/_mission_result_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_mission_result_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_mission_result_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_mission_result_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_mission_result_s.c.i rosidl_generator_py/px4_msgs/msg/_mission_result_s.s: rosidl_generator_py/px4_msgs/msg/_mission_result_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_mission_result_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_mission_result_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_mission_result_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_mission_result_s.c.s rosidl_generator_py/px4_msgs/msg/_mission_s.o: rosidl_generator_py/px4_msgs/msg/_mission_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_mission_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_mission_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_mission_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_mission_s.c.o rosidl_generator_py/px4_msgs/msg/_mission_s.i: rosidl_generator_py/px4_msgs/msg/_mission_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_mission_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_mission_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_mission_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_mission_s.c.i rosidl_generator_py/px4_msgs/msg/_mission_s.s: rosidl_generator_py/px4_msgs/msg/_mission_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_mission_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_mission_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_mission_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_mission_s.c.s rosidl_generator_py/px4_msgs/msg/_mount_orientation_s.o: rosidl_generator_py/px4_msgs/msg/_mount_orientation_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_mount_orientation_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_mount_orientation_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_mount_orientation_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_mount_orientation_s.c.o rosidl_generator_py/px4_msgs/msg/_mount_orientation_s.i: rosidl_generator_py/px4_msgs/msg/_mount_orientation_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_mount_orientation_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_mount_orientation_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_mount_orientation_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_mount_orientation_s.c.i rosidl_generator_py/px4_msgs/msg/_mount_orientation_s.s: rosidl_generator_py/px4_msgs/msg/_mount_orientation_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_mount_orientation_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_mount_orientation_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_mount_orientation_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_mount_orientation_s.c.s rosidl_generator_py/px4_msgs/msg/_multirotor_motor_limits_s.o: rosidl_generator_py/px4_msgs/msg/_multirotor_motor_limits_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_multirotor_motor_limits_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_multirotor_motor_limits_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_multirotor_motor_limits_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_multirotor_motor_limits_s.c.o rosidl_generator_py/px4_msgs/msg/_multirotor_motor_limits_s.i: rosidl_generator_py/px4_msgs/msg/_multirotor_motor_limits_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_multirotor_motor_limits_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_multirotor_motor_limits_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_multirotor_motor_limits_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_multirotor_motor_limits_s.c.i rosidl_generator_py/px4_msgs/msg/_multirotor_motor_limits_s.s: rosidl_generator_py/px4_msgs/msg/_multirotor_motor_limits_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_multirotor_motor_limits_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_multirotor_motor_limits_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_multirotor_motor_limits_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_multirotor_motor_limits_s.c.s rosidl_generator_py/px4_msgs/msg/_navigator_mission_item_s.o: rosidl_generator_py/px4_msgs/msg/_navigator_mission_item_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_navigator_mission_item_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_navigator_mission_item_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_navigator_mission_item_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_navigator_mission_item_s.c.o rosidl_generator_py/px4_msgs/msg/_navigator_mission_item_s.i: rosidl_generator_py/px4_msgs/msg/_navigator_mission_item_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_navigator_mission_item_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_navigator_mission_item_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_navigator_mission_item_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_navigator_mission_item_s.c.i rosidl_generator_py/px4_msgs/msg/_navigator_mission_item_s.s: rosidl_generator_py/px4_msgs/msg/_navigator_mission_item_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_navigator_mission_item_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_navigator_mission_item_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_navigator_mission_item_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_navigator_mission_item_s.c.s rosidl_generator_py/px4_msgs/msg/_obstacle_distance_fused_s.o: rosidl_generator_py/px4_msgs/msg/_obstacle_distance_fused_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_obstacle_distance_fused_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_obstacle_distance_fused_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_obstacle_distance_fused_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_obstacle_distance_fused_s.c.o rosidl_generator_py/px4_msgs/msg/_obstacle_distance_fused_s.i: rosidl_generator_py/px4_msgs/msg/_obstacle_distance_fused_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_obstacle_distance_fused_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_obstacle_distance_fused_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_obstacle_distance_fused_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_obstacle_distance_fused_s.c.i rosidl_generator_py/px4_msgs/msg/_obstacle_distance_fused_s.s: rosidl_generator_py/px4_msgs/msg/_obstacle_distance_fused_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_obstacle_distance_fused_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_obstacle_distance_fused_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_obstacle_distance_fused_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_obstacle_distance_fused_s.c.s rosidl_generator_py/px4_msgs/msg/_obstacle_distance_s.o: rosidl_generator_py/px4_msgs/msg/_obstacle_distance_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_obstacle_distance_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_obstacle_distance_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_obstacle_distance_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_obstacle_distance_s.c.o rosidl_generator_py/px4_msgs/msg/_obstacle_distance_s.i: rosidl_generator_py/px4_msgs/msg/_obstacle_distance_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_obstacle_distance_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_obstacle_distance_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_obstacle_distance_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_obstacle_distance_s.c.i rosidl_generator_py/px4_msgs/msg/_obstacle_distance_s.s: rosidl_generator_py/px4_msgs/msg/_obstacle_distance_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_obstacle_distance_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_obstacle_distance_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_obstacle_distance_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_obstacle_distance_s.c.s rosidl_generator_py/px4_msgs/msg/_offboard_control_mode_s.o: rosidl_generator_py/px4_msgs/msg/_offboard_control_mode_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_offboard_control_mode_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_offboard_control_mode_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_offboard_control_mode_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_offboard_control_mode_s.c.o rosidl_generator_py/px4_msgs/msg/_offboard_control_mode_s.i: rosidl_generator_py/px4_msgs/msg/_offboard_control_mode_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_offboard_control_mode_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_offboard_control_mode_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_offboard_control_mode_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_offboard_control_mode_s.c.i rosidl_generator_py/px4_msgs/msg/_offboard_control_mode_s.s: rosidl_generator_py/px4_msgs/msg/_offboard_control_mode_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_offboard_control_mode_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_offboard_control_mode_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_offboard_control_mode_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_offboard_control_mode_s.c.s rosidl_generator_py/px4_msgs/msg/_onboard_computer_status_s.o: rosidl_generator_py/px4_msgs/msg/_onboard_computer_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_onboard_computer_status_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_onboard_computer_status_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_onboard_computer_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_onboard_computer_status_s.c.o rosidl_generator_py/px4_msgs/msg/_onboard_computer_status_s.i: rosidl_generator_py/px4_msgs/msg/_onboard_computer_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_onboard_computer_status_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_onboard_computer_status_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_onboard_computer_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_onboard_computer_status_s.c.i rosidl_generator_py/px4_msgs/msg/_onboard_computer_status_s.s: rosidl_generator_py/px4_msgs/msg/_onboard_computer_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_onboard_computer_status_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_onboard_computer_status_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_onboard_computer_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_onboard_computer_status_s.c.s rosidl_generator_py/px4_msgs/msg/_optical_flow_s.o: rosidl_generator_py/px4_msgs/msg/_optical_flow_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_optical_flow_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_optical_flow_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_optical_flow_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_optical_flow_s.c.o rosidl_generator_py/px4_msgs/msg/_optical_flow_s.i: rosidl_generator_py/px4_msgs/msg/_optical_flow_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_optical_flow_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_optical_flow_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_optical_flow_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_optical_flow_s.c.i rosidl_generator_py/px4_msgs/msg/_optical_flow_s.s: rosidl_generator_py/px4_msgs/msg/_optical_flow_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_optical_flow_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_optical_flow_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_optical_flow_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_optical_flow_s.c.s rosidl_generator_py/px4_msgs/msg/_orb_multitest_s.o: rosidl_generator_py/px4_msgs/msg/_orb_multitest_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_multitest_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_orb_multitest_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_multitest_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_multitest_s.c.o rosidl_generator_py/px4_msgs/msg/_orb_multitest_s.i: rosidl_generator_py/px4_msgs/msg/_orb_multitest_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_multitest_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_orb_multitest_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_multitest_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_multitest_s.c.i rosidl_generator_py/px4_msgs/msg/_orb_multitest_s.s: rosidl_generator_py/px4_msgs/msg/_orb_multitest_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_multitest_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_orb_multitest_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_multitest_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_multitest_s.c.s rosidl_generator_py/px4_msgs/msg/_orb_test_large_s.o: rosidl_generator_py/px4_msgs/msg/_orb_test_large_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_large_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_orb_test_large_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_test_large_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_large_s.c.o rosidl_generator_py/px4_msgs/msg/_orb_test_large_s.i: rosidl_generator_py/px4_msgs/msg/_orb_test_large_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_large_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_orb_test_large_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_test_large_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_large_s.c.i rosidl_generator_py/px4_msgs/msg/_orb_test_large_s.s: rosidl_generator_py/px4_msgs/msg/_orb_test_large_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_large_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_orb_test_large_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_test_large_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_large_s.c.s rosidl_generator_py/px4_msgs/msg/_orb_test_medium_multi_s.o: rosidl_generator_py/px4_msgs/msg/_orb_test_medium_multi_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_multi_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_orb_test_medium_multi_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_test_medium_multi_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_multi_s.c.o rosidl_generator_py/px4_msgs/msg/_orb_test_medium_multi_s.i: rosidl_generator_py/px4_msgs/msg/_orb_test_medium_multi_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_multi_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_orb_test_medium_multi_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_test_medium_multi_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_multi_s.c.i rosidl_generator_py/px4_msgs/msg/_orb_test_medium_multi_s.s: rosidl_generator_py/px4_msgs/msg/_orb_test_medium_multi_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_multi_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_orb_test_medium_multi_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_test_medium_multi_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_multi_s.c.s rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_poll_s.o: rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_poll_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_poll_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_poll_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_poll_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_poll_s.c.o rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_poll_s.i: rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_poll_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_poll_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_poll_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_poll_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_poll_s.c.i rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_poll_s.s: rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_poll_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_poll_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_poll_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_poll_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_poll_s.c.s rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_s.o: rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_s.c.o rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_s.i: rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_s.c.i rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_s.s: rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_s.c.s rosidl_generator_py/px4_msgs/msg/_orb_test_medium_s.o: rosidl_generator_py/px4_msgs/msg/_orb_test_medium_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_orb_test_medium_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_test_medium_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_s.c.o rosidl_generator_py/px4_msgs/msg/_orb_test_medium_s.i: rosidl_generator_py/px4_msgs/msg/_orb_test_medium_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_orb_test_medium_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_test_medium_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_s.c.i rosidl_generator_py/px4_msgs/msg/_orb_test_medium_s.s: rosidl_generator_py/px4_msgs/msg/_orb_test_medium_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_orb_test_medium_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_test_medium_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_s.c.s rosidl_generator_py/px4_msgs/msg/_orb_test_medium_wrap_around_s.o: rosidl_generator_py/px4_msgs/msg/_orb_test_medium_wrap_around_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_wrap_around_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_orb_test_medium_wrap_around_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_test_medium_wrap_around_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_wrap_around_s.c.o rosidl_generator_py/px4_msgs/msg/_orb_test_medium_wrap_around_s.i: rosidl_generator_py/px4_msgs/msg/_orb_test_medium_wrap_around_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_wrap_around_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_orb_test_medium_wrap_around_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_test_medium_wrap_around_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_wrap_around_s.c.i rosidl_generator_py/px4_msgs/msg/_orb_test_medium_wrap_around_s.s: rosidl_generator_py/px4_msgs/msg/_orb_test_medium_wrap_around_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_wrap_around_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_orb_test_medium_wrap_around_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_test_medium_wrap_around_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_medium_wrap_around_s.c.s rosidl_generator_py/px4_msgs/msg/_orb_test_s.o: rosidl_generator_py/px4_msgs/msg/_orb_test_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_orb_test_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_test_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_s.c.o rosidl_generator_py/px4_msgs/msg/_orb_test_s.i: rosidl_generator_py/px4_msgs/msg/_orb_test_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_orb_test_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_test_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_s.c.i rosidl_generator_py/px4_msgs/msg/_orb_test_s.s: rosidl_generator_py/px4_msgs/msg/_orb_test_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_orb_test_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orb_test_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_orb_test_s.c.s rosidl_generator_py/px4_msgs/msg/_orbit_status_s.o: rosidl_generator_py/px4_msgs/msg/_orbit_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_orbit_status_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_orbit_status_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orbit_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_orbit_status_s.c.o rosidl_generator_py/px4_msgs/msg/_orbit_status_s.i: rosidl_generator_py/px4_msgs/msg/_orbit_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_orbit_status_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_orbit_status_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orbit_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_orbit_status_s.c.i rosidl_generator_py/px4_msgs/msg/_orbit_status_s.s: rosidl_generator_py/px4_msgs/msg/_orbit_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_orbit_status_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_orbit_status_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_orbit_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_orbit_status_s.c.s rosidl_generator_py/px4_msgs/msg/_parameter_update_s.o: rosidl_generator_py/px4_msgs/msg/_parameter_update_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_parameter_update_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_parameter_update_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_parameter_update_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_parameter_update_s.c.o rosidl_generator_py/px4_msgs/msg/_parameter_update_s.i: rosidl_generator_py/px4_msgs/msg/_parameter_update_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_parameter_update_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_parameter_update_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_parameter_update_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_parameter_update_s.c.i rosidl_generator_py/px4_msgs/msg/_parameter_update_s.s: rosidl_generator_py/px4_msgs/msg/_parameter_update_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_parameter_update_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_parameter_update_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_parameter_update_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_parameter_update_s.c.s rosidl_generator_py/px4_msgs/msg/_ping_s.o: rosidl_generator_py/px4_msgs/msg/_ping_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_ping_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_ping_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_ping_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_ping_s.c.o rosidl_generator_py/px4_msgs/msg/_ping_s.i: rosidl_generator_py/px4_msgs/msg/_ping_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_ping_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_ping_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_ping_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_ping_s.c.i rosidl_generator_py/px4_msgs/msg/_ping_s.s: rosidl_generator_py/px4_msgs/msg/_ping_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_ping_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_ping_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_ping_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_ping_s.c.s rosidl_generator_py/px4_msgs/msg/_position_controller_landing_status_s.o: rosidl_generator_py/px4_msgs/msg/_position_controller_landing_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_position_controller_landing_status_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_position_controller_landing_status_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_position_controller_landing_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_position_controller_landing_status_s.c.o rosidl_generator_py/px4_msgs/msg/_position_controller_landing_status_s.i: rosidl_generator_py/px4_msgs/msg/_position_controller_landing_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_position_controller_landing_status_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_position_controller_landing_status_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_position_controller_landing_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_position_controller_landing_status_s.c.i rosidl_generator_py/px4_msgs/msg/_position_controller_landing_status_s.s: rosidl_generator_py/px4_msgs/msg/_position_controller_landing_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_position_controller_landing_status_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_position_controller_landing_status_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_position_controller_landing_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_position_controller_landing_status_s.c.s rosidl_generator_py/px4_msgs/msg/_position_controller_status_s.o: rosidl_generator_py/px4_msgs/msg/_position_controller_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_position_controller_status_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_position_controller_status_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_position_controller_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_position_controller_status_s.c.o rosidl_generator_py/px4_msgs/msg/_position_controller_status_s.i: rosidl_generator_py/px4_msgs/msg/_position_controller_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_position_controller_status_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_position_controller_status_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_position_controller_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_position_controller_status_s.c.i rosidl_generator_py/px4_msgs/msg/_position_controller_status_s.s: rosidl_generator_py/px4_msgs/msg/_position_controller_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_position_controller_status_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_position_controller_status_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_position_controller_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_position_controller_status_s.c.s rosidl_generator_py/px4_msgs/msg/_position_setpoint_s.o: rosidl_generator_py/px4_msgs/msg/_position_setpoint_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_position_setpoint_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_position_setpoint_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_position_setpoint_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_position_setpoint_s.c.o rosidl_generator_py/px4_msgs/msg/_position_setpoint_s.i: rosidl_generator_py/px4_msgs/msg/_position_setpoint_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_position_setpoint_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_position_setpoint_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_position_setpoint_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_position_setpoint_s.c.i rosidl_generator_py/px4_msgs/msg/_position_setpoint_s.s: rosidl_generator_py/px4_msgs/msg/_position_setpoint_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_position_setpoint_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_position_setpoint_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_position_setpoint_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_position_setpoint_s.c.s rosidl_generator_py/px4_msgs/msg/_position_setpoint_triplet_s.o: rosidl_generator_py/px4_msgs/msg/_position_setpoint_triplet_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_position_setpoint_triplet_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_position_setpoint_triplet_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_position_setpoint_triplet_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_position_setpoint_triplet_s.c.o rosidl_generator_py/px4_msgs/msg/_position_setpoint_triplet_s.i: rosidl_generator_py/px4_msgs/msg/_position_setpoint_triplet_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_position_setpoint_triplet_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_position_setpoint_triplet_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_position_setpoint_triplet_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_position_setpoint_triplet_s.c.i rosidl_generator_py/px4_msgs/msg/_position_setpoint_triplet_s.s: rosidl_generator_py/px4_msgs/msg/_position_setpoint_triplet_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_position_setpoint_triplet_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_position_setpoint_triplet_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_position_setpoint_triplet_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_position_setpoint_triplet_s.c.s rosidl_generator_py/px4_msgs/msg/_power_button_state_s.o: rosidl_generator_py/px4_msgs/msg/_power_button_state_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_power_button_state_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_power_button_state_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_power_button_state_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_power_button_state_s.c.o rosidl_generator_py/px4_msgs/msg/_power_button_state_s.i: rosidl_generator_py/px4_msgs/msg/_power_button_state_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_power_button_state_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_power_button_state_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_power_button_state_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_power_button_state_s.c.i rosidl_generator_py/px4_msgs/msg/_power_button_state_s.s: rosidl_generator_py/px4_msgs/msg/_power_button_state_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_power_button_state_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_power_button_state_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_power_button_state_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_power_button_state_s.c.s rosidl_generator_py/px4_msgs/msg/_power_monitor_s.o: rosidl_generator_py/px4_msgs/msg/_power_monitor_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_power_monitor_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_power_monitor_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_power_monitor_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_power_monitor_s.c.o rosidl_generator_py/px4_msgs/msg/_power_monitor_s.i: rosidl_generator_py/px4_msgs/msg/_power_monitor_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_power_monitor_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_power_monitor_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_power_monitor_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_power_monitor_s.c.i rosidl_generator_py/px4_msgs/msg/_power_monitor_s.s: rosidl_generator_py/px4_msgs/msg/_power_monitor_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_power_monitor_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_power_monitor_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_power_monitor_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_power_monitor_s.c.s rosidl_generator_py/px4_msgs/msg/_pwm_input_s.o: rosidl_generator_py/px4_msgs/msg/_pwm_input_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_pwm_input_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_pwm_input_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_pwm_input_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_pwm_input_s.c.o rosidl_generator_py/px4_msgs/msg/_pwm_input_s.i: rosidl_generator_py/px4_msgs/msg/_pwm_input_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_pwm_input_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_pwm_input_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_pwm_input_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_pwm_input_s.c.i rosidl_generator_py/px4_msgs/msg/_pwm_input_s.s: rosidl_generator_py/px4_msgs/msg/_pwm_input_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_pwm_input_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_pwm_input_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_pwm_input_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_pwm_input_s.c.s rosidl_generator_py/px4_msgs/msg/_px4_io_status_s.o: rosidl_generator_py/px4_msgs/msg/_px4_io_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_px4_io_status_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_px4_io_status_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_px4_io_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_px4_io_status_s.c.o rosidl_generator_py/px4_msgs/msg/_px4_io_status_s.i: rosidl_generator_py/px4_msgs/msg/_px4_io_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_px4_io_status_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_px4_io_status_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_px4_io_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_px4_io_status_s.c.i rosidl_generator_py/px4_msgs/msg/_px4_io_status_s.s: rosidl_generator_py/px4_msgs/msg/_px4_io_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_px4_io_status_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_px4_io_status_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_px4_io_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_px4_io_status_s.c.s rosidl_generator_py/px4_msgs/msg/_qshell_req_s.o: rosidl_generator_py/px4_msgs/msg/_qshell_req_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_qshell_req_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_qshell_req_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_qshell_req_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_qshell_req_s.c.o rosidl_generator_py/px4_msgs/msg/_qshell_req_s.i: rosidl_generator_py/px4_msgs/msg/_qshell_req_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_qshell_req_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_qshell_req_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_qshell_req_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_qshell_req_s.c.i rosidl_generator_py/px4_msgs/msg/_qshell_req_s.s: rosidl_generator_py/px4_msgs/msg/_qshell_req_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_qshell_req_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_qshell_req_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_qshell_req_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_qshell_req_s.c.s rosidl_generator_py/px4_msgs/msg/_qshell_retval_s.o: rosidl_generator_py/px4_msgs/msg/_qshell_retval_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_qshell_retval_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_qshell_retval_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_qshell_retval_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_qshell_retval_s.c.o rosidl_generator_py/px4_msgs/msg/_qshell_retval_s.i: rosidl_generator_py/px4_msgs/msg/_qshell_retval_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_qshell_retval_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_qshell_retval_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_qshell_retval_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_qshell_retval_s.c.i rosidl_generator_py/px4_msgs/msg/_qshell_retval_s.s: rosidl_generator_py/px4_msgs/msg/_qshell_retval_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_qshell_retval_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_qshell_retval_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_qshell_retval_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_qshell_retval_s.c.s rosidl_generator_py/px4_msgs/msg/_radio_status_s.o: rosidl_generator_py/px4_msgs/msg/_radio_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_radio_status_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_radio_status_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_radio_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_radio_status_s.c.o rosidl_generator_py/px4_msgs/msg/_radio_status_s.i: rosidl_generator_py/px4_msgs/msg/_radio_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_radio_status_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_radio_status_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_radio_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_radio_status_s.c.i rosidl_generator_py/px4_msgs/msg/_radio_status_s.s: rosidl_generator_py/px4_msgs/msg/_radio_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_radio_status_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_radio_status_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_radio_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_radio_status_s.c.s rosidl_generator_py/px4_msgs/msg/_rate_ctrl_status_s.o: rosidl_generator_py/px4_msgs/msg/_rate_ctrl_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_rate_ctrl_status_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_rate_ctrl_status_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_rate_ctrl_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_rate_ctrl_status_s.c.o rosidl_generator_py/px4_msgs/msg/_rate_ctrl_status_s.i: rosidl_generator_py/px4_msgs/msg/_rate_ctrl_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_rate_ctrl_status_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_rate_ctrl_status_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_rate_ctrl_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_rate_ctrl_status_s.c.i rosidl_generator_py/px4_msgs/msg/_rate_ctrl_status_s.s: rosidl_generator_py/px4_msgs/msg/_rate_ctrl_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_rate_ctrl_status_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_rate_ctrl_status_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_rate_ctrl_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_rate_ctrl_status_s.c.s rosidl_generator_py/px4_msgs/msg/_rc_channels_s.o: rosidl_generator_py/px4_msgs/msg/_rc_channels_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_rc_channels_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_rc_channels_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_rc_channels_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_rc_channels_s.c.o rosidl_generator_py/px4_msgs/msg/_rc_channels_s.i: rosidl_generator_py/px4_msgs/msg/_rc_channels_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_rc_channels_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_rc_channels_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_rc_channels_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_rc_channels_s.c.i rosidl_generator_py/px4_msgs/msg/_rc_channels_s.s: rosidl_generator_py/px4_msgs/msg/_rc_channels_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_rc_channels_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_rc_channels_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_rc_channels_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_rc_channels_s.c.s rosidl_generator_py/px4_msgs/msg/_rc_parameter_map_s.o: rosidl_generator_py/px4_msgs/msg/_rc_parameter_map_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_rc_parameter_map_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_rc_parameter_map_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_rc_parameter_map_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_rc_parameter_map_s.c.o rosidl_generator_py/px4_msgs/msg/_rc_parameter_map_s.i: rosidl_generator_py/px4_msgs/msg/_rc_parameter_map_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_rc_parameter_map_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_rc_parameter_map_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_rc_parameter_map_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_rc_parameter_map_s.c.i rosidl_generator_py/px4_msgs/msg/_rc_parameter_map_s.s: rosidl_generator_py/px4_msgs/msg/_rc_parameter_map_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_rc_parameter_map_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_rc_parameter_map_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_rc_parameter_map_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_rc_parameter_map_s.c.s rosidl_generator_py/px4_msgs/msg/_rpm_s.o: rosidl_generator_py/px4_msgs/msg/_rpm_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_rpm_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_rpm_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_rpm_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_rpm_s.c.o rosidl_generator_py/px4_msgs/msg/_rpm_s.i: rosidl_generator_py/px4_msgs/msg/_rpm_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_rpm_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_rpm_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_rpm_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_rpm_s.c.i rosidl_generator_py/px4_msgs/msg/_rpm_s.s: rosidl_generator_py/px4_msgs/msg/_rpm_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_rpm_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_rpm_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_rpm_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_rpm_s.c.s rosidl_generator_py/px4_msgs/msg/_rtl_flight_time_s.o: rosidl_generator_py/px4_msgs/msg/_rtl_flight_time_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_rtl_flight_time_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_rtl_flight_time_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_rtl_flight_time_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_rtl_flight_time_s.c.o rosidl_generator_py/px4_msgs/msg/_rtl_flight_time_s.i: rosidl_generator_py/px4_msgs/msg/_rtl_flight_time_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_rtl_flight_time_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_rtl_flight_time_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_rtl_flight_time_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_rtl_flight_time_s.c.i rosidl_generator_py/px4_msgs/msg/_rtl_flight_time_s.s: rosidl_generator_py/px4_msgs/msg/_rtl_flight_time_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_rtl_flight_time_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_rtl_flight_time_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_rtl_flight_time_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_rtl_flight_time_s.c.s rosidl_generator_py/px4_msgs/msg/_safety_s.o: rosidl_generator_py/px4_msgs/msg/_safety_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_safety_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_safety_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_safety_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_safety_s.c.o rosidl_generator_py/px4_msgs/msg/_safety_s.i: rosidl_generator_py/px4_msgs/msg/_safety_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_safety_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_safety_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_safety_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_safety_s.c.i rosidl_generator_py/px4_msgs/msg/_safety_s.s: rosidl_generator_py/px4_msgs/msg/_safety_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_safety_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_safety_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_safety_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_safety_s.c.s rosidl_generator_py/px4_msgs/msg/_satellite_info_s.o: rosidl_generator_py/px4_msgs/msg/_satellite_info_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_satellite_info_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_satellite_info_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_satellite_info_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_satellite_info_s.c.o rosidl_generator_py/px4_msgs/msg/_satellite_info_s.i: rosidl_generator_py/px4_msgs/msg/_satellite_info_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_satellite_info_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_satellite_info_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_satellite_info_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_satellite_info_s.c.i rosidl_generator_py/px4_msgs/msg/_satellite_info_s.s: rosidl_generator_py/px4_msgs/msg/_satellite_info_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_satellite_info_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_satellite_info_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_satellite_info_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_satellite_info_s.c.s rosidl_generator_py/px4_msgs/msg/_sensor_accel_fifo_s.o: rosidl_generator_py/px4_msgs/msg/_sensor_accel_fifo_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_accel_fifo_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_sensor_accel_fifo_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_accel_fifo_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_accel_fifo_s.c.o rosidl_generator_py/px4_msgs/msg/_sensor_accel_fifo_s.i: rosidl_generator_py/px4_msgs/msg/_sensor_accel_fifo_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_accel_fifo_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_sensor_accel_fifo_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_accel_fifo_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_accel_fifo_s.c.i rosidl_generator_py/px4_msgs/msg/_sensor_accel_fifo_s.s: rosidl_generator_py/px4_msgs/msg/_sensor_accel_fifo_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_accel_fifo_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_sensor_accel_fifo_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_accel_fifo_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_accel_fifo_s.c.s rosidl_generator_py/px4_msgs/msg/_sensor_accel_s.o: rosidl_generator_py/px4_msgs/msg/_sensor_accel_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_accel_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_sensor_accel_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_accel_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_accel_s.c.o rosidl_generator_py/px4_msgs/msg/_sensor_accel_s.i: rosidl_generator_py/px4_msgs/msg/_sensor_accel_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_accel_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_sensor_accel_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_accel_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_accel_s.c.i rosidl_generator_py/px4_msgs/msg/_sensor_accel_s.s: rosidl_generator_py/px4_msgs/msg/_sensor_accel_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_accel_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_sensor_accel_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_accel_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_accel_s.c.s rosidl_generator_py/px4_msgs/msg/_sensor_baro_s.o: rosidl_generator_py/px4_msgs/msg/_sensor_baro_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_baro_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_sensor_baro_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_baro_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_baro_s.c.o rosidl_generator_py/px4_msgs/msg/_sensor_baro_s.i: rosidl_generator_py/px4_msgs/msg/_sensor_baro_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_baro_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_sensor_baro_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_baro_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_baro_s.c.i rosidl_generator_py/px4_msgs/msg/_sensor_baro_s.s: rosidl_generator_py/px4_msgs/msg/_sensor_baro_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_baro_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_sensor_baro_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_baro_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_baro_s.c.s rosidl_generator_py/px4_msgs/msg/_sensor_combined_s.o: rosidl_generator_py/px4_msgs/msg/_sensor_combined_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_combined_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_sensor_combined_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_combined_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_combined_s.c.o rosidl_generator_py/px4_msgs/msg/_sensor_combined_s.i: rosidl_generator_py/px4_msgs/msg/_sensor_combined_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_combined_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_sensor_combined_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_combined_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_combined_s.c.i rosidl_generator_py/px4_msgs/msg/_sensor_combined_s.s: rosidl_generator_py/px4_msgs/msg/_sensor_combined_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_combined_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_sensor_combined_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_combined_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_combined_s.c.s rosidl_generator_py/px4_msgs/msg/_sensor_correction_s.o: rosidl_generator_py/px4_msgs/msg/_sensor_correction_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_correction_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_sensor_correction_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_correction_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_correction_s.c.o rosidl_generator_py/px4_msgs/msg/_sensor_correction_s.i: rosidl_generator_py/px4_msgs/msg/_sensor_correction_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_correction_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_sensor_correction_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_correction_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_correction_s.c.i rosidl_generator_py/px4_msgs/msg/_sensor_correction_s.s: rosidl_generator_py/px4_msgs/msg/_sensor_correction_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_correction_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_sensor_correction_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_correction_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_correction_s.c.s rosidl_generator_py/px4_msgs/msg/_sensor_gps_s.o: rosidl_generator_py/px4_msgs/msg/_sensor_gps_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_gps_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_sensor_gps_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_gps_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_gps_s.c.o rosidl_generator_py/px4_msgs/msg/_sensor_gps_s.i: rosidl_generator_py/px4_msgs/msg/_sensor_gps_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_gps_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_sensor_gps_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_gps_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_gps_s.c.i rosidl_generator_py/px4_msgs/msg/_sensor_gps_s.s: rosidl_generator_py/px4_msgs/msg/_sensor_gps_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_gps_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_sensor_gps_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_gps_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_gps_s.c.s rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fft_s.o: rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fft_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fft_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fft_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fft_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fft_s.c.o rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fft_s.i: rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fft_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fft_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fft_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fft_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fft_s.c.i rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fft_s.s: rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fft_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fft_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fft_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fft_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fft_s.c.s rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fifo_s.o: rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fifo_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fifo_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fifo_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fifo_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fifo_s.c.o rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fifo_s.i: rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fifo_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fifo_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fifo_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fifo_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fifo_s.c.i rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fifo_s.s: rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fifo_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fifo_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fifo_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fifo_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fifo_s.c.s rosidl_generator_py/px4_msgs/msg/_sensor_gyro_s.o: rosidl_generator_py/px4_msgs/msg/_sensor_gyro_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_gyro_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_sensor_gyro_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_gyro_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_gyro_s.c.o rosidl_generator_py/px4_msgs/msg/_sensor_gyro_s.i: rosidl_generator_py/px4_msgs/msg/_sensor_gyro_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_gyro_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_sensor_gyro_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_gyro_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_gyro_s.c.i rosidl_generator_py/px4_msgs/msg/_sensor_gyro_s.s: rosidl_generator_py/px4_msgs/msg/_sensor_gyro_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_gyro_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_sensor_gyro_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_gyro_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_gyro_s.c.s rosidl_generator_py/px4_msgs/msg/_sensor_mag_s.o: rosidl_generator_py/px4_msgs/msg/_sensor_mag_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_mag_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_sensor_mag_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_mag_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_mag_s.c.o rosidl_generator_py/px4_msgs/msg/_sensor_mag_s.i: rosidl_generator_py/px4_msgs/msg/_sensor_mag_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_mag_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_sensor_mag_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_mag_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_mag_s.c.i rosidl_generator_py/px4_msgs/msg/_sensor_mag_s.s: rosidl_generator_py/px4_msgs/msg/_sensor_mag_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_mag_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_sensor_mag_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_mag_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_mag_s.c.s rosidl_generator_py/px4_msgs/msg/_sensor_preflight_mag_s.o: rosidl_generator_py/px4_msgs/msg/_sensor_preflight_mag_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_preflight_mag_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_sensor_preflight_mag_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_preflight_mag_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_preflight_mag_s.c.o rosidl_generator_py/px4_msgs/msg/_sensor_preflight_mag_s.i: rosidl_generator_py/px4_msgs/msg/_sensor_preflight_mag_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_preflight_mag_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_sensor_preflight_mag_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_preflight_mag_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_preflight_mag_s.c.i rosidl_generator_py/px4_msgs/msg/_sensor_preflight_mag_s.s: rosidl_generator_py/px4_msgs/msg/_sensor_preflight_mag_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_preflight_mag_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_sensor_preflight_mag_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_preflight_mag_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_preflight_mag_s.c.s rosidl_generator_py/px4_msgs/msg/_sensor_selection_s.o: rosidl_generator_py/px4_msgs/msg/_sensor_selection_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_selection_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_sensor_selection_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_selection_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_selection_s.c.o rosidl_generator_py/px4_msgs/msg/_sensor_selection_s.i: rosidl_generator_py/px4_msgs/msg/_sensor_selection_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_selection_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_sensor_selection_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_selection_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_selection_s.c.i rosidl_generator_py/px4_msgs/msg/_sensor_selection_s.s: rosidl_generator_py/px4_msgs/msg/_sensor_selection_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_selection_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_sensor_selection_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensor_selection_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_sensor_selection_s.c.s rosidl_generator_py/px4_msgs/msg/_sensors_status_imu_s.o: rosidl_generator_py/px4_msgs/msg/_sensors_status_imu_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_sensors_status_imu_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_sensors_status_imu_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensors_status_imu_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_sensors_status_imu_s.c.o rosidl_generator_py/px4_msgs/msg/_sensors_status_imu_s.i: rosidl_generator_py/px4_msgs/msg/_sensors_status_imu_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_sensors_status_imu_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_sensors_status_imu_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensors_status_imu_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_sensors_status_imu_s.c.i rosidl_generator_py/px4_msgs/msg/_sensors_status_imu_s.s: rosidl_generator_py/px4_msgs/msg/_sensors_status_imu_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_sensors_status_imu_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_sensors_status_imu_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_sensors_status_imu_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_sensors_status_imu_s.c.s rosidl_generator_py/px4_msgs/msg/_system_power_s.o: rosidl_generator_py/px4_msgs/msg/_system_power_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_system_power_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_system_power_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_system_power_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_system_power_s.c.o rosidl_generator_py/px4_msgs/msg/_system_power_s.i: rosidl_generator_py/px4_msgs/msg/_system_power_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_system_power_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_system_power_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_system_power_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_system_power_s.c.i rosidl_generator_py/px4_msgs/msg/_system_power_s.s: rosidl_generator_py/px4_msgs/msg/_system_power_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_system_power_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_system_power_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_system_power_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_system_power_s.c.s rosidl_generator_py/px4_msgs/msg/_takeoff_status_s.o: rosidl_generator_py/px4_msgs/msg/_takeoff_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_takeoff_status_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_takeoff_status_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_takeoff_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_takeoff_status_s.c.o rosidl_generator_py/px4_msgs/msg/_takeoff_status_s.i: rosidl_generator_py/px4_msgs/msg/_takeoff_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_takeoff_status_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_takeoff_status_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_takeoff_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_takeoff_status_s.c.i rosidl_generator_py/px4_msgs/msg/_takeoff_status_s.s: rosidl_generator_py/px4_msgs/msg/_takeoff_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_takeoff_status_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_takeoff_status_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_takeoff_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_takeoff_status_s.c.s rosidl_generator_py/px4_msgs/msg/_task_stack_info_s.o: rosidl_generator_py/px4_msgs/msg/_task_stack_info_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_task_stack_info_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_task_stack_info_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_task_stack_info_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_task_stack_info_s.c.o rosidl_generator_py/px4_msgs/msg/_task_stack_info_s.i: rosidl_generator_py/px4_msgs/msg/_task_stack_info_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_task_stack_info_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_task_stack_info_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_task_stack_info_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_task_stack_info_s.c.i rosidl_generator_py/px4_msgs/msg/_task_stack_info_s.s: rosidl_generator_py/px4_msgs/msg/_task_stack_info_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_task_stack_info_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_task_stack_info_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_task_stack_info_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_task_stack_info_s.c.s rosidl_generator_py/px4_msgs/msg/_tecs_status_s.o: rosidl_generator_py/px4_msgs/msg/_tecs_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_tecs_status_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_tecs_status_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_tecs_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_tecs_status_s.c.o rosidl_generator_py/px4_msgs/msg/_tecs_status_s.i: rosidl_generator_py/px4_msgs/msg/_tecs_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_tecs_status_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_tecs_status_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_tecs_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_tecs_status_s.c.i rosidl_generator_py/px4_msgs/msg/_tecs_status_s.s: rosidl_generator_py/px4_msgs/msg/_tecs_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_tecs_status_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_tecs_status_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_tecs_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_tecs_status_s.c.s rosidl_generator_py/px4_msgs/msg/_telemetry_status_s.o: rosidl_generator_py/px4_msgs/msg/_telemetry_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_telemetry_status_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_telemetry_status_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_telemetry_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_telemetry_status_s.c.o rosidl_generator_py/px4_msgs/msg/_telemetry_status_s.i: rosidl_generator_py/px4_msgs/msg/_telemetry_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_telemetry_status_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_telemetry_status_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_telemetry_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_telemetry_status_s.c.i rosidl_generator_py/px4_msgs/msg/_telemetry_status_s.s: rosidl_generator_py/px4_msgs/msg/_telemetry_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_telemetry_status_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_telemetry_status_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_telemetry_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_telemetry_status_s.c.s rosidl_generator_py/px4_msgs/msg/_test_motor_s.o: rosidl_generator_py/px4_msgs/msg/_test_motor_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_test_motor_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_test_motor_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_test_motor_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_test_motor_s.c.o rosidl_generator_py/px4_msgs/msg/_test_motor_s.i: rosidl_generator_py/px4_msgs/msg/_test_motor_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_test_motor_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_test_motor_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_test_motor_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_test_motor_s.c.i rosidl_generator_py/px4_msgs/msg/_test_motor_s.s: rosidl_generator_py/px4_msgs/msg/_test_motor_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_test_motor_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_test_motor_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_test_motor_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_test_motor_s.c.s rosidl_generator_py/px4_msgs/msg/_timesync_s.o: rosidl_generator_py/px4_msgs/msg/_timesync_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_timesync_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_timesync_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_timesync_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_timesync_s.c.o rosidl_generator_py/px4_msgs/msg/_timesync_s.i: rosidl_generator_py/px4_msgs/msg/_timesync_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_timesync_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_timesync_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_timesync_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_timesync_s.c.i rosidl_generator_py/px4_msgs/msg/_timesync_s.s: rosidl_generator_py/px4_msgs/msg/_timesync_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_timesync_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_timesync_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_timesync_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_timesync_s.c.s rosidl_generator_py/px4_msgs/msg/_timesync_status_s.o: rosidl_generator_py/px4_msgs/msg/_timesync_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_timesync_status_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_timesync_status_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_timesync_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_timesync_status_s.c.o rosidl_generator_py/px4_msgs/msg/_timesync_status_s.i: rosidl_generator_py/px4_msgs/msg/_timesync_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_timesync_status_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_timesync_status_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_timesync_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_timesync_status_s.c.i rosidl_generator_py/px4_msgs/msg/_timesync_status_s.s: rosidl_generator_py/px4_msgs/msg/_timesync_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_timesync_status_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_timesync_status_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_timesync_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_timesync_status_s.c.s rosidl_generator_py/px4_msgs/msg/_trajectory_bezier_s.o: rosidl_generator_py/px4_msgs/msg/_trajectory_bezier_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_trajectory_bezier_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_trajectory_bezier_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_trajectory_bezier_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_trajectory_bezier_s.c.o rosidl_generator_py/px4_msgs/msg/_trajectory_bezier_s.i: rosidl_generator_py/px4_msgs/msg/_trajectory_bezier_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_trajectory_bezier_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_trajectory_bezier_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_trajectory_bezier_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_trajectory_bezier_s.c.i rosidl_generator_py/px4_msgs/msg/_trajectory_bezier_s.s: rosidl_generator_py/px4_msgs/msg/_trajectory_bezier_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_trajectory_bezier_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_trajectory_bezier_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_trajectory_bezier_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_trajectory_bezier_s.c.s rosidl_generator_py/px4_msgs/msg/_trajectory_setpoint_s.o: rosidl_generator_py/px4_msgs/msg/_trajectory_setpoint_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_trajectory_setpoint_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_trajectory_setpoint_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_trajectory_setpoint_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_trajectory_setpoint_s.c.o rosidl_generator_py/px4_msgs/msg/_trajectory_setpoint_s.i: rosidl_generator_py/px4_msgs/msg/_trajectory_setpoint_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_trajectory_setpoint_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_trajectory_setpoint_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_trajectory_setpoint_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_trajectory_setpoint_s.c.i rosidl_generator_py/px4_msgs/msg/_trajectory_setpoint_s.s: rosidl_generator_py/px4_msgs/msg/_trajectory_setpoint_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_trajectory_setpoint_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_trajectory_setpoint_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_trajectory_setpoint_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_trajectory_setpoint_s.c.s rosidl_generator_py/px4_msgs/msg/_trajectory_waypoint_s.o: rosidl_generator_py/px4_msgs/msg/_trajectory_waypoint_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_trajectory_waypoint_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_trajectory_waypoint_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_trajectory_waypoint_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_trajectory_waypoint_s.c.o rosidl_generator_py/px4_msgs/msg/_trajectory_waypoint_s.i: rosidl_generator_py/px4_msgs/msg/_trajectory_waypoint_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_trajectory_waypoint_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_trajectory_waypoint_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_trajectory_waypoint_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_trajectory_waypoint_s.c.i rosidl_generator_py/px4_msgs/msg/_trajectory_waypoint_s.s: rosidl_generator_py/px4_msgs/msg/_trajectory_waypoint_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_trajectory_waypoint_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_trajectory_waypoint_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_trajectory_waypoint_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_trajectory_waypoint_s.c.s rosidl_generator_py/px4_msgs/msg/_transponder_report_s.o: rosidl_generator_py/px4_msgs/msg/_transponder_report_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_transponder_report_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_transponder_report_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_transponder_report_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_transponder_report_s.c.o rosidl_generator_py/px4_msgs/msg/_transponder_report_s.i: rosidl_generator_py/px4_msgs/msg/_transponder_report_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_transponder_report_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_transponder_report_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_transponder_report_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_transponder_report_s.c.i rosidl_generator_py/px4_msgs/msg/_transponder_report_s.s: rosidl_generator_py/px4_msgs/msg/_transponder_report_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_transponder_report_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_transponder_report_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_transponder_report_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_transponder_report_s.c.s rosidl_generator_py/px4_msgs/msg/_tune_control_s.o: rosidl_generator_py/px4_msgs/msg/_tune_control_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_tune_control_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_tune_control_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_tune_control_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_tune_control_s.c.o rosidl_generator_py/px4_msgs/msg/_tune_control_s.i: rosidl_generator_py/px4_msgs/msg/_tune_control_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_tune_control_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_tune_control_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_tune_control_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_tune_control_s.c.i rosidl_generator_py/px4_msgs/msg/_tune_control_s.s: rosidl_generator_py/px4_msgs/msg/_tune_control_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_tune_control_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_tune_control_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_tune_control_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_tune_control_s.c.s rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_request_s.o: rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_request_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_request_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_request_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_request_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_request_s.c.o rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_request_s.i: rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_request_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_request_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_request_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_request_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_request_s.c.i rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_request_s.s: rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_request_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_request_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_request_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_request_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_request_s.c.s rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_value_s.o: rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_value_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_value_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_value_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_value_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_value_s.c.o rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_value_s.i: rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_value_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_value_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_value_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_value_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_value_s.c.i rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_value_s.s: rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_value_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_value_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_value_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_value_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_value_s.c.s rosidl_generator_py/px4_msgs/msg/_ulog_stream_ack_s.o: rosidl_generator_py/px4_msgs/msg/_ulog_stream_ack_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_ulog_stream_ack_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_ulog_stream_ack_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_ulog_stream_ack_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_ulog_stream_ack_s.c.o rosidl_generator_py/px4_msgs/msg/_ulog_stream_ack_s.i: rosidl_generator_py/px4_msgs/msg/_ulog_stream_ack_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_ulog_stream_ack_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_ulog_stream_ack_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_ulog_stream_ack_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_ulog_stream_ack_s.c.i rosidl_generator_py/px4_msgs/msg/_ulog_stream_ack_s.s: rosidl_generator_py/px4_msgs/msg/_ulog_stream_ack_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_ulog_stream_ack_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_ulog_stream_ack_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_ulog_stream_ack_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_ulog_stream_ack_s.c.s rosidl_generator_py/px4_msgs/msg/_ulog_stream_s.o: rosidl_generator_py/px4_msgs/msg/_ulog_stream_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_ulog_stream_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_ulog_stream_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_ulog_stream_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_ulog_stream_s.c.o rosidl_generator_py/px4_msgs/msg/_ulog_stream_s.i: rosidl_generator_py/px4_msgs/msg/_ulog_stream_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_ulog_stream_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_ulog_stream_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_ulog_stream_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_ulog_stream_s.c.i rosidl_generator_py/px4_msgs/msg/_ulog_stream_s.s: rosidl_generator_py/px4_msgs/msg/_ulog_stream_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_ulog_stream_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_ulog_stream_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_ulog_stream_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_ulog_stream_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_acceleration_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_acceleration_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_acceleration_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_acceleration_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_acceleration_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_acceleration_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_acceleration_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_acceleration_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_acceleration_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_acceleration_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_acceleration_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_acceleration_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_acceleration_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_acceleration_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_acceleration_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_acceleration_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_acceleration_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_acceleration_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_actuator_setpoint_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_actuator_setpoint_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_actuator_setpoint_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_actuator_setpoint_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_actuator_setpoint_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_actuator_setpoint_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_actuator_setpoint_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_actuator_setpoint_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_actuator_setpoint_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_actuator_setpoint_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_actuator_setpoint_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_actuator_setpoint_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_actuator_setpoint_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_actuator_setpoint_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_actuator_setpoint_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_actuator_setpoint_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_actuator_setpoint_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_actuator_setpoint_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_air_data_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_air_data_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_air_data_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_air_data_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_air_data_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_air_data_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_air_data_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_air_data_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_air_data_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_air_data_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_air_data_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_air_data_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_air_data_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_air_data_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_air_data_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_air_data_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_air_data_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_air_data_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_setpoint_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_setpoint_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_setpoint_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_setpoint_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_setpoint_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_setpoint_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_setpoint_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_setpoint_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_setpoint_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_setpoint_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_setpoint_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_setpoint_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_setpoint_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_setpoint_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_setpoint_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_setpoint_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_setpoint_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_setpoint_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_groundtruth_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_groundtruth_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_groundtruth_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_groundtruth_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_groundtruth_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_groundtruth_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_groundtruth_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_groundtruth_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_groundtruth_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_groundtruth_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_groundtruth_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_groundtruth_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_groundtruth_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_groundtruth_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_groundtruth_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_groundtruth_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_groundtruth_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_groundtruth_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_groundtruth_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_groundtruth_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_groundtruth_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_groundtruth_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_groundtruth_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_groundtruth_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_groundtruth_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_groundtruth_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_groundtruth_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_groundtruth_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_groundtruth_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_groundtruth_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_groundtruth_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_groundtruth_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_groundtruth_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_groundtruth_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_groundtruth_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_groundtruth_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_setpoint_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_setpoint_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_setpoint_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_setpoint_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_setpoint_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_setpoint_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_setpoint_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_setpoint_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_setpoint_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_setpoint_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_setpoint_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_setpoint_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_setpoint_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_setpoint_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_setpoint_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_setpoint_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_setpoint_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_setpoint_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_command_ack_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_command_ack_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_command_ack_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_command_ack_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_command_ack_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_command_ack_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_command_ack_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_command_ack_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_command_ack_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_command_ack_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_command_ack_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_command_ack_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_command_ack_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_command_ack_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_command_ack_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_command_ack_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_command_ack_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_command_ack_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_command_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_command_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_command_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_command_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_command_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_command_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_command_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_command_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_command_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_command_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_command_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_command_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_command_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_command_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_command_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_command_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_command_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_command_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_constraints_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_constraints_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_constraints_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_constraints_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_constraints_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_constraints_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_constraints_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_constraints_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_constraints_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_constraints_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_constraints_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_constraints_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_constraints_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_constraints_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_constraints_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_constraints_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_constraints_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_constraints_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_control_mode_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_control_mode_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_control_mode_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_control_mode_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_control_mode_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_control_mode_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_control_mode_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_control_mode_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_control_mode_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_control_mode_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_control_mode_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_control_mode_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_control_mode_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_control_mode_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_control_mode_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_control_mode_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_control_mode_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_control_mode_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_groundtruth_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_groundtruth_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_groundtruth_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_groundtruth_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_groundtruth_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_groundtruth_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_groundtruth_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_groundtruth_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_groundtruth_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_groundtruth_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_groundtruth_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_groundtruth_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_groundtruth_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_groundtruth_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_groundtruth_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_groundtruth_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_groundtruth_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_groundtruth_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_gps_position_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_gps_position_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_gps_position_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_gps_position_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_gps_position_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_gps_position_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_gps_position_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_gps_position_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_gps_position_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_gps_position_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_gps_position_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_gps_position_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_gps_position_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_gps_position_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_gps_position_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_gps_position_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_gps_position_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_gps_position_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_imu_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_imu_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_imu_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_imu_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_imu_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_imu_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_imu_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_imu_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_imu_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_imu_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_imu_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_imu_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_imu_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_imu_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_imu_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_imu_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_imu_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_imu_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_imu_status_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_imu_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_imu_status_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_imu_status_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_imu_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_imu_status_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_imu_status_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_imu_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_imu_status_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_imu_status_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_imu_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_imu_status_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_imu_status_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_imu_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_imu_status_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_imu_status_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_imu_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_imu_status_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_land_detected_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_land_detected_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_land_detected_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_land_detected_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_land_detected_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_land_detected_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_land_detected_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_land_detected_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_land_detected_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_land_detected_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_land_detected_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_land_detected_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_land_detected_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_land_detected_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_land_detected_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_land_detected_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_land_detected_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_land_detected_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_groundtruth_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_groundtruth_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_groundtruth_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_groundtruth_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_groundtruth_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_groundtruth_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_groundtruth_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_groundtruth_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_groundtruth_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_groundtruth_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_groundtruth_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_groundtruth_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_groundtruth_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_groundtruth_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_groundtruth_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_groundtruth_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_groundtruth_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_groundtruth_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_setpoint_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_setpoint_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_setpoint_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_setpoint_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_setpoint_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_setpoint_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_setpoint_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_setpoint_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_setpoint_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_setpoint_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_setpoint_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_setpoint_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_setpoint_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_setpoint_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_setpoint_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_setpoint_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_setpoint_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_setpoint_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_magnetometer_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_magnetometer_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_magnetometer_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_magnetometer_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_magnetometer_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_magnetometer_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_magnetometer_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_magnetometer_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_magnetometer_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_magnetometer_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_magnetometer_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_magnetometer_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_magnetometer_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_magnetometer_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_magnetometer_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_magnetometer_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_magnetometer_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_magnetometer_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_mocap_odometry_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_mocap_odometry_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_mocap_odometry_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_mocap_odometry_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_mocap_odometry_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_mocap_odometry_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_mocap_odometry_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_mocap_odometry_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_mocap_odometry_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_mocap_odometry_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_mocap_odometry_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_mocap_odometry_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_mocap_odometry_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_mocap_odometry_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_mocap_odometry_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_mocap_odometry_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_mocap_odometry_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_mocap_odometry_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_odometry_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_odometry_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_odometry_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_odometry_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_odometry_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_odometry_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_odometry_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_odometry_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_odometry_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_odometry_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_odometry_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_odometry_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_odometry_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_odometry_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_odometry_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_odometry_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_odometry_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_odometry_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_rates_setpoint_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_rates_setpoint_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_rates_setpoint_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_rates_setpoint_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_rates_setpoint_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_rates_setpoint_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_rates_setpoint_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_rates_setpoint_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_rates_setpoint_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_rates_setpoint_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_rates_setpoint_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_rates_setpoint_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_rates_setpoint_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_rates_setpoint_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_rates_setpoint_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_rates_setpoint_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_rates_setpoint_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_rates_setpoint_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_roi_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_roi_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_roi_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_roi_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_roi_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_roi_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_roi_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_roi_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_roi_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_roi_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_roi_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_roi_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_roi_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_roi_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_roi_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_roi_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_roi_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_roi_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_status_flags_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_status_flags_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_status_flags_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_status_flags_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_status_flags_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_status_flags_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_status_flags_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_status_flags_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_status_flags_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_status_flags_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_status_flags_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_status_flags_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_status_flags_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_status_flags_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_status_flags_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_status_flags_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_status_flags_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_status_flags_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_status_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_status_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_status_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_status_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_status_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_status_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_status_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_status_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_status_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_status_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_status_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_status_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_thrust_setpoint_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_thrust_setpoint_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_thrust_setpoint_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_thrust_setpoint_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_thrust_setpoint_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_thrust_setpoint_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_thrust_setpoint_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_thrust_setpoint_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_thrust_setpoint_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_thrust_setpoint_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_thrust_setpoint_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_thrust_setpoint_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_thrust_setpoint_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_thrust_setpoint_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_thrust_setpoint_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_thrust_setpoint_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_thrust_setpoint_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_thrust_setpoint_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_torque_setpoint_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_torque_setpoint_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_torque_setpoint_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_torque_setpoint_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_torque_setpoint_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_torque_setpoint_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_torque_setpoint_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_torque_setpoint_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_torque_setpoint_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_torque_setpoint_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_torque_setpoint_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_torque_setpoint_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_torque_setpoint_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_torque_setpoint_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_torque_setpoint_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_torque_setpoint_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_torque_setpoint_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_torque_setpoint_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_bezier_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_bezier_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_bezier_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_bezier_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_bezier_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_bezier_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_bezier_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_bezier_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_bezier_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_bezier_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_bezier_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_bezier_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_bezier_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_bezier_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_bezier_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_bezier_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_bezier_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_bezier_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_desired_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_desired_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_desired_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_desired_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_desired_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_desired_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_desired_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_desired_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_desired_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_desired_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_desired_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_desired_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_desired_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_desired_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_desired_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_desired_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_desired_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_desired_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_vision_attitude_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_vision_attitude_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_vision_attitude_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_vision_attitude_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_vision_attitude_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_vision_attitude_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_vision_attitude_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_vision_attitude_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_vision_attitude_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_vision_attitude_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_vision_attitude_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_vision_attitude_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_vision_attitude_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_vision_attitude_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_vision_attitude_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_vision_attitude_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_vision_attitude_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_vision_attitude_s.c.s rosidl_generator_py/px4_msgs/msg/_vehicle_visual_odometry_s.o: rosidl_generator_py/px4_msgs/msg/_vehicle_visual_odometry_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_visual_odometry_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vehicle_visual_odometry_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_visual_odometry_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_visual_odometry_s.c.o rosidl_generator_py/px4_msgs/msg/_vehicle_visual_odometry_s.i: rosidl_generator_py/px4_msgs/msg/_vehicle_visual_odometry_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_visual_odometry_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vehicle_visual_odometry_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_visual_odometry_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_visual_odometry_s.c.i rosidl_generator_py/px4_msgs/msg/_vehicle_visual_odometry_s.s: rosidl_generator_py/px4_msgs/msg/_vehicle_visual_odometry_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_visual_odometry_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vehicle_visual_odometry_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vehicle_visual_odometry_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vehicle_visual_odometry_s.c.s rosidl_generator_py/px4_msgs/msg/_vtol_vehicle_status_s.o: rosidl_generator_py/px4_msgs/msg/_vtol_vehicle_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vtol_vehicle_status_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_vtol_vehicle_status_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vtol_vehicle_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_vtol_vehicle_status_s.c.o rosidl_generator_py/px4_msgs/msg/_vtol_vehicle_status_s.i: rosidl_generator_py/px4_msgs/msg/_vtol_vehicle_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vtol_vehicle_status_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_vtol_vehicle_status_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vtol_vehicle_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_vtol_vehicle_status_s.c.i rosidl_generator_py/px4_msgs/msg/_vtol_vehicle_status_s.s: rosidl_generator_py/px4_msgs/msg/_vtol_vehicle_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vtol_vehicle_status_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_vtol_vehicle_status_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_vtol_vehicle_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_vtol_vehicle_status_s.c.s rosidl_generator_py/px4_msgs/msg/_wheel_encoders_s.o: rosidl_generator_py/px4_msgs/msg/_wheel_encoders_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_wheel_encoders_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_wheel_encoders_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_wheel_encoders_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_wheel_encoders_s.c.o rosidl_generator_py/px4_msgs/msg/_wheel_encoders_s.i: rosidl_generator_py/px4_msgs/msg/_wheel_encoders_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_wheel_encoders_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_wheel_encoders_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_wheel_encoders_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_wheel_encoders_s.c.i rosidl_generator_py/px4_msgs/msg/_wheel_encoders_s.s: rosidl_generator_py/px4_msgs/msg/_wheel_encoders_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_wheel_encoders_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_wheel_encoders_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_wheel_encoders_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_wheel_encoders_s.c.s rosidl_generator_py/px4_msgs/msg/_wind_s.o: rosidl_generator_py/px4_msgs/msg/_wind_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_wind_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_wind_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_wind_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_wind_s.c.o rosidl_generator_py/px4_msgs/msg/_wind_s.i: rosidl_generator_py/px4_msgs/msg/_wind_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_wind_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_wind_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_wind_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_wind_s.c.i rosidl_generator_py/px4_msgs/msg/_wind_s.s: rosidl_generator_py/px4_msgs/msg/_wind_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_wind_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_wind_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_wind_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_wind_s.c.s rosidl_generator_py/px4_msgs/msg/_yaw_estimator_status_s.o: rosidl_generator_py/px4_msgs/msg/_yaw_estimator_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_yaw_estimator_status_s.o # target to build an object file rosidl_generator_py/px4_msgs/msg/_yaw_estimator_status_s.c.o: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_yaw_estimator_status_s.c.o .PHONY : rosidl_generator_py/px4_msgs/msg/_yaw_estimator_status_s.c.o rosidl_generator_py/px4_msgs/msg/_yaw_estimator_status_s.i: rosidl_generator_py/px4_msgs/msg/_yaw_estimator_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_yaw_estimator_status_s.i # target to preprocess a source file rosidl_generator_py/px4_msgs/msg/_yaw_estimator_status_s.c.i: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_yaw_estimator_status_s.c.i .PHONY : rosidl_generator_py/px4_msgs/msg/_yaw_estimator_status_s.c.i rosidl_generator_py/px4_msgs/msg/_yaw_estimator_status_s.s: rosidl_generator_py/px4_msgs/msg/_yaw_estimator_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_yaw_estimator_status_s.s # target to generate assembly for a file rosidl_generator_py/px4_msgs/msg/_yaw_estimator_status_s.c.s: $(MAKE) -f CMakeFiles/px4_msgs__python.dir/build.make CMakeFiles/px4_msgs__python.dir/rosidl_generator_py/px4_msgs/msg/_yaw_estimator_status_s.c.s .PHONY : rosidl_generator_py/px4_msgs/msg/_yaw_estimator_status_s.c.s rosidl_typesupport_c/px4_msgs/msg/actuator_armed__type_support.o: rosidl_typesupport_c/px4_msgs/msg/actuator_armed__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_armed__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/actuator_armed__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_armed__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_armed__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/actuator_armed__type_support.i: rosidl_typesupport_c/px4_msgs/msg/actuator_armed__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_armed__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/actuator_armed__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_armed__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_armed__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/actuator_armed__type_support.s: rosidl_typesupport_c/px4_msgs/msg/actuator_armed__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_armed__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/actuator_armed__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_armed__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_armed__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/actuator_controls0__type_support.o: rosidl_typesupport_c/px4_msgs/msg/actuator_controls0__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls0__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/actuator_controls0__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_controls0__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls0__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/actuator_controls0__type_support.i: rosidl_typesupport_c/px4_msgs/msg/actuator_controls0__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls0__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/actuator_controls0__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_controls0__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls0__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/actuator_controls0__type_support.s: rosidl_typesupport_c/px4_msgs/msg/actuator_controls0__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls0__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/actuator_controls0__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_controls0__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls0__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/actuator_controls1__type_support.o: rosidl_typesupport_c/px4_msgs/msg/actuator_controls1__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls1__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/actuator_controls1__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_controls1__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls1__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/actuator_controls1__type_support.i: rosidl_typesupport_c/px4_msgs/msg/actuator_controls1__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls1__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/actuator_controls1__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_controls1__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls1__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/actuator_controls1__type_support.s: rosidl_typesupport_c/px4_msgs/msg/actuator_controls1__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls1__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/actuator_controls1__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_controls1__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls1__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/actuator_controls2__type_support.o: rosidl_typesupport_c/px4_msgs/msg/actuator_controls2__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls2__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/actuator_controls2__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_controls2__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls2__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/actuator_controls2__type_support.i: rosidl_typesupport_c/px4_msgs/msg/actuator_controls2__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls2__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/actuator_controls2__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_controls2__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls2__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/actuator_controls2__type_support.s: rosidl_typesupport_c/px4_msgs/msg/actuator_controls2__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls2__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/actuator_controls2__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_controls2__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls2__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/actuator_controls3__type_support.o: rosidl_typesupport_c/px4_msgs/msg/actuator_controls3__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls3__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/actuator_controls3__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_controls3__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls3__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/actuator_controls3__type_support.i: rosidl_typesupport_c/px4_msgs/msg/actuator_controls3__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls3__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/actuator_controls3__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_controls3__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls3__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/actuator_controls3__type_support.s: rosidl_typesupport_c/px4_msgs/msg/actuator_controls3__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls3__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/actuator_controls3__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_controls3__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls3__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/actuator_controls4__type_support.o: rosidl_typesupport_c/px4_msgs/msg/actuator_controls4__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls4__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/actuator_controls4__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_controls4__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls4__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/actuator_controls4__type_support.i: rosidl_typesupport_c/px4_msgs/msg/actuator_controls4__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls4__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/actuator_controls4__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_controls4__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls4__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/actuator_controls4__type_support.s: rosidl_typesupport_c/px4_msgs/msg/actuator_controls4__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls4__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/actuator_controls4__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_controls4__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls4__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/actuator_controls5__type_support.o: rosidl_typesupport_c/px4_msgs/msg/actuator_controls5__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls5__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/actuator_controls5__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_controls5__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls5__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/actuator_controls5__type_support.i: rosidl_typesupport_c/px4_msgs/msg/actuator_controls5__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls5__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/actuator_controls5__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_controls5__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls5__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/actuator_controls5__type_support.s: rosidl_typesupport_c/px4_msgs/msg/actuator_controls5__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls5__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/actuator_controls5__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_controls5__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls5__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/actuator_controls__type_support.o: rosidl_typesupport_c/px4_msgs/msg/actuator_controls__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/actuator_controls__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_controls__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/actuator_controls__type_support.i: rosidl_typesupport_c/px4_msgs/msg/actuator_controls__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/actuator_controls__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_controls__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/actuator_controls__type_support.s: rosidl_typesupport_c/px4_msgs/msg/actuator_controls__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/actuator_controls__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_controls__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.o: rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.i: rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.s: rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.o: rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.i: rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.s: rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/actuator_outputs__type_support.o: rosidl_typesupport_c/px4_msgs/msg/actuator_outputs__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_outputs__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/actuator_outputs__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_outputs__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_outputs__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/actuator_outputs__type_support.i: rosidl_typesupport_c/px4_msgs/msg/actuator_outputs__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_outputs__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/actuator_outputs__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_outputs__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_outputs__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/actuator_outputs__type_support.s: rosidl_typesupport_c/px4_msgs/msg/actuator_outputs__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_outputs__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/actuator_outputs__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/actuator_outputs__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/actuator_outputs__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/adc_report__type_support.o: rosidl_typesupport_c/px4_msgs/msg/adc_report__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/adc_report__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/adc_report__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/adc_report__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/adc_report__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/adc_report__type_support.i: rosidl_typesupport_c/px4_msgs/msg/adc_report__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/adc_report__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/adc_report__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/adc_report__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/adc_report__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/adc_report__type_support.s: rosidl_typesupport_c/px4_msgs/msg/adc_report__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/adc_report__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/adc_report__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/adc_report__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/adc_report__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/airspeed__type_support.o: rosidl_typesupport_c/px4_msgs/msg/airspeed__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/airspeed__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/airspeed__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/airspeed__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/airspeed__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/airspeed__type_support.i: rosidl_typesupport_c/px4_msgs/msg/airspeed__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/airspeed__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/airspeed__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/airspeed__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/airspeed__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/airspeed__type_support.s: rosidl_typesupport_c/px4_msgs/msg/airspeed__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/airspeed__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/airspeed__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/airspeed__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/airspeed__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/airspeed_validated__type_support.o: rosidl_typesupport_c/px4_msgs/msg/airspeed_validated__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/airspeed_validated__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/airspeed_validated__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/airspeed_validated__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/airspeed_validated__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/airspeed_validated__type_support.i: rosidl_typesupport_c/px4_msgs/msg/airspeed_validated__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/airspeed_validated__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/airspeed_validated__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/airspeed_validated__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/airspeed_validated__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/airspeed_validated__type_support.s: rosidl_typesupport_c/px4_msgs/msg/airspeed_validated__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/airspeed_validated__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/airspeed_validated__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/airspeed_validated__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/airspeed_validated__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/airspeed_wind__type_support.o: rosidl_typesupport_c/px4_msgs/msg/airspeed_wind__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/airspeed_wind__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/airspeed_wind__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/airspeed_wind__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/airspeed_wind__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/airspeed_wind__type_support.i: rosidl_typesupport_c/px4_msgs/msg/airspeed_wind__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/airspeed_wind__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/airspeed_wind__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/airspeed_wind__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/airspeed_wind__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/airspeed_wind__type_support.s: rosidl_typesupport_c/px4_msgs/msg/airspeed_wind__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/airspeed_wind__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/airspeed_wind__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/airspeed_wind__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/airspeed_wind__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/battery_status__type_support.o: rosidl_typesupport_c/px4_msgs/msg/battery_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/battery_status__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/battery_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/battery_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/battery_status__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/battery_status__type_support.i: rosidl_typesupport_c/px4_msgs/msg/battery_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/battery_status__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/battery_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/battery_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/battery_status__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/battery_status__type_support.s: rosidl_typesupport_c/px4_msgs/msg/battery_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/battery_status__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/battery_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/battery_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/battery_status__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/camera_capture__type_support.o: rosidl_typesupport_c/px4_msgs/msg/camera_capture__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/camera_capture__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/camera_capture__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/camera_capture__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/camera_capture__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/camera_capture__type_support.i: rosidl_typesupport_c/px4_msgs/msg/camera_capture__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/camera_capture__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/camera_capture__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/camera_capture__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/camera_capture__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/camera_capture__type_support.s: rosidl_typesupport_c/px4_msgs/msg/camera_capture__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/camera_capture__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/camera_capture__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/camera_capture__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/camera_capture__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/camera_trigger__type_support.o: rosidl_typesupport_c/px4_msgs/msg/camera_trigger__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/camera_trigger__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/camera_trigger__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/camera_trigger__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/camera_trigger__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/camera_trigger__type_support.i: rosidl_typesupport_c/px4_msgs/msg/camera_trigger__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/camera_trigger__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/camera_trigger__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/camera_trigger__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/camera_trigger__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/camera_trigger__type_support.s: rosidl_typesupport_c/px4_msgs/msg/camera_trigger__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/camera_trigger__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/camera_trigger__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/camera_trigger__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/camera_trigger__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/camera_trigger_secondary__type_support.o: rosidl_typesupport_c/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/camera_trigger_secondary__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/camera_trigger_secondary__type_support.i: rosidl_typesupport_c/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/camera_trigger_secondary__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/camera_trigger_secondary__type_support.s: rosidl_typesupport_c/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/camera_trigger_secondary__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/cellular_status__type_support.o: rosidl_typesupport_c/px4_msgs/msg/cellular_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/cellular_status__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/cellular_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/cellular_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/cellular_status__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/cellular_status__type_support.i: rosidl_typesupport_c/px4_msgs/msg/cellular_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/cellular_status__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/cellular_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/cellular_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/cellular_status__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/cellular_status__type_support.s: rosidl_typesupport_c/px4_msgs/msg/cellular_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/cellular_status__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/cellular_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/cellular_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/cellular_status__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/collision_constraints__type_support.o: rosidl_typesupport_c/px4_msgs/msg/collision_constraints__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/collision_constraints__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/collision_constraints__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/collision_constraints__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/collision_constraints__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/collision_constraints__type_support.i: rosidl_typesupport_c/px4_msgs/msg/collision_constraints__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/collision_constraints__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/collision_constraints__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/collision_constraints__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/collision_constraints__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/collision_constraints__type_support.s: rosidl_typesupport_c/px4_msgs/msg/collision_constraints__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/collision_constraints__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/collision_constraints__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/collision_constraints__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/collision_constraints__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/collision_report__type_support.o: rosidl_typesupport_c/px4_msgs/msg/collision_report__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/collision_report__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/collision_report__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/collision_report__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/collision_report__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/collision_report__type_support.i: rosidl_typesupport_c/px4_msgs/msg/collision_report__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/collision_report__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/collision_report__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/collision_report__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/collision_report__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/collision_report__type_support.s: rosidl_typesupport_c/px4_msgs/msg/collision_report__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/collision_report__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/collision_report__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/collision_report__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/collision_report__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/commander_state__type_support.o: rosidl_typesupport_c/px4_msgs/msg/commander_state__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/commander_state__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/commander_state__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/commander_state__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/commander_state__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/commander_state__type_support.i: rosidl_typesupport_c/px4_msgs/msg/commander_state__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/commander_state__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/commander_state__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/commander_state__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/commander_state__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/commander_state__type_support.s: rosidl_typesupport_c/px4_msgs/msg/commander_state__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/commander_state__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/commander_state__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/commander_state__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/commander_state__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/control_allocator_status__type_support.o: rosidl_typesupport_c/px4_msgs/msg/control_allocator_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/control_allocator_status__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/control_allocator_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/control_allocator_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/control_allocator_status__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/control_allocator_status__type_support.i: rosidl_typesupport_c/px4_msgs/msg/control_allocator_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/control_allocator_status__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/control_allocator_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/control_allocator_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/control_allocator_status__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/control_allocator_status__type_support.s: rosidl_typesupport_c/px4_msgs/msg/control_allocator_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/control_allocator_status__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/control_allocator_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/control_allocator_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/control_allocator_status__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/cpuload__type_support.o: rosidl_typesupport_c/px4_msgs/msg/cpuload__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/cpuload__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/cpuload__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/cpuload__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/cpuload__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/cpuload__type_support.i: rosidl_typesupport_c/px4_msgs/msg/cpuload__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/cpuload__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/cpuload__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/cpuload__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/cpuload__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/cpuload__type_support.s: rosidl_typesupport_c/px4_msgs/msg/cpuload__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/cpuload__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/cpuload__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/cpuload__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/cpuload__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/debug_array__type_support.o: rosidl_typesupport_c/px4_msgs/msg/debug_array__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/debug_array__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/debug_array__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/debug_array__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/debug_array__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/debug_array__type_support.i: rosidl_typesupport_c/px4_msgs/msg/debug_array__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/debug_array__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/debug_array__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/debug_array__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/debug_array__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/debug_array__type_support.s: rosidl_typesupport_c/px4_msgs/msg/debug_array__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/debug_array__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/debug_array__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/debug_array__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/debug_array__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/debug_key_value__type_support.o: rosidl_typesupport_c/px4_msgs/msg/debug_key_value__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/debug_key_value__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/debug_key_value__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/debug_key_value__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/debug_key_value__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/debug_key_value__type_support.i: rosidl_typesupport_c/px4_msgs/msg/debug_key_value__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/debug_key_value__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/debug_key_value__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/debug_key_value__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/debug_key_value__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/debug_key_value__type_support.s: rosidl_typesupport_c/px4_msgs/msg/debug_key_value__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/debug_key_value__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/debug_key_value__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/debug_key_value__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/debug_key_value__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/debug_value__type_support.o: rosidl_typesupport_c/px4_msgs/msg/debug_value__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/debug_value__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/debug_value__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/debug_value__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/debug_value__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/debug_value__type_support.i: rosidl_typesupport_c/px4_msgs/msg/debug_value__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/debug_value__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/debug_value__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/debug_value__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/debug_value__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/debug_value__type_support.s: rosidl_typesupport_c/px4_msgs/msg/debug_value__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/debug_value__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/debug_value__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/debug_value__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/debug_value__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/debug_vect__type_support.o: rosidl_typesupport_c/px4_msgs/msg/debug_vect__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/debug_vect__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/debug_vect__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/debug_vect__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/debug_vect__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/debug_vect__type_support.i: rosidl_typesupport_c/px4_msgs/msg/debug_vect__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/debug_vect__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/debug_vect__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/debug_vect__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/debug_vect__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/debug_vect__type_support.s: rosidl_typesupport_c/px4_msgs/msg/debug_vect__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/debug_vect__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/debug_vect__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/debug_vect__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/debug_vect__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/differential_pressure__type_support.o: rosidl_typesupport_c/px4_msgs/msg/differential_pressure__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/differential_pressure__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/differential_pressure__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/differential_pressure__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/differential_pressure__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/differential_pressure__type_support.i: rosidl_typesupport_c/px4_msgs/msg/differential_pressure__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/differential_pressure__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/differential_pressure__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/differential_pressure__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/differential_pressure__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/differential_pressure__type_support.s: rosidl_typesupport_c/px4_msgs/msg/differential_pressure__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/differential_pressure__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/differential_pressure__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/differential_pressure__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/differential_pressure__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/distance_sensor__type_support.o: rosidl_typesupport_c/px4_msgs/msg/distance_sensor__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/distance_sensor__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/distance_sensor__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/distance_sensor__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/distance_sensor__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/distance_sensor__type_support.i: rosidl_typesupport_c/px4_msgs/msg/distance_sensor__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/distance_sensor__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/distance_sensor__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/distance_sensor__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/distance_sensor__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/distance_sensor__type_support.s: rosidl_typesupport_c/px4_msgs/msg/distance_sensor__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/distance_sensor__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/distance_sensor__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/distance_sensor__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/distance_sensor__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/ekf2_timestamps__type_support.o: rosidl_typesupport_c/px4_msgs/msg/ekf2_timestamps__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/ekf2_timestamps__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/ekf2_timestamps__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/ekf2_timestamps__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/ekf2_timestamps__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/ekf2_timestamps__type_support.i: rosidl_typesupport_c/px4_msgs/msg/ekf2_timestamps__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/ekf2_timestamps__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/ekf2_timestamps__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/ekf2_timestamps__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/ekf2_timestamps__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/ekf2_timestamps__type_support.s: rosidl_typesupport_c/px4_msgs/msg/ekf2_timestamps__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/ekf2_timestamps__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/ekf2_timestamps__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/ekf2_timestamps__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/ekf2_timestamps__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/ekf_gps_drift__type_support.o: rosidl_typesupport_c/px4_msgs/msg/ekf_gps_drift__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/ekf_gps_drift__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/ekf_gps_drift__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/ekf_gps_drift__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/ekf_gps_drift__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/ekf_gps_drift__type_support.i: rosidl_typesupport_c/px4_msgs/msg/ekf_gps_drift__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/ekf_gps_drift__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/ekf_gps_drift__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/ekf_gps_drift__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/ekf_gps_drift__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/ekf_gps_drift__type_support.s: rosidl_typesupport_c/px4_msgs/msg/ekf_gps_drift__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/ekf_gps_drift__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/ekf_gps_drift__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/ekf_gps_drift__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/ekf_gps_drift__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/esc_report__type_support.o: rosidl_typesupport_c/px4_msgs/msg/esc_report__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/esc_report__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/esc_report__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/esc_report__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/esc_report__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/esc_report__type_support.i: rosidl_typesupport_c/px4_msgs/msg/esc_report__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/esc_report__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/esc_report__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/esc_report__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/esc_report__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/esc_report__type_support.s: rosidl_typesupport_c/px4_msgs/msg/esc_report__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/esc_report__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/esc_report__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/esc_report__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/esc_report__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/esc_status__type_support.o: rosidl_typesupport_c/px4_msgs/msg/esc_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/esc_status__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/esc_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/esc_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/esc_status__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/esc_status__type_support.i: rosidl_typesupport_c/px4_msgs/msg/esc_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/esc_status__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/esc_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/esc_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/esc_status__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/esc_status__type_support.s: rosidl_typesupport_c/px4_msgs/msg/esc_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/esc_status__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/esc_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/esc_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/esc_status__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/estimator_attitude__type_support.o: rosidl_typesupport_c/px4_msgs/msg/estimator_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_attitude__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/estimator_attitude__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_attitude__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/estimator_attitude__type_support.i: rosidl_typesupport_c/px4_msgs/msg/estimator_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_attitude__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/estimator_attitude__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_attitude__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/estimator_attitude__type_support.s: rosidl_typesupport_c/px4_msgs/msg/estimator_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_attitude__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/estimator_attitude__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_attitude__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/estimator_event_flags__type_support.o: rosidl_typesupport_c/px4_msgs/msg/estimator_event_flags__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_event_flags__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/estimator_event_flags__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_event_flags__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_event_flags__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/estimator_event_flags__type_support.i: rosidl_typesupport_c/px4_msgs/msg/estimator_event_flags__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_event_flags__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/estimator_event_flags__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_event_flags__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_event_flags__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/estimator_event_flags__type_support.s: rosidl_typesupport_c/px4_msgs/msg/estimator_event_flags__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_event_flags__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/estimator_event_flags__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_event_flags__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_event_flags__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/estimator_global_position__type_support.o: rosidl_typesupport_c/px4_msgs/msg/estimator_global_position__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_global_position__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/estimator_global_position__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_global_position__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_global_position__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/estimator_global_position__type_support.i: rosidl_typesupport_c/px4_msgs/msg/estimator_global_position__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_global_position__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/estimator_global_position__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_global_position__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_global_position__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/estimator_global_position__type_support.s: rosidl_typesupport_c/px4_msgs/msg/estimator_global_position__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_global_position__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/estimator_global_position__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_global_position__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_global_position__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.o: rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.i: rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.s: rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_variances__type_support.o: rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_variances__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_variances__type_support.i: rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_variances__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_variances__type_support.s: rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_variances__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/estimator_innovations__type_support.o: rosidl_typesupport_c/px4_msgs/msg/estimator_innovations__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_innovations__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/estimator_innovations__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_innovations__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_innovations__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/estimator_innovations__type_support.i: rosidl_typesupport_c/px4_msgs/msg/estimator_innovations__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_innovations__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/estimator_innovations__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_innovations__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_innovations__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/estimator_innovations__type_support.s: rosidl_typesupport_c/px4_msgs/msg/estimator_innovations__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_innovations__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/estimator_innovations__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_innovations__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_innovations__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/estimator_local_position__type_support.o: rosidl_typesupport_c/px4_msgs/msg/estimator_local_position__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_local_position__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/estimator_local_position__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_local_position__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_local_position__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/estimator_local_position__type_support.i: rosidl_typesupport_c/px4_msgs/msg/estimator_local_position__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_local_position__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/estimator_local_position__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_local_position__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_local_position__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/estimator_local_position__type_support.s: rosidl_typesupport_c/px4_msgs/msg/estimator_local_position__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_local_position__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/estimator_local_position__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_local_position__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_local_position__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/estimator_odometry__type_support.o: rosidl_typesupport_c/px4_msgs/msg/estimator_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_odometry__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/estimator_odometry__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_odometry__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/estimator_odometry__type_support.i: rosidl_typesupport_c/px4_msgs/msg/estimator_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_odometry__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/estimator_odometry__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_odometry__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/estimator_odometry__type_support.s: rosidl_typesupport_c/px4_msgs/msg/estimator_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_odometry__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/estimator_odometry__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_odometry__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.o: rosidl_typesupport_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.i: rosidl_typesupport_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.s: rosidl_typesupport_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/estimator_selector_status__type_support.o: rosidl_typesupport_c/px4_msgs/msg/estimator_selector_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_selector_status__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/estimator_selector_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_selector_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_selector_status__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/estimator_selector_status__type_support.i: rosidl_typesupport_c/px4_msgs/msg/estimator_selector_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_selector_status__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/estimator_selector_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_selector_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_selector_status__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/estimator_selector_status__type_support.s: rosidl_typesupport_c/px4_msgs/msg/estimator_selector_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_selector_status__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/estimator_selector_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_selector_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_selector_status__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/estimator_sensor_bias__type_support.o: rosidl_typesupport_c/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_sensor_bias__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/estimator_sensor_bias__type_support.i: rosidl_typesupport_c/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_sensor_bias__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/estimator_sensor_bias__type_support.s: rosidl_typesupport_c/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_sensor_bias__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/estimator_states__type_support.o: rosidl_typesupport_c/px4_msgs/msg/estimator_states__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_states__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/estimator_states__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_states__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_states__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/estimator_states__type_support.i: rosidl_typesupport_c/px4_msgs/msg/estimator_states__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_states__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/estimator_states__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_states__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_states__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/estimator_states__type_support.s: rosidl_typesupport_c/px4_msgs/msg/estimator_states__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_states__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/estimator_states__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_states__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_states__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/estimator_status__type_support.o: rosidl_typesupport_c/px4_msgs/msg/estimator_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_status__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/estimator_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_status__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/estimator_status__type_support.i: rosidl_typesupport_c/px4_msgs/msg/estimator_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_status__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/estimator_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_status__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/estimator_status__type_support.s: rosidl_typesupport_c/px4_msgs/msg/estimator_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_status__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/estimator_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_status__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/estimator_status_flags__type_support.o: rosidl_typesupport_c/px4_msgs/msg/estimator_status_flags__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_status_flags__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/estimator_status_flags__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_status_flags__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_status_flags__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/estimator_status_flags__type_support.i: rosidl_typesupport_c/px4_msgs/msg/estimator_status_flags__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_status_flags__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/estimator_status_flags__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_status_flags__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_status_flags__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/estimator_status_flags__type_support.s: rosidl_typesupport_c/px4_msgs/msg/estimator_status_flags__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_status_flags__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/estimator_status_flags__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_status_flags__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_status_flags__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.o: rosidl_typesupport_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.i: rosidl_typesupport_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.s: rosidl_typesupport_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/estimator_wind__type_support.o: rosidl_typesupport_c/px4_msgs/msg/estimator_wind__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_wind__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/estimator_wind__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_wind__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_wind__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/estimator_wind__type_support.i: rosidl_typesupport_c/px4_msgs/msg/estimator_wind__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_wind__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/estimator_wind__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_wind__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_wind__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/estimator_wind__type_support.s: rosidl_typesupport_c/px4_msgs/msg/estimator_wind__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_wind__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/estimator_wind__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/estimator_wind__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/estimator_wind__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/follow_target__type_support.o: rosidl_typesupport_c/px4_msgs/msg/follow_target__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/follow_target__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/follow_target__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/follow_target__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/follow_target__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/follow_target__type_support.i: rosidl_typesupport_c/px4_msgs/msg/follow_target__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/follow_target__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/follow_target__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/follow_target__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/follow_target__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/follow_target__type_support.s: rosidl_typesupport_c/px4_msgs/msg/follow_target__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/follow_target__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/follow_target__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/follow_target__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/follow_target__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.o: rosidl_typesupport_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.i: rosidl_typesupport_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.s: rosidl_typesupport_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/generator_status__type_support.o: rosidl_typesupport_c/px4_msgs/msg/generator_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/generator_status__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/generator_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/generator_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/generator_status__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/generator_status__type_support.i: rosidl_typesupport_c/px4_msgs/msg/generator_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/generator_status__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/generator_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/generator_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/generator_status__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/generator_status__type_support.s: rosidl_typesupport_c/px4_msgs/msg/generator_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/generator_status__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/generator_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/generator_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/generator_status__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/geofence_result__type_support.o: rosidl_typesupport_c/px4_msgs/msg/geofence_result__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/geofence_result__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/geofence_result__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/geofence_result__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/geofence_result__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/geofence_result__type_support.i: rosidl_typesupport_c/px4_msgs/msg/geofence_result__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/geofence_result__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/geofence_result__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/geofence_result__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/geofence_result__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/geofence_result__type_support.s: rosidl_typesupport_c/px4_msgs/msg/geofence_result__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/geofence_result__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/geofence_result__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/geofence_result__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/geofence_result__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.o: rosidl_typesupport_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.i: rosidl_typesupport_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.s: rosidl_typesupport_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/gimbal_device_information__type_support.o: rosidl_typesupport_c/px4_msgs/msg/gimbal_device_information__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_device_information__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/gimbal_device_information__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/gimbal_device_information__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_device_information__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/gimbal_device_information__type_support.i: rosidl_typesupport_c/px4_msgs/msg/gimbal_device_information__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_device_information__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/gimbal_device_information__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/gimbal_device_information__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_device_information__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/gimbal_device_information__type_support.s: rosidl_typesupport_c/px4_msgs/msg/gimbal_device_information__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_device_information__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/gimbal_device_information__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/gimbal_device_information__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_device_information__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.o: rosidl_typesupport_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.i: rosidl_typesupport_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.s: rosidl_typesupport_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_information__type_support.o: rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_information__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_information__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_information__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_information__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_information__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_information__type_support.i: rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_information__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_information__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_information__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_information__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_information__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_information__type_support.s: rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_information__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_information__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_information__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_information__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_information__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.o: rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.i: rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.s: rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.o: rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.i: rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.s: rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_status__type_support.o: rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_status__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_status__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_status__type_support.i: rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_status__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_status__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_status__type_support.s: rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_status__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_status__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/gps_dump__type_support.o: rosidl_typesupport_c/px4_msgs/msg/gps_dump__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/gps_dump__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/gps_dump__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/gps_dump__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/gps_dump__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/gps_dump__type_support.i: rosidl_typesupport_c/px4_msgs/msg/gps_dump__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/gps_dump__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/gps_dump__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/gps_dump__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/gps_dump__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/gps_dump__type_support.s: rosidl_typesupport_c/px4_msgs/msg/gps_dump__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/gps_dump__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/gps_dump__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/gps_dump__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/gps_dump__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/gps_inject_data__type_support.o: rosidl_typesupport_c/px4_msgs/msg/gps_inject_data__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/gps_inject_data__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/gps_inject_data__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/gps_inject_data__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/gps_inject_data__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/gps_inject_data__type_support.i: rosidl_typesupport_c/px4_msgs/msg/gps_inject_data__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/gps_inject_data__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/gps_inject_data__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/gps_inject_data__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/gps_inject_data__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/gps_inject_data__type_support.s: rosidl_typesupport_c/px4_msgs/msg/gps_inject_data__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/gps_inject_data__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/gps_inject_data__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/gps_inject_data__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/gps_inject_data__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/heater_status__type_support.o: rosidl_typesupport_c/px4_msgs/msg/heater_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/heater_status__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/heater_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/heater_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/heater_status__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/heater_status__type_support.i: rosidl_typesupport_c/px4_msgs/msg/heater_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/heater_status__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/heater_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/heater_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/heater_status__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/heater_status__type_support.s: rosidl_typesupport_c/px4_msgs/msg/heater_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/heater_status__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/heater_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/heater_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/heater_status__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/home_position__type_support.o: rosidl_typesupport_c/px4_msgs/msg/home_position__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/home_position__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/home_position__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/home_position__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/home_position__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/home_position__type_support.i: rosidl_typesupport_c/px4_msgs/msg/home_position__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/home_position__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/home_position__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/home_position__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/home_position__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/home_position__type_support.s: rosidl_typesupport_c/px4_msgs/msg/home_position__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/home_position__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/home_position__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/home_position__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/home_position__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/hover_thrust_estimate__type_support.o: rosidl_typesupport_c/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/hover_thrust_estimate__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/hover_thrust_estimate__type_support.i: rosidl_typesupport_c/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/hover_thrust_estimate__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/hover_thrust_estimate__type_support.s: rosidl_typesupport_c/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/hover_thrust_estimate__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/input_rc__type_support.o: rosidl_typesupport_c/px4_msgs/msg/input_rc__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/input_rc__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/input_rc__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/input_rc__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/input_rc__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/input_rc__type_support.i: rosidl_typesupport_c/px4_msgs/msg/input_rc__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/input_rc__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/input_rc__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/input_rc__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/input_rc__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/input_rc__type_support.s: rosidl_typesupport_c/px4_msgs/msg/input_rc__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/input_rc__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/input_rc__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/input_rc__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/input_rc__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/iridiumsbd_status__type_support.o: rosidl_typesupport_c/px4_msgs/msg/iridiumsbd_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/iridiumsbd_status__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/iridiumsbd_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/iridiumsbd_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/iridiumsbd_status__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/iridiumsbd_status__type_support.i: rosidl_typesupport_c/px4_msgs/msg/iridiumsbd_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/iridiumsbd_status__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/iridiumsbd_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/iridiumsbd_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/iridiumsbd_status__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/iridiumsbd_status__type_support.s: rosidl_typesupport_c/px4_msgs/msg/iridiumsbd_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/iridiumsbd_status__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/iridiumsbd_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/iridiumsbd_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/iridiumsbd_status__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/irlock_report__type_support.o: rosidl_typesupport_c/px4_msgs/msg/irlock_report__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/irlock_report__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/irlock_report__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/irlock_report__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/irlock_report__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/irlock_report__type_support.i: rosidl_typesupport_c/px4_msgs/msg/irlock_report__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/irlock_report__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/irlock_report__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/irlock_report__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/irlock_report__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/irlock_report__type_support.s: rosidl_typesupport_c/px4_msgs/msg/irlock_report__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/irlock_report__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/irlock_report__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/irlock_report__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/irlock_report__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/landing_gear__type_support.o: rosidl_typesupport_c/px4_msgs/msg/landing_gear__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/landing_gear__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/landing_gear__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/landing_gear__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/landing_gear__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/landing_gear__type_support.i: rosidl_typesupport_c/px4_msgs/msg/landing_gear__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/landing_gear__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/landing_gear__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/landing_gear__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/landing_gear__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/landing_gear__type_support.s: rosidl_typesupport_c/px4_msgs/msg/landing_gear__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/landing_gear__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/landing_gear__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/landing_gear__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/landing_gear__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/landing_target_innovations__type_support.o: rosidl_typesupport_c/px4_msgs/msg/landing_target_innovations__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/landing_target_innovations__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/landing_target_innovations__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/landing_target_innovations__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/landing_target_innovations__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/landing_target_innovations__type_support.i: rosidl_typesupport_c/px4_msgs/msg/landing_target_innovations__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/landing_target_innovations__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/landing_target_innovations__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/landing_target_innovations__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/landing_target_innovations__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/landing_target_innovations__type_support.s: rosidl_typesupport_c/px4_msgs/msg/landing_target_innovations__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/landing_target_innovations__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/landing_target_innovations__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/landing_target_innovations__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/landing_target_innovations__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/landing_target_pose__type_support.o: rosidl_typesupport_c/px4_msgs/msg/landing_target_pose__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/landing_target_pose__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/landing_target_pose__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/landing_target_pose__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/landing_target_pose__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/landing_target_pose__type_support.i: rosidl_typesupport_c/px4_msgs/msg/landing_target_pose__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/landing_target_pose__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/landing_target_pose__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/landing_target_pose__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/landing_target_pose__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/landing_target_pose__type_support.s: rosidl_typesupport_c/px4_msgs/msg/landing_target_pose__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/landing_target_pose__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/landing_target_pose__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/landing_target_pose__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/landing_target_pose__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/led_control__type_support.o: rosidl_typesupport_c/px4_msgs/msg/led_control__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/led_control__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/led_control__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/led_control__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/led_control__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/led_control__type_support.i: rosidl_typesupport_c/px4_msgs/msg/led_control__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/led_control__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/led_control__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/led_control__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/led_control__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/led_control__type_support.s: rosidl_typesupport_c/px4_msgs/msg/led_control__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/led_control__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/led_control__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/led_control__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/led_control__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/log_message__type_support.o: rosidl_typesupport_c/px4_msgs/msg/log_message__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/log_message__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/log_message__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/log_message__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/log_message__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/log_message__type_support.i: rosidl_typesupport_c/px4_msgs/msg/log_message__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/log_message__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/log_message__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/log_message__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/log_message__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/log_message__type_support.s: rosidl_typesupport_c/px4_msgs/msg/log_message__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/log_message__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/log_message__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/log_message__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/log_message__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/logger_status__type_support.o: rosidl_typesupport_c/px4_msgs/msg/logger_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/logger_status__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/logger_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/logger_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/logger_status__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/logger_status__type_support.i: rosidl_typesupport_c/px4_msgs/msg/logger_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/logger_status__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/logger_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/logger_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/logger_status__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/logger_status__type_support.s: rosidl_typesupport_c/px4_msgs/msg/logger_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/logger_status__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/logger_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/logger_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/logger_status__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/mag_worker_data__type_support.o: rosidl_typesupport_c/px4_msgs/msg/mag_worker_data__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/mag_worker_data__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/mag_worker_data__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/mag_worker_data__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/mag_worker_data__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/mag_worker_data__type_support.i: rosidl_typesupport_c/px4_msgs/msg/mag_worker_data__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/mag_worker_data__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/mag_worker_data__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/mag_worker_data__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/mag_worker_data__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/mag_worker_data__type_support.s: rosidl_typesupport_c/px4_msgs/msg/mag_worker_data__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/mag_worker_data__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/mag_worker_data__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/mag_worker_data__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/mag_worker_data__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/manual_control_setpoint__type_support.o: rosidl_typesupport_c/px4_msgs/msg/manual_control_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/manual_control_setpoint__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/manual_control_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/manual_control_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/manual_control_setpoint__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/manual_control_setpoint__type_support.i: rosidl_typesupport_c/px4_msgs/msg/manual_control_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/manual_control_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/manual_control_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/manual_control_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/manual_control_setpoint__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/manual_control_setpoint__type_support.s: rosidl_typesupport_c/px4_msgs/msg/manual_control_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/manual_control_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/manual_control_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/manual_control_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/manual_control_setpoint__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/manual_control_switches__type_support.o: rosidl_typesupport_c/px4_msgs/msg/manual_control_switches__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/manual_control_switches__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/manual_control_switches__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/manual_control_switches__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/manual_control_switches__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/manual_control_switches__type_support.i: rosidl_typesupport_c/px4_msgs/msg/manual_control_switches__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/manual_control_switches__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/manual_control_switches__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/manual_control_switches__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/manual_control_switches__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/manual_control_switches__type_support.s: rosidl_typesupport_c/px4_msgs/msg/manual_control_switches__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/manual_control_switches__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/manual_control_switches__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/manual_control_switches__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/manual_control_switches__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/mavlink_log__type_support.o: rosidl_typesupport_c/px4_msgs/msg/mavlink_log__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/mavlink_log__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/mavlink_log__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/mavlink_log__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/mavlink_log__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/mavlink_log__type_support.i: rosidl_typesupport_c/px4_msgs/msg/mavlink_log__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/mavlink_log__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/mavlink_log__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/mavlink_log__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/mavlink_log__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/mavlink_log__type_support.s: rosidl_typesupport_c/px4_msgs/msg/mavlink_log__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/mavlink_log__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/mavlink_log__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/mavlink_log__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/mavlink_log__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.o: rosidl_typesupport_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.i: rosidl_typesupport_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.s: rosidl_typesupport_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/mission__type_support.o: rosidl_typesupport_c/px4_msgs/msg/mission__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/mission__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/mission__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/mission__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/mission__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/mission__type_support.i: rosidl_typesupport_c/px4_msgs/msg/mission__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/mission__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/mission__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/mission__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/mission__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/mission__type_support.s: rosidl_typesupport_c/px4_msgs/msg/mission__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/mission__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/mission__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/mission__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/mission__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/mission_result__type_support.o: rosidl_typesupport_c/px4_msgs/msg/mission_result__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/mission_result__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/mission_result__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/mission_result__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/mission_result__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/mission_result__type_support.i: rosidl_typesupport_c/px4_msgs/msg/mission_result__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/mission_result__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/mission_result__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/mission_result__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/mission_result__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/mission_result__type_support.s: rosidl_typesupport_c/px4_msgs/msg/mission_result__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/mission_result__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/mission_result__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/mission_result__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/mission_result__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/mount_orientation__type_support.o: rosidl_typesupport_c/px4_msgs/msg/mount_orientation__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/mount_orientation__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/mount_orientation__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/mount_orientation__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/mount_orientation__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/mount_orientation__type_support.i: rosidl_typesupport_c/px4_msgs/msg/mount_orientation__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/mount_orientation__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/mount_orientation__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/mount_orientation__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/mount_orientation__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/mount_orientation__type_support.s: rosidl_typesupport_c/px4_msgs/msg/mount_orientation__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/mount_orientation__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/mount_orientation__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/mount_orientation__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/mount_orientation__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/multirotor_motor_limits__type_support.o: rosidl_typesupport_c/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/multirotor_motor_limits__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/multirotor_motor_limits__type_support.i: rosidl_typesupport_c/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/multirotor_motor_limits__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/multirotor_motor_limits__type_support.s: rosidl_typesupport_c/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/multirotor_motor_limits__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/navigator_mission_item__type_support.o: rosidl_typesupport_c/px4_msgs/msg/navigator_mission_item__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/navigator_mission_item__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/navigator_mission_item__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/navigator_mission_item__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/navigator_mission_item__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/navigator_mission_item__type_support.i: rosidl_typesupport_c/px4_msgs/msg/navigator_mission_item__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/navigator_mission_item__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/navigator_mission_item__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/navigator_mission_item__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/navigator_mission_item__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/navigator_mission_item__type_support.s: rosidl_typesupport_c/px4_msgs/msg/navigator_mission_item__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/navigator_mission_item__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/navigator_mission_item__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/navigator_mission_item__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/navigator_mission_item__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/obstacle_distance__type_support.o: rosidl_typesupport_c/px4_msgs/msg/obstacle_distance__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/obstacle_distance__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/obstacle_distance__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/obstacle_distance__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/obstacle_distance__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/obstacle_distance__type_support.i: rosidl_typesupport_c/px4_msgs/msg/obstacle_distance__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/obstacle_distance__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/obstacle_distance__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/obstacle_distance__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/obstacle_distance__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/obstacle_distance__type_support.s: rosidl_typesupport_c/px4_msgs/msg/obstacle_distance__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/obstacle_distance__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/obstacle_distance__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/obstacle_distance__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/obstacle_distance__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/obstacle_distance_fused__type_support.o: rosidl_typesupport_c/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/obstacle_distance_fused__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/obstacle_distance_fused__type_support.i: rosidl_typesupport_c/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/obstacle_distance_fused__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/obstacle_distance_fused__type_support.s: rosidl_typesupport_c/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/obstacle_distance_fused__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/offboard_control_mode__type_support.o: rosidl_typesupport_c/px4_msgs/msg/offboard_control_mode__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/offboard_control_mode__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/offboard_control_mode__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/offboard_control_mode__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/offboard_control_mode__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/offboard_control_mode__type_support.i: rosidl_typesupport_c/px4_msgs/msg/offboard_control_mode__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/offboard_control_mode__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/offboard_control_mode__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/offboard_control_mode__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/offboard_control_mode__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/offboard_control_mode__type_support.s: rosidl_typesupport_c/px4_msgs/msg/offboard_control_mode__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/offboard_control_mode__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/offboard_control_mode__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/offboard_control_mode__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/offboard_control_mode__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/onboard_computer_status__type_support.o: rosidl_typesupport_c/px4_msgs/msg/onboard_computer_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/onboard_computer_status__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/onboard_computer_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/onboard_computer_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/onboard_computer_status__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/onboard_computer_status__type_support.i: rosidl_typesupport_c/px4_msgs/msg/onboard_computer_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/onboard_computer_status__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/onboard_computer_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/onboard_computer_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/onboard_computer_status__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/onboard_computer_status__type_support.s: rosidl_typesupport_c/px4_msgs/msg/onboard_computer_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/onboard_computer_status__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/onboard_computer_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/onboard_computer_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/onboard_computer_status__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/optical_flow__type_support.o: rosidl_typesupport_c/px4_msgs/msg/optical_flow__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/optical_flow__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/optical_flow__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/optical_flow__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/optical_flow__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/optical_flow__type_support.i: rosidl_typesupport_c/px4_msgs/msg/optical_flow__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/optical_flow__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/optical_flow__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/optical_flow__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/optical_flow__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/optical_flow__type_support.s: rosidl_typesupport_c/px4_msgs/msg/optical_flow__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/optical_flow__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/optical_flow__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/optical_flow__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/optical_flow__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/orb_multitest__type_support.o: rosidl_typesupport_c/px4_msgs/msg/orb_multitest__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_multitest__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/orb_multitest__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/orb_multitest__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_multitest__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/orb_multitest__type_support.i: rosidl_typesupport_c/px4_msgs/msg/orb_multitest__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_multitest__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/orb_multitest__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/orb_multitest__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_multitest__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/orb_multitest__type_support.s: rosidl_typesupport_c/px4_msgs/msg/orb_multitest__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_multitest__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/orb_multitest__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/orb_multitest__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_multitest__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/orb_test__type_support.o: rosidl_typesupport_c/px4_msgs/msg/orb_test__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/orb_test__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/orb_test__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/orb_test__type_support.i: rosidl_typesupport_c/px4_msgs/msg/orb_test__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/orb_test__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/orb_test__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/orb_test__type_support.s: rosidl_typesupport_c/px4_msgs/msg/orb_test__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/orb_test__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/orb_test__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/orb_test_large__type_support.o: rosidl_typesupport_c/px4_msgs/msg/orb_test_large__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_large__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/orb_test_large__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/orb_test_large__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_large__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/orb_test_large__type_support.i: rosidl_typesupport_c/px4_msgs/msg/orb_test_large__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_large__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/orb_test_large__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/orb_test_large__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_large__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/orb_test_large__type_support.s: rosidl_typesupport_c/px4_msgs/msg/orb_test_large__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_large__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/orb_test_large__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/orb_test_large__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_large__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/orb_test_medium__type_support.o: rosidl_typesupport_c/px4_msgs/msg/orb_test_medium__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/orb_test_medium__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/orb_test_medium__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/orb_test_medium__type_support.i: rosidl_typesupport_c/px4_msgs/msg/orb_test_medium__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/orb_test_medium__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/orb_test_medium__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/orb_test_medium__type_support.s: rosidl_typesupport_c/px4_msgs/msg/orb_test_medium__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/orb_test_medium__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/orb_test_medium__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_multi__type_support.o: rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_multi__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_multi__type_support.i: rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_multi__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_multi__type_support.s: rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_multi__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue__type_support.o: rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue__type_support.i: rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue__type_support.s: rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.o: rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.i: rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.s: rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.o: rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.i: rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.s: rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/orbit_status__type_support.o: rosidl_typesupport_c/px4_msgs/msg/orbit_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/orbit_status__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/orbit_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/orbit_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/orbit_status__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/orbit_status__type_support.i: rosidl_typesupport_c/px4_msgs/msg/orbit_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/orbit_status__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/orbit_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/orbit_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/orbit_status__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/orbit_status__type_support.s: rosidl_typesupport_c/px4_msgs/msg/orbit_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/orbit_status__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/orbit_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/orbit_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/orbit_status__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/parameter_update__type_support.o: rosidl_typesupport_c/px4_msgs/msg/parameter_update__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/parameter_update__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/parameter_update__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/parameter_update__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/parameter_update__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/parameter_update__type_support.i: rosidl_typesupport_c/px4_msgs/msg/parameter_update__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/parameter_update__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/parameter_update__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/parameter_update__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/parameter_update__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/parameter_update__type_support.s: rosidl_typesupport_c/px4_msgs/msg/parameter_update__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/parameter_update__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/parameter_update__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/parameter_update__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/parameter_update__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/ping__type_support.o: rosidl_typesupport_c/px4_msgs/msg/ping__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/ping__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/ping__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/ping__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/ping__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/ping__type_support.i: rosidl_typesupport_c/px4_msgs/msg/ping__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/ping__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/ping__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/ping__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/ping__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/ping__type_support.s: rosidl_typesupport_c/px4_msgs/msg/ping__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/ping__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/ping__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/ping__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/ping__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/position_controller_landing_status__type_support.o: rosidl_typesupport_c/px4_msgs/msg/position_controller_landing_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/position_controller_landing_status__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/position_controller_landing_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/position_controller_landing_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/position_controller_landing_status__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/position_controller_landing_status__type_support.i: rosidl_typesupport_c/px4_msgs/msg/position_controller_landing_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/position_controller_landing_status__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/position_controller_landing_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/position_controller_landing_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/position_controller_landing_status__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/position_controller_landing_status__type_support.s: rosidl_typesupport_c/px4_msgs/msg/position_controller_landing_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/position_controller_landing_status__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/position_controller_landing_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/position_controller_landing_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/position_controller_landing_status__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/position_controller_status__type_support.o: rosidl_typesupport_c/px4_msgs/msg/position_controller_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/position_controller_status__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/position_controller_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/position_controller_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/position_controller_status__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/position_controller_status__type_support.i: rosidl_typesupport_c/px4_msgs/msg/position_controller_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/position_controller_status__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/position_controller_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/position_controller_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/position_controller_status__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/position_controller_status__type_support.s: rosidl_typesupport_c/px4_msgs/msg/position_controller_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/position_controller_status__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/position_controller_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/position_controller_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/position_controller_status__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/position_setpoint__type_support.o: rosidl_typesupport_c/px4_msgs/msg/position_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/position_setpoint__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/position_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/position_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/position_setpoint__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/position_setpoint__type_support.i: rosidl_typesupport_c/px4_msgs/msg/position_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/position_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/position_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/position_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/position_setpoint__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/position_setpoint__type_support.s: rosidl_typesupport_c/px4_msgs/msg/position_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/position_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/position_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/position_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/position_setpoint__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/position_setpoint_triplet__type_support.o: rosidl_typesupport_c/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/position_setpoint_triplet__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/position_setpoint_triplet__type_support.i: rosidl_typesupport_c/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/position_setpoint_triplet__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/position_setpoint_triplet__type_support.s: rosidl_typesupport_c/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/position_setpoint_triplet__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/power_button_state__type_support.o: rosidl_typesupport_c/px4_msgs/msg/power_button_state__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/power_button_state__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/power_button_state__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/power_button_state__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/power_button_state__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/power_button_state__type_support.i: rosidl_typesupport_c/px4_msgs/msg/power_button_state__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/power_button_state__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/power_button_state__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/power_button_state__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/power_button_state__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/power_button_state__type_support.s: rosidl_typesupport_c/px4_msgs/msg/power_button_state__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/power_button_state__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/power_button_state__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/power_button_state__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/power_button_state__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/power_monitor__type_support.o: rosidl_typesupport_c/px4_msgs/msg/power_monitor__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/power_monitor__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/power_monitor__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/power_monitor__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/power_monitor__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/power_monitor__type_support.i: rosidl_typesupport_c/px4_msgs/msg/power_monitor__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/power_monitor__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/power_monitor__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/power_monitor__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/power_monitor__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/power_monitor__type_support.s: rosidl_typesupport_c/px4_msgs/msg/power_monitor__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/power_monitor__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/power_monitor__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/power_monitor__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/power_monitor__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/pwm_input__type_support.o: rosidl_typesupport_c/px4_msgs/msg/pwm_input__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/pwm_input__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/pwm_input__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/pwm_input__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/pwm_input__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/pwm_input__type_support.i: rosidl_typesupport_c/px4_msgs/msg/pwm_input__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/pwm_input__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/pwm_input__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/pwm_input__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/pwm_input__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/pwm_input__type_support.s: rosidl_typesupport_c/px4_msgs/msg/pwm_input__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/pwm_input__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/pwm_input__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/pwm_input__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/pwm_input__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/px4_io_status__type_support.o: rosidl_typesupport_c/px4_msgs/msg/px4_io_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/px4_io_status__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/px4_io_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/px4_io_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/px4_io_status__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/px4_io_status__type_support.i: rosidl_typesupport_c/px4_msgs/msg/px4_io_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/px4_io_status__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/px4_io_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/px4_io_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/px4_io_status__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/px4_io_status__type_support.s: rosidl_typesupport_c/px4_msgs/msg/px4_io_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/px4_io_status__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/px4_io_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/px4_io_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/px4_io_status__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/qshell_req__type_support.o: rosidl_typesupport_c/px4_msgs/msg/qshell_req__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/qshell_req__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/qshell_req__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/qshell_req__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/qshell_req__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/qshell_req__type_support.i: rosidl_typesupport_c/px4_msgs/msg/qshell_req__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/qshell_req__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/qshell_req__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/qshell_req__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/qshell_req__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/qshell_req__type_support.s: rosidl_typesupport_c/px4_msgs/msg/qshell_req__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/qshell_req__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/qshell_req__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/qshell_req__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/qshell_req__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/qshell_retval__type_support.o: rosidl_typesupport_c/px4_msgs/msg/qshell_retval__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/qshell_retval__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/qshell_retval__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/qshell_retval__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/qshell_retval__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/qshell_retval__type_support.i: rosidl_typesupport_c/px4_msgs/msg/qshell_retval__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/qshell_retval__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/qshell_retval__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/qshell_retval__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/qshell_retval__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/qshell_retval__type_support.s: rosidl_typesupport_c/px4_msgs/msg/qshell_retval__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/qshell_retval__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/qshell_retval__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/qshell_retval__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/qshell_retval__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/radio_status__type_support.o: rosidl_typesupport_c/px4_msgs/msg/radio_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/radio_status__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/radio_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/radio_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/radio_status__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/radio_status__type_support.i: rosidl_typesupport_c/px4_msgs/msg/radio_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/radio_status__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/radio_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/radio_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/radio_status__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/radio_status__type_support.s: rosidl_typesupport_c/px4_msgs/msg/radio_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/radio_status__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/radio_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/radio_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/radio_status__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/rate_ctrl_status__type_support.o: rosidl_typesupport_c/px4_msgs/msg/rate_ctrl_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/rate_ctrl_status__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/rate_ctrl_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/rate_ctrl_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/rate_ctrl_status__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/rate_ctrl_status__type_support.i: rosidl_typesupport_c/px4_msgs/msg/rate_ctrl_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/rate_ctrl_status__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/rate_ctrl_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/rate_ctrl_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/rate_ctrl_status__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/rate_ctrl_status__type_support.s: rosidl_typesupport_c/px4_msgs/msg/rate_ctrl_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/rate_ctrl_status__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/rate_ctrl_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/rate_ctrl_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/rate_ctrl_status__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/rc_channels__type_support.o: rosidl_typesupport_c/px4_msgs/msg/rc_channels__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/rc_channels__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/rc_channels__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/rc_channels__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/rc_channels__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/rc_channels__type_support.i: rosidl_typesupport_c/px4_msgs/msg/rc_channels__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/rc_channels__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/rc_channels__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/rc_channels__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/rc_channels__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/rc_channels__type_support.s: rosidl_typesupport_c/px4_msgs/msg/rc_channels__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/rc_channels__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/rc_channels__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/rc_channels__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/rc_channels__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/rc_parameter_map__type_support.o: rosidl_typesupport_c/px4_msgs/msg/rc_parameter_map__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/rc_parameter_map__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/rc_parameter_map__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/rc_parameter_map__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/rc_parameter_map__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/rc_parameter_map__type_support.i: rosidl_typesupport_c/px4_msgs/msg/rc_parameter_map__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/rc_parameter_map__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/rc_parameter_map__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/rc_parameter_map__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/rc_parameter_map__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/rc_parameter_map__type_support.s: rosidl_typesupport_c/px4_msgs/msg/rc_parameter_map__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/rc_parameter_map__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/rc_parameter_map__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/rc_parameter_map__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/rc_parameter_map__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/rpm__type_support.o: rosidl_typesupport_c/px4_msgs/msg/rpm__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/rpm__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/rpm__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/rpm__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/rpm__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/rpm__type_support.i: rosidl_typesupport_c/px4_msgs/msg/rpm__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/rpm__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/rpm__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/rpm__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/rpm__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/rpm__type_support.s: rosidl_typesupport_c/px4_msgs/msg/rpm__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/rpm__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/rpm__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/rpm__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/rpm__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/rtl_flight_time__type_support.o: rosidl_typesupport_c/px4_msgs/msg/rtl_flight_time__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/rtl_flight_time__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/rtl_flight_time__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/rtl_flight_time__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/rtl_flight_time__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/rtl_flight_time__type_support.i: rosidl_typesupport_c/px4_msgs/msg/rtl_flight_time__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/rtl_flight_time__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/rtl_flight_time__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/rtl_flight_time__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/rtl_flight_time__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/rtl_flight_time__type_support.s: rosidl_typesupport_c/px4_msgs/msg/rtl_flight_time__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/rtl_flight_time__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/rtl_flight_time__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/rtl_flight_time__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/rtl_flight_time__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/safety__type_support.o: rosidl_typesupport_c/px4_msgs/msg/safety__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/safety__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/safety__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/safety__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/safety__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/safety__type_support.i: rosidl_typesupport_c/px4_msgs/msg/safety__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/safety__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/safety__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/safety__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/safety__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/safety__type_support.s: rosidl_typesupport_c/px4_msgs/msg/safety__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/safety__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/safety__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/safety__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/safety__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/satellite_info__type_support.o: rosidl_typesupport_c/px4_msgs/msg/satellite_info__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/satellite_info__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/satellite_info__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/satellite_info__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/satellite_info__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/satellite_info__type_support.i: rosidl_typesupport_c/px4_msgs/msg/satellite_info__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/satellite_info__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/satellite_info__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/satellite_info__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/satellite_info__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/satellite_info__type_support.s: rosidl_typesupport_c/px4_msgs/msg/satellite_info__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/satellite_info__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/satellite_info__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/satellite_info__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/satellite_info__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/sensor_accel__type_support.o: rosidl_typesupport_c/px4_msgs/msg/sensor_accel__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_accel__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/sensor_accel__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_accel__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_accel__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/sensor_accel__type_support.i: rosidl_typesupport_c/px4_msgs/msg/sensor_accel__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_accel__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/sensor_accel__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_accel__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_accel__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/sensor_accel__type_support.s: rosidl_typesupport_c/px4_msgs/msg/sensor_accel__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_accel__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/sensor_accel__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_accel__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_accel__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/sensor_accel_fifo__type_support.o: rosidl_typesupport_c/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_accel_fifo__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/sensor_accel_fifo__type_support.i: rosidl_typesupport_c/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_accel_fifo__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/sensor_accel_fifo__type_support.s: rosidl_typesupport_c/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_accel_fifo__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/sensor_baro__type_support.o: rosidl_typesupport_c/px4_msgs/msg/sensor_baro__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_baro__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/sensor_baro__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_baro__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_baro__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/sensor_baro__type_support.i: rosidl_typesupport_c/px4_msgs/msg/sensor_baro__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_baro__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/sensor_baro__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_baro__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_baro__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/sensor_baro__type_support.s: rosidl_typesupport_c/px4_msgs/msg/sensor_baro__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_baro__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/sensor_baro__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_baro__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_baro__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/sensor_combined__type_support.o: rosidl_typesupport_c/px4_msgs/msg/sensor_combined__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_combined__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/sensor_combined__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_combined__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_combined__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/sensor_combined__type_support.i: rosidl_typesupport_c/px4_msgs/msg/sensor_combined__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_combined__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/sensor_combined__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_combined__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_combined__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/sensor_combined__type_support.s: rosidl_typesupport_c/px4_msgs/msg/sensor_combined__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_combined__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/sensor_combined__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_combined__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_combined__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/sensor_correction__type_support.o: rosidl_typesupport_c/px4_msgs/msg/sensor_correction__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_correction__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/sensor_correction__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_correction__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_correction__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/sensor_correction__type_support.i: rosidl_typesupport_c/px4_msgs/msg/sensor_correction__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_correction__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/sensor_correction__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_correction__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_correction__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/sensor_correction__type_support.s: rosidl_typesupport_c/px4_msgs/msg/sensor_correction__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_correction__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/sensor_correction__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_correction__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_correction__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/sensor_gps__type_support.o: rosidl_typesupport_c/px4_msgs/msg/sensor_gps__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_gps__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/sensor_gps__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_gps__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_gps__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/sensor_gps__type_support.i: rosidl_typesupport_c/px4_msgs/msg/sensor_gps__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_gps__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/sensor_gps__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_gps__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_gps__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/sensor_gps__type_support.s: rosidl_typesupport_c/px4_msgs/msg/sensor_gps__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_gps__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/sensor_gps__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_gps__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_gps__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/sensor_gyro__type_support.o: rosidl_typesupport_c/px4_msgs/msg/sensor_gyro__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_gyro__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/sensor_gyro__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_gyro__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_gyro__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/sensor_gyro__type_support.i: rosidl_typesupport_c/px4_msgs/msg/sensor_gyro__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_gyro__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/sensor_gyro__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_gyro__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_gyro__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/sensor_gyro__type_support.s: rosidl_typesupport_c/px4_msgs/msg/sensor_gyro__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_gyro__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/sensor_gyro__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_gyro__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_gyro__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fft__type_support.o: rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fft__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fft__type_support.i: rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fft__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fft__type_support.s: rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fft__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fifo__type_support.o: rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fifo__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fifo__type_support.i: rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fifo__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fifo__type_support.s: rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fifo__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/sensor_mag__type_support.o: rosidl_typesupport_c/px4_msgs/msg/sensor_mag__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_mag__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/sensor_mag__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_mag__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_mag__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/sensor_mag__type_support.i: rosidl_typesupport_c/px4_msgs/msg/sensor_mag__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_mag__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/sensor_mag__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_mag__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_mag__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/sensor_mag__type_support.s: rosidl_typesupport_c/px4_msgs/msg/sensor_mag__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_mag__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/sensor_mag__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_mag__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_mag__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/sensor_preflight_mag__type_support.o: rosidl_typesupport_c/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_preflight_mag__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/sensor_preflight_mag__type_support.i: rosidl_typesupport_c/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_preflight_mag__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/sensor_preflight_mag__type_support.s: rosidl_typesupport_c/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_preflight_mag__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/sensor_selection__type_support.o: rosidl_typesupport_c/px4_msgs/msg/sensor_selection__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_selection__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/sensor_selection__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_selection__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_selection__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/sensor_selection__type_support.i: rosidl_typesupport_c/px4_msgs/msg/sensor_selection__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_selection__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/sensor_selection__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_selection__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_selection__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/sensor_selection__type_support.s: rosidl_typesupport_c/px4_msgs/msg/sensor_selection__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_selection__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/sensor_selection__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensor_selection__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensor_selection__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/sensors_status_imu__type_support.o: rosidl_typesupport_c/px4_msgs/msg/sensors_status_imu__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensors_status_imu__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/sensors_status_imu__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensors_status_imu__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensors_status_imu__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/sensors_status_imu__type_support.i: rosidl_typesupport_c/px4_msgs/msg/sensors_status_imu__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensors_status_imu__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/sensors_status_imu__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensors_status_imu__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensors_status_imu__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/sensors_status_imu__type_support.s: rosidl_typesupport_c/px4_msgs/msg/sensors_status_imu__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensors_status_imu__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/sensors_status_imu__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/sensors_status_imu__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/sensors_status_imu__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/system_power__type_support.o: rosidl_typesupport_c/px4_msgs/msg/system_power__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/system_power__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/system_power__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/system_power__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/system_power__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/system_power__type_support.i: rosidl_typesupport_c/px4_msgs/msg/system_power__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/system_power__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/system_power__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/system_power__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/system_power__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/system_power__type_support.s: rosidl_typesupport_c/px4_msgs/msg/system_power__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/system_power__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/system_power__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/system_power__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/system_power__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/takeoff_status__type_support.o: rosidl_typesupport_c/px4_msgs/msg/takeoff_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/takeoff_status__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/takeoff_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/takeoff_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/takeoff_status__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/takeoff_status__type_support.i: rosidl_typesupport_c/px4_msgs/msg/takeoff_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/takeoff_status__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/takeoff_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/takeoff_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/takeoff_status__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/takeoff_status__type_support.s: rosidl_typesupport_c/px4_msgs/msg/takeoff_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/takeoff_status__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/takeoff_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/takeoff_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/takeoff_status__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/task_stack_info__type_support.o: rosidl_typesupport_c/px4_msgs/msg/task_stack_info__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/task_stack_info__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/task_stack_info__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/task_stack_info__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/task_stack_info__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/task_stack_info__type_support.i: rosidl_typesupport_c/px4_msgs/msg/task_stack_info__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/task_stack_info__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/task_stack_info__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/task_stack_info__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/task_stack_info__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/task_stack_info__type_support.s: rosidl_typesupport_c/px4_msgs/msg/task_stack_info__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/task_stack_info__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/task_stack_info__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/task_stack_info__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/task_stack_info__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/tecs_status__type_support.o: rosidl_typesupport_c/px4_msgs/msg/tecs_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/tecs_status__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/tecs_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/tecs_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/tecs_status__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/tecs_status__type_support.i: rosidl_typesupport_c/px4_msgs/msg/tecs_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/tecs_status__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/tecs_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/tecs_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/tecs_status__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/tecs_status__type_support.s: rosidl_typesupport_c/px4_msgs/msg/tecs_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/tecs_status__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/tecs_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/tecs_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/tecs_status__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/telemetry_status__type_support.o: rosidl_typesupport_c/px4_msgs/msg/telemetry_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/telemetry_status__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/telemetry_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/telemetry_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/telemetry_status__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/telemetry_status__type_support.i: rosidl_typesupport_c/px4_msgs/msg/telemetry_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/telemetry_status__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/telemetry_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/telemetry_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/telemetry_status__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/telemetry_status__type_support.s: rosidl_typesupport_c/px4_msgs/msg/telemetry_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/telemetry_status__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/telemetry_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/telemetry_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/telemetry_status__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/test_motor__type_support.o: rosidl_typesupport_c/px4_msgs/msg/test_motor__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/test_motor__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/test_motor__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/test_motor__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/test_motor__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/test_motor__type_support.i: rosidl_typesupport_c/px4_msgs/msg/test_motor__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/test_motor__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/test_motor__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/test_motor__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/test_motor__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/test_motor__type_support.s: rosidl_typesupport_c/px4_msgs/msg/test_motor__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/test_motor__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/test_motor__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/test_motor__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/test_motor__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/timesync__type_support.o: rosidl_typesupport_c/px4_msgs/msg/timesync__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/timesync__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/timesync__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/timesync__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/timesync__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/timesync__type_support.i: rosidl_typesupport_c/px4_msgs/msg/timesync__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/timesync__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/timesync__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/timesync__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/timesync__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/timesync__type_support.s: rosidl_typesupport_c/px4_msgs/msg/timesync__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/timesync__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/timesync__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/timesync__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/timesync__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/timesync_status__type_support.o: rosidl_typesupport_c/px4_msgs/msg/timesync_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/timesync_status__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/timesync_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/timesync_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/timesync_status__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/timesync_status__type_support.i: rosidl_typesupport_c/px4_msgs/msg/timesync_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/timesync_status__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/timesync_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/timesync_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/timesync_status__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/timesync_status__type_support.s: rosidl_typesupport_c/px4_msgs/msg/timesync_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/timesync_status__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/timesync_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/timesync_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/timesync_status__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/trajectory_bezier__type_support.o: rosidl_typesupport_c/px4_msgs/msg/trajectory_bezier__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/trajectory_bezier__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/trajectory_bezier__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/trajectory_bezier__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/trajectory_bezier__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/trajectory_bezier__type_support.i: rosidl_typesupport_c/px4_msgs/msg/trajectory_bezier__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/trajectory_bezier__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/trajectory_bezier__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/trajectory_bezier__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/trajectory_bezier__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/trajectory_bezier__type_support.s: rosidl_typesupport_c/px4_msgs/msg/trajectory_bezier__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/trajectory_bezier__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/trajectory_bezier__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/trajectory_bezier__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/trajectory_bezier__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/trajectory_setpoint__type_support.o: rosidl_typesupport_c/px4_msgs/msg/trajectory_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/trajectory_setpoint__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/trajectory_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/trajectory_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/trajectory_setpoint__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/trajectory_setpoint__type_support.i: rosidl_typesupport_c/px4_msgs/msg/trajectory_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/trajectory_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/trajectory_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/trajectory_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/trajectory_setpoint__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/trajectory_setpoint__type_support.s: rosidl_typesupport_c/px4_msgs/msg/trajectory_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/trajectory_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/trajectory_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/trajectory_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/trajectory_setpoint__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/trajectory_waypoint__type_support.o: rosidl_typesupport_c/px4_msgs/msg/trajectory_waypoint__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/trajectory_waypoint__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/trajectory_waypoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/trajectory_waypoint__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/trajectory_waypoint__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/trajectory_waypoint__type_support.i: rosidl_typesupport_c/px4_msgs/msg/trajectory_waypoint__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/trajectory_waypoint__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/trajectory_waypoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/trajectory_waypoint__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/trajectory_waypoint__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/trajectory_waypoint__type_support.s: rosidl_typesupport_c/px4_msgs/msg/trajectory_waypoint__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/trajectory_waypoint__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/trajectory_waypoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/trajectory_waypoint__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/trajectory_waypoint__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/transponder_report__type_support.o: rosidl_typesupport_c/px4_msgs/msg/transponder_report__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/transponder_report__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/transponder_report__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/transponder_report__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/transponder_report__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/transponder_report__type_support.i: rosidl_typesupport_c/px4_msgs/msg/transponder_report__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/transponder_report__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/transponder_report__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/transponder_report__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/transponder_report__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/transponder_report__type_support.s: rosidl_typesupport_c/px4_msgs/msg/transponder_report__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/transponder_report__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/transponder_report__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/transponder_report__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/transponder_report__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/tune_control__type_support.o: rosidl_typesupport_c/px4_msgs/msg/tune_control__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/tune_control__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/tune_control__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/tune_control__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/tune_control__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/tune_control__type_support.i: rosidl_typesupport_c/px4_msgs/msg/tune_control__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/tune_control__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/tune_control__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/tune_control__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/tune_control__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/tune_control__type_support.s: rosidl_typesupport_c/px4_msgs/msg/tune_control__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/tune_control__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/tune_control__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/tune_control__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/tune_control__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_request__type_support.o: rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_request__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_request__type_support.i: rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_request__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_request__type_support.s: rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_request__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_value__type_support.o: rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_value__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_value__type_support.i: rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_value__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_value__type_support.s: rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_value__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/ulog_stream__type_support.o: rosidl_typesupport_c/px4_msgs/msg/ulog_stream__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/ulog_stream__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/ulog_stream__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/ulog_stream__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/ulog_stream__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/ulog_stream__type_support.i: rosidl_typesupport_c/px4_msgs/msg/ulog_stream__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/ulog_stream__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/ulog_stream__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/ulog_stream__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/ulog_stream__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/ulog_stream__type_support.s: rosidl_typesupport_c/px4_msgs/msg/ulog_stream__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/ulog_stream__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/ulog_stream__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/ulog_stream__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/ulog_stream__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/ulog_stream_ack__type_support.o: rosidl_typesupport_c/px4_msgs/msg/ulog_stream_ack__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/ulog_stream_ack__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/ulog_stream_ack__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/ulog_stream_ack__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/ulog_stream_ack__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/ulog_stream_ack__type_support.i: rosidl_typesupport_c/px4_msgs/msg/ulog_stream_ack__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/ulog_stream_ack__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/ulog_stream_ack__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/ulog_stream_ack__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/ulog_stream_ack__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/ulog_stream_ack__type_support.s: rosidl_typesupport_c/px4_msgs/msg/ulog_stream_ack__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/ulog_stream_ack__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/ulog_stream_ack__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/ulog_stream_ack__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/ulog_stream_ack__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_acceleration__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_acceleration__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_acceleration__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_acceleration__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_acceleration__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_acceleration__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_acceleration__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_acceleration__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_acceleration__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_acceleration__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_acceleration__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_acceleration__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_acceleration__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_acceleration__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_acceleration__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_acceleration__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_acceleration__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_acceleration__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_air_data__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_air_data__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_air_data__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_air_data__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_air_data__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_air_data__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_air_data__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_air_data__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_air_data__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_air_data__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_air_data__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_air_data__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_air_data__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_air_data__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_air_data__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_air_data__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_air_data__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_air_data__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_command__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_command__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_command__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_command__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_command__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_command__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_command__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_command__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_command__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_command__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_command__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_command__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_command__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_command__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_command__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_command__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_command__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_command__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_command_ack__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_command_ack__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_command_ack__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_command_ack__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_command_ack__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_command_ack__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_command_ack__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_command_ack__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_command_ack__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_command_ack__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_command_ack__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_command_ack__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_command_ack__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_command_ack__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_command_ack__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_command_ack__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_command_ack__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_command_ack__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_constraints__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_constraints__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_constraints__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_constraints__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_constraints__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_constraints__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_constraints__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_constraints__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_constraints__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_constraints__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_constraints__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_constraints__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_constraints__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_constraints__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_constraints__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_constraints__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_constraints__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_constraints__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_control_mode__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_control_mode__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_control_mode__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_control_mode__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_control_mode__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_control_mode__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_control_mode__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_control_mode__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_control_mode__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_control_mode__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_control_mode__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_control_mode__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_control_mode__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_control_mode__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_control_mode__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_control_mode__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_control_mode__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_control_mode__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_gps_position__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_gps_position__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_gps_position__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_gps_position__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_gps_position__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_gps_position__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_gps_position__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_gps_position__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_gps_position__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_gps_position__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_gps_position__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_gps_position__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_gps_position__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_gps_position__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_gps_position__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_gps_position__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_gps_position__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_gps_position__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_imu__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_imu__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_imu__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_imu__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_imu__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_imu__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_imu__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_imu__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_imu__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_imu__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_imu__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_imu__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_imu__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_imu__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_imu__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_imu__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_imu__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_imu__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_imu_status__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_imu_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_imu_status__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_imu_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_imu_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_imu_status__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_imu_status__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_imu_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_imu_status__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_imu_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_imu_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_imu_status__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_imu_status__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_imu_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_imu_status__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_imu_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_imu_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_imu_status__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_land_detected__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_land_detected__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_land_detected__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_land_detected__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_land_detected__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_land_detected__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_land_detected__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_land_detected__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_land_detected__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_land_detected__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_land_detected__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_land_detected__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_land_detected__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_land_detected__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_land_detected__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_land_detected__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_land_detected__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_land_detected__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_magnetometer__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_magnetometer__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_magnetometer__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_magnetometer__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_magnetometer__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_magnetometer__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_odometry__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_odometry__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_odometry__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_odometry__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_odometry__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_odometry__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_odometry__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_odometry__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_odometry__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_odometry__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_odometry__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_odometry__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_roi__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_roi__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_roi__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_roi__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_roi__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_roi__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_roi__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_roi__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_roi__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_roi__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_roi__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_roi__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_roi__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_roi__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_roi__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_roi__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_roi__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_roi__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_status__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_status__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_status__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_status__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_status__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_status__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_status__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_status__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_status__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_status_flags__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_status_flags__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_status_flags__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_status_flags__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_status_flags__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_status_flags__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_status_flags__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_status_flags__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_status_flags__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_status_flags__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_status_flags__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_status_flags__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_status_flags__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_status_flags__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_status_flags__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_status_flags__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_status_flags__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_status_flags__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_vision_attitude__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_vision_attitude__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_vision_attitude__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_vision_attitude__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_vision_attitude__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_vision_attitude__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vehicle_visual_odometry__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_visual_odometry__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vehicle_visual_odometry__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_visual_odometry__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vehicle_visual_odometry__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_visual_odometry__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/vtol_vehicle_status__type_support.o: rosidl_typesupport_c/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vtol_vehicle_status__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/vtol_vehicle_status__type_support.i: rosidl_typesupport_c/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vtol_vehicle_status__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/vtol_vehicle_status__type_support.s: rosidl_typesupport_c/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vtol_vehicle_status__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/wheel_encoders__type_support.o: rosidl_typesupport_c/px4_msgs/msg/wheel_encoders__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/wheel_encoders__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/wheel_encoders__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/wheel_encoders__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/wheel_encoders__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/wheel_encoders__type_support.i: rosidl_typesupport_c/px4_msgs/msg/wheel_encoders__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/wheel_encoders__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/wheel_encoders__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/wheel_encoders__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/wheel_encoders__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/wheel_encoders__type_support.s: rosidl_typesupport_c/px4_msgs/msg/wheel_encoders__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/wheel_encoders__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/wheel_encoders__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/wheel_encoders__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/wheel_encoders__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/wind__type_support.o: rosidl_typesupport_c/px4_msgs/msg/wind__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/wind__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/wind__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/wind__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/wind__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/wind__type_support.i: rosidl_typesupport_c/px4_msgs/msg/wind__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/wind__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/wind__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/wind__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/wind__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/wind__type_support.s: rosidl_typesupport_c/px4_msgs/msg/wind__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/wind__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/wind__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/wind__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/wind__type_support.cpp.s rosidl_typesupport_c/px4_msgs/msg/yaw_estimator_status__type_support.o: rosidl_typesupport_c/px4_msgs/msg/yaw_estimator_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/yaw_estimator_status__type_support.o # target to build an object file rosidl_typesupport_c/px4_msgs/msg/yaw_estimator_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/yaw_estimator_status__type_support.cpp.o .PHONY : rosidl_typesupport_c/px4_msgs/msg/yaw_estimator_status__type_support.cpp.o rosidl_typesupport_c/px4_msgs/msg/yaw_estimator_status__type_support.i: rosidl_typesupport_c/px4_msgs/msg/yaw_estimator_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/yaw_estimator_status__type_support.i # target to preprocess a source file rosidl_typesupport_c/px4_msgs/msg/yaw_estimator_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/yaw_estimator_status__type_support.cpp.i .PHONY : rosidl_typesupport_c/px4_msgs/msg/yaw_estimator_status__type_support.cpp.i rosidl_typesupport_c/px4_msgs/msg/yaw_estimator_status__type_support.s: rosidl_typesupport_c/px4_msgs/msg/yaw_estimator_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/yaw_estimator_status__type_support.s # target to generate assembly for a file rosidl_typesupport_c/px4_msgs/msg/yaw_estimator_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/rosidl_typesupport_c/px4_msgs/msg/yaw_estimator_status__type_support.cpp.s .PHONY : rosidl_typesupport_c/px4_msgs/msg/yaw_estimator_status__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/actuator_armed__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/actuator_armed__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_armed__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/actuator_armed__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_armed__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_armed__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/actuator_armed__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/actuator_armed__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_armed__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/actuator_armed__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_armed__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_armed__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/actuator_armed__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/actuator_armed__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_armed__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/actuator_armed__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_armed__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_armed__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls0__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls0__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls0__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls0__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls0__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls0__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls0__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls0__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls0__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls0__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls0__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls0__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls0__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls0__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls0__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls0__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls0__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls0__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls1__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls1__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls1__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls1__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls1__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls1__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls1__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls1__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls1__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls1__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls1__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls1__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls1__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls1__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls1__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls1__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls1__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls1__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls2__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls2__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls2__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls2__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls2__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls2__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls2__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls2__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls2__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls2__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls2__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls2__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls2__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls2__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls2__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls2__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls2__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls2__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls3__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls3__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls3__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls3__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls3__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls3__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls3__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls3__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls3__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls3__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls3__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls3__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls3__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls3__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls3__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls3__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls3__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls3__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls4__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls4__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls4__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls4__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls4__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls4__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls4__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls4__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls4__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls4__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls4__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls4__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls4__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls4__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls4__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls4__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls4__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls4__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls5__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls5__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls5__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls5__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls5__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls5__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls5__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls5__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls5__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls5__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls5__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls5__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls5__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls5__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls5__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls5__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls5__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls5__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/actuator_outputs__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/actuator_outputs__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_outputs__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/actuator_outputs__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_outputs__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_outputs__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/actuator_outputs__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/actuator_outputs__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_outputs__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/actuator_outputs__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_outputs__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_outputs__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/actuator_outputs__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/actuator_outputs__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_outputs__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/actuator_outputs__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/actuator_outputs__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/actuator_outputs__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/adc_report__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/adc_report__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/adc_report__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/adc_report__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/adc_report__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/adc_report__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/adc_report__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/adc_report__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/adc_report__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/adc_report__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/adc_report__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/adc_report__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/adc_report__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/adc_report__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/adc_report__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/adc_report__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/adc_report__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/adc_report__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/airspeed__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/airspeed__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/airspeed__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/airspeed__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/airspeed__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/airspeed__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/airspeed__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/airspeed__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/airspeed__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/airspeed__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/airspeed__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/airspeed__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/airspeed__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/airspeed__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/airspeed__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/airspeed__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/airspeed__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/airspeed__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/airspeed_validated__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/airspeed_validated__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/airspeed_validated__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/airspeed_validated__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/airspeed_validated__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/airspeed_validated__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/airspeed_validated__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/airspeed_validated__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/airspeed_validated__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/airspeed_validated__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/airspeed_validated__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/airspeed_validated__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/airspeed_validated__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/airspeed_validated__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/airspeed_validated__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/airspeed_validated__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/airspeed_validated__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/airspeed_validated__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/airspeed_wind__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/airspeed_wind__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/airspeed_wind__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/airspeed_wind__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/airspeed_wind__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/airspeed_wind__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/airspeed_wind__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/airspeed_wind__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/airspeed_wind__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/airspeed_wind__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/airspeed_wind__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/airspeed_wind__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/airspeed_wind__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/airspeed_wind__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/airspeed_wind__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/airspeed_wind__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/airspeed_wind__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/airspeed_wind__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/battery_status__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/battery_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/battery_status__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/battery_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/battery_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/battery_status__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/battery_status__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/battery_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/battery_status__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/battery_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/battery_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/battery_status__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/battery_status__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/battery_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/battery_status__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/battery_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/battery_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/battery_status__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/camera_capture__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/camera_capture__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/camera_capture__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/camera_capture__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/camera_capture__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/camera_capture__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/camera_capture__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/camera_capture__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/camera_capture__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/camera_capture__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/camera_capture__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/camera_capture__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/camera_capture__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/camera_capture__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/camera_capture__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/camera_capture__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/camera_capture__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/camera_capture__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/cellular_status__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/cellular_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/cellular_status__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/cellular_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/cellular_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/cellular_status__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/cellular_status__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/cellular_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/cellular_status__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/cellular_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/cellular_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/cellular_status__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/cellular_status__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/cellular_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/cellular_status__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/cellular_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/cellular_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/cellular_status__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/collision_constraints__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/collision_constraints__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/collision_constraints__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/collision_constraints__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/collision_constraints__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/collision_constraints__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/collision_constraints__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/collision_constraints__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/collision_constraints__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/collision_constraints__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/collision_constraints__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/collision_constraints__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/collision_constraints__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/collision_constraints__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/collision_constraints__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/collision_constraints__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/collision_constraints__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/collision_constraints__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/collision_report__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/collision_report__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/collision_report__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/collision_report__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/collision_report__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/collision_report__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/collision_report__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/collision_report__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/collision_report__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/collision_report__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/collision_report__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/collision_report__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/collision_report__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/collision_report__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/collision_report__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/collision_report__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/collision_report__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/collision_report__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/commander_state__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/commander_state__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/commander_state__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/commander_state__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/commander_state__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/commander_state__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/commander_state__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/commander_state__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/commander_state__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/commander_state__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/commander_state__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/commander_state__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/commander_state__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/commander_state__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/commander_state__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/commander_state__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/commander_state__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/commander_state__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/control_allocator_status__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/control_allocator_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/control_allocator_status__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/control_allocator_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/control_allocator_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/control_allocator_status__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/control_allocator_status__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/control_allocator_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/control_allocator_status__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/control_allocator_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/control_allocator_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/control_allocator_status__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/control_allocator_status__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/control_allocator_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/control_allocator_status__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/control_allocator_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/control_allocator_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/control_allocator_status__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/cpuload__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/cpuload__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/cpuload__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/cpuload__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/cpuload__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/cpuload__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/cpuload__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/cpuload__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/cpuload__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/cpuload__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/cpuload__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/cpuload__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/cpuload__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/cpuload__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/cpuload__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/cpuload__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/cpuload__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/cpuload__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/debug_array__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/debug_array__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/debug_array__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/debug_array__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/debug_array__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/debug_array__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/debug_array__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/debug_array__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/debug_array__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/debug_array__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/debug_array__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/debug_array__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/debug_array__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/debug_array__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/debug_array__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/debug_array__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/debug_array__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/debug_array__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/debug_key_value__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/debug_key_value__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/debug_key_value__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/debug_key_value__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/debug_key_value__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/debug_key_value__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/debug_key_value__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/debug_key_value__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/debug_key_value__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/debug_key_value__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/debug_key_value__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/debug_key_value__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/debug_key_value__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/debug_key_value__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/debug_key_value__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/debug_key_value__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/debug_key_value__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/debug_key_value__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/debug_value__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/debug_value__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/debug_value__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/debug_value__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/debug_value__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/debug_value__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/debug_value__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/debug_value__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/debug_value__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/debug_value__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/debug_value__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/debug_value__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/debug_value__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/debug_value__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/debug_value__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/debug_value__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/debug_value__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/debug_value__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/debug_vect__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/debug_vect__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/debug_vect__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/debug_vect__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/debug_vect__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/debug_vect__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/debug_vect__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/debug_vect__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/debug_vect__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/debug_vect__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/debug_vect__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/debug_vect__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/debug_vect__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/debug_vect__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/debug_vect__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/debug_vect__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/debug_vect__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/debug_vect__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/differential_pressure__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/differential_pressure__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/differential_pressure__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/differential_pressure__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/differential_pressure__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/differential_pressure__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/differential_pressure__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/differential_pressure__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/differential_pressure__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/differential_pressure__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/differential_pressure__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/differential_pressure__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/differential_pressure__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/differential_pressure__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/differential_pressure__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/differential_pressure__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/differential_pressure__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/differential_pressure__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/distance_sensor__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/distance_sensor__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/distance_sensor__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/distance_sensor__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/distance_sensor__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/distance_sensor__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/distance_sensor__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/distance_sensor__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/distance_sensor__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/distance_sensor__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/distance_sensor__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/distance_sensor__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/distance_sensor__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/distance_sensor__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/distance_sensor__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/distance_sensor__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/distance_sensor__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/distance_sensor__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/ekf2_timestamps__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/ekf2_timestamps__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ekf2_timestamps__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/ekf2_timestamps__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/ekf2_timestamps__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ekf2_timestamps__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/ekf2_timestamps__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/ekf2_timestamps__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ekf2_timestamps__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/ekf2_timestamps__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/ekf2_timestamps__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ekf2_timestamps__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/ekf2_timestamps__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/ekf2_timestamps__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ekf2_timestamps__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/ekf2_timestamps__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/ekf2_timestamps__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ekf2_timestamps__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/ekf_gps_drift__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/ekf_gps_drift__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ekf_gps_drift__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/ekf_gps_drift__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/ekf_gps_drift__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ekf_gps_drift__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/ekf_gps_drift__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/ekf_gps_drift__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ekf_gps_drift__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/ekf_gps_drift__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/ekf_gps_drift__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ekf_gps_drift__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/ekf_gps_drift__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/ekf_gps_drift__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ekf_gps_drift__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/ekf_gps_drift__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/ekf_gps_drift__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ekf_gps_drift__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/esc_report__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/esc_report__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/esc_report__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/esc_report__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/esc_report__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/esc_report__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/esc_report__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/esc_report__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/esc_report__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/esc_report__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/esc_report__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/esc_report__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/esc_report__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/esc_report__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/esc_report__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/esc_report__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/esc_report__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/esc_report__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/esc_status__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/esc_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/esc_status__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/esc_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/esc_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/esc_status__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/esc_status__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/esc_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/esc_status__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/esc_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/esc_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/esc_status__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/esc_status__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/esc_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/esc_status__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/esc_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/esc_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/esc_status__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/estimator_attitude__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/estimator_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_attitude__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/estimator_attitude__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_attitude__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/estimator_attitude__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/estimator_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_attitude__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/estimator_attitude__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_attitude__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/estimator_attitude__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/estimator_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_attitude__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/estimator_attitude__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_attitude__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/estimator_event_flags__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/estimator_event_flags__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_event_flags__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/estimator_event_flags__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_event_flags__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_event_flags__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/estimator_event_flags__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/estimator_event_flags__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_event_flags__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/estimator_event_flags__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_event_flags__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_event_flags__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/estimator_event_flags__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/estimator_event_flags__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_event_flags__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/estimator_event_flags__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_event_flags__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_event_flags__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/estimator_global_position__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/estimator_global_position__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_global_position__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/estimator_global_position__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_global_position__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_global_position__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/estimator_global_position__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/estimator_global_position__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_global_position__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/estimator_global_position__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_global_position__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_global_position__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/estimator_global_position__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/estimator_global_position__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_global_position__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/estimator_global_position__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_global_position__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_global_position__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovations__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovations__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovations__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovations__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovations__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovations__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovations__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovations__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovations__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovations__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovations__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovations__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovations__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovations__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovations__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovations__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovations__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovations__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/estimator_local_position__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/estimator_local_position__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_local_position__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/estimator_local_position__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_local_position__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_local_position__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/estimator_local_position__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/estimator_local_position__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_local_position__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/estimator_local_position__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_local_position__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_local_position__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/estimator_local_position__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/estimator_local_position__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_local_position__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/estimator_local_position__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_local_position__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_local_position__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/estimator_odometry__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/estimator_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_odometry__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/estimator_odometry__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_odometry__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/estimator_odometry__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/estimator_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_odometry__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/estimator_odometry__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_odometry__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/estimator_odometry__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/estimator_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_odometry__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/estimator_odometry__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_odometry__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/estimator_selector_status__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/estimator_selector_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_selector_status__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/estimator_selector_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_selector_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_selector_status__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/estimator_selector_status__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/estimator_selector_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_selector_status__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/estimator_selector_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_selector_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_selector_status__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/estimator_selector_status__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/estimator_selector_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_selector_status__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/estimator_selector_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_selector_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_selector_status__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/estimator_states__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/estimator_states__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_states__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/estimator_states__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_states__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_states__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/estimator_states__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/estimator_states__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_states__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/estimator_states__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_states__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_states__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/estimator_states__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/estimator_states__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_states__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/estimator_states__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_states__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_states__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/estimator_status__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/estimator_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_status__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/estimator_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_status__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/estimator_status__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/estimator_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_status__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/estimator_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_status__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/estimator_status__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/estimator_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_status__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/estimator_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_status__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/estimator_status_flags__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/estimator_status_flags__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_status_flags__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/estimator_status_flags__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_status_flags__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_status_flags__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/estimator_status_flags__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/estimator_status_flags__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_status_flags__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/estimator_status_flags__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_status_flags__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_status_flags__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/estimator_status_flags__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/estimator_status_flags__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_status_flags__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/estimator_status_flags__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_status_flags__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_status_flags__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/estimator_wind__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/estimator_wind__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_wind__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/estimator_wind__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_wind__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_wind__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/estimator_wind__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/estimator_wind__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_wind__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/estimator_wind__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_wind__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_wind__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/estimator_wind__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/estimator_wind__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_wind__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/estimator_wind__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/estimator_wind__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/estimator_wind__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/follow_target__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/follow_target__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/follow_target__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/follow_target__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/follow_target__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/follow_target__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/follow_target__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/follow_target__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/follow_target__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/follow_target__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/follow_target__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/follow_target__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/follow_target__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/follow_target__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/follow_target__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/follow_target__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/follow_target__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/follow_target__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/generator_status__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/generator_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/generator_status__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/generator_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/generator_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/generator_status__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/generator_status__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/generator_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/generator_status__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/generator_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/generator_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/generator_status__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/generator_status__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/generator_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/generator_status__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/generator_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/generator_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/generator_status__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/geofence_result__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/geofence_result__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/geofence_result__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/geofence_result__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/geofence_result__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/geofence_result__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/geofence_result__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/geofence_result__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/geofence_result__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/geofence_result__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/geofence_result__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/geofence_result__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/geofence_result__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/geofence_result__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/geofence_result__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/geofence_result__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/geofence_result__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/geofence_result__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_information__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_information__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_information__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_information__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_information__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_information__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_information__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_information__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_information__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_information__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_information__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_information__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_information__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_information__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_information__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_information__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_information__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_information__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_information__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_information__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_information__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_information__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_information__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_information__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_information__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_information__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_information__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_information__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_information__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_information__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_information__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_information__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_information__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_information__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_information__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_information__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_status__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_status__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_status__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_status__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_status__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_status__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_status__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_status__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_status__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/gps_dump__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/gps_dump__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gps_dump__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/gps_dump__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/gps_dump__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gps_dump__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/gps_dump__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/gps_dump__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gps_dump__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/gps_dump__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/gps_dump__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gps_dump__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/gps_dump__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/gps_dump__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gps_dump__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/gps_dump__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/gps_dump__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gps_dump__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/gps_inject_data__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/gps_inject_data__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gps_inject_data__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/gps_inject_data__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/gps_inject_data__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gps_inject_data__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/gps_inject_data__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/gps_inject_data__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gps_inject_data__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/gps_inject_data__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/gps_inject_data__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gps_inject_data__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/gps_inject_data__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/gps_inject_data__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gps_inject_data__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/gps_inject_data__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/gps_inject_data__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/gps_inject_data__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/heater_status__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/heater_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/heater_status__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/heater_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/heater_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/heater_status__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/heater_status__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/heater_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/heater_status__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/heater_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/heater_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/heater_status__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/heater_status__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/heater_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/heater_status__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/heater_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/heater_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/heater_status__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/home_position__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/home_position__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/home_position__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/home_position__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/home_position__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/home_position__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/home_position__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/home_position__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/home_position__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/home_position__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/home_position__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/home_position__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/home_position__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/home_position__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/home_position__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/home_position__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/home_position__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/home_position__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/input_rc__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/input_rc__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/input_rc__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/input_rc__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/input_rc__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/input_rc__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/input_rc__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/input_rc__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/input_rc__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/input_rc__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/input_rc__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/input_rc__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/input_rc__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/input_rc__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/input_rc__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/input_rc__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/input_rc__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/input_rc__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/iridiumsbd_status__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/iridiumsbd_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/iridiumsbd_status__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/iridiumsbd_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/iridiumsbd_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/iridiumsbd_status__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/iridiumsbd_status__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/iridiumsbd_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/iridiumsbd_status__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/iridiumsbd_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/iridiumsbd_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/iridiumsbd_status__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/iridiumsbd_status__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/iridiumsbd_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/iridiumsbd_status__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/iridiumsbd_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/iridiumsbd_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/iridiumsbd_status__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/irlock_report__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/irlock_report__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/irlock_report__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/irlock_report__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/irlock_report__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/irlock_report__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/irlock_report__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/irlock_report__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/irlock_report__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/irlock_report__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/irlock_report__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/irlock_report__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/irlock_report__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/irlock_report__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/irlock_report__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/irlock_report__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/irlock_report__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/irlock_report__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/landing_gear__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/landing_gear__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/landing_gear__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/landing_gear__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/landing_gear__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/landing_gear__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/landing_gear__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/landing_gear__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/landing_gear__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/landing_gear__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/landing_gear__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/landing_gear__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/landing_gear__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/landing_gear__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/landing_gear__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/landing_gear__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/landing_gear__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/landing_gear__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/landing_target_innovations__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/landing_target_innovations__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/landing_target_innovations__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/landing_target_innovations__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/landing_target_innovations__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/landing_target_innovations__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/landing_target_innovations__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/landing_target_innovations__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/landing_target_innovations__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/landing_target_innovations__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/landing_target_innovations__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/landing_target_innovations__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/landing_target_innovations__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/landing_target_innovations__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/landing_target_innovations__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/landing_target_innovations__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/landing_target_innovations__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/landing_target_innovations__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/landing_target_pose__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/landing_target_pose__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/landing_target_pose__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/landing_target_pose__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/landing_target_pose__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/landing_target_pose__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/landing_target_pose__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/landing_target_pose__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/landing_target_pose__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/landing_target_pose__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/landing_target_pose__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/landing_target_pose__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/landing_target_pose__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/landing_target_pose__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/landing_target_pose__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/landing_target_pose__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/landing_target_pose__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/landing_target_pose__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/led_control__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/led_control__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/led_control__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/led_control__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/led_control__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/led_control__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/led_control__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/led_control__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/led_control__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/led_control__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/led_control__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/led_control__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/led_control__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/led_control__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/led_control__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/led_control__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/led_control__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/led_control__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/log_message__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/log_message__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/log_message__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/log_message__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/log_message__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/log_message__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/log_message__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/log_message__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/log_message__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/log_message__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/log_message__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/log_message__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/log_message__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/log_message__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/log_message__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/log_message__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/log_message__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/log_message__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/logger_status__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/logger_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/logger_status__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/logger_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/logger_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/logger_status__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/logger_status__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/logger_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/logger_status__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/logger_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/logger_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/logger_status__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/logger_status__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/logger_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/logger_status__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/logger_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/logger_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/logger_status__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/mag_worker_data__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/mag_worker_data__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mag_worker_data__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/mag_worker_data__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/mag_worker_data__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mag_worker_data__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/mag_worker_data__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/mag_worker_data__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mag_worker_data__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/mag_worker_data__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/mag_worker_data__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mag_worker_data__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/mag_worker_data__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/mag_worker_data__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mag_worker_data__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/mag_worker_data__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/mag_worker_data__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mag_worker_data__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/manual_control_setpoint__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/manual_control_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/manual_control_setpoint__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/manual_control_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/manual_control_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/manual_control_setpoint__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/manual_control_setpoint__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/manual_control_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/manual_control_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/manual_control_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/manual_control_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/manual_control_setpoint__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/manual_control_setpoint__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/manual_control_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/manual_control_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/manual_control_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/manual_control_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/manual_control_setpoint__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/manual_control_switches__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/manual_control_switches__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/manual_control_switches__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/manual_control_switches__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/manual_control_switches__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/manual_control_switches__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/manual_control_switches__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/manual_control_switches__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/manual_control_switches__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/manual_control_switches__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/manual_control_switches__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/manual_control_switches__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/manual_control_switches__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/manual_control_switches__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/manual_control_switches__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/manual_control_switches__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/manual_control_switches__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/manual_control_switches__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/mavlink_log__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/mavlink_log__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mavlink_log__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/mavlink_log__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/mavlink_log__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mavlink_log__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/mavlink_log__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/mavlink_log__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mavlink_log__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/mavlink_log__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/mavlink_log__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mavlink_log__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/mavlink_log__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/mavlink_log__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mavlink_log__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/mavlink_log__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/mavlink_log__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mavlink_log__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/mission__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/mission__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mission__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/mission__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/mission__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mission__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/mission__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/mission__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mission__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/mission__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/mission__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mission__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/mission__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/mission__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mission__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/mission__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/mission__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mission__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/mission_result__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/mission_result__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mission_result__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/mission_result__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/mission_result__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mission_result__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/mission_result__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/mission_result__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mission_result__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/mission_result__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/mission_result__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mission_result__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/mission_result__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/mission_result__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mission_result__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/mission_result__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/mission_result__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mission_result__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/mount_orientation__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/mount_orientation__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mount_orientation__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/mount_orientation__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/mount_orientation__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mount_orientation__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/mount_orientation__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/mount_orientation__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mount_orientation__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/mount_orientation__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/mount_orientation__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mount_orientation__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/mount_orientation__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/mount_orientation__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mount_orientation__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/mount_orientation__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/mount_orientation__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/mount_orientation__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/navigator_mission_item__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/navigator_mission_item__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/navigator_mission_item__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/navigator_mission_item__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/navigator_mission_item__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/navigator_mission_item__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/navigator_mission_item__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/navigator_mission_item__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/navigator_mission_item__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/navigator_mission_item__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/navigator_mission_item__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/navigator_mission_item__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/navigator_mission_item__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/navigator_mission_item__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/navigator_mission_item__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/navigator_mission_item__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/navigator_mission_item__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/navigator_mission_item__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/offboard_control_mode__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/offboard_control_mode__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/offboard_control_mode__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/offboard_control_mode__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/offboard_control_mode__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/offboard_control_mode__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/offboard_control_mode__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/offboard_control_mode__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/offboard_control_mode__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/offboard_control_mode__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/offboard_control_mode__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/offboard_control_mode__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/offboard_control_mode__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/offboard_control_mode__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/offboard_control_mode__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/offboard_control_mode__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/offboard_control_mode__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/offboard_control_mode__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/onboard_computer_status__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/onboard_computer_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/onboard_computer_status__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/onboard_computer_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/onboard_computer_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/onboard_computer_status__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/onboard_computer_status__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/onboard_computer_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/onboard_computer_status__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/onboard_computer_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/onboard_computer_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/onboard_computer_status__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/onboard_computer_status__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/onboard_computer_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/onboard_computer_status__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/onboard_computer_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/onboard_computer_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/onboard_computer_status__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/optical_flow__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/optical_flow__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/optical_flow__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/optical_flow__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/optical_flow__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/optical_flow__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/optical_flow__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/optical_flow__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/optical_flow__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/optical_flow__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/optical_flow__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/optical_flow__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/optical_flow__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/optical_flow__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/optical_flow__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/optical_flow__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/optical_flow__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/optical_flow__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/orb_multitest__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/orb_multitest__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_multitest__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/orb_multitest__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/orb_multitest__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_multitest__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/orb_multitest__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/orb_multitest__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_multitest__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/orb_multitest__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/orb_multitest__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_multitest__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/orb_multitest__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/orb_multitest__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_multitest__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/orb_multitest__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/orb_multitest__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_multitest__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/orb_test__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/orb_test__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/orb_test__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/orb_test__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/orb_test__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/orb_test__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/orb_test__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/orb_test__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/orb_test__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/orb_test__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/orb_test__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/orb_test__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/orb_test_large__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/orb_test_large__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_large__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/orb_test_large__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/orb_test_large__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_large__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/orb_test_large__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/orb_test_large__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_large__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/orb_test_large__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/orb_test_large__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_large__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/orb_test_large__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/orb_test_large__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_large__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/orb_test_large__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/orb_test_large__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_large__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/orbit_status__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/orbit_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orbit_status__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/orbit_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/orbit_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orbit_status__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/orbit_status__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/orbit_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orbit_status__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/orbit_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/orbit_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orbit_status__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/orbit_status__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/orbit_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orbit_status__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/orbit_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/orbit_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/orbit_status__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/parameter_update__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/parameter_update__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/parameter_update__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/parameter_update__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/parameter_update__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/parameter_update__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/parameter_update__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/parameter_update__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/parameter_update__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/parameter_update__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/parameter_update__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/parameter_update__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/parameter_update__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/parameter_update__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/parameter_update__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/parameter_update__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/parameter_update__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/parameter_update__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/ping__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/ping__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ping__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/ping__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/ping__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ping__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/ping__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/ping__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ping__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/ping__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/ping__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ping__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/ping__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/ping__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ping__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/ping__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/ping__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ping__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/position_controller_landing_status__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/position_controller_landing_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/position_controller_landing_status__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/position_controller_landing_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/position_controller_landing_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/position_controller_landing_status__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/position_controller_landing_status__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/position_controller_landing_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/position_controller_landing_status__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/position_controller_landing_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/position_controller_landing_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/position_controller_landing_status__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/position_controller_landing_status__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/position_controller_landing_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/position_controller_landing_status__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/position_controller_landing_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/position_controller_landing_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/position_controller_landing_status__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/position_controller_status__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/position_controller_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/position_controller_status__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/position_controller_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/position_controller_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/position_controller_status__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/position_controller_status__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/position_controller_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/position_controller_status__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/position_controller_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/position_controller_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/position_controller_status__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/position_controller_status__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/position_controller_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/position_controller_status__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/position_controller_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/position_controller_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/position_controller_status__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/power_button_state__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/power_button_state__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/power_button_state__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/power_button_state__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/power_button_state__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/power_button_state__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/power_button_state__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/power_button_state__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/power_button_state__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/power_button_state__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/power_button_state__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/power_button_state__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/power_button_state__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/power_button_state__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/power_button_state__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/power_button_state__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/power_button_state__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/power_button_state__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/power_monitor__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/power_monitor__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/power_monitor__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/power_monitor__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/power_monitor__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/power_monitor__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/power_monitor__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/power_monitor__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/power_monitor__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/power_monitor__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/power_monitor__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/power_monitor__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/power_monitor__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/power_monitor__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/power_monitor__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/power_monitor__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/power_monitor__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/power_monitor__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/pwm_input__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/pwm_input__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/pwm_input__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/pwm_input__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/pwm_input__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/pwm_input__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/pwm_input__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/pwm_input__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/pwm_input__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/pwm_input__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/pwm_input__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/pwm_input__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/pwm_input__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/pwm_input__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/pwm_input__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/pwm_input__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/pwm_input__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/pwm_input__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/px4_io_status__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/px4_io_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/px4_io_status__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/px4_io_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/px4_io_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/px4_io_status__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/px4_io_status__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/px4_io_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/px4_io_status__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/px4_io_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/px4_io_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/px4_io_status__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/px4_io_status__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/px4_io_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/px4_io_status__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/px4_io_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/px4_io_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/px4_io_status__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/qshell_req__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/qshell_req__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/qshell_req__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/qshell_req__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/qshell_req__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/qshell_req__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/qshell_req__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/qshell_req__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/qshell_req__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/qshell_req__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/qshell_req__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/qshell_req__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/qshell_req__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/qshell_req__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/qshell_req__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/qshell_req__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/qshell_req__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/qshell_req__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/qshell_retval__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/qshell_retval__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/qshell_retval__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/qshell_retval__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/qshell_retval__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/qshell_retval__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/qshell_retval__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/qshell_retval__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/qshell_retval__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/qshell_retval__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/qshell_retval__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/qshell_retval__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/qshell_retval__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/qshell_retval__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/qshell_retval__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/qshell_retval__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/qshell_retval__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/qshell_retval__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/radio_status__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/radio_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/radio_status__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/radio_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/radio_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/radio_status__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/radio_status__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/radio_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/radio_status__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/radio_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/radio_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/radio_status__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/radio_status__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/radio_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/radio_status__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/radio_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/radio_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/radio_status__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/rate_ctrl_status__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/rate_ctrl_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rate_ctrl_status__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/rate_ctrl_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/rate_ctrl_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rate_ctrl_status__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/rate_ctrl_status__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/rate_ctrl_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rate_ctrl_status__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/rate_ctrl_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/rate_ctrl_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rate_ctrl_status__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/rate_ctrl_status__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/rate_ctrl_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rate_ctrl_status__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/rate_ctrl_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/rate_ctrl_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rate_ctrl_status__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/rc_channels__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/rc_channels__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rc_channels__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/rc_channels__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/rc_channels__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rc_channels__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/rc_channels__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/rc_channels__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rc_channels__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/rc_channels__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/rc_channels__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rc_channels__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/rc_channels__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/rc_channels__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rc_channels__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/rc_channels__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/rc_channels__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rc_channels__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/rc_parameter_map__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/rc_parameter_map__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rc_parameter_map__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/rc_parameter_map__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/rc_parameter_map__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rc_parameter_map__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/rc_parameter_map__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/rc_parameter_map__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rc_parameter_map__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/rc_parameter_map__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/rc_parameter_map__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rc_parameter_map__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/rc_parameter_map__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/rc_parameter_map__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rc_parameter_map__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/rc_parameter_map__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/rc_parameter_map__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rc_parameter_map__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/rpm__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/rpm__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rpm__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/rpm__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/rpm__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rpm__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/rpm__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/rpm__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rpm__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/rpm__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/rpm__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rpm__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/rpm__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/rpm__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rpm__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/rpm__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/rpm__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rpm__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/rtl_flight_time__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/rtl_flight_time__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rtl_flight_time__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/rtl_flight_time__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/rtl_flight_time__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rtl_flight_time__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/rtl_flight_time__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/rtl_flight_time__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rtl_flight_time__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/rtl_flight_time__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/rtl_flight_time__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rtl_flight_time__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/rtl_flight_time__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/rtl_flight_time__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rtl_flight_time__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/rtl_flight_time__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/rtl_flight_time__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/rtl_flight_time__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/safety__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/safety__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/safety__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/safety__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/safety__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/safety__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/safety__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/safety__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/safety__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/safety__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/safety__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/safety__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/safety__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/safety__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/safety__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/safety__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/safety__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/safety__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/satellite_info__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/satellite_info__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/satellite_info__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/satellite_info__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/satellite_info__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/satellite_info__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/satellite_info__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/satellite_info__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/satellite_info__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/satellite_info__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/satellite_info__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/satellite_info__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/satellite_info__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/satellite_info__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/satellite_info__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/satellite_info__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/satellite_info__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/satellite_info__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/sensor_baro__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/sensor_baro__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_baro__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/sensor_baro__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_baro__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_baro__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/sensor_baro__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/sensor_baro__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_baro__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/sensor_baro__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_baro__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_baro__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/sensor_baro__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/sensor_baro__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_baro__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/sensor_baro__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_baro__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_baro__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/sensor_combined__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/sensor_combined__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_combined__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/sensor_combined__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_combined__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_combined__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/sensor_combined__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/sensor_combined__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_combined__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/sensor_combined__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_combined__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_combined__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/sensor_combined__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/sensor_combined__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_combined__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/sensor_combined__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_combined__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_combined__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/sensor_correction__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/sensor_correction__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_correction__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/sensor_correction__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_correction__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_correction__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/sensor_correction__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/sensor_correction__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_correction__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/sensor_correction__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_correction__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_correction__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/sensor_correction__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/sensor_correction__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_correction__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/sensor_correction__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_correction__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_correction__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/sensor_gps__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/sensor_gps__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_gps__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/sensor_gps__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_gps__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_gps__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/sensor_gps__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/sensor_gps__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_gps__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/sensor_gps__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_gps__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_gps__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/sensor_gps__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/sensor_gps__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_gps__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/sensor_gps__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_gps__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_gps__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/sensor_mag__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/sensor_mag__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_mag__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/sensor_mag__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_mag__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_mag__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/sensor_mag__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/sensor_mag__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_mag__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/sensor_mag__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_mag__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_mag__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/sensor_mag__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/sensor_mag__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_mag__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/sensor_mag__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_mag__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_mag__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/sensor_selection__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/sensor_selection__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_selection__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/sensor_selection__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_selection__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_selection__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/sensor_selection__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/sensor_selection__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_selection__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/sensor_selection__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_selection__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_selection__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/sensor_selection__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/sensor_selection__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_selection__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/sensor_selection__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensor_selection__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensor_selection__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/sensors_status_imu__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/sensors_status_imu__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensors_status_imu__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/sensors_status_imu__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensors_status_imu__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensors_status_imu__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/sensors_status_imu__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/sensors_status_imu__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensors_status_imu__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/sensors_status_imu__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensors_status_imu__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensors_status_imu__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/sensors_status_imu__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/sensors_status_imu__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensors_status_imu__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/sensors_status_imu__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/sensors_status_imu__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/sensors_status_imu__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/system_power__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/system_power__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/system_power__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/system_power__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/system_power__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/system_power__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/system_power__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/system_power__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/system_power__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/system_power__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/system_power__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/system_power__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/system_power__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/system_power__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/system_power__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/system_power__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/system_power__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/system_power__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/takeoff_status__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/takeoff_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/takeoff_status__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/takeoff_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/takeoff_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/takeoff_status__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/takeoff_status__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/takeoff_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/takeoff_status__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/takeoff_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/takeoff_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/takeoff_status__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/takeoff_status__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/takeoff_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/takeoff_status__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/takeoff_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/takeoff_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/takeoff_status__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/task_stack_info__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/task_stack_info__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/task_stack_info__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/task_stack_info__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/task_stack_info__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/task_stack_info__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/task_stack_info__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/task_stack_info__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/task_stack_info__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/task_stack_info__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/task_stack_info__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/task_stack_info__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/task_stack_info__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/task_stack_info__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/task_stack_info__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/task_stack_info__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/task_stack_info__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/task_stack_info__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/tecs_status__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/tecs_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/tecs_status__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/tecs_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/tecs_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/tecs_status__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/tecs_status__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/tecs_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/tecs_status__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/tecs_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/tecs_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/tecs_status__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/tecs_status__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/tecs_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/tecs_status__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/tecs_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/tecs_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/tecs_status__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/telemetry_status__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/telemetry_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/telemetry_status__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/telemetry_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/telemetry_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/telemetry_status__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/telemetry_status__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/telemetry_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/telemetry_status__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/telemetry_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/telemetry_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/telemetry_status__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/telemetry_status__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/telemetry_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/telemetry_status__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/telemetry_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/telemetry_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/telemetry_status__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/test_motor__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/test_motor__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/test_motor__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/test_motor__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/test_motor__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/test_motor__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/test_motor__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/test_motor__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/test_motor__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/test_motor__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/test_motor__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/test_motor__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/test_motor__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/test_motor__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/test_motor__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/test_motor__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/test_motor__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/test_motor__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/timesync__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/timesync__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/timesync__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/timesync__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/timesync__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/timesync__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/timesync__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/timesync__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/timesync__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/timesync__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/timesync__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/timesync__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/timesync__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/timesync__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/timesync__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/timesync__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/timesync__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/timesync__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/timesync_status__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/timesync_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/timesync_status__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/timesync_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/timesync_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/timesync_status__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/timesync_status__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/timesync_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/timesync_status__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/timesync_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/timesync_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/timesync_status__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/timesync_status__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/timesync_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/timesync_status__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/timesync_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/timesync_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/timesync_status__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/trajectory_bezier__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/trajectory_bezier__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/trajectory_bezier__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/trajectory_bezier__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/trajectory_bezier__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/trajectory_bezier__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/trajectory_bezier__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/trajectory_bezier__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/trajectory_bezier__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/trajectory_bezier__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/trajectory_bezier__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/trajectory_bezier__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/trajectory_bezier__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/trajectory_bezier__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/trajectory_bezier__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/trajectory_bezier__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/trajectory_bezier__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/trajectory_bezier__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/trajectory_setpoint__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/trajectory_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/trajectory_setpoint__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/trajectory_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/trajectory_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/trajectory_setpoint__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/trajectory_setpoint__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/trajectory_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/trajectory_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/trajectory_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/trajectory_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/trajectory_setpoint__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/trajectory_setpoint__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/trajectory_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/trajectory_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/trajectory_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/trajectory_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/trajectory_setpoint__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/trajectory_waypoint__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/trajectory_waypoint__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/trajectory_waypoint__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/trajectory_waypoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/trajectory_waypoint__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/trajectory_waypoint__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/trajectory_waypoint__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/trajectory_waypoint__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/trajectory_waypoint__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/trajectory_waypoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/trajectory_waypoint__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/trajectory_waypoint__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/trajectory_waypoint__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/trajectory_waypoint__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/trajectory_waypoint__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/trajectory_waypoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/trajectory_waypoint__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/trajectory_waypoint__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/transponder_report__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/transponder_report__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/transponder_report__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/transponder_report__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/transponder_report__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/transponder_report__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/transponder_report__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/transponder_report__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/transponder_report__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/transponder_report__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/transponder_report__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/transponder_report__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/transponder_report__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/transponder_report__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/transponder_report__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/transponder_report__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/transponder_report__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/transponder_report__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/tune_control__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/tune_control__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/tune_control__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/tune_control__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/tune_control__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/tune_control__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/tune_control__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/tune_control__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/tune_control__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/tune_control__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/tune_control__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/tune_control__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/tune_control__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/tune_control__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/tune_control__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/tune_control__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/tune_control__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/tune_control__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream_ack__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream_ack__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream_ack__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream_ack__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream_ack__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream_ack__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream_ack__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream_ack__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream_ack__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream_ack__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream_ack__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream_ack__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream_ack__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream_ack__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream_ack__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream_ack__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream_ack__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream_ack__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_acceleration__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_acceleration__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_acceleration__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_acceleration__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_acceleration__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_acceleration__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_acceleration__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_acceleration__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_acceleration__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_acceleration__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_acceleration__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_acceleration__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_acceleration__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_acceleration__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_acceleration__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_acceleration__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_acceleration__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_acceleration__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_air_data__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_air_data__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_air_data__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_air_data__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_air_data__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_air_data__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_air_data__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_air_data__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_air_data__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_air_data__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_air_data__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_air_data__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_air_data__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_air_data__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_air_data__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_air_data__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_air_data__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_air_data__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command_ack__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command_ack__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command_ack__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command_ack__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command_ack__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command_ack__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command_ack__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command_ack__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command_ack__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command_ack__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command_ack__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command_ack__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command_ack__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command_ack__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command_ack__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command_ack__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command_ack__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command_ack__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_constraints__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_constraints__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_constraints__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_constraints__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_constraints__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_constraints__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_constraints__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_constraints__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_constraints__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_constraints__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_constraints__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_constraints__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_constraints__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_constraints__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_constraints__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_constraints__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_constraints__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_constraints__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_control_mode__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_control_mode__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_control_mode__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_control_mode__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_control_mode__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_control_mode__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_control_mode__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_control_mode__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_control_mode__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_control_mode__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_control_mode__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_control_mode__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_control_mode__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_control_mode__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_control_mode__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_control_mode__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_control_mode__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_control_mode__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_gps_position__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_gps_position__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_gps_position__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_gps_position__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_gps_position__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_gps_position__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_gps_position__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_gps_position__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_gps_position__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_gps_position__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_gps_position__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_gps_position__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_gps_position__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_gps_position__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_gps_position__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_gps_position__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_gps_position__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_gps_position__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu_status__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu_status__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu_status__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu_status__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu_status__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu_status__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu_status__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu_status__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu_status__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_land_detected__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_land_detected__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_land_detected__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_land_detected__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_land_detected__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_land_detected__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_land_detected__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_land_detected__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_land_detected__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_land_detected__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_land_detected__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_land_detected__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_land_detected__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_land_detected__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_land_detected__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_land_detected__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_land_detected__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_land_detected__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_odometry__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_odometry__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_odometry__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_odometry__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_odometry__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_odometry__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_odometry__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_odometry__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_odometry__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_odometry__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_odometry__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_odometry__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_roi__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_roi__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_roi__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_roi__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_roi__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_roi__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_roi__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_roi__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_roi__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_roi__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_roi__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_roi__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_roi__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_roi__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_roi__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_roi__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_roi__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_roi__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status_flags__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status_flags__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status_flags__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status_flags__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status_flags__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status_flags__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status_flags__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status_flags__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status_flags__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status_flags__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status_flags__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status_flags__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status_flags__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status_flags__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status_flags__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status_flags__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status_flags__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status_flags__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/wheel_encoders__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/wheel_encoders__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/wheel_encoders__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/wheel_encoders__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/wheel_encoders__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/wheel_encoders__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/wheel_encoders__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/wheel_encoders__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/wheel_encoders__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/wheel_encoders__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/wheel_encoders__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/wheel_encoders__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/wheel_encoders__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/wheel_encoders__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/wheel_encoders__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/wheel_encoders__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/wheel_encoders__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/wheel_encoders__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/wind__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/wind__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/wind__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/wind__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/wind__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/wind__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/wind__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/wind__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/wind__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/wind__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/wind__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/wind__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/wind__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/wind__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/wind__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/wind__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/wind__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/wind__type_support.cpp.s rosidl_typesupport_cpp/px4_msgs/msg/yaw_estimator_status__type_support.o: rosidl_typesupport_cpp/px4_msgs/msg/yaw_estimator_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/yaw_estimator_status__type_support.o # target to build an object file rosidl_typesupport_cpp/px4_msgs/msg/yaw_estimator_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/yaw_estimator_status__type_support.cpp.o .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/yaw_estimator_status__type_support.cpp.o rosidl_typesupport_cpp/px4_msgs/msg/yaw_estimator_status__type_support.i: rosidl_typesupport_cpp/px4_msgs/msg/yaw_estimator_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/yaw_estimator_status__type_support.i # target to preprocess a source file rosidl_typesupport_cpp/px4_msgs/msg/yaw_estimator_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/yaw_estimator_status__type_support.cpp.i .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/yaw_estimator_status__type_support.cpp.i rosidl_typesupport_cpp/px4_msgs/msg/yaw_estimator_status__type_support.s: rosidl_typesupport_cpp/px4_msgs/msg/yaw_estimator_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/yaw_estimator_status__type_support.s # target to generate assembly for a file rosidl_typesupport_cpp/px4_msgs/msg/yaw_estimator_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/rosidl_typesupport_cpp/px4_msgs/msg/yaw_estimator_status__type_support.cpp.s .PHONY : rosidl_typesupport_cpp/px4_msgs/msg/yaw_estimator_status__type_support.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_armed__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_armed__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_armed__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_armed__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_armed__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_armed__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_armed__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_armed__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_armed__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_armed__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_armed__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_armed__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_armed__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_armed__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_armed__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_armed__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_armed__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_armed__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls0__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls0__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls0__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls0__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls0__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls0__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls0__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls0__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls0__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls0__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls0__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls0__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls0__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls0__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls0__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls0__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls0__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls0__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls1__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls1__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls1__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls1__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls1__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls1__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls1__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls1__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls1__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls1__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls1__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls1__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls1__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls1__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls1__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls1__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls1__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls1__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls2__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls2__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls2__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls2__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls2__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls2__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls2__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls2__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls2__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls2__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls2__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls2__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls2__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls2__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls2__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls2__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls2__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls2__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls3__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls3__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls3__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls3__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls3__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls3__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls3__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls3__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls3__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls3__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls3__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls3__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls3__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls3__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls3__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls3__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls3__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls3__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls4__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls4__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls4__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls4__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls4__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls4__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls4__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls4__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls4__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls4__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls4__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls4__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls4__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls4__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls4__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls4__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls4__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls4__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls5__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls5__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls5__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls5__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls5__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls5__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls5__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls5__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls5__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls5__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls5__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls5__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls5__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls5__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls5__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls5__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls5__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls5__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_outputs__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_outputs__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_outputs__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_outputs__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_outputs__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_outputs__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_outputs__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_outputs__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_outputs__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_outputs__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_outputs__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_outputs__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_outputs__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_outputs__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_outputs__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_outputs__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_outputs__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_outputs__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/adc_report__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/adc_report__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/adc_report__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/adc_report__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/adc_report__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/adc_report__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/adc_report__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/adc_report__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/adc_report__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/adc_report__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/adc_report__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/adc_report__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/adc_report__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/adc_report__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/adc_report__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/adc_report__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/adc_report__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/adc_report__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_validated__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_validated__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_validated__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_validated__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_validated__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_validated__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_validated__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_validated__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_validated__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_validated__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_validated__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_validated__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_validated__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_validated__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_validated__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_validated__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_validated__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_validated__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_wind__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_wind__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_wind__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_wind__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_wind__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_wind__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_wind__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_wind__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_wind__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_wind__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_wind__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_wind__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_wind__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_wind__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_wind__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_wind__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_wind__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_wind__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/battery_status__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/battery_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/battery_status__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/battery_status__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/battery_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/battery_status__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/battery_status__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/battery_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/battery_status__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/battery_status__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/battery_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/battery_status__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/battery_status__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/battery_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/battery_status__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/battery_status__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/battery_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/battery_status__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_capture__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_capture__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_capture__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_capture__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_capture__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_capture__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_capture__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_capture__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_capture__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_capture__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_capture__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_capture__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_capture__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_capture__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_capture__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_capture__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_capture__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_capture__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger_secondary__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger_secondary__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger_secondary__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger_secondary__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger_secondary__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger_secondary__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger_secondary__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger_secondary__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger_secondary__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger_secondary__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger_secondary__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger_secondary__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger_secondary__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger_secondary__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger_secondary__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger_secondary__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger_secondary__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger_secondary__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/cellular_status__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/cellular_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/cellular_status__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/cellular_status__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/cellular_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/cellular_status__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/cellular_status__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/cellular_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/cellular_status__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/cellular_status__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/cellular_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/cellular_status__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/cellular_status__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/cellular_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/cellular_status__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/cellular_status__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/cellular_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/cellular_status__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_constraints__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_constraints__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_constraints__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_constraints__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_constraints__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_constraints__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_constraints__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_constraints__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_constraints__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_constraints__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_constraints__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_constraints__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_constraints__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_constraints__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_constraints__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_constraints__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_constraints__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_constraints__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_report__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_report__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_report__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_report__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_report__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_report__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_report__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_report__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_report__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_report__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_report__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_report__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_report__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_report__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_report__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_report__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_report__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_report__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/commander_state__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/commander_state__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/commander_state__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/commander_state__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/commander_state__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/commander_state__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/commander_state__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/commander_state__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/commander_state__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/commander_state__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/commander_state__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/commander_state__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/commander_state__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/commander_state__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/commander_state__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/commander_state__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/commander_state__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/commander_state__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/control_allocator_status__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/control_allocator_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/control_allocator_status__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/control_allocator_status__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/control_allocator_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/control_allocator_status__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/control_allocator_status__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/control_allocator_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/control_allocator_status__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/control_allocator_status__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/control_allocator_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/control_allocator_status__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/control_allocator_status__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/control_allocator_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/control_allocator_status__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/control_allocator_status__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/control_allocator_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/control_allocator_status__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/cpuload__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/cpuload__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/cpuload__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/cpuload__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/cpuload__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/cpuload__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/cpuload__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/cpuload__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/cpuload__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/cpuload__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/cpuload__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/cpuload__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/cpuload__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/cpuload__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/cpuload__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/cpuload__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/cpuload__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/cpuload__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_array__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_array__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_array__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_array__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_array__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_array__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_array__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_array__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_array__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_array__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_array__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_array__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_array__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_array__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_array__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_array__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_array__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_array__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_key_value__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_key_value__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_key_value__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_key_value__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_key_value__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_key_value__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_key_value__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_key_value__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_key_value__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_key_value__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_key_value__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_key_value__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_key_value__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_key_value__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_key_value__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_key_value__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_key_value__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_key_value__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_value__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_value__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_value__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_value__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_value__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_value__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_value__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_value__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_value__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_value__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_value__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_value__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_value__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_value__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_value__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_value__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_value__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_value__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_vect__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_vect__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_vect__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_vect__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_vect__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_vect__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_vect__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_vect__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_vect__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_vect__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_vect__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_vect__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_vect__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_vect__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_vect__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_vect__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_vect__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_vect__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/differential_pressure__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/differential_pressure__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/differential_pressure__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/differential_pressure__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/differential_pressure__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/differential_pressure__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/differential_pressure__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/differential_pressure__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/differential_pressure__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/differential_pressure__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/differential_pressure__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/differential_pressure__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/differential_pressure__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/differential_pressure__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/differential_pressure__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/differential_pressure__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/differential_pressure__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/differential_pressure__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/distance_sensor__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/distance_sensor__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/distance_sensor__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/distance_sensor__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/distance_sensor__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/distance_sensor__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/distance_sensor__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/distance_sensor__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/distance_sensor__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/distance_sensor__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/distance_sensor__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/distance_sensor__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/distance_sensor__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/distance_sensor__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/distance_sensor__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/distance_sensor__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/distance_sensor__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/distance_sensor__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf2_timestamps__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf2_timestamps__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf2_timestamps__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf2_timestamps__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf2_timestamps__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf2_timestamps__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf2_timestamps__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf2_timestamps__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf2_timestamps__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf2_timestamps__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf2_timestamps__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf2_timestamps__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf2_timestamps__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf2_timestamps__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf2_timestamps__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf2_timestamps__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf2_timestamps__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf2_timestamps__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf_gps_drift__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf_gps_drift__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf_gps_drift__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf_gps_drift__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf_gps_drift__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf_gps_drift__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf_gps_drift__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf_gps_drift__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf_gps_drift__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf_gps_drift__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf_gps_drift__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf_gps_drift__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf_gps_drift__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf_gps_drift__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf_gps_drift__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf_gps_drift__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf_gps_drift__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf_gps_drift__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_report__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_report__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_report__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_report__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_report__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_report__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_report__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_report__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_report__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_report__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_report__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_report__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_report__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_report__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_report__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_report__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_report__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_report__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_status__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_status__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_status__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_status__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_status__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_status__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_status__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_status__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_status__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_status__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_status__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_status__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_attitude__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_attitude__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_attitude__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_attitude__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_attitude__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_attitude__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_attitude__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_attitude__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_attitude__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_attitude__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_attitude__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_attitude__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_attitude__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_attitude__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_attitude__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_attitude__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_attitude__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_attitude__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_event_flags__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_event_flags__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_event_flags__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_event_flags__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_event_flags__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_event_flags__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_event_flags__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_event_flags__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_event_flags__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_event_flags__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_event_flags__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_event_flags__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_event_flags__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_event_flags__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_event_flags__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_event_flags__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_event_flags__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_event_flags__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_global_position__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_global_position__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_global_position__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_global_position__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_global_position__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_global_position__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_global_position__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_global_position__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_global_position__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_global_position__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_global_position__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_global_position__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_global_position__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_global_position__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_global_position__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_global_position__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_global_position__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_global_position__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_variances__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_variances__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_variances__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_variances__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_variances__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_variances__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_variances__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_variances__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_variances__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_variances__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_variances__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_variances__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_variances__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_variances__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_variances__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_variances__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_variances__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_variances__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovations__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovations__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovations__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovations__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovations__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovations__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovations__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovations__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovations__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovations__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovations__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovations__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovations__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovations__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovations__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovations__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovations__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovations__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_local_position__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_local_position__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_local_position__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_local_position__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_local_position__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_local_position__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_local_position__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_local_position__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_local_position__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_local_position__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_local_position__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_local_position__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_local_position__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_local_position__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_local_position__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_local_position__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_local_position__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_local_position__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_odometry__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_odometry__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_odometry__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_odometry__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_odometry__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_odometry__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_odometry__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_odometry__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_odometry__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_odometry__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_odometry__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_odometry__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_odometry__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_odometry__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_odometry__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_odometry__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_odometry__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_odometry__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_optical_flow_vel__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_optical_flow_vel__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_optical_flow_vel__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_optical_flow_vel__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_optical_flow_vel__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_optical_flow_vel__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_optical_flow_vel__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_optical_flow_vel__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_optical_flow_vel__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_optical_flow_vel__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_optical_flow_vel__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_optical_flow_vel__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_optical_flow_vel__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_optical_flow_vel__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_optical_flow_vel__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_optical_flow_vel__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_optical_flow_vel__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_optical_flow_vel__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_selector_status__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_selector_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_selector_status__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_selector_status__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_selector_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_selector_status__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_selector_status__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_selector_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_selector_status__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_selector_status__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_selector_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_selector_status__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_selector_status__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_selector_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_selector_status__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_selector_status__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_selector_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_selector_status__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_sensor_bias__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_sensor_bias__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_sensor_bias__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_sensor_bias__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_sensor_bias__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_sensor_bias__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_sensor_bias__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_sensor_bias__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_sensor_bias__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_sensor_bias__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_sensor_bias__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_sensor_bias__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_sensor_bias__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_sensor_bias__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_sensor_bias__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_sensor_bias__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_sensor_bias__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_sensor_bias__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_states__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_states__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_states__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_states__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_states__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_states__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_states__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_states__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_states__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_states__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_states__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_states__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_states__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_states__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_states__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_states__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_states__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_states__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status_flags__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status_flags__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status_flags__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status_flags__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status_flags__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status_flags__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status_flags__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status_flags__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status_flags__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status_flags__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status_flags__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status_flags__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status_flags__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status_flags__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status_flags__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status_flags__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status_flags__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status_flags__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_wind__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_wind__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_wind__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_wind__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_wind__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_wind__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_wind__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_wind__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_wind__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_wind__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_wind__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_wind__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_wind__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_wind__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_wind__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_wind__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_wind__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_wind__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/follow_target__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/follow_target__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/follow_target__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/follow_target__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/follow_target__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/follow_target__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/follow_target__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/follow_target__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/follow_target__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/follow_target__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/follow_target__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/follow_target__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/follow_target__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/follow_target__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/follow_target__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/follow_target__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/follow_target__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/follow_target__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/generator_status__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/generator_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/generator_status__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/generator_status__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/generator_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/generator_status__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/generator_status__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/generator_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/generator_status__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/generator_status__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/generator_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/generator_status__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/generator_status__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/generator_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/generator_status__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/generator_status__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/generator_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/generator_status__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/geofence_result__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/geofence_result__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/geofence_result__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/geofence_result__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/geofence_result__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/geofence_result__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/geofence_result__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/geofence_result__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/geofence_result__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/geofence_result__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/geofence_result__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/geofence_result__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/geofence_result__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/geofence_result__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/geofence_result__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/geofence_result__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/geofence_result__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/geofence_result__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_attitude_status__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_attitude_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_attitude_status__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_attitude_status__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_attitude_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_attitude_status__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_attitude_status__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_attitude_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_attitude_status__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_attitude_status__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_attitude_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_attitude_status__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_attitude_status__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_attitude_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_attitude_status__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_attitude_status__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_attitude_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_attitude_status__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_information__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_information__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_information__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_information__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_information__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_information__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_information__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_information__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_information__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_information__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_information__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_information__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_information__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_information__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_information__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_information__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_information__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_information__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_set_attitude__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_set_attitude__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_set_attitude__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_set_attitude__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_set_attitude__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_set_attitude__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_set_attitude__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_set_attitude__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_set_attitude__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_set_attitude__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_set_attitude__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_set_attitude__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_set_attitude__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_set_attitude__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_set_attitude__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_set_attitude__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_set_attitude__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_set_attitude__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_information__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_information__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_information__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_information__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_information__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_information__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_information__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_information__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_information__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_information__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_information__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_information__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_information__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_information__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_information__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_information__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_information__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_information__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_status__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_status__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_status__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_status__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_status__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_status__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_status__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_status__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_status__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_status__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_status__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_status__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_dump__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_dump__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_dump__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_dump__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_dump__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_dump__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_dump__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_dump__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_dump__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_dump__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_dump__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_dump__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_dump__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_dump__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_dump__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_dump__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_dump__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_dump__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_inject_data__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_inject_data__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_inject_data__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_inject_data__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_inject_data__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_inject_data__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_inject_data__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_inject_data__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_inject_data__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_inject_data__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_inject_data__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_inject_data__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_inject_data__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_inject_data__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_inject_data__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_inject_data__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_inject_data__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_inject_data__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/heater_status__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/heater_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/heater_status__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/heater_status__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/heater_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/heater_status__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/heater_status__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/heater_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/heater_status__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/heater_status__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/heater_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/heater_status__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/heater_status__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/heater_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/heater_status__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/heater_status__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/heater_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/heater_status__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/home_position__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/home_position__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/home_position__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/home_position__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/home_position__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/home_position__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/home_position__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/home_position__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/home_position__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/home_position__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/home_position__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/home_position__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/home_position__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/home_position__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/home_position__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/home_position__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/home_position__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/home_position__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/hover_thrust_estimate__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/hover_thrust_estimate__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/hover_thrust_estimate__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/hover_thrust_estimate__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/hover_thrust_estimate__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/hover_thrust_estimate__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/hover_thrust_estimate__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/hover_thrust_estimate__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/hover_thrust_estimate__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/hover_thrust_estimate__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/hover_thrust_estimate__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/hover_thrust_estimate__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/hover_thrust_estimate__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/hover_thrust_estimate__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/hover_thrust_estimate__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/hover_thrust_estimate__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/hover_thrust_estimate__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/hover_thrust_estimate__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/input_rc__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/input_rc__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/input_rc__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/input_rc__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/input_rc__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/input_rc__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/input_rc__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/input_rc__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/input_rc__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/input_rc__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/input_rc__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/input_rc__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/input_rc__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/input_rc__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/input_rc__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/input_rc__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/input_rc__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/input_rc__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/iridiumsbd_status__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/iridiumsbd_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/iridiumsbd_status__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/iridiumsbd_status__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/iridiumsbd_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/iridiumsbd_status__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/iridiumsbd_status__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/iridiumsbd_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/iridiumsbd_status__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/iridiumsbd_status__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/iridiumsbd_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/iridiumsbd_status__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/iridiumsbd_status__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/iridiumsbd_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/iridiumsbd_status__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/iridiumsbd_status__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/iridiumsbd_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/iridiumsbd_status__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/irlock_report__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/irlock_report__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/irlock_report__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/irlock_report__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/irlock_report__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/irlock_report__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/irlock_report__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/irlock_report__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/irlock_report__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/irlock_report__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/irlock_report__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/irlock_report__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/irlock_report__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/irlock_report__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/irlock_report__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/irlock_report__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/irlock_report__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/irlock_report__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_gear__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_gear__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_gear__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_gear__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_gear__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_gear__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_gear__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_gear__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_gear__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_gear__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_gear__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_gear__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_gear__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_gear__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_gear__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_gear__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_gear__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_gear__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_innovations__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_innovations__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_innovations__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_innovations__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_innovations__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_innovations__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_innovations__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_innovations__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_innovations__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_innovations__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_innovations__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_innovations__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_innovations__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_innovations__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_innovations__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_innovations__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_innovations__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_innovations__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_pose__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_pose__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_pose__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_pose__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_pose__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_pose__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_pose__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_pose__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_pose__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_pose__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_pose__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_pose__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_pose__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_pose__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_pose__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_pose__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_pose__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_pose__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/led_control__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/led_control__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/led_control__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/led_control__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/led_control__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/led_control__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/led_control__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/led_control__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/led_control__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/led_control__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/led_control__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/led_control__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/led_control__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/led_control__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/led_control__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/led_control__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/led_control__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/led_control__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/log_message__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/log_message__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/log_message__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/log_message__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/log_message__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/log_message__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/log_message__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/log_message__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/log_message__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/log_message__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/log_message__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/log_message__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/log_message__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/log_message__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/log_message__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/log_message__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/log_message__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/log_message__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/logger_status__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/logger_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/logger_status__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/logger_status__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/logger_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/logger_status__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/logger_status__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/logger_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/logger_status__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/logger_status__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/logger_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/logger_status__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/logger_status__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/logger_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/logger_status__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/logger_status__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/logger_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/logger_status__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/mag_worker_data__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/mag_worker_data__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mag_worker_data__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/mag_worker_data__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/mag_worker_data__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mag_worker_data__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/mag_worker_data__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/mag_worker_data__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mag_worker_data__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/mag_worker_data__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/mag_worker_data__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mag_worker_data__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/mag_worker_data__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/mag_worker_data__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mag_worker_data__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/mag_worker_data__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/mag_worker_data__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mag_worker_data__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_setpoint__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_setpoint__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_setpoint__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_setpoint__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_setpoint__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_setpoint__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_setpoint__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_setpoint__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_setpoint__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_setpoint__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_setpoint__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_setpoint__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_setpoint__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_setpoint__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_setpoint__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_setpoint__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_setpoint__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_setpoint__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_switches__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_switches__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_switches__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_switches__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_switches__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_switches__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_switches__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_switches__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_switches__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_switches__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_switches__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_switches__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_switches__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_switches__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_switches__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_switches__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_switches__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_switches__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/mavlink_log__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/mavlink_log__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mavlink_log__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/mavlink_log__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/mavlink_log__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mavlink_log__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/mavlink_log__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/mavlink_log__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mavlink_log__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/mavlink_log__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/mavlink_log__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mavlink_log__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/mavlink_log__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/mavlink_log__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mavlink_log__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/mavlink_log__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/mavlink_log__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mavlink_log__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission_result__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission_result__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission_result__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission_result__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission_result__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission_result__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission_result__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission_result__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission_result__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission_result__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission_result__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission_result__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission_result__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission_result__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission_result__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission_result__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission_result__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission_result__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/mount_orientation__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/mount_orientation__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mount_orientation__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/mount_orientation__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/mount_orientation__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mount_orientation__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/mount_orientation__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/mount_orientation__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mount_orientation__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/mount_orientation__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/mount_orientation__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mount_orientation__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/mount_orientation__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/mount_orientation__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mount_orientation__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/mount_orientation__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/mount_orientation__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/mount_orientation__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/multirotor_motor_limits__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/multirotor_motor_limits__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/multirotor_motor_limits__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/multirotor_motor_limits__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/multirotor_motor_limits__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/multirotor_motor_limits__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/multirotor_motor_limits__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/multirotor_motor_limits__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/multirotor_motor_limits__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/multirotor_motor_limits__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/multirotor_motor_limits__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/multirotor_motor_limits__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/multirotor_motor_limits__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/multirotor_motor_limits__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/multirotor_motor_limits__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/multirotor_motor_limits__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/multirotor_motor_limits__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/multirotor_motor_limits__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/navigator_mission_item__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/navigator_mission_item__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/navigator_mission_item__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/navigator_mission_item__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/navigator_mission_item__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/navigator_mission_item__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/navigator_mission_item__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/navigator_mission_item__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/navigator_mission_item__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/navigator_mission_item__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/navigator_mission_item__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/navigator_mission_item__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/navigator_mission_item__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/navigator_mission_item__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/navigator_mission_item__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/navigator_mission_item__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/navigator_mission_item__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/navigator_mission_item__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance_fused__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance_fused__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance_fused__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance_fused__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance_fused__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance_fused__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance_fused__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance_fused__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance_fused__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance_fused__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance_fused__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance_fused__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance_fused__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance_fused__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance_fused__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance_fused__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance_fused__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance_fused__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/offboard_control_mode__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/offboard_control_mode__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/offboard_control_mode__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/offboard_control_mode__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/offboard_control_mode__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/offboard_control_mode__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/offboard_control_mode__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/offboard_control_mode__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/offboard_control_mode__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/offboard_control_mode__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/offboard_control_mode__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/offboard_control_mode__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/offboard_control_mode__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/offboard_control_mode__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/offboard_control_mode__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/offboard_control_mode__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/offboard_control_mode__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/offboard_control_mode__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/onboard_computer_status__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/onboard_computer_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/onboard_computer_status__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/onboard_computer_status__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/onboard_computer_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/onboard_computer_status__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/onboard_computer_status__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/onboard_computer_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/onboard_computer_status__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/onboard_computer_status__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/onboard_computer_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/onboard_computer_status__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/onboard_computer_status__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/onboard_computer_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/onboard_computer_status__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/onboard_computer_status__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/onboard_computer_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/onboard_computer_status__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/optical_flow__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/optical_flow__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/optical_flow__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/optical_flow__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/optical_flow__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/optical_flow__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/optical_flow__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/optical_flow__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/optical_flow__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/optical_flow__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/optical_flow__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/optical_flow__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/optical_flow__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/optical_flow__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/optical_flow__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/optical_flow__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/optical_flow__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/optical_flow__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_multitest__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_multitest__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_multitest__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_multitest__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_multitest__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_multitest__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_multitest__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_multitest__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_multitest__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_multitest__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_multitest__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_multitest__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_multitest__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_multitest__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_multitest__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_multitest__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_multitest__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_multitest__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_large__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_large__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_large__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_large__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_large__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_large__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_large__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_large__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_large__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_large__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_large__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_large__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_large__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_large__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_large__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_large__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_large__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_large__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_multi__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_multi__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_multi__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_multi__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_multi__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_multi__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_multi__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_multi__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_multi__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_multi__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_multi__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_multi__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_multi__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_multi__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_multi__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_multi__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_multi__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_multi__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/orbit_status__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/orbit_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orbit_status__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/orbit_status__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orbit_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orbit_status__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/orbit_status__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/orbit_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orbit_status__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/orbit_status__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orbit_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orbit_status__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/orbit_status__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/orbit_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orbit_status__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/orbit_status__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orbit_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/orbit_status__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/parameter_update__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/parameter_update__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/parameter_update__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/parameter_update__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/parameter_update__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/parameter_update__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/parameter_update__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/parameter_update__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/parameter_update__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/parameter_update__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/parameter_update__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/parameter_update__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/parameter_update__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/parameter_update__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/parameter_update__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/parameter_update__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/parameter_update__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/parameter_update__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/ping__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/ping__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ping__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/ping__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/ping__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ping__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/ping__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/ping__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ping__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/ping__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/ping__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ping__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/ping__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/ping__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ping__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/ping__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/ping__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ping__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_landing_status__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_landing_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_landing_status__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_landing_status__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_landing_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_landing_status__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_landing_status__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_landing_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_landing_status__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_landing_status__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_landing_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_landing_status__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_landing_status__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_landing_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_landing_status__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_landing_status__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_landing_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_landing_status__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_status__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_status__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_status__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_status__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_status__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_status__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_status__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_status__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_status__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_status__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_status__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_status__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint_triplet__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint_triplet__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint_triplet__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint_triplet__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint_triplet__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint_triplet__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint_triplet__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint_triplet__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint_triplet__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint_triplet__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint_triplet__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint_triplet__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint_triplet__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint_triplet__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint_triplet__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint_triplet__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint_triplet__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint_triplet__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_button_state__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_button_state__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_button_state__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_button_state__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_button_state__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_button_state__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_button_state__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_button_state__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_button_state__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_button_state__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_button_state__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_button_state__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_button_state__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_button_state__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_button_state__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_button_state__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_button_state__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_button_state__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_monitor__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_monitor__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_monitor__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_monitor__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_monitor__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_monitor__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_monitor__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_monitor__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_monitor__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_monitor__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_monitor__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_monitor__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_monitor__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_monitor__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_monitor__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_monitor__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_monitor__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_monitor__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/pwm_input__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/pwm_input__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/pwm_input__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/pwm_input__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/pwm_input__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/pwm_input__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/pwm_input__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/pwm_input__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/pwm_input__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/pwm_input__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/pwm_input__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/pwm_input__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/pwm_input__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/pwm_input__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/pwm_input__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/pwm_input__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/pwm_input__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/pwm_input__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/px4_io_status__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/px4_io_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/px4_io_status__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/px4_io_status__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/px4_io_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/px4_io_status__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/px4_io_status__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/px4_io_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/px4_io_status__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/px4_io_status__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/px4_io_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/px4_io_status__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/px4_io_status__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/px4_io_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/px4_io_status__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/px4_io_status__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/px4_io_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/px4_io_status__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_req__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_req__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_req__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_req__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_req__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_req__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_req__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_req__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_req__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_req__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_req__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_req__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_req__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_req__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_req__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_req__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_req__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_req__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_retval__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_retval__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_retval__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_retval__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_retval__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_retval__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_retval__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_retval__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_retval__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_retval__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_retval__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_retval__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_retval__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_retval__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_retval__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_retval__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_retval__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_retval__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/radio_status__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/radio_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/radio_status__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/radio_status__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/radio_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/radio_status__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/radio_status__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/radio_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/radio_status__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/radio_status__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/radio_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/radio_status__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/radio_status__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/radio_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/radio_status__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/radio_status__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/radio_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/radio_status__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/rate_ctrl_status__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/rate_ctrl_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rate_ctrl_status__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/rate_ctrl_status__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/rate_ctrl_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rate_ctrl_status__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/rate_ctrl_status__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/rate_ctrl_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rate_ctrl_status__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/rate_ctrl_status__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/rate_ctrl_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rate_ctrl_status__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/rate_ctrl_status__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/rate_ctrl_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rate_ctrl_status__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/rate_ctrl_status__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/rate_ctrl_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rate_ctrl_status__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_channels__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_channels__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_channels__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_channels__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_channels__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_channels__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_channels__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_channels__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_channels__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_channels__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_channels__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_channels__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_channels__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_channels__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_channels__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_channels__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_channels__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_channels__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_parameter_map__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_parameter_map__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_parameter_map__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_parameter_map__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_parameter_map__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_parameter_map__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_parameter_map__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_parameter_map__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_parameter_map__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_parameter_map__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_parameter_map__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_parameter_map__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_parameter_map__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_parameter_map__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_parameter_map__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_parameter_map__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_parameter_map__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_parameter_map__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/rpm__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/rpm__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rpm__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/rpm__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/rpm__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rpm__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/rpm__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/rpm__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rpm__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/rpm__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/rpm__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rpm__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/rpm__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/rpm__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rpm__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/rpm__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/rpm__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rpm__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/rtl_flight_time__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/rtl_flight_time__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rtl_flight_time__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/rtl_flight_time__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/rtl_flight_time__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rtl_flight_time__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/rtl_flight_time__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/rtl_flight_time__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rtl_flight_time__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/rtl_flight_time__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/rtl_flight_time__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rtl_flight_time__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/rtl_flight_time__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/rtl_flight_time__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rtl_flight_time__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/rtl_flight_time__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/rtl_flight_time__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/rtl_flight_time__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/safety__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/safety__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/safety__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/safety__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/safety__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/safety__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/safety__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/safety__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/safety__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/safety__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/safety__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/safety__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/safety__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/safety__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/safety__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/safety__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/safety__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/safety__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/satellite_info__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/satellite_info__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/satellite_info__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/satellite_info__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/satellite_info__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/satellite_info__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/satellite_info__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/satellite_info__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/satellite_info__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/satellite_info__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/satellite_info__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/satellite_info__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/satellite_info__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/satellite_info__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/satellite_info__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/satellite_info__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/satellite_info__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/satellite_info__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel_fifo__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel_fifo__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel_fifo__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel_fifo__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel_fifo__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel_fifo__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel_fifo__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel_fifo__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel_fifo__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel_fifo__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel_fifo__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel_fifo__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel_fifo__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel_fifo__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel_fifo__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel_fifo__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel_fifo__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel_fifo__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_baro__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_baro__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_baro__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_baro__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_baro__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_baro__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_baro__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_baro__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_baro__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_baro__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_baro__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_baro__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_baro__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_baro__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_baro__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_baro__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_baro__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_baro__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_combined__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_combined__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_combined__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_combined__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_combined__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_combined__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_combined__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_combined__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_combined__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_combined__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_combined__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_combined__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_combined__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_combined__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_combined__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_combined__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_combined__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_combined__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_correction__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_correction__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_correction__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_correction__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_correction__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_correction__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_correction__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_correction__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_correction__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_correction__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_correction__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_correction__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_correction__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_correction__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_correction__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_correction__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_correction__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_correction__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gps__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gps__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gps__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gps__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gps__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gps__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gps__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gps__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gps__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gps__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gps__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gps__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gps__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gps__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gps__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gps__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gps__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gps__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fft__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fft__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fft__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fft__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fft__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fft__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fft__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fft__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fft__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fft__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fft__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fft__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fft__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fft__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fft__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fft__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fft__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fft__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fifo__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fifo__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fifo__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fifo__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fifo__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fifo__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fifo__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fifo__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fifo__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fifo__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fifo__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fifo__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fifo__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fifo__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fifo__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fifo__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fifo__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fifo__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_mag__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_mag__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_mag__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_mag__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_mag__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_mag__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_mag__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_mag__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_mag__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_mag__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_mag__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_mag__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_mag__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_mag__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_mag__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_mag__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_mag__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_mag__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_preflight_mag__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_preflight_mag__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_preflight_mag__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_preflight_mag__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_preflight_mag__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_preflight_mag__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_preflight_mag__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_preflight_mag__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_preflight_mag__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_preflight_mag__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_preflight_mag__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_preflight_mag__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_preflight_mag__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_preflight_mag__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_preflight_mag__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_preflight_mag__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_preflight_mag__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_preflight_mag__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_selection__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_selection__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_selection__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_selection__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_selection__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_selection__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_selection__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_selection__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_selection__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_selection__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_selection__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_selection__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_selection__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_selection__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_selection__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_selection__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_selection__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_selection__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensors_status_imu__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensors_status_imu__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensors_status_imu__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensors_status_imu__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensors_status_imu__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensors_status_imu__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensors_status_imu__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensors_status_imu__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensors_status_imu__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensors_status_imu__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensors_status_imu__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensors_status_imu__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensors_status_imu__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensors_status_imu__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensors_status_imu__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensors_status_imu__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensors_status_imu__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensors_status_imu__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/system_power__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/system_power__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/system_power__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/system_power__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/system_power__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/system_power__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/system_power__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/system_power__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/system_power__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/system_power__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/system_power__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/system_power__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/system_power__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/system_power__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/system_power__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/system_power__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/system_power__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/system_power__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/takeoff_status__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/takeoff_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/takeoff_status__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/takeoff_status__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/takeoff_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/takeoff_status__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/takeoff_status__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/takeoff_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/takeoff_status__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/takeoff_status__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/takeoff_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/takeoff_status__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/takeoff_status__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/takeoff_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/takeoff_status__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/takeoff_status__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/takeoff_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/takeoff_status__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/task_stack_info__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/task_stack_info__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/task_stack_info__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/task_stack_info__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/task_stack_info__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/task_stack_info__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/task_stack_info__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/task_stack_info__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/task_stack_info__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/task_stack_info__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/task_stack_info__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/task_stack_info__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/task_stack_info__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/task_stack_info__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/task_stack_info__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/task_stack_info__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/task_stack_info__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/task_stack_info__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/tecs_status__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/tecs_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/tecs_status__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/tecs_status__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/tecs_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/tecs_status__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/tecs_status__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/tecs_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/tecs_status__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/tecs_status__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/tecs_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/tecs_status__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/tecs_status__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/tecs_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/tecs_status__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/tecs_status__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/tecs_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/tecs_status__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/telemetry_status__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/telemetry_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/telemetry_status__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/telemetry_status__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/telemetry_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/telemetry_status__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/telemetry_status__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/telemetry_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/telemetry_status__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/telemetry_status__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/telemetry_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/telemetry_status__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/telemetry_status__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/telemetry_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/telemetry_status__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/telemetry_status__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/telemetry_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/telemetry_status__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/test_motor__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/test_motor__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/test_motor__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/test_motor__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/test_motor__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/test_motor__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/test_motor__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/test_motor__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/test_motor__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/test_motor__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/test_motor__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/test_motor__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/test_motor__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/test_motor__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/test_motor__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/test_motor__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/test_motor__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/test_motor__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync_status__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync_status__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync_status__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync_status__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync_status__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync_status__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync_status__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync_status__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync_status__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync_status__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync_status__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync_status__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_bezier__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_bezier__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_bezier__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_bezier__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_bezier__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_bezier__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_bezier__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_bezier__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_bezier__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_bezier__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_bezier__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_bezier__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_bezier__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_bezier__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_bezier__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_bezier__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_bezier__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_bezier__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_setpoint__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_setpoint__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_setpoint__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_setpoint__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_setpoint__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_setpoint__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_setpoint__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_setpoint__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_setpoint__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_setpoint__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_setpoint__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_setpoint__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_setpoint__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_setpoint__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_setpoint__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_setpoint__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_setpoint__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_setpoint__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_waypoint__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_waypoint__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_waypoint__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_waypoint__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_waypoint__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_waypoint__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_waypoint__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_waypoint__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_waypoint__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_waypoint__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_waypoint__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_waypoint__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_waypoint__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_waypoint__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_waypoint__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_waypoint__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_waypoint__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_waypoint__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/transponder_report__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/transponder_report__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/transponder_report__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/transponder_report__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/transponder_report__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/transponder_report__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/transponder_report__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/transponder_report__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/transponder_report__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/transponder_report__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/transponder_report__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/transponder_report__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/transponder_report__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/transponder_report__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/transponder_report__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/transponder_report__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/transponder_report__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/transponder_report__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/tune_control__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/tune_control__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/tune_control__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/tune_control__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/tune_control__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/tune_control__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/tune_control__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/tune_control__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/tune_control__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/tune_control__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/tune_control__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/tune_control__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/tune_control__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/tune_control__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/tune_control__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/tune_control__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/tune_control__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/tune_control__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_request__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_request__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_request__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_request__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_request__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_request__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_request__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_request__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_request__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_request__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_request__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_request__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_request__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_request__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_request__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_request__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_request__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_request__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_value__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_value__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_value__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_value__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_value__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_value__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_value__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_value__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_value__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_value__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_value__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_value__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_value__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_value__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_value__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_value__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_value__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_value__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream_ack__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream_ack__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream_ack__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream_ack__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream_ack__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream_ack__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream_ack__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream_ack__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream_ack__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream_ack__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream_ack__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream_ack__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream_ack__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream_ack__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream_ack__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream_ack__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream_ack__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream_ack__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_acceleration__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_acceleration__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_acceleration__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_acceleration__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_acceleration__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_acceleration__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_acceleration__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_acceleration__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_acceleration__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_acceleration__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_acceleration__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_acceleration__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_acceleration__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_acceleration__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_acceleration__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_acceleration__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_acceleration__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_acceleration__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_air_data__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_air_data__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_air_data__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_air_data__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_air_data__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_air_data__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_air_data__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_air_data__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_air_data__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_air_data__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_air_data__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_air_data__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_air_data__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_air_data__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_air_data__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_air_data__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_air_data__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_air_data__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command_ack__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command_ack__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command_ack__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command_ack__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command_ack__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command_ack__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command_ack__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command_ack__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command_ack__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command_ack__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command_ack__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command_ack__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command_ack__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command_ack__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command_ack__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command_ack__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command_ack__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command_ack__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_constraints__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_constraints__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_constraints__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_constraints__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_constraints__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_constraints__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_constraints__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_constraints__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_constraints__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_constraints__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_constraints__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_constraints__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_constraints__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_constraints__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_constraints__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_constraints__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_constraints__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_constraints__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_control_mode__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_control_mode__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_control_mode__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_control_mode__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_control_mode__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_control_mode__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_control_mode__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_control_mode__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_control_mode__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_control_mode__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_control_mode__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_control_mode__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_control_mode__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_control_mode__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_control_mode__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_control_mode__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_control_mode__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_control_mode__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_gps_position__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_gps_position__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_gps_position__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_gps_position__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_gps_position__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_gps_position__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_gps_position__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_gps_position__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_gps_position__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_gps_position__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_gps_position__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_gps_position__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_gps_position__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_gps_position__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_gps_position__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_gps_position__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_gps_position__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_gps_position__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu_status__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu_status__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu_status__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu_status__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu_status__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu_status__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu_status__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu_status__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu_status__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu_status__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu_status__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu_status__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_land_detected__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_land_detected__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_land_detected__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_land_detected__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_land_detected__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_land_detected__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_land_detected__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_land_detected__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_land_detected__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_land_detected__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_land_detected__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_land_detected__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_land_detected__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_land_detected__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_land_detected__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_land_detected__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_land_detected__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_land_detected__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_magnetometer__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_magnetometer__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_magnetometer__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_magnetometer__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_magnetometer__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_magnetometer__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_magnetometer__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_magnetometer__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_magnetometer__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_magnetometer__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_magnetometer__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_magnetometer__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_magnetometer__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_magnetometer__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_magnetometer__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_magnetometer__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_magnetometer__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_magnetometer__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_mocap_odometry__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_mocap_odometry__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_mocap_odometry__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_mocap_odometry__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_mocap_odometry__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_mocap_odometry__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_mocap_odometry__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_mocap_odometry__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_mocap_odometry__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_mocap_odometry__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_mocap_odometry__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_mocap_odometry__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_mocap_odometry__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_mocap_odometry__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_mocap_odometry__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_mocap_odometry__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_mocap_odometry__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_mocap_odometry__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_odometry__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_odometry__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_odometry__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_odometry__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_odometry__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_odometry__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_odometry__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_odometry__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_odometry__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_odometry__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_odometry__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_odometry__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_odometry__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_odometry__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_odometry__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_odometry__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_odometry__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_odometry__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_rates_setpoint__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_rates_setpoint__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_rates_setpoint__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_rates_setpoint__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_rates_setpoint__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_rates_setpoint__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_rates_setpoint__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_rates_setpoint__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_rates_setpoint__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_rates_setpoint__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_rates_setpoint__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_rates_setpoint__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_rates_setpoint__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_rates_setpoint__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_rates_setpoint__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_rates_setpoint__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_rates_setpoint__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_rates_setpoint__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_roi__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_roi__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_roi__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_roi__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_roi__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_roi__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_roi__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_roi__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_roi__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_roi__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_roi__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_roi__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_roi__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_roi__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_roi__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_roi__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_roi__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_roi__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status_flags__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status_flags__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status_flags__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status_flags__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status_flags__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status_flags__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status_flags__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status_flags__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status_flags__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status_flags__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status_flags__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status_flags__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status_flags__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status_flags__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status_flags__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status_flags__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status_flags__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status_flags__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_torque_setpoint__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_torque_setpoint__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_torque_setpoint__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_torque_setpoint__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_torque_setpoint__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_torque_setpoint__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_torque_setpoint__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_torque_setpoint__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_torque_setpoint__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_torque_setpoint__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_torque_setpoint__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_torque_setpoint__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_torque_setpoint__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_torque_setpoint__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_torque_setpoint__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_torque_setpoint__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_torque_setpoint__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_torque_setpoint__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_vision_attitude__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_vision_attitude__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_vision_attitude__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_vision_attitude__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_vision_attitude__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_vision_attitude__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_vision_attitude__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_vision_attitude__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_vision_attitude__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_vision_attitude__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_vision_attitude__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_vision_attitude__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_vision_attitude__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_vision_attitude__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_vision_attitude__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_vision_attitude__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_vision_attitude__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_vision_attitude__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_visual_odometry__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_visual_odometry__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_visual_odometry__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_visual_odometry__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_visual_odometry__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_visual_odometry__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_visual_odometry__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_visual_odometry__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_visual_odometry__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_visual_odometry__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_visual_odometry__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_visual_odometry__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_visual_odometry__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_visual_odometry__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_visual_odometry__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_visual_odometry__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_visual_odometry__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_visual_odometry__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/vtol_vehicle_status__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vtol_vehicle_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vtol_vehicle_status__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vtol_vehicle_status__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vtol_vehicle_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vtol_vehicle_status__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/vtol_vehicle_status__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vtol_vehicle_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vtol_vehicle_status__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vtol_vehicle_status__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vtol_vehicle_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vtol_vehicle_status__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/vtol_vehicle_status__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/vtol_vehicle_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vtol_vehicle_status__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/vtol_vehicle_status__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vtol_vehicle_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/vtol_vehicle_status__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/wheel_encoders__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/wheel_encoders__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/wheel_encoders__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/wheel_encoders__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/wheel_encoders__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/wheel_encoders__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/wheel_encoders__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/wheel_encoders__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/wheel_encoders__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/wheel_encoders__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/wheel_encoders__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/wheel_encoders__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/wheel_encoders__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/wheel_encoders__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/wheel_encoders__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/wheel_encoders__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/wheel_encoders__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/wheel_encoders__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/wind__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/wind__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/wind__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/wind__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/wind__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/wind__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/wind__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/wind__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/wind__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/wind__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/wind__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/wind__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/wind__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/wind__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/wind__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/wind__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/wind__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/wind__type_support_c.cpp.s rosidl_typesupport_fastrtps_c/px4_msgs/msg/yaw_estimator_status__type_support_c.o: rosidl_typesupport_fastrtps_c/px4_msgs/msg/yaw_estimator_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/yaw_estimator_status__type_support_c.o # target to build an object file rosidl_typesupport_fastrtps_c/px4_msgs/msg/yaw_estimator_status__type_support_c.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/yaw_estimator_status__type_support_c.cpp.o .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/yaw_estimator_status__type_support_c.cpp.o rosidl_typesupport_fastrtps_c/px4_msgs/msg/yaw_estimator_status__type_support_c.i: rosidl_typesupport_fastrtps_c/px4_msgs/msg/yaw_estimator_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/yaw_estimator_status__type_support_c.i # target to preprocess a source file rosidl_typesupport_fastrtps_c/px4_msgs/msg/yaw_estimator_status__type_support_c.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/yaw_estimator_status__type_support_c.cpp.i .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/yaw_estimator_status__type_support_c.cpp.i rosidl_typesupport_fastrtps_c/px4_msgs/msg/yaw_estimator_status__type_support_c.s: rosidl_typesupport_fastrtps_c/px4_msgs/msg/yaw_estimator_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/yaw_estimator_status__type_support_c.s # target to generate assembly for a file rosidl_typesupport_fastrtps_c/px4_msgs/msg/yaw_estimator_status__type_support_c.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/rosidl_typesupport_fastrtps_c/px4_msgs/msg/yaw_estimator_status__type_support_c.cpp.s .PHONY : rosidl_typesupport_fastrtps_c/px4_msgs/msg/yaw_estimator_status__type_support_c.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_armed__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_armed__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_armed__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_armed__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_armed__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_armed__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_armed__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_armed__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_armed__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_armed__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_armed__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_armed__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_armed__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_armed__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_armed__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_armed__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_armed__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_armed__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls0__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls0__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls0__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls0__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls0__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls0__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls0__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls0__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls0__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls0__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls0__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls0__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls0__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls0__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls0__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls0__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls0__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls0__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls1__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls1__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls1__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls1__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls1__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls1__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls1__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls1__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls1__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls1__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls1__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls1__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls1__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls1__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls1__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls1__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls1__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls1__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls2__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls2__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls2__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls2__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls2__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls2__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls2__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls2__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls2__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls2__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls2__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls2__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls2__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls2__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls2__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls2__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls2__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls2__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls3__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls3__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls3__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls3__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls3__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls3__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls3__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls3__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls3__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls3__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls3__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls3__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls3__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls3__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls3__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls3__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls3__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls3__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls4__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls4__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls4__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls4__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls4__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls4__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls4__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls4__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls4__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls4__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls4__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls4__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls4__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls4__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls4__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls4__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls4__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls4__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls5__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls5__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls5__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls5__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls5__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls5__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls5__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls5__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls5__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls5__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls5__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls5__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls5__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls5__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls5__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls5__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls5__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls5__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_fw__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_fw__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_fw__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_fw__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_fw__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_fw__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_fw__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_fw__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_fw__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_fw__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_fw__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_fw__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_fw__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_fw__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_fw__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_fw__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_fw__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_fw__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_mc__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_mc__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_mc__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_mc__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_mc__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_mc__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_mc__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_mc__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_mc__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_mc__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_mc__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_mc__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_mc__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_mc__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_mc__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_mc__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_mc__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_mc__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_outputs__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_outputs__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_outputs__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_outputs__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_outputs__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_outputs__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_outputs__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_outputs__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_outputs__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_outputs__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_outputs__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_outputs__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_outputs__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_outputs__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_outputs__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_outputs__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_outputs__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_outputs__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/adc_report__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/adc_report__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/adc_report__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/adc_report__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/adc_report__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/adc_report__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/adc_report__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/adc_report__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/adc_report__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/adc_report__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/adc_report__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/adc_report__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/adc_report__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/adc_report__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/adc_report__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/adc_report__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/adc_report__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/adc_report__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_validated__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_validated__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_validated__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_validated__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_validated__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_validated__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_validated__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_validated__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_validated__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_validated__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_validated__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_validated__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_validated__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_validated__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_validated__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_validated__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_validated__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_validated__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_wind__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_wind__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_wind__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_wind__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_wind__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_wind__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_wind__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_wind__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_wind__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_wind__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_wind__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_wind__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_wind__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_wind__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_wind__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_wind__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_wind__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_wind__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/battery_status__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/battery_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/battery_status__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/battery_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/battery_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/battery_status__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/battery_status__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/battery_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/battery_status__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/battery_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/battery_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/battery_status__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/battery_status__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/battery_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/battery_status__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/battery_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/battery_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/battery_status__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_capture__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_capture__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_capture__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_capture__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_capture__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_capture__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_capture__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_capture__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_capture__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_capture__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_capture__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_capture__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_capture__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_capture__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_capture__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_capture__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_capture__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_capture__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger_secondary__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger_secondary__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger_secondary__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger_secondary__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger_secondary__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger_secondary__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger_secondary__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger_secondary__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger_secondary__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger_secondary__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger_secondary__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger_secondary__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger_secondary__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger_secondary__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger_secondary__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger_secondary__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger_secondary__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger_secondary__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cellular_status__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cellular_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cellular_status__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cellular_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cellular_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cellular_status__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cellular_status__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cellular_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cellular_status__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cellular_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cellular_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cellular_status__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cellular_status__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cellular_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cellular_status__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cellular_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cellular_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cellular_status__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_constraints__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_constraints__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_constraints__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_constraints__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_constraints__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_constraints__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_constraints__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_constraints__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_constraints__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_constraints__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_constraints__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_constraints__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_constraints__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_constraints__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_constraints__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_constraints__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_constraints__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_constraints__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_report__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_report__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_report__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_report__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_report__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_report__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_report__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_report__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_report__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_report__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_report__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_report__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_report__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_report__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_report__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_report__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_report__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_report__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/commander_state__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/commander_state__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/commander_state__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/commander_state__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/commander_state__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/commander_state__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/commander_state__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/commander_state__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/commander_state__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/commander_state__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/commander_state__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/commander_state__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/commander_state__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/commander_state__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/commander_state__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/commander_state__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/commander_state__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/commander_state__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/control_allocator_status__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/control_allocator_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/control_allocator_status__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/control_allocator_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/control_allocator_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/control_allocator_status__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/control_allocator_status__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/control_allocator_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/control_allocator_status__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/control_allocator_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/control_allocator_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/control_allocator_status__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/control_allocator_status__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/control_allocator_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/control_allocator_status__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/control_allocator_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/control_allocator_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/control_allocator_status__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cpuload__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cpuload__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cpuload__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cpuload__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cpuload__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cpuload__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cpuload__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cpuload__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cpuload__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cpuload__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cpuload__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cpuload__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cpuload__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cpuload__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cpuload__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cpuload__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cpuload__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cpuload__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_array__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_array__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_array__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_array__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_array__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_array__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_array__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_array__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_array__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_array__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_array__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_array__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_array__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_array__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_array__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_array__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_array__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_array__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_key_value__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_key_value__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_key_value__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_key_value__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_key_value__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_key_value__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_key_value__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_key_value__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_key_value__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_key_value__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_key_value__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_key_value__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_key_value__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_key_value__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_key_value__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_key_value__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_key_value__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_key_value__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_value__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_value__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_value__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_value__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_value__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_value__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_value__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_value__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_value__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_value__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_value__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_value__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_value__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_value__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_value__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_value__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_value__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_value__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_vect__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_vect__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_vect__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_vect__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_vect__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_vect__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_vect__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_vect__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_vect__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_vect__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_vect__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_vect__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_vect__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_vect__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_vect__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_vect__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_vect__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_vect__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/differential_pressure__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/differential_pressure__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/differential_pressure__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/differential_pressure__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/differential_pressure__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/differential_pressure__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/differential_pressure__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/differential_pressure__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/differential_pressure__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/differential_pressure__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/differential_pressure__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/differential_pressure__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/differential_pressure__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/differential_pressure__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/differential_pressure__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/differential_pressure__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/differential_pressure__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/differential_pressure__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/distance_sensor__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/distance_sensor__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/distance_sensor__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/distance_sensor__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/distance_sensor__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/distance_sensor__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/distance_sensor__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/distance_sensor__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/distance_sensor__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/distance_sensor__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/distance_sensor__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/distance_sensor__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/distance_sensor__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/distance_sensor__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/distance_sensor__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/distance_sensor__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/distance_sensor__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/distance_sensor__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf2_timestamps__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf2_timestamps__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf2_timestamps__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf2_timestamps__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf2_timestamps__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf2_timestamps__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf2_timestamps__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf2_timestamps__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf2_timestamps__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf2_timestamps__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf2_timestamps__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf2_timestamps__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf2_timestamps__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf2_timestamps__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf2_timestamps__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf2_timestamps__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf2_timestamps__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf2_timestamps__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf_gps_drift__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf_gps_drift__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf_gps_drift__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf_gps_drift__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf_gps_drift__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf_gps_drift__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf_gps_drift__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf_gps_drift__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf_gps_drift__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf_gps_drift__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf_gps_drift__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf_gps_drift__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf_gps_drift__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf_gps_drift__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf_gps_drift__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf_gps_drift__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf_gps_drift__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf_gps_drift__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_report__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_report__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_report__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_report__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_report__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_report__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_report__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_report__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_report__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_report__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_report__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_report__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_report__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_report__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_report__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_report__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_report__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_report__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_status__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_status__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_status__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_status__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_status__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_status__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_status__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_status__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_status__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_attitude__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_attitude__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_attitude__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_attitude__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_attitude__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_attitude__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_attitude__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_attitude__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_attitude__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_attitude__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_attitude__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_attitude__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_event_flags__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_event_flags__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_event_flags__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_event_flags__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_event_flags__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_event_flags__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_event_flags__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_event_flags__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_event_flags__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_event_flags__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_event_flags__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_event_flags__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_event_flags__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_event_flags__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_event_flags__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_event_flags__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_event_flags__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_event_flags__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_global_position__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_global_position__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_global_position__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_global_position__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_global_position__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_global_position__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_global_position__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_global_position__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_global_position__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_global_position__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_global_position__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_global_position__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_global_position__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_global_position__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_global_position__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_global_position__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_global_position__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_global_position__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_test_ratios__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_test_ratios__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_test_ratios__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_test_ratios__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_test_ratios__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_test_ratios__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_test_ratios__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_test_ratios__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_test_ratios__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_test_ratios__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_test_ratios__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_test_ratios__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_test_ratios__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_test_ratios__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_test_ratios__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_test_ratios__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_test_ratios__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_test_ratios__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_variances__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_variances__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_variances__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_variances__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_variances__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_variances__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_variances__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_variances__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_variances__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_variances__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_variances__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_variances__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_variances__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_variances__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_variances__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_variances__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_variances__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_variances__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovations__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovations__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovations__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovations__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovations__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovations__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovations__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovations__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovations__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovations__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovations__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovations__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovations__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovations__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovations__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovations__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovations__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovations__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_local_position__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_local_position__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_local_position__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_local_position__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_local_position__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_local_position__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_local_position__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_local_position__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_local_position__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_local_position__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_local_position__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_local_position__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_local_position__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_local_position__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_local_position__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_local_position__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_local_position__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_local_position__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_odometry__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_odometry__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_odometry__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_odometry__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_odometry__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_odometry__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_odometry__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_odometry__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_odometry__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_odometry__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_odometry__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_odometry__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_optical_flow_vel__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_optical_flow_vel__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_optical_flow_vel__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_optical_flow_vel__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_optical_flow_vel__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_optical_flow_vel__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_optical_flow_vel__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_optical_flow_vel__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_optical_flow_vel__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_optical_flow_vel__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_optical_flow_vel__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_optical_flow_vel__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_optical_flow_vel__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_optical_flow_vel__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_optical_flow_vel__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_optical_flow_vel__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_optical_flow_vel__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_optical_flow_vel__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_selector_status__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_selector_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_selector_status__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_selector_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_selector_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_selector_status__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_selector_status__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_selector_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_selector_status__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_selector_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_selector_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_selector_status__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_selector_status__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_selector_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_selector_status__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_selector_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_selector_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_selector_status__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_sensor_bias__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_sensor_bias__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_sensor_bias__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_sensor_bias__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_sensor_bias__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_sensor_bias__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_sensor_bias__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_sensor_bias__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_sensor_bias__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_sensor_bias__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_sensor_bias__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_sensor_bias__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_sensor_bias__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_sensor_bias__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_sensor_bias__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_sensor_bias__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_sensor_bias__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_sensor_bias__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_states__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_states__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_states__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_states__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_states__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_states__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_states__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_states__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_states__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_states__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_states__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_states__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_states__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_states__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_states__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_states__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_states__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_states__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status_flags__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status_flags__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status_flags__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status_flags__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status_flags__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status_flags__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status_flags__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status_flags__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status_flags__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status_flags__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status_flags__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status_flags__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status_flags__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status_flags__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status_flags__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status_flags__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status_flags__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status_flags__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_visual_odometry_aligned__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_visual_odometry_aligned__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_visual_odometry_aligned__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_visual_odometry_aligned__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_visual_odometry_aligned__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_visual_odometry_aligned__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_visual_odometry_aligned__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_visual_odometry_aligned__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_visual_odometry_aligned__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_visual_odometry_aligned__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_visual_odometry_aligned__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_visual_odometry_aligned__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_visual_odometry_aligned__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_visual_odometry_aligned__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_visual_odometry_aligned__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_visual_odometry_aligned__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_visual_odometry_aligned__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_visual_odometry_aligned__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_wind__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_wind__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_wind__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_wind__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_wind__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_wind__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_wind__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_wind__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_wind__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_wind__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_wind__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_wind__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_wind__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_wind__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_wind__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_wind__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_wind__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_wind__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/follow_target__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/follow_target__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/follow_target__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/follow_target__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/follow_target__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/follow_target__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/follow_target__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/follow_target__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/follow_target__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/follow_target__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/follow_target__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/follow_target__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/follow_target__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/follow_target__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/follow_target__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/follow_target__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/follow_target__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/follow_target__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/fw_virtual_attitude_setpoint__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/fw_virtual_attitude_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/fw_virtual_attitude_setpoint__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/fw_virtual_attitude_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/fw_virtual_attitude_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/fw_virtual_attitude_setpoint__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/fw_virtual_attitude_setpoint__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/fw_virtual_attitude_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/fw_virtual_attitude_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/fw_virtual_attitude_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/fw_virtual_attitude_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/fw_virtual_attitude_setpoint__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/fw_virtual_attitude_setpoint__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/fw_virtual_attitude_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/fw_virtual_attitude_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/fw_virtual_attitude_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/fw_virtual_attitude_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/fw_virtual_attitude_setpoint__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/generator_status__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/generator_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/generator_status__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/generator_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/generator_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/generator_status__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/generator_status__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/generator_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/generator_status__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/generator_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/generator_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/generator_status__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/generator_status__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/generator_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/generator_status__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/generator_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/generator_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/generator_status__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/geofence_result__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/geofence_result__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/geofence_result__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/geofence_result__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/geofence_result__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/geofence_result__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/geofence_result__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/geofence_result__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/geofence_result__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/geofence_result__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/geofence_result__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/geofence_result__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/geofence_result__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/geofence_result__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/geofence_result__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/geofence_result__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/geofence_result__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/geofence_result__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_attitude_status__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_attitude_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_attitude_status__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_attitude_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_attitude_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_attitude_status__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_attitude_status__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_attitude_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_attitude_status__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_attitude_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_attitude_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_attitude_status__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_attitude_status__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_attitude_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_attitude_status__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_attitude_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_attitude_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_attitude_status__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_information__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_information__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_information__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_information__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_information__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_information__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_information__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_information__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_information__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_information__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_information__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_information__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_information__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_information__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_information__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_information__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_information__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_information__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_set_attitude__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_set_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_set_attitude__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_set_attitude__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_set_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_set_attitude__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_set_attitude__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_set_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_set_attitude__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_set_attitude__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_set_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_set_attitude__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_set_attitude__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_set_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_set_attitude__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_set_attitude__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_set_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_set_attitude__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_information__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_information__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_information__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_information__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_information__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_information__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_information__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_information__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_information__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_information__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_information__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_information__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_information__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_information__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_information__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_information__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_information__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_information__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_attitude__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_attitude__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_attitude__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_attitude__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_attitude__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_attitude__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_attitude__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_attitude__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_attitude__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_attitude__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_attitude__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_attitude__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_manual_control__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_manual_control__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_manual_control__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_manual_control__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_manual_control__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_manual_control__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_manual_control__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_manual_control__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_manual_control__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_manual_control__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_manual_control__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_manual_control__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_manual_control__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_manual_control__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_manual_control__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_manual_control__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_manual_control__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_manual_control__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_status__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_status__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_status__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_status__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_status__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_status__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_status__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_status__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_status__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_dump__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_dump__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_dump__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_dump__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_dump__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_dump__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_dump__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_dump__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_dump__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_dump__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_dump__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_dump__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_dump__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_dump__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_dump__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_dump__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_dump__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_dump__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_inject_data__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_inject_data__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_inject_data__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_inject_data__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_inject_data__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_inject_data__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_inject_data__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_inject_data__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_inject_data__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_inject_data__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_inject_data__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_inject_data__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_inject_data__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_inject_data__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_inject_data__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_inject_data__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_inject_data__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_inject_data__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/heater_status__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/heater_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/heater_status__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/heater_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/heater_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/heater_status__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/heater_status__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/heater_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/heater_status__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/heater_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/heater_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/heater_status__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/heater_status__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/heater_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/heater_status__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/heater_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/heater_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/heater_status__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/home_position__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/home_position__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/home_position__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/home_position__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/home_position__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/home_position__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/home_position__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/home_position__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/home_position__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/home_position__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/home_position__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/home_position__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/home_position__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/home_position__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/home_position__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/home_position__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/home_position__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/home_position__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/hover_thrust_estimate__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/hover_thrust_estimate__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/hover_thrust_estimate__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/hover_thrust_estimate__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/hover_thrust_estimate__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/hover_thrust_estimate__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/hover_thrust_estimate__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/hover_thrust_estimate__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/hover_thrust_estimate__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/hover_thrust_estimate__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/hover_thrust_estimate__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/hover_thrust_estimate__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/hover_thrust_estimate__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/hover_thrust_estimate__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/hover_thrust_estimate__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/hover_thrust_estimate__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/hover_thrust_estimate__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/hover_thrust_estimate__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/input_rc__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/input_rc__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/input_rc__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/input_rc__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/input_rc__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/input_rc__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/input_rc__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/input_rc__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/input_rc__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/input_rc__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/input_rc__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/input_rc__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/input_rc__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/input_rc__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/input_rc__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/input_rc__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/input_rc__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/input_rc__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/iridiumsbd_status__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/iridiumsbd_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/iridiumsbd_status__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/iridiumsbd_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/iridiumsbd_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/iridiumsbd_status__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/iridiumsbd_status__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/iridiumsbd_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/iridiumsbd_status__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/iridiumsbd_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/iridiumsbd_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/iridiumsbd_status__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/iridiumsbd_status__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/iridiumsbd_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/iridiumsbd_status__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/iridiumsbd_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/iridiumsbd_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/iridiumsbd_status__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/irlock_report__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/irlock_report__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/irlock_report__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/irlock_report__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/irlock_report__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/irlock_report__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/irlock_report__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/irlock_report__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/irlock_report__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/irlock_report__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/irlock_report__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/irlock_report__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/irlock_report__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/irlock_report__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/irlock_report__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/irlock_report__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/irlock_report__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/irlock_report__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_gear__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_gear__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_gear__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_gear__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_gear__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_gear__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_gear__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_gear__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_gear__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_gear__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_gear__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_gear__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_gear__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_gear__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_gear__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_gear__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_gear__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_gear__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_innovations__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_innovations__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_innovations__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_innovations__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_innovations__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_innovations__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_innovations__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_innovations__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_innovations__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_innovations__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_innovations__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_innovations__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_innovations__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_innovations__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_innovations__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_innovations__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_innovations__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_innovations__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_pose__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_pose__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_pose__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_pose__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_pose__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_pose__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_pose__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_pose__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_pose__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_pose__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_pose__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_pose__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_pose__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_pose__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_pose__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_pose__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_pose__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_pose__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/led_control__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/led_control__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/led_control__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/led_control__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/led_control__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/led_control__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/led_control__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/led_control__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/led_control__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/led_control__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/led_control__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/led_control__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/led_control__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/led_control__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/led_control__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/led_control__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/led_control__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/led_control__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/log_message__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/log_message__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/log_message__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/log_message__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/log_message__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/log_message__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/log_message__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/log_message__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/log_message__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/log_message__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/log_message__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/log_message__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/log_message__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/log_message__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/log_message__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/log_message__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/log_message__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/log_message__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/logger_status__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/logger_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/logger_status__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/logger_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/logger_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/logger_status__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/logger_status__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/logger_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/logger_status__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/logger_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/logger_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/logger_status__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/logger_status__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/logger_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/logger_status__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/logger_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/logger_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/logger_status__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mag_worker_data__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mag_worker_data__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mag_worker_data__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mag_worker_data__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mag_worker_data__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mag_worker_data__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mag_worker_data__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mag_worker_data__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mag_worker_data__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mag_worker_data__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mag_worker_data__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mag_worker_data__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mag_worker_data__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mag_worker_data__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mag_worker_data__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mag_worker_data__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mag_worker_data__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mag_worker_data__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_setpoint__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_setpoint__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_setpoint__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_setpoint__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_setpoint__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_setpoint__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_setpoint__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_switches__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_switches__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_switches__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_switches__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_switches__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_switches__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_switches__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_switches__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_switches__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_switches__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_switches__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_switches__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_switches__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_switches__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_switches__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_switches__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_switches__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_switches__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mavlink_log__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mavlink_log__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mavlink_log__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mavlink_log__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mavlink_log__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mavlink_log__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mavlink_log__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mavlink_log__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mavlink_log__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mavlink_log__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mavlink_log__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mavlink_log__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mavlink_log__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mavlink_log__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mavlink_log__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mavlink_log__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mavlink_log__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mavlink_log__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mc_virtual_attitude_setpoint__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mc_virtual_attitude_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mc_virtual_attitude_setpoint__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mc_virtual_attitude_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mc_virtual_attitude_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mc_virtual_attitude_setpoint__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mc_virtual_attitude_setpoint__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mc_virtual_attitude_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mc_virtual_attitude_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mc_virtual_attitude_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mc_virtual_attitude_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mc_virtual_attitude_setpoint__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mc_virtual_attitude_setpoint__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mc_virtual_attitude_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mc_virtual_attitude_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mc_virtual_attitude_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mc_virtual_attitude_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mc_virtual_attitude_setpoint__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission_result__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission_result__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission_result__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission_result__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission_result__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission_result__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission_result__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission_result__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission_result__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission_result__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission_result__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission_result__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission_result__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission_result__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission_result__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission_result__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission_result__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission_result__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mount_orientation__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mount_orientation__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mount_orientation__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mount_orientation__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mount_orientation__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mount_orientation__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mount_orientation__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mount_orientation__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mount_orientation__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mount_orientation__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mount_orientation__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mount_orientation__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mount_orientation__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mount_orientation__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mount_orientation__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mount_orientation__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mount_orientation__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mount_orientation__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/multirotor_motor_limits__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/multirotor_motor_limits__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/multirotor_motor_limits__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/multirotor_motor_limits__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/multirotor_motor_limits__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/multirotor_motor_limits__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/multirotor_motor_limits__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/multirotor_motor_limits__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/multirotor_motor_limits__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/multirotor_motor_limits__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/multirotor_motor_limits__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/multirotor_motor_limits__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/multirotor_motor_limits__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/multirotor_motor_limits__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/multirotor_motor_limits__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/multirotor_motor_limits__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/multirotor_motor_limits__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/multirotor_motor_limits__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/navigator_mission_item__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/navigator_mission_item__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/navigator_mission_item__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/navigator_mission_item__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/navigator_mission_item__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/navigator_mission_item__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/navigator_mission_item__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/navigator_mission_item__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/navigator_mission_item__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/navigator_mission_item__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/navigator_mission_item__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/navigator_mission_item__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/navigator_mission_item__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/navigator_mission_item__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/navigator_mission_item__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/navigator_mission_item__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/navigator_mission_item__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/navigator_mission_item__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance_fused__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance_fused__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance_fused__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance_fused__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance_fused__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance_fused__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance_fused__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance_fused__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance_fused__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance_fused__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance_fused__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance_fused__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance_fused__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance_fused__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance_fused__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance_fused__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance_fused__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance_fused__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/offboard_control_mode__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/offboard_control_mode__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/offboard_control_mode__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/offboard_control_mode__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/offboard_control_mode__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/offboard_control_mode__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/offboard_control_mode__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/offboard_control_mode__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/offboard_control_mode__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/offboard_control_mode__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/offboard_control_mode__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/offboard_control_mode__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/offboard_control_mode__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/offboard_control_mode__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/offboard_control_mode__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/offboard_control_mode__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/offboard_control_mode__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/offboard_control_mode__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/onboard_computer_status__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/onboard_computer_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/onboard_computer_status__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/onboard_computer_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/onboard_computer_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/onboard_computer_status__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/onboard_computer_status__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/onboard_computer_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/onboard_computer_status__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/onboard_computer_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/onboard_computer_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/onboard_computer_status__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/onboard_computer_status__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/onboard_computer_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/onboard_computer_status__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/onboard_computer_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/onboard_computer_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/onboard_computer_status__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/optical_flow__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/optical_flow__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/optical_flow__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/optical_flow__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/optical_flow__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/optical_flow__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/optical_flow__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/optical_flow__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/optical_flow__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/optical_flow__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/optical_flow__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/optical_flow__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/optical_flow__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/optical_flow__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/optical_flow__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/optical_flow__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/optical_flow__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/optical_flow__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_multitest__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_multitest__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_multitest__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_multitest__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_multitest__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_multitest__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_multitest__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_multitest__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_multitest__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_multitest__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_multitest__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_multitest__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_multitest__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_multitest__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_multitest__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_multitest__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_multitest__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_multitest__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_large__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_large__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_large__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_large__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_large__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_large__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_large__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_large__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_large__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_large__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_large__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_large__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_large__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_large__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_large__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_large__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_large__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_large__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_multi__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_multi__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_multi__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_multi__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_multi__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_multi__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_multi__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_multi__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_multi__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_multi__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_multi__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_multi__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_multi__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_multi__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_multi__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_multi__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_multi__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_multi__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue_poll__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue_poll__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue_poll__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue_poll__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue_poll__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue_poll__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue_poll__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue_poll__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue_poll__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue_poll__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue_poll__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue_poll__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue_poll__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue_poll__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue_poll__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue_poll__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue_poll__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue_poll__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_wrap_around__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_wrap_around__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_wrap_around__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_wrap_around__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_wrap_around__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_wrap_around__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_wrap_around__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_wrap_around__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_wrap_around__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_wrap_around__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_wrap_around__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_wrap_around__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_wrap_around__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_wrap_around__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_wrap_around__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_wrap_around__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_wrap_around__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_wrap_around__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orbit_status__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orbit_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orbit_status__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orbit_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orbit_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orbit_status__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orbit_status__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orbit_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orbit_status__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orbit_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orbit_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orbit_status__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orbit_status__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orbit_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orbit_status__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orbit_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orbit_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orbit_status__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/parameter_update__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/parameter_update__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/parameter_update__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/parameter_update__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/parameter_update__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/parameter_update__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/parameter_update__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/parameter_update__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/parameter_update__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/parameter_update__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/parameter_update__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/parameter_update__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/parameter_update__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/parameter_update__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/parameter_update__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/parameter_update__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/parameter_update__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/parameter_update__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ping__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ping__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ping__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ping__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ping__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ping__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ping__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ping__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ping__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ping__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ping__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ping__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ping__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ping__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ping__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ping__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ping__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ping__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_landing_status__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_landing_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_landing_status__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_landing_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_landing_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_landing_status__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_landing_status__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_landing_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_landing_status__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_landing_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_landing_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_landing_status__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_landing_status__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_landing_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_landing_status__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_landing_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_landing_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_landing_status__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_status__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_status__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_status__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_status__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_status__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_status__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_status__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_status__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_status__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint_triplet__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint_triplet__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint_triplet__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint_triplet__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint_triplet__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint_triplet__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint_triplet__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint_triplet__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint_triplet__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint_triplet__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint_triplet__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint_triplet__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint_triplet__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint_triplet__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint_triplet__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint_triplet__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint_triplet__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint_triplet__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_button_state__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_button_state__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_button_state__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_button_state__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_button_state__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_button_state__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_button_state__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_button_state__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_button_state__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_button_state__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_button_state__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_button_state__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_button_state__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_button_state__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_button_state__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_button_state__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_button_state__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_button_state__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_monitor__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_monitor__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_monitor__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_monitor__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_monitor__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_monitor__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_monitor__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_monitor__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_monitor__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_monitor__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_monitor__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_monitor__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_monitor__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_monitor__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_monitor__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_monitor__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_monitor__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_monitor__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/pwm_input__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/pwm_input__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/pwm_input__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/pwm_input__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/pwm_input__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/pwm_input__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/pwm_input__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/pwm_input__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/pwm_input__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/pwm_input__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/pwm_input__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/pwm_input__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/pwm_input__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/pwm_input__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/pwm_input__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/pwm_input__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/pwm_input__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/pwm_input__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/px4_io_status__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/px4_io_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/px4_io_status__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/px4_io_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/px4_io_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/px4_io_status__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/px4_io_status__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/px4_io_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/px4_io_status__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/px4_io_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/px4_io_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/px4_io_status__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/px4_io_status__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/px4_io_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/px4_io_status__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/px4_io_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/px4_io_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/px4_io_status__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_req__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_req__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_req__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_req__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_req__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_req__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_req__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_req__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_req__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_req__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_req__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_req__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_req__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_req__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_req__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_req__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_req__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_req__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_retval__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_retval__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_retval__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_retval__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_retval__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_retval__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_retval__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_retval__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_retval__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_retval__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_retval__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_retval__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_retval__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_retval__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_retval__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_retval__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_retval__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_retval__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/radio_status__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/radio_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/radio_status__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/radio_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/radio_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/radio_status__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/radio_status__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/radio_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/radio_status__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/radio_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/radio_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/radio_status__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/radio_status__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/radio_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/radio_status__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/radio_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/radio_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/radio_status__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rate_ctrl_status__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rate_ctrl_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rate_ctrl_status__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rate_ctrl_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rate_ctrl_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rate_ctrl_status__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rate_ctrl_status__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rate_ctrl_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rate_ctrl_status__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rate_ctrl_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rate_ctrl_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rate_ctrl_status__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rate_ctrl_status__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rate_ctrl_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rate_ctrl_status__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rate_ctrl_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rate_ctrl_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rate_ctrl_status__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_channels__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_channels__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_channels__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_channels__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_channels__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_channels__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_channels__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_channels__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_channels__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_channels__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_channels__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_channels__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_channels__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_channels__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_channels__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_channels__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_channels__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_channels__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_parameter_map__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_parameter_map__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_parameter_map__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_parameter_map__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_parameter_map__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_parameter_map__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_parameter_map__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_parameter_map__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_parameter_map__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_parameter_map__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_parameter_map__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_parameter_map__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_parameter_map__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_parameter_map__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_parameter_map__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_parameter_map__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_parameter_map__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_parameter_map__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rpm__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rpm__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rpm__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rpm__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rpm__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rpm__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rpm__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rpm__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rpm__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rpm__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rpm__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rpm__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rpm__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rpm__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rpm__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rpm__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rpm__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rpm__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rtl_flight_time__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rtl_flight_time__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rtl_flight_time__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rtl_flight_time__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rtl_flight_time__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rtl_flight_time__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rtl_flight_time__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rtl_flight_time__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rtl_flight_time__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rtl_flight_time__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rtl_flight_time__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rtl_flight_time__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rtl_flight_time__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rtl_flight_time__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rtl_flight_time__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rtl_flight_time__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rtl_flight_time__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rtl_flight_time__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/safety__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/safety__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/safety__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/safety__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/safety__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/safety__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/safety__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/safety__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/safety__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/safety__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/safety__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/safety__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/safety__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/safety__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/safety__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/safety__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/safety__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/safety__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/satellite_info__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/satellite_info__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/satellite_info__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/satellite_info__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/satellite_info__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/satellite_info__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/satellite_info__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/satellite_info__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/satellite_info__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/satellite_info__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/satellite_info__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/satellite_info__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/satellite_info__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/satellite_info__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/satellite_info__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/satellite_info__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/satellite_info__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/satellite_info__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel_fifo__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel_fifo__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel_fifo__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel_fifo__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel_fifo__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel_fifo__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel_fifo__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel_fifo__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel_fifo__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel_fifo__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel_fifo__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel_fifo__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel_fifo__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel_fifo__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel_fifo__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel_fifo__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel_fifo__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel_fifo__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_baro__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_baro__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_baro__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_baro__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_baro__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_baro__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_baro__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_baro__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_baro__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_baro__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_baro__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_baro__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_baro__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_baro__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_baro__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_baro__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_baro__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_baro__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_combined__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_combined__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_combined__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_combined__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_combined__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_combined__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_combined__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_combined__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_combined__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_combined__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_combined__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_combined__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_combined__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_combined__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_combined__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_combined__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_combined__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_combined__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_correction__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_correction__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_correction__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_correction__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_correction__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_correction__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_correction__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_correction__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_correction__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_correction__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_correction__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_correction__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_correction__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_correction__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_correction__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_correction__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_correction__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_correction__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gps__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gps__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gps__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gps__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gps__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gps__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gps__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gps__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gps__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gps__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gps__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gps__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gps__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gps__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gps__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gps__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gps__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gps__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fft__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fft__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fft__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fft__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fft__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fft__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fft__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fft__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fft__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fft__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fft__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fft__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fft__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fft__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fft__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fft__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fft__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fft__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fifo__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fifo__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fifo__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fifo__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fifo__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fifo__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fifo__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fifo__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fifo__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fifo__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fifo__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fifo__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fifo__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fifo__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fifo__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fifo__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fifo__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fifo__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_mag__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_mag__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_mag__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_mag__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_mag__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_mag__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_mag__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_mag__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_mag__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_mag__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_mag__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_mag__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_mag__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_mag__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_mag__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_mag__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_mag__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_mag__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_preflight_mag__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_preflight_mag__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_preflight_mag__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_preflight_mag__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_preflight_mag__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_preflight_mag__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_preflight_mag__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_preflight_mag__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_preflight_mag__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_preflight_mag__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_preflight_mag__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_preflight_mag__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_preflight_mag__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_preflight_mag__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_preflight_mag__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_preflight_mag__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_preflight_mag__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_preflight_mag__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_selection__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_selection__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_selection__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_selection__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_selection__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_selection__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_selection__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_selection__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_selection__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_selection__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_selection__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_selection__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_selection__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_selection__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_selection__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_selection__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_selection__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_selection__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensors_status_imu__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensors_status_imu__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensors_status_imu__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensors_status_imu__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensors_status_imu__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensors_status_imu__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensors_status_imu__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensors_status_imu__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensors_status_imu__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensors_status_imu__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensors_status_imu__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensors_status_imu__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensors_status_imu__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensors_status_imu__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensors_status_imu__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensors_status_imu__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensors_status_imu__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensors_status_imu__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/system_power__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/system_power__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/system_power__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/system_power__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/system_power__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/system_power__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/system_power__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/system_power__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/system_power__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/system_power__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/system_power__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/system_power__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/system_power__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/system_power__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/system_power__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/system_power__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/system_power__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/system_power__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/takeoff_status__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/takeoff_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/takeoff_status__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/takeoff_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/takeoff_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/takeoff_status__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/takeoff_status__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/takeoff_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/takeoff_status__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/takeoff_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/takeoff_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/takeoff_status__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/takeoff_status__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/takeoff_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/takeoff_status__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/takeoff_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/takeoff_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/takeoff_status__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/task_stack_info__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/task_stack_info__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/task_stack_info__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/task_stack_info__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/task_stack_info__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/task_stack_info__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/task_stack_info__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/task_stack_info__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/task_stack_info__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/task_stack_info__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/task_stack_info__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/task_stack_info__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/task_stack_info__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/task_stack_info__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/task_stack_info__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/task_stack_info__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/task_stack_info__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/task_stack_info__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tecs_status__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tecs_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tecs_status__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tecs_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tecs_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tecs_status__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tecs_status__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tecs_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tecs_status__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tecs_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tecs_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tecs_status__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tecs_status__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tecs_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tecs_status__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tecs_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tecs_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tecs_status__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/telemetry_status__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/telemetry_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/telemetry_status__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/telemetry_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/telemetry_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/telemetry_status__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/telemetry_status__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/telemetry_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/telemetry_status__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/telemetry_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/telemetry_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/telemetry_status__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/telemetry_status__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/telemetry_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/telemetry_status__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/telemetry_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/telemetry_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/telemetry_status__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/test_motor__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/test_motor__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/test_motor__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/test_motor__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/test_motor__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/test_motor__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/test_motor__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/test_motor__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/test_motor__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/test_motor__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/test_motor__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/test_motor__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/test_motor__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/test_motor__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/test_motor__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/test_motor__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/test_motor__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/test_motor__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync_status__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync_status__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync_status__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync_status__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync_status__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync_status__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync_status__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync_status__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync_status__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_bezier__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_bezier__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_bezier__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_bezier__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_bezier__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_bezier__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_bezier__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_bezier__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_bezier__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_bezier__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_bezier__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_bezier__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_bezier__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_bezier__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_bezier__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_bezier__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_bezier__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_bezier__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_setpoint__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_setpoint__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_setpoint__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_setpoint__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_setpoint__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_setpoint__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_setpoint__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_waypoint__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_waypoint__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_waypoint__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_waypoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_waypoint__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_waypoint__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_waypoint__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_waypoint__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_waypoint__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_waypoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_waypoint__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_waypoint__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_waypoint__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_waypoint__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_waypoint__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_waypoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_waypoint__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_waypoint__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/transponder_report__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/transponder_report__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/transponder_report__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/transponder_report__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/transponder_report__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/transponder_report__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/transponder_report__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/transponder_report__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/transponder_report__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/transponder_report__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/transponder_report__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/transponder_report__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/transponder_report__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/transponder_report__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/transponder_report__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/transponder_report__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/transponder_report__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/transponder_report__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tune_control__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tune_control__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tune_control__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tune_control__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tune_control__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tune_control__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tune_control__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tune_control__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tune_control__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tune_control__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tune_control__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tune_control__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tune_control__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tune_control__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tune_control__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tune_control__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tune_control__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tune_control__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_request__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_request__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_request__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_request__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_request__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_request__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_request__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_request__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_request__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_request__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_request__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_request__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_request__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_request__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_request__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_request__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_request__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_request__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_value__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_value__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_value__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_value__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_value__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_value__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_value__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_value__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_value__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_value__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_value__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_value__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_value__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_value__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_value__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_value__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_value__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_value__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream_ack__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream_ack__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream_ack__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream_ack__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream_ack__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream_ack__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream_ack__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream_ack__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream_ack__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream_ack__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream_ack__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream_ack__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream_ack__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream_ack__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream_ack__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream_ack__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream_ack__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream_ack__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_acceleration__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_acceleration__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_acceleration__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_acceleration__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_acceleration__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_acceleration__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_acceleration__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_acceleration__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_acceleration__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_acceleration__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_acceleration__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_acceleration__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_acceleration__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_acceleration__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_acceleration__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_acceleration__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_acceleration__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_acceleration__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_actuator_setpoint__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_actuator_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_actuator_setpoint__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_actuator_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_actuator_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_actuator_setpoint__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_actuator_setpoint__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_actuator_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_actuator_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_actuator_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_actuator_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_actuator_setpoint__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_actuator_setpoint__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_actuator_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_actuator_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_actuator_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_actuator_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_actuator_setpoint__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_air_data__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_air_data__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_air_data__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_air_data__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_air_data__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_air_data__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_air_data__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_air_data__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_air_data__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_air_data__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_air_data__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_air_data__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_air_data__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_air_data__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_air_data__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_air_data__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_air_data__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_air_data__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration_setpoint__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration_setpoint__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration_setpoint__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration_setpoint__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration_setpoint__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration_setpoint__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration_setpoint__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity_groundtruth__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity_groundtruth__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity_groundtruth__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity_groundtruth__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity_groundtruth__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity_groundtruth__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity_groundtruth__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity_groundtruth__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity_groundtruth__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity_groundtruth__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity_groundtruth__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity_groundtruth__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_groundtruth__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_groundtruth__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_groundtruth__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_groundtruth__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_groundtruth__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_groundtruth__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_groundtruth__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_groundtruth__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_groundtruth__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_groundtruth__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_groundtruth__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_groundtruth__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_setpoint__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_setpoint__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_setpoint__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_setpoint__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_setpoint__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_setpoint__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_setpoint__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command_ack__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command_ack__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command_ack__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command_ack__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command_ack__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command_ack__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command_ack__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command_ack__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command_ack__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command_ack__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command_ack__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command_ack__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command_ack__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command_ack__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command_ack__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command_ack__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command_ack__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command_ack__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_constraints__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_constraints__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_constraints__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_constraints__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_constraints__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_constraints__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_constraints__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_constraints__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_constraints__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_constraints__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_constraints__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_constraints__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_constraints__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_constraints__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_constraints__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_constraints__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_constraints__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_constraints__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_control_mode__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_control_mode__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_control_mode__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_control_mode__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_control_mode__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_control_mode__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_control_mode__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_control_mode__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_control_mode__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_control_mode__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_control_mode__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_control_mode__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_control_mode__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_control_mode__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_control_mode__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_control_mode__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_control_mode__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_control_mode__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position_groundtruth__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position_groundtruth__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position_groundtruth__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position_groundtruth__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position_groundtruth__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position_groundtruth__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position_groundtruth__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position_groundtruth__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position_groundtruth__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position_groundtruth__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position_groundtruth__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position_groundtruth__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_gps_position__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_gps_position__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_gps_position__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_gps_position__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_gps_position__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_gps_position__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_gps_position__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_gps_position__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_gps_position__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_gps_position__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_gps_position__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_gps_position__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_gps_position__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_gps_position__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_gps_position__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_gps_position__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_gps_position__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_gps_position__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu_status__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu_status__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu_status__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu_status__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu_status__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu_status__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu_status__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu_status__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu_status__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_land_detected__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_land_detected__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_land_detected__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_land_detected__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_land_detected__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_land_detected__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_land_detected__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_land_detected__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_land_detected__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_land_detected__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_land_detected__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_land_detected__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_land_detected__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_land_detected__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_land_detected__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_land_detected__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_land_detected__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_land_detected__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_groundtruth__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_groundtruth__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_groundtruth__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_groundtruth__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_groundtruth__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_groundtruth__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_groundtruth__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_groundtruth__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_groundtruth__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_groundtruth__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_groundtruth__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_groundtruth__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_setpoint__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_setpoint__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_setpoint__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_setpoint__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_setpoint__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_setpoint__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_setpoint__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_magnetometer__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_magnetometer__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_magnetometer__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_magnetometer__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_magnetometer__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_magnetometer__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_magnetometer__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_magnetometer__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_magnetometer__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_magnetometer__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_magnetometer__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_magnetometer__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_magnetometer__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_magnetometer__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_magnetometer__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_magnetometer__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_magnetometer__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_magnetometer__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_mocap_odometry__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_mocap_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_mocap_odometry__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_mocap_odometry__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_mocap_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_mocap_odometry__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_mocap_odometry__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_mocap_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_mocap_odometry__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_mocap_odometry__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_mocap_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_mocap_odometry__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_mocap_odometry__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_mocap_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_mocap_odometry__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_mocap_odometry__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_mocap_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_mocap_odometry__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_odometry__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_odometry__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_odometry__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_odometry__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_odometry__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_odometry__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_odometry__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_odometry__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_odometry__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_odometry__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_odometry__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_odometry__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_rates_setpoint__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_rates_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_rates_setpoint__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_rates_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_rates_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_rates_setpoint__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_rates_setpoint__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_rates_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_rates_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_rates_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_rates_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_rates_setpoint__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_rates_setpoint__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_rates_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_rates_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_rates_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_rates_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_rates_setpoint__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_roi__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_roi__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_roi__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_roi__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_roi__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_roi__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_roi__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_roi__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_roi__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_roi__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_roi__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_roi__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_roi__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_roi__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_roi__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_roi__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_roi__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_roi__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status_flags__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status_flags__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status_flags__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status_flags__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status_flags__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status_flags__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status_flags__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status_flags__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status_flags__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status_flags__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status_flags__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status_flags__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status_flags__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status_flags__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status_flags__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status_flags__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status_flags__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status_flags__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_thrust_setpoint__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_thrust_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_thrust_setpoint__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_thrust_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_thrust_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_thrust_setpoint__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_thrust_setpoint__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_thrust_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_thrust_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_thrust_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_thrust_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_thrust_setpoint__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_thrust_setpoint__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_thrust_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_thrust_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_thrust_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_thrust_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_thrust_setpoint__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_torque_setpoint__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_torque_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_torque_setpoint__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_torque_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_torque_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_torque_setpoint__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_torque_setpoint__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_torque_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_torque_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_torque_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_torque_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_torque_setpoint__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_torque_setpoint__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_torque_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_torque_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_torque_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_torque_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_torque_setpoint__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_bezier__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_bezier__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_bezier__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_bezier__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_bezier__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_bezier__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_bezier__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_bezier__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_bezier__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_bezier__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_bezier__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_bezier__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_bezier__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_bezier__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_bezier__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_bezier__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_bezier__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_bezier__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint_desired__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint_desired__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint_desired__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint_desired__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint_desired__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint_desired__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint_desired__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint_desired__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint_desired__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint_desired__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint_desired__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint_desired__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint_desired__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint_desired__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint_desired__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint_desired__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint_desired__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint_desired__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_vision_attitude__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_vision_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_vision_attitude__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_vision_attitude__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_vision_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_vision_attitude__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_vision_attitude__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_vision_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_vision_attitude__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_vision_attitude__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_vision_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_vision_attitude__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_vision_attitude__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_vision_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_vision_attitude__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_vision_attitude__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_vision_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_vision_attitude__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_visual_odometry__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_visual_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_visual_odometry__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_visual_odometry__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_visual_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_visual_odometry__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_visual_odometry__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_visual_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_visual_odometry__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_visual_odometry__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_visual_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_visual_odometry__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_visual_odometry__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_visual_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_visual_odometry__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_visual_odometry__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_visual_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_visual_odometry__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vtol_vehicle_status__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vtol_vehicle_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vtol_vehicle_status__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vtol_vehicle_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vtol_vehicle_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vtol_vehicle_status__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vtol_vehicle_status__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vtol_vehicle_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vtol_vehicle_status__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vtol_vehicle_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vtol_vehicle_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vtol_vehicle_status__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vtol_vehicle_status__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vtol_vehicle_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vtol_vehicle_status__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vtol_vehicle_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vtol_vehicle_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vtol_vehicle_status__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wheel_encoders__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wheel_encoders__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wheel_encoders__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wheel_encoders__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wheel_encoders__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wheel_encoders__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wheel_encoders__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wheel_encoders__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wheel_encoders__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wheel_encoders__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wheel_encoders__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wheel_encoders__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wheel_encoders__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wheel_encoders__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wheel_encoders__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wheel_encoders__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wheel_encoders__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wheel_encoders__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wind__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wind__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wind__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wind__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wind__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wind__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wind__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wind__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wind__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wind__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wind__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wind__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wind__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wind__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wind__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wind__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wind__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wind__type_support.cpp.s rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/yaw_estimator_status__type_support.o: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/yaw_estimator_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/yaw_estimator_status__type_support.o # target to build an object file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/yaw_estimator_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/yaw_estimator_status__type_support.cpp.o .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/yaw_estimator_status__type_support.cpp.o rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/yaw_estimator_status__type_support.i: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/yaw_estimator_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/yaw_estimator_status__type_support.i # target to preprocess a source file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/yaw_estimator_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/yaw_estimator_status__type_support.cpp.i .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/yaw_estimator_status__type_support.cpp.i rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/yaw_estimator_status__type_support.s: rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/yaw_estimator_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/yaw_estimator_status__type_support.s # target to generate assembly for a file rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/yaw_estimator_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/yaw_estimator_status__type_support.cpp.s .PHONY : rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/yaw_estimator_status__type_support.cpp.s rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_armed__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_armed__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_armed__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_armed__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_armed__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_armed__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_armed__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_armed__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_armed__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_armed__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_armed__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_armed__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_armed__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_armed__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_armed__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_armed__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_armed__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_armed__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls0__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls0__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls0__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls0__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls0__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls0__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls0__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls0__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls0__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls0__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls0__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls0__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls0__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls0__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls0__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls0__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls0__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls0__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls1__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls1__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls1__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls1__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls1__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls1__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls1__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls1__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls1__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls1__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls1__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls1__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls1__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls1__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls1__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls1__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls1__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls1__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls2__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls2__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls2__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls2__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls2__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls2__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls2__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls2__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls2__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls2__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls2__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls2__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls2__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls2__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls2__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls2__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls2__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls2__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls3__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls3__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls3__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls3__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls3__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls3__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls3__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls3__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls3__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls3__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls3__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls3__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls3__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls3__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls3__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls3__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls3__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls3__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls4__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls4__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls4__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls4__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls4__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls4__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls4__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls4__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls4__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls4__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls4__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls4__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls4__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls4__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls4__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls4__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls4__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls4__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls5__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls5__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls5__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls5__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls5__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls5__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls5__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls5__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls5__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls5__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls5__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls5__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls5__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls5__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls5__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls5__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls5__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls5__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_outputs__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_outputs__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_outputs__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_outputs__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_outputs__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_outputs__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_outputs__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_outputs__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_outputs__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_outputs__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_outputs__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_outputs__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_outputs__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_outputs__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_outputs__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_outputs__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_outputs__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_outputs__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/adc_report__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/adc_report__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/adc_report__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/adc_report__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/adc_report__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/adc_report__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/adc_report__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/adc_report__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/adc_report__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/adc_report__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/adc_report__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/adc_report__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/adc_report__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/adc_report__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/adc_report__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/adc_report__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/adc_report__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/adc_report__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_validated__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_validated__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_validated__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_validated__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_validated__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_validated__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_validated__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_validated__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_validated__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_validated__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_validated__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_validated__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_validated__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_validated__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_validated__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_validated__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_validated__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_validated__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_wind__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_wind__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_wind__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_wind__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_wind__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_wind__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_wind__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_wind__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_wind__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_wind__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_wind__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_wind__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_wind__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_wind__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_wind__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_wind__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_wind__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_wind__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/battery_status__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/battery_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/battery_status__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/battery_status__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/battery_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/battery_status__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/battery_status__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/battery_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/battery_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/battery_status__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/battery_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/battery_status__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/battery_status__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/battery_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/battery_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/battery_status__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/battery_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/battery_status__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/camera_capture__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/camera_capture__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/camera_capture__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/camera_capture__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/camera_capture__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/camera_capture__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/camera_capture__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/camera_capture__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/camera_capture__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/camera_capture__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/camera_capture__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/camera_capture__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/camera_capture__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/camera_capture__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/camera_capture__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/camera_capture__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/camera_capture__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/camera_capture__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger_secondary__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger_secondary__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger_secondary__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger_secondary__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger_secondary__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger_secondary__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger_secondary__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger_secondary__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger_secondary__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger_secondary__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger_secondary__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger_secondary__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger_secondary__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger_secondary__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger_secondary__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger_secondary__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger_secondary__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger_secondary__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/cellular_status__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/cellular_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/cellular_status__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/cellular_status__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/cellular_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/cellular_status__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/cellular_status__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/cellular_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/cellular_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/cellular_status__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/cellular_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/cellular_status__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/cellular_status__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/cellular_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/cellular_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/cellular_status__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/cellular_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/cellular_status__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/collision_constraints__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/collision_constraints__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/collision_constraints__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/collision_constraints__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/collision_constraints__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/collision_constraints__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/collision_constraints__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/collision_constraints__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/collision_constraints__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/collision_constraints__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/collision_constraints__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/collision_constraints__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/collision_constraints__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/collision_constraints__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/collision_constraints__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/collision_constraints__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/collision_constraints__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/collision_constraints__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/collision_report__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/collision_report__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/collision_report__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/collision_report__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/collision_report__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/collision_report__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/collision_report__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/collision_report__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/collision_report__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/collision_report__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/collision_report__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/collision_report__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/collision_report__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/collision_report__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/collision_report__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/collision_report__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/collision_report__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/collision_report__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/commander_state__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/commander_state__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/commander_state__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/commander_state__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/commander_state__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/commander_state__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/commander_state__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/commander_state__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/commander_state__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/commander_state__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/commander_state__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/commander_state__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/commander_state__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/commander_state__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/commander_state__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/commander_state__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/commander_state__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/commander_state__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/control_allocator_status__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/control_allocator_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/control_allocator_status__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/control_allocator_status__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/control_allocator_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/control_allocator_status__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/control_allocator_status__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/control_allocator_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/control_allocator_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/control_allocator_status__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/control_allocator_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/control_allocator_status__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/control_allocator_status__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/control_allocator_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/control_allocator_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/control_allocator_status__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/control_allocator_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/control_allocator_status__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/cpuload__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/cpuload__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/cpuload__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/cpuload__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/cpuload__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/cpuload__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/cpuload__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/cpuload__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/cpuload__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/cpuload__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/cpuload__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/cpuload__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/cpuload__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/cpuload__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/cpuload__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/cpuload__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/cpuload__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/cpuload__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/debug_array__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/debug_array__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/debug_array__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/debug_array__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/debug_array__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/debug_array__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/debug_array__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/debug_array__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/debug_array__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/debug_array__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/debug_array__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/debug_array__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/debug_array__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/debug_array__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/debug_array__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/debug_array__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/debug_array__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/debug_array__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/debug_key_value__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/debug_key_value__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/debug_key_value__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/debug_key_value__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/debug_key_value__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/debug_key_value__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/debug_key_value__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/debug_key_value__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/debug_key_value__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/debug_key_value__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/debug_key_value__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/debug_key_value__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/debug_key_value__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/debug_key_value__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/debug_key_value__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/debug_key_value__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/debug_key_value__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/debug_key_value__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/debug_value__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/debug_value__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/debug_value__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/debug_value__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/debug_value__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/debug_value__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/debug_value__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/debug_value__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/debug_value__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/debug_value__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/debug_value__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/debug_value__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/debug_value__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/debug_value__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/debug_value__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/debug_value__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/debug_value__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/debug_value__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/debug_vect__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/debug_vect__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/debug_vect__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/debug_vect__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/debug_vect__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/debug_vect__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/debug_vect__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/debug_vect__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/debug_vect__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/debug_vect__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/debug_vect__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/debug_vect__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/debug_vect__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/debug_vect__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/debug_vect__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/debug_vect__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/debug_vect__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/debug_vect__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/differential_pressure__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/differential_pressure__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/differential_pressure__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/differential_pressure__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/differential_pressure__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/differential_pressure__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/differential_pressure__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/differential_pressure__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/differential_pressure__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/differential_pressure__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/differential_pressure__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/differential_pressure__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/differential_pressure__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/differential_pressure__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/differential_pressure__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/differential_pressure__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/differential_pressure__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/differential_pressure__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/distance_sensor__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/distance_sensor__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/distance_sensor__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/distance_sensor__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/distance_sensor__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/distance_sensor__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/distance_sensor__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/distance_sensor__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/distance_sensor__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/distance_sensor__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/distance_sensor__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/distance_sensor__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/distance_sensor__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/distance_sensor__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/distance_sensor__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/distance_sensor__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/distance_sensor__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/distance_sensor__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/ekf2_timestamps__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/ekf2_timestamps__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ekf2_timestamps__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/ekf2_timestamps__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/ekf2_timestamps__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ekf2_timestamps__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/ekf2_timestamps__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/ekf2_timestamps__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ekf2_timestamps__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/ekf2_timestamps__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/ekf2_timestamps__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ekf2_timestamps__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/ekf2_timestamps__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/ekf2_timestamps__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ekf2_timestamps__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/ekf2_timestamps__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/ekf2_timestamps__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ekf2_timestamps__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/ekf_gps_drift__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/ekf_gps_drift__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ekf_gps_drift__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/ekf_gps_drift__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/ekf_gps_drift__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ekf_gps_drift__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/ekf_gps_drift__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/ekf_gps_drift__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ekf_gps_drift__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/ekf_gps_drift__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/ekf_gps_drift__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ekf_gps_drift__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/ekf_gps_drift__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/ekf_gps_drift__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ekf_gps_drift__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/ekf_gps_drift__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/ekf_gps_drift__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ekf_gps_drift__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/esc_report__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/esc_report__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/esc_report__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/esc_report__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/esc_report__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/esc_report__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/esc_report__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/esc_report__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/esc_report__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/esc_report__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/esc_report__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/esc_report__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/esc_report__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/esc_report__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/esc_report__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/esc_report__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/esc_report__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/esc_report__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/esc_status__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/esc_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/esc_status__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/esc_status__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/esc_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/esc_status__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/esc_status__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/esc_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/esc_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/esc_status__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/esc_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/esc_status__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/esc_status__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/esc_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/esc_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/esc_status__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/esc_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/esc_status__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_attitude__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_attitude__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_attitude__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_attitude__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_attitude__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_attitude__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_attitude__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_attitude__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_attitude__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_attitude__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_attitude__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_attitude__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_attitude__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_attitude__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_attitude__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_attitude__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_attitude__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_attitude__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_event_flags__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_event_flags__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_event_flags__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_event_flags__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_event_flags__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_event_flags__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_event_flags__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_event_flags__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_event_flags__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_event_flags__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_event_flags__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_event_flags__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_event_flags__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_event_flags__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_event_flags__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_event_flags__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_event_flags__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_event_flags__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_global_position__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_global_position__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_global_position__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_global_position__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_global_position__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_global_position__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_global_position__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_global_position__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_global_position__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_global_position__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_global_position__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_global_position__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_global_position__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_global_position__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_global_position__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_global_position__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_global_position__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_global_position__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_variances__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_variances__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_variances__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_variances__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_variances__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_variances__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_variances__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_variances__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_variances__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_variances__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_variances__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_variances__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_variances__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_variances__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_variances__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_variances__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_variances__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_variances__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovations__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovations__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovations__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovations__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovations__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovations__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovations__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovations__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovations__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovations__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovations__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovations__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovations__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovations__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovations__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovations__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovations__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovations__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_local_position__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_local_position__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_local_position__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_local_position__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_local_position__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_local_position__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_local_position__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_local_position__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_local_position__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_local_position__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_local_position__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_local_position__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_local_position__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_local_position__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_local_position__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_local_position__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_local_position__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_local_position__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_odometry__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_odometry__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_odometry__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_odometry__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_odometry__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_odometry__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_odometry__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_odometry__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_odometry__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_odometry__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_odometry__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_odometry__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_odometry__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_odometry__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_odometry__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_odometry__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_odometry__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_odometry__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_selector_status__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_selector_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_selector_status__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_selector_status__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_selector_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_selector_status__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_selector_status__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_selector_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_selector_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_selector_status__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_selector_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_selector_status__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_selector_status__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_selector_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_selector_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_selector_status__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_selector_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_selector_status__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_sensor_bias__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_sensor_bias__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_sensor_bias__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_sensor_bias__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_sensor_bias__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_sensor_bias__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_sensor_bias__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_sensor_bias__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_sensor_bias__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_sensor_bias__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_sensor_bias__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_sensor_bias__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_sensor_bias__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_sensor_bias__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_sensor_bias__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_sensor_bias__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_sensor_bias__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_sensor_bias__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_states__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_states__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_states__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_states__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_states__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_states__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_states__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_states__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_states__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_states__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_states__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_states__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_states__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_states__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_states__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_states__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_states__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_states__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status_flags__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status_flags__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status_flags__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status_flags__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status_flags__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status_flags__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status_flags__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status_flags__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status_flags__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status_flags__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status_flags__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status_flags__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status_flags__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status_flags__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status_flags__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status_flags__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status_flags__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status_flags__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_wind__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_wind__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_wind__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_wind__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_wind__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_wind__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_wind__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_wind__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_wind__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_wind__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_wind__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_wind__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_wind__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_wind__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_wind__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_wind__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_wind__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_wind__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/follow_target__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/follow_target__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/follow_target__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/follow_target__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/follow_target__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/follow_target__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/follow_target__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/follow_target__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/follow_target__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/follow_target__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/follow_target__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/follow_target__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/follow_target__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/follow_target__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/follow_target__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/follow_target__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/follow_target__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/follow_target__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/generator_status__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/generator_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/generator_status__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/generator_status__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/generator_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/generator_status__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/generator_status__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/generator_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/generator_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/generator_status__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/generator_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/generator_status__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/generator_status__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/generator_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/generator_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/generator_status__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/generator_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/generator_status__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/geofence_result__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/geofence_result__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/geofence_result__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/geofence_result__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/geofence_result__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/geofence_result__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/geofence_result__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/geofence_result__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/geofence_result__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/geofence_result__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/geofence_result__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/geofence_result__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/geofence_result__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/geofence_result__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/geofence_result__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/geofence_result__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/geofence_result__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/geofence_result__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_information__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_information__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_information__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_information__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_information__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_information__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_information__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_information__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_information__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_information__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_information__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_information__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_information__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_information__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_information__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_information__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_information__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_information__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_information__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_information__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_information__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_information__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_information__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_information__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_information__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_information__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_information__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_information__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_information__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_information__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_information__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_information__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_information__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_information__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_information__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_information__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_status__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_status__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_status__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_status__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_status__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_status__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_status__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_status__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_status__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_status__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/gps_dump__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/gps_dump__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gps_dump__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/gps_dump__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/gps_dump__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gps_dump__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/gps_dump__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/gps_dump__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gps_dump__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/gps_dump__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/gps_dump__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gps_dump__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/gps_dump__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/gps_dump__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gps_dump__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/gps_dump__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/gps_dump__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gps_dump__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/gps_inject_data__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/gps_inject_data__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gps_inject_data__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/gps_inject_data__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/gps_inject_data__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gps_inject_data__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/gps_inject_data__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/gps_inject_data__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gps_inject_data__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/gps_inject_data__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/gps_inject_data__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gps_inject_data__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/gps_inject_data__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/gps_inject_data__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gps_inject_data__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/gps_inject_data__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/gps_inject_data__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/gps_inject_data__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/heater_status__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/heater_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/heater_status__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/heater_status__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/heater_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/heater_status__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/heater_status__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/heater_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/heater_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/heater_status__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/heater_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/heater_status__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/heater_status__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/heater_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/heater_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/heater_status__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/heater_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/heater_status__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/home_position__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/home_position__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/home_position__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/home_position__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/home_position__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/home_position__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/home_position__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/home_position__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/home_position__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/home_position__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/home_position__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/home_position__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/home_position__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/home_position__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/home_position__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/home_position__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/home_position__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/home_position__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/hover_thrust_estimate__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/hover_thrust_estimate__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/hover_thrust_estimate__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/hover_thrust_estimate__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/hover_thrust_estimate__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/hover_thrust_estimate__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/hover_thrust_estimate__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/hover_thrust_estimate__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/hover_thrust_estimate__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/hover_thrust_estimate__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/hover_thrust_estimate__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/hover_thrust_estimate__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/hover_thrust_estimate__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/hover_thrust_estimate__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/hover_thrust_estimate__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/hover_thrust_estimate__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/hover_thrust_estimate__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/hover_thrust_estimate__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/input_rc__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/input_rc__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/input_rc__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/input_rc__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/input_rc__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/input_rc__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/input_rc__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/input_rc__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/input_rc__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/input_rc__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/input_rc__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/input_rc__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/input_rc__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/input_rc__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/input_rc__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/input_rc__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/input_rc__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/input_rc__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/iridiumsbd_status__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/iridiumsbd_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/iridiumsbd_status__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/iridiumsbd_status__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/iridiumsbd_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/iridiumsbd_status__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/iridiumsbd_status__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/iridiumsbd_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/iridiumsbd_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/iridiumsbd_status__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/iridiumsbd_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/iridiumsbd_status__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/iridiumsbd_status__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/iridiumsbd_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/iridiumsbd_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/iridiumsbd_status__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/iridiumsbd_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/iridiumsbd_status__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/irlock_report__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/irlock_report__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/irlock_report__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/irlock_report__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/irlock_report__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/irlock_report__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/irlock_report__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/irlock_report__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/irlock_report__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/irlock_report__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/irlock_report__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/irlock_report__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/irlock_report__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/irlock_report__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/irlock_report__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/irlock_report__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/irlock_report__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/irlock_report__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/landing_gear__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/landing_gear__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/landing_gear__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/landing_gear__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/landing_gear__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/landing_gear__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/landing_gear__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/landing_gear__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/landing_gear__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/landing_gear__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/landing_gear__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/landing_gear__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/landing_gear__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/landing_gear__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/landing_gear__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/landing_gear__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/landing_gear__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/landing_gear__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_innovations__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_innovations__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_innovations__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_innovations__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_innovations__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_innovations__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_innovations__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_innovations__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_innovations__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_innovations__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_innovations__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_innovations__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_innovations__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_innovations__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_innovations__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_innovations__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_innovations__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_innovations__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_pose__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_pose__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_pose__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_pose__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_pose__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_pose__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_pose__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_pose__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_pose__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_pose__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_pose__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_pose__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_pose__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_pose__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_pose__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_pose__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_pose__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_pose__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/led_control__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/led_control__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/led_control__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/led_control__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/led_control__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/led_control__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/led_control__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/led_control__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/led_control__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/led_control__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/led_control__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/led_control__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/led_control__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/led_control__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/led_control__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/led_control__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/led_control__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/led_control__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/log_message__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/log_message__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/log_message__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/log_message__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/log_message__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/log_message__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/log_message__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/log_message__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/log_message__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/log_message__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/log_message__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/log_message__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/log_message__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/log_message__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/log_message__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/log_message__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/log_message__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/log_message__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/logger_status__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/logger_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/logger_status__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/logger_status__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/logger_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/logger_status__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/logger_status__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/logger_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/logger_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/logger_status__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/logger_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/logger_status__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/logger_status__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/logger_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/logger_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/logger_status__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/logger_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/logger_status__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/mag_worker_data__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/mag_worker_data__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mag_worker_data__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/mag_worker_data__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/mag_worker_data__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mag_worker_data__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/mag_worker_data__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/mag_worker_data__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mag_worker_data__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/mag_worker_data__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/mag_worker_data__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mag_worker_data__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/mag_worker_data__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/mag_worker_data__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mag_worker_data__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/mag_worker_data__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/mag_worker_data__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mag_worker_data__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_setpoint__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_setpoint__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_setpoint__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_setpoint__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_setpoint__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_setpoint__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_setpoint__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_setpoint__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_setpoint__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_setpoint__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_setpoint__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_setpoint__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_setpoint__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_setpoint__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_setpoint__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_setpoint__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_switches__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_switches__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_switches__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_switches__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_switches__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_switches__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_switches__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_switches__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_switches__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_switches__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_switches__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_switches__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_switches__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_switches__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_switches__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_switches__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_switches__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_switches__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/mavlink_log__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/mavlink_log__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mavlink_log__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/mavlink_log__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/mavlink_log__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mavlink_log__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/mavlink_log__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/mavlink_log__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mavlink_log__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/mavlink_log__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/mavlink_log__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mavlink_log__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/mavlink_log__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/mavlink_log__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mavlink_log__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/mavlink_log__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/mavlink_log__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mavlink_log__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/mission__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/mission__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mission__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/mission__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/mission__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mission__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/mission__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/mission__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mission__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/mission__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/mission__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mission__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/mission__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/mission__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mission__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/mission__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/mission__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mission__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/mission_result__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/mission_result__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mission_result__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/mission_result__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/mission_result__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mission_result__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/mission_result__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/mission_result__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mission_result__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/mission_result__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/mission_result__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mission_result__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/mission_result__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/mission_result__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mission_result__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/mission_result__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/mission_result__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mission_result__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/mount_orientation__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/mount_orientation__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mount_orientation__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/mount_orientation__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/mount_orientation__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mount_orientation__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/mount_orientation__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/mount_orientation__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mount_orientation__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/mount_orientation__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/mount_orientation__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mount_orientation__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/mount_orientation__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/mount_orientation__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mount_orientation__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/mount_orientation__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/mount_orientation__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/mount_orientation__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/multirotor_motor_limits__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/multirotor_motor_limits__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/multirotor_motor_limits__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/multirotor_motor_limits__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/multirotor_motor_limits__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/multirotor_motor_limits__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/multirotor_motor_limits__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/multirotor_motor_limits__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/multirotor_motor_limits__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/multirotor_motor_limits__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/multirotor_motor_limits__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/multirotor_motor_limits__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/multirotor_motor_limits__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/multirotor_motor_limits__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/multirotor_motor_limits__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/multirotor_motor_limits__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/multirotor_motor_limits__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/multirotor_motor_limits__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/navigator_mission_item__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/navigator_mission_item__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/navigator_mission_item__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/navigator_mission_item__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/navigator_mission_item__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/navigator_mission_item__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/navigator_mission_item__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/navigator_mission_item__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/navigator_mission_item__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/navigator_mission_item__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/navigator_mission_item__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/navigator_mission_item__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/navigator_mission_item__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/navigator_mission_item__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/navigator_mission_item__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/navigator_mission_item__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/navigator_mission_item__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/navigator_mission_item__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance_fused__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance_fused__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance_fused__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance_fused__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance_fused__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance_fused__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance_fused__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance_fused__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance_fused__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance_fused__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance_fused__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance_fused__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance_fused__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance_fused__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance_fused__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance_fused__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance_fused__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance_fused__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/offboard_control_mode__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/offboard_control_mode__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/offboard_control_mode__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/offboard_control_mode__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/offboard_control_mode__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/offboard_control_mode__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/offboard_control_mode__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/offboard_control_mode__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/offboard_control_mode__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/offboard_control_mode__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/offboard_control_mode__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/offboard_control_mode__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/offboard_control_mode__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/offboard_control_mode__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/offboard_control_mode__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/offboard_control_mode__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/offboard_control_mode__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/offboard_control_mode__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/onboard_computer_status__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/onboard_computer_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/onboard_computer_status__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/onboard_computer_status__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/onboard_computer_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/onboard_computer_status__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/onboard_computer_status__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/onboard_computer_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/onboard_computer_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/onboard_computer_status__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/onboard_computer_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/onboard_computer_status__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/onboard_computer_status__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/onboard_computer_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/onboard_computer_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/onboard_computer_status__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/onboard_computer_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/onboard_computer_status__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/optical_flow__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/optical_flow__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/optical_flow__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/optical_flow__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/optical_flow__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/optical_flow__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/optical_flow__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/optical_flow__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/optical_flow__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/optical_flow__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/optical_flow__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/optical_flow__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/optical_flow__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/optical_flow__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/optical_flow__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/optical_flow__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/optical_flow__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/optical_flow__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/orb_multitest__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/orb_multitest__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_multitest__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/orb_multitest__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/orb_multitest__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_multitest__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/orb_multitest__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/orb_multitest__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_multitest__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/orb_multitest__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/orb_multitest__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_multitest__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/orb_multitest__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/orb_multitest__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_multitest__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/orb_multitest__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/orb_multitest__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_multitest__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_large__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_large__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_large__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_large__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_large__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_large__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_large__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_large__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_large__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_large__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_large__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_large__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_large__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_large__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_large__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_large__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_large__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_large__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_multi__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_multi__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_multi__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_multi__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_multi__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_multi__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_multi__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_multi__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_multi__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_multi__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_multi__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_multi__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_multi__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_multi__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_multi__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_multi__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_multi__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_multi__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/orbit_status__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/orbit_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orbit_status__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/orbit_status__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/orbit_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orbit_status__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/orbit_status__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/orbit_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orbit_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/orbit_status__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/orbit_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orbit_status__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/orbit_status__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/orbit_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orbit_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/orbit_status__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/orbit_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/orbit_status__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/parameter_update__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/parameter_update__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/parameter_update__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/parameter_update__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/parameter_update__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/parameter_update__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/parameter_update__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/parameter_update__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/parameter_update__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/parameter_update__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/parameter_update__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/parameter_update__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/parameter_update__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/parameter_update__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/parameter_update__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/parameter_update__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/parameter_update__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/parameter_update__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/ping__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/ping__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ping__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/ping__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/ping__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ping__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/ping__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/ping__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ping__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/ping__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/ping__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ping__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/ping__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/ping__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ping__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/ping__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/ping__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ping__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_landing_status__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_landing_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_landing_status__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_landing_status__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_landing_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_landing_status__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_landing_status__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_landing_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_landing_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_landing_status__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_landing_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_landing_status__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_landing_status__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_landing_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_landing_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_landing_status__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_landing_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_landing_status__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_status__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_status__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_status__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_status__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_status__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_status__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_status__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_status__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_status__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_status__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint_triplet__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint_triplet__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint_triplet__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint_triplet__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint_triplet__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint_triplet__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint_triplet__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint_triplet__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint_triplet__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint_triplet__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint_triplet__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint_triplet__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint_triplet__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint_triplet__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint_triplet__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint_triplet__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint_triplet__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint_triplet__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/power_button_state__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/power_button_state__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/power_button_state__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/power_button_state__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/power_button_state__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/power_button_state__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/power_button_state__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/power_button_state__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/power_button_state__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/power_button_state__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/power_button_state__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/power_button_state__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/power_button_state__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/power_button_state__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/power_button_state__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/power_button_state__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/power_button_state__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/power_button_state__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/power_monitor__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/power_monitor__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/power_monitor__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/power_monitor__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/power_monitor__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/power_monitor__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/power_monitor__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/power_monitor__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/power_monitor__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/power_monitor__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/power_monitor__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/power_monitor__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/power_monitor__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/power_monitor__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/power_monitor__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/power_monitor__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/power_monitor__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/power_monitor__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/pwm_input__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/pwm_input__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/pwm_input__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/pwm_input__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/pwm_input__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/pwm_input__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/pwm_input__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/pwm_input__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/pwm_input__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/pwm_input__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/pwm_input__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/pwm_input__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/pwm_input__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/pwm_input__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/pwm_input__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/pwm_input__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/pwm_input__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/pwm_input__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/px4_io_status__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/px4_io_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/px4_io_status__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/px4_io_status__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/px4_io_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/px4_io_status__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/px4_io_status__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/px4_io_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/px4_io_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/px4_io_status__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/px4_io_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/px4_io_status__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/px4_io_status__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/px4_io_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/px4_io_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/px4_io_status__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/px4_io_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/px4_io_status__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_req__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_req__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_req__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_req__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_req__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_req__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_req__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_req__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_req__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_req__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_req__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_req__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_req__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_req__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_req__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_req__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_req__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_req__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_retval__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_retval__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_retval__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_retval__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_retval__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_retval__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_retval__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_retval__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_retval__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_retval__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_retval__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_retval__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_retval__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_retval__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_retval__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_retval__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_retval__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_retval__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/radio_status__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/radio_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/radio_status__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/radio_status__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/radio_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/radio_status__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/radio_status__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/radio_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/radio_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/radio_status__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/radio_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/radio_status__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/radio_status__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/radio_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/radio_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/radio_status__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/radio_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/radio_status__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/rate_ctrl_status__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/rate_ctrl_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rate_ctrl_status__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/rate_ctrl_status__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/rate_ctrl_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rate_ctrl_status__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/rate_ctrl_status__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/rate_ctrl_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rate_ctrl_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/rate_ctrl_status__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/rate_ctrl_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rate_ctrl_status__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/rate_ctrl_status__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/rate_ctrl_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rate_ctrl_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/rate_ctrl_status__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/rate_ctrl_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rate_ctrl_status__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/rc_channels__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/rc_channels__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rc_channels__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/rc_channels__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/rc_channels__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rc_channels__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/rc_channels__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/rc_channels__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rc_channels__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/rc_channels__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/rc_channels__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rc_channels__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/rc_channels__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/rc_channels__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rc_channels__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/rc_channels__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/rc_channels__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rc_channels__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/rc_parameter_map__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/rc_parameter_map__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rc_parameter_map__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/rc_parameter_map__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/rc_parameter_map__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rc_parameter_map__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/rc_parameter_map__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/rc_parameter_map__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rc_parameter_map__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/rc_parameter_map__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/rc_parameter_map__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rc_parameter_map__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/rc_parameter_map__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/rc_parameter_map__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rc_parameter_map__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/rc_parameter_map__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/rc_parameter_map__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rc_parameter_map__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/rpm__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/rpm__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rpm__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/rpm__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/rpm__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rpm__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/rpm__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/rpm__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rpm__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/rpm__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/rpm__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rpm__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/rpm__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/rpm__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rpm__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/rpm__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/rpm__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rpm__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/rtl_flight_time__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/rtl_flight_time__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rtl_flight_time__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/rtl_flight_time__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/rtl_flight_time__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rtl_flight_time__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/rtl_flight_time__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/rtl_flight_time__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rtl_flight_time__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/rtl_flight_time__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/rtl_flight_time__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rtl_flight_time__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/rtl_flight_time__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/rtl_flight_time__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rtl_flight_time__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/rtl_flight_time__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/rtl_flight_time__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/rtl_flight_time__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/safety__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/safety__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/safety__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/safety__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/safety__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/safety__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/safety__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/safety__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/safety__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/safety__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/safety__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/safety__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/safety__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/safety__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/safety__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/safety__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/safety__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/safety__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/satellite_info__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/satellite_info__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/satellite_info__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/satellite_info__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/satellite_info__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/satellite_info__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/satellite_info__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/satellite_info__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/satellite_info__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/satellite_info__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/satellite_info__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/satellite_info__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/satellite_info__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/satellite_info__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/satellite_info__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/satellite_info__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/satellite_info__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/satellite_info__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel_fifo__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel_fifo__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel_fifo__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel_fifo__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel_fifo__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel_fifo__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel_fifo__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel_fifo__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel_fifo__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel_fifo__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel_fifo__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel_fifo__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel_fifo__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel_fifo__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel_fifo__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel_fifo__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel_fifo__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel_fifo__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_baro__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_baro__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_baro__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_baro__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_baro__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_baro__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_baro__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_baro__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_baro__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_baro__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_baro__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_baro__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_baro__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_baro__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_baro__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_baro__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_baro__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_baro__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_combined__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_combined__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_combined__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_combined__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_combined__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_combined__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_combined__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_combined__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_combined__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_combined__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_combined__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_combined__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_combined__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_combined__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_combined__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_combined__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_combined__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_combined__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_correction__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_correction__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_correction__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_correction__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_correction__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_correction__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_correction__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_correction__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_correction__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_correction__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_correction__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_correction__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_correction__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_correction__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_correction__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_correction__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_correction__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_correction__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gps__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gps__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gps__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gps__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gps__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gps__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gps__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gps__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gps__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gps__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gps__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gps__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gps__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gps__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gps__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gps__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gps__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gps__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fft__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fft__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fft__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fft__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fft__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fft__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fft__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fft__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fft__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fft__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fft__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fft__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fft__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fft__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fft__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fft__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fft__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fft__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fifo__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fifo__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fifo__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fifo__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fifo__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fifo__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fifo__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fifo__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fifo__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fifo__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fifo__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fifo__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fifo__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fifo__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fifo__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fifo__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fifo__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fifo__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_mag__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_mag__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_mag__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_mag__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_mag__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_mag__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_mag__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_mag__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_mag__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_mag__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_mag__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_mag__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_mag__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_mag__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_mag__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_mag__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_mag__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_mag__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_preflight_mag__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_preflight_mag__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_preflight_mag__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_preflight_mag__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_preflight_mag__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_preflight_mag__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_preflight_mag__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_preflight_mag__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_preflight_mag__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_preflight_mag__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_preflight_mag__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_preflight_mag__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_preflight_mag__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_preflight_mag__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_preflight_mag__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_preflight_mag__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_preflight_mag__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_preflight_mag__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_selection__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_selection__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_selection__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_selection__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_selection__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_selection__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_selection__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_selection__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_selection__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_selection__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_selection__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_selection__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_selection__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_selection__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_selection__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_selection__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_selection__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_selection__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/sensors_status_imu__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/sensors_status_imu__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensors_status_imu__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/sensors_status_imu__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensors_status_imu__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensors_status_imu__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/sensors_status_imu__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/sensors_status_imu__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensors_status_imu__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/sensors_status_imu__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensors_status_imu__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensors_status_imu__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/sensors_status_imu__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/sensors_status_imu__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensors_status_imu__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/sensors_status_imu__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/sensors_status_imu__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/sensors_status_imu__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/system_power__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/system_power__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/system_power__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/system_power__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/system_power__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/system_power__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/system_power__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/system_power__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/system_power__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/system_power__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/system_power__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/system_power__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/system_power__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/system_power__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/system_power__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/system_power__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/system_power__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/system_power__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/takeoff_status__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/takeoff_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/takeoff_status__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/takeoff_status__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/takeoff_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/takeoff_status__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/takeoff_status__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/takeoff_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/takeoff_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/takeoff_status__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/takeoff_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/takeoff_status__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/takeoff_status__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/takeoff_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/takeoff_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/takeoff_status__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/takeoff_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/takeoff_status__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/task_stack_info__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/task_stack_info__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/task_stack_info__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/task_stack_info__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/task_stack_info__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/task_stack_info__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/task_stack_info__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/task_stack_info__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/task_stack_info__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/task_stack_info__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/task_stack_info__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/task_stack_info__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/task_stack_info__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/task_stack_info__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/task_stack_info__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/task_stack_info__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/task_stack_info__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/task_stack_info__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/tecs_status__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/tecs_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/tecs_status__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/tecs_status__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/tecs_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/tecs_status__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/tecs_status__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/tecs_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/tecs_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/tecs_status__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/tecs_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/tecs_status__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/tecs_status__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/tecs_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/tecs_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/tecs_status__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/tecs_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/tecs_status__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/telemetry_status__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/telemetry_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/telemetry_status__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/telemetry_status__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/telemetry_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/telemetry_status__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/telemetry_status__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/telemetry_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/telemetry_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/telemetry_status__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/telemetry_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/telemetry_status__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/telemetry_status__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/telemetry_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/telemetry_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/telemetry_status__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/telemetry_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/telemetry_status__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/test_motor__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/test_motor__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/test_motor__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/test_motor__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/test_motor__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/test_motor__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/test_motor__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/test_motor__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/test_motor__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/test_motor__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/test_motor__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/test_motor__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/test_motor__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/test_motor__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/test_motor__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/test_motor__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/test_motor__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/test_motor__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/timesync__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/timesync__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/timesync__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/timesync__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/timesync__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/timesync__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/timesync__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/timesync__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/timesync__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/timesync__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/timesync__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/timesync__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/timesync__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/timesync__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/timesync__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/timesync__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/timesync__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/timesync__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/timesync_status__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/timesync_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/timesync_status__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/timesync_status__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/timesync_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/timesync_status__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/timesync_status__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/timesync_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/timesync_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/timesync_status__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/timesync_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/timesync_status__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/timesync_status__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/timesync_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/timesync_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/timesync_status__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/timesync_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/timesync_status__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_bezier__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_bezier__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_bezier__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_bezier__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_bezier__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_bezier__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_bezier__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_bezier__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_bezier__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_bezier__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_bezier__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_bezier__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_bezier__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_bezier__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_bezier__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_bezier__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_bezier__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_bezier__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_setpoint__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_setpoint__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_setpoint__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_setpoint__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_setpoint__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_setpoint__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_setpoint__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_setpoint__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_setpoint__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_setpoint__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_setpoint__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_setpoint__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_setpoint__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_setpoint__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_setpoint__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_setpoint__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_waypoint__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_waypoint__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_waypoint__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_waypoint__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_waypoint__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_waypoint__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_waypoint__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_waypoint__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_waypoint__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_waypoint__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_waypoint__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_waypoint__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_waypoint__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_waypoint__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_waypoint__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_waypoint__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_waypoint__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_waypoint__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/transponder_report__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/transponder_report__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/transponder_report__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/transponder_report__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/transponder_report__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/transponder_report__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/transponder_report__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/transponder_report__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/transponder_report__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/transponder_report__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/transponder_report__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/transponder_report__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/transponder_report__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/transponder_report__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/transponder_report__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/transponder_report__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/transponder_report__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/transponder_report__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/tune_control__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/tune_control__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/tune_control__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/tune_control__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/tune_control__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/tune_control__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/tune_control__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/tune_control__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/tune_control__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/tune_control__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/tune_control__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/tune_control__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/tune_control__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/tune_control__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/tune_control__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/tune_control__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/tune_control__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/tune_control__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_request__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_request__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_request__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_request__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_request__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_request__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_request__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_request__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_request__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_request__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_request__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_request__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_request__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_request__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_request__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_request__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_request__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_request__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_value__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_value__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_value__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_value__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_value__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_value__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_value__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_value__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_value__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_value__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_value__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_value__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_value__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_value__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_value__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_value__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_value__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_value__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream_ack__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream_ack__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream_ack__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream_ack__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream_ack__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream_ack__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream_ack__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream_ack__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream_ack__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream_ack__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream_ack__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream_ack__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream_ack__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream_ack__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream_ack__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream_ack__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream_ack__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream_ack__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_acceleration__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_acceleration__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_acceleration__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_acceleration__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_acceleration__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_acceleration__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_acceleration__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_acceleration__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_acceleration__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_acceleration__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_acceleration__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_acceleration__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_acceleration__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_acceleration__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_acceleration__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_acceleration__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_acceleration__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_acceleration__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_air_data__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_air_data__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_air_data__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_air_data__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_air_data__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_air_data__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_air_data__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_air_data__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_air_data__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_air_data__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_air_data__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_air_data__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_air_data__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_air_data__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_air_data__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_air_data__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_air_data__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_air_data__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command_ack__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command_ack__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command_ack__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command_ack__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command_ack__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command_ack__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command_ack__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command_ack__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command_ack__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command_ack__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command_ack__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command_ack__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command_ack__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command_ack__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command_ack__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command_ack__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command_ack__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command_ack__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_constraints__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_constraints__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_constraints__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_constraints__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_constraints__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_constraints__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_constraints__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_constraints__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_constraints__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_constraints__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_constraints__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_constraints__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_constraints__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_constraints__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_constraints__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_constraints__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_constraints__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_constraints__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_control_mode__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_control_mode__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_control_mode__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_control_mode__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_control_mode__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_control_mode__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_control_mode__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_control_mode__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_control_mode__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_control_mode__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_control_mode__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_control_mode__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_control_mode__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_control_mode__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_control_mode__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_control_mode__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_control_mode__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_control_mode__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_gps_position__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_gps_position__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_gps_position__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_gps_position__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_gps_position__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_gps_position__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_gps_position__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_gps_position__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_gps_position__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_gps_position__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_gps_position__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_gps_position__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_gps_position__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_gps_position__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_gps_position__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_gps_position__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_gps_position__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_gps_position__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu_status__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu_status__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu_status__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu_status__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu_status__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu_status__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu_status__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu_status__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu_status__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu_status__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_land_detected__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_land_detected__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_land_detected__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_land_detected__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_land_detected__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_land_detected__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_land_detected__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_land_detected__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_land_detected__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_land_detected__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_land_detected__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_land_detected__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_land_detected__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_land_detected__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_land_detected__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_land_detected__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_land_detected__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_land_detected__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_magnetometer__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_magnetometer__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_magnetometer__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_magnetometer__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_magnetometer__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_magnetometer__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_magnetometer__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_magnetometer__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_magnetometer__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_magnetometer__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_magnetometer__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_magnetometer__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_magnetometer__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_magnetometer__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_magnetometer__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_magnetometer__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_magnetometer__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_magnetometer__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_odometry__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_odometry__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_odometry__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_odometry__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_odometry__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_odometry__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_odometry__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_odometry__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_odometry__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_odometry__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_odometry__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_odometry__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_odometry__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_odometry__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_odometry__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_odometry__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_odometry__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_odometry__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_roi__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_roi__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_roi__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_roi__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_roi__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_roi__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_roi__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_roi__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_roi__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_roi__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_roi__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_roi__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_roi__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_roi__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_roi__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_roi__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_roi__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_roi__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status_flags__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status_flags__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status_flags__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status_flags__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status_flags__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status_flags__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status_flags__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status_flags__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status_flags__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status_flags__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status_flags__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status_flags__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status_flags__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status_flags__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status_flags__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status_flags__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status_flags__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status_flags__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_vision_attitude__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_vision_attitude__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_vision_attitude__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_vision_attitude__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_vision_attitude__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_vision_attitude__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_vision_attitude__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_vision_attitude__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_vision_attitude__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_vision_attitude__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_vision_attitude__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_vision_attitude__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_vision_attitude__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_vision_attitude__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_vision_attitude__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_vision_attitude__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_vision_attitude__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_vision_attitude__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_visual_odometry__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_visual_odometry__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_visual_odometry__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_visual_odometry__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_visual_odometry__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_visual_odometry__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_visual_odometry__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_visual_odometry__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_visual_odometry__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_visual_odometry__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_visual_odometry__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_visual_odometry__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_visual_odometry__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_visual_odometry__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_visual_odometry__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_visual_odometry__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_visual_odometry__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_visual_odometry__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/vtol_vehicle_status__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/vtol_vehicle_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vtol_vehicle_status__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/vtol_vehicle_status__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vtol_vehicle_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vtol_vehicle_status__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/vtol_vehicle_status__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/vtol_vehicle_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vtol_vehicle_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/vtol_vehicle_status__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vtol_vehicle_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vtol_vehicle_status__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/vtol_vehicle_status__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/vtol_vehicle_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vtol_vehicle_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/vtol_vehicle_status__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/vtol_vehicle_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/vtol_vehicle_status__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/wheel_encoders__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/wheel_encoders__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/wheel_encoders__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/wheel_encoders__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/wheel_encoders__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/wheel_encoders__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/wheel_encoders__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/wheel_encoders__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/wheel_encoders__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/wheel_encoders__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/wheel_encoders__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/wheel_encoders__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/wheel_encoders__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/wheel_encoders__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/wheel_encoders__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/wheel_encoders__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/wheel_encoders__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/wheel_encoders__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/wind__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/wind__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/wind__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/wind__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/wind__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/wind__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/wind__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/wind__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/wind__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/wind__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/wind__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/wind__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/wind__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/wind__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/wind__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/wind__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/wind__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/wind__type_support.c.s rosidl_typesupport_introspection_c/px4_msgs/msg/yaw_estimator_status__type_support.o: rosidl_typesupport_introspection_c/px4_msgs/msg/yaw_estimator_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/yaw_estimator_status__type_support.o # target to build an object file rosidl_typesupport_introspection_c/px4_msgs/msg/yaw_estimator_status__type_support.c.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/yaw_estimator_status__type_support.c.o .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/yaw_estimator_status__type_support.c.o rosidl_typesupport_introspection_c/px4_msgs/msg/yaw_estimator_status__type_support.i: rosidl_typesupport_introspection_c/px4_msgs/msg/yaw_estimator_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/yaw_estimator_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_c/px4_msgs/msg/yaw_estimator_status__type_support.c.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/yaw_estimator_status__type_support.c.i .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/yaw_estimator_status__type_support.c.i rosidl_typesupport_introspection_c/px4_msgs/msg/yaw_estimator_status__type_support.s: rosidl_typesupport_introspection_c/px4_msgs/msg/yaw_estimator_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/yaw_estimator_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_c/px4_msgs/msg/yaw_estimator_status__type_support.c.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/rosidl_typesupport_introspection_c/px4_msgs/msg/yaw_estimator_status__type_support.c.s .PHONY : rosidl_typesupport_introspection_c/px4_msgs/msg/yaw_estimator_status__type_support.c.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_armed__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_armed__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_armed__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_armed__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_armed__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_armed__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_armed__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_armed__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_armed__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_armed__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_armed__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_armed__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_armed__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_armed__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_armed__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_armed__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_armed__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_armed__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls0__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls0__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls0__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls0__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls0__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls0__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls0__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls0__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls0__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls0__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls0__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls0__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls0__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls0__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls0__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls0__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls0__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls0__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls1__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls1__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls1__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls1__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls1__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls1__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls1__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls1__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls1__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls1__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls1__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls1__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls1__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls1__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls1__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls1__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls1__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls1__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls2__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls2__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls2__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls2__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls2__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls2__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls2__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls2__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls2__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls2__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls2__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls2__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls2__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls2__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls2__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls2__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls2__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls2__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls3__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls3__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls3__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls3__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls3__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls3__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls3__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls3__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls3__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls3__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls3__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls3__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls3__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls3__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls3__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls3__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls3__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls3__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls4__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls4__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls4__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls4__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls4__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls4__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls4__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls4__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls4__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls4__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls4__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls4__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls4__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls4__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls4__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls4__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls4__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls4__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls5__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls5__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls5__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls5__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls5__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls5__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls5__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls5__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls5__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls5__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls5__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls5__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls5__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls5__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls5__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls5__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls5__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls5__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_outputs__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_outputs__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_outputs__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_outputs__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_outputs__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_outputs__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_outputs__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_outputs__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_outputs__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_outputs__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_outputs__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_outputs__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_outputs__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_outputs__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_outputs__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_outputs__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_outputs__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_outputs__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/adc_report__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/adc_report__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/adc_report__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/adc_report__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/adc_report__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/adc_report__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/adc_report__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/adc_report__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/adc_report__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/adc_report__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/adc_report__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/adc_report__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/adc_report__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/adc_report__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/adc_report__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/adc_report__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/adc_report__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/adc_report__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_validated__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_validated__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_validated__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_validated__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_validated__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_validated__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_validated__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_validated__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_validated__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_validated__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_validated__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_validated__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_validated__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_validated__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_validated__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_validated__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_validated__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_validated__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_wind__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_wind__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_wind__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_wind__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_wind__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_wind__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_wind__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_wind__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_wind__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_wind__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_wind__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_wind__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_wind__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_wind__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_wind__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_wind__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_wind__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_wind__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/battery_status__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/battery_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/battery_status__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/battery_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/battery_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/battery_status__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/battery_status__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/battery_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/battery_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/battery_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/battery_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/battery_status__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/battery_status__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/battery_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/battery_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/battery_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/battery_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/battery_status__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_capture__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_capture__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_capture__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_capture__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_capture__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_capture__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_capture__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_capture__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_capture__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_capture__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_capture__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_capture__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_capture__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_capture__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_capture__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_capture__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_capture__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_capture__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/cellular_status__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/cellular_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/cellular_status__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/cellular_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/cellular_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/cellular_status__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/cellular_status__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/cellular_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/cellular_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/cellular_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/cellular_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/cellular_status__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/cellular_status__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/cellular_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/cellular_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/cellular_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/cellular_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/cellular_status__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_constraints__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_constraints__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_constraints__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_constraints__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_constraints__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_constraints__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_constraints__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_constraints__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_constraints__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_constraints__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_constraints__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_constraints__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_constraints__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_constraints__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_constraints__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_constraints__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_constraints__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_constraints__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_report__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_report__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_report__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_report__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_report__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_report__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_report__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_report__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_report__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_report__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_report__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_report__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_report__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_report__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_report__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_report__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_report__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_report__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/commander_state__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/commander_state__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/commander_state__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/commander_state__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/commander_state__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/commander_state__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/commander_state__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/commander_state__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/commander_state__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/commander_state__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/commander_state__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/commander_state__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/commander_state__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/commander_state__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/commander_state__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/commander_state__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/commander_state__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/commander_state__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/control_allocator_status__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/control_allocator_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/control_allocator_status__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/control_allocator_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/control_allocator_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/control_allocator_status__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/control_allocator_status__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/control_allocator_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/control_allocator_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/control_allocator_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/control_allocator_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/control_allocator_status__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/control_allocator_status__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/control_allocator_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/control_allocator_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/control_allocator_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/control_allocator_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/control_allocator_status__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/cpuload__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/cpuload__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/cpuload__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/cpuload__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/cpuload__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/cpuload__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/cpuload__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/cpuload__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/cpuload__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/cpuload__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/cpuload__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/cpuload__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/cpuload__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/cpuload__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/cpuload__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/cpuload__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/cpuload__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/cpuload__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_array__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_array__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_array__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_array__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_array__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_array__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_array__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_array__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_array__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_array__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_array__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_array__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_array__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_array__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_array__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_array__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_array__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_array__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_key_value__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_key_value__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_key_value__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_key_value__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_key_value__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_key_value__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_key_value__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_key_value__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_key_value__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_key_value__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_key_value__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_key_value__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_key_value__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_key_value__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_key_value__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_key_value__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_key_value__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_key_value__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_value__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_value__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_value__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_value__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_value__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_value__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_value__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_value__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_value__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_value__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_value__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_value__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_value__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_value__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_value__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_value__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_value__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_value__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_vect__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_vect__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_vect__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_vect__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_vect__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_vect__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_vect__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_vect__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_vect__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_vect__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_vect__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_vect__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_vect__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_vect__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_vect__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_vect__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_vect__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_vect__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/differential_pressure__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/differential_pressure__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/differential_pressure__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/differential_pressure__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/differential_pressure__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/differential_pressure__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/differential_pressure__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/differential_pressure__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/differential_pressure__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/differential_pressure__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/differential_pressure__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/differential_pressure__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/differential_pressure__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/differential_pressure__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/differential_pressure__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/differential_pressure__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/differential_pressure__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/differential_pressure__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/distance_sensor__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/distance_sensor__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/distance_sensor__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/distance_sensor__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/distance_sensor__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/distance_sensor__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/distance_sensor__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/distance_sensor__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/distance_sensor__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/distance_sensor__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/distance_sensor__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/distance_sensor__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/distance_sensor__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/distance_sensor__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/distance_sensor__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/distance_sensor__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/distance_sensor__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/distance_sensor__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf2_timestamps__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf2_timestamps__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf2_timestamps__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf2_timestamps__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf2_timestamps__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf2_timestamps__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf2_timestamps__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf2_timestamps__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf2_timestamps__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf2_timestamps__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf2_timestamps__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf2_timestamps__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf2_timestamps__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf2_timestamps__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf2_timestamps__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf2_timestamps__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf2_timestamps__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf2_timestamps__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf_gps_drift__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf_gps_drift__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf_gps_drift__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf_gps_drift__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf_gps_drift__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf_gps_drift__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf_gps_drift__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf_gps_drift__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf_gps_drift__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf_gps_drift__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf_gps_drift__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf_gps_drift__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf_gps_drift__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf_gps_drift__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf_gps_drift__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf_gps_drift__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf_gps_drift__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf_gps_drift__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_report__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_report__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_report__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_report__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_report__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_report__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_report__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_report__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_report__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_report__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_report__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_report__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_report__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_report__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_report__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_report__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_report__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_report__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_status__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_status__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_status__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_status__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_status__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_status__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_status__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_attitude__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_attitude__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_attitude__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_attitude__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_attitude__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_attitude__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_attitude__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_attitude__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_attitude__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_attitude__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_attitude__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_attitude__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_event_flags__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_event_flags__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_event_flags__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_event_flags__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_event_flags__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_event_flags__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_event_flags__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_event_flags__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_event_flags__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_event_flags__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_event_flags__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_event_flags__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_event_flags__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_event_flags__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_event_flags__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_event_flags__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_event_flags__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_event_flags__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_global_position__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_global_position__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_global_position__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_global_position__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_global_position__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_global_position__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_global_position__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_global_position__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_global_position__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_global_position__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_global_position__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_global_position__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_global_position__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_global_position__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_global_position__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_global_position__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_global_position__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_global_position__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovations__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovations__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovations__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovations__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovations__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovations__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovations__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovations__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovations__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovations__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovations__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovations__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovations__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovations__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovations__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovations__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovations__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovations__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_local_position__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_local_position__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_local_position__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_local_position__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_local_position__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_local_position__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_local_position__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_local_position__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_local_position__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_local_position__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_local_position__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_local_position__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_local_position__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_local_position__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_local_position__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_local_position__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_local_position__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_local_position__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_odometry__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_odometry__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_odometry__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_odometry__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_odometry__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_odometry__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_odometry__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_odometry__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_odometry__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_odometry__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_odometry__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_odometry__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_selector_status__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_selector_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_selector_status__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_selector_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_selector_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_selector_status__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_selector_status__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_selector_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_selector_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_selector_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_selector_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_selector_status__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_selector_status__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_selector_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_selector_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_selector_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_selector_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_selector_status__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_states__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_states__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_states__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_states__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_states__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_states__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_states__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_states__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_states__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_states__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_states__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_states__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_states__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_states__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_states__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_states__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_states__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_states__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status_flags__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status_flags__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status_flags__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status_flags__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status_flags__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status_flags__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status_flags__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status_flags__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status_flags__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status_flags__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status_flags__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status_flags__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status_flags__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status_flags__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status_flags__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status_flags__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status_flags__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status_flags__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_wind__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_wind__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_wind__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_wind__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_wind__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_wind__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_wind__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_wind__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_wind__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_wind__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_wind__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_wind__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_wind__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_wind__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_wind__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_wind__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_wind__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_wind__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/follow_target__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/follow_target__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/follow_target__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/follow_target__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/follow_target__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/follow_target__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/follow_target__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/follow_target__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/follow_target__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/follow_target__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/follow_target__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/follow_target__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/follow_target__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/follow_target__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/follow_target__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/follow_target__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/follow_target__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/follow_target__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/generator_status__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/generator_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/generator_status__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/generator_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/generator_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/generator_status__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/generator_status__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/generator_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/generator_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/generator_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/generator_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/generator_status__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/generator_status__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/generator_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/generator_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/generator_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/generator_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/generator_status__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/geofence_result__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/geofence_result__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/geofence_result__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/geofence_result__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/geofence_result__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/geofence_result__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/geofence_result__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/geofence_result__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/geofence_result__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/geofence_result__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/geofence_result__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/geofence_result__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/geofence_result__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/geofence_result__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/geofence_result__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/geofence_result__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/geofence_result__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/geofence_result__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_information__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_information__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_information__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_information__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_information__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_information__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_information__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_information__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_information__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_information__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_information__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_information__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_information__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_information__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_information__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_information__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_information__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_information__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_information__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_information__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_information__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_information__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_information__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_information__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_information__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_information__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_information__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_information__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_information__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_information__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_information__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_information__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_information__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_information__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_information__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_information__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_status__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_status__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_status__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_status__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_status__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_status__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_status__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_dump__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_dump__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_dump__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_dump__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_dump__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_dump__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_dump__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_dump__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_dump__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_dump__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_dump__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_dump__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_dump__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_dump__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_dump__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_dump__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_dump__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_dump__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_inject_data__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_inject_data__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_inject_data__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_inject_data__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_inject_data__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_inject_data__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_inject_data__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_inject_data__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_inject_data__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_inject_data__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_inject_data__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_inject_data__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_inject_data__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_inject_data__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_inject_data__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_inject_data__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_inject_data__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_inject_data__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/heater_status__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/heater_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/heater_status__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/heater_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/heater_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/heater_status__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/heater_status__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/heater_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/heater_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/heater_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/heater_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/heater_status__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/heater_status__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/heater_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/heater_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/heater_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/heater_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/heater_status__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/home_position__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/home_position__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/home_position__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/home_position__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/home_position__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/home_position__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/home_position__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/home_position__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/home_position__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/home_position__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/home_position__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/home_position__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/home_position__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/home_position__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/home_position__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/home_position__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/home_position__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/home_position__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/input_rc__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/input_rc__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/input_rc__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/input_rc__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/input_rc__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/input_rc__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/input_rc__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/input_rc__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/input_rc__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/input_rc__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/input_rc__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/input_rc__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/input_rc__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/input_rc__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/input_rc__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/input_rc__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/input_rc__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/input_rc__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/iridiumsbd_status__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/iridiumsbd_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/iridiumsbd_status__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/iridiumsbd_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/iridiumsbd_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/iridiumsbd_status__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/iridiumsbd_status__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/iridiumsbd_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/iridiumsbd_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/iridiumsbd_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/iridiumsbd_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/iridiumsbd_status__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/iridiumsbd_status__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/iridiumsbd_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/iridiumsbd_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/iridiumsbd_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/iridiumsbd_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/iridiumsbd_status__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/irlock_report__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/irlock_report__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/irlock_report__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/irlock_report__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/irlock_report__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/irlock_report__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/irlock_report__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/irlock_report__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/irlock_report__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/irlock_report__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/irlock_report__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/irlock_report__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/irlock_report__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/irlock_report__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/irlock_report__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/irlock_report__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/irlock_report__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/irlock_report__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_gear__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_gear__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_gear__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_gear__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_gear__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_gear__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_gear__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_gear__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_gear__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_gear__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_gear__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_gear__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_gear__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_gear__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_gear__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_gear__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_gear__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_gear__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_innovations__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_innovations__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_innovations__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_innovations__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_innovations__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_innovations__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_innovations__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_innovations__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_innovations__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_innovations__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_innovations__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_innovations__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_innovations__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_innovations__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_innovations__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_innovations__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_innovations__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_innovations__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_pose__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_pose__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_pose__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_pose__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_pose__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_pose__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_pose__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_pose__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_pose__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_pose__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_pose__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_pose__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_pose__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_pose__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_pose__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_pose__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_pose__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_pose__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/led_control__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/led_control__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/led_control__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/led_control__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/led_control__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/led_control__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/led_control__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/led_control__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/led_control__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/led_control__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/led_control__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/led_control__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/led_control__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/led_control__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/led_control__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/led_control__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/led_control__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/led_control__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/log_message__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/log_message__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/log_message__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/log_message__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/log_message__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/log_message__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/log_message__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/log_message__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/log_message__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/log_message__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/log_message__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/log_message__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/log_message__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/log_message__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/log_message__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/log_message__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/log_message__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/log_message__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/logger_status__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/logger_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/logger_status__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/logger_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/logger_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/logger_status__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/logger_status__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/logger_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/logger_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/logger_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/logger_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/logger_status__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/logger_status__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/logger_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/logger_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/logger_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/logger_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/logger_status__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/mag_worker_data__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/mag_worker_data__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mag_worker_data__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/mag_worker_data__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/mag_worker_data__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mag_worker_data__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/mag_worker_data__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/mag_worker_data__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mag_worker_data__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/mag_worker_data__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/mag_worker_data__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mag_worker_data__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/mag_worker_data__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/mag_worker_data__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mag_worker_data__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/mag_worker_data__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/mag_worker_data__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mag_worker_data__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_setpoint__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_setpoint__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_setpoint__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_setpoint__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_setpoint__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_setpoint__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_setpoint__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_switches__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_switches__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_switches__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_switches__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_switches__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_switches__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_switches__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_switches__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_switches__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_switches__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_switches__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_switches__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_switches__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_switches__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_switches__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_switches__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_switches__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_switches__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/mavlink_log__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/mavlink_log__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mavlink_log__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/mavlink_log__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/mavlink_log__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mavlink_log__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/mavlink_log__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/mavlink_log__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mavlink_log__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/mavlink_log__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/mavlink_log__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mavlink_log__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/mavlink_log__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/mavlink_log__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mavlink_log__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/mavlink_log__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/mavlink_log__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mavlink_log__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission_result__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission_result__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission_result__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission_result__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission_result__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission_result__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission_result__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission_result__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission_result__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission_result__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission_result__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission_result__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission_result__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission_result__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission_result__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission_result__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission_result__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission_result__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/mount_orientation__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/mount_orientation__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mount_orientation__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/mount_orientation__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/mount_orientation__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mount_orientation__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/mount_orientation__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/mount_orientation__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mount_orientation__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/mount_orientation__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/mount_orientation__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mount_orientation__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/mount_orientation__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/mount_orientation__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mount_orientation__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/mount_orientation__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/mount_orientation__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/mount_orientation__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/navigator_mission_item__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/navigator_mission_item__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/navigator_mission_item__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/navigator_mission_item__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/navigator_mission_item__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/navigator_mission_item__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/navigator_mission_item__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/navigator_mission_item__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/navigator_mission_item__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/navigator_mission_item__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/navigator_mission_item__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/navigator_mission_item__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/navigator_mission_item__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/navigator_mission_item__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/navigator_mission_item__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/navigator_mission_item__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/navigator_mission_item__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/navigator_mission_item__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/offboard_control_mode__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/offboard_control_mode__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/offboard_control_mode__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/offboard_control_mode__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/offboard_control_mode__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/offboard_control_mode__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/offboard_control_mode__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/offboard_control_mode__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/offboard_control_mode__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/offboard_control_mode__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/offboard_control_mode__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/offboard_control_mode__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/offboard_control_mode__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/offboard_control_mode__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/offboard_control_mode__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/offboard_control_mode__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/offboard_control_mode__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/offboard_control_mode__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/onboard_computer_status__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/onboard_computer_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/onboard_computer_status__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/onboard_computer_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/onboard_computer_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/onboard_computer_status__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/onboard_computer_status__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/onboard_computer_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/onboard_computer_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/onboard_computer_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/onboard_computer_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/onboard_computer_status__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/onboard_computer_status__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/onboard_computer_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/onboard_computer_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/onboard_computer_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/onboard_computer_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/onboard_computer_status__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/optical_flow__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/optical_flow__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/optical_flow__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/optical_flow__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/optical_flow__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/optical_flow__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/optical_flow__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/optical_flow__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/optical_flow__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/optical_flow__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/optical_flow__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/optical_flow__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/optical_flow__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/optical_flow__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/optical_flow__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/optical_flow__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/optical_flow__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/optical_flow__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_multitest__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_multitest__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_multitest__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_multitest__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_multitest__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_multitest__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_multitest__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_multitest__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_multitest__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_multitest__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_multitest__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_multitest__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_multitest__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_multitest__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_multitest__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_multitest__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_multitest__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_multitest__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_large__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_large__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_large__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_large__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_large__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_large__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_large__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_large__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_large__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_large__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_large__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_large__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_large__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_large__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_large__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_large__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_large__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_large__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/orbit_status__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/orbit_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orbit_status__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/orbit_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/orbit_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orbit_status__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/orbit_status__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/orbit_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orbit_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/orbit_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/orbit_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orbit_status__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/orbit_status__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/orbit_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orbit_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/orbit_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/orbit_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/orbit_status__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/parameter_update__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/parameter_update__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/parameter_update__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/parameter_update__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/parameter_update__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/parameter_update__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/parameter_update__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/parameter_update__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/parameter_update__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/parameter_update__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/parameter_update__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/parameter_update__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/parameter_update__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/parameter_update__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/parameter_update__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/parameter_update__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/parameter_update__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/parameter_update__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/ping__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/ping__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ping__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/ping__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/ping__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ping__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/ping__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/ping__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ping__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/ping__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/ping__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ping__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/ping__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/ping__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ping__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/ping__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/ping__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ping__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_landing_status__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_landing_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_landing_status__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_landing_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_landing_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_landing_status__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_landing_status__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_landing_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_landing_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_landing_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_landing_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_landing_status__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_landing_status__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_landing_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_landing_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_landing_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_landing_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_landing_status__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_status__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_status__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_status__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_status__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_status__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_status__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_status__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_button_state__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_button_state__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_button_state__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_button_state__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_button_state__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_button_state__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_button_state__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_button_state__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_button_state__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_button_state__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_button_state__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_button_state__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_button_state__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_button_state__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_button_state__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_button_state__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_button_state__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_button_state__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_monitor__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_monitor__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_monitor__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_monitor__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_monitor__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_monitor__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_monitor__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_monitor__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_monitor__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_monitor__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_monitor__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_monitor__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_monitor__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_monitor__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_monitor__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_monitor__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_monitor__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_monitor__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/pwm_input__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/pwm_input__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/pwm_input__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/pwm_input__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/pwm_input__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/pwm_input__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/pwm_input__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/pwm_input__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/pwm_input__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/pwm_input__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/pwm_input__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/pwm_input__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/pwm_input__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/pwm_input__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/pwm_input__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/pwm_input__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/pwm_input__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/pwm_input__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/px4_io_status__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/px4_io_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/px4_io_status__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/px4_io_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/px4_io_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/px4_io_status__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/px4_io_status__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/px4_io_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/px4_io_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/px4_io_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/px4_io_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/px4_io_status__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/px4_io_status__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/px4_io_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/px4_io_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/px4_io_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/px4_io_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/px4_io_status__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_req__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_req__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_req__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_req__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_req__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_req__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_req__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_req__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_req__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_req__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_req__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_req__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_req__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_req__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_req__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_req__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_req__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_req__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_retval__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_retval__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_retval__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_retval__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_retval__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_retval__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_retval__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_retval__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_retval__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_retval__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_retval__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_retval__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_retval__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_retval__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_retval__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_retval__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_retval__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_retval__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/radio_status__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/radio_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/radio_status__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/radio_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/radio_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/radio_status__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/radio_status__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/radio_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/radio_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/radio_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/radio_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/radio_status__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/radio_status__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/radio_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/radio_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/radio_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/radio_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/radio_status__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/rate_ctrl_status__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/rate_ctrl_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rate_ctrl_status__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/rate_ctrl_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/rate_ctrl_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rate_ctrl_status__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/rate_ctrl_status__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/rate_ctrl_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rate_ctrl_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/rate_ctrl_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/rate_ctrl_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rate_ctrl_status__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/rate_ctrl_status__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/rate_ctrl_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rate_ctrl_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/rate_ctrl_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/rate_ctrl_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rate_ctrl_status__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_channels__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_channels__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_channels__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_channels__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_channels__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_channels__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_channels__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_channels__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_channels__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_channels__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_channels__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_channels__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_channels__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_channels__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_channels__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_channels__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_channels__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_channels__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_parameter_map__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_parameter_map__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_parameter_map__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_parameter_map__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_parameter_map__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_parameter_map__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_parameter_map__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_parameter_map__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_parameter_map__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_parameter_map__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_parameter_map__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_parameter_map__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_parameter_map__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_parameter_map__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_parameter_map__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_parameter_map__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_parameter_map__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_parameter_map__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/rpm__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/rpm__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rpm__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/rpm__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/rpm__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rpm__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/rpm__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/rpm__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rpm__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/rpm__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/rpm__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rpm__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/rpm__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/rpm__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rpm__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/rpm__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/rpm__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rpm__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/rtl_flight_time__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/rtl_flight_time__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rtl_flight_time__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/rtl_flight_time__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/rtl_flight_time__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rtl_flight_time__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/rtl_flight_time__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/rtl_flight_time__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rtl_flight_time__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/rtl_flight_time__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/rtl_flight_time__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rtl_flight_time__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/rtl_flight_time__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/rtl_flight_time__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rtl_flight_time__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/rtl_flight_time__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/rtl_flight_time__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/rtl_flight_time__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/safety__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/safety__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/safety__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/safety__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/safety__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/safety__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/safety__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/safety__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/safety__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/safety__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/safety__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/safety__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/safety__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/safety__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/safety__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/safety__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/safety__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/safety__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/satellite_info__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/satellite_info__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/satellite_info__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/satellite_info__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/satellite_info__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/satellite_info__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/satellite_info__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/satellite_info__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/satellite_info__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/satellite_info__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/satellite_info__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/satellite_info__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/satellite_info__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/satellite_info__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/satellite_info__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/satellite_info__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/satellite_info__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/satellite_info__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_baro__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_baro__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_baro__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_baro__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_baro__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_baro__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_baro__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_baro__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_baro__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_baro__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_baro__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_baro__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_baro__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_baro__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_baro__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_baro__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_baro__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_baro__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_combined__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_combined__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_combined__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_combined__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_combined__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_combined__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_combined__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_combined__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_combined__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_combined__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_combined__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_combined__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_combined__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_combined__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_combined__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_combined__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_combined__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_combined__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_correction__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_correction__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_correction__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_correction__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_correction__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_correction__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_correction__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_correction__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_correction__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_correction__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_correction__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_correction__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_correction__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_correction__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_correction__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_correction__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_correction__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_correction__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gps__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gps__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gps__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gps__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gps__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gps__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gps__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gps__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gps__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gps__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gps__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gps__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gps__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gps__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gps__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gps__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gps__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gps__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_mag__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_mag__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_mag__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_mag__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_mag__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_mag__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_mag__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_mag__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_mag__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_mag__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_mag__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_mag__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_mag__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_mag__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_mag__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_mag__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_mag__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_mag__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_selection__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_selection__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_selection__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_selection__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_selection__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_selection__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_selection__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_selection__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_selection__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_selection__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_selection__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_selection__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_selection__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_selection__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_selection__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_selection__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_selection__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_selection__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensors_status_imu__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensors_status_imu__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensors_status_imu__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensors_status_imu__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensors_status_imu__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensors_status_imu__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensors_status_imu__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensors_status_imu__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensors_status_imu__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensors_status_imu__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensors_status_imu__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensors_status_imu__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensors_status_imu__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensors_status_imu__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensors_status_imu__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensors_status_imu__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensors_status_imu__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensors_status_imu__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/system_power__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/system_power__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/system_power__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/system_power__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/system_power__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/system_power__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/system_power__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/system_power__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/system_power__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/system_power__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/system_power__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/system_power__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/system_power__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/system_power__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/system_power__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/system_power__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/system_power__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/system_power__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/takeoff_status__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/takeoff_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/takeoff_status__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/takeoff_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/takeoff_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/takeoff_status__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/takeoff_status__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/takeoff_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/takeoff_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/takeoff_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/takeoff_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/takeoff_status__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/takeoff_status__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/takeoff_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/takeoff_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/takeoff_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/takeoff_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/takeoff_status__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/task_stack_info__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/task_stack_info__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/task_stack_info__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/task_stack_info__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/task_stack_info__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/task_stack_info__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/task_stack_info__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/task_stack_info__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/task_stack_info__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/task_stack_info__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/task_stack_info__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/task_stack_info__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/task_stack_info__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/task_stack_info__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/task_stack_info__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/task_stack_info__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/task_stack_info__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/task_stack_info__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/tecs_status__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/tecs_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/tecs_status__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/tecs_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/tecs_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/tecs_status__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/tecs_status__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/tecs_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/tecs_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/tecs_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/tecs_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/tecs_status__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/tecs_status__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/tecs_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/tecs_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/tecs_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/tecs_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/tecs_status__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/telemetry_status__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/telemetry_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/telemetry_status__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/telemetry_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/telemetry_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/telemetry_status__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/telemetry_status__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/telemetry_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/telemetry_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/telemetry_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/telemetry_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/telemetry_status__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/telemetry_status__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/telemetry_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/telemetry_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/telemetry_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/telemetry_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/telemetry_status__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/test_motor__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/test_motor__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/test_motor__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/test_motor__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/test_motor__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/test_motor__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/test_motor__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/test_motor__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/test_motor__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/test_motor__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/test_motor__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/test_motor__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/test_motor__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/test_motor__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/test_motor__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/test_motor__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/test_motor__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/test_motor__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync_status__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync_status__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync_status__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync_status__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync_status__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync_status__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync_status__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_bezier__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_bezier__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_bezier__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_bezier__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_bezier__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_bezier__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_bezier__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_bezier__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_bezier__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_bezier__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_bezier__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_bezier__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_bezier__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_bezier__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_bezier__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_bezier__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_bezier__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_bezier__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_setpoint__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_setpoint__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_setpoint__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_setpoint__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_setpoint__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_setpoint__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_setpoint__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_waypoint__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_waypoint__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_waypoint__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_waypoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_waypoint__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_waypoint__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_waypoint__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_waypoint__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_waypoint__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_waypoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_waypoint__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_waypoint__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_waypoint__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_waypoint__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_waypoint__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_waypoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_waypoint__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_waypoint__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/transponder_report__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/transponder_report__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/transponder_report__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/transponder_report__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/transponder_report__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/transponder_report__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/transponder_report__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/transponder_report__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/transponder_report__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/transponder_report__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/transponder_report__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/transponder_report__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/transponder_report__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/transponder_report__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/transponder_report__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/transponder_report__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/transponder_report__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/transponder_report__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/tune_control__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/tune_control__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/tune_control__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/tune_control__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/tune_control__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/tune_control__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/tune_control__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/tune_control__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/tune_control__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/tune_control__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/tune_control__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/tune_control__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/tune_control__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/tune_control__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/tune_control__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/tune_control__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/tune_control__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/tune_control__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream_ack__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream_ack__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream_ack__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream_ack__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream_ack__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream_ack__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream_ack__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream_ack__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream_ack__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream_ack__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream_ack__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream_ack__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream_ack__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream_ack__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream_ack__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream_ack__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream_ack__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream_ack__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_acceleration__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_acceleration__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_acceleration__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_acceleration__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_acceleration__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_acceleration__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_acceleration__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_acceleration__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_acceleration__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_acceleration__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_acceleration__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_acceleration__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_acceleration__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_acceleration__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_acceleration__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_acceleration__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_acceleration__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_acceleration__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_air_data__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_air_data__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_air_data__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_air_data__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_air_data__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_air_data__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_air_data__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_air_data__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_air_data__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_air_data__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_air_data__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_air_data__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_air_data__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_air_data__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_air_data__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_air_data__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_air_data__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_air_data__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command_ack__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command_ack__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command_ack__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command_ack__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command_ack__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command_ack__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command_ack__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command_ack__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command_ack__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command_ack__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command_ack__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command_ack__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command_ack__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command_ack__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command_ack__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command_ack__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command_ack__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command_ack__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_constraints__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_constraints__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_constraints__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_constraints__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_constraints__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_constraints__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_constraints__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_constraints__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_constraints__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_constraints__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_constraints__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_constraints__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_constraints__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_constraints__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_constraints__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_constraints__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_constraints__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_constraints__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_control_mode__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_control_mode__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_control_mode__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_control_mode__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_control_mode__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_control_mode__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_control_mode__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_control_mode__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_control_mode__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_control_mode__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_control_mode__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_control_mode__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_control_mode__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_control_mode__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_control_mode__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_control_mode__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_control_mode__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_control_mode__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_gps_position__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_gps_position__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_gps_position__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_gps_position__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_gps_position__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_gps_position__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_gps_position__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_gps_position__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_gps_position__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_gps_position__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_gps_position__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_gps_position__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_gps_position__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_gps_position__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_gps_position__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_gps_position__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_gps_position__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_gps_position__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu_status__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu_status__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu_status__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu_status__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu_status__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu_status__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu_status__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_land_detected__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_land_detected__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_land_detected__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_land_detected__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_land_detected__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_land_detected__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_land_detected__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_land_detected__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_land_detected__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_land_detected__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_land_detected__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_land_detected__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_land_detected__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_land_detected__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_land_detected__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_land_detected__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_land_detected__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_land_detected__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_odometry__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_odometry__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_odometry__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_odometry__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_odometry__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_odometry__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_odometry__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_odometry__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_odometry__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_odometry__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_odometry__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_odometry__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_roi__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_roi__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_roi__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_roi__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_roi__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_roi__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_roi__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_roi__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_roi__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_roi__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_roi__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_roi__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_roi__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_roi__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_roi__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_roi__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_roi__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_roi__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status_flags__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status_flags__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status_flags__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status_flags__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status_flags__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status_flags__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status_flags__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status_flags__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status_flags__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status_flags__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status_flags__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status_flags__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status_flags__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status_flags__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status_flags__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status_flags__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status_flags__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status_flags__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/wheel_encoders__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/wheel_encoders__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/wheel_encoders__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/wheel_encoders__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/wheel_encoders__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/wheel_encoders__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/wheel_encoders__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/wheel_encoders__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/wheel_encoders__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/wheel_encoders__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/wheel_encoders__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/wheel_encoders__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/wheel_encoders__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/wheel_encoders__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/wheel_encoders__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/wheel_encoders__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/wheel_encoders__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/wheel_encoders__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/wind__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/wind__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/wind__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/wind__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/wind__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/wind__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/wind__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/wind__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/wind__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/wind__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/wind__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/wind__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/wind__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/wind__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/wind__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/wind__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/wind__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/wind__type_support.cpp.s rosidl_typesupport_introspection_cpp/px4_msgs/msg/yaw_estimator_status__type_support.o: rosidl_typesupport_introspection_cpp/px4_msgs/msg/yaw_estimator_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/yaw_estimator_status__type_support.o # target to build an object file rosidl_typesupport_introspection_cpp/px4_msgs/msg/yaw_estimator_status__type_support.cpp.o: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/yaw_estimator_status__type_support.cpp.o .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/yaw_estimator_status__type_support.cpp.o rosidl_typesupport_introspection_cpp/px4_msgs/msg/yaw_estimator_status__type_support.i: rosidl_typesupport_introspection_cpp/px4_msgs/msg/yaw_estimator_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/yaw_estimator_status__type_support.i # target to preprocess a source file rosidl_typesupport_introspection_cpp/px4_msgs/msg/yaw_estimator_status__type_support.cpp.i: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/yaw_estimator_status__type_support.cpp.i .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/yaw_estimator_status__type_support.cpp.i rosidl_typesupport_introspection_cpp/px4_msgs/msg/yaw_estimator_status__type_support.s: rosidl_typesupport_introspection_cpp/px4_msgs/msg/yaw_estimator_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/yaw_estimator_status__type_support.s # target to generate assembly for a file rosidl_typesupport_introspection_cpp/px4_msgs/msg/yaw_estimator_status__type_support.cpp.s: $(MAKE) -f CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/build.make CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/px4_msgs/msg/yaw_estimator_status__type_support.cpp.s .PHONY : rosidl_typesupport_introspection_cpp/px4_msgs/msg/yaw_estimator_status__type_support.cpp.s # Help Target help: @echo "The following are some of the valid targets for this Makefile:" @echo "... all (the default if no target is provided)" @echo "... clean" @echo "... depend" @echo "... install/local" @echo "... install" @echo "... list_install_components" @echo "... rebuild_cache" @echo "... edit_cache" @echo "... px4_msgs__rosidl_typesupport_fastrtps_cpp" @echo "... px4_msgs__cpp" @echo "... uninstall" @echo "... px4_msgs__rosidl_typesupport_c" @echo "... px4_msgs" @echo "... install/strip" @echo "... px4_msgs_uninstall" @echo "... px4_msgs__rosidl_generator_c" @echo "... px4_msgs__rosidl_typesupport_c__pyext" @echo "... px4_msgs__rosidl_typesupport_introspection_c" @echo "... px4_msgs__python" @echo "... px4_msgs__rosidl_typesupport_introspection_cpp" @echo "... px4_msgs__rosidl_typesupport_fastrtps_c" @echo "... px4_msgs__rosidl_typesupport_fastrtps_c__pyext" @echo "... px4_msgs__rosidl_typesupport_cpp" @echo "... test" @echo "... px4_msgs__py" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_armed__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_armed__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_armed__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_controls0__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_controls0__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_controls0__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_controls1__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_controls1__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_controls1__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_controls2__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_controls2__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_controls2__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_controls3__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_controls3__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_controls3__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_controls4__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_controls4__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_controls4__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_controls5__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_controls5__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_controls5__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_controls__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_controls__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_controls__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_fw__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_fw__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_fw__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_mc__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_mc__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_mc__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_outputs__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_outputs__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/actuator_outputs__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/adc_report__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/adc_report__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/adc_report__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/airspeed__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/airspeed__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/airspeed__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/airspeed_validated__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/airspeed_validated__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/airspeed_validated__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/airspeed_wind__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/airspeed_wind__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/airspeed_wind__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/battery_status__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/battery_status__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/battery_status__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/camera_capture__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/camera_capture__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/camera_capture__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/camera_trigger__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/camera_trigger__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/camera_trigger__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/camera_trigger_secondary__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/camera_trigger_secondary__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/camera_trigger_secondary__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/cellular_status__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/cellular_status__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/cellular_status__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/collision_constraints__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/collision_constraints__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/collision_constraints__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/collision_report__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/collision_report__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/collision_report__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/commander_state__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/commander_state__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/commander_state__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/control_allocator_status__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/control_allocator_status__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/control_allocator_status__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/cpuload__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/cpuload__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/cpuload__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/debug_array__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/debug_array__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/debug_array__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/debug_key_value__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/debug_key_value__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/debug_key_value__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/debug_value__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/debug_value__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/debug_value__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/debug_vect__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/debug_vect__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/debug_vect__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/differential_pressure__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/differential_pressure__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/differential_pressure__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/distance_sensor__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/distance_sensor__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/distance_sensor__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/ekf2_timestamps__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/ekf2_timestamps__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/ekf2_timestamps__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/ekf_gps_drift__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/ekf_gps_drift__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/ekf_gps_drift__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/esc_report__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/esc_report__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/esc_report__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/esc_status__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/esc_status__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/esc_status__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_attitude__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_attitude__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_attitude__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_event_flags__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_event_flags__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_event_flags__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_global_position__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_global_position__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_global_position__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_innovation_test_ratios__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_innovation_test_ratios__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_innovation_test_ratios__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_innovation_variances__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_innovation_variances__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_innovation_variances__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_innovations__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_innovations__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_innovations__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_local_position__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_local_position__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_local_position__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_odometry__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_odometry__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_odometry__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_optical_flow_vel__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_optical_flow_vel__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_optical_flow_vel__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_selector_status__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_selector_status__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_selector_status__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_sensor_bias__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_sensor_bias__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_sensor_bias__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_states__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_states__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_states__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_status__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_status__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_status__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_status_flags__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_status_flags__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_status_flags__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_visual_odometry_aligned__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_visual_odometry_aligned__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_visual_odometry_aligned__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_wind__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_wind__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/estimator_wind__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/follow_target__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/follow_target__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/follow_target__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/fw_virtual_attitude_setpoint__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/fw_virtual_attitude_setpoint__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/fw_virtual_attitude_setpoint__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/generator_status__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/generator_status__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/generator_status__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/geofence_result__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/geofence_result__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/geofence_result__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/gimbal_device_attitude_status__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/gimbal_device_attitude_status__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/gimbal_device_attitude_status__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/gimbal_device_information__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/gimbal_device_information__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/gimbal_device_information__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/gimbal_device_set_attitude__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/gimbal_device_set_attitude__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/gimbal_device_set_attitude__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/gimbal_manager_information__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/gimbal_manager_information__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/gimbal_manager_information__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_attitude__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_attitude__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_attitude__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_manual_control__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_manual_control__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_manual_control__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/gimbal_manager_status__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/gimbal_manager_status__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/gimbal_manager_status__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/gps_dump__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/gps_dump__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/gps_dump__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/gps_inject_data__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/gps_inject_data__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/gps_inject_data__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/heater_status__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/heater_status__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/heater_status__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/home_position__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/home_position__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/home_position__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/hover_thrust_estimate__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/hover_thrust_estimate__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/hover_thrust_estimate__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/input_rc__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/input_rc__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/input_rc__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/iridiumsbd_status__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/iridiumsbd_status__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/iridiumsbd_status__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/irlock_report__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/irlock_report__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/irlock_report__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/landing_gear__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/landing_gear__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/landing_gear__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/landing_target_innovations__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/landing_target_innovations__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/landing_target_innovations__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/landing_target_pose__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/landing_target_pose__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/landing_target_pose__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/led_control__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/led_control__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/led_control__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/log_message__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/log_message__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/log_message__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/logger_status__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/logger_status__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/logger_status__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/mag_worker_data__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/mag_worker_data__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/mag_worker_data__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/manual_control_setpoint__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/manual_control_setpoint__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/manual_control_setpoint__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/manual_control_switches__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/manual_control_switches__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/manual_control_switches__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/mavlink_log__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/mavlink_log__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/mavlink_log__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/mc_virtual_attitude_setpoint__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/mc_virtual_attitude_setpoint__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/mc_virtual_attitude_setpoint__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/mission__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/mission__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/mission__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/mission_result__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/mission_result__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/mission_result__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/mount_orientation__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/mount_orientation__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/mount_orientation__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/multirotor_motor_limits__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/multirotor_motor_limits__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/multirotor_motor_limits__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/navigator_mission_item__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/navigator_mission_item__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/navigator_mission_item__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/obstacle_distance__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/obstacle_distance__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/obstacle_distance__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/obstacle_distance_fused__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/obstacle_distance_fused__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/obstacle_distance_fused__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/offboard_control_mode__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/offboard_control_mode__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/offboard_control_mode__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/onboard_computer_status__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/onboard_computer_status__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/onboard_computer_status__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/optical_flow__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/optical_flow__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/optical_flow__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/orb_multitest__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/orb_multitest__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/orb_multitest__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/orb_test__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/orb_test__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/orb_test__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/orb_test_large__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/orb_test_large__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/orb_test_large__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/orb_test_medium__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/orb_test_medium__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/orb_test_medium__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/orb_test_medium_multi__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/orb_test_medium_multi__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/orb_test_medium_multi__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue_poll__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue_poll__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue_poll__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/orb_test_medium_wrap_around__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/orb_test_medium_wrap_around__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/orb_test_medium_wrap_around__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/orbit_status__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/orbit_status__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/orbit_status__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/parameter_update__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/parameter_update__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/parameter_update__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/ping__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/ping__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/ping__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/position_controller_landing_status__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/position_controller_landing_status__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/position_controller_landing_status__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/position_controller_status__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/position_controller_status__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/position_controller_status__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/position_setpoint__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/position_setpoint__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/position_setpoint__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/position_setpoint_triplet__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/position_setpoint_triplet__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/position_setpoint_triplet__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/power_button_state__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/power_button_state__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/power_button_state__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/power_monitor__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/power_monitor__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/power_monitor__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/pwm_input__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/pwm_input__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/pwm_input__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/px4_io_status__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/px4_io_status__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/px4_io_status__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/qshell_req__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/qshell_req__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/qshell_req__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/qshell_retval__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/qshell_retval__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/qshell_retval__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/radio_status__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/radio_status__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/radio_status__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/rate_ctrl_status__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/rate_ctrl_status__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/rate_ctrl_status__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/rc_channels__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/rc_channels__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/rc_channels__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/rc_parameter_map__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/rc_parameter_map__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/rc_parameter_map__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/rpm__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/rpm__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/rpm__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/rtl_flight_time__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/rtl_flight_time__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/rtl_flight_time__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/safety__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/safety__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/safety__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/satellite_info__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/satellite_info__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/satellite_info__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_accel__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_accel__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_accel__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_accel_fifo__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_accel_fifo__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_accel_fifo__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_baro__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_baro__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_baro__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_combined__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_combined__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_combined__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_correction__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_correction__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_correction__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_gps__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_gps__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_gps__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_gyro__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_gyro__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_gyro__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_gyro_fft__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_gyro_fft__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_gyro_fft__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_gyro_fifo__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_gyro_fifo__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_gyro_fifo__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_mag__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_mag__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_mag__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_preflight_mag__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_preflight_mag__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_preflight_mag__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_selection__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_selection__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/sensor_selection__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/sensors_status_imu__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/sensors_status_imu__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/sensors_status_imu__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/system_power__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/system_power__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/system_power__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/takeoff_status__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/takeoff_status__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/takeoff_status__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/task_stack_info__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/task_stack_info__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/task_stack_info__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/tecs_status__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/tecs_status__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/tecs_status__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/telemetry_status__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/telemetry_status__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/telemetry_status__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/test_motor__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/test_motor__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/test_motor__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/timesync__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/timesync__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/timesync__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/timesync_status__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/timesync_status__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/timesync_status__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/trajectory_bezier__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/trajectory_bezier__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/trajectory_bezier__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/trajectory_setpoint__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/trajectory_setpoint__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/trajectory_setpoint__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/trajectory_waypoint__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/trajectory_waypoint__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/trajectory_waypoint__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/transponder_report__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/transponder_report__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/transponder_report__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/tune_control__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/tune_control__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/tune_control__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/uavcan_parameter_request__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/uavcan_parameter_request__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/uavcan_parameter_request__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/uavcan_parameter_value__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/uavcan_parameter_value__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/uavcan_parameter_value__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/ulog_stream__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/ulog_stream__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/ulog_stream__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/ulog_stream_ack__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/ulog_stream_ack__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/ulog_stream_ack__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_acceleration__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_acceleration__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_acceleration__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_actuator_setpoint__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_actuator_setpoint__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_actuator_setpoint__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_air_data__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_air_data__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_air_data__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_attitude__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_attitude__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_attitude__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_attitude_groundtruth__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_attitude_groundtruth__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_attitude_groundtruth__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_attitude_setpoint__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_attitude_setpoint__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_attitude_setpoint__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_command__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_command__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_command__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_command_ack__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_command_ack__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_command_ack__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_constraints__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_constraints__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_constraints__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_control_mode__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_control_mode__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_control_mode__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_global_position__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_global_position__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_global_position__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_global_position_groundtruth__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_global_position_groundtruth__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_global_position_groundtruth__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_gps_position__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_gps_position__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_gps_position__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_imu__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_imu__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_imu__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_imu_status__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_imu_status__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_imu_status__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_land_detected__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_land_detected__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_land_detected__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_local_position__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_local_position__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_local_position__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_local_position_groundtruth__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_local_position_groundtruth__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_local_position_groundtruth__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_local_position_setpoint__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_local_position_setpoint__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_local_position_setpoint__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_magnetometer__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_magnetometer__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_magnetometer__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_mocap_odometry__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_mocap_odometry__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_mocap_odometry__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_odometry__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_odometry__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_odometry__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_rates_setpoint__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_rates_setpoint__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_rates_setpoint__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_roi__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_roi__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_roi__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_status__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_status__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_status__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_status_flags__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_status_flags__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_status_flags__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_thrust_setpoint__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_thrust_setpoint__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_thrust_setpoint__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_torque_setpoint__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_torque_setpoint__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_torque_setpoint__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_bezier__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_bezier__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_bezier__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_vision_attitude__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_vision_attitude__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_vision_attitude__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_visual_odometry__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_visual_odometry__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vehicle_visual_odometry__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/vtol_vehicle_status__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/vtol_vehicle_status__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/vtol_vehicle_status__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/wheel_encoders__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/wheel_encoders__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/wheel_encoders__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/wind__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/wind__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/wind__functions.s" @echo "... rosidl_generator_c/px4_msgs/msg/yaw_estimator_status__functions.o" @echo "... rosidl_generator_c/px4_msgs/msg/yaw_estimator_status__functions.i" @echo "... rosidl_generator_c/px4_msgs/msg/yaw_estimator_status__functions.s" @echo "... rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_c.o" @echo "... rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_c.i" @echo "... rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_c.s" @echo "... rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_fastrtps_c.o" @echo "... rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_fastrtps_c.i" @echo "... rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_fastrtps_c.s" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_armed_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_armed_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_armed_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_controls0_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_controls0_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_controls0_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_controls1_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_controls1_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_controls1_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_controls2_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_controls2_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_controls2_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_controls3_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_controls3_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_controls3_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_controls4_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_controls4_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_controls4_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_controls5_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_controls5_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_controls5_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_controls_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_controls_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_controls_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_fw_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_fw_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_fw_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_mc_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_mc_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_controls_virtual_mc_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_outputs_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_outputs_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_actuator_outputs_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_adc_report_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_adc_report_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_adc_report_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_airspeed_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_airspeed_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_airspeed_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_airspeed_validated_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_airspeed_validated_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_airspeed_validated_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_airspeed_wind_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_airspeed_wind_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_airspeed_wind_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_battery_status_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_battery_status_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_battery_status_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_camera_capture_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_camera_capture_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_camera_capture_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_camera_trigger_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_camera_trigger_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_camera_trigger_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_camera_trigger_secondary_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_camera_trigger_secondary_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_camera_trigger_secondary_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_cellular_status_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_cellular_status_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_cellular_status_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_collision_constraints_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_collision_constraints_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_collision_constraints_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_collision_report_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_collision_report_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_collision_report_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_commander_state_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_commander_state_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_commander_state_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_control_allocator_status_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_control_allocator_status_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_control_allocator_status_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_cpuload_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_cpuload_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_cpuload_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_debug_array_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_debug_array_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_debug_array_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_debug_key_value_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_debug_key_value_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_debug_key_value_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_debug_value_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_debug_value_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_debug_value_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_debug_vect_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_debug_vect_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_debug_vect_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_differential_pressure_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_differential_pressure_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_differential_pressure_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_distance_sensor_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_distance_sensor_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_distance_sensor_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_ekf2_timestamps_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_ekf2_timestamps_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_ekf2_timestamps_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_ekf_gps_drift_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_ekf_gps_drift_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_ekf_gps_drift_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_esc_report_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_esc_report_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_esc_report_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_esc_status_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_esc_status_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_esc_status_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_attitude_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_attitude_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_attitude_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_event_flags_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_event_flags_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_event_flags_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_global_position_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_global_position_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_global_position_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_innovation_test_ratios_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_innovation_test_ratios_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_innovation_test_ratios_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_innovation_variances_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_innovation_variances_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_innovation_variances_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_innovations_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_innovations_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_innovations_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_local_position_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_local_position_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_local_position_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_odometry_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_odometry_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_odometry_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_optical_flow_vel_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_optical_flow_vel_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_optical_flow_vel_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_selector_status_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_selector_status_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_selector_status_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_sensor_bias_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_sensor_bias_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_sensor_bias_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_states_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_states_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_states_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_status_flags_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_status_flags_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_status_flags_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_status_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_status_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_status_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_visual_odometry_aligned_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_visual_odometry_aligned_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_visual_odometry_aligned_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_wind_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_wind_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_estimator_wind_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_follow_target_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_follow_target_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_follow_target_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_fw_virtual_attitude_setpoint_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_fw_virtual_attitude_setpoint_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_fw_virtual_attitude_setpoint_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_generator_status_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_generator_status_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_generator_status_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_geofence_result_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_geofence_result_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_geofence_result_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_gimbal_device_attitude_status_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_gimbal_device_attitude_status_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_gimbal_device_attitude_status_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_gimbal_device_information_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_gimbal_device_information_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_gimbal_device_information_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_gimbal_device_set_attitude_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_gimbal_device_set_attitude_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_gimbal_device_set_attitude_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_gimbal_manager_information_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_gimbal_manager_information_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_gimbal_manager_information_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_attitude_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_attitude_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_attitude_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_manual_control_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_manual_control_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_manual_control_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_gimbal_manager_status_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_gimbal_manager_status_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_gimbal_manager_status_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_gps_dump_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_gps_dump_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_gps_dump_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_gps_inject_data_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_gps_inject_data_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_gps_inject_data_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_heater_status_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_heater_status_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_heater_status_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_home_position_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_home_position_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_home_position_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_hover_thrust_estimate_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_hover_thrust_estimate_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_hover_thrust_estimate_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_input_rc_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_input_rc_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_input_rc_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_iridiumsbd_status_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_iridiumsbd_status_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_iridiumsbd_status_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_irlock_report_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_irlock_report_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_irlock_report_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_landing_gear_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_landing_gear_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_landing_gear_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_landing_target_innovations_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_landing_target_innovations_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_landing_target_innovations_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_landing_target_pose_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_landing_target_pose_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_landing_target_pose_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_led_control_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_led_control_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_led_control_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_log_message_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_log_message_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_log_message_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_logger_status_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_logger_status_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_logger_status_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_mag_worker_data_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_mag_worker_data_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_mag_worker_data_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_manual_control_setpoint_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_manual_control_setpoint_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_manual_control_setpoint_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_manual_control_switches_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_manual_control_switches_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_manual_control_switches_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_mavlink_log_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_mavlink_log_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_mavlink_log_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_mc_virtual_attitude_setpoint_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_mc_virtual_attitude_setpoint_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_mc_virtual_attitude_setpoint_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_mission_result_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_mission_result_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_mission_result_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_mission_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_mission_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_mission_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_mount_orientation_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_mount_orientation_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_mount_orientation_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_multirotor_motor_limits_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_multirotor_motor_limits_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_multirotor_motor_limits_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_navigator_mission_item_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_navigator_mission_item_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_navigator_mission_item_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_obstacle_distance_fused_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_obstacle_distance_fused_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_obstacle_distance_fused_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_obstacle_distance_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_obstacle_distance_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_obstacle_distance_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_offboard_control_mode_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_offboard_control_mode_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_offboard_control_mode_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_onboard_computer_status_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_onboard_computer_status_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_onboard_computer_status_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_optical_flow_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_optical_flow_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_optical_flow_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_orb_multitest_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_orb_multitest_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_orb_multitest_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_orb_test_large_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_orb_test_large_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_orb_test_large_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_orb_test_medium_multi_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_orb_test_medium_multi_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_orb_test_medium_multi_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_poll_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_poll_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_poll_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_orb_test_medium_queue_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_orb_test_medium_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_orb_test_medium_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_orb_test_medium_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_orb_test_medium_wrap_around_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_orb_test_medium_wrap_around_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_orb_test_medium_wrap_around_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_orb_test_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_orb_test_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_orb_test_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_orbit_status_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_orbit_status_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_orbit_status_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_parameter_update_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_parameter_update_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_parameter_update_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_ping_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_ping_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_ping_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_position_controller_landing_status_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_position_controller_landing_status_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_position_controller_landing_status_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_position_controller_status_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_position_controller_status_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_position_controller_status_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_position_setpoint_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_position_setpoint_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_position_setpoint_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_position_setpoint_triplet_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_position_setpoint_triplet_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_position_setpoint_triplet_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_power_button_state_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_power_button_state_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_power_button_state_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_power_monitor_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_power_monitor_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_power_monitor_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_pwm_input_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_pwm_input_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_pwm_input_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_px4_io_status_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_px4_io_status_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_px4_io_status_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_qshell_req_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_qshell_req_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_qshell_req_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_qshell_retval_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_qshell_retval_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_qshell_retval_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_radio_status_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_radio_status_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_radio_status_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_rate_ctrl_status_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_rate_ctrl_status_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_rate_ctrl_status_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_rc_channels_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_rc_channels_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_rc_channels_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_rc_parameter_map_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_rc_parameter_map_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_rc_parameter_map_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_rpm_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_rpm_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_rpm_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_rtl_flight_time_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_rtl_flight_time_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_rtl_flight_time_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_safety_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_safety_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_safety_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_satellite_info_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_satellite_info_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_satellite_info_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_accel_fifo_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_accel_fifo_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_accel_fifo_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_accel_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_accel_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_accel_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_baro_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_baro_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_baro_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_combined_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_combined_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_combined_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_correction_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_correction_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_correction_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_gps_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_gps_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_gps_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fft_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fft_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fft_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fifo_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fifo_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_gyro_fifo_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_gyro_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_gyro_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_gyro_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_mag_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_mag_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_mag_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_preflight_mag_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_preflight_mag_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_preflight_mag_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_selection_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_selection_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_sensor_selection_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_sensors_status_imu_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_sensors_status_imu_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_sensors_status_imu_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_system_power_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_system_power_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_system_power_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_takeoff_status_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_takeoff_status_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_takeoff_status_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_task_stack_info_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_task_stack_info_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_task_stack_info_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_tecs_status_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_tecs_status_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_tecs_status_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_telemetry_status_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_telemetry_status_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_telemetry_status_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_test_motor_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_test_motor_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_test_motor_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_timesync_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_timesync_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_timesync_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_timesync_status_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_timesync_status_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_timesync_status_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_trajectory_bezier_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_trajectory_bezier_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_trajectory_bezier_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_trajectory_setpoint_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_trajectory_setpoint_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_trajectory_setpoint_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_trajectory_waypoint_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_trajectory_waypoint_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_trajectory_waypoint_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_transponder_report_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_transponder_report_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_transponder_report_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_tune_control_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_tune_control_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_tune_control_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_request_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_request_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_request_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_value_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_value_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_uavcan_parameter_value_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_ulog_stream_ack_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_ulog_stream_ack_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_ulog_stream_ack_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_ulog_stream_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_ulog_stream_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_ulog_stream_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_acceleration_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_acceleration_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_acceleration_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_actuator_setpoint_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_actuator_setpoint_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_actuator_setpoint_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_air_data_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_air_data_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_air_data_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_setpoint_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_setpoint_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_angular_acceleration_setpoint_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_groundtruth_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_groundtruth_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_groundtruth_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_angular_velocity_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_groundtruth_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_groundtruth_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_groundtruth_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_setpoint_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_setpoint_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_attitude_setpoint_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_command_ack_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_command_ack_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_command_ack_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_command_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_command_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_command_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_constraints_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_constraints_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_constraints_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_control_mode_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_control_mode_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_control_mode_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_groundtruth_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_groundtruth_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_groundtruth_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_global_position_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_gps_position_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_gps_position_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_gps_position_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_imu_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_imu_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_imu_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_imu_status_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_imu_status_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_imu_status_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_land_detected_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_land_detected_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_land_detected_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_groundtruth_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_groundtruth_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_groundtruth_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_setpoint_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_setpoint_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_setpoint_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_magnetometer_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_magnetometer_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_magnetometer_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_mocap_odometry_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_mocap_odometry_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_mocap_odometry_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_odometry_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_odometry_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_odometry_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_rates_setpoint_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_rates_setpoint_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_rates_setpoint_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_roi_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_roi_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_roi_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_status_flags_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_status_flags_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_status_flags_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_status_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_status_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_status_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_thrust_setpoint_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_thrust_setpoint_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_thrust_setpoint_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_torque_setpoint_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_torque_setpoint_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_torque_setpoint_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_bezier_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_bezier_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_bezier_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_desired_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_desired_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_desired_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_vision_attitude_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_vision_attitude_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_vision_attitude_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_visual_odometry_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_visual_odometry_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vehicle_visual_odometry_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_vtol_vehicle_status_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_vtol_vehicle_status_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_vtol_vehicle_status_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_wheel_encoders_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_wheel_encoders_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_wheel_encoders_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_wind_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_wind_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_wind_s.s" @echo "... rosidl_generator_py/px4_msgs/msg/_yaw_estimator_status_s.o" @echo "... rosidl_generator_py/px4_msgs/msg/_yaw_estimator_status_s.i" @echo "... rosidl_generator_py/px4_msgs/msg/_yaw_estimator_status_s.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_armed__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_armed__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_armed__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_controls0__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_controls0__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_controls0__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_controls1__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_controls1__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_controls1__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_controls2__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_controls2__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_controls2__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_controls3__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_controls3__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_controls3__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_controls4__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_controls4__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_controls4__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_controls5__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_controls5__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_controls5__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_controls__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_controls__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_controls__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_outputs__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_outputs__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/actuator_outputs__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/adc_report__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/adc_report__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/adc_report__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/airspeed__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/airspeed__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/airspeed__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/airspeed_validated__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/airspeed_validated__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/airspeed_validated__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/airspeed_wind__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/airspeed_wind__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/airspeed_wind__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/battery_status__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/battery_status__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/battery_status__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/camera_capture__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/camera_capture__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/camera_capture__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/camera_trigger__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/camera_trigger__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/camera_trigger__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/camera_trigger_secondary__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/camera_trigger_secondary__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/camera_trigger_secondary__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/cellular_status__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/cellular_status__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/cellular_status__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/collision_constraints__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/collision_constraints__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/collision_constraints__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/collision_report__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/collision_report__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/collision_report__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/commander_state__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/commander_state__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/commander_state__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/control_allocator_status__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/control_allocator_status__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/control_allocator_status__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/cpuload__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/cpuload__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/cpuload__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/debug_array__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/debug_array__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/debug_array__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/debug_key_value__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/debug_key_value__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/debug_key_value__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/debug_value__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/debug_value__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/debug_value__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/debug_vect__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/debug_vect__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/debug_vect__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/differential_pressure__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/differential_pressure__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/differential_pressure__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/distance_sensor__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/distance_sensor__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/distance_sensor__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/ekf2_timestamps__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/ekf2_timestamps__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/ekf2_timestamps__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/ekf_gps_drift__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/ekf_gps_drift__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/ekf_gps_drift__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/esc_report__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/esc_report__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/esc_report__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/esc_status__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/esc_status__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/esc_status__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_attitude__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_attitude__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_attitude__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_event_flags__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_event_flags__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_event_flags__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_global_position__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_global_position__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_global_position__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_variances__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_variances__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_innovation_variances__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_innovations__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_innovations__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_innovations__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_local_position__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_local_position__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_local_position__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_odometry__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_odometry__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_odometry__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_selector_status__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_selector_status__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_selector_status__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_sensor_bias__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_sensor_bias__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_sensor_bias__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_states__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_states__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_states__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_status__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_status__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_status__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_status_flags__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_status_flags__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_status_flags__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_wind__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_wind__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/estimator_wind__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/follow_target__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/follow_target__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/follow_target__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/generator_status__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/generator_status__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/generator_status__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/geofence_result__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/geofence_result__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/geofence_result__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/gimbal_device_information__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/gimbal_device_information__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/gimbal_device_information__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_information__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_information__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_information__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_status__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_status__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/gimbal_manager_status__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/gps_dump__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/gps_dump__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/gps_dump__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/gps_inject_data__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/gps_inject_data__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/gps_inject_data__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/heater_status__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/heater_status__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/heater_status__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/home_position__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/home_position__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/home_position__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/hover_thrust_estimate__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/hover_thrust_estimate__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/hover_thrust_estimate__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/input_rc__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/input_rc__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/input_rc__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/iridiumsbd_status__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/iridiumsbd_status__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/iridiumsbd_status__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/irlock_report__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/irlock_report__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/irlock_report__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/landing_gear__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/landing_gear__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/landing_gear__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/landing_target_innovations__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/landing_target_innovations__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/landing_target_innovations__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/landing_target_pose__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/landing_target_pose__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/landing_target_pose__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/led_control__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/led_control__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/led_control__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/log_message__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/log_message__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/log_message__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/logger_status__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/logger_status__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/logger_status__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/mag_worker_data__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/mag_worker_data__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/mag_worker_data__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/manual_control_setpoint__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/manual_control_setpoint__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/manual_control_setpoint__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/manual_control_switches__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/manual_control_switches__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/manual_control_switches__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/mavlink_log__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/mavlink_log__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/mavlink_log__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/mission__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/mission__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/mission__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/mission_result__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/mission_result__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/mission_result__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/mount_orientation__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/mount_orientation__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/mount_orientation__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/multirotor_motor_limits__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/multirotor_motor_limits__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/multirotor_motor_limits__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/navigator_mission_item__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/navigator_mission_item__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/navigator_mission_item__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/obstacle_distance__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/obstacle_distance__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/obstacle_distance__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/obstacle_distance_fused__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/obstacle_distance_fused__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/obstacle_distance_fused__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/offboard_control_mode__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/offboard_control_mode__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/offboard_control_mode__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/onboard_computer_status__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/onboard_computer_status__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/onboard_computer_status__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/optical_flow__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/optical_flow__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/optical_flow__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/orb_multitest__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/orb_multitest__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/orb_multitest__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/orb_test__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/orb_test__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/orb_test__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/orb_test_large__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/orb_test_large__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/orb_test_large__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/orb_test_medium__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/orb_test_medium__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/orb_test_medium__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_multi__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_multi__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_multi__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/orbit_status__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/orbit_status__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/orbit_status__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/parameter_update__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/parameter_update__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/parameter_update__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/ping__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/ping__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/ping__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/position_controller_landing_status__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/position_controller_landing_status__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/position_controller_landing_status__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/position_controller_status__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/position_controller_status__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/position_controller_status__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/position_setpoint__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/position_setpoint__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/position_setpoint__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/position_setpoint_triplet__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/position_setpoint_triplet__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/position_setpoint_triplet__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/power_button_state__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/power_button_state__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/power_button_state__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/power_monitor__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/power_monitor__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/power_monitor__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/pwm_input__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/pwm_input__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/pwm_input__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/px4_io_status__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/px4_io_status__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/px4_io_status__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/qshell_req__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/qshell_req__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/qshell_req__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/qshell_retval__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/qshell_retval__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/qshell_retval__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/radio_status__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/radio_status__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/radio_status__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/rate_ctrl_status__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/rate_ctrl_status__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/rate_ctrl_status__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/rc_channels__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/rc_channels__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/rc_channels__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/rc_parameter_map__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/rc_parameter_map__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/rc_parameter_map__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/rpm__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/rpm__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/rpm__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/rtl_flight_time__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/rtl_flight_time__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/rtl_flight_time__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/safety__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/safety__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/safety__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/satellite_info__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/satellite_info__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/satellite_info__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_accel__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_accel__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_accel__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_accel_fifo__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_accel_fifo__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_accel_fifo__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_baro__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_baro__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_baro__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_combined__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_combined__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_combined__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_correction__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_correction__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_correction__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_gps__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_gps__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_gps__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_gyro__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_gyro__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_gyro__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fft__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fft__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fft__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fifo__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fifo__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_gyro_fifo__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_mag__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_mag__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_mag__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_preflight_mag__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_preflight_mag__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_preflight_mag__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_selection__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_selection__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensor_selection__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensors_status_imu__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensors_status_imu__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/sensors_status_imu__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/system_power__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/system_power__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/system_power__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/takeoff_status__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/takeoff_status__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/takeoff_status__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/task_stack_info__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/task_stack_info__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/task_stack_info__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/tecs_status__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/tecs_status__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/tecs_status__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/telemetry_status__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/telemetry_status__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/telemetry_status__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/test_motor__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/test_motor__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/test_motor__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/timesync__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/timesync__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/timesync__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/timesync_status__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/timesync_status__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/timesync_status__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/trajectory_bezier__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/trajectory_bezier__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/trajectory_bezier__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/trajectory_setpoint__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/trajectory_setpoint__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/trajectory_setpoint__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/trajectory_waypoint__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/trajectory_waypoint__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/trajectory_waypoint__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/transponder_report__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/transponder_report__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/transponder_report__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/tune_control__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/tune_control__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/tune_control__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_request__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_request__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_request__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_value__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_value__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/uavcan_parameter_value__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/ulog_stream__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/ulog_stream__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/ulog_stream__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/ulog_stream_ack__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/ulog_stream_ack__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/ulog_stream_ack__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_acceleration__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_acceleration__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_acceleration__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_air_data__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_air_data__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_air_data__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_command__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_command__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_command__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_command_ack__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_command_ack__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_command_ack__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_constraints__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_constraints__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_constraints__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_control_mode__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_control_mode__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_control_mode__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_gps_position__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_gps_position__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_gps_position__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_imu__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_imu__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_imu__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_imu_status__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_imu_status__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_imu_status__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_land_detected__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_land_detected__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_land_detected__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_magnetometer__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_magnetometer__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_magnetometer__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_odometry__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_odometry__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_odometry__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_roi__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_roi__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_roi__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_status__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_status__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_status__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_status_flags__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_status_flags__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_status_flags__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_vision_attitude__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_vision_attitude__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_vision_attitude__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_visual_odometry__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_visual_odometry__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vehicle_visual_odometry__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/vtol_vehicle_status__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/vtol_vehicle_status__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/vtol_vehicle_status__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/wheel_encoders__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/wheel_encoders__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/wheel_encoders__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/wind__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/wind__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/wind__type_support.s" @echo "... rosidl_typesupport_c/px4_msgs/msg/yaw_estimator_status__type_support.o" @echo "... rosidl_typesupport_c/px4_msgs/msg/yaw_estimator_status__type_support.i" @echo "... rosidl_typesupport_c/px4_msgs/msg/yaw_estimator_status__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_armed__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_armed__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_armed__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls0__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls0__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls0__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls1__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls1__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls1__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls2__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls2__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls2__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls3__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls3__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls3__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls4__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls4__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls4__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls5__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls5__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls5__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_outputs__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_outputs__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/actuator_outputs__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/adc_report__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/adc_report__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/adc_report__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/airspeed__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/airspeed__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/airspeed__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/airspeed_validated__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/airspeed_validated__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/airspeed_validated__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/airspeed_wind__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/airspeed_wind__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/airspeed_wind__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/battery_status__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/battery_status__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/battery_status__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/camera_capture__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/camera_capture__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/camera_capture__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/cellular_status__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/cellular_status__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/cellular_status__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/collision_constraints__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/collision_constraints__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/collision_constraints__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/collision_report__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/collision_report__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/collision_report__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/commander_state__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/commander_state__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/commander_state__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/control_allocator_status__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/control_allocator_status__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/control_allocator_status__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/cpuload__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/cpuload__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/cpuload__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/debug_array__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/debug_array__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/debug_array__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/debug_key_value__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/debug_key_value__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/debug_key_value__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/debug_value__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/debug_value__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/debug_value__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/debug_vect__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/debug_vect__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/debug_vect__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/differential_pressure__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/differential_pressure__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/differential_pressure__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/distance_sensor__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/distance_sensor__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/distance_sensor__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/ekf2_timestamps__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/ekf2_timestamps__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/ekf2_timestamps__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/ekf_gps_drift__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/ekf_gps_drift__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/ekf_gps_drift__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/esc_report__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/esc_report__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/esc_report__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/esc_status__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/esc_status__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/esc_status__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_attitude__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_attitude__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_attitude__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_event_flags__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_event_flags__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_event_flags__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_global_position__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_global_position__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_global_position__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovations__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovations__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_innovations__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_local_position__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_local_position__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_local_position__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_odometry__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_odometry__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_odometry__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_selector_status__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_selector_status__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_selector_status__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_states__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_states__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_states__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_status__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_status__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_status__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_status_flags__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_status_flags__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_status_flags__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_wind__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_wind__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/estimator_wind__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/follow_target__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/follow_target__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/follow_target__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/generator_status__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/generator_status__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/generator_status__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/geofence_result__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/geofence_result__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/geofence_result__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_information__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_information__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_information__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_information__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_information__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_information__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_status__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_status__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/gimbal_manager_status__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/gps_dump__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/gps_dump__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/gps_dump__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/gps_inject_data__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/gps_inject_data__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/gps_inject_data__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/heater_status__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/heater_status__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/heater_status__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/home_position__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/home_position__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/home_position__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/input_rc__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/input_rc__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/input_rc__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/iridiumsbd_status__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/iridiumsbd_status__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/iridiumsbd_status__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/irlock_report__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/irlock_report__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/irlock_report__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/landing_gear__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/landing_gear__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/landing_gear__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/landing_target_innovations__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/landing_target_innovations__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/landing_target_innovations__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/landing_target_pose__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/landing_target_pose__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/landing_target_pose__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/led_control__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/led_control__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/led_control__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/log_message__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/log_message__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/log_message__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/logger_status__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/logger_status__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/logger_status__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/mag_worker_data__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/mag_worker_data__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/mag_worker_data__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/manual_control_setpoint__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/manual_control_setpoint__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/manual_control_setpoint__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/manual_control_switches__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/manual_control_switches__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/manual_control_switches__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/mavlink_log__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/mavlink_log__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/mavlink_log__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/mission__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/mission__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/mission__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/mission_result__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/mission_result__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/mission_result__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/mount_orientation__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/mount_orientation__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/mount_orientation__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/navigator_mission_item__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/navigator_mission_item__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/navigator_mission_item__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/offboard_control_mode__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/offboard_control_mode__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/offboard_control_mode__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/onboard_computer_status__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/onboard_computer_status__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/onboard_computer_status__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/optical_flow__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/optical_flow__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/optical_flow__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/orb_multitest__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/orb_multitest__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/orb_multitest__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/orb_test__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/orb_test__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/orb_test__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/orb_test_large__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/orb_test_large__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/orb_test_large__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/orbit_status__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/orbit_status__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/orbit_status__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/parameter_update__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/parameter_update__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/parameter_update__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/ping__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/ping__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/ping__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/position_controller_landing_status__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/position_controller_landing_status__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/position_controller_landing_status__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/position_controller_status__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/position_controller_status__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/position_controller_status__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/power_button_state__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/power_button_state__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/power_button_state__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/power_monitor__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/power_monitor__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/power_monitor__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/pwm_input__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/pwm_input__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/pwm_input__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/px4_io_status__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/px4_io_status__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/px4_io_status__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/qshell_req__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/qshell_req__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/qshell_req__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/qshell_retval__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/qshell_retval__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/qshell_retval__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/radio_status__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/radio_status__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/radio_status__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/rate_ctrl_status__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/rate_ctrl_status__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/rate_ctrl_status__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/rc_channels__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/rc_channels__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/rc_channels__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/rc_parameter_map__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/rc_parameter_map__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/rc_parameter_map__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/rpm__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/rpm__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/rpm__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/rtl_flight_time__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/rtl_flight_time__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/rtl_flight_time__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/safety__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/safety__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/safety__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/satellite_info__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/satellite_info__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/satellite_info__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_baro__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_baro__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_baro__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_combined__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_combined__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_combined__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_correction__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_correction__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_correction__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_gps__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_gps__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_gps__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_mag__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_mag__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_mag__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_selection__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_selection__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensor_selection__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensors_status_imu__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensors_status_imu__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/sensors_status_imu__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/system_power__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/system_power__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/system_power__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/takeoff_status__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/takeoff_status__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/takeoff_status__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/task_stack_info__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/task_stack_info__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/task_stack_info__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/tecs_status__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/tecs_status__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/tecs_status__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/telemetry_status__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/telemetry_status__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/telemetry_status__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/test_motor__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/test_motor__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/test_motor__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/timesync__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/timesync__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/timesync__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/timesync_status__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/timesync_status__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/timesync_status__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/trajectory_bezier__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/trajectory_bezier__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/trajectory_bezier__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/trajectory_setpoint__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/trajectory_setpoint__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/trajectory_setpoint__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/trajectory_waypoint__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/trajectory_waypoint__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/trajectory_waypoint__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/transponder_report__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/transponder_report__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/transponder_report__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/tune_control__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/tune_control__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/tune_control__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream_ack__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream_ack__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/ulog_stream_ack__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_acceleration__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_acceleration__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_acceleration__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_air_data__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_air_data__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_air_data__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command_ack__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command_ack__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_command_ack__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_constraints__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_constraints__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_constraints__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_control_mode__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_control_mode__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_control_mode__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_gps_position__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_gps_position__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_gps_position__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu_status__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu_status__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_imu_status__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_land_detected__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_land_detected__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_land_detected__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_odometry__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_odometry__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_odometry__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_roi__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_roi__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_roi__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status_flags__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status_flags__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_status_flags__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/wheel_encoders__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/wheel_encoders__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/wheel_encoders__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/wind__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/wind__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/wind__type_support.s" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/yaw_estimator_status__type_support.o" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/yaw_estimator_status__type_support.i" @echo "... rosidl_typesupport_cpp/px4_msgs/msg/yaw_estimator_status__type_support.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_armed__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_armed__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_armed__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls0__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls0__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls0__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls1__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls1__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls1__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls2__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls2__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls2__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls3__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls3__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls3__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls4__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls4__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls4__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls5__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls5__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls5__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_outputs__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_outputs__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_outputs__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/adc_report__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/adc_report__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/adc_report__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_validated__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_validated__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_validated__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_wind__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_wind__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_wind__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/battery_status__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/battery_status__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/battery_status__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_capture__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_capture__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_capture__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger_secondary__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger_secondary__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_trigger_secondary__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/cellular_status__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/cellular_status__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/cellular_status__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_constraints__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_constraints__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_constraints__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_report__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_report__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/collision_report__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/commander_state__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/commander_state__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/commander_state__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/control_allocator_status__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/control_allocator_status__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/control_allocator_status__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/cpuload__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/cpuload__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/cpuload__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_array__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_array__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_array__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_key_value__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_key_value__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_key_value__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_value__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_value__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_value__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_vect__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_vect__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/debug_vect__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/differential_pressure__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/differential_pressure__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/differential_pressure__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/distance_sensor__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/distance_sensor__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/distance_sensor__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf2_timestamps__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf2_timestamps__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf2_timestamps__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf_gps_drift__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf_gps_drift__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf_gps_drift__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_report__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_report__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_report__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_status__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_status__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_status__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_attitude__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_attitude__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_attitude__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_event_flags__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_event_flags__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_event_flags__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_global_position__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_global_position__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_global_position__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_variances__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_variances__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovation_variances__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovations__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovations__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovations__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_local_position__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_local_position__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_local_position__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_odometry__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_odometry__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_odometry__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_optical_flow_vel__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_optical_flow_vel__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_optical_flow_vel__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_selector_status__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_selector_status__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_selector_status__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_sensor_bias__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_sensor_bias__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_sensor_bias__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_states__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_states__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_states__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status_flags__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status_flags__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status_flags__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_wind__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_wind__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_wind__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/follow_target__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/follow_target__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/follow_target__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/generator_status__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/generator_status__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/generator_status__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/geofence_result__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/geofence_result__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/geofence_result__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_attitude_status__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_attitude_status__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_attitude_status__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_information__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_information__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_information__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_set_attitude__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_set_attitude__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_set_attitude__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_information__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_information__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_information__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_status__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_status__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_status__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_dump__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_dump__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_dump__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_inject_data__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_inject_data__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_inject_data__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/heater_status__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/heater_status__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/heater_status__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/home_position__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/home_position__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/home_position__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/hover_thrust_estimate__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/hover_thrust_estimate__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/hover_thrust_estimate__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/input_rc__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/input_rc__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/input_rc__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/iridiumsbd_status__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/iridiumsbd_status__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/iridiumsbd_status__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/irlock_report__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/irlock_report__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/irlock_report__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_gear__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_gear__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_gear__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_innovations__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_innovations__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_innovations__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_pose__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_pose__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_pose__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/led_control__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/led_control__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/led_control__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/log_message__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/log_message__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/log_message__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/logger_status__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/logger_status__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/logger_status__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/mag_worker_data__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/mag_worker_data__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/mag_worker_data__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_setpoint__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_setpoint__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_setpoint__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_switches__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_switches__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_switches__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/mavlink_log__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/mavlink_log__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/mavlink_log__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission_result__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission_result__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission_result__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/mount_orientation__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/mount_orientation__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/mount_orientation__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/multirotor_motor_limits__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/multirotor_motor_limits__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/multirotor_motor_limits__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/navigator_mission_item__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/navigator_mission_item__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/navigator_mission_item__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance_fused__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance_fused__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/obstacle_distance_fused__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/offboard_control_mode__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/offboard_control_mode__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/offboard_control_mode__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/onboard_computer_status__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/onboard_computer_status__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/onboard_computer_status__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/optical_flow__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/optical_flow__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/optical_flow__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_multitest__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_multitest__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_multitest__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_large__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_large__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_large__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_multi__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_multi__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_multi__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/orbit_status__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/orbit_status__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/orbit_status__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/parameter_update__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/parameter_update__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/parameter_update__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/ping__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/ping__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/ping__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_landing_status__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_landing_status__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_landing_status__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_status__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_status__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_status__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint_triplet__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint_triplet__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_setpoint_triplet__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_button_state__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_button_state__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_button_state__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_monitor__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_monitor__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/power_monitor__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/pwm_input__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/pwm_input__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/pwm_input__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/px4_io_status__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/px4_io_status__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/px4_io_status__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_req__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_req__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_req__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_retval__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_retval__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/qshell_retval__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/radio_status__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/radio_status__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/radio_status__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/rate_ctrl_status__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/rate_ctrl_status__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/rate_ctrl_status__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_channels__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_channels__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_channels__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_parameter_map__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_parameter_map__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_parameter_map__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/rpm__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/rpm__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/rpm__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/rtl_flight_time__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/rtl_flight_time__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/rtl_flight_time__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/safety__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/safety__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/safety__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/satellite_info__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/satellite_info__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/satellite_info__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel_fifo__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel_fifo__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_accel_fifo__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_baro__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_baro__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_baro__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_combined__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_combined__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_combined__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_correction__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_correction__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_correction__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gps__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gps__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gps__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fft__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fft__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fft__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fifo__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fifo__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fifo__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_mag__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_mag__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_mag__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_preflight_mag__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_preflight_mag__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_preflight_mag__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_selection__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_selection__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_selection__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensors_status_imu__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensors_status_imu__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensors_status_imu__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/system_power__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/system_power__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/system_power__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/takeoff_status__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/takeoff_status__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/takeoff_status__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/task_stack_info__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/task_stack_info__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/task_stack_info__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/tecs_status__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/tecs_status__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/tecs_status__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/telemetry_status__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/telemetry_status__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/telemetry_status__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/test_motor__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/test_motor__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/test_motor__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync_status__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync_status__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync_status__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_bezier__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_bezier__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_bezier__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_setpoint__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_setpoint__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_setpoint__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_waypoint__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_waypoint__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_waypoint__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/transponder_report__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/transponder_report__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/transponder_report__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/tune_control__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/tune_control__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/tune_control__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_request__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_request__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_request__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_value__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_value__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/uavcan_parameter_value__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream_ack__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream_ack__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/ulog_stream_ack__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_acceleration__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_acceleration__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_acceleration__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_air_data__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_air_data__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_air_data__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command_ack__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command_ack__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command_ack__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_constraints__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_constraints__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_constraints__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_control_mode__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_control_mode__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_control_mode__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_gps_position__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_gps_position__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_gps_position__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu_status__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu_status__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu_status__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_land_detected__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_land_detected__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_land_detected__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_magnetometer__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_magnetometer__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_magnetometer__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_mocap_odometry__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_mocap_odometry__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_mocap_odometry__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_odometry__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_odometry__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_odometry__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_rates_setpoint__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_rates_setpoint__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_rates_setpoint__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_roi__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_roi__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_roi__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status_flags__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status_flags__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status_flags__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_torque_setpoint__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_torque_setpoint__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_torque_setpoint__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_vision_attitude__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_vision_attitude__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_vision_attitude__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_visual_odometry__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_visual_odometry__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_visual_odometry__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vtol_vehicle_status__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vtol_vehicle_status__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/vtol_vehicle_status__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/wheel_encoders__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/wheel_encoders__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/wheel_encoders__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/wind__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/wind__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/wind__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/yaw_estimator_status__type_support_c.o" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/yaw_estimator_status__type_support_c.i" @echo "... rosidl_typesupport_fastrtps_c/px4_msgs/msg/yaw_estimator_status__type_support_c.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_armed__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_armed__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_armed__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls0__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls0__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls0__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls1__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls1__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls1__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls2__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls2__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls2__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls3__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls3__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls3__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls4__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls4__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls4__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls5__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls5__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls5__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_fw__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_fw__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_fw__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_mc__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_mc__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls_virtual_mc__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_outputs__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_outputs__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_outputs__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/adc_report__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/adc_report__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/adc_report__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_validated__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_validated__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_validated__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_wind__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_wind__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_wind__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/battery_status__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/battery_status__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/battery_status__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_capture__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_capture__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_capture__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger_secondary__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger_secondary__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/camera_trigger_secondary__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cellular_status__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cellular_status__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cellular_status__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_constraints__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_constraints__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_constraints__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_report__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_report__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/collision_report__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/commander_state__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/commander_state__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/commander_state__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/control_allocator_status__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/control_allocator_status__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/control_allocator_status__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cpuload__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cpuload__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cpuload__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_array__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_array__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_array__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_key_value__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_key_value__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_key_value__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_value__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_value__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_value__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_vect__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_vect__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/debug_vect__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/differential_pressure__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/differential_pressure__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/differential_pressure__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/distance_sensor__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/distance_sensor__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/distance_sensor__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf2_timestamps__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf2_timestamps__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf2_timestamps__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf_gps_drift__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf_gps_drift__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ekf_gps_drift__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_report__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_report__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_report__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_status__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_status__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/esc_status__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_attitude__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_attitude__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_attitude__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_event_flags__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_event_flags__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_event_flags__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_global_position__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_global_position__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_global_position__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_test_ratios__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_test_ratios__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_test_ratios__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_variances__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_variances__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_variances__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovations__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovations__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovations__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_local_position__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_local_position__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_local_position__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_odometry__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_odometry__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_odometry__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_optical_flow_vel__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_optical_flow_vel__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_optical_flow_vel__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_selector_status__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_selector_status__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_selector_status__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_sensor_bias__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_sensor_bias__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_sensor_bias__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_states__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_states__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_states__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status_flags__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status_flags__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status_flags__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_visual_odometry_aligned__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_visual_odometry_aligned__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_visual_odometry_aligned__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_wind__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_wind__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_wind__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/follow_target__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/follow_target__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/follow_target__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/fw_virtual_attitude_setpoint__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/fw_virtual_attitude_setpoint__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/fw_virtual_attitude_setpoint__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/generator_status__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/generator_status__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/generator_status__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/geofence_result__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/geofence_result__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/geofence_result__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_attitude_status__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_attitude_status__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_attitude_status__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_information__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_information__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_information__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_set_attitude__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_set_attitude__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_device_set_attitude__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_information__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_information__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_information__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_attitude__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_attitude__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_attitude__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_manual_control__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_manual_control__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_set_manual_control__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_status__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_status__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_status__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_dump__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_dump__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_dump__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_inject_data__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_inject_data__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gps_inject_data__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/heater_status__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/heater_status__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/heater_status__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/home_position__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/home_position__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/home_position__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/hover_thrust_estimate__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/hover_thrust_estimate__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/hover_thrust_estimate__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/input_rc__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/input_rc__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/input_rc__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/iridiumsbd_status__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/iridiumsbd_status__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/iridiumsbd_status__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/irlock_report__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/irlock_report__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/irlock_report__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_gear__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_gear__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_gear__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_innovations__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_innovations__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_innovations__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_pose__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_pose__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/landing_target_pose__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/led_control__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/led_control__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/led_control__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/log_message__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/log_message__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/log_message__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/logger_status__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/logger_status__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/logger_status__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mag_worker_data__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mag_worker_data__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mag_worker_data__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_setpoint__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_setpoint__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_setpoint__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_switches__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_switches__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/manual_control_switches__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mavlink_log__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mavlink_log__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mavlink_log__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mc_virtual_attitude_setpoint__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mc_virtual_attitude_setpoint__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mc_virtual_attitude_setpoint__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission_result__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission_result__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission_result__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mount_orientation__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mount_orientation__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mount_orientation__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/multirotor_motor_limits__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/multirotor_motor_limits__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/multirotor_motor_limits__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/navigator_mission_item__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/navigator_mission_item__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/navigator_mission_item__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance_fused__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance_fused__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/obstacle_distance_fused__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/offboard_control_mode__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/offboard_control_mode__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/offboard_control_mode__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/onboard_computer_status__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/onboard_computer_status__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/onboard_computer_status__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/optical_flow__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/optical_flow__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/optical_flow__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_multitest__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_multitest__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_multitest__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_large__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_large__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_large__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_multi__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_multi__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_multi__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue_poll__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue_poll__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_queue_poll__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_wrap_around__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_wrap_around__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orb_test_medium_wrap_around__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orbit_status__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orbit_status__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/orbit_status__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/parameter_update__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/parameter_update__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/parameter_update__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ping__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ping__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ping__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_landing_status__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_landing_status__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_landing_status__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_status__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_status__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_controller_status__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint_triplet__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint_triplet__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint_triplet__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_button_state__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_button_state__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_button_state__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_monitor__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_monitor__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/power_monitor__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/pwm_input__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/pwm_input__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/pwm_input__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/px4_io_status__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/px4_io_status__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/px4_io_status__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_req__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_req__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_req__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_retval__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_retval__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/qshell_retval__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/radio_status__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/radio_status__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/radio_status__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rate_ctrl_status__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rate_ctrl_status__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rate_ctrl_status__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_channels__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_channels__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_channels__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_parameter_map__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_parameter_map__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_parameter_map__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rpm__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rpm__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rpm__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rtl_flight_time__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rtl_flight_time__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rtl_flight_time__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/safety__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/safety__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/safety__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/satellite_info__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/satellite_info__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/satellite_info__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel_fifo__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel_fifo__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_accel_fifo__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_baro__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_baro__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_baro__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_combined__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_combined__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_combined__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_correction__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_correction__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_correction__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gps__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gps__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gps__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fft__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fft__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fft__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fifo__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fifo__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fifo__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_mag__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_mag__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_mag__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_preflight_mag__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_preflight_mag__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_preflight_mag__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_selection__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_selection__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_selection__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensors_status_imu__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensors_status_imu__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensors_status_imu__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/system_power__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/system_power__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/system_power__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/takeoff_status__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/takeoff_status__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/takeoff_status__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/task_stack_info__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/task_stack_info__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/task_stack_info__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tecs_status__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tecs_status__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tecs_status__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/telemetry_status__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/telemetry_status__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/telemetry_status__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/test_motor__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/test_motor__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/test_motor__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync_status__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync_status__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/timesync_status__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_bezier__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_bezier__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_bezier__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_setpoint__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_setpoint__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_setpoint__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_waypoint__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_waypoint__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_waypoint__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/transponder_report__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/transponder_report__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/transponder_report__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tune_control__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tune_control__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tune_control__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_request__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_request__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_request__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_value__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_value__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/uavcan_parameter_value__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream_ack__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream_ack__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ulog_stream_ack__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_acceleration__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_acceleration__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_acceleration__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_actuator_setpoint__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_actuator_setpoint__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_actuator_setpoint__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_air_data__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_air_data__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_air_data__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration_setpoint__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration_setpoint__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_acceleration_setpoint__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity_groundtruth__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity_groundtruth__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_angular_velocity_groundtruth__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_groundtruth__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_groundtruth__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_groundtruth__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_setpoint__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_setpoint__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_setpoint__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command_ack__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command_ack__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command_ack__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_constraints__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_constraints__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_constraints__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_control_mode__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_control_mode__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_control_mode__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position_groundtruth__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position_groundtruth__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_global_position_groundtruth__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_gps_position__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_gps_position__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_gps_position__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu_status__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu_status__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu_status__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_land_detected__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_land_detected__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_land_detected__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_groundtruth__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_groundtruth__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_groundtruth__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_setpoint__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_setpoint__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_local_position_setpoint__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_magnetometer__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_magnetometer__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_magnetometer__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_mocap_odometry__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_mocap_odometry__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_mocap_odometry__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_odometry__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_odometry__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_odometry__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_rates_setpoint__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_rates_setpoint__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_rates_setpoint__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_roi__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_roi__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_roi__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status_flags__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status_flags__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status_flags__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_thrust_setpoint__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_thrust_setpoint__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_thrust_setpoint__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_torque_setpoint__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_torque_setpoint__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_torque_setpoint__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_bezier__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_bezier__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_bezier__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint_desired__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint_desired__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_trajectory_waypoint_desired__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_vision_attitude__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_vision_attitude__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_vision_attitude__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_visual_odometry__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_visual_odometry__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_visual_odometry__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vtol_vehicle_status__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vtol_vehicle_status__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vtol_vehicle_status__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wheel_encoders__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wheel_encoders__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wheel_encoders__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wind__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wind__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/wind__type_support.s" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/yaw_estimator_status__type_support.o" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/yaw_estimator_status__type_support.i" @echo "... rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/yaw_estimator_status__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_armed__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_armed__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_armed__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls0__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls0__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls0__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls1__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls1__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls1__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls2__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls2__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls2__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls3__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls3__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls3__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls4__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls4__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls4__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls5__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls5__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls5__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_fw__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls_virtual_mc__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_outputs__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_outputs__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_outputs__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/adc_report__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/adc_report__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/adc_report__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_validated__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_validated__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_validated__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_wind__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_wind__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_wind__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/battery_status__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/battery_status__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/battery_status__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/camera_capture__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/camera_capture__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/camera_capture__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger_secondary__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger_secondary__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger_secondary__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/cellular_status__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/cellular_status__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/cellular_status__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/collision_constraints__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/collision_constraints__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/collision_constraints__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/collision_report__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/collision_report__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/collision_report__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/commander_state__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/commander_state__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/commander_state__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/control_allocator_status__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/control_allocator_status__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/control_allocator_status__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/cpuload__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/cpuload__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/cpuload__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/debug_array__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/debug_array__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/debug_array__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/debug_key_value__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/debug_key_value__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/debug_key_value__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/debug_value__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/debug_value__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/debug_value__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/debug_vect__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/debug_vect__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/debug_vect__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/differential_pressure__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/differential_pressure__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/differential_pressure__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/distance_sensor__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/distance_sensor__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/distance_sensor__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/ekf2_timestamps__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/ekf2_timestamps__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/ekf2_timestamps__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/ekf_gps_drift__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/ekf_gps_drift__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/ekf_gps_drift__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/esc_report__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/esc_report__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/esc_report__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/esc_status__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/esc_status__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/esc_status__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_attitude__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_attitude__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_attitude__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_event_flags__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_event_flags__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_event_flags__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_global_position__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_global_position__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_global_position__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_test_ratios__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_variances__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_variances__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_variances__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovations__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovations__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovations__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_local_position__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_local_position__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_local_position__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_odometry__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_odometry__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_odometry__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_selector_status__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_selector_status__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_selector_status__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_sensor_bias__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_sensor_bias__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_sensor_bias__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_states__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_states__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_states__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status_flags__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status_flags__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status_flags__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_wind__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_wind__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_wind__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/follow_target__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/follow_target__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/follow_target__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/generator_status__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/generator_status__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/generator_status__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/geofence_result__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/geofence_result__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/geofence_result__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_attitude_status__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_information__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_information__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_information__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_set_attitude__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_information__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_information__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_information__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_attitude__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_status__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_status__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_manager_status__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/gps_dump__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/gps_dump__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/gps_dump__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/gps_inject_data__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/gps_inject_data__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/gps_inject_data__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/heater_status__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/heater_status__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/heater_status__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/home_position__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/home_position__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/home_position__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/hover_thrust_estimate__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/hover_thrust_estimate__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/hover_thrust_estimate__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/input_rc__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/input_rc__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/input_rc__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/iridiumsbd_status__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/iridiumsbd_status__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/iridiumsbd_status__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/irlock_report__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/irlock_report__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/irlock_report__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/landing_gear__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/landing_gear__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/landing_gear__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_innovations__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_innovations__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_innovations__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_pose__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_pose__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_pose__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/led_control__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/led_control__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/led_control__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/log_message__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/log_message__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/log_message__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/logger_status__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/logger_status__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/logger_status__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/mag_worker_data__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/mag_worker_data__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/mag_worker_data__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_setpoint__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_setpoint__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_setpoint__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_switches__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_switches__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_switches__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/mavlink_log__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/mavlink_log__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/mavlink_log__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/mission__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/mission__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/mission__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/mission_result__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/mission_result__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/mission_result__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/mount_orientation__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/mount_orientation__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/mount_orientation__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/multirotor_motor_limits__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/multirotor_motor_limits__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/multirotor_motor_limits__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/navigator_mission_item__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/navigator_mission_item__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/navigator_mission_item__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance_fused__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance_fused__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance_fused__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/offboard_control_mode__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/offboard_control_mode__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/offboard_control_mode__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/onboard_computer_status__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/onboard_computer_status__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/onboard_computer_status__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/optical_flow__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/optical_flow__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/optical_flow__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/orb_multitest__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/orb_multitest__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/orb_multitest__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_large__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_large__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_large__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_multi__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_multi__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_multi__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue_poll__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_wrap_around__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/orbit_status__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/orbit_status__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/orbit_status__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/parameter_update__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/parameter_update__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/parameter_update__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/ping__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/ping__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/ping__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_landing_status__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_landing_status__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_landing_status__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_status__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_status__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/position_controller_status__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint_triplet__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint_triplet__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/position_setpoint_triplet__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/power_button_state__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/power_button_state__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/power_button_state__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/power_monitor__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/power_monitor__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/power_monitor__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/pwm_input__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/pwm_input__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/pwm_input__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/px4_io_status__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/px4_io_status__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/px4_io_status__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_req__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_req__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_req__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_retval__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_retval__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/qshell_retval__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/radio_status__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/radio_status__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/radio_status__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/rate_ctrl_status__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/rate_ctrl_status__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/rate_ctrl_status__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/rc_channels__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/rc_channels__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/rc_channels__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/rc_parameter_map__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/rc_parameter_map__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/rc_parameter_map__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/rpm__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/rpm__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/rpm__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/rtl_flight_time__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/rtl_flight_time__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/rtl_flight_time__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/safety__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/safety__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/safety__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/satellite_info__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/satellite_info__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/satellite_info__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel_fifo__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel_fifo__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel_fifo__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_baro__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_baro__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_baro__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_combined__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_combined__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_combined__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_correction__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_correction__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_correction__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gps__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gps__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gps__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fft__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fft__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fft__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fifo__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fifo__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fifo__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_mag__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_mag__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_mag__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_preflight_mag__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_preflight_mag__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_preflight_mag__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_selection__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_selection__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_selection__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensors_status_imu__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensors_status_imu__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/sensors_status_imu__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/system_power__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/system_power__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/system_power__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/takeoff_status__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/takeoff_status__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/takeoff_status__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/task_stack_info__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/task_stack_info__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/task_stack_info__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/tecs_status__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/tecs_status__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/tecs_status__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/telemetry_status__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/telemetry_status__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/telemetry_status__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/test_motor__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/test_motor__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/test_motor__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/timesync__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/timesync__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/timesync__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/timesync_status__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/timesync_status__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/timesync_status__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_bezier__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_bezier__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_bezier__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_setpoint__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_setpoint__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_setpoint__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_waypoint__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_waypoint__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_waypoint__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/transponder_report__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/transponder_report__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/transponder_report__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/tune_control__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/tune_control__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/tune_control__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_request__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_request__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_request__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_value__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_value__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_value__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream_ack__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream_ack__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/ulog_stream_ack__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_acceleration__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_acceleration__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_acceleration__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_actuator_setpoint__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_air_data__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_air_data__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_air_data__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude_setpoint__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command_ack__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command_ack__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command_ack__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_constraints__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_constraints__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_constraints__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_control_mode__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_control_mode__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_control_mode__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_gps_position__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_gps_position__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_gps_position__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu_status__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu_status__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_imu_status__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_land_detected__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_land_detected__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_land_detected__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_setpoint__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_magnetometer__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_magnetometer__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_magnetometer__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_odometry__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_odometry__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_odometry__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_rates_setpoint__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_roi__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_roi__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_roi__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status_flags__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status_flags__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status_flags__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_thrust_setpoint__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_torque_setpoint__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_vision_attitude__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_vision_attitude__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_vision_attitude__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_visual_odometry__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_visual_odometry__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_visual_odometry__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vtol_vehicle_status__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vtol_vehicle_status__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/vtol_vehicle_status__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/wheel_encoders__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/wheel_encoders__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/wheel_encoders__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/wind__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/wind__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/wind__type_support.s" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/yaw_estimator_status__type_support.o" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/yaw_estimator_status__type_support.i" @echo "... rosidl_typesupport_introspection_c/px4_msgs/msg/yaw_estimator_status__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_armed__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_armed__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_armed__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls0__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls0__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls0__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls1__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls1__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls1__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls2__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls2__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls2__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls3__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls3__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls3__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls4__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls4__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls4__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls5__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls5__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls5__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_fw__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls_virtual_mc__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_outputs__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_outputs__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_outputs__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/adc_report__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/adc_report__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/adc_report__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_validated__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_validated__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_validated__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_wind__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_wind__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_wind__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/battery_status__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/battery_status__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/battery_status__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_capture__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_capture__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_capture__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/camera_trigger_secondary__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/cellular_status__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/cellular_status__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/cellular_status__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_constraints__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_constraints__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_constraints__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_report__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_report__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/collision_report__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/commander_state__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/commander_state__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/commander_state__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/control_allocator_status__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/control_allocator_status__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/control_allocator_status__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/cpuload__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/cpuload__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/cpuload__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_array__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_array__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_array__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_key_value__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_key_value__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_key_value__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_value__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_value__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_value__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_vect__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_vect__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/debug_vect__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/differential_pressure__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/differential_pressure__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/differential_pressure__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/distance_sensor__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/distance_sensor__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/distance_sensor__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf2_timestamps__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf2_timestamps__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf2_timestamps__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf_gps_drift__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf_gps_drift__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf_gps_drift__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_report__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_report__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_report__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_status__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_status__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_status__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_attitude__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_attitude__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_attitude__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_event_flags__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_event_flags__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_event_flags__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_global_position__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_global_position__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_global_position__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_test_ratios__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovations__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovations__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovations__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_local_position__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_local_position__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_local_position__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_odometry__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_odometry__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_odometry__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_selector_status__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_selector_status__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_selector_status__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_states__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_states__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_states__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status_flags__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status_flags__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status_flags__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_wind__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_wind__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_wind__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/follow_target__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/follow_target__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/follow_target__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/generator_status__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/generator_status__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/generator_status__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/geofence_result__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/geofence_result__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/geofence_result__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_attitude_status__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_information__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_information__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_information__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_set_attitude__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_information__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_information__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_information__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_attitude__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_status__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_status__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_manager_status__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_dump__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_dump__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_dump__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_inject_data__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_inject_data__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_inject_data__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/heater_status__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/heater_status__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/heater_status__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/home_position__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/home_position__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/home_position__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/hover_thrust_estimate__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/input_rc__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/input_rc__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/input_rc__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/iridiumsbd_status__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/iridiumsbd_status__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/iridiumsbd_status__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/irlock_report__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/irlock_report__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/irlock_report__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_gear__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_gear__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_gear__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_innovations__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_innovations__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_innovations__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_pose__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_pose__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/landing_target_pose__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/led_control__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/led_control__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/led_control__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/log_message__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/log_message__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/log_message__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/logger_status__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/logger_status__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/logger_status__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/mag_worker_data__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/mag_worker_data__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/mag_worker_data__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_setpoint__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_setpoint__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_setpoint__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_switches__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_switches__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_switches__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/mavlink_log__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/mavlink_log__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/mavlink_log__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission_result__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission_result__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/mission_result__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/mount_orientation__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/mount_orientation__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/mount_orientation__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/multirotor_motor_limits__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/navigator_mission_item__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/navigator_mission_item__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/navigator_mission_item__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/obstacle_distance_fused__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/offboard_control_mode__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/offboard_control_mode__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/offboard_control_mode__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/onboard_computer_status__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/onboard_computer_status__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/onboard_computer_status__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/optical_flow__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/optical_flow__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/optical_flow__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_multitest__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_multitest__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_multitest__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_large__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_large__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_large__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_multi__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_queue_poll__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/orb_test_medium_wrap_around__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/orbit_status__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/orbit_status__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/orbit_status__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/parameter_update__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/parameter_update__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/parameter_update__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/ping__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/ping__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/ping__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_landing_status__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_landing_status__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_landing_status__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_status__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_status__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_controller_status__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_button_state__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_button_state__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_button_state__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_monitor__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_monitor__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_monitor__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/pwm_input__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/pwm_input__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/pwm_input__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/px4_io_status__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/px4_io_status__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/px4_io_status__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_req__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_req__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_req__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_retval__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_retval__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/qshell_retval__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/radio_status__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/radio_status__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/radio_status__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/rate_ctrl_status__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/rate_ctrl_status__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/rate_ctrl_status__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_channels__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_channels__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_channels__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_parameter_map__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_parameter_map__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_parameter_map__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/rpm__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/rpm__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/rpm__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/rtl_flight_time__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/rtl_flight_time__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/rtl_flight_time__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/safety__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/safety__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/safety__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/satellite_info__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/satellite_info__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/satellite_info__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_accel_fifo__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_baro__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_baro__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_baro__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_combined__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_combined__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_combined__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_correction__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_correction__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_correction__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gps__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gps__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gps__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_mag__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_mag__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_mag__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_preflight_mag__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_selection__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_selection__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_selection__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensors_status_imu__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensors_status_imu__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensors_status_imu__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/system_power__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/system_power__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/system_power__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/takeoff_status__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/takeoff_status__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/takeoff_status__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/task_stack_info__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/task_stack_info__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/task_stack_info__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/tecs_status__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/tecs_status__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/tecs_status__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/telemetry_status__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/telemetry_status__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/telemetry_status__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/test_motor__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/test_motor__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/test_motor__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync_status__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync_status__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync_status__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_bezier__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_bezier__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_bezier__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_setpoint__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_setpoint__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_setpoint__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_waypoint__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_waypoint__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/trajectory_waypoint__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/transponder_report__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/transponder_report__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/transponder_report__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/tune_control__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/tune_control__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/tune_control__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_request__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/uavcan_parameter_value__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream_ack__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream_ack__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/ulog_stream_ack__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_acceleration__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_acceleration__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_acceleration__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_air_data__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_air_data__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_air_data__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_setpoint__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command_ack__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command_ack__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_command_ack__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_constraints__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_constraints__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_constraints__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_control_mode__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_control_mode__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_control_mode__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_gps_position__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_gps_position__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_gps_position__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu_status__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu_status__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_imu_status__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_land_detected__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_land_detected__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_land_detected__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_local_position_setpoint__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_magnetometer__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_mocap_odometry__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_odometry__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_odometry__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_odometry__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_rates_setpoint__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_roi__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_roi__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_roi__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status_flags__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status_flags__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status_flags__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_thrust_setpoint__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_torque_setpoint__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_bezier__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_vision_attitude__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/vtol_vehicle_status__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/wheel_encoders__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/wheel_encoders__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/wheel_encoders__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/wind__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/wind__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/wind__type_support.s" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/yaw_estimator_status__type_support.o" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/yaw_estimator_status__type_support.i" @echo "... rosidl_typesupport_introspection_cpp/px4_msgs/msg/yaw_estimator_status__type_support.s" .PHONY : help #============================================================================= # Special targets to cleanup operation of make. # Special rule to run CMake to check the build system integrity. # No rule that depends on this can have commands that come from listfiles # because they might be regenerated. cmake_check_build_system: $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 .PHONY : cmake_check_build_system <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_status_flags__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleStatusFlags.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_status_flags__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__VehicleStatusFlags__init(px4_msgs__msg__VehicleStatusFlags * msg) { if (!msg) { return false; } // timestamp // condition_calibration_enabled // condition_system_sensors_initialized // condition_system_hotplug_timeout // condition_system_returned_to_home // condition_auto_mission_available // condition_angular_velocity_valid // condition_attitude_valid // condition_local_altitude_valid // condition_local_position_valid // condition_local_velocity_valid // condition_global_position_valid // condition_home_position_valid // condition_power_input_valid // condition_battery_healthy // condition_escs_error // condition_escs_failure // circuit_breaker_engaged_power_check // circuit_breaker_engaged_airspd_check // circuit_breaker_engaged_enginefailure_check // circuit_breaker_flight_termination_disabled // circuit_breaker_engaged_usb_check // circuit_breaker_engaged_posfailure_check // circuit_breaker_vtol_fw_arming_check // offboard_control_signal_found_once // offboard_control_signal_lost // rc_signal_found_once // rc_input_blocked // rc_calibration_valid // vtol_transition_failure // usb_connected // sd_card_detected_once // avoidance_system_required // avoidance_system_valid return true; } void px4_msgs__msg__VehicleStatusFlags__fini(px4_msgs__msg__VehicleStatusFlags * msg) { if (!msg) { return; } // timestamp // condition_calibration_enabled // condition_system_sensors_initialized // condition_system_hotplug_timeout // condition_system_returned_to_home // condition_auto_mission_available // condition_angular_velocity_valid // condition_attitude_valid // condition_local_altitude_valid // condition_local_position_valid // condition_local_velocity_valid // condition_global_position_valid // condition_home_position_valid // condition_power_input_valid // condition_battery_healthy // condition_escs_error // condition_escs_failure // circuit_breaker_engaged_power_check // circuit_breaker_engaged_airspd_check // circuit_breaker_engaged_enginefailure_check // circuit_breaker_flight_termination_disabled // circuit_breaker_engaged_usb_check // circuit_breaker_engaged_posfailure_check // circuit_breaker_vtol_fw_arming_check // offboard_control_signal_found_once // offboard_control_signal_lost // rc_signal_found_once // rc_input_blocked // rc_calibration_valid // vtol_transition_failure // usb_connected // sd_card_detected_once // avoidance_system_required // avoidance_system_valid } px4_msgs__msg__VehicleStatusFlags * px4_msgs__msg__VehicleStatusFlags__create() { px4_msgs__msg__VehicleStatusFlags * msg = (px4_msgs__msg__VehicleStatusFlags *)malloc(sizeof(px4_msgs__msg__VehicleStatusFlags)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleStatusFlags)); bool success = px4_msgs__msg__VehicleStatusFlags__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleStatusFlags__destroy(px4_msgs__msg__VehicleStatusFlags * msg) { if (msg) { px4_msgs__msg__VehicleStatusFlags__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleStatusFlags__Sequence__init(px4_msgs__msg__VehicleStatusFlags__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleStatusFlags * data = NULL; if (size) { data = (px4_msgs__msg__VehicleStatusFlags *)calloc(size, sizeof(px4_msgs__msg__VehicleStatusFlags)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleStatusFlags__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleStatusFlags__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleStatusFlags__Sequence__fini(px4_msgs__msg__VehicleStatusFlags__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleStatusFlags__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleStatusFlags__Sequence * px4_msgs__msg__VehicleStatusFlags__Sequence__create(size_t size) { px4_msgs__msg__VehicleStatusFlags__Sequence * array = (px4_msgs__msg__VehicleStatusFlags__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleStatusFlags__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleStatusFlags__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleStatusFlags__Sequence__destroy(px4_msgs__msg__VehicleStatusFlags__Sequence * array) { if (array) { px4_msgs__msg__VehicleStatusFlags__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_sensor_bias__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/EstimatorSensorBias.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_SENSOR_BIAS__STRUCT_H_ #define PX4_MSGS__MSG__ESTIMATOR_SENSOR_BIAS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/EstimatorSensorBias in the package px4_msgs. typedef struct px4_msgs__msg__EstimatorSensorBias { uint64_t timestamp; uint64_t timestamp_sample; uint32_t gyro_device_id; float gyro_bias[3]; float gyro_bias_limit; float gyro_bias_variance[3]; bool gyro_bias_valid; uint32_t accel_device_id; float accel_bias[3]; float accel_bias_limit; float accel_bias_variance[3]; bool accel_bias_valid; uint32_t mag_device_id; float mag_bias[3]; float mag_bias_limit; float mag_bias_variance[3]; bool mag_bias_valid; } px4_msgs__msg__EstimatorSensorBias; // Struct for a sequence of px4_msgs__msg__EstimatorSensorBias. typedef struct px4_msgs__msg__EstimatorSensorBias__Sequence { px4_msgs__msg__EstimatorSensorBias * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__EstimatorSensorBias__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ESTIMATOR_SENSOR_BIAS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_vehicle_status_flags.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/VehicleStatusFlags.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_VehicleStatusFlags(type): """Metaclass of message 'VehicleStatusFlags'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.VehicleStatusFlags') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__vehicle_status_flags cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__vehicle_status_flags cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__vehicle_status_flags cls._TYPE_SUPPORT = module.type_support_msg__msg__vehicle_status_flags cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__vehicle_status_flags @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class VehicleStatusFlags(metaclass=Metaclass_VehicleStatusFlags): """Message class 'VehicleStatusFlags'.""" __slots__ = [ '_timestamp', '_condition_calibration_enabled', '_condition_system_sensors_initialized', '_condition_system_hotplug_timeout', '_condition_system_returned_to_home', '_condition_auto_mission_available', '_condition_angular_velocity_valid', '_condition_attitude_valid', '_condition_local_altitude_valid', '_condition_local_position_valid', '_condition_local_velocity_valid', '_condition_global_position_valid', '_condition_home_position_valid', '_condition_power_input_valid', '_condition_battery_healthy', '_condition_escs_error', '_condition_escs_failure', '_circuit_breaker_engaged_power_check', '_circuit_breaker_engaged_airspd_check', '_circuit_breaker_engaged_enginefailure_check', '_circuit_breaker_flight_termination_disabled', '_circuit_breaker_engaged_usb_check', '_circuit_breaker_engaged_posfailure_check', '_circuit_breaker_vtol_fw_arming_check', '_offboard_control_signal_found_once', '_offboard_control_signal_lost', '_rc_signal_found_once', '_rc_input_blocked', '_rc_calibration_valid', '_vtol_transition_failure', '_usb_connected', '_sd_card_detected_once', '_avoidance_system_required', '_avoidance_system_valid', ] _fields_and_field_types = { 'timestamp': 'uint64', 'condition_calibration_enabled': 'boolean', 'condition_system_sensors_initialized': 'boolean', 'condition_system_hotplug_timeout': 'boolean', 'condition_system_returned_to_home': 'boolean', 'condition_auto_mission_available': 'boolean', 'condition_angular_velocity_valid': 'boolean', 'condition_attitude_valid': 'boolean', 'condition_local_altitude_valid': 'boolean', 'condition_local_position_valid': 'boolean', 'condition_local_velocity_valid': 'boolean', 'condition_global_position_valid': 'boolean', 'condition_home_position_valid': 'boolean', 'condition_power_input_valid': 'boolean', 'condition_battery_healthy': 'boolean', 'condition_escs_error': 'boolean', 'condition_escs_failure': 'boolean', 'circuit_breaker_engaged_power_check': 'boolean', 'circuit_breaker_engaged_airspd_check': 'boolean', 'circuit_breaker_engaged_enginefailure_check': 'boolean', 'circuit_breaker_flight_termination_disabled': 'boolean', 'circuit_breaker_engaged_usb_check': 'boolean', 'circuit_breaker_engaged_posfailure_check': 'boolean', 'circuit_breaker_vtol_fw_arming_check': 'boolean', 'offboard_control_signal_found_once': 'boolean', 'offboard_control_signal_lost': 'boolean', 'rc_signal_found_once': 'boolean', 'rc_input_blocked': 'boolean', 'rc_calibration_valid': 'boolean', 'vtol_transition_failure': 'boolean', 'usb_connected': 'boolean', 'sd_card_detected_once': 'boolean', 'avoidance_system_required': 'boolean', 'avoidance_system_valid': 'boolean', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.condition_calibration_enabled = kwargs.get('condition_calibration_enabled', bool()) self.condition_system_sensors_initialized = kwargs.get('condition_system_sensors_initialized', bool()) self.condition_system_hotplug_timeout = kwargs.get('condition_system_hotplug_timeout', bool()) self.condition_system_returned_to_home = kwargs.get('condition_system_returned_to_home', bool()) self.condition_auto_mission_available = kwargs.get('condition_auto_mission_available', bool()) self.condition_angular_velocity_valid = kwargs.get('condition_angular_velocity_valid', bool()) self.condition_attitude_valid = kwargs.get('condition_attitude_valid', bool()) self.condition_local_altitude_valid = kwargs.get('condition_local_altitude_valid', bool()) self.condition_local_position_valid = kwargs.get('condition_local_position_valid', bool()) self.condition_local_velocity_valid = kwargs.get('condition_local_velocity_valid', bool()) self.condition_global_position_valid = kwargs.get('condition_global_position_valid', bool()) self.condition_home_position_valid = kwargs.get('condition_home_position_valid', bool()) self.condition_power_input_valid = kwargs.get('condition_power_input_valid', bool()) self.condition_battery_healthy = kwargs.get('condition_battery_healthy', bool()) self.condition_escs_error = kwargs.get('condition_escs_error', bool()) self.condition_escs_failure = kwargs.get('condition_escs_failure', bool()) self.circuit_breaker_engaged_power_check = kwargs.get('circuit_breaker_engaged_power_check', bool()) self.circuit_breaker_engaged_airspd_check = kwargs.get('circuit_breaker_engaged_airspd_check', bool()) self.circuit_breaker_engaged_enginefailure_check = kwargs.get('circuit_breaker_engaged_enginefailure_check', bool()) self.circuit_breaker_flight_termination_disabled = kwargs.get('circuit_breaker_flight_termination_disabled', bool()) self.circuit_breaker_engaged_usb_check = kwargs.get('circuit_breaker_engaged_usb_check', bool()) self.circuit_breaker_engaged_posfailure_check = kwargs.get('circuit_breaker_engaged_posfailure_check', bool()) self.circuit_breaker_vtol_fw_arming_check = kwargs.get('circuit_breaker_vtol_fw_arming_check', bool()) self.offboard_control_signal_found_once = kwargs.get('offboard_control_signal_found_once', bool()) self.offboard_control_signal_lost = kwargs.get('offboard_control_signal_lost', bool()) self.rc_signal_found_once = kwargs.get('rc_signal_found_once', bool()) self.rc_input_blocked = kwargs.get('rc_input_blocked', bool()) self.rc_calibration_valid = kwargs.get('rc_calibration_valid', bool()) self.vtol_transition_failure = kwargs.get('vtol_transition_failure', bool()) self.usb_connected = kwargs.get('usb_connected', bool()) self.sd_card_detected_once = kwargs.get('sd_card_detected_once', bool()) self.avoidance_system_required = kwargs.get('avoidance_system_required', bool()) self.avoidance_system_valid = kwargs.get('avoidance_system_valid', bool()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.condition_calibration_enabled != other.condition_calibration_enabled: return False if self.condition_system_sensors_initialized != other.condition_system_sensors_initialized: return False if self.condition_system_hotplug_timeout != other.condition_system_hotplug_timeout: return False if self.condition_system_returned_to_home != other.condition_system_returned_to_home: return False if self.condition_auto_mission_available != other.condition_auto_mission_available: return False if self.condition_angular_velocity_valid != other.condition_angular_velocity_valid: return False if self.condition_attitude_valid != other.condition_attitude_valid: return False if self.condition_local_altitude_valid != other.condition_local_altitude_valid: return False if self.condition_local_position_valid != other.condition_local_position_valid: return False if self.condition_local_velocity_valid != other.condition_local_velocity_valid: return False if self.condition_global_position_valid != other.condition_global_position_valid: return False if self.condition_home_position_valid != other.condition_home_position_valid: return False if self.condition_power_input_valid != other.condition_power_input_valid: return False if self.condition_battery_healthy != other.condition_battery_healthy: return False if self.condition_escs_error != other.condition_escs_error: return False if self.condition_escs_failure != other.condition_escs_failure: return False if self.circuit_breaker_engaged_power_check != other.circuit_breaker_engaged_power_check: return False if self.circuit_breaker_engaged_airspd_check != other.circuit_breaker_engaged_airspd_check: return False if self.circuit_breaker_engaged_enginefailure_check != other.circuit_breaker_engaged_enginefailure_check: return False if self.circuit_breaker_flight_termination_disabled != other.circuit_breaker_flight_termination_disabled: return False if self.circuit_breaker_engaged_usb_check != other.circuit_breaker_engaged_usb_check: return False if self.circuit_breaker_engaged_posfailure_check != other.circuit_breaker_engaged_posfailure_check: return False if self.circuit_breaker_vtol_fw_arming_check != other.circuit_breaker_vtol_fw_arming_check: return False if self.offboard_control_signal_found_once != other.offboard_control_signal_found_once: return False if self.offboard_control_signal_lost != other.offboard_control_signal_lost: return False if self.rc_signal_found_once != other.rc_signal_found_once: return False if self.rc_input_blocked != other.rc_input_blocked: return False if self.rc_calibration_valid != other.rc_calibration_valid: return False if self.vtol_transition_failure != other.vtol_transition_failure: return False if self.usb_connected != other.usb_connected: return False if self.sd_card_detected_once != other.sd_card_detected_once: return False if self.avoidance_system_required != other.avoidance_system_required: return False if self.avoidance_system_valid != other.avoidance_system_valid: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def condition_calibration_enabled(self): """Message field 'condition_calibration_enabled'.""" return self._condition_calibration_enabled @condition_calibration_enabled.setter def condition_calibration_enabled(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'condition_calibration_enabled' field must be of type 'bool'" self._condition_calibration_enabled = value @property def condition_system_sensors_initialized(self): """Message field 'condition_system_sensors_initialized'.""" return self._condition_system_sensors_initialized @condition_system_sensors_initialized.setter def condition_system_sensors_initialized(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'condition_system_sensors_initialized' field must be of type 'bool'" self._condition_system_sensors_initialized = value @property def condition_system_hotplug_timeout(self): """Message field 'condition_system_hotplug_timeout'.""" return self._condition_system_hotplug_timeout @condition_system_hotplug_timeout.setter def condition_system_hotplug_timeout(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'condition_system_hotplug_timeout' field must be of type 'bool'" self._condition_system_hotplug_timeout = value @property def condition_system_returned_to_home(self): """Message field 'condition_system_returned_to_home'.""" return self._condition_system_returned_to_home @condition_system_returned_to_home.setter def condition_system_returned_to_home(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'condition_system_returned_to_home' field must be of type 'bool'" self._condition_system_returned_to_home = value @property def condition_auto_mission_available(self): """Message field 'condition_auto_mission_available'.""" return self._condition_auto_mission_available @condition_auto_mission_available.setter def condition_auto_mission_available(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'condition_auto_mission_available' field must be of type 'bool'" self._condition_auto_mission_available = value @property def condition_angular_velocity_valid(self): """Message field 'condition_angular_velocity_valid'.""" return self._condition_angular_velocity_valid @condition_angular_velocity_valid.setter def condition_angular_velocity_valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'condition_angular_velocity_valid' field must be of type 'bool'" self._condition_angular_velocity_valid = value @property def condition_attitude_valid(self): """Message field 'condition_attitude_valid'.""" return self._condition_attitude_valid @condition_attitude_valid.setter def condition_attitude_valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'condition_attitude_valid' field must be of type 'bool'" self._condition_attitude_valid = value @property def condition_local_altitude_valid(self): """Message field 'condition_local_altitude_valid'.""" return self._condition_local_altitude_valid @condition_local_altitude_valid.setter def condition_local_altitude_valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'condition_local_altitude_valid' field must be of type 'bool'" self._condition_local_altitude_valid = value @property def condition_local_position_valid(self): """Message field 'condition_local_position_valid'.""" return self._condition_local_position_valid @condition_local_position_valid.setter def condition_local_position_valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'condition_local_position_valid' field must be of type 'bool'" self._condition_local_position_valid = value @property def condition_local_velocity_valid(self): """Message field 'condition_local_velocity_valid'.""" return self._condition_local_velocity_valid @condition_local_velocity_valid.setter def condition_local_velocity_valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'condition_local_velocity_valid' field must be of type 'bool'" self._condition_local_velocity_valid = value @property def condition_global_position_valid(self): """Message field 'condition_global_position_valid'.""" return self._condition_global_position_valid @condition_global_position_valid.setter def condition_global_position_valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'condition_global_position_valid' field must be of type 'bool'" self._condition_global_position_valid = value @property def condition_home_position_valid(self): """Message field 'condition_home_position_valid'.""" return self._condition_home_position_valid @condition_home_position_valid.setter def condition_home_position_valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'condition_home_position_valid' field must be of type 'bool'" self._condition_home_position_valid = value @property def condition_power_input_valid(self): """Message field 'condition_power_input_valid'.""" return self._condition_power_input_valid @condition_power_input_valid.setter def condition_power_input_valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'condition_power_input_valid' field must be of type 'bool'" self._condition_power_input_valid = value @property def condition_battery_healthy(self): """Message field 'condition_battery_healthy'.""" return self._condition_battery_healthy @condition_battery_healthy.setter def condition_battery_healthy(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'condition_battery_healthy' field must be of type 'bool'" self._condition_battery_healthy = value @property def condition_escs_error(self): """Message field 'condition_escs_error'.""" return self._condition_escs_error @condition_escs_error.setter def condition_escs_error(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'condition_escs_error' field must be of type 'bool'" self._condition_escs_error = value @property def condition_escs_failure(self): """Message field 'condition_escs_failure'.""" return self._condition_escs_failure @condition_escs_failure.setter def condition_escs_failure(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'condition_escs_failure' field must be of type 'bool'" self._condition_escs_failure = value @property def circuit_breaker_engaged_power_check(self): """Message field 'circuit_breaker_engaged_power_check'.""" return self._circuit_breaker_engaged_power_check @circuit_breaker_engaged_power_check.setter def circuit_breaker_engaged_power_check(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'circuit_breaker_engaged_power_check' field must be of type 'bool'" self._circuit_breaker_engaged_power_check = value @property def circuit_breaker_engaged_airspd_check(self): """Message field 'circuit_breaker_engaged_airspd_check'.""" return self._circuit_breaker_engaged_airspd_check @circuit_breaker_engaged_airspd_check.setter def circuit_breaker_engaged_airspd_check(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'circuit_breaker_engaged_airspd_check' field must be of type 'bool'" self._circuit_breaker_engaged_airspd_check = value @property def circuit_breaker_engaged_enginefailure_check(self): """Message field 'circuit_breaker_engaged_enginefailure_check'.""" return self._circuit_breaker_engaged_enginefailure_check @circuit_breaker_engaged_enginefailure_check.setter def circuit_breaker_engaged_enginefailure_check(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'circuit_breaker_engaged_enginefailure_check' field must be of type 'bool'" self._circuit_breaker_engaged_enginefailure_check = value @property def circuit_breaker_flight_termination_disabled(self): """Message field 'circuit_breaker_flight_termination_disabled'.""" return self._circuit_breaker_flight_termination_disabled @circuit_breaker_flight_termination_disabled.setter def circuit_breaker_flight_termination_disabled(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'circuit_breaker_flight_termination_disabled' field must be of type 'bool'" self._circuit_breaker_flight_termination_disabled = value @property def circuit_breaker_engaged_usb_check(self): """Message field 'circuit_breaker_engaged_usb_check'.""" return self._circuit_breaker_engaged_usb_check @circuit_breaker_engaged_usb_check.setter def circuit_breaker_engaged_usb_check(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'circuit_breaker_engaged_usb_check' field must be of type 'bool'" self._circuit_breaker_engaged_usb_check = value @property def circuit_breaker_engaged_posfailure_check(self): """Message field 'circuit_breaker_engaged_posfailure_check'.""" return self._circuit_breaker_engaged_posfailure_check @circuit_breaker_engaged_posfailure_check.setter def circuit_breaker_engaged_posfailure_check(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'circuit_breaker_engaged_posfailure_check' field must be of type 'bool'" self._circuit_breaker_engaged_posfailure_check = value @property def circuit_breaker_vtol_fw_arming_check(self): """Message field 'circuit_breaker_vtol_fw_arming_check'.""" return self._circuit_breaker_vtol_fw_arming_check @circuit_breaker_vtol_fw_arming_check.setter def circuit_breaker_vtol_fw_arming_check(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'circuit_breaker_vtol_fw_arming_check' field must be of type 'bool'" self._circuit_breaker_vtol_fw_arming_check = value @property def offboard_control_signal_found_once(self): """Message field 'offboard_control_signal_found_once'.""" return self._offboard_control_signal_found_once @offboard_control_signal_found_once.setter def offboard_control_signal_found_once(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'offboard_control_signal_found_once' field must be of type 'bool'" self._offboard_control_signal_found_once = value @property def offboard_control_signal_lost(self): """Message field 'offboard_control_signal_lost'.""" return self._offboard_control_signal_lost @offboard_control_signal_lost.setter def offboard_control_signal_lost(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'offboard_control_signal_lost' field must be of type 'bool'" self._offboard_control_signal_lost = value @property def rc_signal_found_once(self): """Message field 'rc_signal_found_once'.""" return self._rc_signal_found_once @rc_signal_found_once.setter def rc_signal_found_once(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'rc_signal_found_once' field must be of type 'bool'" self._rc_signal_found_once = value @property def rc_input_blocked(self): """Message field 'rc_input_blocked'.""" return self._rc_input_blocked @rc_input_blocked.setter def rc_input_blocked(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'rc_input_blocked' field must be of type 'bool'" self._rc_input_blocked = value @property def rc_calibration_valid(self): """Message field 'rc_calibration_valid'.""" return self._rc_calibration_valid @rc_calibration_valid.setter def rc_calibration_valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'rc_calibration_valid' field must be of type 'bool'" self._rc_calibration_valid = value @property def vtol_transition_failure(self): """Message field 'vtol_transition_failure'.""" return self._vtol_transition_failure @vtol_transition_failure.setter def vtol_transition_failure(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'vtol_transition_failure' field must be of type 'bool'" self._vtol_transition_failure = value @property def usb_connected(self): """Message field 'usb_connected'.""" return self._usb_connected @usb_connected.setter def usb_connected(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'usb_connected' field must be of type 'bool'" self._usb_connected = value @property def sd_card_detected_once(self): """Message field 'sd_card_detected_once'.""" return self._sd_card_detected_once @sd_card_detected_once.setter def sd_card_detected_once(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'sd_card_detected_once' field must be of type 'bool'" self._sd_card_detected_once = value @property def avoidance_system_required(self): """Message field 'avoidance_system_required'.""" return self._avoidance_system_required @avoidance_system_required.setter def avoidance_system_required(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'avoidance_system_required' field must be of type 'bool'" self._avoidance_system_required = value @property def avoidance_system_valid(self): """Message field 'avoidance_system_valid'.""" return self._avoidance_system_valid @avoidance_system_valid.setter def avoidance_system_valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'avoidance_system_valid' field must be of type 'bool'" self._avoidance_system_valid = value <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_esc_status.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/EscStatus.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_EscStatus(type): """Metaclass of message 'EscStatus'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'CONNECTED_ESC_MAX': 8, 'ESC_CONNECTION_TYPE_PPM': 0, 'ESC_CONNECTION_TYPE_SERIAL': 1, 'ESC_CONNECTION_TYPE_ONESHOT': 2, 'ESC_CONNECTION_TYPE_I2C': 3, 'ESC_CONNECTION_TYPE_CAN': 4, 'ESC_CONNECTION_TYPE_DSHOT': 5, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.EscStatus') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__esc_status cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__esc_status cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__esc_status cls._TYPE_SUPPORT = module.type_support_msg__msg__esc_status cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__esc_status from px4_msgs.msg import EscReport if EscReport.__class__._TYPE_SUPPORT is None: EscReport.__class__.__import_type_support__() @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'CONNECTED_ESC_MAX': cls.__constants['CONNECTED_ESC_MAX'], 'ESC_CONNECTION_TYPE_PPM': cls.__constants['ESC_CONNECTION_TYPE_PPM'], 'ESC_CONNECTION_TYPE_SERIAL': cls.__constants['ESC_CONNECTION_TYPE_SERIAL'], 'ESC_CONNECTION_TYPE_ONESHOT': cls.__constants['ESC_CONNECTION_TYPE_ONESHOT'], 'ESC_CONNECTION_TYPE_I2C': cls.__constants['ESC_CONNECTION_TYPE_I2C'], 'ESC_CONNECTION_TYPE_CAN': cls.__constants['ESC_CONNECTION_TYPE_CAN'], 'ESC_CONNECTION_TYPE_DSHOT': cls.__constants['ESC_CONNECTION_TYPE_DSHOT'], } @property def CONNECTED_ESC_MAX(self): """Message constant 'CONNECTED_ESC_MAX'.""" return Metaclass_EscStatus.__constants['CONNECTED_ESC_MAX'] @property def ESC_CONNECTION_TYPE_PPM(self): """Message constant 'ESC_CONNECTION_TYPE_PPM'.""" return Metaclass_EscStatus.__constants['ESC_CONNECTION_TYPE_PPM'] @property def ESC_CONNECTION_TYPE_SERIAL(self): """Message constant 'ESC_CONNECTION_TYPE_SERIAL'.""" return Metaclass_EscStatus.__constants['ESC_CONNECTION_TYPE_SERIAL'] @property def ESC_CONNECTION_TYPE_ONESHOT(self): """Message constant 'ESC_CONNECTION_TYPE_ONESHOT'.""" return Metaclass_EscStatus.__constants['ESC_CONNECTION_TYPE_ONESHOT'] @property def ESC_CONNECTION_TYPE_I2C(self): """Message constant 'ESC_CONNECTION_TYPE_I2C'.""" return Metaclass_EscStatus.__constants['ESC_CONNECTION_TYPE_I2C'] @property def ESC_CONNECTION_TYPE_CAN(self): """Message constant 'ESC_CONNECTION_TYPE_CAN'.""" return Metaclass_EscStatus.__constants['ESC_CONNECTION_TYPE_CAN'] @property def ESC_CONNECTION_TYPE_DSHOT(self): """Message constant 'ESC_CONNECTION_TYPE_DSHOT'.""" return Metaclass_EscStatus.__constants['ESC_CONNECTION_TYPE_DSHOT'] class EscStatus(metaclass=Metaclass_EscStatus): """ Message class 'EscStatus'. Constants: CONNECTED_ESC_MAX ESC_CONNECTION_TYPE_PPM ESC_CONNECTION_TYPE_SERIAL ESC_CONNECTION_TYPE_ONESHOT ESC_CONNECTION_TYPE_I2C ESC_CONNECTION_TYPE_CAN ESC_CONNECTION_TYPE_DSHOT """ __slots__ = [ '_timestamp', '_counter', '_esc_count', '_esc_connectiontype', '_esc_online_flags', '_esc_armed_flags', '_esc', ] _fields_and_field_types = { 'timestamp': 'uint64', 'counter': 'uint16', 'esc_count': 'uint8', 'esc_connectiontype': 'uint8', 'esc_online_flags': 'uint8', 'esc_armed_flags': 'uint8', 'esc': 'px4_msgs/EscReport[8]', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.NamespacedType(['px4_msgs', 'msg'], 'EscReport'), 8), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.counter = kwargs.get('counter', int()) self.esc_count = kwargs.get('esc_count', int()) self.esc_connectiontype = kwargs.get('esc_connectiontype', int()) self.esc_online_flags = kwargs.get('esc_online_flags', int()) self.esc_armed_flags = kwargs.get('esc_armed_flags', int()) from px4_msgs.msg import EscReport self.esc = kwargs.get( 'esc', [EscReport() for x in range(8)] ) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.counter != other.counter: return False if self.esc_count != other.esc_count: return False if self.esc_connectiontype != other.esc_connectiontype: return False if self.esc_online_flags != other.esc_online_flags: return False if self.esc_armed_flags != other.esc_armed_flags: return False if self.esc != other.esc: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def counter(self): """Message field 'counter'.""" return self._counter @counter.setter def counter(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'counter' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'counter' field must be an unsigned integer in [0, 65535]" self._counter = value @property def esc_count(self): """Message field 'esc_count'.""" return self._esc_count @esc_count.setter def esc_count(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'esc_count' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'esc_count' field must be an unsigned integer in [0, 255]" self._esc_count = value @property def esc_connectiontype(self): """Message field 'esc_connectiontype'.""" return self._esc_connectiontype @esc_connectiontype.setter def esc_connectiontype(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'esc_connectiontype' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'esc_connectiontype' field must be an unsigned integer in [0, 255]" self._esc_connectiontype = value @property def esc_online_flags(self): """Message field 'esc_online_flags'.""" return self._esc_online_flags @esc_online_flags.setter def esc_online_flags(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'esc_online_flags' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'esc_online_flags' field must be an unsigned integer in [0, 255]" self._esc_online_flags = value @property def esc_armed_flags(self): """Message field 'esc_armed_flags'.""" return self._esc_armed_flags @esc_armed_flags.setter def esc_armed_flags(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'esc_armed_flags' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'esc_armed_flags' field must be an unsigned integer in [0, 255]" self._esc_armed_flags = value @property def esc(self): """Message field 'esc'.""" return self._esc @esc.setter def esc(self, value): if __debug__: from px4_msgs.msg import EscReport from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 8 and all(isinstance(v, EscReport) for v in value) and True), \ "The 'esc' field must be a set or sequence with length 8 and each value of type 'EscReport'" self._esc = value <file_sep>/install/bringup/share/bringup/launch/robot.launch.py from launch import LaunchDescription from launch_ros.actions import Node from launch.actions import DeclareLaunchArgument import sys def generate_launch_description(): for arg in sys.argv: if arg.startswith("ns:="): ns = arg.split(":=")[1] return LaunchDescription([ Node( package='multi_rtd', node_namespace=ns, node_executable='simple_planner', output='screen', emulate_tty=True ), Node( package='offboard_ibqr', node_namespace=ns, node_executable='offboard_control', output='screen', emulate_tty=True ) ])<file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/position_setpoint_triplet.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/PositionSetpointTriplet.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__POSITION_SETPOINT_TRIPLET_H_ #define PX4_MSGS__MSG__POSITION_SETPOINT_TRIPLET_H_ #include "px4_msgs/msg/position_setpoint_triplet__struct.h" #include "px4_msgs/msg/position_setpoint_triplet__functions.h" #include "px4_msgs/msg/position_setpoint_triplet__type_support.h" #endif // PX4_MSGS__MSG__POSITION_SETPOINT_TRIPLET_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_controls0__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/ActuatorControls0.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/actuator_controls0__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__ActuatorControls0__init(px4_msgs__msg__ActuatorControls0 * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // control return true; } void px4_msgs__msg__ActuatorControls0__fini(px4_msgs__msg__ActuatorControls0 * msg) { if (!msg) { return; } // timestamp // timestamp_sample // control } px4_msgs__msg__ActuatorControls0 * px4_msgs__msg__ActuatorControls0__create() { px4_msgs__msg__ActuatorControls0 * msg = (px4_msgs__msg__ActuatorControls0 *)malloc(sizeof(px4_msgs__msg__ActuatorControls0)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__ActuatorControls0)); bool success = px4_msgs__msg__ActuatorControls0__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__ActuatorControls0__destroy(px4_msgs__msg__ActuatorControls0 * msg) { if (msg) { px4_msgs__msg__ActuatorControls0__fini(msg); } free(msg); } bool px4_msgs__msg__ActuatorControls0__Sequence__init(px4_msgs__msg__ActuatorControls0__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__ActuatorControls0 * data = NULL; if (size) { data = (px4_msgs__msg__ActuatorControls0 *)calloc(size, sizeof(px4_msgs__msg__ActuatorControls0)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__ActuatorControls0__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__ActuatorControls0__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__ActuatorControls0__Sequence__fini(px4_msgs__msg__ActuatorControls0__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__ActuatorControls0__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__ActuatorControls0__Sequence * px4_msgs__msg__ActuatorControls0__Sequence__create(size_t size) { px4_msgs__msg__ActuatorControls0__Sequence * array = (px4_msgs__msg__ActuatorControls0__Sequence *)malloc(sizeof(px4_msgs__msg__ActuatorControls0__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__ActuatorControls0__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__ActuatorControls0__Sequence__destroy(px4_msgs__msg__ActuatorControls0__Sequence * array) { if (array) { px4_msgs__msg__ActuatorControls0__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/multirotor_motor_limits__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/MultirotorMotorLimits.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__MULTIROTOR_MOTOR_LIMITS__STRUCT_H_ #define PX4_MSGS__MSG__MULTIROTOR_MOTOR_LIMITS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/MultirotorMotorLimits in the package px4_msgs. typedef struct px4_msgs__msg__MultirotorMotorLimits { uint64_t timestamp; uint16_t saturation_status; } px4_msgs__msg__MultirotorMotorLimits; // Struct for a sequence of px4_msgs__msg__MultirotorMotorLimits. typedef struct px4_msgs__msg__MultirotorMotorLimits__Sequence { px4_msgs__msg__MultirotorMotorLimits * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__MultirotorMotorLimits__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__MULTIROTOR_MOTOR_LIMITS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rtl_flight_time__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/RtlFlightTime.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/rtl_flight_time__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/rtl_flight_time__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::RtlFlightTime & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: rtl_time_s cdr << ros_message.rtl_time_s; // Member: rtl_limit_fraction cdr << ros_message.rtl_limit_fraction; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::RtlFlightTime & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: rtl_time_s cdr >> ros_message.rtl_time_s; // Member: rtl_limit_fraction cdr >> ros_message.rtl_limit_fraction; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::RtlFlightTime & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rtl_time_s { size_t item_size = sizeof(ros_message.rtl_time_s); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rtl_limit_fraction { size_t item_size = sizeof(ros_message.rtl_limit_fraction); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_RtlFlightTime( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: rtl_time_s { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: rtl_limit_fraction { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static bool _RtlFlightTime__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::RtlFlightTime *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _RtlFlightTime__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::RtlFlightTime *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _RtlFlightTime__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::RtlFlightTime *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _RtlFlightTime__max_serialized_size(bool & full_bounded) { return max_serialized_size_RtlFlightTime(full_bounded, 0); } static message_type_support_callbacks_t _RtlFlightTime__callbacks = { "px4_msgs::msg", "RtlFlightTime", _RtlFlightTime__cdr_serialize, _RtlFlightTime__cdr_deserialize, _RtlFlightTime__get_serialized_size, _RtlFlightTime__max_serialized_size }; static rosidl_message_type_support_t _RtlFlightTime__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_RtlFlightTime__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::RtlFlightTime>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_RtlFlightTime__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, RtlFlightTime)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_RtlFlightTime__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/distance_sensor__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/DistanceSensor.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__DISTANCE_SENSOR__STRUCT_HPP_ #define PX4_MSGS__MSG__DISTANCE_SENSOR__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__DistanceSensor __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__DistanceSensor __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct DistanceSensor_ { using Type = DistanceSensor_<ContainerAllocator>; explicit DistanceSensor_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->device_id = 0ul; this->min_distance = 0.0f; this->max_distance = 0.0f; this->current_distance = 0.0f; this->variance = 0.0f; this->signal_quality = 0; this->type = 0; this->h_fov = 0.0f; this->v_fov = 0.0f; std::fill<typename std::array<float, 4>::iterator, float>(this->q.begin(), this->q.end(), 0.0f); this->orientation = 0; } } explicit DistanceSensor_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : q(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->device_id = 0ul; this->min_distance = 0.0f; this->max_distance = 0.0f; this->current_distance = 0.0f; this->variance = 0.0f; this->signal_quality = 0; this->type = 0; this->h_fov = 0.0f; this->v_fov = 0.0f; std::fill<typename std::array<float, 4>::iterator, float>(this->q.begin(), this->q.end(), 0.0f); this->orientation = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _device_id_type = uint32_t; _device_id_type device_id; using _min_distance_type = float; _min_distance_type min_distance; using _max_distance_type = float; _max_distance_type max_distance; using _current_distance_type = float; _current_distance_type current_distance; using _variance_type = float; _variance_type variance; using _signal_quality_type = int8_t; _signal_quality_type signal_quality; using _type_type = uint8_t; _type_type type; using _h_fov_type = float; _h_fov_type h_fov; using _v_fov_type = float; _v_fov_type v_fov; using _q_type = std::array<float, 4>; _q_type q; using _orientation_type = uint8_t; _orientation_type orientation; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__device_id( const uint32_t & _arg) { this->device_id = _arg; return *this; } Type & set__min_distance( const float & _arg) { this->min_distance = _arg; return *this; } Type & set__max_distance( const float & _arg) { this->max_distance = _arg; return *this; } Type & set__current_distance( const float & _arg) { this->current_distance = _arg; return *this; } Type & set__variance( const float & _arg) { this->variance = _arg; return *this; } Type & set__signal_quality( const int8_t & _arg) { this->signal_quality = _arg; return *this; } Type & set__type( const uint8_t & _arg) { this->type = _arg; return *this; } Type & set__h_fov( const float & _arg) { this->h_fov = _arg; return *this; } Type & set__v_fov( const float & _arg) { this->v_fov = _arg; return *this; } Type & set__q( const std::array<float, 4> & _arg) { this->q = _arg; return *this; } Type & set__orientation( const uint8_t & _arg) { this->orientation = _arg; return *this; } // constant declarations static constexpr uint8_t MAV_DISTANCE_SENSOR_LASER = 0u; static constexpr uint8_t MAV_DISTANCE_SENSOR_ULTRASOUND = 1u; static constexpr uint8_t MAV_DISTANCE_SENSOR_INFRARED = 2u; static constexpr uint8_t MAV_DISTANCE_SENSOR_RADAR = 3u; static constexpr uint8_t ROTATION_YAW_0 = 0u; static constexpr uint8_t ROTATION_YAW_45 = 1u; static constexpr uint8_t ROTATION_YAW_90 = 2u; static constexpr uint8_t ROTATION_YAW_135 = 3u; static constexpr uint8_t ROTATION_YAW_180 = 4u; static constexpr uint8_t ROTATION_YAW_225 = 5u; static constexpr uint8_t ROTATION_YAW_270 = 6u; static constexpr uint8_t ROTATION_YAW_315 = 7u; static constexpr uint8_t ROTATION_FORWARD_FACING = 0u; static constexpr uint8_t ROTATION_RIGHT_FACING = 2u; static constexpr uint8_t ROTATION_BACKWARD_FACING = 4u; static constexpr uint8_t ROTATION_LEFT_FACING = 6u; static constexpr uint8_t ROTATION_UPWARD_FACING = 24u; static constexpr uint8_t ROTATION_DOWNWARD_FACING = 25u; static constexpr uint8_t ROTATION_CUSTOM = 100u; // pointer types using RawPtr = px4_msgs::msg::DistanceSensor_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::DistanceSensor_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::DistanceSensor_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::DistanceSensor_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::DistanceSensor_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::DistanceSensor_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::DistanceSensor_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::DistanceSensor_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::DistanceSensor_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::DistanceSensor_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__DistanceSensor std::shared_ptr<px4_msgs::msg::DistanceSensor_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__DistanceSensor std::shared_ptr<px4_msgs::msg::DistanceSensor_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const DistanceSensor_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->device_id != other.device_id) { return false; } if (this->min_distance != other.min_distance) { return false; } if (this->max_distance != other.max_distance) { return false; } if (this->current_distance != other.current_distance) { return false; } if (this->variance != other.variance) { return false; } if (this->signal_quality != other.signal_quality) { return false; } if (this->type != other.type) { return false; } if (this->h_fov != other.h_fov) { return false; } if (this->v_fov != other.v_fov) { return false; } if (this->q != other.q) { return false; } if (this->orientation != other.orientation) { return false; } return true; } bool operator!=(const DistanceSensor_ & other) const { return !this->operator==(other); } }; // struct DistanceSensor_ // alias to use template instance with default allocator using DistanceSensor = px4_msgs::msg::DistanceSensor_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t DistanceSensor_<ContainerAllocator>::MAV_DISTANCE_SENSOR_LASER; template<typename ContainerAllocator> constexpr uint8_t DistanceSensor_<ContainerAllocator>::MAV_DISTANCE_SENSOR_ULTRASOUND; template<typename ContainerAllocator> constexpr uint8_t DistanceSensor_<ContainerAllocator>::MAV_DISTANCE_SENSOR_INFRARED; template<typename ContainerAllocator> constexpr uint8_t DistanceSensor_<ContainerAllocator>::MAV_DISTANCE_SENSOR_RADAR; template<typename ContainerAllocator> constexpr uint8_t DistanceSensor_<ContainerAllocator>::ROTATION_YAW_0; template<typename ContainerAllocator> constexpr uint8_t DistanceSensor_<ContainerAllocator>::ROTATION_YAW_45; template<typename ContainerAllocator> constexpr uint8_t DistanceSensor_<ContainerAllocator>::ROTATION_YAW_90; template<typename ContainerAllocator> constexpr uint8_t DistanceSensor_<ContainerAllocator>::ROTATION_YAW_135; template<typename ContainerAllocator> constexpr uint8_t DistanceSensor_<ContainerAllocator>::ROTATION_YAW_180; template<typename ContainerAllocator> constexpr uint8_t DistanceSensor_<ContainerAllocator>::ROTATION_YAW_225; template<typename ContainerAllocator> constexpr uint8_t DistanceSensor_<ContainerAllocator>::ROTATION_YAW_270; template<typename ContainerAllocator> constexpr uint8_t DistanceSensor_<ContainerAllocator>::ROTATION_YAW_315; template<typename ContainerAllocator> constexpr uint8_t DistanceSensor_<ContainerAllocator>::ROTATION_FORWARD_FACING; template<typename ContainerAllocator> constexpr uint8_t DistanceSensor_<ContainerAllocator>::ROTATION_RIGHT_FACING; template<typename ContainerAllocator> constexpr uint8_t DistanceSensor_<ContainerAllocator>::ROTATION_BACKWARD_FACING; template<typename ContainerAllocator> constexpr uint8_t DistanceSensor_<ContainerAllocator>::ROTATION_LEFT_FACING; template<typename ContainerAllocator> constexpr uint8_t DistanceSensor_<ContainerAllocator>::ROTATION_UPWARD_FACING; template<typename ContainerAllocator> constexpr uint8_t DistanceSensor_<ContainerAllocator>::ROTATION_DOWNWARD_FACING; template<typename ContainerAllocator> constexpr uint8_t DistanceSensor_<ContainerAllocator>::ROTATION_CUSTOM; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__DISTANCE_SENSOR__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/timesync_status.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/TimesyncStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TIMESYNC_STATUS_H_ #define PX4_MSGS__MSG__TIMESYNC_STATUS_H_ #include "px4_msgs/msg/timesync_status__struct.h" #include "px4_msgs/msg/timesync_status__functions.h" #include "px4_msgs/msg/timesync_status__type_support.h" #endif // PX4_MSGS__MSG__TIMESYNC_STATUS_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/collision_report__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/CollisionReport.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/collision_report__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/collision_report__functions.h" #include "px4_msgs/msg/collision_report__struct.h" #ifdef __cplusplus extern "C" { #endif void CollisionReport__rosidl_typesupport_introspection_c__CollisionReport_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__CollisionReport__init(message_memory); } void CollisionReport__rosidl_typesupport_introspection_c__CollisionReport_fini_function(void * message_memory) { px4_msgs__msg__CollisionReport__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember CollisionReport__rosidl_typesupport_introspection_c__CollisionReport_message_member_array[8] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__CollisionReport, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "src", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__CollisionReport, src), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__CollisionReport, id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "action", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__CollisionReport, action), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "threat_level", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__CollisionReport, threat_level), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "time_to_minimum_delta", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__CollisionReport, time_to_minimum_delta), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "altitude_minimum_delta", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__CollisionReport, altitude_minimum_delta), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "horizontal_minimum_delta", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__CollisionReport, horizontal_minimum_delta), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers CollisionReport__rosidl_typesupport_introspection_c__CollisionReport_message_members = { "px4_msgs__msg", // message namespace "CollisionReport", // message name 8, // number of fields sizeof(px4_msgs__msg__CollisionReport), CollisionReport__rosidl_typesupport_introspection_c__CollisionReport_message_member_array, // message members CollisionReport__rosidl_typesupport_introspection_c__CollisionReport_init_function, // function to initialize message memory (memory has to be allocated) CollisionReport__rosidl_typesupport_introspection_c__CollisionReport_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t CollisionReport__rosidl_typesupport_introspection_c__CollisionReport_message_type_support_handle = { 0, &CollisionReport__rosidl_typesupport_introspection_c__CollisionReport_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, CollisionReport)() { if (!CollisionReport__rosidl_typesupport_introspection_c__CollisionReport_message_type_support_handle.typesupport_identifier) { CollisionReport__rosidl_typesupport_introspection_c__CollisionReport_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &CollisionReport__rosidl_typesupport_introspection_c__CollisionReport_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/position_controller_landing_status.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/PositionControllerLandingStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__POSITION_CONTROLLER_LANDING_STATUS_H_ #define PX4_MSGS__MSG__POSITION_CONTROLLER_LANDING_STATUS_H_ #include "px4_msgs/msg/position_controller_landing_status__struct.h" #include "px4_msgs/msg/position_controller_landing_status__functions.h" #include "px4_msgs/msg/position_controller_landing_status__type_support.h" #endif // PX4_MSGS__MSG__POSITION_CONTROLLER_LANDING_STATUS_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_controls0.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/ActuatorControls0.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS0_H_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS0_H_ #include "px4_msgs/msg/actuator_controls0__struct.h" #include "px4_msgs/msg/actuator_controls0__functions.h" #include "px4_msgs/msg/actuator_controls0__type_support.h" #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS0_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/qshell_retval.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/QshellRetval.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__QSHELL_RETVAL_H_ #define PX4_MSGS__MSG__QSHELL_RETVAL_H_ #include "px4_msgs/msg/qshell_retval__struct.h" #include "px4_msgs/msg/qshell_retval__functions.h" #include "px4_msgs/msg/qshell_retval__type_support.h" #endif // PX4_MSGS__MSG__QSHELL_RETVAL_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/follow_target__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/FollowTarget.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__FOLLOW_TARGET__STRUCT_HPP_ #define PX4_MSGS__MSG__FOLLOW_TARGET__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__FollowTarget __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__FollowTarget __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct FollowTarget_ { using Type = FollowTarget_<ContainerAllocator>; explicit FollowTarget_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->lat = 0.0; this->lon = 0.0; this->alt = 0.0f; this->vy = 0.0f; this->vx = 0.0f; this->vz = 0.0f; this->est_cap = 0; } } explicit FollowTarget_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->lat = 0.0; this->lon = 0.0; this->alt = 0.0f; this->vy = 0.0f; this->vx = 0.0f; this->vz = 0.0f; this->est_cap = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _lat_type = double; _lat_type lat; using _lon_type = double; _lon_type lon; using _alt_type = float; _alt_type alt; using _vy_type = float; _vy_type vy; using _vx_type = float; _vx_type vx; using _vz_type = float; _vz_type vz; using _est_cap_type = uint8_t; _est_cap_type est_cap; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__lat( const double & _arg) { this->lat = _arg; return *this; } Type & set__lon( const double & _arg) { this->lon = _arg; return *this; } Type & set__alt( const float & _arg) { this->alt = _arg; return *this; } Type & set__vy( const float & _arg) { this->vy = _arg; return *this; } Type & set__vx( const float & _arg) { this->vx = _arg; return *this; } Type & set__vz( const float & _arg) { this->vz = _arg; return *this; } Type & set__est_cap( const uint8_t & _arg) { this->est_cap = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::FollowTarget_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::FollowTarget_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::FollowTarget_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::FollowTarget_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::FollowTarget_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::FollowTarget_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::FollowTarget_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::FollowTarget_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::FollowTarget_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::FollowTarget_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__FollowTarget std::shared_ptr<px4_msgs::msg::FollowTarget_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__FollowTarget std::shared_ptr<px4_msgs::msg::FollowTarget_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const FollowTarget_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->lat != other.lat) { return false; } if (this->lon != other.lon) { return false; } if (this->alt != other.alt) { return false; } if (this->vy != other.vy) { return false; } if (this->vx != other.vx) { return false; } if (this->vz != other.vz) { return false; } if (this->est_cap != other.est_cap) { return false; } return true; } bool operator!=(const FollowTarget_ & other) const { return !this->operator==(other); } }; // struct FollowTarget_ // alias to use template instance with default allocator using FollowTarget = px4_msgs::msg::FollowTarget_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__FOLLOW_TARGET__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_controls3.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/ActuatorControls3.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS3_H_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS3_H_ #include "px4_msgs/msg/actuator_controls3__struct.h" #include "px4_msgs/msg/actuator_controls3__functions.h" #include "px4_msgs/msg/actuator_controls3__type_support.h" #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS3_H_ <file_sep>/install/px4_msgs/share/px4_msgs/environment/pythonpath.sh /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_msgs/ament_cmake_environment_hooks/pythonpath.sh<file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/safety__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/Safety.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/safety__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__Safety__init(px4_msgs__msg__Safety * msg) { if (!msg) { return false; } // timestamp // safety_switch_available // safety_off // override_available // override_enabled return true; } void px4_msgs__msg__Safety__fini(px4_msgs__msg__Safety * msg) { if (!msg) { return; } // timestamp // safety_switch_available // safety_off // override_available // override_enabled } px4_msgs__msg__Safety * px4_msgs__msg__Safety__create() { px4_msgs__msg__Safety * msg = (px4_msgs__msg__Safety *)malloc(sizeof(px4_msgs__msg__Safety)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__Safety)); bool success = px4_msgs__msg__Safety__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__Safety__destroy(px4_msgs__msg__Safety * msg) { if (msg) { px4_msgs__msg__Safety__fini(msg); } free(msg); } bool px4_msgs__msg__Safety__Sequence__init(px4_msgs__msg__Safety__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__Safety * data = NULL; if (size) { data = (px4_msgs__msg__Safety *)calloc(size, sizeof(px4_msgs__msg__Safety)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__Safety__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__Safety__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__Safety__Sequence__fini(px4_msgs__msg__Safety__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__Safety__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__Safety__Sequence * px4_msgs__msg__Safety__Sequence__create(size_t size) { px4_msgs__msg__Safety__Sequence * array = (px4_msgs__msg__Safety__Sequence *)malloc(sizeof(px4_msgs__msg__Safety__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__Safety__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__Safety__Sequence__destroy(px4_msgs__msg__Safety__Sequence * array) { if (array) { px4_msgs__msg__Safety__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/led_control__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/LedControl.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__LED_CONTROL__STRUCT_HPP_ #define PX4_MSGS__MSG__LED_CONTROL__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__LedControl __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__LedControl __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct LedControl_ { using Type = LedControl_<ContainerAllocator>; explicit LedControl_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->led_mask = 0; this->color = 0; this->mode = 0; this->num_blinks = 0; this->priority = 0; } } explicit LedControl_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->led_mask = 0; this->color = 0; this->mode = 0; this->num_blinks = 0; this->priority = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _led_mask_type = uint8_t; _led_mask_type led_mask; using _color_type = uint8_t; _color_type color; using _mode_type = uint8_t; _mode_type mode; using _num_blinks_type = uint8_t; _num_blinks_type num_blinks; using _priority_type = uint8_t; _priority_type priority; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__led_mask( const uint8_t & _arg) { this->led_mask = _arg; return *this; } Type & set__color( const uint8_t & _arg) { this->color = _arg; return *this; } Type & set__mode( const uint8_t & _arg) { this->mode = _arg; return *this; } Type & set__num_blinks( const uint8_t & _arg) { this->num_blinks = _arg; return *this; } Type & set__priority( const uint8_t & _arg) { this->priority = _arg; return *this; } // constant declarations static constexpr uint8_t COLOR_OFF = 0u; static constexpr uint8_t COLOR_RED = 1u; static constexpr uint8_t COLOR_GREEN = 2u; static constexpr uint8_t COLOR_BLUE = 3u; static constexpr uint8_t COLOR_YELLOW = 4u; static constexpr uint8_t COLOR_PURPLE = 5u; static constexpr uint8_t COLOR_AMBER = 6u; static constexpr uint8_t COLOR_CYAN = 7u; static constexpr uint8_t COLOR_WHITE = 8u; static constexpr uint8_t MODE_OFF = 0u; static constexpr uint8_t MODE_ON = 1u; static constexpr uint8_t MODE_DISABLED = 2u; static constexpr uint8_t MODE_BLINK_SLOW = 3u; static constexpr uint8_t MODE_BLINK_NORMAL = 4u; static constexpr uint8_t MODE_BLINK_FAST = 5u; static constexpr uint8_t MODE_BREATHE = 6u; static constexpr uint8_t MODE_FLASH = 7u; static constexpr uint8_t MAX_PRIORITY = 2u; static constexpr uint8_t ORB_QUEUE_LENGTH = 8u; // pointer types using RawPtr = px4_msgs::msg::LedControl_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::LedControl_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::LedControl_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::LedControl_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::LedControl_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::LedControl_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::LedControl_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::LedControl_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::LedControl_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::LedControl_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__LedControl std::shared_ptr<px4_msgs::msg::LedControl_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__LedControl std::shared_ptr<px4_msgs::msg::LedControl_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const LedControl_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->led_mask != other.led_mask) { return false; } if (this->color != other.color) { return false; } if (this->mode != other.mode) { return false; } if (this->num_blinks != other.num_blinks) { return false; } if (this->priority != other.priority) { return false; } return true; } bool operator!=(const LedControl_ & other) const { return !this->operator==(other); } }; // struct LedControl_ // alias to use template instance with default allocator using LedControl = px4_msgs::msg::LedControl_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t LedControl_<ContainerAllocator>::COLOR_OFF; template<typename ContainerAllocator> constexpr uint8_t LedControl_<ContainerAllocator>::COLOR_RED; template<typename ContainerAllocator> constexpr uint8_t LedControl_<ContainerAllocator>::COLOR_GREEN; template<typename ContainerAllocator> constexpr uint8_t LedControl_<ContainerAllocator>::COLOR_BLUE; template<typename ContainerAllocator> constexpr uint8_t LedControl_<ContainerAllocator>::COLOR_YELLOW; template<typename ContainerAllocator> constexpr uint8_t LedControl_<ContainerAllocator>::COLOR_PURPLE; template<typename ContainerAllocator> constexpr uint8_t LedControl_<ContainerAllocator>::COLOR_AMBER; template<typename ContainerAllocator> constexpr uint8_t LedControl_<ContainerAllocator>::COLOR_CYAN; template<typename ContainerAllocator> constexpr uint8_t LedControl_<ContainerAllocator>::COLOR_WHITE; template<typename ContainerAllocator> constexpr uint8_t LedControl_<ContainerAllocator>::MODE_OFF; template<typename ContainerAllocator> constexpr uint8_t LedControl_<ContainerAllocator>::MODE_ON; template<typename ContainerAllocator> constexpr uint8_t LedControl_<ContainerAllocator>::MODE_DISABLED; template<typename ContainerAllocator> constexpr uint8_t LedControl_<ContainerAllocator>::MODE_BLINK_SLOW; template<typename ContainerAllocator> constexpr uint8_t LedControl_<ContainerAllocator>::MODE_BLINK_NORMAL; template<typename ContainerAllocator> constexpr uint8_t LedControl_<ContainerAllocator>::MODE_BLINK_FAST; template<typename ContainerAllocator> constexpr uint8_t LedControl_<ContainerAllocator>::MODE_BREATHE; template<typename ContainerAllocator> constexpr uint8_t LedControl_<ContainerAllocator>::MODE_FLASH; template<typename ContainerAllocator> constexpr uint8_t LedControl_<ContainerAllocator>::MAX_PRIORITY; template<typename ContainerAllocator> constexpr uint8_t LedControl_<ContainerAllocator>::ORB_QUEUE_LENGTH; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__LED_CONTROL__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/VehicleLocalPosition.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/vehicle_local_position__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/vehicle_local_position__functions.h" #include "px4_msgs/msg/vehicle_local_position__struct.h" #ifdef __cplusplus extern "C" { #endif void VehicleLocalPosition__rosidl_typesupport_introspection_c__VehicleLocalPosition_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__VehicleLocalPosition__init(message_memory); } void VehicleLocalPosition__rosidl_typesupport_introspection_c__VehicleLocalPosition_fini_function(void * message_memory) { px4_msgs__msg__VehicleLocalPosition__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember VehicleLocalPosition__rosidl_typesupport_introspection_c__VehicleLocalPosition_message_member_array[44] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "xy_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, xy_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "z_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, z_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "v_xy_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, v_xy_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "v_z_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, v_z_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "x", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, x), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "y", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, y), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "z", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, z), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "delta_xy", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, delta_xy), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "xy_reset_counter", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, xy_reset_counter), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "delta_z", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, delta_z), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "z_reset_counter", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, z_reset_counter), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vx", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, vx), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vy", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, vy), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vz", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, vz), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "z_deriv", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, z_deriv), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "delta_vxy", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, delta_vxy), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vxy_reset_counter", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, vxy_reset_counter), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "delta_vz", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, delta_vz), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vz_reset_counter", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, vz_reset_counter), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ax", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, ax), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ay", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, ay), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "az", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, az), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "heading", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, heading), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "delta_heading", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, delta_heading), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "heading_reset_counter", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, heading_reset_counter), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "xy_global", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, xy_global), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "z_global", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, z_global), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ref_timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, ref_timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ref_lat", // name rosidl_typesupport_introspection_c__ROS_TYPE_DOUBLE, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, ref_lat), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ref_lon", // name rosidl_typesupport_introspection_c__ROS_TYPE_DOUBLE, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, ref_lon), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ref_alt", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, ref_alt), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "dist_bottom", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, dist_bottom), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "dist_bottom_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, dist_bottom_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "dist_bottom_sensor_bitfield", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, dist_bottom_sensor_bitfield), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "eph", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, eph), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "epv", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, epv), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "evh", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, evh), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "evv", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, evv), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vxy_max", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, vxy_max), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vz_max", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, vz_max), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "hagl_min", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, hagl_min), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "hagl_max", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPosition, hagl_max), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers VehicleLocalPosition__rosidl_typesupport_introspection_c__VehicleLocalPosition_message_members = { "px4_msgs__msg", // message namespace "VehicleLocalPosition", // message name 44, // number of fields sizeof(px4_msgs__msg__VehicleLocalPosition), VehicleLocalPosition__rosidl_typesupport_introspection_c__VehicleLocalPosition_message_member_array, // message members VehicleLocalPosition__rosidl_typesupport_introspection_c__VehicleLocalPosition_init_function, // function to initialize message memory (memory has to be allocated) VehicleLocalPosition__rosidl_typesupport_introspection_c__VehicleLocalPosition_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t VehicleLocalPosition__rosidl_typesupport_introspection_c__VehicleLocalPosition_message_type_support_handle = { 0, &VehicleLocalPosition__rosidl_typesupport_introspection_c__VehicleLocalPosition_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, VehicleLocalPosition)() { if (!VehicleLocalPosition__rosidl_typesupport_introspection_c__VehicleLocalPosition_message_type_support_handle.typesupport_identifier) { VehicleLocalPosition__rosidl_typesupport_introspection_c__VehicleLocalPosition_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &VehicleLocalPosition__rosidl_typesupport_introspection_c__VehicleLocalPosition_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/estimator_states__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/EstimatorStates.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_STATES__STRUCT_HPP_ #define PX4_MSGS__MSG__ESTIMATOR_STATES__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__EstimatorStates __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__EstimatorStates __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct EstimatorStates_ { using Type = EstimatorStates_<ContainerAllocator>; explicit EstimatorStates_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; std::fill<typename std::array<float, 24>::iterator, float>(this->states.begin(), this->states.end(), 0.0f); this->n_states = 0; std::fill<typename std::array<float, 24>::iterator, float>(this->covariances.begin(), this->covariances.end(), 0.0f); } } explicit EstimatorStates_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : states(_alloc), covariances(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; std::fill<typename std::array<float, 24>::iterator, float>(this->states.begin(), this->states.end(), 0.0f); this->n_states = 0; std::fill<typename std::array<float, 24>::iterator, float>(this->covariances.begin(), this->covariances.end(), 0.0f); } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _timestamp_sample_type = uint64_t; _timestamp_sample_type timestamp_sample; using _states_type = std::array<float, 24>; _states_type states; using _n_states_type = uint8_t; _n_states_type n_states; using _covariances_type = std::array<float, 24>; _covariances_type covariances; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__timestamp_sample( const uint64_t & _arg) { this->timestamp_sample = _arg; return *this; } Type & set__states( const std::array<float, 24> & _arg) { this->states = _arg; return *this; } Type & set__n_states( const uint8_t & _arg) { this->n_states = _arg; return *this; } Type & set__covariances( const std::array<float, 24> & _arg) { this->covariances = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::EstimatorStates_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::EstimatorStates_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::EstimatorStates_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::EstimatorStates_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::EstimatorStates_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::EstimatorStates_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::EstimatorStates_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::EstimatorStates_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::EstimatorStates_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::EstimatorStates_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__EstimatorStates std::shared_ptr<px4_msgs::msg::EstimatorStates_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__EstimatorStates std::shared_ptr<px4_msgs::msg::EstimatorStates_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const EstimatorStates_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->timestamp_sample != other.timestamp_sample) { return false; } if (this->states != other.states) { return false; } if (this->n_states != other.n_states) { return false; } if (this->covariances != other.covariances) { return false; } return true; } bool operator!=(const EstimatorStates_ & other) const { return !this->operator==(other); } }; // struct EstimatorStates_ // alias to use template instance with default allocator using EstimatorStates = px4_msgs::msg::EstimatorStates_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__ESTIMATOR_STATES__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue_poll__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/OrbTestMediumQueuePoll.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORB_TEST_MEDIUM_QUEUE_POLL__STRUCT_H_ #define PX4_MSGS__MSG__ORB_TEST_MEDIUM_QUEUE_POLL__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/OrbTestMediumQueuePoll in the package px4_msgs. typedef struct px4_msgs__msg__OrbTestMediumQueuePoll { uint64_t timestamp; int32_t val; uint8_t junk[64]; } px4_msgs__msg__OrbTestMediumQueuePoll; // Struct for a sequence of px4_msgs__msg__OrbTestMediumQueuePoll. typedef struct px4_msgs__msg__OrbTestMediumQueuePoll__Sequence { px4_msgs__msg__OrbTestMediumQueuePoll * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__OrbTestMediumQueuePoll__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ORB_TEST_MEDIUM_QUEUE_POLL__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_mission_result.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/MissionResult.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_MissionResult(type): """Metaclass of message 'MissionResult'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'MISSION_EXECUTION_MODE_NORMAL': 0, 'MISSION_EXECUTION_MODE_REVERSE': 1, 'MISSION_EXECUTION_MODE_FAST_FORWARD': 2, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.MissionResult') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__mission_result cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__mission_result cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__mission_result cls._TYPE_SUPPORT = module.type_support_msg__msg__mission_result cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__mission_result @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'MISSION_EXECUTION_MODE_NORMAL': cls.__constants['MISSION_EXECUTION_MODE_NORMAL'], 'MISSION_EXECUTION_MODE_REVERSE': cls.__constants['MISSION_EXECUTION_MODE_REVERSE'], 'MISSION_EXECUTION_MODE_FAST_FORWARD': cls.__constants['MISSION_EXECUTION_MODE_FAST_FORWARD'], } @property def MISSION_EXECUTION_MODE_NORMAL(self): """Message constant 'MISSION_EXECUTION_MODE_NORMAL'.""" return Metaclass_MissionResult.__constants['MISSION_EXECUTION_MODE_NORMAL'] @property def MISSION_EXECUTION_MODE_REVERSE(self): """Message constant 'MISSION_EXECUTION_MODE_REVERSE'.""" return Metaclass_MissionResult.__constants['MISSION_EXECUTION_MODE_REVERSE'] @property def MISSION_EXECUTION_MODE_FAST_FORWARD(self): """Message constant 'MISSION_EXECUTION_MODE_FAST_FORWARD'.""" return Metaclass_MissionResult.__constants['MISSION_EXECUTION_MODE_FAST_FORWARD'] class MissionResult(metaclass=Metaclass_MissionResult): """ Message class 'MissionResult'. Constants: MISSION_EXECUTION_MODE_NORMAL MISSION_EXECUTION_MODE_REVERSE MISSION_EXECUTION_MODE_FAST_FORWARD """ __slots__ = [ '_timestamp', '_instance_count', '_seq_reached', '_seq_current', '_seq_total', '_valid', '_warning', '_finished', '_failure', '_stay_in_failsafe', '_flight_termination', '_item_do_jump_changed', '_item_changed_index', '_item_do_jump_remaining', '_execution_mode', ] _fields_and_field_types = { 'timestamp': 'uint64', 'instance_count': 'uint32', 'seq_reached': 'int32', 'seq_current': 'uint16', 'seq_total': 'uint16', 'valid': 'boolean', 'warning': 'boolean', 'finished': 'boolean', 'failure': 'boolean', 'stay_in_failsafe': 'boolean', 'flight_termination': 'boolean', 'item_do_jump_changed': 'boolean', 'item_changed_index': 'uint16', 'item_do_jump_remaining': 'uint16', 'execution_mode': 'uint8', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('int32'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.instance_count = kwargs.get('instance_count', int()) self.seq_reached = kwargs.get('seq_reached', int()) self.seq_current = kwargs.get('seq_current', int()) self.seq_total = kwargs.get('seq_total', int()) self.valid = kwargs.get('valid', bool()) self.warning = kwargs.get('warning', bool()) self.finished = kwargs.get('finished', bool()) self.failure = kwargs.get('failure', bool()) self.stay_in_failsafe = kwargs.get('stay_in_failsafe', bool()) self.flight_termination = kwargs.get('flight_termination', bool()) self.item_do_jump_changed = kwargs.get('item_do_jump_changed', bool()) self.item_changed_index = kwargs.get('item_changed_index', int()) self.item_do_jump_remaining = kwargs.get('item_do_jump_remaining', int()) self.execution_mode = kwargs.get('execution_mode', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.instance_count != other.instance_count: return False if self.seq_reached != other.seq_reached: return False if self.seq_current != other.seq_current: return False if self.seq_total != other.seq_total: return False if self.valid != other.valid: return False if self.warning != other.warning: return False if self.finished != other.finished: return False if self.failure != other.failure: return False if self.stay_in_failsafe != other.stay_in_failsafe: return False if self.flight_termination != other.flight_termination: return False if self.item_do_jump_changed != other.item_do_jump_changed: return False if self.item_changed_index != other.item_changed_index: return False if self.item_do_jump_remaining != other.item_do_jump_remaining: return False if self.execution_mode != other.execution_mode: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def instance_count(self): """Message field 'instance_count'.""" return self._instance_count @instance_count.setter def instance_count(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'instance_count' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'instance_count' field must be an unsigned integer in [0, 4294967295]" self._instance_count = value @property def seq_reached(self): """Message field 'seq_reached'.""" return self._seq_reached @seq_reached.setter def seq_reached(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'seq_reached' field must be of type 'int'" assert value >= -2147483648 and value < 2147483648, \ "The 'seq_reached' field must be an integer in [-2147483648, 2147483647]" self._seq_reached = value @property def seq_current(self): """Message field 'seq_current'.""" return self._seq_current @seq_current.setter def seq_current(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'seq_current' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'seq_current' field must be an unsigned integer in [0, 65535]" self._seq_current = value @property def seq_total(self): """Message field 'seq_total'.""" return self._seq_total @seq_total.setter def seq_total(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'seq_total' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'seq_total' field must be an unsigned integer in [0, 65535]" self._seq_total = value @property def valid(self): """Message field 'valid'.""" return self._valid @valid.setter def valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'valid' field must be of type 'bool'" self._valid = value @property def warning(self): """Message field 'warning'.""" return self._warning @warning.setter def warning(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'warning' field must be of type 'bool'" self._warning = value @property def finished(self): """Message field 'finished'.""" return self._finished @finished.setter def finished(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'finished' field must be of type 'bool'" self._finished = value @property def failure(self): """Message field 'failure'.""" return self._failure @failure.setter def failure(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'failure' field must be of type 'bool'" self._failure = value @property def stay_in_failsafe(self): """Message field 'stay_in_failsafe'.""" return self._stay_in_failsafe @stay_in_failsafe.setter def stay_in_failsafe(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'stay_in_failsafe' field must be of type 'bool'" self._stay_in_failsafe = value @property def flight_termination(self): """Message field 'flight_termination'.""" return self._flight_termination @flight_termination.setter def flight_termination(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'flight_termination' field must be of type 'bool'" self._flight_termination = value @property def item_do_jump_changed(self): """Message field 'item_do_jump_changed'.""" return self._item_do_jump_changed @item_do_jump_changed.setter def item_do_jump_changed(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'item_do_jump_changed' field must be of type 'bool'" self._item_do_jump_changed = value @property def item_changed_index(self): """Message field 'item_changed_index'.""" return self._item_changed_index @item_changed_index.setter def item_changed_index(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'item_changed_index' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'item_changed_index' field must be an unsigned integer in [0, 65535]" self._item_changed_index = value @property def item_do_jump_remaining(self): """Message field 'item_do_jump_remaining'.""" return self._item_do_jump_remaining @item_do_jump_remaining.setter def item_do_jump_remaining(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'item_do_jump_remaining' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'item_do_jump_remaining' field must be an unsigned integer in [0, 65535]" self._item_do_jump_remaining = value @property def execution_mode(self): """Message field 'execution_mode'.""" return self._execution_mode @execution_mode.setter def execution_mode(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'execution_mode' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'execution_mode' field must be an unsigned integer in [0, 255]" self._execution_mode = value <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/heater_status__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/HeaterStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/heater_status__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/heater_status__struct.h" #include "px4_msgs/msg/heater_status__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _HeaterStatus__ros_msg_type = px4_msgs__msg__HeaterStatus; static bool _HeaterStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _HeaterStatus__ros_msg_type * ros_message = static_cast<const _HeaterStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: device_id { cdr << ros_message->device_id; } // Field name: heater_on { cdr << (ros_message->heater_on ? true : false); } // Field name: temperature_target_met { cdr << (ros_message->temperature_target_met ? true : false); } // Field name: temperature_sensor { cdr << ros_message->temperature_sensor; } // Field name: temperature_target { cdr << ros_message->temperature_target; } // Field name: controller_period_usec { cdr << ros_message->controller_period_usec; } // Field name: controller_time_on_usec { cdr << ros_message->controller_time_on_usec; } // Field name: proportional_value { cdr << ros_message->proportional_value; } // Field name: integrator_value { cdr << ros_message->integrator_value; } // Field name: feed_forward_value { cdr << ros_message->feed_forward_value; } // Field name: mode { cdr << ros_message->mode; } return true; } static bool _HeaterStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _HeaterStatus__ros_msg_type * ros_message = static_cast<_HeaterStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: device_id { cdr >> ros_message->device_id; } // Field name: heater_on { uint8_t tmp; cdr >> tmp; ros_message->heater_on = tmp ? true : false; } // Field name: temperature_target_met { uint8_t tmp; cdr >> tmp; ros_message->temperature_target_met = tmp ? true : false; } // Field name: temperature_sensor { cdr >> ros_message->temperature_sensor; } // Field name: temperature_target { cdr >> ros_message->temperature_target; } // Field name: controller_period_usec { cdr >> ros_message->controller_period_usec; } // Field name: controller_time_on_usec { cdr >> ros_message->controller_time_on_usec; } // Field name: proportional_value { cdr >> ros_message->proportional_value; } // Field name: integrator_value { cdr >> ros_message->integrator_value; } // Field name: feed_forward_value { cdr >> ros_message->feed_forward_value; } // Field name: mode { cdr >> ros_message->mode; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__HeaterStatus( const void * untyped_ros_message, size_t current_alignment) { const _HeaterStatus__ros_msg_type * ros_message = static_cast<const _HeaterStatus__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name device_id { size_t item_size = sizeof(ros_message->device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name heater_on { size_t item_size = sizeof(ros_message->heater_on); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name temperature_target_met { size_t item_size = sizeof(ros_message->temperature_target_met); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name temperature_sensor { size_t item_size = sizeof(ros_message->temperature_sensor); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name temperature_target { size_t item_size = sizeof(ros_message->temperature_target); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name controller_period_usec { size_t item_size = sizeof(ros_message->controller_period_usec); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name controller_time_on_usec { size_t item_size = sizeof(ros_message->controller_time_on_usec); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name proportional_value { size_t item_size = sizeof(ros_message->proportional_value); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name integrator_value { size_t item_size = sizeof(ros_message->integrator_value); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name feed_forward_value { size_t item_size = sizeof(ros_message->feed_forward_value); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name mode { size_t item_size = sizeof(ros_message->mode); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _HeaterStatus__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__HeaterStatus( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__HeaterStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: heater_on { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: temperature_target_met { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: temperature_sensor { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: temperature_target { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: controller_period_usec { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: controller_time_on_usec { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: proportional_value { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: integrator_value { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: feed_forward_value { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: mode { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _HeaterStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__HeaterStatus( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_HeaterStatus = { "px4_msgs::msg", "HeaterStatus", _HeaterStatus__cdr_serialize, _HeaterStatus__cdr_deserialize, _HeaterStatus__get_serialized_size, _HeaterStatus__max_serialized_size }; static rosidl_message_type_support_t _HeaterStatus__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_HeaterStatus, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, HeaterStatus)() { return &_HeaterStatus__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/landing_target_pose__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/LandingTargetPose.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__LANDING_TARGET_POSE__STRUCT_H_ #define PX4_MSGS__MSG__LANDING_TARGET_POSE__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/LandingTargetPose in the package px4_msgs. typedef struct px4_msgs__msg__LandingTargetPose { uint64_t timestamp; bool is_static; bool rel_pos_valid; bool rel_vel_valid; float x_rel; float y_rel; float z_rel; float vx_rel; float vy_rel; float cov_x_rel; float cov_y_rel; float cov_vx_rel; float cov_vy_rel; bool abs_pos_valid; float x_abs; float y_abs; float z_abs; } px4_msgs__msg__LandingTargetPose; // Struct for a sequence of px4_msgs__msg__LandingTargetPose. typedef struct px4_msgs__msg__LandingTargetPose__Sequence { px4_msgs__msg__LandingTargetPose * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__LandingTargetPose__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__LANDING_TARGET_POSE__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/rc_parameter_map__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/RcParameterMap.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__RC_PARAMETER_MAP__STRUCT_HPP_ #define PX4_MSGS__MSG__RC_PARAMETER_MAP__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__RcParameterMap __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__RcParameterMap __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct RcParameterMap_ { using Type = RcParameterMap_<ContainerAllocator>; explicit RcParameterMap_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; std::fill<typename std::array<bool, 3>::iterator, bool>(this->valid.begin(), this->valid.end(), false); std::fill<typename std::array<int32_t, 3>::iterator, int32_t>(this->param_index.begin(), this->param_index.end(), 0l); std::fill<typename std::array<uint8_t, 51>::iterator, uint8_t>(this->param_id.begin(), this->param_id.end(), 0); std::fill<typename std::array<float, 3>::iterator, float>(this->scale.begin(), this->scale.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->value0.begin(), this->value0.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->value_min.begin(), this->value_min.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->value_max.begin(), this->value_max.end(), 0.0f); } } explicit RcParameterMap_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : valid(_alloc), param_index(_alloc), param_id(_alloc), scale(_alloc), value0(_alloc), value_min(_alloc), value_max(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; std::fill<typename std::array<bool, 3>::iterator, bool>(this->valid.begin(), this->valid.end(), false); std::fill<typename std::array<int32_t, 3>::iterator, int32_t>(this->param_index.begin(), this->param_index.end(), 0l); std::fill<typename std::array<uint8_t, 51>::iterator, uint8_t>(this->param_id.begin(), this->param_id.end(), 0); std::fill<typename std::array<float, 3>::iterator, float>(this->scale.begin(), this->scale.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->value0.begin(), this->value0.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->value_min.begin(), this->value_min.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->value_max.begin(), this->value_max.end(), 0.0f); } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _valid_type = std::array<bool, 3>; _valid_type valid; using _param_index_type = std::array<int32_t, 3>; _param_index_type param_index; using _param_id_type = std::array<uint8_t, 51>; _param_id_type param_id; using _scale_type = std::array<float, 3>; _scale_type scale; using _value0_type = std::array<float, 3>; _value0_type value0; using _value_min_type = std::array<float, 3>; _value_min_type value_min; using _value_max_type = std::array<float, 3>; _value_max_type value_max; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__valid( const std::array<bool, 3> & _arg) { this->valid = _arg; return *this; } Type & set__param_index( const std::array<int32_t, 3> & _arg) { this->param_index = _arg; return *this; } Type & set__param_id( const std::array<uint8_t, 51> & _arg) { this->param_id = _arg; return *this; } Type & set__scale( const std::array<float, 3> & _arg) { this->scale = _arg; return *this; } Type & set__value0( const std::array<float, 3> & _arg) { this->value0 = _arg; return *this; } Type & set__value_min( const std::array<float, 3> & _arg) { this->value_min = _arg; return *this; } Type & set__value_max( const std::array<float, 3> & _arg) { this->value_max = _arg; return *this; } // constant declarations static constexpr uint8_t RC_PARAM_MAP_NCHAN = 3u; static constexpr uint8_t PARAM_ID_LEN = 16u; // pointer types using RawPtr = px4_msgs::msg::RcParameterMap_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::RcParameterMap_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::RcParameterMap_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::RcParameterMap_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::RcParameterMap_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::RcParameterMap_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::RcParameterMap_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::RcParameterMap_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::RcParameterMap_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::RcParameterMap_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__RcParameterMap std::shared_ptr<px4_msgs::msg::RcParameterMap_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__RcParameterMap std::shared_ptr<px4_msgs::msg::RcParameterMap_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const RcParameterMap_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->valid != other.valid) { return false; } if (this->param_index != other.param_index) { return false; } if (this->param_id != other.param_id) { return false; } if (this->scale != other.scale) { return false; } if (this->value0 != other.value0) { return false; } if (this->value_min != other.value_min) { return false; } if (this->value_max != other.value_max) { return false; } return true; } bool operator!=(const RcParameterMap_ & other) const { return !this->operator==(other); } }; // struct RcParameterMap_ // alias to use template instance with default allocator using RcParameterMap = px4_msgs::msg::RcParameterMap_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t RcParameterMap_<ContainerAllocator>::RC_PARAM_MAP_NCHAN; template<typename ContainerAllocator> constexpr uint8_t RcParameterMap_<ContainerAllocator>::PARAM_ID_LEN; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__RC_PARAMETER_MAP__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/mount_orientation__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/MountOrientation.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__MOUNT_ORIENTATION__STRUCT_H_ #define PX4_MSGS__MSG__MOUNT_ORIENTATION__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/MountOrientation in the package px4_msgs. typedef struct px4_msgs__msg__MountOrientation { uint64_t timestamp; float attitude_euler_angle[3]; } px4_msgs__msg__MountOrientation; // Struct for a sequence of px4_msgs__msg__MountOrientation. typedef struct px4_msgs__msg__MountOrientation__Sequence { px4_msgs__msg__MountOrientation * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__MountOrientation__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__MOUNT_ORIENTATION__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status_flags__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleStatusFlags.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_status_flags__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/vehicle_status_flags__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::VehicleStatusFlags & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: condition_calibration_enabled cdr << (ros_message.condition_calibration_enabled ? true : false); // Member: condition_system_sensors_initialized cdr << (ros_message.condition_system_sensors_initialized ? true : false); // Member: condition_system_hotplug_timeout cdr << (ros_message.condition_system_hotplug_timeout ? true : false); // Member: condition_system_returned_to_home cdr << (ros_message.condition_system_returned_to_home ? true : false); // Member: condition_auto_mission_available cdr << (ros_message.condition_auto_mission_available ? true : false); // Member: condition_angular_velocity_valid cdr << (ros_message.condition_angular_velocity_valid ? true : false); // Member: condition_attitude_valid cdr << (ros_message.condition_attitude_valid ? true : false); // Member: condition_local_altitude_valid cdr << (ros_message.condition_local_altitude_valid ? true : false); // Member: condition_local_position_valid cdr << (ros_message.condition_local_position_valid ? true : false); // Member: condition_local_velocity_valid cdr << (ros_message.condition_local_velocity_valid ? true : false); // Member: condition_global_position_valid cdr << (ros_message.condition_global_position_valid ? true : false); // Member: condition_home_position_valid cdr << (ros_message.condition_home_position_valid ? true : false); // Member: condition_power_input_valid cdr << (ros_message.condition_power_input_valid ? true : false); // Member: condition_battery_healthy cdr << (ros_message.condition_battery_healthy ? true : false); // Member: condition_escs_error cdr << (ros_message.condition_escs_error ? true : false); // Member: condition_escs_failure cdr << (ros_message.condition_escs_failure ? true : false); // Member: circuit_breaker_engaged_power_check cdr << (ros_message.circuit_breaker_engaged_power_check ? true : false); // Member: circuit_breaker_engaged_airspd_check cdr << (ros_message.circuit_breaker_engaged_airspd_check ? true : false); // Member: circuit_breaker_engaged_enginefailure_check cdr << (ros_message.circuit_breaker_engaged_enginefailure_check ? true : false); // Member: circuit_breaker_flight_termination_disabled cdr << (ros_message.circuit_breaker_flight_termination_disabled ? true : false); // Member: circuit_breaker_engaged_usb_check cdr << (ros_message.circuit_breaker_engaged_usb_check ? true : false); // Member: circuit_breaker_engaged_posfailure_check cdr << (ros_message.circuit_breaker_engaged_posfailure_check ? true : false); // Member: circuit_breaker_vtol_fw_arming_check cdr << (ros_message.circuit_breaker_vtol_fw_arming_check ? true : false); // Member: offboard_control_signal_found_once cdr << (ros_message.offboard_control_signal_found_once ? true : false); // Member: offboard_control_signal_lost cdr << (ros_message.offboard_control_signal_lost ? true : false); // Member: rc_signal_found_once cdr << (ros_message.rc_signal_found_once ? true : false); // Member: rc_input_blocked cdr << (ros_message.rc_input_blocked ? true : false); // Member: rc_calibration_valid cdr << (ros_message.rc_calibration_valid ? true : false); // Member: vtol_transition_failure cdr << (ros_message.vtol_transition_failure ? true : false); // Member: usb_connected cdr << (ros_message.usb_connected ? true : false); // Member: sd_card_detected_once cdr << (ros_message.sd_card_detected_once ? true : false); // Member: avoidance_system_required cdr << (ros_message.avoidance_system_required ? true : false); // Member: avoidance_system_valid cdr << (ros_message.avoidance_system_valid ? true : false); return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::VehicleStatusFlags & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: condition_calibration_enabled { uint8_t tmp; cdr >> tmp; ros_message.condition_calibration_enabled = tmp ? true : false; } // Member: condition_system_sensors_initialized { uint8_t tmp; cdr >> tmp; ros_message.condition_system_sensors_initialized = tmp ? true : false; } // Member: condition_system_hotplug_timeout { uint8_t tmp; cdr >> tmp; ros_message.condition_system_hotplug_timeout = tmp ? true : false; } // Member: condition_system_returned_to_home { uint8_t tmp; cdr >> tmp; ros_message.condition_system_returned_to_home = tmp ? true : false; } // Member: condition_auto_mission_available { uint8_t tmp; cdr >> tmp; ros_message.condition_auto_mission_available = tmp ? true : false; } // Member: condition_angular_velocity_valid { uint8_t tmp; cdr >> tmp; ros_message.condition_angular_velocity_valid = tmp ? true : false; } // Member: condition_attitude_valid { uint8_t tmp; cdr >> tmp; ros_message.condition_attitude_valid = tmp ? true : false; } // Member: condition_local_altitude_valid { uint8_t tmp; cdr >> tmp; ros_message.condition_local_altitude_valid = tmp ? true : false; } // Member: condition_local_position_valid { uint8_t tmp; cdr >> tmp; ros_message.condition_local_position_valid = tmp ? true : false; } // Member: condition_local_velocity_valid { uint8_t tmp; cdr >> tmp; ros_message.condition_local_velocity_valid = tmp ? true : false; } // Member: condition_global_position_valid { uint8_t tmp; cdr >> tmp; ros_message.condition_global_position_valid = tmp ? true : false; } // Member: condition_home_position_valid { uint8_t tmp; cdr >> tmp; ros_message.condition_home_position_valid = tmp ? true : false; } // Member: condition_power_input_valid { uint8_t tmp; cdr >> tmp; ros_message.condition_power_input_valid = tmp ? true : false; } // Member: condition_battery_healthy { uint8_t tmp; cdr >> tmp; ros_message.condition_battery_healthy = tmp ? true : false; } // Member: condition_escs_error { uint8_t tmp; cdr >> tmp; ros_message.condition_escs_error = tmp ? true : false; } // Member: condition_escs_failure { uint8_t tmp; cdr >> tmp; ros_message.condition_escs_failure = tmp ? true : false; } // Member: circuit_breaker_engaged_power_check { uint8_t tmp; cdr >> tmp; ros_message.circuit_breaker_engaged_power_check = tmp ? true : false; } // Member: circuit_breaker_engaged_airspd_check { uint8_t tmp; cdr >> tmp; ros_message.circuit_breaker_engaged_airspd_check = tmp ? true : false; } // Member: circuit_breaker_engaged_enginefailure_check { uint8_t tmp; cdr >> tmp; ros_message.circuit_breaker_engaged_enginefailure_check = tmp ? true : false; } // Member: circuit_breaker_flight_termination_disabled { uint8_t tmp; cdr >> tmp; ros_message.circuit_breaker_flight_termination_disabled = tmp ? true : false; } // Member: circuit_breaker_engaged_usb_check { uint8_t tmp; cdr >> tmp; ros_message.circuit_breaker_engaged_usb_check = tmp ? true : false; } // Member: circuit_breaker_engaged_posfailure_check { uint8_t tmp; cdr >> tmp; ros_message.circuit_breaker_engaged_posfailure_check = tmp ? true : false; } // Member: circuit_breaker_vtol_fw_arming_check { uint8_t tmp; cdr >> tmp; ros_message.circuit_breaker_vtol_fw_arming_check = tmp ? true : false; } // Member: offboard_control_signal_found_once { uint8_t tmp; cdr >> tmp; ros_message.offboard_control_signal_found_once = tmp ? true : false; } // Member: offboard_control_signal_lost { uint8_t tmp; cdr >> tmp; ros_message.offboard_control_signal_lost = tmp ? true : false; } // Member: rc_signal_found_once { uint8_t tmp; cdr >> tmp; ros_message.rc_signal_found_once = tmp ? true : false; } // Member: rc_input_blocked { uint8_t tmp; cdr >> tmp; ros_message.rc_input_blocked = tmp ? true : false; } // Member: rc_calibration_valid { uint8_t tmp; cdr >> tmp; ros_message.rc_calibration_valid = tmp ? true : false; } // Member: vtol_transition_failure { uint8_t tmp; cdr >> tmp; ros_message.vtol_transition_failure = tmp ? true : false; } // Member: usb_connected { uint8_t tmp; cdr >> tmp; ros_message.usb_connected = tmp ? true : false; } // Member: sd_card_detected_once { uint8_t tmp; cdr >> tmp; ros_message.sd_card_detected_once = tmp ? true : false; } // Member: avoidance_system_required { uint8_t tmp; cdr >> tmp; ros_message.avoidance_system_required = tmp ? true : false; } // Member: avoidance_system_valid { uint8_t tmp; cdr >> tmp; ros_message.avoidance_system_valid = tmp ? true : false; } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::VehicleStatusFlags & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: condition_calibration_enabled { size_t item_size = sizeof(ros_message.condition_calibration_enabled); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: condition_system_sensors_initialized { size_t item_size = sizeof(ros_message.condition_system_sensors_initialized); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: condition_system_hotplug_timeout { size_t item_size = sizeof(ros_message.condition_system_hotplug_timeout); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: condition_system_returned_to_home { size_t item_size = sizeof(ros_message.condition_system_returned_to_home); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: condition_auto_mission_available { size_t item_size = sizeof(ros_message.condition_auto_mission_available); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: condition_angular_velocity_valid { size_t item_size = sizeof(ros_message.condition_angular_velocity_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: condition_attitude_valid { size_t item_size = sizeof(ros_message.condition_attitude_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: condition_local_altitude_valid { size_t item_size = sizeof(ros_message.condition_local_altitude_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: condition_local_position_valid { size_t item_size = sizeof(ros_message.condition_local_position_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: condition_local_velocity_valid { size_t item_size = sizeof(ros_message.condition_local_velocity_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: condition_global_position_valid { size_t item_size = sizeof(ros_message.condition_global_position_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: condition_home_position_valid { size_t item_size = sizeof(ros_message.condition_home_position_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: condition_power_input_valid { size_t item_size = sizeof(ros_message.condition_power_input_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: condition_battery_healthy { size_t item_size = sizeof(ros_message.condition_battery_healthy); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: condition_escs_error { size_t item_size = sizeof(ros_message.condition_escs_error); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: condition_escs_failure { size_t item_size = sizeof(ros_message.condition_escs_failure); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: circuit_breaker_engaged_power_check { size_t item_size = sizeof(ros_message.circuit_breaker_engaged_power_check); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: circuit_breaker_engaged_airspd_check { size_t item_size = sizeof(ros_message.circuit_breaker_engaged_airspd_check); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: circuit_breaker_engaged_enginefailure_check { size_t item_size = sizeof(ros_message.circuit_breaker_engaged_enginefailure_check); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: circuit_breaker_flight_termination_disabled { size_t item_size = sizeof(ros_message.circuit_breaker_flight_termination_disabled); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: circuit_breaker_engaged_usb_check { size_t item_size = sizeof(ros_message.circuit_breaker_engaged_usb_check); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: circuit_breaker_engaged_posfailure_check { size_t item_size = sizeof(ros_message.circuit_breaker_engaged_posfailure_check); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: circuit_breaker_vtol_fw_arming_check { size_t item_size = sizeof(ros_message.circuit_breaker_vtol_fw_arming_check); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: offboard_control_signal_found_once { size_t item_size = sizeof(ros_message.offboard_control_signal_found_once); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: offboard_control_signal_lost { size_t item_size = sizeof(ros_message.offboard_control_signal_lost); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rc_signal_found_once { size_t item_size = sizeof(ros_message.rc_signal_found_once); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rc_input_blocked { size_t item_size = sizeof(ros_message.rc_input_blocked); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rc_calibration_valid { size_t item_size = sizeof(ros_message.rc_calibration_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: vtol_transition_failure { size_t item_size = sizeof(ros_message.vtol_transition_failure); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: usb_connected { size_t item_size = sizeof(ros_message.usb_connected); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: sd_card_detected_once { size_t item_size = sizeof(ros_message.sd_card_detected_once); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: avoidance_system_required { size_t item_size = sizeof(ros_message.avoidance_system_required); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: avoidance_system_valid { size_t item_size = sizeof(ros_message.avoidance_system_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_VehicleStatusFlags( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: condition_calibration_enabled { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: condition_system_sensors_initialized { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: condition_system_hotplug_timeout { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: condition_system_returned_to_home { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: condition_auto_mission_available { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: condition_angular_velocity_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: condition_attitude_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: condition_local_altitude_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: condition_local_position_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: condition_local_velocity_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: condition_global_position_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: condition_home_position_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: condition_power_input_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: condition_battery_healthy { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: condition_escs_error { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: condition_escs_failure { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: circuit_breaker_engaged_power_check { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: circuit_breaker_engaged_airspd_check { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: circuit_breaker_engaged_enginefailure_check { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: circuit_breaker_flight_termination_disabled { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: circuit_breaker_engaged_usb_check { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: circuit_breaker_engaged_posfailure_check { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: circuit_breaker_vtol_fw_arming_check { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: offboard_control_signal_found_once { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: offboard_control_signal_lost { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: rc_signal_found_once { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: rc_input_blocked { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: rc_calibration_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: vtol_transition_failure { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: usb_connected { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: sd_card_detected_once { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: avoidance_system_required { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: avoidance_system_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _VehicleStatusFlags__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::VehicleStatusFlags *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _VehicleStatusFlags__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::VehicleStatusFlags *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _VehicleStatusFlags__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::VehicleStatusFlags *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _VehicleStatusFlags__max_serialized_size(bool & full_bounded) { return max_serialized_size_VehicleStatusFlags(full_bounded, 0); } static message_type_support_callbacks_t _VehicleStatusFlags__callbacks = { "px4_msgs::msg", "VehicleStatusFlags", _VehicleStatusFlags__cdr_serialize, _VehicleStatusFlags__cdr_deserialize, _VehicleStatusFlags__get_serialized_size, _VehicleStatusFlags__max_serialized_size }; static rosidl_message_type_support_t _VehicleStatusFlags__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_VehicleStatusFlags__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleStatusFlags>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_VehicleStatusFlags__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, VehicleStatusFlags)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_VehicleStatusFlags__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/sensor_accel_fifo.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_ACCEL_FIFO_HPP_ #define PX4_MSGS__MSG__SENSOR_ACCEL_FIFO_HPP_ #include "px4_msgs/msg/sensor_accel_fifo__struct.hpp" #include "px4_msgs/msg/sensor_accel_fifo__traits.hpp" #endif // PX4_MSGS__MSG__SENSOR_ACCEL_FIFO_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/uavcan_parameter_request__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/UavcanParameterRequest.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__UAVCAN_PARAMETER_REQUEST__STRUCT_H_ #define PX4_MSGS__MSG__UAVCAN_PARAMETER_REQUEST__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'MESSAGE_TYPE_PARAM_REQUEST_READ'. enum { px4_msgs__msg__UavcanParameterRequest__MESSAGE_TYPE_PARAM_REQUEST_READ = 20 }; /// Constant 'MESSAGE_TYPE_PARAM_REQUEST_LIST'. enum { px4_msgs__msg__UavcanParameterRequest__MESSAGE_TYPE_PARAM_REQUEST_LIST = 21 }; /// Constant 'MESSAGE_TYPE_PARAM_SET'. enum { px4_msgs__msg__UavcanParameterRequest__MESSAGE_TYPE_PARAM_SET = 23 }; /// Constant 'NODE_ID_ALL'. enum { px4_msgs__msg__UavcanParameterRequest__NODE_ID_ALL = 0 }; /// Constant 'PARAM_TYPE_UINT8'. enum { px4_msgs__msg__UavcanParameterRequest__PARAM_TYPE_UINT8 = 1 }; /// Constant 'PARAM_TYPE_INT64'. enum { px4_msgs__msg__UavcanParameterRequest__PARAM_TYPE_INT64 = 8 }; /// Constant 'PARAM_TYPE_REAL32'. enum { px4_msgs__msg__UavcanParameterRequest__PARAM_TYPE_REAL32 = 9 }; /// Constant 'ORB_QUEUE_LENGTH'. enum { px4_msgs__msg__UavcanParameterRequest__ORB_QUEUE_LENGTH = 4 }; // Struct defined in msg/UavcanParameterRequest in the package px4_msgs. typedef struct px4_msgs__msg__UavcanParameterRequest { uint64_t timestamp; uint8_t message_type; uint8_t node_id; uint8_t param_id[17]; int16_t param_index; uint8_t param_type; int64_t int_value; float real_value; } px4_msgs__msg__UavcanParameterRequest; // Struct for a sequence of px4_msgs__msg__UavcanParameterRequest. typedef struct px4_msgs__msg__UavcanParameterRequest__Sequence { px4_msgs__msg__UavcanParameterRequest * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__UavcanParameterRequest__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__UAVCAN_PARAMETER_REQUEST__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_optical_flow_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/OpticalFlow.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/optical_flow__struct.h" #include "px4_msgs/msg/optical_flow__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__optical_flow__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[39]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._optical_flow.OpticalFlow", full_classname_dest, 38) == 0); } px4_msgs__msg__OpticalFlow * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // sensor_id PyObject * field = PyObject_GetAttrString(_pymsg, "sensor_id"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->sensor_id = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // pixel_flow_x_integral PyObject * field = PyObject_GetAttrString(_pymsg, "pixel_flow_x_integral"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->pixel_flow_x_integral = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // pixel_flow_y_integral PyObject * field = PyObject_GetAttrString(_pymsg, "pixel_flow_y_integral"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->pixel_flow_y_integral = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // gyro_x_rate_integral PyObject * field = PyObject_GetAttrString(_pymsg, "gyro_x_rate_integral"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->gyro_x_rate_integral = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // gyro_y_rate_integral PyObject * field = PyObject_GetAttrString(_pymsg, "gyro_y_rate_integral"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->gyro_y_rate_integral = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // gyro_z_rate_integral PyObject * field = PyObject_GetAttrString(_pymsg, "gyro_z_rate_integral"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->gyro_z_rate_integral = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // ground_distance_m PyObject * field = PyObject_GetAttrString(_pymsg, "ground_distance_m"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->ground_distance_m = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // integration_timespan PyObject * field = PyObject_GetAttrString(_pymsg, "integration_timespan"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->integration_timespan = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // time_since_last_sonar_update PyObject * field = PyObject_GetAttrString(_pymsg, "time_since_last_sonar_update"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->time_since_last_sonar_update = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // frame_count_since_last_readout PyObject * field = PyObject_GetAttrString(_pymsg, "frame_count_since_last_readout"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->frame_count_since_last_readout = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // gyro_temperature PyObject * field = PyObject_GetAttrString(_pymsg, "gyro_temperature"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->gyro_temperature = (int16_t)PyLong_AsLong(field); Py_DECREF(field); } { // quality PyObject * field = PyObject_GetAttrString(_pymsg, "quality"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->quality = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // max_flow_rate PyObject * field = PyObject_GetAttrString(_pymsg, "max_flow_rate"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->max_flow_rate = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // min_ground_distance PyObject * field = PyObject_GetAttrString(_pymsg, "min_ground_distance"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->min_ground_distance = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // max_ground_distance PyObject * field = PyObject_GetAttrString(_pymsg, "max_ground_distance"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->max_ground_distance = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // mode PyObject * field = PyObject_GetAttrString(_pymsg, "mode"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->mode = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__optical_flow__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of OpticalFlow */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._optical_flow"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "OpticalFlow"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__OpticalFlow * ros_message = (px4_msgs__msg__OpticalFlow *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // sensor_id PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->sensor_id); { int rc = PyObject_SetAttrString(_pymessage, "sensor_id", field); Py_DECREF(field); if (rc) { return NULL; } } } { // pixel_flow_x_integral PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->pixel_flow_x_integral); { int rc = PyObject_SetAttrString(_pymessage, "pixel_flow_x_integral", field); Py_DECREF(field); if (rc) { return NULL; } } } { // pixel_flow_y_integral PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->pixel_flow_y_integral); { int rc = PyObject_SetAttrString(_pymessage, "pixel_flow_y_integral", field); Py_DECREF(field); if (rc) { return NULL; } } } { // gyro_x_rate_integral PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->gyro_x_rate_integral); { int rc = PyObject_SetAttrString(_pymessage, "gyro_x_rate_integral", field); Py_DECREF(field); if (rc) { return NULL; } } } { // gyro_y_rate_integral PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->gyro_y_rate_integral); { int rc = PyObject_SetAttrString(_pymessage, "gyro_y_rate_integral", field); Py_DECREF(field); if (rc) { return NULL; } } } { // gyro_z_rate_integral PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->gyro_z_rate_integral); { int rc = PyObject_SetAttrString(_pymessage, "gyro_z_rate_integral", field); Py_DECREF(field); if (rc) { return NULL; } } } { // ground_distance_m PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->ground_distance_m); { int rc = PyObject_SetAttrString(_pymessage, "ground_distance_m", field); Py_DECREF(field); if (rc) { return NULL; } } } { // integration_timespan PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->integration_timespan); { int rc = PyObject_SetAttrString(_pymessage, "integration_timespan", field); Py_DECREF(field); if (rc) { return NULL; } } } { // time_since_last_sonar_update PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->time_since_last_sonar_update); { int rc = PyObject_SetAttrString(_pymessage, "time_since_last_sonar_update", field); Py_DECREF(field); if (rc) { return NULL; } } } { // frame_count_since_last_readout PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->frame_count_since_last_readout); { int rc = PyObject_SetAttrString(_pymessage, "frame_count_since_last_readout", field); Py_DECREF(field); if (rc) { return NULL; } } } { // gyro_temperature PyObject * field = NULL; field = PyLong_FromLong(ros_message->gyro_temperature); { int rc = PyObject_SetAttrString(_pymessage, "gyro_temperature", field); Py_DECREF(field); if (rc) { return NULL; } } } { // quality PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->quality); { int rc = PyObject_SetAttrString(_pymessage, "quality", field); Py_DECREF(field); if (rc) { return NULL; } } } { // max_flow_rate PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->max_flow_rate); { int rc = PyObject_SetAttrString(_pymessage, "max_flow_rate", field); Py_DECREF(field); if (rc) { return NULL; } } } { // min_ground_distance PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->min_ground_distance); { int rc = PyObject_SetAttrString(_pymessage, "min_ground_distance", field); Py_DECREF(field); if (rc) { return NULL; } } } { // max_ground_distance PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->max_ground_distance); { int rc = PyObject_SetAttrString(_pymessage, "max_ground_distance", field); Py_DECREF(field); if (rc) { return NULL; } } } { // mode PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->mode); { int rc = PyObject_SetAttrString(_pymessage, "mode", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_trajectory_bezier__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/VehicleTrajectoryBezier.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_TRAJECTORY_BEZIER__STRUCT_HPP_ #define PX4_MSGS__MSG__VEHICLE_TRAJECTORY_BEZIER__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> // Include directives for member types // Member 'control_points' #include "px4_msgs/msg/trajectory_bezier__struct.hpp" #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__VehicleTrajectoryBezier __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__VehicleTrajectoryBezier __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct VehicleTrajectoryBezier_ { using Type = VehicleTrajectoryBezier_<ContainerAllocator>; explicit VehicleTrajectoryBezier_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->control_points.fill(px4_msgs::msg::TrajectoryBezier_<ContainerAllocator>{_init}); this->bezier_order = 0; } } explicit VehicleTrajectoryBezier_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : control_points(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->control_points.fill(px4_msgs::msg::TrajectoryBezier_<ContainerAllocator>{_alloc, _init}); this->bezier_order = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _control_points_type = std::array<px4_msgs::msg::TrajectoryBezier_<ContainerAllocator>, 5>; _control_points_type control_points; using _bezier_order_type = uint8_t; _bezier_order_type bezier_order; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__control_points( const std::array<px4_msgs::msg::TrajectoryBezier_<ContainerAllocator>, 5> & _arg) { this->control_points = _arg; return *this; } Type & set__bezier_order( const uint8_t & _arg) { this->bezier_order = _arg; return *this; } // constant declarations static constexpr uint8_t POINT_0 = 0u; static constexpr uint8_t POINT_1 = 1u; static constexpr uint8_t POINT_2 = 2u; static constexpr uint8_t POINT_3 = 3u; static constexpr uint8_t POINT_4 = 4u; static constexpr uint8_t NUMBER_POINTS = 5u; // pointer types using RawPtr = px4_msgs::msg::VehicleTrajectoryBezier_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::VehicleTrajectoryBezier_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::VehicleTrajectoryBezier_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::VehicleTrajectoryBezier_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleTrajectoryBezier_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleTrajectoryBezier_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleTrajectoryBezier_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleTrajectoryBezier_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::VehicleTrajectoryBezier_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::VehicleTrajectoryBezier_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__VehicleTrajectoryBezier std::shared_ptr<px4_msgs::msg::VehicleTrajectoryBezier_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__VehicleTrajectoryBezier std::shared_ptr<px4_msgs::msg::VehicleTrajectoryBezier_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const VehicleTrajectoryBezier_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->control_points != other.control_points) { return false; } if (this->bezier_order != other.bezier_order) { return false; } return true; } bool operator!=(const VehicleTrajectoryBezier_ & other) const { return !this->operator==(other); } }; // struct VehicleTrajectoryBezier_ // alias to use template instance with default allocator using VehicleTrajectoryBezier = px4_msgs::msg::VehicleTrajectoryBezier_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t VehicleTrajectoryBezier_<ContainerAllocator>::POINT_0; template<typename ContainerAllocator> constexpr uint8_t VehicleTrajectoryBezier_<ContainerAllocator>::POINT_1; template<typename ContainerAllocator> constexpr uint8_t VehicleTrajectoryBezier_<ContainerAllocator>::POINT_2; template<typename ContainerAllocator> constexpr uint8_t VehicleTrajectoryBezier_<ContainerAllocator>::POINT_3; template<typename ContainerAllocator> constexpr uint8_t VehicleTrajectoryBezier_<ContainerAllocator>::POINT_4; template<typename ContainerAllocator> constexpr uint8_t VehicleTrajectoryBezier_<ContainerAllocator>::NUMBER_POINTS; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__VEHICLE_TRAJECTORY_BEZIER__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_estimator_odometry.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/EstimatorOdometry.idl # generated code does not contain a copyright notice # Import statements for member types # Member 'q' # Member 'q_offset' # Member 'pose_covariance' # Member 'velocity_covariance' import numpy # noqa: E402, I100 import rosidl_parser.definition # noqa: E402, I100 class Metaclass_EstimatorOdometry(type): """Metaclass of message 'EstimatorOdometry'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'COVARIANCE_MATRIX_X_VARIANCE': 0, 'COVARIANCE_MATRIX_Y_VARIANCE': 6, 'COVARIANCE_MATRIX_Z_VARIANCE': 11, 'COVARIANCE_MATRIX_ROLL_VARIANCE': 15, 'COVARIANCE_MATRIX_PITCH_VARIANCE': 18, 'COVARIANCE_MATRIX_YAW_VARIANCE': 20, 'COVARIANCE_MATRIX_VX_VARIANCE': 0, 'COVARIANCE_MATRIX_VY_VARIANCE': 6, 'COVARIANCE_MATRIX_VZ_VARIANCE': 11, 'COVARIANCE_MATRIX_ROLLRATE_VARIANCE': 15, 'COVARIANCE_MATRIX_PITCHRATE_VARIANCE': 18, 'COVARIANCE_MATRIX_YAWRATE_VARIANCE': 20, 'LOCAL_FRAME_NED': 0, 'LOCAL_FRAME_FRD': 1, 'LOCAL_FRAME_OTHER': 2, 'BODY_FRAME_FRD': 3, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.EstimatorOdometry') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__estimator_odometry cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__estimator_odometry cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__estimator_odometry cls._TYPE_SUPPORT = module.type_support_msg__msg__estimator_odometry cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__estimator_odometry @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'COVARIANCE_MATRIX_X_VARIANCE': cls.__constants['COVARIANCE_MATRIX_X_VARIANCE'], 'COVARIANCE_MATRIX_Y_VARIANCE': cls.__constants['COVARIANCE_MATRIX_Y_VARIANCE'], 'COVARIANCE_MATRIX_Z_VARIANCE': cls.__constants['COVARIANCE_MATRIX_Z_VARIANCE'], 'COVARIANCE_MATRIX_ROLL_VARIANCE': cls.__constants['COVARIANCE_MATRIX_ROLL_VARIANCE'], 'COVARIANCE_MATRIX_PITCH_VARIANCE': cls.__constants['COVARIANCE_MATRIX_PITCH_VARIANCE'], 'COVARIANCE_MATRIX_YAW_VARIANCE': cls.__constants['COVARIANCE_MATRIX_YAW_VARIANCE'], 'COVARIANCE_MATRIX_VX_VARIANCE': cls.__constants['COVARIANCE_MATRIX_VX_VARIANCE'], 'COVARIANCE_MATRIX_VY_VARIANCE': cls.__constants['COVARIANCE_MATRIX_VY_VARIANCE'], 'COVARIANCE_MATRIX_VZ_VARIANCE': cls.__constants['COVARIANCE_MATRIX_VZ_VARIANCE'], 'COVARIANCE_MATRIX_ROLLRATE_VARIANCE': cls.__constants['COVARIANCE_MATRIX_ROLLRATE_VARIANCE'], 'COVARIANCE_MATRIX_PITCHRATE_VARIANCE': cls.__constants['COVARIANCE_MATRIX_PITCHRATE_VARIANCE'], 'COVARIANCE_MATRIX_YAWRATE_VARIANCE': cls.__constants['COVARIANCE_MATRIX_YAWRATE_VARIANCE'], 'LOCAL_FRAME_NED': cls.__constants['LOCAL_FRAME_NED'], 'LOCAL_FRAME_FRD': cls.__constants['LOCAL_FRAME_FRD'], 'LOCAL_FRAME_OTHER': cls.__constants['LOCAL_FRAME_OTHER'], 'BODY_FRAME_FRD': cls.__constants['BODY_FRAME_FRD'], } @property def COVARIANCE_MATRIX_X_VARIANCE(self): """Message constant 'COVARIANCE_MATRIX_X_VARIANCE'.""" return Metaclass_EstimatorOdometry.__constants['COVARIANCE_MATRIX_X_VARIANCE'] @property def COVARIANCE_MATRIX_Y_VARIANCE(self): """Message constant 'COVARIANCE_MATRIX_Y_VARIANCE'.""" return Metaclass_EstimatorOdometry.__constants['COVARIANCE_MATRIX_Y_VARIANCE'] @property def COVARIANCE_MATRIX_Z_VARIANCE(self): """Message constant 'COVARIANCE_MATRIX_Z_VARIANCE'.""" return Metaclass_EstimatorOdometry.__constants['COVARIANCE_MATRIX_Z_VARIANCE'] @property def COVARIANCE_MATRIX_ROLL_VARIANCE(self): """Message constant 'COVARIANCE_MATRIX_ROLL_VARIANCE'.""" return Metaclass_EstimatorOdometry.__constants['COVARIANCE_MATRIX_ROLL_VARIANCE'] @property def COVARIANCE_MATRIX_PITCH_VARIANCE(self): """Message constant 'COVARIANCE_MATRIX_PITCH_VARIANCE'.""" return Metaclass_EstimatorOdometry.__constants['COVARIANCE_MATRIX_PITCH_VARIANCE'] @property def COVARIANCE_MATRIX_YAW_VARIANCE(self): """Message constant 'COVARIANCE_MATRIX_YAW_VARIANCE'.""" return Metaclass_EstimatorOdometry.__constants['COVARIANCE_MATRIX_YAW_VARIANCE'] @property def COVARIANCE_MATRIX_VX_VARIANCE(self): """Message constant 'COVARIANCE_MATRIX_VX_VARIANCE'.""" return Metaclass_EstimatorOdometry.__constants['COVARIANCE_MATRIX_VX_VARIANCE'] @property def COVARIANCE_MATRIX_VY_VARIANCE(self): """Message constant 'COVARIANCE_MATRIX_VY_VARIANCE'.""" return Metaclass_EstimatorOdometry.__constants['COVARIANCE_MATRIX_VY_VARIANCE'] @property def COVARIANCE_MATRIX_VZ_VARIANCE(self): """Message constant 'COVARIANCE_MATRIX_VZ_VARIANCE'.""" return Metaclass_EstimatorOdometry.__constants['COVARIANCE_MATRIX_VZ_VARIANCE'] @property def COVARIANCE_MATRIX_ROLLRATE_VARIANCE(self): """Message constant 'COVARIANCE_MATRIX_ROLLRATE_VARIANCE'.""" return Metaclass_EstimatorOdometry.__constants['COVARIANCE_MATRIX_ROLLRATE_VARIANCE'] @property def COVARIANCE_MATRIX_PITCHRATE_VARIANCE(self): """Message constant 'COVARIANCE_MATRIX_PITCHRATE_VARIANCE'.""" return Metaclass_EstimatorOdometry.__constants['COVARIANCE_MATRIX_PITCHRATE_VARIANCE'] @property def COVARIANCE_MATRIX_YAWRATE_VARIANCE(self): """Message constant 'COVARIANCE_MATRIX_YAWRATE_VARIANCE'.""" return Metaclass_EstimatorOdometry.__constants['COVARIANCE_MATRIX_YAWRATE_VARIANCE'] @property def LOCAL_FRAME_NED(self): """Message constant 'LOCAL_FRAME_NED'.""" return Metaclass_EstimatorOdometry.__constants['LOCAL_FRAME_NED'] @property def LOCAL_FRAME_FRD(self): """Message constant 'LOCAL_FRAME_FRD'.""" return Metaclass_EstimatorOdometry.__constants['LOCAL_FRAME_FRD'] @property def LOCAL_FRAME_OTHER(self): """Message constant 'LOCAL_FRAME_OTHER'.""" return Metaclass_EstimatorOdometry.__constants['LOCAL_FRAME_OTHER'] @property def BODY_FRAME_FRD(self): """Message constant 'BODY_FRAME_FRD'.""" return Metaclass_EstimatorOdometry.__constants['BODY_FRAME_FRD'] class EstimatorOdometry(metaclass=Metaclass_EstimatorOdometry): """ Message class 'EstimatorOdometry'. Constants: COVARIANCE_MATRIX_X_VARIANCE COVARIANCE_MATRIX_Y_VARIANCE COVARIANCE_MATRIX_Z_VARIANCE COVARIANCE_MATRIX_ROLL_VARIANCE COVARIANCE_MATRIX_PITCH_VARIANCE COVARIANCE_MATRIX_YAW_VARIANCE COVARIANCE_MATRIX_VX_VARIANCE COVARIANCE_MATRIX_VY_VARIANCE COVARIANCE_MATRIX_VZ_VARIANCE COVARIANCE_MATRIX_ROLLRATE_VARIANCE COVARIANCE_MATRIX_PITCHRATE_VARIANCE COVARIANCE_MATRIX_YAWRATE_VARIANCE LOCAL_FRAME_NED LOCAL_FRAME_FRD LOCAL_FRAME_OTHER BODY_FRAME_FRD """ __slots__ = [ '_timestamp', '_timestamp_sample', '_local_frame', '_x', '_y', '_z', '_q', '_q_offset', '_pose_covariance', '_velocity_frame', '_vx', '_vy', '_vz', '_rollspeed', '_pitchspeed', '_yawspeed', '_velocity_covariance', ] _fields_and_field_types = { 'timestamp': 'uint64', 'timestamp_sample': 'uint64', 'local_frame': 'uint8', 'x': 'float', 'y': 'float', 'z': 'float', 'q': 'float[4]', 'q_offset': 'float[4]', 'pose_covariance': 'float[21]', 'velocity_frame': 'uint8', 'vx': 'float', 'vy': 'float', 'vz': 'float', 'rollspeed': 'float', 'pitchspeed': 'float', 'yawspeed': 'float', 'velocity_covariance': 'float[21]', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 4), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 4), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 21), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 21), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.timestamp_sample = kwargs.get('timestamp_sample', int()) self.local_frame = kwargs.get('local_frame', int()) self.x = kwargs.get('x', float()) self.y = kwargs.get('y', float()) self.z = kwargs.get('z', float()) if 'q' not in kwargs: self.q = numpy.zeros(4, dtype=numpy.float32) else: self.q = numpy.array(kwargs.get('q'), dtype=numpy.float32) assert self.q.shape == (4, ) if 'q_offset' not in kwargs: self.q_offset = numpy.zeros(4, dtype=numpy.float32) else: self.q_offset = numpy.array(kwargs.get('q_offset'), dtype=numpy.float32) assert self.q_offset.shape == (4, ) if 'pose_covariance' not in kwargs: self.pose_covariance = numpy.zeros(21, dtype=numpy.float32) else: self.pose_covariance = numpy.array(kwargs.get('pose_covariance'), dtype=numpy.float32) assert self.pose_covariance.shape == (21, ) self.velocity_frame = kwargs.get('velocity_frame', int()) self.vx = kwargs.get('vx', float()) self.vy = kwargs.get('vy', float()) self.vz = kwargs.get('vz', float()) self.rollspeed = kwargs.get('rollspeed', float()) self.pitchspeed = kwargs.get('pitchspeed', float()) self.yawspeed = kwargs.get('yawspeed', float()) if 'velocity_covariance' not in kwargs: self.velocity_covariance = numpy.zeros(21, dtype=numpy.float32) else: self.velocity_covariance = numpy.array(kwargs.get('velocity_covariance'), dtype=numpy.float32) assert self.velocity_covariance.shape == (21, ) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.timestamp_sample != other.timestamp_sample: return False if self.local_frame != other.local_frame: return False if self.x != other.x: return False if self.y != other.y: return False if self.z != other.z: return False if all(self.q != other.q): return False if all(self.q_offset != other.q_offset): return False if all(self.pose_covariance != other.pose_covariance): return False if self.velocity_frame != other.velocity_frame: return False if self.vx != other.vx: return False if self.vy != other.vy: return False if self.vz != other.vz: return False if self.rollspeed != other.rollspeed: return False if self.pitchspeed != other.pitchspeed: return False if self.yawspeed != other.yawspeed: return False if all(self.velocity_covariance != other.velocity_covariance): return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def timestamp_sample(self): """Message field 'timestamp_sample'.""" return self._timestamp_sample @timestamp_sample.setter def timestamp_sample(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp_sample' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp_sample' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp_sample = value @property def local_frame(self): """Message field 'local_frame'.""" return self._local_frame @local_frame.setter def local_frame(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'local_frame' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'local_frame' field must be an unsigned integer in [0, 255]" self._local_frame = value @property def x(self): """Message field 'x'.""" return self._x @x.setter def x(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'x' field must be of type 'float'" self._x = value @property def y(self): """Message field 'y'.""" return self._y @y.setter def y(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'y' field must be of type 'float'" self._y = value @property def z(self): """Message field 'z'.""" return self._z @z.setter def z(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'z' field must be of type 'float'" self._z = value @property def q(self): """Message field 'q'.""" return self._q @q.setter def q(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'q' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 4, \ "The 'q' numpy.ndarray() must have a size of 4" self._q = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 4 and all(isinstance(v, float) for v in value) and True), \ "The 'q' field must be a set or sequence with length 4 and each value of type 'float'" self._q = numpy.array(value, dtype=numpy.float32) @property def q_offset(self): """Message field 'q_offset'.""" return self._q_offset @q_offset.setter def q_offset(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'q_offset' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 4, \ "The 'q_offset' numpy.ndarray() must have a size of 4" self._q_offset = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 4 and all(isinstance(v, float) for v in value) and True), \ "The 'q_offset' field must be a set or sequence with length 4 and each value of type 'float'" self._q_offset = numpy.array(value, dtype=numpy.float32) @property def pose_covariance(self): """Message field 'pose_covariance'.""" return self._pose_covariance @pose_covariance.setter def pose_covariance(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'pose_covariance' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 21, \ "The 'pose_covariance' numpy.ndarray() must have a size of 21" self._pose_covariance = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 21 and all(isinstance(v, float) for v in value) and True), \ "The 'pose_covariance' field must be a set or sequence with length 21 and each value of type 'float'" self._pose_covariance = numpy.array(value, dtype=numpy.float32) @property def velocity_frame(self): """Message field 'velocity_frame'.""" return self._velocity_frame @velocity_frame.setter def velocity_frame(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'velocity_frame' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'velocity_frame' field must be an unsigned integer in [0, 255]" self._velocity_frame = value @property def vx(self): """Message field 'vx'.""" return self._vx @vx.setter def vx(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'vx' field must be of type 'float'" self._vx = value @property def vy(self): """Message field 'vy'.""" return self._vy @vy.setter def vy(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'vy' field must be of type 'float'" self._vy = value @property def vz(self): """Message field 'vz'.""" return self._vz @vz.setter def vz(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'vz' field must be of type 'float'" self._vz = value @property def rollspeed(self): """Message field 'rollspeed'.""" return self._rollspeed @rollspeed.setter def rollspeed(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'rollspeed' field must be of type 'float'" self._rollspeed = value @property def pitchspeed(self): """Message field 'pitchspeed'.""" return self._pitchspeed @pitchspeed.setter def pitchspeed(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'pitchspeed' field must be of type 'float'" self._pitchspeed = value @property def yawspeed(self): """Message field 'yawspeed'.""" return self._yawspeed @yawspeed.setter def yawspeed(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'yawspeed' field must be of type 'float'" self._yawspeed = value @property def velocity_covariance(self): """Message field 'velocity_covariance'.""" return self._velocity_covariance @velocity_covariance.setter def velocity_covariance(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'velocity_covariance' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 21, \ "The 'velocity_covariance' numpy.ndarray() must have a size of 21" self._velocity_covariance = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 21 and all(isinstance(v, float) for v in value) and True), \ "The 'velocity_covariance' field must be a set or sequence with length 21 and each value of type 'float'" self._velocity_covariance = numpy.array(value, dtype=numpy.float32) <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_local_position_setpoint__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleLocalPositionSetpoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_SETPOINT__STRUCT_H_ #define PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_SETPOINT__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/VehicleLocalPositionSetpoint in the package px4_msgs. typedef struct px4_msgs__msg__VehicleLocalPositionSetpoint { uint64_t timestamp; float x; float y; float z; float yaw; float yawspeed; float vx; float vy; float vz; float acceleration[3]; float jerk[3]; float thrust[3]; } px4_msgs__msg__VehicleLocalPositionSetpoint; // Struct for a sequence of px4_msgs__msg__VehicleLocalPositionSetpoint. typedef struct px4_msgs__msg__VehicleLocalPositionSetpoint__Sequence { px4_msgs__msg__VehicleLocalPositionSetpoint * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__VehicleLocalPositionSetpoint__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_SETPOINT__STRUCT_H_ <file_sep>/install/multi_rtd_interfaces/include/multi_rtd_interfaces/msg/robot_trajectory__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from multi_rtd_interfaces:msg/RobotTrajectory.idl // generated code does not contain a copyright notice #ifndef MULTI_RTD_INTERFACES__MSG__ROBOT_TRAJECTORY__STRUCT_H_ #define MULTI_RTD_INTERFACES__MSG__ROBOT_TRAJECTORY__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Include directives for member types // Member 'robot_name' #include "rosidl_generator_c/string.h" // Member 'trajectory' #include "trajectory_msgs/msg/joint_trajectory__struct.h" // Struct defined in msg/RobotTrajectory in the package multi_rtd_interfaces. typedef struct multi_rtd_interfaces__msg__RobotTrajectory { rosidl_generator_c__String robot_name; trajectory_msgs__msg__JointTrajectory trajectory; } multi_rtd_interfaces__msg__RobotTrajectory; // Struct for a sequence of multi_rtd_interfaces__msg__RobotTrajectory. typedef struct multi_rtd_interfaces__msg__RobotTrajectory__Sequence { multi_rtd_interfaces__msg__RobotTrajectory * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } multi_rtd_interfaces__msg__RobotTrajectory__Sequence; #ifdef __cplusplus } #endif #endif // MULTI_RTD_INTERFACES__MSG__ROBOT_TRAJECTORY__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/optical_flow__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/OpticalFlow.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__OPTICAL_FLOW__STRUCT_H_ #define PX4_MSGS__MSG__OPTICAL_FLOW__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'MODE_UNKNOWN'. enum { px4_msgs__msg__OpticalFlow__MODE_UNKNOWN = 0 }; /// Constant 'MODE_BRIGHT'. enum { px4_msgs__msg__OpticalFlow__MODE_BRIGHT = 1 }; /// Constant 'MODE_LOWLIGHT'. enum { px4_msgs__msg__OpticalFlow__MODE_LOWLIGHT = 2 }; /// Constant 'MODE_SUPER_LOWLIGHT'. enum { px4_msgs__msg__OpticalFlow__MODE_SUPER_LOWLIGHT = 3 }; // Struct defined in msg/OpticalFlow in the package px4_msgs. typedef struct px4_msgs__msg__OpticalFlow { uint64_t timestamp; uint8_t sensor_id; float pixel_flow_x_integral; float pixel_flow_y_integral; float gyro_x_rate_integral; float gyro_y_rate_integral; float gyro_z_rate_integral; float ground_distance_m; uint32_t integration_timespan; uint32_t time_since_last_sonar_update; uint16_t frame_count_since_last_readout; int16_t gyro_temperature; uint8_t quality; float max_flow_rate; float min_ground_distance; float max_ground_distance; uint8_t mode; } px4_msgs__msg__OpticalFlow; // Struct for a sequence of px4_msgs__msg__OpticalFlow. typedef struct px4_msgs__msg__OpticalFlow__Sequence { px4_msgs__msg__OpticalFlow * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__OpticalFlow__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__OPTICAL_FLOW__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_preflight_mag.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/SensorPreflightMag.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_PREFLIGHT_MAG_H_ #define PX4_MSGS__MSG__SENSOR_PREFLIGHT_MAG_H_ #include "px4_msgs/msg/sensor_preflight_mag__struct.h" #include "px4_msgs/msg/sensor_preflight_mag__functions.h" #include "px4_msgs/msg/sensor_preflight_mag__type_support.h" #endif // PX4_MSGS__MSG__SENSOR_PREFLIGHT_MAG_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/estimator_states.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_STATES_HPP_ #define PX4_MSGS__MSG__ESTIMATOR_STATES_HPP_ #include "px4_msgs/msg/estimator_states__struct.hpp" #include "px4_msgs/msg/estimator_states__traits.hpp" #endif // PX4_MSGS__MSG__ESTIMATOR_STATES_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_command__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleCommand.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_command__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__VehicleCommand__init(px4_msgs__msg__VehicleCommand * msg) { if (!msg) { return false; } // timestamp // param1 // param2 // param3 // param4 // param5 // param6 // param7 // command // target_system // target_component // source_system // source_component // confirmation // from_external return true; } void px4_msgs__msg__VehicleCommand__fini(px4_msgs__msg__VehicleCommand * msg) { if (!msg) { return; } // timestamp // param1 // param2 // param3 // param4 // param5 // param6 // param7 // command // target_system // target_component // source_system // source_component // confirmation // from_external } px4_msgs__msg__VehicleCommand * px4_msgs__msg__VehicleCommand__create() { px4_msgs__msg__VehicleCommand * msg = (px4_msgs__msg__VehicleCommand *)malloc(sizeof(px4_msgs__msg__VehicleCommand)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleCommand)); bool success = px4_msgs__msg__VehicleCommand__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleCommand__destroy(px4_msgs__msg__VehicleCommand * msg) { if (msg) { px4_msgs__msg__VehicleCommand__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleCommand__Sequence__init(px4_msgs__msg__VehicleCommand__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleCommand * data = NULL; if (size) { data = (px4_msgs__msg__VehicleCommand *)calloc(size, sizeof(px4_msgs__msg__VehicleCommand)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleCommand__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleCommand__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleCommand__Sequence__fini(px4_msgs__msg__VehicleCommand__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleCommand__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleCommand__Sequence * px4_msgs__msg__VehicleCommand__Sequence__create(size_t size) { px4_msgs__msg__VehicleCommand__Sequence * array = (px4_msgs__msg__VehicleCommand__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleCommand__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleCommand__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleCommand__Sequence__destroy(px4_msgs__msg__VehicleCommand__Sequence * array) { if (array) { px4_msgs__msg__VehicleCommand__Sequence__fini(array); } free(array); } <file_sep>/install/multi_rtd/lib/python3.6/site-packages/multi_rtd/LPM.py # Linear Planning Model Class import numpy as np from scipy.io import loadmat class LPM: # Class variables t_peak = 0 t_total = 0 t_sample = 0 time = [] p_mat = [] v_mat = [] a_mat = [] # Construct LPM object from .mat file def __init__(self, mat_file): # Load the .mat file lpm = loadmat(mat_file) lpm = lpm['LPM'] # Extract variables, convert arrays to numpy arrays self.t_peak = lpm['t_peak'][0,0][0][0] self.t_total = lpm['t_total'][0,0][0][0] self.t_sample = lpm['t_sample'][0,0][0][0] self.time = np.array(lpm['time'][0,0])[0] self.p_mat = np.array(lpm['position'][0,0]) self.v_mat = np.array(lpm['velocity'][0,0]) self.a_mat = np.array(lpm['acceleration'][0,0]) # Compute nominal trajectory from a given trajectory parameter k # k = (v_0, a_0, v_peak), n x 3 where n is workspace dimension def compute_trajectory(self, k): p = np.dot(k, self.p_mat) v = np.dot(k, self.v_mat) a = np.dot(k, self.a_mat) return p,v,a # Given initial velocity and accleration, solve for the peak velocity # which reaches the desired goal position # - note that this solution does not account for max velocity constraints # - v_0, a_0, and p_goal are all passed in as row vectors def solve_trajectory(self, v_0, a_0, p_goal): # change to column vectors v_0 = np.reshape(v_0, (3,1)) a_0 = np.reshape(a_0, (3,1)) # position component due to v_0 and a_0 p_from_ic = np.dot(np.hstack((v_0, a_0)), self.p_mat[0:2,-1]) # solve for v_peak v_peak = (p_goal - p_from_ic) / self.p_mat[2,-1] return v_peak<file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/navigator_mission_item__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/NavigatorMissionItem.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/navigator_mission_item__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/navigator_mission_item__struct.h" #include "px4_msgs/msg/navigator_mission_item__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _NavigatorMissionItem__ros_msg_type = px4_msgs__msg__NavigatorMissionItem; static bool _NavigatorMissionItem__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _NavigatorMissionItem__ros_msg_type * ros_message = static_cast<const _NavigatorMissionItem__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: instance_count { cdr << ros_message->instance_count; } // Field name: sequence_current { cdr << ros_message->sequence_current; } // Field name: nav_cmd { cdr << ros_message->nav_cmd; } // Field name: latitude { cdr << ros_message->latitude; } // Field name: longitude { cdr << ros_message->longitude; } // Field name: time_inside { cdr << ros_message->time_inside; } // Field name: acceptance_radius { cdr << ros_message->acceptance_radius; } // Field name: loiter_radius { cdr << ros_message->loiter_radius; } // Field name: yaw { cdr << ros_message->yaw; } // Field name: altitude { cdr << ros_message->altitude; } // Field name: frame { cdr << ros_message->frame; } // Field name: origin { cdr << ros_message->origin; } // Field name: loiter_exit_xtrack { cdr << (ros_message->loiter_exit_xtrack ? true : false); } // Field name: force_heading { cdr << (ros_message->force_heading ? true : false); } // Field name: altitude_is_relative { cdr << (ros_message->altitude_is_relative ? true : false); } // Field name: autocontinue { cdr << (ros_message->autocontinue ? true : false); } // Field name: vtol_back_transition { cdr << (ros_message->vtol_back_transition ? true : false); } return true; } static bool _NavigatorMissionItem__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _NavigatorMissionItem__ros_msg_type * ros_message = static_cast<_NavigatorMissionItem__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: instance_count { cdr >> ros_message->instance_count; } // Field name: sequence_current { cdr >> ros_message->sequence_current; } // Field name: nav_cmd { cdr >> ros_message->nav_cmd; } // Field name: latitude { cdr >> ros_message->latitude; } // Field name: longitude { cdr >> ros_message->longitude; } // Field name: time_inside { cdr >> ros_message->time_inside; } // Field name: acceptance_radius { cdr >> ros_message->acceptance_radius; } // Field name: loiter_radius { cdr >> ros_message->loiter_radius; } // Field name: yaw { cdr >> ros_message->yaw; } // Field name: altitude { cdr >> ros_message->altitude; } // Field name: frame { cdr >> ros_message->frame; } // Field name: origin { cdr >> ros_message->origin; } // Field name: loiter_exit_xtrack { uint8_t tmp; cdr >> tmp; ros_message->loiter_exit_xtrack = tmp ? true : false; } // Field name: force_heading { uint8_t tmp; cdr >> tmp; ros_message->force_heading = tmp ? true : false; } // Field name: altitude_is_relative { uint8_t tmp; cdr >> tmp; ros_message->altitude_is_relative = tmp ? true : false; } // Field name: autocontinue { uint8_t tmp; cdr >> tmp; ros_message->autocontinue = tmp ? true : false; } // Field name: vtol_back_transition { uint8_t tmp; cdr >> tmp; ros_message->vtol_back_transition = tmp ? true : false; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__NavigatorMissionItem( const void * untyped_ros_message, size_t current_alignment) { const _NavigatorMissionItem__ros_msg_type * ros_message = static_cast<const _NavigatorMissionItem__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name instance_count { size_t item_size = sizeof(ros_message->instance_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name sequence_current { size_t item_size = sizeof(ros_message->sequence_current); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name nav_cmd { size_t item_size = sizeof(ros_message->nav_cmd); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name latitude { size_t item_size = sizeof(ros_message->latitude); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name longitude { size_t item_size = sizeof(ros_message->longitude); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name time_inside { size_t item_size = sizeof(ros_message->time_inside); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name acceptance_radius { size_t item_size = sizeof(ros_message->acceptance_radius); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name loiter_radius { size_t item_size = sizeof(ros_message->loiter_radius); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name yaw { size_t item_size = sizeof(ros_message->yaw); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name altitude { size_t item_size = sizeof(ros_message->altitude); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name frame { size_t item_size = sizeof(ros_message->frame); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name origin { size_t item_size = sizeof(ros_message->origin); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name loiter_exit_xtrack { size_t item_size = sizeof(ros_message->loiter_exit_xtrack); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name force_heading { size_t item_size = sizeof(ros_message->force_heading); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name altitude_is_relative { size_t item_size = sizeof(ros_message->altitude_is_relative); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name autocontinue { size_t item_size = sizeof(ros_message->autocontinue); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vtol_back_transition { size_t item_size = sizeof(ros_message->vtol_back_transition); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _NavigatorMissionItem__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__NavigatorMissionItem( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__NavigatorMissionItem( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: instance_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: sequence_current { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: nav_cmd { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: latitude { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: longitude { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: time_inside { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: acceptance_radius { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: loiter_radius { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: yaw { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: altitude { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: frame { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: origin { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: loiter_exit_xtrack { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: force_heading { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: altitude_is_relative { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: autocontinue { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: vtol_back_transition { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _NavigatorMissionItem__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__NavigatorMissionItem( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_NavigatorMissionItem = { "px4_msgs::msg", "NavigatorMissionItem", _NavigatorMissionItem__cdr_serialize, _NavigatorMissionItem__cdr_deserialize, _NavigatorMissionItem__get_serialized_size, _NavigatorMissionItem__max_serialized_size }; static rosidl_message_type_support_t _NavigatorMissionItem__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_NavigatorMissionItem, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, NavigatorMissionItem)() { return &_NavigatorMissionItem__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/collision_constraints__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/CollisionConstraints.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__COLLISION_CONSTRAINTS__STRUCT_HPP_ #define PX4_MSGS__MSG__COLLISION_CONSTRAINTS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__CollisionConstraints __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__CollisionConstraints __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct CollisionConstraints_ { using Type = CollisionConstraints_<ContainerAllocator>; explicit CollisionConstraints_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; std::fill<typename std::array<float, 2>::iterator, float>(this->original_setpoint.begin(), this->original_setpoint.end(), 0.0f); std::fill<typename std::array<float, 2>::iterator, float>(this->adapted_setpoint.begin(), this->adapted_setpoint.end(), 0.0f); } } explicit CollisionConstraints_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : original_setpoint(_alloc), adapted_setpoint(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; std::fill<typename std::array<float, 2>::iterator, float>(this->original_setpoint.begin(), this->original_setpoint.end(), 0.0f); std::fill<typename std::array<float, 2>::iterator, float>(this->adapted_setpoint.begin(), this->adapted_setpoint.end(), 0.0f); } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _original_setpoint_type = std::array<float, 2>; _original_setpoint_type original_setpoint; using _adapted_setpoint_type = std::array<float, 2>; _adapted_setpoint_type adapted_setpoint; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__original_setpoint( const std::array<float, 2> & _arg) { this->original_setpoint = _arg; return *this; } Type & set__adapted_setpoint( const std::array<float, 2> & _arg) { this->adapted_setpoint = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::CollisionConstraints_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::CollisionConstraints_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::CollisionConstraints_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::CollisionConstraints_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::CollisionConstraints_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::CollisionConstraints_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::CollisionConstraints_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::CollisionConstraints_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::CollisionConstraints_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::CollisionConstraints_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__CollisionConstraints std::shared_ptr<px4_msgs::msg::CollisionConstraints_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__CollisionConstraints std::shared_ptr<px4_msgs::msg::CollisionConstraints_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const CollisionConstraints_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->original_setpoint != other.original_setpoint) { return false; } if (this->adapted_setpoint != other.adapted_setpoint) { return false; } return true; } bool operator!=(const CollisionConstraints_ & other) const { return !this->operator==(other); } }; // struct CollisionConstraints_ // alias to use template instance with default allocator using CollisionConstraints = px4_msgs::msg::CollisionConstraints_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__COLLISION_CONSTRAINTS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/test_motor__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/TestMotor.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TEST_MOTOR__STRUCT_H_ #define PX4_MSGS__MSG__TEST_MOTOR__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'NUM_MOTOR_OUTPUTS'. enum { px4_msgs__msg__TestMotor__NUM_MOTOR_OUTPUTS = 8 }; /// Constant 'ACTION_STOP'. enum { px4_msgs__msg__TestMotor__ACTION_STOP = 0 }; /// Constant 'ACTION_RUN'. enum { px4_msgs__msg__TestMotor__ACTION_RUN = 1 }; /// Constant 'ORB_QUEUE_LENGTH'. enum { px4_msgs__msg__TestMotor__ORB_QUEUE_LENGTH = 4 }; // Struct defined in msg/TestMotor in the package px4_msgs. typedef struct px4_msgs__msg__TestMotor { uint64_t timestamp; uint8_t action; uint32_t motor_number; float value; uint32_t timeout_ms; uint8_t driver_instance; } px4_msgs__msg__TestMotor; // Struct for a sequence of px4_msgs__msg__TestMotor. typedef struct px4_msgs__msg__TestMotor__Sequence { px4_msgs__msg__TestMotor * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__TestMotor__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__TEST_MOTOR__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_mocap_odometry__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/VehicleMocapOdometry.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/vehicle_mocap_odometry__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/vehicle_mocap_odometry__functions.h" #include "px4_msgs/msg/vehicle_mocap_odometry__struct.h" #ifdef __cplusplus extern "C" { #endif void VehicleMocapOdometry__rosidl_typesupport_introspection_c__VehicleMocapOdometry_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__VehicleMocapOdometry__init(message_memory); } void VehicleMocapOdometry__rosidl_typesupport_introspection_c__VehicleMocapOdometry_fini_function(void * message_memory) { px4_msgs__msg__VehicleMocapOdometry__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember VehicleMocapOdometry__rosidl_typesupport_introspection_c__VehicleMocapOdometry_message_member_array[17] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleMocapOdometry, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleMocapOdometry, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "local_frame", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleMocapOdometry, local_frame), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "x", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleMocapOdometry, x), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "y", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleMocapOdometry, y), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "z", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleMocapOdometry, z), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "q", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleMocapOdometry, q), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "q_offset", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleMocapOdometry, q_offset), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "pose_covariance", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 21, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleMocapOdometry, pose_covariance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "velocity_frame", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleMocapOdometry, velocity_frame), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vx", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleMocapOdometry, vx), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vy", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleMocapOdometry, vy), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vz", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleMocapOdometry, vz), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rollspeed", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleMocapOdometry, rollspeed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "pitchspeed", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleMocapOdometry, pitchspeed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yawspeed", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleMocapOdometry, yawspeed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "velocity_covariance", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 21, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleMocapOdometry, velocity_covariance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers VehicleMocapOdometry__rosidl_typesupport_introspection_c__VehicleMocapOdometry_message_members = { "px4_msgs__msg", // message namespace "VehicleMocapOdometry", // message name 17, // number of fields sizeof(px4_msgs__msg__VehicleMocapOdometry), VehicleMocapOdometry__rosidl_typesupport_introspection_c__VehicleMocapOdometry_message_member_array, // message members VehicleMocapOdometry__rosidl_typesupport_introspection_c__VehicleMocapOdometry_init_function, // function to initialize message memory (memory has to be allocated) VehicleMocapOdometry__rosidl_typesupport_introspection_c__VehicleMocapOdometry_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t VehicleMocapOdometry__rosidl_typesupport_introspection_c__VehicleMocapOdometry_message_type_support_handle = { 0, &VehicleMocapOdometry__rosidl_typesupport_introspection_c__VehicleMocapOdometry_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, VehicleMocapOdometry)() { if (!VehicleMocapOdometry__rosidl_typesupport_introspection_c__VehicleMocapOdometry_message_type_support_handle.typesupport_identifier) { VehicleMocapOdometry__rosidl_typesupport_introspection_c__VehicleMocapOdometry_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &VehicleMocapOdometry__rosidl_typesupport_introspection_c__VehicleMocapOdometry_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/mc_virtual_attitude_setpoint.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/McVirtualAttitudeSetpoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__MC_VIRTUAL_ATTITUDE_SETPOINT_H_ #define PX4_MSGS__MSG__MC_VIRTUAL_ATTITUDE_SETPOINT_H_ #include "px4_msgs/msg/mc_virtual_attitude_setpoint__struct.h" #include "px4_msgs/msg/mc_virtual_attitude_setpoint__functions.h" #include "px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.h" #endif // PX4_MSGS__MSG__MC_VIRTUAL_ATTITUDE_SETPOINT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/battery_status__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/BatteryStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__BATTERY_STATUS__STRUCT_HPP_ #define PX4_MSGS__MSG__BATTERY_STATUS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__BatteryStatus __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__BatteryStatus __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct BatteryStatus_ { using Type = BatteryStatus_<ContainerAllocator>; explicit BatteryStatus_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->voltage_v = 0.0f; this->voltage_filtered_v = 0.0f; this->current_a = 0.0f; this->current_filtered_a = 0.0f; this->average_current_a = 0.0f; this->discharged_mah = 0.0f; this->remaining = 0.0f; this->scale = 0.0f; this->temperature = 0.0f; this->cell_count = 0l; this->connected = false; this->source = 0; this->priority = 0; this->capacity = 0; this->cycle_count = 0; this->run_time_to_empty = 0; this->average_time_to_empty = 0; this->serial_number = 0; this->manufacture_date = 0; this->state_of_health = 0; this->max_error = 0; this->id = 0; this->interface_error = 0; std::fill<typename std::array<float, 14>::iterator, float>(this->voltage_cell_v.begin(), this->voltage_cell_v.end(), 0.0f); this->max_cell_voltage_delta = 0.0f; this->is_powering_off = false; this->warning = 0; this->average_power = 0.0f; this->available_energy = 0.0f; this->remaining_capacity = 0.0f; this->design_capacity = 0.0f; this->average_time_to_full = 0; this->over_discharge_count = 0; this->nominal_voltage = 0.0f; } } explicit BatteryStatus_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : voltage_cell_v(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->voltage_v = 0.0f; this->voltage_filtered_v = 0.0f; this->current_a = 0.0f; this->current_filtered_a = 0.0f; this->average_current_a = 0.0f; this->discharged_mah = 0.0f; this->remaining = 0.0f; this->scale = 0.0f; this->temperature = 0.0f; this->cell_count = 0l; this->connected = false; this->source = 0; this->priority = 0; this->capacity = 0; this->cycle_count = 0; this->run_time_to_empty = 0; this->average_time_to_empty = 0; this->serial_number = 0; this->manufacture_date = 0; this->state_of_health = 0; this->max_error = 0; this->id = 0; this->interface_error = 0; std::fill<typename std::array<float, 14>::iterator, float>(this->voltage_cell_v.begin(), this->voltage_cell_v.end(), 0.0f); this->max_cell_voltage_delta = 0.0f; this->is_powering_off = false; this->warning = 0; this->average_power = 0.0f; this->available_energy = 0.0f; this->remaining_capacity = 0.0f; this->design_capacity = 0.0f; this->average_time_to_full = 0; this->over_discharge_count = 0; this->nominal_voltage = 0.0f; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _voltage_v_type = float; _voltage_v_type voltage_v; using _voltage_filtered_v_type = float; _voltage_filtered_v_type voltage_filtered_v; using _current_a_type = float; _current_a_type current_a; using _current_filtered_a_type = float; _current_filtered_a_type current_filtered_a; using _average_current_a_type = float; _average_current_a_type average_current_a; using _discharged_mah_type = float; _discharged_mah_type discharged_mah; using _remaining_type = float; _remaining_type remaining; using _scale_type = float; _scale_type scale; using _temperature_type = float; _temperature_type temperature; using _cell_count_type = int32_t; _cell_count_type cell_count; using _connected_type = bool; _connected_type connected; using _source_type = uint8_t; _source_type source; using _priority_type = uint8_t; _priority_type priority; using _capacity_type = uint16_t; _capacity_type capacity; using _cycle_count_type = uint16_t; _cycle_count_type cycle_count; using _run_time_to_empty_type = uint16_t; _run_time_to_empty_type run_time_to_empty; using _average_time_to_empty_type = uint16_t; _average_time_to_empty_type average_time_to_empty; using _serial_number_type = uint16_t; _serial_number_type serial_number; using _manufacture_date_type = uint16_t; _manufacture_date_type manufacture_date; using _state_of_health_type = uint16_t; _state_of_health_type state_of_health; using _max_error_type = uint16_t; _max_error_type max_error; using _id_type = uint8_t; _id_type id; using _interface_error_type = uint16_t; _interface_error_type interface_error; using _voltage_cell_v_type = std::array<float, 14>; _voltage_cell_v_type voltage_cell_v; using _max_cell_voltage_delta_type = float; _max_cell_voltage_delta_type max_cell_voltage_delta; using _is_powering_off_type = bool; _is_powering_off_type is_powering_off; using _warning_type = uint8_t; _warning_type warning; using _average_power_type = float; _average_power_type average_power; using _available_energy_type = float; _available_energy_type available_energy; using _remaining_capacity_type = float; _remaining_capacity_type remaining_capacity; using _design_capacity_type = float; _design_capacity_type design_capacity; using _average_time_to_full_type = uint16_t; _average_time_to_full_type average_time_to_full; using _over_discharge_count_type = uint16_t; _over_discharge_count_type over_discharge_count; using _nominal_voltage_type = float; _nominal_voltage_type nominal_voltage; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__voltage_v( const float & _arg) { this->voltage_v = _arg; return *this; } Type & set__voltage_filtered_v( const float & _arg) { this->voltage_filtered_v = _arg; return *this; } Type & set__current_a( const float & _arg) { this->current_a = _arg; return *this; } Type & set__current_filtered_a( const float & _arg) { this->current_filtered_a = _arg; return *this; } Type & set__average_current_a( const float & _arg) { this->average_current_a = _arg; return *this; } Type & set__discharged_mah( const float & _arg) { this->discharged_mah = _arg; return *this; } Type & set__remaining( const float & _arg) { this->remaining = _arg; return *this; } Type & set__scale( const float & _arg) { this->scale = _arg; return *this; } Type & set__temperature( const float & _arg) { this->temperature = _arg; return *this; } Type & set__cell_count( const int32_t & _arg) { this->cell_count = _arg; return *this; } Type & set__connected( const bool & _arg) { this->connected = _arg; return *this; } Type & set__source( const uint8_t & _arg) { this->source = _arg; return *this; } Type & set__priority( const uint8_t & _arg) { this->priority = _arg; return *this; } Type & set__capacity( const uint16_t & _arg) { this->capacity = _arg; return *this; } Type & set__cycle_count( const uint16_t & _arg) { this->cycle_count = _arg; return *this; } Type & set__run_time_to_empty( const uint16_t & _arg) { this->run_time_to_empty = _arg; return *this; } Type & set__average_time_to_empty( const uint16_t & _arg) { this->average_time_to_empty = _arg; return *this; } Type & set__serial_number( const uint16_t & _arg) { this->serial_number = _arg; return *this; } Type & set__manufacture_date( const uint16_t & _arg) { this->manufacture_date = _arg; return *this; } Type & set__state_of_health( const uint16_t & _arg) { this->state_of_health = _arg; return *this; } Type & set__max_error( const uint16_t & _arg) { this->max_error = _arg; return *this; } Type & set__id( const uint8_t & _arg) { this->id = _arg; return *this; } Type & set__interface_error( const uint16_t & _arg) { this->interface_error = _arg; return *this; } Type & set__voltage_cell_v( const std::array<float, 14> & _arg) { this->voltage_cell_v = _arg; return *this; } Type & set__max_cell_voltage_delta( const float & _arg) { this->max_cell_voltage_delta = _arg; return *this; } Type & set__is_powering_off( const bool & _arg) { this->is_powering_off = _arg; return *this; } Type & set__warning( const uint8_t & _arg) { this->warning = _arg; return *this; } Type & set__average_power( const float & _arg) { this->average_power = _arg; return *this; } Type & set__available_energy( const float & _arg) { this->available_energy = _arg; return *this; } Type & set__remaining_capacity( const float & _arg) { this->remaining_capacity = _arg; return *this; } Type & set__design_capacity( const float & _arg) { this->design_capacity = _arg; return *this; } Type & set__average_time_to_full( const uint16_t & _arg) { this->average_time_to_full = _arg; return *this; } Type & set__over_discharge_count( const uint16_t & _arg) { this->over_discharge_count = _arg; return *this; } Type & set__nominal_voltage( const float & _arg) { this->nominal_voltage = _arg; return *this; } // constant declarations static constexpr uint8_t BATTERY_SOURCE_POWER_MODULE = 0u; static constexpr uint8_t BATTERY_SOURCE_EXTERNAL = 1u; static constexpr uint8_t BATTERY_SOURCE_ESCS = 2u; static constexpr uint8_t BATTERY_WARNING_NONE = 0u; static constexpr uint8_t BATTERY_WARNING_LOW = 1u; static constexpr uint8_t BATTERY_WARNING_CRITICAL = 2u; static constexpr uint8_t BATTERY_WARNING_EMERGENCY = 3u; static constexpr uint8_t BATTERY_WARNING_FAILED = 4u; static constexpr uint8_t MAX_INSTANCES = 4u; // pointer types using RawPtr = px4_msgs::msg::BatteryStatus_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::BatteryStatus_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::BatteryStatus_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::BatteryStatus_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::BatteryStatus_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::BatteryStatus_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::BatteryStatus_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::BatteryStatus_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::BatteryStatus_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::BatteryStatus_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__BatteryStatus std::shared_ptr<px4_msgs::msg::BatteryStatus_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__BatteryStatus std::shared_ptr<px4_msgs::msg::BatteryStatus_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const BatteryStatus_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->voltage_v != other.voltage_v) { return false; } if (this->voltage_filtered_v != other.voltage_filtered_v) { return false; } if (this->current_a != other.current_a) { return false; } if (this->current_filtered_a != other.current_filtered_a) { return false; } if (this->average_current_a != other.average_current_a) { return false; } if (this->discharged_mah != other.discharged_mah) { return false; } if (this->remaining != other.remaining) { return false; } if (this->scale != other.scale) { return false; } if (this->temperature != other.temperature) { return false; } if (this->cell_count != other.cell_count) { return false; } if (this->connected != other.connected) { return false; } if (this->source != other.source) { return false; } if (this->priority != other.priority) { return false; } if (this->capacity != other.capacity) { return false; } if (this->cycle_count != other.cycle_count) { return false; } if (this->run_time_to_empty != other.run_time_to_empty) { return false; } if (this->average_time_to_empty != other.average_time_to_empty) { return false; } if (this->serial_number != other.serial_number) { return false; } if (this->manufacture_date != other.manufacture_date) { return false; } if (this->state_of_health != other.state_of_health) { return false; } if (this->max_error != other.max_error) { return false; } if (this->id != other.id) { return false; } if (this->interface_error != other.interface_error) { return false; } if (this->voltage_cell_v != other.voltage_cell_v) { return false; } if (this->max_cell_voltage_delta != other.max_cell_voltage_delta) { return false; } if (this->is_powering_off != other.is_powering_off) { return false; } if (this->warning != other.warning) { return false; } if (this->average_power != other.average_power) { return false; } if (this->available_energy != other.available_energy) { return false; } if (this->remaining_capacity != other.remaining_capacity) { return false; } if (this->design_capacity != other.design_capacity) { return false; } if (this->average_time_to_full != other.average_time_to_full) { return false; } if (this->over_discharge_count != other.over_discharge_count) { return false; } if (this->nominal_voltage != other.nominal_voltage) { return false; } return true; } bool operator!=(const BatteryStatus_ & other) const { return !this->operator==(other); } }; // struct BatteryStatus_ // alias to use template instance with default allocator using BatteryStatus = px4_msgs::msg::BatteryStatus_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t BatteryStatus_<ContainerAllocator>::BATTERY_SOURCE_POWER_MODULE; template<typename ContainerAllocator> constexpr uint8_t BatteryStatus_<ContainerAllocator>::BATTERY_SOURCE_EXTERNAL; template<typename ContainerAllocator> constexpr uint8_t BatteryStatus_<ContainerAllocator>::BATTERY_SOURCE_ESCS; template<typename ContainerAllocator> constexpr uint8_t BatteryStatus_<ContainerAllocator>::BATTERY_WARNING_NONE; template<typename ContainerAllocator> constexpr uint8_t BatteryStatus_<ContainerAllocator>::BATTERY_WARNING_LOW; template<typename ContainerAllocator> constexpr uint8_t BatteryStatus_<ContainerAllocator>::BATTERY_WARNING_CRITICAL; template<typename ContainerAllocator> constexpr uint8_t BatteryStatus_<ContainerAllocator>::BATTERY_WARNING_EMERGENCY; template<typename ContainerAllocator> constexpr uint8_t BatteryStatus_<ContainerAllocator>::BATTERY_WARNING_FAILED; template<typename ContainerAllocator> constexpr uint8_t BatteryStatus_<ContainerAllocator>::MAX_INSTANCES; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__BATTERY_STATUS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_estimator_global_position.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/EstimatorGlobalPosition.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_EstimatorGlobalPosition(type): """Metaclass of message 'EstimatorGlobalPosition'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.EstimatorGlobalPosition') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__estimator_global_position cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__estimator_global_position cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__estimator_global_position cls._TYPE_SUPPORT = module.type_support_msg__msg__estimator_global_position cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__estimator_global_position @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class EstimatorGlobalPosition(metaclass=Metaclass_EstimatorGlobalPosition): """Message class 'EstimatorGlobalPosition'.""" __slots__ = [ '_timestamp', '_timestamp_sample', '_lat', '_lon', '_alt', '_alt_ellipsoid', '_delta_alt', '_lat_lon_reset_counter', '_alt_reset_counter', '_eph', '_epv', '_terrain_alt', '_terrain_alt_valid', '_dead_reckoning', ] _fields_and_field_types = { 'timestamp': 'uint64', 'timestamp_sample': 'uint64', 'lat': 'double', 'lon': 'double', 'alt': 'float', 'alt_ellipsoid': 'float', 'delta_alt': 'float', 'lat_lon_reset_counter': 'uint8', 'alt_reset_counter': 'uint8', 'eph': 'float', 'epv': 'float', 'terrain_alt': 'float', 'terrain_alt_valid': 'boolean', 'dead_reckoning': 'boolean', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('double'), # noqa: E501 rosidl_parser.definition.BasicType('double'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.timestamp_sample = kwargs.get('timestamp_sample', int()) self.lat = kwargs.get('lat', float()) self.lon = kwargs.get('lon', float()) self.alt = kwargs.get('alt', float()) self.alt_ellipsoid = kwargs.get('alt_ellipsoid', float()) self.delta_alt = kwargs.get('delta_alt', float()) self.lat_lon_reset_counter = kwargs.get('lat_lon_reset_counter', int()) self.alt_reset_counter = kwargs.get('alt_reset_counter', int()) self.eph = kwargs.get('eph', float()) self.epv = kwargs.get('epv', float()) self.terrain_alt = kwargs.get('terrain_alt', float()) self.terrain_alt_valid = kwargs.get('terrain_alt_valid', bool()) self.dead_reckoning = kwargs.get('dead_reckoning', bool()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.timestamp_sample != other.timestamp_sample: return False if self.lat != other.lat: return False if self.lon != other.lon: return False if self.alt != other.alt: return False if self.alt_ellipsoid != other.alt_ellipsoid: return False if self.delta_alt != other.delta_alt: return False if self.lat_lon_reset_counter != other.lat_lon_reset_counter: return False if self.alt_reset_counter != other.alt_reset_counter: return False if self.eph != other.eph: return False if self.epv != other.epv: return False if self.terrain_alt != other.terrain_alt: return False if self.terrain_alt_valid != other.terrain_alt_valid: return False if self.dead_reckoning != other.dead_reckoning: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def timestamp_sample(self): """Message field 'timestamp_sample'.""" return self._timestamp_sample @timestamp_sample.setter def timestamp_sample(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp_sample' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp_sample' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp_sample = value @property def lat(self): """Message field 'lat'.""" return self._lat @lat.setter def lat(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'lat' field must be of type 'float'" self._lat = value @property def lon(self): """Message field 'lon'.""" return self._lon @lon.setter def lon(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'lon' field must be of type 'float'" self._lon = value @property def alt(self): """Message field 'alt'.""" return self._alt @alt.setter def alt(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'alt' field must be of type 'float'" self._alt = value @property def alt_ellipsoid(self): """Message field 'alt_ellipsoid'.""" return self._alt_ellipsoid @alt_ellipsoid.setter def alt_ellipsoid(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'alt_ellipsoid' field must be of type 'float'" self._alt_ellipsoid = value @property def delta_alt(self): """Message field 'delta_alt'.""" return self._delta_alt @delta_alt.setter def delta_alt(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'delta_alt' field must be of type 'float'" self._delta_alt = value @property def lat_lon_reset_counter(self): """Message field 'lat_lon_reset_counter'.""" return self._lat_lon_reset_counter @lat_lon_reset_counter.setter def lat_lon_reset_counter(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'lat_lon_reset_counter' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'lat_lon_reset_counter' field must be an unsigned integer in [0, 255]" self._lat_lon_reset_counter = value @property def alt_reset_counter(self): """Message field 'alt_reset_counter'.""" return self._alt_reset_counter @alt_reset_counter.setter def alt_reset_counter(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'alt_reset_counter' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'alt_reset_counter' field must be an unsigned integer in [0, 255]" self._alt_reset_counter = value @property def eph(self): """Message field 'eph'.""" return self._eph @eph.setter def eph(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'eph' field must be of type 'float'" self._eph = value @property def epv(self): """Message field 'epv'.""" return self._epv @epv.setter def epv(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'epv' field must be of type 'float'" self._epv = value @property def terrain_alt(self): """Message field 'terrain_alt'.""" return self._terrain_alt @terrain_alt.setter def terrain_alt(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'terrain_alt' field must be of type 'float'" self._terrain_alt = value @property def terrain_alt_valid(self): """Message field 'terrain_alt_valid'.""" return self._terrain_alt_valid @terrain_alt_valid.setter def terrain_alt_valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'terrain_alt_valid' field must be of type 'bool'" self._terrain_alt_valid = value @property def dead_reckoning(self): """Message field 'dead_reckoning'.""" return self._dead_reckoning @dead_reckoning.setter def dead_reckoning(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'dead_reckoning' field must be of type 'bool'" self._dead_reckoning = value <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/mission__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/Mission.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__MISSION__STRUCT_H_ #define PX4_MSGS__MSG__MISSION__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/Mission in the package px4_msgs. typedef struct px4_msgs__msg__Mission { uint64_t timestamp; uint8_t dataman_id; uint16_t count; int32_t current_seq; } px4_msgs__msg__Mission; // Struct for a sequence of px4_msgs__msg__Mission. typedef struct px4_msgs__msg__Mission__Sequence { px4_msgs__msg__Mission * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__Mission__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__MISSION__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_control_mode.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleControlMode.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_CONTROL_MODE_H_ #define PX4_MSGS__MSG__VEHICLE_CONTROL_MODE_H_ #include "px4_msgs/msg/vehicle_control_mode__struct.h" #include "px4_msgs/msg/vehicle_control_mode__functions.h" #include "px4_msgs/msg/vehicle_control_mode__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_CONTROL_MODE_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/parameter_update__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/ParameterUpdate.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__PARAMETER_UPDATE__STRUCT_H_ #define PX4_MSGS__MSG__PARAMETER_UPDATE__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/ParameterUpdate in the package px4_msgs. typedef struct px4_msgs__msg__ParameterUpdate { uint64_t timestamp; uint32_t instance; uint32_t get_count; uint32_t set_count; uint32_t find_count; uint32_t export_count; uint16_t active; uint16_t changed; uint16_t custom_default; } px4_msgs__msg__ParameterUpdate; // Struct for a sequence of px4_msgs__msg__ParameterUpdate. typedef struct px4_msgs__msg__ParameterUpdate__Sequence { px4_msgs__msg__ParameterUpdate * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__ParameterUpdate__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__PARAMETER_UPDATE__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/debug_value__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/DebugValue.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__DEBUG_VALUE__STRUCT_HPP_ #define PX4_MSGS__MSG__DEBUG_VALUE__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__DebugValue __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__DebugValue __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct DebugValue_ { using Type = DebugValue_<ContainerAllocator>; explicit DebugValue_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->ind = 0; this->value = 0.0f; } } explicit DebugValue_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->ind = 0; this->value = 0.0f; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _ind_type = int8_t; _ind_type ind; using _value_type = float; _value_type value; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__ind( const int8_t & _arg) { this->ind = _arg; return *this; } Type & set__value( const float & _arg) { this->value = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::DebugValue_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::DebugValue_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::DebugValue_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::DebugValue_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::DebugValue_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::DebugValue_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::DebugValue_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::DebugValue_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::DebugValue_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::DebugValue_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__DebugValue std::shared_ptr<px4_msgs::msg::DebugValue_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__DebugValue std::shared_ptr<px4_msgs::msg::DebugValue_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const DebugValue_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->ind != other.ind) { return false; } if (this->value != other.value) { return false; } return true; } bool operator!=(const DebugValue_ & other) const { return !this->operator==(other); } }; // struct DebugValue_ // alias to use template instance with default allocator using DebugValue = px4_msgs::msg::DebugValue_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__DEBUG_VALUE__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/trajectory_waypoint__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/TrajectoryWaypoint.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/trajectory_waypoint__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/trajectory_waypoint__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::TrajectoryWaypoint & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: position { cdr << ros_message.position; } // Member: velocity { cdr << ros_message.velocity; } // Member: acceleration { cdr << ros_message.acceleration; } // Member: yaw cdr << ros_message.yaw; // Member: yaw_speed cdr << ros_message.yaw_speed; // Member: point_valid cdr << (ros_message.point_valid ? true : false); // Member: type cdr << ros_message.type; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::TrajectoryWaypoint & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: position { cdr >> ros_message.position; } // Member: velocity { cdr >> ros_message.velocity; } // Member: acceleration { cdr >> ros_message.acceleration; } // Member: yaw cdr >> ros_message.yaw; // Member: yaw_speed cdr >> ros_message.yaw_speed; // Member: point_valid { uint8_t tmp; cdr >> tmp; ros_message.point_valid = tmp ? true : false; } // Member: type cdr >> ros_message.type; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::TrajectoryWaypoint & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: position { size_t array_size = 3; size_t item_size = sizeof(ros_message.position[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: velocity { size_t array_size = 3; size_t item_size = sizeof(ros_message.velocity[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: acceleration { size_t array_size = 3; size_t item_size = sizeof(ros_message.acceleration[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: yaw { size_t item_size = sizeof(ros_message.yaw); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: yaw_speed { size_t item_size = sizeof(ros_message.yaw_speed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: point_valid { size_t item_size = sizeof(ros_message.point_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: type { size_t item_size = sizeof(ros_message.type); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_TrajectoryWaypoint( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: position { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: velocity { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: acceleration { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: yaw { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: yaw_speed { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: point_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: type { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _TrajectoryWaypoint__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::TrajectoryWaypoint *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _TrajectoryWaypoint__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::TrajectoryWaypoint *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _TrajectoryWaypoint__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::TrajectoryWaypoint *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _TrajectoryWaypoint__max_serialized_size(bool & full_bounded) { return max_serialized_size_TrajectoryWaypoint(full_bounded, 0); } static message_type_support_callbacks_t _TrajectoryWaypoint__callbacks = { "px4_msgs::msg", "TrajectoryWaypoint", _TrajectoryWaypoint__cdr_serialize, _TrajectoryWaypoint__cdr_deserialize, _TrajectoryWaypoint__get_serialized_size, _TrajectoryWaypoint__max_serialized_size }; static rosidl_message_type_support_t _TrajectoryWaypoint__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_TrajectoryWaypoint__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::TrajectoryWaypoint>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_TrajectoryWaypoint__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, TrajectoryWaypoint)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_TrajectoryWaypoint__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gps__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/SensorGps.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/sensor_gps__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/sensor_gps__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::SensorGps & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: device_id cdr << ros_message.device_id; // Member: lat cdr << ros_message.lat; // Member: lon cdr << ros_message.lon; // Member: alt cdr << ros_message.alt; // Member: alt_ellipsoid cdr << ros_message.alt_ellipsoid; // Member: s_variance_m_s cdr << ros_message.s_variance_m_s; // Member: c_variance_rad cdr << ros_message.c_variance_rad; // Member: fix_type cdr << ros_message.fix_type; // Member: eph cdr << ros_message.eph; // Member: epv cdr << ros_message.epv; // Member: hdop cdr << ros_message.hdop; // Member: vdop cdr << ros_message.vdop; // Member: noise_per_ms cdr << ros_message.noise_per_ms; // Member: automatic_gain_control cdr << ros_message.automatic_gain_control; // Member: jamming_indicator cdr << ros_message.jamming_indicator; // Member: jamming_state cdr << ros_message.jamming_state; // Member: vel_m_s cdr << ros_message.vel_m_s; // Member: vel_n_m_s cdr << ros_message.vel_n_m_s; // Member: vel_e_m_s cdr << ros_message.vel_e_m_s; // Member: vel_d_m_s cdr << ros_message.vel_d_m_s; // Member: cog_rad cdr << ros_message.cog_rad; // Member: vel_ned_valid cdr << (ros_message.vel_ned_valid ? true : false); // Member: timestamp_time_relative cdr << ros_message.timestamp_time_relative; // Member: time_utc_usec cdr << ros_message.time_utc_usec; // Member: satellites_used cdr << ros_message.satellites_used; // Member: heading cdr << ros_message.heading; // Member: heading_offset cdr << ros_message.heading_offset; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::SensorGps & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: device_id cdr >> ros_message.device_id; // Member: lat cdr >> ros_message.lat; // Member: lon cdr >> ros_message.lon; // Member: alt cdr >> ros_message.alt; // Member: alt_ellipsoid cdr >> ros_message.alt_ellipsoid; // Member: s_variance_m_s cdr >> ros_message.s_variance_m_s; // Member: c_variance_rad cdr >> ros_message.c_variance_rad; // Member: fix_type cdr >> ros_message.fix_type; // Member: eph cdr >> ros_message.eph; // Member: epv cdr >> ros_message.epv; // Member: hdop cdr >> ros_message.hdop; // Member: vdop cdr >> ros_message.vdop; // Member: noise_per_ms cdr >> ros_message.noise_per_ms; // Member: automatic_gain_control cdr >> ros_message.automatic_gain_control; // Member: jamming_indicator cdr >> ros_message.jamming_indicator; // Member: jamming_state cdr >> ros_message.jamming_state; // Member: vel_m_s cdr >> ros_message.vel_m_s; // Member: vel_n_m_s cdr >> ros_message.vel_n_m_s; // Member: vel_e_m_s cdr >> ros_message.vel_e_m_s; // Member: vel_d_m_s cdr >> ros_message.vel_d_m_s; // Member: cog_rad cdr >> ros_message.cog_rad; // Member: vel_ned_valid { uint8_t tmp; cdr >> tmp; ros_message.vel_ned_valid = tmp ? true : false; } // Member: timestamp_time_relative cdr >> ros_message.timestamp_time_relative; // Member: time_utc_usec cdr >> ros_message.time_utc_usec; // Member: satellites_used cdr >> ros_message.satellites_used; // Member: heading cdr >> ros_message.heading; // Member: heading_offset cdr >> ros_message.heading_offset; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::SensorGps & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: device_id { size_t item_size = sizeof(ros_message.device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: lat { size_t item_size = sizeof(ros_message.lat); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: lon { size_t item_size = sizeof(ros_message.lon); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: alt { size_t item_size = sizeof(ros_message.alt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: alt_ellipsoid { size_t item_size = sizeof(ros_message.alt_ellipsoid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: s_variance_m_s { size_t item_size = sizeof(ros_message.s_variance_m_s); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: c_variance_rad { size_t item_size = sizeof(ros_message.c_variance_rad); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: fix_type { size_t item_size = sizeof(ros_message.fix_type); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: eph { size_t item_size = sizeof(ros_message.eph); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: epv { size_t item_size = sizeof(ros_message.epv); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: hdop { size_t item_size = sizeof(ros_message.hdop); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: vdop { size_t item_size = sizeof(ros_message.vdop); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: noise_per_ms { size_t item_size = sizeof(ros_message.noise_per_ms); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: automatic_gain_control { size_t item_size = sizeof(ros_message.automatic_gain_control); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: jamming_indicator { size_t item_size = sizeof(ros_message.jamming_indicator); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: jamming_state { size_t item_size = sizeof(ros_message.jamming_state); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: vel_m_s { size_t item_size = sizeof(ros_message.vel_m_s); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: vel_n_m_s { size_t item_size = sizeof(ros_message.vel_n_m_s); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: vel_e_m_s { size_t item_size = sizeof(ros_message.vel_e_m_s); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: vel_d_m_s { size_t item_size = sizeof(ros_message.vel_d_m_s); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cog_rad { size_t item_size = sizeof(ros_message.cog_rad); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: vel_ned_valid { size_t item_size = sizeof(ros_message.vel_ned_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: timestamp_time_relative { size_t item_size = sizeof(ros_message.timestamp_time_relative); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: time_utc_usec { size_t item_size = sizeof(ros_message.time_utc_usec); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: satellites_used { size_t item_size = sizeof(ros_message.satellites_used); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: heading { size_t item_size = sizeof(ros_message.heading); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: heading_offset { size_t item_size = sizeof(ros_message.heading_offset); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_SensorGps( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: lat { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: lon { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: alt { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: alt_ellipsoid { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: s_variance_m_s { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: c_variance_rad { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: fix_type { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: eph { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: epv { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: hdop { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: vdop { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: noise_per_ms { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: automatic_gain_control { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: jamming_indicator { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: jamming_state { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: vel_m_s { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: vel_n_m_s { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: vel_e_m_s { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: vel_d_m_s { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: cog_rad { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: vel_ned_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: timestamp_time_relative { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: time_utc_usec { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: satellites_used { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: heading { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: heading_offset { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static bool _SensorGps__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::SensorGps *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _SensorGps__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::SensorGps *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _SensorGps__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::SensorGps *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _SensorGps__max_serialized_size(bool & full_bounded) { return max_serialized_size_SensorGps(full_bounded, 0); } static message_type_support_callbacks_t _SensorGps__callbacks = { "px4_msgs::msg", "SensorGps", _SensorGps__cdr_serialize, _SensorGps__cdr_deserialize, _SensorGps__get_serialized_size, _SensorGps__max_serialized_size }; static rosidl_message_type_support_t _SensorGps__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_SensorGps__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::SensorGps>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_SensorGps__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, SensorGps)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_SensorGps__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_air_data__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/VehicleAirData.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_AIR_DATA__STRUCT_HPP_ #define PX4_MSGS__MSG__VEHICLE_AIR_DATA__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__VehicleAirData __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__VehicleAirData __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct VehicleAirData_ { using Type = VehicleAirData_<ContainerAllocator>; explicit VehicleAirData_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->baro_device_id = 0ul; this->baro_alt_meter = 0.0f; this->baro_temp_celcius = 0.0f; this->baro_pressure_pa = 0.0f; this->rho = 0.0f; } } explicit VehicleAirData_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->baro_device_id = 0ul; this->baro_alt_meter = 0.0f; this->baro_temp_celcius = 0.0f; this->baro_pressure_pa = 0.0f; this->rho = 0.0f; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _timestamp_sample_type = uint64_t; _timestamp_sample_type timestamp_sample; using _baro_device_id_type = uint32_t; _baro_device_id_type baro_device_id; using _baro_alt_meter_type = float; _baro_alt_meter_type baro_alt_meter; using _baro_temp_celcius_type = float; _baro_temp_celcius_type baro_temp_celcius; using _baro_pressure_pa_type = float; _baro_pressure_pa_type baro_pressure_pa; using _rho_type = float; _rho_type rho; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__timestamp_sample( const uint64_t & _arg) { this->timestamp_sample = _arg; return *this; } Type & set__baro_device_id( const uint32_t & _arg) { this->baro_device_id = _arg; return *this; } Type & set__baro_alt_meter( const float & _arg) { this->baro_alt_meter = _arg; return *this; } Type & set__baro_temp_celcius( const float & _arg) { this->baro_temp_celcius = _arg; return *this; } Type & set__baro_pressure_pa( const float & _arg) { this->baro_pressure_pa = _arg; return *this; } Type & set__rho( const float & _arg) { this->rho = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::VehicleAirData_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::VehicleAirData_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::VehicleAirData_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::VehicleAirData_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleAirData_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleAirData_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleAirData_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleAirData_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::VehicleAirData_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::VehicleAirData_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__VehicleAirData std::shared_ptr<px4_msgs::msg::VehicleAirData_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__VehicleAirData std::shared_ptr<px4_msgs::msg::VehicleAirData_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const VehicleAirData_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->timestamp_sample != other.timestamp_sample) { return false; } if (this->baro_device_id != other.baro_device_id) { return false; } if (this->baro_alt_meter != other.baro_alt_meter) { return false; } if (this->baro_temp_celcius != other.baro_temp_celcius) { return false; } if (this->baro_pressure_pa != other.baro_pressure_pa) { return false; } if (this->rho != other.rho) { return false; } return true; } bool operator!=(const VehicleAirData_ & other) const { return !this->operator==(other); } }; // struct VehicleAirData_ // alias to use template instance with default allocator using VehicleAirData = px4_msgs::msg::VehicleAirData_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__VEHICLE_AIR_DATA__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/rate_ctrl_status__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/RateCtrlStatus.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/rate_ctrl_status__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/rate_ctrl_status__functions.h" #include "px4_msgs/msg/rate_ctrl_status__struct.h" #ifdef __cplusplus extern "C" { #endif void RateCtrlStatus__rosidl_typesupport_introspection_c__RateCtrlStatus_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__RateCtrlStatus__init(message_memory); } void RateCtrlStatus__rosidl_typesupport_introspection_c__RateCtrlStatus_fini_function(void * message_memory) { px4_msgs__msg__RateCtrlStatus__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember RateCtrlStatus__rosidl_typesupport_introspection_c__RateCtrlStatus_message_member_array[5] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__RateCtrlStatus, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rollspeed_integ", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__RateCtrlStatus, rollspeed_integ), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "pitchspeed_integ", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__RateCtrlStatus, pitchspeed_integ), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yawspeed_integ", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__RateCtrlStatus, yawspeed_integ), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "additional_integ1", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__RateCtrlStatus, additional_integ1), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers RateCtrlStatus__rosidl_typesupport_introspection_c__RateCtrlStatus_message_members = { "px4_msgs__msg", // message namespace "RateCtrlStatus", // message name 5, // number of fields sizeof(px4_msgs__msg__RateCtrlStatus), RateCtrlStatus__rosidl_typesupport_introspection_c__RateCtrlStatus_message_member_array, // message members RateCtrlStatus__rosidl_typesupport_introspection_c__RateCtrlStatus_init_function, // function to initialize message memory (memory has to be allocated) RateCtrlStatus__rosidl_typesupport_introspection_c__RateCtrlStatus_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t RateCtrlStatus__rosidl_typesupport_introspection_c__RateCtrlStatus_message_type_support_handle = { 0, &RateCtrlStatus__rosidl_typesupport_introspection_c__RateCtrlStatus_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, RateCtrlStatus)() { if (!RateCtrlStatus__rosidl_typesupport_introspection_c__RateCtrlStatus_message_type_support_handle.typesupport_identifier) { RateCtrlStatus__rosidl_typesupport_introspection_c__RateCtrlStatus_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &RateCtrlStatus__rosidl_typesupport_introspection_c__RateCtrlStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/airspeed_validated__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/AirspeedValidated.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/airspeed_validated__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/airspeed_validated__functions.h" #include "px4_msgs/msg/airspeed_validated__struct.h" #ifdef __cplusplus extern "C" { #endif void AirspeedValidated__rosidl_typesupport_introspection_c__AirspeedValidated_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__AirspeedValidated__init(message_memory); } void AirspeedValidated__rosidl_typesupport_introspection_c__AirspeedValidated_fini_function(void * message_memory) { px4_msgs__msg__AirspeedValidated__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember AirspeedValidated__rosidl_typesupport_introspection_c__AirspeedValidated_message_member_array[8] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__AirspeedValidated, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "indicated_airspeed_m_s", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__AirspeedValidated, indicated_airspeed_m_s), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "calibrated_airspeed_m_s", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__AirspeedValidated, calibrated_airspeed_m_s), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "true_airspeed_m_s", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__AirspeedValidated, true_airspeed_m_s), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "calibrated_ground_minus_wind_m_s", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__AirspeedValidated, calibrated_ground_minus_wind_m_s), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "true_ground_minus_wind_m_s", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__AirspeedValidated, true_ground_minus_wind_m_s), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "airspeed_sensor_measurement_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__AirspeedValidated, airspeed_sensor_measurement_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "selected_airspeed_index", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__AirspeedValidated, selected_airspeed_index), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers AirspeedValidated__rosidl_typesupport_introspection_c__AirspeedValidated_message_members = { "px4_msgs__msg", // message namespace "AirspeedValidated", // message name 8, // number of fields sizeof(px4_msgs__msg__AirspeedValidated), AirspeedValidated__rosidl_typesupport_introspection_c__AirspeedValidated_message_member_array, // message members AirspeedValidated__rosidl_typesupport_introspection_c__AirspeedValidated_init_function, // function to initialize message memory (memory has to be allocated) AirspeedValidated__rosidl_typesupport_introspection_c__AirspeedValidated_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t AirspeedValidated__rosidl_typesupport_introspection_c__AirspeedValidated_message_type_support_handle = { 0, &AirspeedValidated__rosidl_typesupport_introspection_c__AirspeedValidated_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, AirspeedValidated)() { if (!AirspeedValidated__rosidl_typesupport_introspection_c__AirspeedValidated_message_type_support_handle.typesupport_identifier) { AirspeedValidated__rosidl_typesupport_introspection_c__AirspeedValidated_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &AirspeedValidated__rosidl_typesupport_introspection_c__AirspeedValidated_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_controls2__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/ActuatorControls2.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS2__FUNCTIONS_H_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS2__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/actuator_controls2__struct.h" /// Initialize msg/ActuatorControls2 message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__ActuatorControls2 * )) before or use * px4_msgs__msg__ActuatorControls2__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__ActuatorControls2__init(px4_msgs__msg__ActuatorControls2 * msg); /// Finalize msg/ActuatorControls2 message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__ActuatorControls2__fini(px4_msgs__msg__ActuatorControls2 * msg); /// Create msg/ActuatorControls2 message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__ActuatorControls2__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__ActuatorControls2 * px4_msgs__msg__ActuatorControls2__create(); /// Destroy msg/ActuatorControls2 message. /** * It calls * px4_msgs__msg__ActuatorControls2__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__ActuatorControls2__destroy(px4_msgs__msg__ActuatorControls2 * msg); /// Initialize array of msg/ActuatorControls2 messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__ActuatorControls2__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__ActuatorControls2__Sequence__init(px4_msgs__msg__ActuatorControls2__Sequence * array, size_t size); /// Finalize array of msg/ActuatorControls2 messages. /** * It calls * px4_msgs__msg__ActuatorControls2__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__ActuatorControls2__Sequence__fini(px4_msgs__msg__ActuatorControls2__Sequence * array); /// Create array of msg/ActuatorControls2 messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__ActuatorControls2__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__ActuatorControls2__Sequence * px4_msgs__msg__ActuatorControls2__Sequence__create(size_t size); /// Destroy array of msg/ActuatorControls2 messages. /** * It calls * px4_msgs__msg__ActuatorControls2__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__ActuatorControls2__Sequence__destroy(px4_msgs__msg__ActuatorControls2__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS2__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleTrajectoryWaypoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_TRAJECTORY_WAYPOINT__STRUCT_H_ #define PX4_MSGS__MSG__VEHICLE_TRAJECTORY_WAYPOINT__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'MAV_TRAJECTORY_REPRESENTATION_WAYPOINTS'. enum { px4_msgs__msg__VehicleTrajectoryWaypoint__MAV_TRAJECTORY_REPRESENTATION_WAYPOINTS = 0 }; /// Constant 'POINT_0'. enum { px4_msgs__msg__VehicleTrajectoryWaypoint__POINT_0 = 0 }; /// Constant 'POINT_1'. enum { px4_msgs__msg__VehicleTrajectoryWaypoint__POINT_1 = 1 }; /// Constant 'POINT_2'. enum { px4_msgs__msg__VehicleTrajectoryWaypoint__POINT_2 = 2 }; /// Constant 'POINT_3'. enum { px4_msgs__msg__VehicleTrajectoryWaypoint__POINT_3 = 3 }; /// Constant 'POINT_4'. enum { px4_msgs__msg__VehicleTrajectoryWaypoint__POINT_4 = 4 }; /// Constant 'NUMBER_POINTS'. enum { px4_msgs__msg__VehicleTrajectoryWaypoint__NUMBER_POINTS = 5 }; // Include directives for member types // Member 'waypoints' #include "px4_msgs/msg/trajectory_waypoint__struct.h" // Struct defined in msg/VehicleTrajectoryWaypoint in the package px4_msgs. typedef struct px4_msgs__msg__VehicleTrajectoryWaypoint { uint64_t timestamp; uint8_t type; px4_msgs__msg__TrajectoryWaypoint waypoints[5]; } px4_msgs__msg__VehicleTrajectoryWaypoint; // Struct for a sequence of px4_msgs__msg__VehicleTrajectoryWaypoint. typedef struct px4_msgs__msg__VehicleTrajectoryWaypoint__Sequence { px4_msgs__msg__VehicleTrajectoryWaypoint * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__VehicleTrajectoryWaypoint__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_TRAJECTORY_WAYPOINT__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/input_rc.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__INPUT_RC_HPP_ #define PX4_MSGS__MSG__INPUT_RC_HPP_ #include "px4_msgs/msg/input_rc__struct.hpp" #include "px4_msgs/msg/input_rc__traits.hpp" #endif // PX4_MSGS__MSG__INPUT_RC_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/gps_inject_data.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/GpsInjectData.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GPS_INJECT_DATA_H_ #define PX4_MSGS__MSG__GPS_INJECT_DATA_H_ #include "px4_msgs/msg/gps_inject_data__struct.h" #include "px4_msgs/msg/gps_inject_data__functions.h" #include "px4_msgs/msg/gps_inject_data__type_support.h" #endif // PX4_MSGS__MSG__GPS_INJECT_DATA_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_selector_status__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/EstimatorSelectorStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/estimator_selector_status__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/estimator_selector_status__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::EstimatorSelectorStatus & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: primary_instance cdr << ros_message.primary_instance; // Member: instances_available cdr << ros_message.instances_available; // Member: instance_changed_count cdr << ros_message.instance_changed_count; // Member: last_instance_change cdr << ros_message.last_instance_change; // Member: accel_device_id cdr << ros_message.accel_device_id; // Member: baro_device_id cdr << ros_message.baro_device_id; // Member: gyro_device_id cdr << ros_message.gyro_device_id; // Member: mag_device_id cdr << ros_message.mag_device_id; // Member: combined_test_ratio { cdr << ros_message.combined_test_ratio; } // Member: relative_test_ratio { cdr << ros_message.relative_test_ratio; } // Member: healthy { cdr << ros_message.healthy; } // Member: accumulated_gyro_error { cdr << ros_message.accumulated_gyro_error; } // Member: accumulated_accel_error { cdr << ros_message.accumulated_accel_error; } // Member: gyro_fault_detected cdr << (ros_message.gyro_fault_detected ? true : false); // Member: accel_fault_detected cdr << (ros_message.accel_fault_detected ? true : false); return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::EstimatorSelectorStatus & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: primary_instance cdr >> ros_message.primary_instance; // Member: instances_available cdr >> ros_message.instances_available; // Member: instance_changed_count cdr >> ros_message.instance_changed_count; // Member: last_instance_change cdr >> ros_message.last_instance_change; // Member: accel_device_id cdr >> ros_message.accel_device_id; // Member: baro_device_id cdr >> ros_message.baro_device_id; // Member: gyro_device_id cdr >> ros_message.gyro_device_id; // Member: mag_device_id cdr >> ros_message.mag_device_id; // Member: combined_test_ratio { cdr >> ros_message.combined_test_ratio; } // Member: relative_test_ratio { cdr >> ros_message.relative_test_ratio; } // Member: healthy { cdr >> ros_message.healthy; } // Member: accumulated_gyro_error { cdr >> ros_message.accumulated_gyro_error; } // Member: accumulated_accel_error { cdr >> ros_message.accumulated_accel_error; } // Member: gyro_fault_detected { uint8_t tmp; cdr >> tmp; ros_message.gyro_fault_detected = tmp ? true : false; } // Member: accel_fault_detected { uint8_t tmp; cdr >> tmp; ros_message.accel_fault_detected = tmp ? true : false; } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::EstimatorSelectorStatus & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: primary_instance { size_t item_size = sizeof(ros_message.primary_instance); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: instances_available { size_t item_size = sizeof(ros_message.instances_available); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: instance_changed_count { size_t item_size = sizeof(ros_message.instance_changed_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: last_instance_change { size_t item_size = sizeof(ros_message.last_instance_change); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: accel_device_id { size_t item_size = sizeof(ros_message.accel_device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: baro_device_id { size_t item_size = sizeof(ros_message.baro_device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gyro_device_id { size_t item_size = sizeof(ros_message.gyro_device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: mag_device_id { size_t item_size = sizeof(ros_message.mag_device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: combined_test_ratio { size_t array_size = 9; size_t item_size = sizeof(ros_message.combined_test_ratio[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: relative_test_ratio { size_t array_size = 9; size_t item_size = sizeof(ros_message.relative_test_ratio[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: healthy { size_t array_size = 9; size_t item_size = sizeof(ros_message.healthy[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: accumulated_gyro_error { size_t array_size = 4; size_t item_size = sizeof(ros_message.accumulated_gyro_error[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: accumulated_accel_error { size_t array_size = 4; size_t item_size = sizeof(ros_message.accumulated_accel_error[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gyro_fault_detected { size_t item_size = sizeof(ros_message.gyro_fault_detected); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: accel_fault_detected { size_t item_size = sizeof(ros_message.accel_fault_detected); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_EstimatorSelectorStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: primary_instance { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: instances_available { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: instance_changed_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: last_instance_change { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: accel_device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: baro_device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: gyro_device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: mag_device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: combined_test_ratio { size_t array_size = 9; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: relative_test_ratio { size_t array_size = 9; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: healthy { size_t array_size = 9; current_alignment += array_size * sizeof(uint8_t); } // Member: accumulated_gyro_error { size_t array_size = 4; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: accumulated_accel_error { size_t array_size = 4; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: gyro_fault_detected { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: accel_fault_detected { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _EstimatorSelectorStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::EstimatorSelectorStatus *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _EstimatorSelectorStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::EstimatorSelectorStatus *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _EstimatorSelectorStatus__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::EstimatorSelectorStatus *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _EstimatorSelectorStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_EstimatorSelectorStatus(full_bounded, 0); } static message_type_support_callbacks_t _EstimatorSelectorStatus__callbacks = { "px4_msgs::msg", "EstimatorSelectorStatus", _EstimatorSelectorStatus__cdr_serialize, _EstimatorSelectorStatus__cdr_deserialize, _EstimatorSelectorStatus__get_serialized_size, _EstimatorSelectorStatus__max_serialized_size }; static rosidl_message_type_support_t _EstimatorSelectorStatus__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_EstimatorSelectorStatus__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::EstimatorSelectorStatus>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_EstimatorSelectorStatus__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, EstimatorSelectorStatus)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_EstimatorSelectorStatus__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_manual_control.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/GimbalManagerSetManualControl.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GIMBAL_MANAGER_SET_MANUAL_CONTROL_H_ #define PX4_MSGS__MSG__GIMBAL_MANAGER_SET_MANUAL_CONTROL_H_ #include "px4_msgs/msg/gimbal_manager_set_manual_control__struct.h" #include "px4_msgs/msg/gimbal_manager_set_manual_control__functions.h" #include "px4_msgs/msg/gimbal_manager_set_manual_control__type_support.h" #endif // PX4_MSGS__MSG__GIMBAL_MANAGER_SET_MANUAL_CONTROL_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/actuator_controls0__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/ActuatorControls0.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/actuator_controls0__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/actuator_controls0__functions.h" #include "px4_msgs/msg/actuator_controls0__struct.h" #ifdef __cplusplus extern "C" { #endif void ActuatorControls0__rosidl_typesupport_introspection_c__ActuatorControls0_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__ActuatorControls0__init(message_memory); } void ActuatorControls0__rosidl_typesupport_introspection_c__ActuatorControls0_fini_function(void * message_memory) { px4_msgs__msg__ActuatorControls0__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember ActuatorControls0__rosidl_typesupport_introspection_c__ActuatorControls0_message_member_array[3] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ActuatorControls0, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ActuatorControls0, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "control", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 8, // array size false, // is upper bound offsetof(px4_msgs__msg__ActuatorControls0, control), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers ActuatorControls0__rosidl_typesupport_introspection_c__ActuatorControls0_message_members = { "px4_msgs__msg", // message namespace "ActuatorControls0", // message name 3, // number of fields sizeof(px4_msgs__msg__ActuatorControls0), ActuatorControls0__rosidl_typesupport_introspection_c__ActuatorControls0_message_member_array, // message members ActuatorControls0__rosidl_typesupport_introspection_c__ActuatorControls0_init_function, // function to initialize message memory (memory has to be allocated) ActuatorControls0__rosidl_typesupport_introspection_c__ActuatorControls0_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t ActuatorControls0__rosidl_typesupport_introspection_c__ActuatorControls0_message_type_support_handle = { 0, &ActuatorControls0__rosidl_typesupport_introspection_c__ActuatorControls0_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, ActuatorControls0)() { if (!ActuatorControls0__rosidl_typesupport_introspection_c__ActuatorControls0_message_type_support_handle.typesupport_identifier) { ActuatorControls0__rosidl_typesupport_introspection_c__ActuatorControls0_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &ActuatorControls0__rosidl_typesupport_introspection_c__ActuatorControls0_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/pwm_input__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/PwmInput.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/pwm_input__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/pwm_input__struct.h" #include "px4_msgs/msg/pwm_input__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _PwmInput__ros_msg_type = px4_msgs__msg__PwmInput; static bool _PwmInput__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _PwmInput__ros_msg_type * ros_message = static_cast<const _PwmInput__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: error_count { cdr << ros_message->error_count; } // Field name: pulse_width { cdr << ros_message->pulse_width; } // Field name: period { cdr << ros_message->period; } return true; } static bool _PwmInput__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _PwmInput__ros_msg_type * ros_message = static_cast<_PwmInput__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: error_count { cdr >> ros_message->error_count; } // Field name: pulse_width { cdr >> ros_message->pulse_width; } // Field name: period { cdr >> ros_message->period; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__PwmInput( const void * untyped_ros_message, size_t current_alignment) { const _PwmInput__ros_msg_type * ros_message = static_cast<const _PwmInput__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name error_count { size_t item_size = sizeof(ros_message->error_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name pulse_width { size_t item_size = sizeof(ros_message->pulse_width); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name period { size_t item_size = sizeof(ros_message->period); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _PwmInput__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__PwmInput( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__PwmInput( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: error_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: pulse_width { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: period { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _PwmInput__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__PwmInput( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_PwmInput = { "px4_msgs::msg", "PwmInput", _PwmInput__cdr_serialize, _PwmInput__cdr_deserialize, _PwmInput__get_serialized_size, _PwmInput__max_serialized_size }; static rosidl_message_type_support_t _PwmInput__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_PwmInput, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, PwmInput)() { return &_PwmInput__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/task_stack_info__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/TaskStackInfo.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/task_stack_info__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__TaskStackInfo__init(px4_msgs__msg__TaskStackInfo * msg) { if (!msg) { return false; } // timestamp // stack_free // task_name return true; } void px4_msgs__msg__TaskStackInfo__fini(px4_msgs__msg__TaskStackInfo * msg) { if (!msg) { return; } // timestamp // stack_free // task_name } px4_msgs__msg__TaskStackInfo * px4_msgs__msg__TaskStackInfo__create() { px4_msgs__msg__TaskStackInfo * msg = (px4_msgs__msg__TaskStackInfo *)malloc(sizeof(px4_msgs__msg__TaskStackInfo)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__TaskStackInfo)); bool success = px4_msgs__msg__TaskStackInfo__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__TaskStackInfo__destroy(px4_msgs__msg__TaskStackInfo * msg) { if (msg) { px4_msgs__msg__TaskStackInfo__fini(msg); } free(msg); } bool px4_msgs__msg__TaskStackInfo__Sequence__init(px4_msgs__msg__TaskStackInfo__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__TaskStackInfo * data = NULL; if (size) { data = (px4_msgs__msg__TaskStackInfo *)calloc(size, sizeof(px4_msgs__msg__TaskStackInfo)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__TaskStackInfo__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__TaskStackInfo__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__TaskStackInfo__Sequence__fini(px4_msgs__msg__TaskStackInfo__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__TaskStackInfo__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__TaskStackInfo__Sequence * px4_msgs__msg__TaskStackInfo__Sequence__create(size_t size) { px4_msgs__msg__TaskStackInfo__Sequence * array = (px4_msgs__msg__TaskStackInfo__Sequence *)malloc(sizeof(px4_msgs__msg__TaskStackInfo__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__TaskStackInfo__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__TaskStackInfo__Sequence__destroy(px4_msgs__msg__TaskStackInfo__Sequence * array) { if (array) { px4_msgs__msg__TaskStackInfo__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_mission_result_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/MissionResult.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/mission_result__struct.h" #include "px4_msgs/msg/mission_result__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__mission_result__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[43]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._mission_result.MissionResult", full_classname_dest, 42) == 0); } px4_msgs__msg__MissionResult * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // instance_count PyObject * field = PyObject_GetAttrString(_pymsg, "instance_count"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->instance_count = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // seq_reached PyObject * field = PyObject_GetAttrString(_pymsg, "seq_reached"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->seq_reached = (int32_t)PyLong_AsLong(field); Py_DECREF(field); } { // seq_current PyObject * field = PyObject_GetAttrString(_pymsg, "seq_current"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->seq_current = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // seq_total PyObject * field = PyObject_GetAttrString(_pymsg, "seq_total"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->seq_total = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // valid PyObject * field = PyObject_GetAttrString(_pymsg, "valid"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->valid = (Py_True == field); Py_DECREF(field); } { // warning PyObject * field = PyObject_GetAttrString(_pymsg, "warning"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->warning = (Py_True == field); Py_DECREF(field); } { // finished PyObject * field = PyObject_GetAttrString(_pymsg, "finished"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->finished = (Py_True == field); Py_DECREF(field); } { // failure PyObject * field = PyObject_GetAttrString(_pymsg, "failure"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->failure = (Py_True == field); Py_DECREF(field); } { // stay_in_failsafe PyObject * field = PyObject_GetAttrString(_pymsg, "stay_in_failsafe"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->stay_in_failsafe = (Py_True == field); Py_DECREF(field); } { // flight_termination PyObject * field = PyObject_GetAttrString(_pymsg, "flight_termination"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->flight_termination = (Py_True == field); Py_DECREF(field); } { // item_do_jump_changed PyObject * field = PyObject_GetAttrString(_pymsg, "item_do_jump_changed"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->item_do_jump_changed = (Py_True == field); Py_DECREF(field); } { // item_changed_index PyObject * field = PyObject_GetAttrString(_pymsg, "item_changed_index"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->item_changed_index = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // item_do_jump_remaining PyObject * field = PyObject_GetAttrString(_pymsg, "item_do_jump_remaining"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->item_do_jump_remaining = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // execution_mode PyObject * field = PyObject_GetAttrString(_pymsg, "execution_mode"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->execution_mode = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__mission_result__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of MissionResult */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._mission_result"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "MissionResult"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__MissionResult * ros_message = (px4_msgs__msg__MissionResult *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // instance_count PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->instance_count); { int rc = PyObject_SetAttrString(_pymessage, "instance_count", field); Py_DECREF(field); if (rc) { return NULL; } } } { // seq_reached PyObject * field = NULL; field = PyLong_FromLong(ros_message->seq_reached); { int rc = PyObject_SetAttrString(_pymessage, "seq_reached", field); Py_DECREF(field); if (rc) { return NULL; } } } { // seq_current PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->seq_current); { int rc = PyObject_SetAttrString(_pymessage, "seq_current", field); Py_DECREF(field); if (rc) { return NULL; } } } { // seq_total PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->seq_total); { int rc = PyObject_SetAttrString(_pymessage, "seq_total", field); Py_DECREF(field); if (rc) { return NULL; } } } { // valid PyObject * field = NULL; field = PyBool_FromLong(ros_message->valid ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "valid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // warning PyObject * field = NULL; field = PyBool_FromLong(ros_message->warning ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "warning", field); Py_DECREF(field); if (rc) { return NULL; } } } { // finished PyObject * field = NULL; field = PyBool_FromLong(ros_message->finished ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "finished", field); Py_DECREF(field); if (rc) { return NULL; } } } { // failure PyObject * field = NULL; field = PyBool_FromLong(ros_message->failure ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "failure", field); Py_DECREF(field); if (rc) { return NULL; } } } { // stay_in_failsafe PyObject * field = NULL; field = PyBool_FromLong(ros_message->stay_in_failsafe ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "stay_in_failsafe", field); Py_DECREF(field); if (rc) { return NULL; } } } { // flight_termination PyObject * field = NULL; field = PyBool_FromLong(ros_message->flight_termination ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "flight_termination", field); Py_DECREF(field); if (rc) { return NULL; } } } { // item_do_jump_changed PyObject * field = NULL; field = PyBool_FromLong(ros_message->item_do_jump_changed ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "item_do_jump_changed", field); Py_DECREF(field); if (rc) { return NULL; } } } { // item_changed_index PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->item_changed_index); { int rc = PyObject_SetAttrString(_pymessage, "item_changed_index", field); Py_DECREF(field); if (rc) { return NULL; } } } { // item_do_jump_remaining PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->item_do_jump_remaining); { int rc = PyObject_SetAttrString(_pymessage, "item_do_jump_remaining", field); Py_DECREF(field); if (rc) { return NULL; } } } { // execution_mode PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->execution_mode); { int rc = PyObject_SetAttrString(_pymessage, "execution_mode", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/onboard_computer_status__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/OnboardComputerStatus.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/onboard_computer_status__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void OnboardComputerStatus_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::OnboardComputerStatus(_init); } void OnboardComputerStatus_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::OnboardComputerStatus *>(message_memory); typed_message->~OnboardComputerStatus(); } size_t size_function__OnboardComputerStatus__cpu_cores(const void * untyped_member) { (void)untyped_member; return 8; } const void * get_const_function__OnboardComputerStatus__cpu_cores(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint8_t, 8> *>(untyped_member); return &member[index]; } void * get_function__OnboardComputerStatus__cpu_cores(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint8_t, 8> *>(untyped_member); return &member[index]; } size_t size_function__OnboardComputerStatus__cpu_combined(const void * untyped_member) { (void)untyped_member; return 10; } const void * get_const_function__OnboardComputerStatus__cpu_combined(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint8_t, 10> *>(untyped_member); return &member[index]; } void * get_function__OnboardComputerStatus__cpu_combined(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint8_t, 10> *>(untyped_member); return &member[index]; } size_t size_function__OnboardComputerStatus__gpu_cores(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__OnboardComputerStatus__gpu_cores(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint8_t, 4> *>(untyped_member); return &member[index]; } void * get_function__OnboardComputerStatus__gpu_cores(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint8_t, 4> *>(untyped_member); return &member[index]; } size_t size_function__OnboardComputerStatus__gpu_combined(const void * untyped_member) { (void)untyped_member; return 10; } const void * get_const_function__OnboardComputerStatus__gpu_combined(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint8_t, 10> *>(untyped_member); return &member[index]; } void * get_function__OnboardComputerStatus__gpu_combined(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint8_t, 10> *>(untyped_member); return &member[index]; } size_t size_function__OnboardComputerStatus__temperature_core(const void * untyped_member) { (void)untyped_member; return 8; } const void * get_const_function__OnboardComputerStatus__temperature_core(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<int8_t, 8> *>(untyped_member); return &member[index]; } void * get_function__OnboardComputerStatus__temperature_core(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<int8_t, 8> *>(untyped_member); return &member[index]; } size_t size_function__OnboardComputerStatus__fan_speed(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__OnboardComputerStatus__fan_speed(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<int16_t, 4> *>(untyped_member); return &member[index]; } void * get_function__OnboardComputerStatus__fan_speed(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<int16_t, 4> *>(untyped_member); return &member[index]; } size_t size_function__OnboardComputerStatus__storage_type(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__OnboardComputerStatus__storage_type(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint32_t, 4> *>(untyped_member); return &member[index]; } void * get_function__OnboardComputerStatus__storage_type(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint32_t, 4> *>(untyped_member); return &member[index]; } size_t size_function__OnboardComputerStatus__storage_usage(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__OnboardComputerStatus__storage_usage(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint32_t, 4> *>(untyped_member); return &member[index]; } void * get_function__OnboardComputerStatus__storage_usage(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint32_t, 4> *>(untyped_member); return &member[index]; } size_t size_function__OnboardComputerStatus__storage_total(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__OnboardComputerStatus__storage_total(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint32_t, 4> *>(untyped_member); return &member[index]; } void * get_function__OnboardComputerStatus__storage_total(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint32_t, 4> *>(untyped_member); return &member[index]; } size_t size_function__OnboardComputerStatus__link_type(const void * untyped_member) { (void)untyped_member; return 6; } const void * get_const_function__OnboardComputerStatus__link_type(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint32_t, 6> *>(untyped_member); return &member[index]; } void * get_function__OnboardComputerStatus__link_type(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint32_t, 6> *>(untyped_member); return &member[index]; } size_t size_function__OnboardComputerStatus__link_tx_rate(const void * untyped_member) { (void)untyped_member; return 6; } const void * get_const_function__OnboardComputerStatus__link_tx_rate(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint32_t, 6> *>(untyped_member); return &member[index]; } void * get_function__OnboardComputerStatus__link_tx_rate(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint32_t, 6> *>(untyped_member); return &member[index]; } size_t size_function__OnboardComputerStatus__link_rx_rate(const void * untyped_member) { (void)untyped_member; return 6; } const void * get_const_function__OnboardComputerStatus__link_rx_rate(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint32_t, 6> *>(untyped_member); return &member[index]; } void * get_function__OnboardComputerStatus__link_rx_rate(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint32_t, 6> *>(untyped_member); return &member[index]; } size_t size_function__OnboardComputerStatus__link_tx_max(const void * untyped_member) { (void)untyped_member; return 6; } const void * get_const_function__OnboardComputerStatus__link_tx_max(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint32_t, 6> *>(untyped_member); return &member[index]; } void * get_function__OnboardComputerStatus__link_tx_max(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint32_t, 6> *>(untyped_member); return &member[index]; } size_t size_function__OnboardComputerStatus__link_rx_max(const void * untyped_member) { (void)untyped_member; return 6; } const void * get_const_function__OnboardComputerStatus__link_rx_max(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint32_t, 6> *>(untyped_member); return &member[index]; } void * get_function__OnboardComputerStatus__link_rx_max(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint32_t, 6> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember OnboardComputerStatus_message_member_array[20] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::OnboardComputerStatus, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "uptime", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::OnboardComputerStatus, uptime), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "type", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::OnboardComputerStatus, type), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cpu_cores", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 8, // array size false, // is upper bound offsetof(px4_msgs::msg::OnboardComputerStatus, cpu_cores), // bytes offset in struct nullptr, // default value size_function__OnboardComputerStatus__cpu_cores, // size() function pointer get_const_function__OnboardComputerStatus__cpu_cores, // get_const(index) function pointer get_function__OnboardComputerStatus__cpu_cores, // get(index) function pointer nullptr // resize(index) function pointer }, { "cpu_combined", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 10, // array size false, // is upper bound offsetof(px4_msgs::msg::OnboardComputerStatus, cpu_combined), // bytes offset in struct nullptr, // default value size_function__OnboardComputerStatus__cpu_combined, // size() function pointer get_const_function__OnboardComputerStatus__cpu_combined, // get_const(index) function pointer get_function__OnboardComputerStatus__cpu_combined, // get(index) function pointer nullptr // resize(index) function pointer }, { "gpu_cores", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::OnboardComputerStatus, gpu_cores), // bytes offset in struct nullptr, // default value size_function__OnboardComputerStatus__gpu_cores, // size() function pointer get_const_function__OnboardComputerStatus__gpu_cores, // get_const(index) function pointer get_function__OnboardComputerStatus__gpu_cores, // get(index) function pointer nullptr // resize(index) function pointer }, { "gpu_combined", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 10, // array size false, // is upper bound offsetof(px4_msgs::msg::OnboardComputerStatus, gpu_combined), // bytes offset in struct nullptr, // default value size_function__OnboardComputerStatus__gpu_combined, // size() function pointer get_const_function__OnboardComputerStatus__gpu_combined, // get_const(index) function pointer get_function__OnboardComputerStatus__gpu_combined, // get(index) function pointer nullptr // resize(index) function pointer }, { "temperature_board", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::OnboardComputerStatus, temperature_board), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "temperature_core", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT8, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 8, // array size false, // is upper bound offsetof(px4_msgs::msg::OnboardComputerStatus, temperature_core), // bytes offset in struct nullptr, // default value size_function__OnboardComputerStatus__temperature_core, // size() function pointer get_const_function__OnboardComputerStatus__temperature_core, // get_const(index) function pointer get_function__OnboardComputerStatus__temperature_core, // get(index) function pointer nullptr // resize(index) function pointer }, { "fan_speed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT16, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::OnboardComputerStatus, fan_speed), // bytes offset in struct nullptr, // default value size_function__OnboardComputerStatus__fan_speed, // size() function pointer get_const_function__OnboardComputerStatus__fan_speed, // get_const(index) function pointer get_function__OnboardComputerStatus__fan_speed, // get(index) function pointer nullptr // resize(index) function pointer }, { "ram_usage", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::OnboardComputerStatus, ram_usage), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ram_total", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::OnboardComputerStatus, ram_total), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "storage_type", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::OnboardComputerStatus, storage_type), // bytes offset in struct nullptr, // default value size_function__OnboardComputerStatus__storage_type, // size() function pointer get_const_function__OnboardComputerStatus__storage_type, // get_const(index) function pointer get_function__OnboardComputerStatus__storage_type, // get(index) function pointer nullptr // resize(index) function pointer }, { "storage_usage", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::OnboardComputerStatus, storage_usage), // bytes offset in struct nullptr, // default value size_function__OnboardComputerStatus__storage_usage, // size() function pointer get_const_function__OnboardComputerStatus__storage_usage, // get_const(index) function pointer get_function__OnboardComputerStatus__storage_usage, // get(index) function pointer nullptr // resize(index) function pointer }, { "storage_total", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::OnboardComputerStatus, storage_total), // bytes offset in struct nullptr, // default value size_function__OnboardComputerStatus__storage_total, // size() function pointer get_const_function__OnboardComputerStatus__storage_total, // get_const(index) function pointer get_function__OnboardComputerStatus__storage_total, // get(index) function pointer nullptr // resize(index) function pointer }, { "link_type", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 6, // array size false, // is upper bound offsetof(px4_msgs::msg::OnboardComputerStatus, link_type), // bytes offset in struct nullptr, // default value size_function__OnboardComputerStatus__link_type, // size() function pointer get_const_function__OnboardComputerStatus__link_type, // get_const(index) function pointer get_function__OnboardComputerStatus__link_type, // get(index) function pointer nullptr // resize(index) function pointer }, { "link_tx_rate", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 6, // array size false, // is upper bound offsetof(px4_msgs::msg::OnboardComputerStatus, link_tx_rate), // bytes offset in struct nullptr, // default value size_function__OnboardComputerStatus__link_tx_rate, // size() function pointer get_const_function__OnboardComputerStatus__link_tx_rate, // get_const(index) function pointer get_function__OnboardComputerStatus__link_tx_rate, // get(index) function pointer nullptr // resize(index) function pointer }, { "link_rx_rate", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 6, // array size false, // is upper bound offsetof(px4_msgs::msg::OnboardComputerStatus, link_rx_rate), // bytes offset in struct nullptr, // default value size_function__OnboardComputerStatus__link_rx_rate, // size() function pointer get_const_function__OnboardComputerStatus__link_rx_rate, // get_const(index) function pointer get_function__OnboardComputerStatus__link_rx_rate, // get(index) function pointer nullptr // resize(index) function pointer }, { "link_tx_max", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 6, // array size false, // is upper bound offsetof(px4_msgs::msg::OnboardComputerStatus, link_tx_max), // bytes offset in struct nullptr, // default value size_function__OnboardComputerStatus__link_tx_max, // size() function pointer get_const_function__OnboardComputerStatus__link_tx_max, // get_const(index) function pointer get_function__OnboardComputerStatus__link_tx_max, // get(index) function pointer nullptr // resize(index) function pointer }, { "link_rx_max", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 6, // array size false, // is upper bound offsetof(px4_msgs::msg::OnboardComputerStatus, link_rx_max), // bytes offset in struct nullptr, // default value size_function__OnboardComputerStatus__link_rx_max, // size() function pointer get_const_function__OnboardComputerStatus__link_rx_max, // get_const(index) function pointer get_function__OnboardComputerStatus__link_rx_max, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers OnboardComputerStatus_message_members = { "px4_msgs::msg", // message namespace "OnboardComputerStatus", // message name 20, // number of fields sizeof(px4_msgs::msg::OnboardComputerStatus), OnboardComputerStatus_message_member_array, // message members OnboardComputerStatus_init_function, // function to initialize message memory (memory has to be allocated) OnboardComputerStatus_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t OnboardComputerStatus_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &OnboardComputerStatus_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::OnboardComputerStatus>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::OnboardComputerStatus_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, OnboardComputerStatus)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::OnboardComputerStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/sensor_gyro_fft__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/SensorGyroFft.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/sensor_gyro_fft__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/sensor_gyro_fft__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::SensorGyroFft & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: timestamp_sample cdr << ros_message.timestamp_sample; // Member: device_id cdr << ros_message.device_id; // Member: sensor_sample_rate_hz cdr << ros_message.sensor_sample_rate_hz; // Member: resolution_hz cdr << ros_message.resolution_hz; // Member: peak_frequencies_x { cdr << ros_message.peak_frequencies_x; } // Member: peak_frequencies_y { cdr << ros_message.peak_frequencies_y; } // Member: peak_frequencies_z { cdr << ros_message.peak_frequencies_z; } // Member: peak_magnitude_x { cdr << ros_message.peak_magnitude_x; } // Member: peak_magnitude_y { cdr << ros_message.peak_magnitude_y; } // Member: peak_magnitude_z { cdr << ros_message.peak_magnitude_z; } return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::SensorGyroFft & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: timestamp_sample cdr >> ros_message.timestamp_sample; // Member: device_id cdr >> ros_message.device_id; // Member: sensor_sample_rate_hz cdr >> ros_message.sensor_sample_rate_hz; // Member: resolution_hz cdr >> ros_message.resolution_hz; // Member: peak_frequencies_x { cdr >> ros_message.peak_frequencies_x; } // Member: peak_frequencies_y { cdr >> ros_message.peak_frequencies_y; } // Member: peak_frequencies_z { cdr >> ros_message.peak_frequencies_z; } // Member: peak_magnitude_x { cdr >> ros_message.peak_magnitude_x; } // Member: peak_magnitude_y { cdr >> ros_message.peak_magnitude_y; } // Member: peak_magnitude_z { cdr >> ros_message.peak_magnitude_z; } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::SensorGyroFft & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: timestamp_sample { size_t item_size = sizeof(ros_message.timestamp_sample); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: device_id { size_t item_size = sizeof(ros_message.device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: sensor_sample_rate_hz { size_t item_size = sizeof(ros_message.sensor_sample_rate_hz); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: resolution_hz { size_t item_size = sizeof(ros_message.resolution_hz); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: peak_frequencies_x { size_t array_size = 6; size_t item_size = sizeof(ros_message.peak_frequencies_x[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: peak_frequencies_y { size_t array_size = 6; size_t item_size = sizeof(ros_message.peak_frequencies_y[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: peak_frequencies_z { size_t array_size = 6; size_t item_size = sizeof(ros_message.peak_frequencies_z[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: peak_magnitude_x { size_t array_size = 6; size_t item_size = sizeof(ros_message.peak_magnitude_x[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: peak_magnitude_y { size_t array_size = 6; size_t item_size = sizeof(ros_message.peak_magnitude_y[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: peak_magnitude_z { size_t array_size = 6; size_t item_size = sizeof(ros_message.peak_magnitude_z[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_SensorGyroFft( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: timestamp_sample { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: sensor_sample_rate_hz { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: resolution_hz { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: peak_frequencies_x { size_t array_size = 6; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: peak_frequencies_y { size_t array_size = 6; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: peak_frequencies_z { size_t array_size = 6; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: peak_magnitude_x { size_t array_size = 6; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: peak_magnitude_y { size_t array_size = 6; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: peak_magnitude_z { size_t array_size = 6; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static bool _SensorGyroFft__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::SensorGyroFft *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _SensorGyroFft__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::SensorGyroFft *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _SensorGyroFft__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::SensorGyroFft *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _SensorGyroFft__max_serialized_size(bool & full_bounded) { return max_serialized_size_SensorGyroFft(full_bounded, 0); } static message_type_support_callbacks_t _SensorGyroFft__callbacks = { "px4_msgs::msg", "SensorGyroFft", _SensorGyroFft__cdr_serialize, _SensorGyroFft__cdr_deserialize, _SensorGyroFft__get_serialized_size, _SensorGyroFft__max_serialized_size }; static rosidl_message_type_support_t _SensorGyroFft__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_SensorGyroFft__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::SensorGyroFft>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_SensorGyroFft__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, SensorGyroFft)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_SensorGyroFft__handle; } #ifdef __cplusplus } #endif <file_sep>/build/multi_rtd/build/lib/multi_rtd/multi_planner.py import rclpy from rclpy.node import Node import numpy as np import os from LPM import LPM from planner_utils import * from nav_msgs.msg import Path from geometry_msgs.msg import PointStamped from multi_rtd_interfaces.msg import RobotTrajectory class MultiPlanner(Node): """Multi-agent Planner """ def __init__(self, lpm_file): super().__init__('multi_planner') """ --------------- Timing and global variables --------------- """ self.T_REPLAN = 0.3 # [s] amount of time between replans self.T_PLAN = 0.1 # [s] amount of time allotted for planning itself (remaining time allotted for checking) self.N_BOTS = 3 # total number of bots in the sim self.N_DIM = 3 self.R_BOT = 0.25 # [m] self.XY_BOUNDS = [-5.0, 5.0] # [m] self.Z_BOUNDS = [0.0, 5.0] # [m] # get namespace # self.name = self.get_namespace() self.name = '/ibqr1/' # replan timer self.replan_timer = self.create_timer(self.T_REPLAN, self.replan) self.init_time = self.get_abs_time() """ --------------- Publishers and Subscribers --------------- """ # publisher for planned trajectory self.traj_pub = self.create_publisher(RobotTrajectory, self.name + 'planner/traj', 10) # subscriber for goal position goal_sub = self.create_subscription(PointStamped, self.name + 'planner/goal', self.goal_callback, 10) self.goal_pub = self.create_publisher(PointStamped, self.name + 'planner/goal', 10) # subscribers for peer robot plans plan_subs = {} peer_bots = ['/ibqr' + str(i) + '/' for i in range(1,self.N_BOTS+1)] peer_bots.remove(self.name) for peer_bot in peer_bots: topic = peer_bot + 'planner/traj' plan_subs[peer_bot] = self.create_subscription(RobotTrajectory, topic, self.traj_callback, 10) """ --------------- Planning variables --------------- """ # init LPM object self.lpm = LPM(lpm_file) self.n_t_plan = len(self.lpm.time) # planned trajectory length self.n_plan_max = 10000 # max number of plans to evaluate # initial conditions [m],[m/s],[m/s^2] self.p_0 = np.zeros((3,1)) self.p_0[0] = 0; self.p_0[1] = 0 self.p_0[:2] = np.reshape(np.random.uniform(self.XY_BOUNDS[0], self.XY_BOUNDS[1], 2), (2,1)) self.v_0 = np.zeros((3,1)) self.a_0 = np.zeros((3,1)) # own current plan (10 x N) # pending and committed # each column has [t, px, py, pz, vx, vy, vz, ax, ay, az]^T self.pend_plan = np.zeros((1+3*self.N_DIM, self.n_t_plan)) self.commit_plan = np.zeros((1+3*self.N_DIM, self.n_t_plan)) # initialize with stationary plan self.pend_plan[0,:] = self.lpm.time self.pend_plan[1:4,:] = np.tile(self.p_0, (1,self.n_t_plan)) self.commit_plan[0,:] = self.lpm.time self.commit_plan[1:4,:] = np.tile(self.p_0, (1,self.n_t_plan)) # dictionary of peers' committed plans self.committed_plans = {} # max velocity constraints [m/s] self.v_max = 2.0 # L1 velocity constraints self.V_bounds = np.tile(np.array([-self.v_max, self.v_max]), (1,3))[0] self.v_max_norm = 2.0 # L2 velocity constraints self.delta_v_peak_max = 3.0 # delta from initial velocity constraint # goal [m] self.p_goal = np.zeros((3,1)) self.p_goal[:2] = np.reshape(np.random.uniform(self.XY_BOUNDS[0], self.XY_BOUNDS[1], 2), (2,1)) self.p_goal[2] = np.random.uniform(self.Z_BOUNDS[0], self.Z_BOUNDS[1]) #self.p_goal = np.array([[5],[5],[0]]) self.flag_new_goal = False self.r_goal_reached = 0.3 # [m] stop planning when within this dist of goal def get_time(self): """Time since class was initialized. Rounded to nearest t_sample. """ return self.get_abs_time() - self.init_time def get_abs_time(self): """ROS time in seconds. Returns ------- float ROS time in seconds. """ return self.get_clock().now().nanoseconds / 1e9 # def get_discrete_time(self): # """ROS time rounded to nearest t_sample. # """ # return round_to(self.get_abs_time(), self.t_sample) def goal_callback(self, data): """Goal subscriber callback. Stores desired goal. """ rospy.loginfo("Goal Callback") self.p_goal = np.array([[data.point.x], [data.point.y], [data.point.z]]) self.flag_new_goal = True def traj_callback(self, data): """Peer plan callback. Save peer committed plan. """ bot_name = data.robot_name traj = data.trajectory x_pos = traj.points[0].positions y_pos = traj.points[1].positions z_pos = traj.points[2].positions t2start = traj.points[0].time_from_start time = self.lpm.time + t2start.to_sec() plan = np.vstack((time, x_pos, y_pos, z_pos)) # save plan and time received self.committed_plans[bot_name] = (plan, self.get_time()) def check_peer_plan_collisions(self, plan): """ Check a plan against peers' committed plans for collision. Parameters ---------- plan : np.array Candidate plan to check against peers' committed plans. Returns ------- bool True if plan is safe, False if there is a collision. """ for bot in self.committed_plans.keys(): other_plan = self.committed_plans[bot][0] if not check_plan_collision(plan, other_plan, 2*self.R_BOT): return False return True def traj_opt(self, t_start_plan, T_old, X_old, t2start, T_new): """Trajectory optimization. Attempt to find a collision-free plan (v_peak) which brings the agent closest to its goal. Parameters ---------- t_start_plan : float Start time of current planning instance. T_old : np.array Time vector for the old plan. X_old : np.array State vector for the old plan. t2start : float Time to start the new plan from. T_new: np.array Time vector for new plan. Returns ------- np.array Peak velocities for new plan. """ # index current plan to get initial condition for new plan x_0 = trajectory_closest_point(t2start, T_old, X_old) # update initial conditions self.p_0 = np.reshape(x_0[:self.N_DIM], (3,1)) self.v_0 = np.reshape(x_0[self.N_DIM:2*self.N_DIM], (3,1)) self.a_0 = np.reshape(x_0[2*self.N_DIM:3*self.N_DIM], (3,1)) # generate potential v_peak samples V_peak = rand_in_bounds(self.V_bounds, self.n_plan_max) # eliminate samples that exceed the max velocity and max delta # from initial velocity V_peak_mag = np.linalg.norm(V_peak, 2, 0) delta_V_peak_mag = np.linalg.norm(V_peak - np.tile(self.v_0,(1,self.n_plan_max)), 2, 0) V_peak_test = np.logical_and(V_peak_mag < self.v_max_norm, delta_V_peak_mag < self.delta_v_peak_max) V_peak = V_peak[:,V_peak_test] # get number of potentially feasible sample to iterate through n_V_peak = V_peak.shape[1] # calculate the endpoints for the sample v_peaks lpm_p_final = self.lpm.p_mat[:,-1] p_from_v_0_and_a_0 = np.reshape(np.dot(np.hstack((self.v_0, self.a_0)), lpm_p_final[:2]),(3,1)) + self.p_0 p_from_v_peak = lpm_p_final[2] * V_peak + np.tile(p_from_v_0_and_a_0, (1,n_V_peak)) # sort V_peaks by distance to goal dist_to_goal = np.linalg.norm(p_from_v_peak - np.tile(self.p_goal, (1,n_V_peak)), 2, 0) V_sort_idxs = np.argsort(dist_to_goal) V_peak = V_peak[:,V_sort_idxs] # iterate through V_peaks until we find a feasible one idx_v_peak = 0 while (idx_v_peak <= n_V_peak) and (self.get_time() - t_start_plan < self.T_PLAN): # get trajectory positions for current v_peak v_peak = np.reshape(V_peak[:,idx_v_peak], (3,1)) P_idx = np.matmul(np.hstack((self.v_0, self.a_0, v_peak)), self.lpm.p_mat) + np.tile(self.p_0, (1,self.n_t_plan)) cand_plan = np.vstack((T_new, P_idx)) # check against other plans check_others = self.check_peer_plan_collisions(cand_plan) # check against obstacles # TODO if check_others: return v_peak else: idx_v_peak += 1 # no v_peaks are feasible return None def check(self, t_start_plan): """Post optimization check. Checks if current pending plan collides with any peer plans. Returns ------- bool True if success, False if failed. """ for bot in self.committed_plans.keys(): # plan was committed during optimization if self.committed_plans[bot][1] > t_start_plan: # check if it collides with pending plan if not check_plan_collision(self.pend_plan, self.committed_plans[bot][0], 2*self.R_BOT): # check failed return False # no conflicts - check success return True def recheck(self, t_start_check): """Post check check. Checks if any peer plans were committed (published) during the check. Returns ------- bool True if success, False if failed. """ for bot in self.committed_plans.keys(): # plan was committed during check if self.committed_plans[bot][1] > t_start_check: # bail out :( return False # no conflicts - recheck success return True def replan(self): """Replan Perform trajectory optimization, checking, and rechecking """ # start timer t_start_plan = self.get_time() self.get_logger().info(str(t_start_plan)) # get current plan T_old = self.commit_plan[0,:] X_old = self.commit_plan[1:,:] # time to start the trajectory from (relative to absolute time) t2start = self.get_abs_time() + self.T_REPLAN # create time vector for the new plan T_new = self.lpm.time + t2start # find a new v_peak v_peak = self.traj_opt(t_start_plan, T_old, X_old, t2start, T_new) # if no new plan found continue previous plan if v_peak is None: self.get_logger().info("Failed to find a new plan") # select parts of the previous plan that are yet to be executed T_log = T_old >= self.get_time() self.get_logger().info(str(T_log.shape)) self.get_logger().info(str(T_old.shape)) self.get_logger().info(str((T_old[-1] + self.T_PLAN).shape)) # increase the length of the old plan by t_plan self.commit_plan[0,:] = np.hstack((T_old[T_log], T_old[-1] + self.T_PLAN)) self.commit_plan[1:,:] = np.hstack((X_old[:,T_log], X_old[:,-1])) return # otherwise, create a new pending plan and enter checking phase else: self.get_logger().info("Found a new plan") k = np.hstack((self.v_0, self.a_0, v_peak)) p,v,a = self.lpm.compute_trajectory(k) p = p + self.p_0 # translate to p_0 self.pend_plan[0,:] = T_new self.pend_plan[1:,:] = np.vstack((p,v,a)) # get checking start time t_start_check = self.get_time() # check pending plan against recently committed plans if self.check(t_start_plan): self.get_logger().info("Check succeeded") # if check passes, do final recheck if self.recheck(t_start_check): self.get_logger().info("Recheck succeeded") # planning has succeeded! commit and publish the plan self.commit_plan[0,:] = self.pend_plan[0,:] self.commit_plan[1:,:] = self.pend_plan[1:,:] traj_msg = wrap_robot_traj_msg((p,v,a), t2start, self.name) self.traj_pub.publish(traj_msg) # if either check or recheck fails, bail out and revert to previous plan # TODO? return # end if current committed trajectory endpoint reaches goal # if np.linalg.norm(np.reshape(self.commit_plan[1:4,-1], (3,1)) - self.p_goal) < self.r_goal_reached: # rospy.loginfo("Successfully planned trajectory to goal...exiting") # rospy.signal_shutdown("Planner finished") # return def main(args=None): print("Running Multi-Robot Planner") rclpy.init(args=args) # get LPM path script_dir = os.path.dirname(os.path.abspath('src')) lpm_path = script_dir + '/src/px4_multi_agent_planning/multi_rtd/multi_rtd/quadrotor_linear_planning_model.mat' multi_planner = MultiPlanner(lpm_path) rclpy.spin(multi_planner) # Destroy the node explicitly # (optional - otherwise it will be done automatically # when the garbage collector destroys the node object) multi_planner.destroy_node() rclpy.shutdown() if __name__ == '__main__': main()<file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/transponder_report__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/TransponderReport.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TRANSPONDER_REPORT__STRUCT_H_ #define PX4_MSGS__MSG__TRANSPONDER_REPORT__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'PX4_ADSB_FLAGS_VALID_COORDS'. enum { px4_msgs__msg__TransponderReport__PX4_ADSB_FLAGS_VALID_COORDS = 1 }; /// Constant 'PX4_ADSB_FLAGS_VALID_ALTITUDE'. enum { px4_msgs__msg__TransponderReport__PX4_ADSB_FLAGS_VALID_ALTITUDE = 2 }; /// Constant 'PX4_ADSB_FLAGS_VALID_HEADING'. enum { px4_msgs__msg__TransponderReport__PX4_ADSB_FLAGS_VALID_HEADING = 4 }; /// Constant 'PX4_ADSB_FLAGS_VALID_VELOCITY'. enum { px4_msgs__msg__TransponderReport__PX4_ADSB_FLAGS_VALID_VELOCITY = 8 }; /// Constant 'PX4_ADSB_FLAGS_VALID_CALLSIGN'. enum { px4_msgs__msg__TransponderReport__PX4_ADSB_FLAGS_VALID_CALLSIGN = 16 }; /// Constant 'PX4_ADSB_FLAGS_VALID_SQUAWK'. enum { px4_msgs__msg__TransponderReport__PX4_ADSB_FLAGS_VALID_SQUAWK = 32 }; /// Constant 'PX4_ADSB_FLAGS_RETRANSLATE'. enum { px4_msgs__msg__TransponderReport__PX4_ADSB_FLAGS_RETRANSLATE = 256 }; /// Constant 'ADSB_EMITTER_TYPE_NO_INFO'. enum { px4_msgs__msg__TransponderReport__ADSB_EMITTER_TYPE_NO_INFO = 0 }; /// Constant 'ADSB_EMITTER_TYPE_LIGHT'. enum { px4_msgs__msg__TransponderReport__ADSB_EMITTER_TYPE_LIGHT = 1 }; /// Constant 'ADSB_EMITTER_TYPE_SMALL'. enum { px4_msgs__msg__TransponderReport__ADSB_EMITTER_TYPE_SMALL = 2 }; /// Constant 'ADSB_EMITTER_TYPE_LARGE'. enum { px4_msgs__msg__TransponderReport__ADSB_EMITTER_TYPE_LARGE = 3 }; /// Constant 'ADSB_EMITTER_TYPE_HIGH_VORTEX_LARGE'. enum { px4_msgs__msg__TransponderReport__ADSB_EMITTER_TYPE_HIGH_VORTEX_LARGE = 4 }; /// Constant 'ADSB_EMITTER_TYPE_HEAVY'. enum { px4_msgs__msg__TransponderReport__ADSB_EMITTER_TYPE_HEAVY = 5 }; /// Constant 'ADSB_EMITTER_TYPE_HIGHLY_MANUV'. enum { px4_msgs__msg__TransponderReport__ADSB_EMITTER_TYPE_HIGHLY_MANUV = 6 }; /// Constant 'ADSB_EMITTER_TYPE_ROTOCRAFT'. enum { px4_msgs__msg__TransponderReport__ADSB_EMITTER_TYPE_ROTOCRAFT = 7 }; /// Constant 'ADSB_EMITTER_TYPE_UNASSIGNED'. enum { px4_msgs__msg__TransponderReport__ADSB_EMITTER_TYPE_UNASSIGNED = 8 }; /// Constant 'ADSB_EMITTER_TYPE_GLIDER'. enum { px4_msgs__msg__TransponderReport__ADSB_EMITTER_TYPE_GLIDER = 9 }; /// Constant 'ADSB_EMITTER_TYPE_LIGHTER_AIR'. enum { px4_msgs__msg__TransponderReport__ADSB_EMITTER_TYPE_LIGHTER_AIR = 10 }; /// Constant 'ADSB_EMITTER_TYPE_PARACHUTE'. enum { px4_msgs__msg__TransponderReport__ADSB_EMITTER_TYPE_PARACHUTE = 11 }; /// Constant 'ADSB_EMITTER_TYPE_ULTRA_LIGHT'. enum { px4_msgs__msg__TransponderReport__ADSB_EMITTER_TYPE_ULTRA_LIGHT = 12 }; /// Constant 'ADSB_EMITTER_TYPE_UNASSIGNED2'. enum { px4_msgs__msg__TransponderReport__ADSB_EMITTER_TYPE_UNASSIGNED2 = 13 }; /// Constant 'ADSB_EMITTER_TYPE_UAV'. enum { px4_msgs__msg__TransponderReport__ADSB_EMITTER_TYPE_UAV = 14 }; /// Constant 'ADSB_EMITTER_TYPE_SPACE'. enum { px4_msgs__msg__TransponderReport__ADSB_EMITTER_TYPE_SPACE = 15 }; /// Constant 'ADSB_EMITTER_TYPE_UNASSGINED3'. enum { px4_msgs__msg__TransponderReport__ADSB_EMITTER_TYPE_UNASSGINED3 = 16 }; /// Constant 'ADSB_EMITTER_TYPE_EMERGENCY_SURFACE'. enum { px4_msgs__msg__TransponderReport__ADSB_EMITTER_TYPE_EMERGENCY_SURFACE = 17 }; /// Constant 'ADSB_EMITTER_TYPE_SERVICE_SURFACE'. enum { px4_msgs__msg__TransponderReport__ADSB_EMITTER_TYPE_SERVICE_SURFACE = 18 }; /// Constant 'ADSB_EMITTER_TYPE_POINT_OBSTACLE'. enum { px4_msgs__msg__TransponderReport__ADSB_EMITTER_TYPE_POINT_OBSTACLE = 19 }; /// Constant 'ADSB_EMITTER_TYPE_ENUM_END'. enum { px4_msgs__msg__TransponderReport__ADSB_EMITTER_TYPE_ENUM_END = 20 }; /// Constant 'ORB_QUEUE_LENGTH'. enum { px4_msgs__msg__TransponderReport__ORB_QUEUE_LENGTH = 8 }; // Struct defined in msg/TransponderReport in the package px4_msgs. typedef struct px4_msgs__msg__TransponderReport { uint64_t timestamp; uint32_t icao_address; double lat; double lon; uint8_t altitude_type; float altitude; float heading; float hor_velocity; float ver_velocity; uint8_t callsign[9]; uint8_t emitter_type; uint8_t tslc; uint16_t flags; uint16_t squawk; uint8_t uas_id[18]; } px4_msgs__msg__TransponderReport; // Struct for a sequence of px4_msgs__msg__TransponderReport. typedef struct px4_msgs__msg__TransponderReport__Sequence { px4_msgs__msg__TransponderReport * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__TransponderReport__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__TRANSPONDER_REPORT__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_attitude.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/EstimatorAttitude.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_ATTITUDE_H_ #define PX4_MSGS__MSG__ESTIMATOR_ATTITUDE_H_ #include "px4_msgs/msg/estimator_attitude__struct.h" #include "px4_msgs/msg/estimator_attitude__functions.h" #include "px4_msgs/msg/estimator_attitude__type_support.h" #endif // PX4_MSGS__MSG__ESTIMATOR_ATTITUDE_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/uavcan_parameter_value__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/UavcanParameterValue.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/uavcan_parameter_value__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/uavcan_parameter_value__functions.h" #include "px4_msgs/msg/uavcan_parameter_value__struct.h" #ifdef __cplusplus extern "C" { #endif void UavcanParameterValue__rosidl_typesupport_introspection_c__UavcanParameterValue_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__UavcanParameterValue__init(message_memory); } void UavcanParameterValue__rosidl_typesupport_introspection_c__UavcanParameterValue_fini_function(void * message_memory) { px4_msgs__msg__UavcanParameterValue__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember UavcanParameterValue__rosidl_typesupport_introspection_c__UavcanParameterValue_message_member_array[8] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__UavcanParameterValue, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "node_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__UavcanParameterValue, node_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "param_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message true, // is array 17, // array size false, // is upper bound offsetof(px4_msgs__msg__UavcanParameterValue, param_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "param_index", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__UavcanParameterValue, param_index), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "param_count", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__UavcanParameterValue, param_count), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "param_type", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__UavcanParameterValue, param_type), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "int_value", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__UavcanParameterValue, int_value), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "real_value", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__UavcanParameterValue, real_value), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers UavcanParameterValue__rosidl_typesupport_introspection_c__UavcanParameterValue_message_members = { "px4_msgs__msg", // message namespace "UavcanParameterValue", // message name 8, // number of fields sizeof(px4_msgs__msg__UavcanParameterValue), UavcanParameterValue__rosidl_typesupport_introspection_c__UavcanParameterValue_message_member_array, // message members UavcanParameterValue__rosidl_typesupport_introspection_c__UavcanParameterValue_init_function, // function to initialize message memory (memory has to be allocated) UavcanParameterValue__rosidl_typesupport_introspection_c__UavcanParameterValue_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t UavcanParameterValue__rosidl_typesupport_introspection_c__UavcanParameterValue_message_type_support_handle = { 0, &UavcanParameterValue__rosidl_typesupport_introspection_c__UavcanParameterValue_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, UavcanParameterValue)() { if (!UavcanParameterValue__rosidl_typesupport_introspection_c__UavcanParameterValue_message_type_support_handle.typesupport_identifier) { UavcanParameterValue__rosidl_typesupport_introspection_c__UavcanParameterValue_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &UavcanParameterValue__rosidl_typesupport_introspection_c__UavcanParameterValue_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_odometry.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/EstimatorOdometry.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_ODOMETRY_H_ #define PX4_MSGS__MSG__ESTIMATOR_ODOMETRY_H_ #include "px4_msgs/msg/estimator_odometry__struct.h" #include "px4_msgs/msg/estimator_odometry__functions.h" #include "px4_msgs/msg/estimator_odometry__type_support.h" #endif // PX4_MSGS__MSG__ESTIMATOR_ODOMETRY_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/cpuload.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__CPULOAD_HPP_ #define PX4_MSGS__MSG__CPULOAD_HPP_ #include "px4_msgs/msg/cpuload__struct.hpp" #include "px4_msgs/msg/cpuload__traits.hpp" #endif // PX4_MSGS__MSG__CPULOAD_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_land_detected.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleLandDetected.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_LAND_DETECTED_H_ #define PX4_MSGS__MSG__VEHICLE_LAND_DETECTED_H_ #include "px4_msgs/msg/vehicle_land_detected__struct.h" #include "px4_msgs/msg/vehicle_land_detected__functions.h" #include "px4_msgs/msg/vehicle_land_detected__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_LAND_DETECTED_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_input_rc_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/InputRc.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/input_rc__struct.h" #include "px4_msgs/msg/input_rc__functions.h" #include "rosidl_generator_c/primitives_sequence.h" #include "rosidl_generator_c/primitives_sequence_functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__input_rc__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[31]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._input_rc.InputRc", full_classname_dest, 30) == 0); } px4_msgs__msg__InputRc * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // timestamp_last_signal PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp_last_signal"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp_last_signal = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // channel_count PyObject * field = PyObject_GetAttrString(_pymsg, "channel_count"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->channel_count = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // rssi PyObject * field = PyObject_GetAttrString(_pymsg, "rssi"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->rssi = (int32_t)PyLong_AsLong(field); Py_DECREF(field); } { // rc_failsafe PyObject * field = PyObject_GetAttrString(_pymsg, "rc_failsafe"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->rc_failsafe = (Py_True == field); Py_DECREF(field); } { // rc_lost PyObject * field = PyObject_GetAttrString(_pymsg, "rc_lost"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->rc_lost = (Py_True == field); Py_DECREF(field); } { // rc_lost_frame_count PyObject * field = PyObject_GetAttrString(_pymsg, "rc_lost_frame_count"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->rc_lost_frame_count = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // rc_total_frame_count PyObject * field = PyObject_GetAttrString(_pymsg, "rc_total_frame_count"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->rc_total_frame_count = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // rc_ppm_frame_length PyObject * field = PyObject_GetAttrString(_pymsg, "rc_ppm_frame_length"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->rc_ppm_frame_length = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // input_source PyObject * field = PyObject_GetAttrString(_pymsg, "input_source"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->input_source = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // values PyObject * field = PyObject_GetAttrString(_pymsg, "values"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT16); Py_ssize_t size = 18; uint16_t * dest = ros_message->values; for (Py_ssize_t i = 0; i < size; ++i) { uint16_t tmp = *(npy_uint16 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint16_t)); } Py_DECREF(seq_field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__input_rc__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of InputRc */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._input_rc"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "InputRc"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__InputRc * ros_message = (px4_msgs__msg__InputRc *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // timestamp_last_signal PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp_last_signal); { int rc = PyObject_SetAttrString(_pymessage, "timestamp_last_signal", field); Py_DECREF(field); if (rc) { return NULL; } } } { // channel_count PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->channel_count); { int rc = PyObject_SetAttrString(_pymessage, "channel_count", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rssi PyObject * field = NULL; field = PyLong_FromLong(ros_message->rssi); { int rc = PyObject_SetAttrString(_pymessage, "rssi", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rc_failsafe PyObject * field = NULL; field = PyBool_FromLong(ros_message->rc_failsafe ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "rc_failsafe", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rc_lost PyObject * field = NULL; field = PyBool_FromLong(ros_message->rc_lost ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "rc_lost", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rc_lost_frame_count PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->rc_lost_frame_count); { int rc = PyObject_SetAttrString(_pymessage, "rc_lost_frame_count", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rc_total_frame_count PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->rc_total_frame_count); { int rc = PyObject_SetAttrString(_pymessage, "rc_total_frame_count", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rc_ppm_frame_length PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->rc_ppm_frame_length); { int rc = PyObject_SetAttrString(_pymessage, "rc_ppm_frame_length", field); Py_DECREF(field); if (rc) { return NULL; } } } { // input_source PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->input_source); { int rc = PyObject_SetAttrString(_pymessage, "input_source", field); Py_DECREF(field); if (rc) { return NULL; } } } { // values PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "values"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT16); assert(sizeof(npy_uint16) == sizeof(uint16_t)); npy_uint16 * dst = (npy_uint16 *)PyArray_GETPTR1(seq_field, 0); uint16_t * src = &(ros_message->values[0]); memcpy(dst, src, 18 * sizeof(uint16_t)); Py_DECREF(field); } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_constraints.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_CONSTRAINTS_HPP_ #define PX4_MSGS__MSG__VEHICLE_CONSTRAINTS_HPP_ #include "px4_msgs/msg/vehicle_constraints__struct.hpp" #include "px4_msgs/msg/vehicle_constraints__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_CONSTRAINTS_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/orb_test_large__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/OrbTestLarge.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/orb_test_large__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__OrbTestLarge__init(px4_msgs__msg__OrbTestLarge * msg) { if (!msg) { return false; } // timestamp // val // junk return true; } void px4_msgs__msg__OrbTestLarge__fini(px4_msgs__msg__OrbTestLarge * msg) { if (!msg) { return; } // timestamp // val // junk } px4_msgs__msg__OrbTestLarge * px4_msgs__msg__OrbTestLarge__create() { px4_msgs__msg__OrbTestLarge * msg = (px4_msgs__msg__OrbTestLarge *)malloc(sizeof(px4_msgs__msg__OrbTestLarge)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__OrbTestLarge)); bool success = px4_msgs__msg__OrbTestLarge__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__OrbTestLarge__destroy(px4_msgs__msg__OrbTestLarge * msg) { if (msg) { px4_msgs__msg__OrbTestLarge__fini(msg); } free(msg); } bool px4_msgs__msg__OrbTestLarge__Sequence__init(px4_msgs__msg__OrbTestLarge__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__OrbTestLarge * data = NULL; if (size) { data = (px4_msgs__msg__OrbTestLarge *)calloc(size, sizeof(px4_msgs__msg__OrbTestLarge)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__OrbTestLarge__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__OrbTestLarge__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__OrbTestLarge__Sequence__fini(px4_msgs__msg__OrbTestLarge__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__OrbTestLarge__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__OrbTestLarge__Sequence * px4_msgs__msg__OrbTestLarge__Sequence__create(size_t size) { px4_msgs__msg__OrbTestLarge__Sequence * array = (px4_msgs__msg__OrbTestLarge__Sequence *)malloc(sizeof(px4_msgs__msg__OrbTestLarge__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__OrbTestLarge__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__OrbTestLarge__Sequence__destroy(px4_msgs__msg__OrbTestLarge__Sequence * array) { if (array) { px4_msgs__msg__OrbTestLarge__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/orb_multitest__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/OrbMultitest.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORB_MULTITEST__STRUCT_H_ #define PX4_MSGS__MSG__ORB_MULTITEST__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/OrbMultitest in the package px4_msgs. typedef struct px4_msgs__msg__OrbMultitest { uint64_t timestamp; int32_t val; } px4_msgs__msg__OrbMultitest; // Struct for a sequence of px4_msgs__msg__OrbMultitest. typedef struct px4_msgs__msg__OrbMultitest__Sequence { px4_msgs__msg__OrbMultitest * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__OrbMultitest__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ORB_MULTITEST__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vtol_vehicle_status__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/VtolVehicleStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vtol_vehicle_status__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/vtol_vehicle_status__struct.h" #include "px4_msgs/msg/vtol_vehicle_status__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _VtolVehicleStatus__ros_msg_type = px4_msgs__msg__VtolVehicleStatus; static bool _VtolVehicleStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _VtolVehicleStatus__ros_msg_type * ros_message = static_cast<const _VtolVehicleStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: vtol_in_rw_mode { cdr << (ros_message->vtol_in_rw_mode ? true : false); } // Field name: vtol_in_trans_mode { cdr << (ros_message->vtol_in_trans_mode ? true : false); } // Field name: in_transition_to_fw { cdr << (ros_message->in_transition_to_fw ? true : false); } // Field name: vtol_transition_failsafe { cdr << (ros_message->vtol_transition_failsafe ? true : false); } // Field name: fw_permanent_stab { cdr << (ros_message->fw_permanent_stab ? true : false); } return true; } static bool _VtolVehicleStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _VtolVehicleStatus__ros_msg_type * ros_message = static_cast<_VtolVehicleStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: vtol_in_rw_mode { uint8_t tmp; cdr >> tmp; ros_message->vtol_in_rw_mode = tmp ? true : false; } // Field name: vtol_in_trans_mode { uint8_t tmp; cdr >> tmp; ros_message->vtol_in_trans_mode = tmp ? true : false; } // Field name: in_transition_to_fw { uint8_t tmp; cdr >> tmp; ros_message->in_transition_to_fw = tmp ? true : false; } // Field name: vtol_transition_failsafe { uint8_t tmp; cdr >> tmp; ros_message->vtol_transition_failsafe = tmp ? true : false; } // Field name: fw_permanent_stab { uint8_t tmp; cdr >> tmp; ros_message->fw_permanent_stab = tmp ? true : false; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__VtolVehicleStatus( const void * untyped_ros_message, size_t current_alignment) { const _VtolVehicleStatus__ros_msg_type * ros_message = static_cast<const _VtolVehicleStatus__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vtol_in_rw_mode { size_t item_size = sizeof(ros_message->vtol_in_rw_mode); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vtol_in_trans_mode { size_t item_size = sizeof(ros_message->vtol_in_trans_mode); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name in_transition_to_fw { size_t item_size = sizeof(ros_message->in_transition_to_fw); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vtol_transition_failsafe { size_t item_size = sizeof(ros_message->vtol_transition_failsafe); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name fw_permanent_stab { size_t item_size = sizeof(ros_message->fw_permanent_stab); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _VtolVehicleStatus__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__VtolVehicleStatus( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__VtolVehicleStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: vtol_in_rw_mode { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: vtol_in_trans_mode { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: in_transition_to_fw { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: vtol_transition_failsafe { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: fw_permanent_stab { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _VtolVehicleStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__VtolVehicleStatus( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_VtolVehicleStatus = { "px4_msgs::msg", "VtolVehicleStatus", _VtolVehicleStatus__cdr_serialize, _VtolVehicleStatus__cdr_deserialize, _VtolVehicleStatus__get_serialized_size, _VtolVehicleStatus__max_serialized_size }; static rosidl_message_type_support_t _VtolVehicleStatus__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_VtolVehicleStatus, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, VtolVehicleStatus)() { return &_VtolVehicleStatus__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_selector_status__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/EstimatorSelectorStatus.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/estimator_selector_status__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/estimator_selector_status__functions.h" #include "px4_msgs/msg/estimator_selector_status__struct.h" #ifdef __cplusplus extern "C" { #endif void EstimatorSelectorStatus__rosidl_typesupport_introspection_c__EstimatorSelectorStatus_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__EstimatorSelectorStatus__init(message_memory); } void EstimatorSelectorStatus__rosidl_typesupport_introspection_c__EstimatorSelectorStatus_fini_function(void * message_memory) { px4_msgs__msg__EstimatorSelectorStatus__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember EstimatorSelectorStatus__rosidl_typesupport_introspection_c__EstimatorSelectorStatus_message_member_array[16] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSelectorStatus, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "primary_instance", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSelectorStatus, primary_instance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "instances_available", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSelectorStatus, instances_available), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "instance_changed_count", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSelectorStatus, instance_changed_count), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "last_instance_change", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSelectorStatus, last_instance_change), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accel_device_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSelectorStatus, accel_device_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "baro_device_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSelectorStatus, baro_device_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gyro_device_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSelectorStatus, gyro_device_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "mag_device_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSelectorStatus, mag_device_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "combined_test_ratio", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 9, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSelectorStatus, combined_test_ratio), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "relative_test_ratio", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 9, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSelectorStatus, relative_test_ratio), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "healthy", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message true, // is array 9, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSelectorStatus, healthy), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accumulated_gyro_error", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSelectorStatus, accumulated_gyro_error), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accumulated_accel_error", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSelectorStatus, accumulated_accel_error), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gyro_fault_detected", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSelectorStatus, gyro_fault_detected), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accel_fault_detected", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSelectorStatus, accel_fault_detected), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers EstimatorSelectorStatus__rosidl_typesupport_introspection_c__EstimatorSelectorStatus_message_members = { "px4_msgs__msg", // message namespace "EstimatorSelectorStatus", // message name 16, // number of fields sizeof(px4_msgs__msg__EstimatorSelectorStatus), EstimatorSelectorStatus__rosidl_typesupport_introspection_c__EstimatorSelectorStatus_message_member_array, // message members EstimatorSelectorStatus__rosidl_typesupport_introspection_c__EstimatorSelectorStatus_init_function, // function to initialize message memory (memory has to be allocated) EstimatorSelectorStatus__rosidl_typesupport_introspection_c__EstimatorSelectorStatus_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t EstimatorSelectorStatus__rosidl_typesupport_introspection_c__EstimatorSelectorStatus_message_type_support_handle = { 0, &EstimatorSelectorStatus__rosidl_typesupport_introspection_c__EstimatorSelectorStatus_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, EstimatorSelectorStatus)() { if (!EstimatorSelectorStatus__rosidl_typesupport_introspection_c__EstimatorSelectorStatus_message_type_support_handle.typesupport_identifier) { EstimatorSelectorStatus__rosidl_typesupport_introspection_c__EstimatorSelectorStatus_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &EstimatorSelectorStatus__rosidl_typesupport_introspection_c__EstimatorSelectorStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/px4_io_status__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/Px4IoStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__PX4_IO_STATUS__STRUCT_HPP_ #define PX4_MSGS__MSG__PX4_IO_STATUS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__Px4IoStatus __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__Px4IoStatus __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct Px4IoStatus_ { using Type = Px4IoStatus_<ContainerAllocator>; explicit Px4IoStatus_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->free_memory_bytes = 0; this->voltage_v = 0.0f; this->rssi_v = 0.0f; this->status_outputs_armed = false; this->status_override = false; this->status_rc_ok = false; this->status_rc_ppm = false; this->status_rc_dsm = false; this->status_rc_sbus = false; this->status_fmu_ok = false; this->status_raw_pwm = false; this->status_mixer_ok = false; this->status_arm_sync = false; this->status_init_ok = false; this->status_failsafe = false; this->status_safety_off = false; this->status_fmu_initialized = false; this->status_rc_st24 = false; this->status_rc_sumd = false; this->alarm_vbatt_low = false; this->alarm_temperature = false; this->alarm_servo_current = false; this->alarm_acc_current = false; this->alarm_fmu_lost = false; this->alarm_rc_lost = false; this->alarm_pwm_error = false; this->alarm_vservo_fault = false; this->arming_io_arm_ok = false; this->arming_fmu_armed = false; this->arming_fmu_prearmed = false; this->arming_manual_override_ok = false; this->arming_failsafe_custom = false; this->arming_inair_restart_ok = false; this->arming_always_pwm_enable = false; this->arming_rc_handling_disabled = false; this->arming_lockdown = false; this->arming_force_failsafe = false; this->arming_termination_failsafe = false; this->arming_override_immediate = false; std::fill<typename std::array<int16_t, 8>::iterator, int16_t>(this->actuators.begin(), this->actuators.end(), 0); std::fill<typename std::array<uint16_t, 8>::iterator, uint16_t>(this->servos.begin(), this->servos.end(), 0); std::fill<typename std::array<uint16_t, 18>::iterator, uint16_t>(this->raw_inputs.begin(), this->raw_inputs.end(), 0); } } explicit Px4IoStatus_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : actuators(_alloc), servos(_alloc), raw_inputs(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->free_memory_bytes = 0; this->voltage_v = 0.0f; this->rssi_v = 0.0f; this->status_outputs_armed = false; this->status_override = false; this->status_rc_ok = false; this->status_rc_ppm = false; this->status_rc_dsm = false; this->status_rc_sbus = false; this->status_fmu_ok = false; this->status_raw_pwm = false; this->status_mixer_ok = false; this->status_arm_sync = false; this->status_init_ok = false; this->status_failsafe = false; this->status_safety_off = false; this->status_fmu_initialized = false; this->status_rc_st24 = false; this->status_rc_sumd = false; this->alarm_vbatt_low = false; this->alarm_temperature = false; this->alarm_servo_current = false; this->alarm_acc_current = false; this->alarm_fmu_lost = false; this->alarm_rc_lost = false; this->alarm_pwm_error = false; this->alarm_vservo_fault = false; this->arming_io_arm_ok = false; this->arming_fmu_armed = false; this->arming_fmu_prearmed = false; this->arming_manual_override_ok = false; this->arming_failsafe_custom = false; this->arming_inair_restart_ok = false; this->arming_always_pwm_enable = false; this->arming_rc_handling_disabled = false; this->arming_lockdown = false; this->arming_force_failsafe = false; this->arming_termination_failsafe = false; this->arming_override_immediate = false; std::fill<typename std::array<int16_t, 8>::iterator, int16_t>(this->actuators.begin(), this->actuators.end(), 0); std::fill<typename std::array<uint16_t, 8>::iterator, uint16_t>(this->servos.begin(), this->servos.end(), 0); std::fill<typename std::array<uint16_t, 18>::iterator, uint16_t>(this->raw_inputs.begin(), this->raw_inputs.end(), 0); } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _free_memory_bytes_type = uint16_t; _free_memory_bytes_type free_memory_bytes; using _voltage_v_type = float; _voltage_v_type voltage_v; using _rssi_v_type = float; _rssi_v_type rssi_v; using _status_outputs_armed_type = bool; _status_outputs_armed_type status_outputs_armed; using _status_override_type = bool; _status_override_type status_override; using _status_rc_ok_type = bool; _status_rc_ok_type status_rc_ok; using _status_rc_ppm_type = bool; _status_rc_ppm_type status_rc_ppm; using _status_rc_dsm_type = bool; _status_rc_dsm_type status_rc_dsm; using _status_rc_sbus_type = bool; _status_rc_sbus_type status_rc_sbus; using _status_fmu_ok_type = bool; _status_fmu_ok_type status_fmu_ok; using _status_raw_pwm_type = bool; _status_raw_pwm_type status_raw_pwm; using _status_mixer_ok_type = bool; _status_mixer_ok_type status_mixer_ok; using _status_arm_sync_type = bool; _status_arm_sync_type status_arm_sync; using _status_init_ok_type = bool; _status_init_ok_type status_init_ok; using _status_failsafe_type = bool; _status_failsafe_type status_failsafe; using _status_safety_off_type = bool; _status_safety_off_type status_safety_off; using _status_fmu_initialized_type = bool; _status_fmu_initialized_type status_fmu_initialized; using _status_rc_st24_type = bool; _status_rc_st24_type status_rc_st24; using _status_rc_sumd_type = bool; _status_rc_sumd_type status_rc_sumd; using _alarm_vbatt_low_type = bool; _alarm_vbatt_low_type alarm_vbatt_low; using _alarm_temperature_type = bool; _alarm_temperature_type alarm_temperature; using _alarm_servo_current_type = bool; _alarm_servo_current_type alarm_servo_current; using _alarm_acc_current_type = bool; _alarm_acc_current_type alarm_acc_current; using _alarm_fmu_lost_type = bool; _alarm_fmu_lost_type alarm_fmu_lost; using _alarm_rc_lost_type = bool; _alarm_rc_lost_type alarm_rc_lost; using _alarm_pwm_error_type = bool; _alarm_pwm_error_type alarm_pwm_error; using _alarm_vservo_fault_type = bool; _alarm_vservo_fault_type alarm_vservo_fault; using _arming_io_arm_ok_type = bool; _arming_io_arm_ok_type arming_io_arm_ok; using _arming_fmu_armed_type = bool; _arming_fmu_armed_type arming_fmu_armed; using _arming_fmu_prearmed_type = bool; _arming_fmu_prearmed_type arming_fmu_prearmed; using _arming_manual_override_ok_type = bool; _arming_manual_override_ok_type arming_manual_override_ok; using _arming_failsafe_custom_type = bool; _arming_failsafe_custom_type arming_failsafe_custom; using _arming_inair_restart_ok_type = bool; _arming_inair_restart_ok_type arming_inair_restart_ok; using _arming_always_pwm_enable_type = bool; _arming_always_pwm_enable_type arming_always_pwm_enable; using _arming_rc_handling_disabled_type = bool; _arming_rc_handling_disabled_type arming_rc_handling_disabled; using _arming_lockdown_type = bool; _arming_lockdown_type arming_lockdown; using _arming_force_failsafe_type = bool; _arming_force_failsafe_type arming_force_failsafe; using _arming_termination_failsafe_type = bool; _arming_termination_failsafe_type arming_termination_failsafe; using _arming_override_immediate_type = bool; _arming_override_immediate_type arming_override_immediate; using _actuators_type = std::array<int16_t, 8>; _actuators_type actuators; using _servos_type = std::array<uint16_t, 8>; _servos_type servos; using _raw_inputs_type = std::array<uint16_t, 18>; _raw_inputs_type raw_inputs; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__free_memory_bytes( const uint16_t & _arg) { this->free_memory_bytes = _arg; return *this; } Type & set__voltage_v( const float & _arg) { this->voltage_v = _arg; return *this; } Type & set__rssi_v( const float & _arg) { this->rssi_v = _arg; return *this; } Type & set__status_outputs_armed( const bool & _arg) { this->status_outputs_armed = _arg; return *this; } Type & set__status_override( const bool & _arg) { this->status_override = _arg; return *this; } Type & set__status_rc_ok( const bool & _arg) { this->status_rc_ok = _arg; return *this; } Type & set__status_rc_ppm( const bool & _arg) { this->status_rc_ppm = _arg; return *this; } Type & set__status_rc_dsm( const bool & _arg) { this->status_rc_dsm = _arg; return *this; } Type & set__status_rc_sbus( const bool & _arg) { this->status_rc_sbus = _arg; return *this; } Type & set__status_fmu_ok( const bool & _arg) { this->status_fmu_ok = _arg; return *this; } Type & set__status_raw_pwm( const bool & _arg) { this->status_raw_pwm = _arg; return *this; } Type & set__status_mixer_ok( const bool & _arg) { this->status_mixer_ok = _arg; return *this; } Type & set__status_arm_sync( const bool & _arg) { this->status_arm_sync = _arg; return *this; } Type & set__status_init_ok( const bool & _arg) { this->status_init_ok = _arg; return *this; } Type & set__status_failsafe( const bool & _arg) { this->status_failsafe = _arg; return *this; } Type & set__status_safety_off( const bool & _arg) { this->status_safety_off = _arg; return *this; } Type & set__status_fmu_initialized( const bool & _arg) { this->status_fmu_initialized = _arg; return *this; } Type & set__status_rc_st24( const bool & _arg) { this->status_rc_st24 = _arg; return *this; } Type & set__status_rc_sumd( const bool & _arg) { this->status_rc_sumd = _arg; return *this; } Type & set__alarm_vbatt_low( const bool & _arg) { this->alarm_vbatt_low = _arg; return *this; } Type & set__alarm_temperature( const bool & _arg) { this->alarm_temperature = _arg; return *this; } Type & set__alarm_servo_current( const bool & _arg) { this->alarm_servo_current = _arg; return *this; } Type & set__alarm_acc_current( const bool & _arg) { this->alarm_acc_current = _arg; return *this; } Type & set__alarm_fmu_lost( const bool & _arg) { this->alarm_fmu_lost = _arg; return *this; } Type & set__alarm_rc_lost( const bool & _arg) { this->alarm_rc_lost = _arg; return *this; } Type & set__alarm_pwm_error( const bool & _arg) { this->alarm_pwm_error = _arg; return *this; } Type & set__alarm_vservo_fault( const bool & _arg) { this->alarm_vservo_fault = _arg; return *this; } Type & set__arming_io_arm_ok( const bool & _arg) { this->arming_io_arm_ok = _arg; return *this; } Type & set__arming_fmu_armed( const bool & _arg) { this->arming_fmu_armed = _arg; return *this; } Type & set__arming_fmu_prearmed( const bool & _arg) { this->arming_fmu_prearmed = _arg; return *this; } Type & set__arming_manual_override_ok( const bool & _arg) { this->arming_manual_override_ok = _arg; return *this; } Type & set__arming_failsafe_custom( const bool & _arg) { this->arming_failsafe_custom = _arg; return *this; } Type & set__arming_inair_restart_ok( const bool & _arg) { this->arming_inair_restart_ok = _arg; return *this; } Type & set__arming_always_pwm_enable( const bool & _arg) { this->arming_always_pwm_enable = _arg; return *this; } Type & set__arming_rc_handling_disabled( const bool & _arg) { this->arming_rc_handling_disabled = _arg; return *this; } Type & set__arming_lockdown( const bool & _arg) { this->arming_lockdown = _arg; return *this; } Type & set__arming_force_failsafe( const bool & _arg) { this->arming_force_failsafe = _arg; return *this; } Type & set__arming_termination_failsafe( const bool & _arg) { this->arming_termination_failsafe = _arg; return *this; } Type & set__arming_override_immediate( const bool & _arg) { this->arming_override_immediate = _arg; return *this; } Type & set__actuators( const std::array<int16_t, 8> & _arg) { this->actuators = _arg; return *this; } Type & set__servos( const std::array<uint16_t, 8> & _arg) { this->servos = _arg; return *this; } Type & set__raw_inputs( const std::array<uint16_t, 18> & _arg) { this->raw_inputs = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::Px4IoStatus_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::Px4IoStatus_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::Px4IoStatus_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::Px4IoStatus_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::Px4IoStatus_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::Px4IoStatus_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::Px4IoStatus_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::Px4IoStatus_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::Px4IoStatus_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::Px4IoStatus_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__Px4IoStatus std::shared_ptr<px4_msgs::msg::Px4IoStatus_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__Px4IoStatus std::shared_ptr<px4_msgs::msg::Px4IoStatus_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const Px4IoStatus_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->free_memory_bytes != other.free_memory_bytes) { return false; } if (this->voltage_v != other.voltage_v) { return false; } if (this->rssi_v != other.rssi_v) { return false; } if (this->status_outputs_armed != other.status_outputs_armed) { return false; } if (this->status_override != other.status_override) { return false; } if (this->status_rc_ok != other.status_rc_ok) { return false; } if (this->status_rc_ppm != other.status_rc_ppm) { return false; } if (this->status_rc_dsm != other.status_rc_dsm) { return false; } if (this->status_rc_sbus != other.status_rc_sbus) { return false; } if (this->status_fmu_ok != other.status_fmu_ok) { return false; } if (this->status_raw_pwm != other.status_raw_pwm) { return false; } if (this->status_mixer_ok != other.status_mixer_ok) { return false; } if (this->status_arm_sync != other.status_arm_sync) { return false; } if (this->status_init_ok != other.status_init_ok) { return false; } if (this->status_failsafe != other.status_failsafe) { return false; } if (this->status_safety_off != other.status_safety_off) { return false; } if (this->status_fmu_initialized != other.status_fmu_initialized) { return false; } if (this->status_rc_st24 != other.status_rc_st24) { return false; } if (this->status_rc_sumd != other.status_rc_sumd) { return false; } if (this->alarm_vbatt_low != other.alarm_vbatt_low) { return false; } if (this->alarm_temperature != other.alarm_temperature) { return false; } if (this->alarm_servo_current != other.alarm_servo_current) { return false; } if (this->alarm_acc_current != other.alarm_acc_current) { return false; } if (this->alarm_fmu_lost != other.alarm_fmu_lost) { return false; } if (this->alarm_rc_lost != other.alarm_rc_lost) { return false; } if (this->alarm_pwm_error != other.alarm_pwm_error) { return false; } if (this->alarm_vservo_fault != other.alarm_vservo_fault) { return false; } if (this->arming_io_arm_ok != other.arming_io_arm_ok) { return false; } if (this->arming_fmu_armed != other.arming_fmu_armed) { return false; } if (this->arming_fmu_prearmed != other.arming_fmu_prearmed) { return false; } if (this->arming_manual_override_ok != other.arming_manual_override_ok) { return false; } if (this->arming_failsafe_custom != other.arming_failsafe_custom) { return false; } if (this->arming_inair_restart_ok != other.arming_inair_restart_ok) { return false; } if (this->arming_always_pwm_enable != other.arming_always_pwm_enable) { return false; } if (this->arming_rc_handling_disabled != other.arming_rc_handling_disabled) { return false; } if (this->arming_lockdown != other.arming_lockdown) { return false; } if (this->arming_force_failsafe != other.arming_force_failsafe) { return false; } if (this->arming_termination_failsafe != other.arming_termination_failsafe) { return false; } if (this->arming_override_immediate != other.arming_override_immediate) { return false; } if (this->actuators != other.actuators) { return false; } if (this->servos != other.servos) { return false; } if (this->raw_inputs != other.raw_inputs) { return false; } return true; } bool operator!=(const Px4IoStatus_ & other) const { return !this->operator==(other); } }; // struct Px4IoStatus_ // alias to use template instance with default allocator using Px4IoStatus = px4_msgs::msg::Px4IoStatus_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__PX4_IO_STATUS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_actuator_outputs.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/ActuatorOutputs.idl # generated code does not contain a copyright notice # Import statements for member types # Member 'output' import numpy # noqa: E402, I100 import rosidl_parser.definition # noqa: E402, I100 class Metaclass_ActuatorOutputs(type): """Metaclass of message 'ActuatorOutputs'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'NUM_ACTUATOR_OUTPUTS': 16, 'NUM_ACTUATOR_OUTPUT_GROUPS': 4, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.ActuatorOutputs') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__actuator_outputs cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__actuator_outputs cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__actuator_outputs cls._TYPE_SUPPORT = module.type_support_msg__msg__actuator_outputs cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__actuator_outputs @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'NUM_ACTUATOR_OUTPUTS': cls.__constants['NUM_ACTUATOR_OUTPUTS'], 'NUM_ACTUATOR_OUTPUT_GROUPS': cls.__constants['NUM_ACTUATOR_OUTPUT_GROUPS'], } @property def NUM_ACTUATOR_OUTPUTS(self): """Message constant 'NUM_ACTUATOR_OUTPUTS'.""" return Metaclass_ActuatorOutputs.__constants['NUM_ACTUATOR_OUTPUTS'] @property def NUM_ACTUATOR_OUTPUT_GROUPS(self): """Message constant 'NUM_ACTUATOR_OUTPUT_GROUPS'.""" return Metaclass_ActuatorOutputs.__constants['NUM_ACTUATOR_OUTPUT_GROUPS'] class ActuatorOutputs(metaclass=Metaclass_ActuatorOutputs): """ Message class 'ActuatorOutputs'. Constants: NUM_ACTUATOR_OUTPUTS NUM_ACTUATOR_OUTPUT_GROUPS """ __slots__ = [ '_timestamp', '_noutputs', '_output', ] _fields_and_field_types = { 'timestamp': 'uint64', 'noutputs': 'uint32', 'output': 'float[16]', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 16), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.noutputs = kwargs.get('noutputs', int()) if 'output' not in kwargs: self.output = numpy.zeros(16, dtype=numpy.float32) else: self.output = numpy.array(kwargs.get('output'), dtype=numpy.float32) assert self.output.shape == (16, ) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.noutputs != other.noutputs: return False if all(self.output != other.output): return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def noutputs(self): """Message field 'noutputs'.""" return self._noutputs @noutputs.setter def noutputs(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'noutputs' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'noutputs' field must be an unsigned integer in [0, 4294967295]" self._noutputs = value @property def output(self): """Message field 'output'.""" return self._output @output.setter def output(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'output' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 16, \ "The 'output' numpy.ndarray() must have a size of 16" self._output = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 16 and all(isinstance(v, float) for v in value) and True), \ "The 'output' field must be a set or sequence with length 16 and each value of type 'float'" self._output = numpy.array(value, dtype=numpy.float32) <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_mag__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/SensorMag.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/sensor_mag__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void SensorMag_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::SensorMag(_init); } void SensorMag_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::SensorMag *>(message_memory); typed_message->~SensorMag(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember SensorMag_message_member_array[9] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorMag, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorMag, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "device_id", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorMag, device_id), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "x", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorMag, x), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "y", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorMag, y), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "z", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorMag, z), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "temperature", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorMag, temperature), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "error_count", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorMag, error_count), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "is_external", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorMag, is_external), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers SensorMag_message_members = { "px4_msgs::msg", // message namespace "SensorMag", // message name 9, // number of fields sizeof(px4_msgs::msg::SensorMag), SensorMag_message_member_array, // message members SensorMag_init_function, // function to initialize message memory (memory has to be allocated) SensorMag_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t SensorMag_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &SensorMag_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::SensorMag>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::SensorMag_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, SensorMag)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::SensorMag_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_accel.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/SensorAccel.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_ACCEL_H_ #define PX4_MSGS__MSG__SENSOR_ACCEL_H_ #include "px4_msgs/msg/sensor_accel__struct.h" #include "px4_msgs/msg/sensor_accel__functions.h" #include "px4_msgs/msg/sensor_accel__type_support.h" #endif // PX4_MSGS__MSG__SENSOR_ACCEL_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/trajectory_setpoint__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/TrajectorySetpoint.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/trajectory_setpoint__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__TrajectorySetpoint__init(px4_msgs__msg__TrajectorySetpoint * msg) { if (!msg) { return false; } // timestamp // x // y // z // yaw // yawspeed // vx // vy // vz // acceleration // jerk // thrust return true; } void px4_msgs__msg__TrajectorySetpoint__fini(px4_msgs__msg__TrajectorySetpoint * msg) { if (!msg) { return; } // timestamp // x // y // z // yaw // yawspeed // vx // vy // vz // acceleration // jerk // thrust } px4_msgs__msg__TrajectorySetpoint * px4_msgs__msg__TrajectorySetpoint__create() { px4_msgs__msg__TrajectorySetpoint * msg = (px4_msgs__msg__TrajectorySetpoint *)malloc(sizeof(px4_msgs__msg__TrajectorySetpoint)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__TrajectorySetpoint)); bool success = px4_msgs__msg__TrajectorySetpoint__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__TrajectorySetpoint__destroy(px4_msgs__msg__TrajectorySetpoint * msg) { if (msg) { px4_msgs__msg__TrajectorySetpoint__fini(msg); } free(msg); } bool px4_msgs__msg__TrajectorySetpoint__Sequence__init(px4_msgs__msg__TrajectorySetpoint__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__TrajectorySetpoint * data = NULL; if (size) { data = (px4_msgs__msg__TrajectorySetpoint *)calloc(size, sizeof(px4_msgs__msg__TrajectorySetpoint)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__TrajectorySetpoint__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__TrajectorySetpoint__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__TrajectorySetpoint__Sequence__fini(px4_msgs__msg__TrajectorySetpoint__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__TrajectorySetpoint__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__TrajectorySetpoint__Sequence * px4_msgs__msg__TrajectorySetpoint__Sequence__create(size_t size) { px4_msgs__msg__TrajectorySetpoint__Sequence * array = (px4_msgs__msg__TrajectorySetpoint__Sequence *)malloc(sizeof(px4_msgs__msg__TrajectorySetpoint__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__TrajectorySetpoint__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__TrajectorySetpoint__Sequence__destroy(px4_msgs__msg__TrajectorySetpoint__Sequence * array) { if (array) { px4_msgs__msg__TrajectorySetpoint__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_global_position.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/EstimatorGlobalPosition.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_GLOBAL_POSITION_H_ #define PX4_MSGS__MSG__ESTIMATOR_GLOBAL_POSITION_H_ #include "px4_msgs/msg/estimator_global_position__struct.h" #include "px4_msgs/msg/estimator_global_position__functions.h" #include "px4_msgs/msg/estimator_global_position__type_support.h" #endif // PX4_MSGS__MSG__ESTIMATOR_GLOBAL_POSITION_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync__rosidl_typesupport_fastrtps_c.h // generated from rosidl_typesupport_fastrtps_c/resource/idl__rosidl_typesupport_fastrtps_c.h.em // with input from px4_msgs:msg/Timesync.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TIMESYNC__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #define PX4_MSGS__MSG__TIMESYNC__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #include <stddef.h> #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__Timesync( const void * untyped_ros_message, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__Timesync( bool & full_bounded, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, Timesync)(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__TIMESYNC__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ <file_sep>/build/px4_ros_com/Makefile # CMAKE generated file: DO NOT EDIT! # Generated by "Unix Makefiles" Generator, CMake Version 3.10 # Default target executed when no arguments are given to make. default_target: all .PHONY : default_target # Allow only one "make -f Makefile2" at a time, but pass parallelism. .NOTPARALLEL: #============================================================================= # Special targets provided by cmake. # Disable implicit rules so canonical targets will work. .SUFFIXES: # Remove some rules from gmake that .SUFFIXES does not remove. SUFFIXES = .SUFFIXES: .hpux_make_needs_suffix_list # Suppress display of executed commands. $(VERBOSE).SILENT: # A target that is always out of date. cmake_force: .PHONY : cmake_force #============================================================================= # Set environment variables for the build. # The shell in which to execute make rules. SHELL = /bin/sh # The CMake executable. CMAKE_COMMAND = /usr/bin/cmake # The command to remove a file. RM = /usr/bin/cmake -E remove -f # Escaping for special characters. EQUALS = = # The top-level source directory on which CMake was run. CMAKE_SOURCE_DIR = /home/navlab-tx2-4/px4_ros_com_ros2/src/px4_ros_com # The top-level build directory on which CMake was run. CMAKE_BINARY_DIR = /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_ros_com #============================================================================= # Targets provided globally by CMake. # Special rule for the target install/strip install/strip: preinstall @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake .PHONY : install/strip # Special rule for the target install/strip install/strip/fast: preinstall/fast @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake .PHONY : install/strip/fast # Special rule for the target install install: preinstall @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." /usr/bin/cmake -P cmake_install.cmake .PHONY : install # Special rule for the target install install/fast: preinstall/fast @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." /usr/bin/cmake -P cmake_install.cmake .PHONY : install/fast # Special rule for the target list_install_components list_install_components: @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" .PHONY : list_install_components # Special rule for the target list_install_components list_install_components/fast: list_install_components .PHONY : list_install_components/fast # Special rule for the target rebuild_cache rebuild_cache: @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." /usr/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) .PHONY : rebuild_cache # Special rule for the target rebuild_cache rebuild_cache/fast: rebuild_cache .PHONY : rebuild_cache/fast # Special rule for the target install/local install/local: preinstall @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake .PHONY : install/local # Special rule for the target install/local install/local/fast: preinstall/fast @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake .PHONY : install/local/fast # Special rule for the target test test: @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..." /usr/bin/ctest --force-new-ctest-process $(ARGS) .PHONY : test # Special rule for the target test test/fast: test .PHONY : test/fast # Special rule for the target edit_cache edit_cache: @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. .PHONY : edit_cache # Special rule for the target edit_cache edit_cache/fast: edit_cache .PHONY : edit_cache/fast # The main all target all: cmake_check_build_system $(CMAKE_COMMAND) -E cmake_progress_start /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_ros_com/CMakeFiles /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_ros_com/CMakeFiles/progress.marks $(MAKE) -f CMakeFiles/Makefile2 all $(CMAKE_COMMAND) -E cmake_progress_start /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_ros_com/CMakeFiles 0 .PHONY : all # The main clean target clean: $(MAKE) -f CMakeFiles/Makefile2 clean .PHONY : clean # The main clean target clean/fast: clean .PHONY : clean/fast # Prepare targets for installation. preinstall: all $(MAKE) -f CMakeFiles/Makefile2 preinstall .PHONY : preinstall # Prepare targets for installation. preinstall/fast: $(MAKE) -f CMakeFiles/Makefile2 preinstall .PHONY : preinstall/fast # clear depends depend: $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 .PHONY : depend #============================================================================= # Target rules for targets named new_offboard_control # Build rule for target. new_offboard_control: cmake_check_build_system $(MAKE) -f CMakeFiles/Makefile2 new_offboard_control .PHONY : new_offboard_control # fast build rule for target. new_offboard_control/fast: $(MAKE) -f CMakeFiles/new_offboard_control.dir/build.make CMakeFiles/new_offboard_control.dir/build .PHONY : new_offboard_control/fast #============================================================================= # Target rules for targets named offboard_control # Build rule for target. offboard_control: cmake_check_build_system $(MAKE) -f CMakeFiles/Makefile2 offboard_control .PHONY : offboard_control # fast build rule for target. offboard_control/fast: $(MAKE) -f CMakeFiles/offboard_control.dir/build.make CMakeFiles/offboard_control.dir/build .PHONY : offboard_control/fast #============================================================================= # Target rules for targets named debug_vect_advertiser # Build rule for target. debug_vect_advertiser: cmake_check_build_system $(MAKE) -f CMakeFiles/Makefile2 debug_vect_advertiser .PHONY : debug_vect_advertiser # fast build rule for target. debug_vect_advertiser/fast: $(MAKE) -f CMakeFiles/debug_vect_advertiser.dir/build.make CMakeFiles/debug_vect_advertiser.dir/build .PHONY : debug_vect_advertiser/fast #============================================================================= # Target rules for targets named px4_ros_com_uninstall # Build rule for target. px4_ros_com_uninstall: cmake_check_build_system $(MAKE) -f CMakeFiles/Makefile2 px4_ros_com_uninstall .PHONY : px4_ros_com_uninstall # fast build rule for target. px4_ros_com_uninstall/fast: $(MAKE) -f CMakeFiles/px4_ros_com_uninstall.dir/build.make CMakeFiles/px4_ros_com_uninstall.dir/build .PHONY : px4_ros_com_uninstall/fast #============================================================================= # Target rules for targets named micrortps_agent # Build rule for target. micrortps_agent: cmake_check_build_system $(MAKE) -f CMakeFiles/Makefile2 micrortps_agent .PHONY : micrortps_agent # fast build rule for target. micrortps_agent/fast: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/build .PHONY : micrortps_agent/fast #============================================================================= # Target rules for targets named uninstall # Build rule for target. uninstall: cmake_check_build_system $(MAKE) -f CMakeFiles/Makefile2 uninstall .PHONY : uninstall # fast build rule for target. uninstall/fast: $(MAKE) -f CMakeFiles/uninstall.dir/build.make CMakeFiles/uninstall.dir/build .PHONY : uninstall/fast #============================================================================= # Target rules for targets named frame_transforms # Build rule for target. frame_transforms: cmake_check_build_system $(MAKE) -f CMakeFiles/Makefile2 frame_transforms .PHONY : frame_transforms # fast build rule for target. frame_transforms/fast: $(MAKE) -f CMakeFiles/frame_transforms.dir/build.make CMakeFiles/frame_transforms.dir/build .PHONY : frame_transforms/fast #============================================================================= # Target rules for targets named sensor_combined_listener # Build rule for target. sensor_combined_listener: cmake_check_build_system $(MAKE) -f CMakeFiles/Makefile2 sensor_combined_listener .PHONY : sensor_combined_listener # fast build rule for target. sensor_combined_listener/fast: $(MAKE) -f CMakeFiles/sensor_combined_listener.dir/build.make CMakeFiles/sensor_combined_listener.dir/build .PHONY : sensor_combined_listener/fast #============================================================================= # Target rules for targets named vehicle_gps_position_listener # Build rule for target. vehicle_gps_position_listener: cmake_check_build_system $(MAKE) -f CMakeFiles/Makefile2 vehicle_gps_position_listener .PHONY : vehicle_gps_position_listener # fast build rule for target. vehicle_gps_position_listener/fast: $(MAKE) -f CMakeFiles/vehicle_gps_position_listener.dir/build.make CMakeFiles/vehicle_gps_position_listener.dir/build .PHONY : vehicle_gps_position_listener/fast src/examples/advertisers/debug_vect_advertiser.o: src/examples/advertisers/debug_vect_advertiser.cpp.o .PHONY : src/examples/advertisers/debug_vect_advertiser.o # target to build an object file src/examples/advertisers/debug_vect_advertiser.cpp.o: $(MAKE) -f CMakeFiles/debug_vect_advertiser.dir/build.make CMakeFiles/debug_vect_advertiser.dir/src/examples/advertisers/debug_vect_advertiser.cpp.o .PHONY : src/examples/advertisers/debug_vect_advertiser.cpp.o src/examples/advertisers/debug_vect_advertiser.i: src/examples/advertisers/debug_vect_advertiser.cpp.i .PHONY : src/examples/advertisers/debug_vect_advertiser.i # target to preprocess a source file src/examples/advertisers/debug_vect_advertiser.cpp.i: $(MAKE) -f CMakeFiles/debug_vect_advertiser.dir/build.make CMakeFiles/debug_vect_advertiser.dir/src/examples/advertisers/debug_vect_advertiser.cpp.i .PHONY : src/examples/advertisers/debug_vect_advertiser.cpp.i src/examples/advertisers/debug_vect_advertiser.s: src/examples/advertisers/debug_vect_advertiser.cpp.s .PHONY : src/examples/advertisers/debug_vect_advertiser.s # target to generate assembly for a file src/examples/advertisers/debug_vect_advertiser.cpp.s: $(MAKE) -f CMakeFiles/debug_vect_advertiser.dir/build.make CMakeFiles/debug_vect_advertiser.dir/src/examples/advertisers/debug_vect_advertiser.cpp.s .PHONY : src/examples/advertisers/debug_vect_advertiser.cpp.s src/examples/listeners/sensor_combined_listener.o: src/examples/listeners/sensor_combined_listener.cpp.o .PHONY : src/examples/listeners/sensor_combined_listener.o # target to build an object file src/examples/listeners/sensor_combined_listener.cpp.o: $(MAKE) -f CMakeFiles/sensor_combined_listener.dir/build.make CMakeFiles/sensor_combined_listener.dir/src/examples/listeners/sensor_combined_listener.cpp.o .PHONY : src/examples/listeners/sensor_combined_listener.cpp.o src/examples/listeners/sensor_combined_listener.i: src/examples/listeners/sensor_combined_listener.cpp.i .PHONY : src/examples/listeners/sensor_combined_listener.i # target to preprocess a source file src/examples/listeners/sensor_combined_listener.cpp.i: $(MAKE) -f CMakeFiles/sensor_combined_listener.dir/build.make CMakeFiles/sensor_combined_listener.dir/src/examples/listeners/sensor_combined_listener.cpp.i .PHONY : src/examples/listeners/sensor_combined_listener.cpp.i src/examples/listeners/sensor_combined_listener.s: src/examples/listeners/sensor_combined_listener.cpp.s .PHONY : src/examples/listeners/sensor_combined_listener.s # target to generate assembly for a file src/examples/listeners/sensor_combined_listener.cpp.s: $(MAKE) -f CMakeFiles/sensor_combined_listener.dir/build.make CMakeFiles/sensor_combined_listener.dir/src/examples/listeners/sensor_combined_listener.cpp.s .PHONY : src/examples/listeners/sensor_combined_listener.cpp.s src/examples/listeners/vehicle_gps_position_listener.o: src/examples/listeners/vehicle_gps_position_listener.cpp.o .PHONY : src/examples/listeners/vehicle_gps_position_listener.o # target to build an object file src/examples/listeners/vehicle_gps_position_listener.cpp.o: $(MAKE) -f CMakeFiles/vehicle_gps_position_listener.dir/build.make CMakeFiles/vehicle_gps_position_listener.dir/src/examples/listeners/vehicle_gps_position_listener.cpp.o .PHONY : src/examples/listeners/vehicle_gps_position_listener.cpp.o src/examples/listeners/vehicle_gps_position_listener.i: src/examples/listeners/vehicle_gps_position_listener.cpp.i .PHONY : src/examples/listeners/vehicle_gps_position_listener.i # target to preprocess a source file src/examples/listeners/vehicle_gps_position_listener.cpp.i: $(MAKE) -f CMakeFiles/vehicle_gps_position_listener.dir/build.make CMakeFiles/vehicle_gps_position_listener.dir/src/examples/listeners/vehicle_gps_position_listener.cpp.i .PHONY : src/examples/listeners/vehicle_gps_position_listener.cpp.i src/examples/listeners/vehicle_gps_position_listener.s: src/examples/listeners/vehicle_gps_position_listener.cpp.s .PHONY : src/examples/listeners/vehicle_gps_position_listener.s # target to generate assembly for a file src/examples/listeners/vehicle_gps_position_listener.cpp.s: $(MAKE) -f CMakeFiles/vehicle_gps_position_listener.dir/build.make CMakeFiles/vehicle_gps_position_listener.dir/src/examples/listeners/vehicle_gps_position_listener.cpp.s .PHONY : src/examples/listeners/vehicle_gps_position_listener.cpp.s src/examples/offboard/new_offboard_control.o: src/examples/offboard/new_offboard_control.cpp.o .PHONY : src/examples/offboard/new_offboard_control.o # target to build an object file src/examples/offboard/new_offboard_control.cpp.o: $(MAKE) -f CMakeFiles/new_offboard_control.dir/build.make CMakeFiles/new_offboard_control.dir/src/examples/offboard/new_offboard_control.cpp.o .PHONY : src/examples/offboard/new_offboard_control.cpp.o src/examples/offboard/new_offboard_control.i: src/examples/offboard/new_offboard_control.cpp.i .PHONY : src/examples/offboard/new_offboard_control.i # target to preprocess a source file src/examples/offboard/new_offboard_control.cpp.i: $(MAKE) -f CMakeFiles/new_offboard_control.dir/build.make CMakeFiles/new_offboard_control.dir/src/examples/offboard/new_offboard_control.cpp.i .PHONY : src/examples/offboard/new_offboard_control.cpp.i src/examples/offboard/new_offboard_control.s: src/examples/offboard/new_offboard_control.cpp.s .PHONY : src/examples/offboard/new_offboard_control.s # target to generate assembly for a file src/examples/offboard/new_offboard_control.cpp.s: $(MAKE) -f CMakeFiles/new_offboard_control.dir/build.make CMakeFiles/new_offboard_control.dir/src/examples/offboard/new_offboard_control.cpp.s .PHONY : src/examples/offboard/new_offboard_control.cpp.s src/examples/offboard/offboard_control.o: src/examples/offboard/offboard_control.cpp.o .PHONY : src/examples/offboard/offboard_control.o # target to build an object file src/examples/offboard/offboard_control.cpp.o: $(MAKE) -f CMakeFiles/offboard_control.dir/build.make CMakeFiles/offboard_control.dir/src/examples/offboard/offboard_control.cpp.o .PHONY : src/examples/offboard/offboard_control.cpp.o src/examples/offboard/offboard_control.i: src/examples/offboard/offboard_control.cpp.i .PHONY : src/examples/offboard/offboard_control.i # target to preprocess a source file src/examples/offboard/offboard_control.cpp.i: $(MAKE) -f CMakeFiles/offboard_control.dir/build.make CMakeFiles/offboard_control.dir/src/examples/offboard/offboard_control.cpp.i .PHONY : src/examples/offboard/offboard_control.cpp.i src/examples/offboard/offboard_control.s: src/examples/offboard/offboard_control.cpp.s .PHONY : src/examples/offboard/offboard_control.s # target to generate assembly for a file src/examples/offboard/offboard_control.cpp.s: $(MAKE) -f CMakeFiles/offboard_control.dir/build.make CMakeFiles/offboard_control.dir/src/examples/offboard/offboard_control.cpp.s .PHONY : src/examples/offboard/offboard_control.cpp.s src/lib/frame_transforms.o: src/lib/frame_transforms.cpp.o .PHONY : src/lib/frame_transforms.o # target to build an object file src/lib/frame_transforms.cpp.o: $(MAKE) -f CMakeFiles/frame_transforms.dir/build.make CMakeFiles/frame_transforms.dir/src/lib/frame_transforms.cpp.o .PHONY : src/lib/frame_transforms.cpp.o src/lib/frame_transforms.i: src/lib/frame_transforms.cpp.i .PHONY : src/lib/frame_transforms.i # target to preprocess a source file src/lib/frame_transforms.cpp.i: $(MAKE) -f CMakeFiles/frame_transforms.dir/build.make CMakeFiles/frame_transforms.dir/src/lib/frame_transforms.cpp.i .PHONY : src/lib/frame_transforms.cpp.i src/lib/frame_transforms.s: src/lib/frame_transforms.cpp.s .PHONY : src/lib/frame_transforms.s # target to generate assembly for a file src/lib/frame_transforms.cpp.s: $(MAKE) -f CMakeFiles/frame_transforms.dir/build.make CMakeFiles/frame_transforms.dir/src/lib/frame_transforms.cpp.s .PHONY : src/lib/frame_transforms.cpp.s src/micrortps_agent/CollisionConstraints.o: src/micrortps_agent/CollisionConstraints.cpp.o .PHONY : src/micrortps_agent/CollisionConstraints.o # target to build an object file src/micrortps_agent/CollisionConstraints.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/CollisionConstraints.cpp.o .PHONY : src/micrortps_agent/CollisionConstraints.cpp.o src/micrortps_agent/CollisionConstraints.i: src/micrortps_agent/CollisionConstraints.cpp.i .PHONY : src/micrortps_agent/CollisionConstraints.i # target to preprocess a source file src/micrortps_agent/CollisionConstraints.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/CollisionConstraints.cpp.i .PHONY : src/micrortps_agent/CollisionConstraints.cpp.i src/micrortps_agent/CollisionConstraints.s: src/micrortps_agent/CollisionConstraints.cpp.s .PHONY : src/micrortps_agent/CollisionConstraints.s # target to generate assembly for a file src/micrortps_agent/CollisionConstraints.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/CollisionConstraints.cpp.s .PHONY : src/micrortps_agent/CollisionConstraints.cpp.s src/micrortps_agent/CollisionConstraintsPubSubTypes.o: src/micrortps_agent/CollisionConstraintsPubSubTypes.cpp.o .PHONY : src/micrortps_agent/CollisionConstraintsPubSubTypes.o # target to build an object file src/micrortps_agent/CollisionConstraintsPubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/CollisionConstraintsPubSubTypes.cpp.o .PHONY : src/micrortps_agent/CollisionConstraintsPubSubTypes.cpp.o src/micrortps_agent/CollisionConstraintsPubSubTypes.i: src/micrortps_agent/CollisionConstraintsPubSubTypes.cpp.i .PHONY : src/micrortps_agent/CollisionConstraintsPubSubTypes.i # target to preprocess a source file src/micrortps_agent/CollisionConstraintsPubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/CollisionConstraintsPubSubTypes.cpp.i .PHONY : src/micrortps_agent/CollisionConstraintsPubSubTypes.cpp.i src/micrortps_agent/CollisionConstraintsPubSubTypes.s: src/micrortps_agent/CollisionConstraintsPubSubTypes.cpp.s .PHONY : src/micrortps_agent/CollisionConstraintsPubSubTypes.s # target to generate assembly for a file src/micrortps_agent/CollisionConstraintsPubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/CollisionConstraintsPubSubTypes.cpp.s .PHONY : src/micrortps_agent/CollisionConstraintsPubSubTypes.cpp.s src/micrortps_agent/CollisionConstraints_Publisher.o: src/micrortps_agent/CollisionConstraints_Publisher.cpp.o .PHONY : src/micrortps_agent/CollisionConstraints_Publisher.o # target to build an object file src/micrortps_agent/CollisionConstraints_Publisher.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/CollisionConstraints_Publisher.cpp.o .PHONY : src/micrortps_agent/CollisionConstraints_Publisher.cpp.o src/micrortps_agent/CollisionConstraints_Publisher.i: src/micrortps_agent/CollisionConstraints_Publisher.cpp.i .PHONY : src/micrortps_agent/CollisionConstraints_Publisher.i # target to preprocess a source file src/micrortps_agent/CollisionConstraints_Publisher.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/CollisionConstraints_Publisher.cpp.i .PHONY : src/micrortps_agent/CollisionConstraints_Publisher.cpp.i src/micrortps_agent/CollisionConstraints_Publisher.s: src/micrortps_agent/CollisionConstraints_Publisher.cpp.s .PHONY : src/micrortps_agent/CollisionConstraints_Publisher.s # target to generate assembly for a file src/micrortps_agent/CollisionConstraints_Publisher.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/CollisionConstraints_Publisher.cpp.s .PHONY : src/micrortps_agent/CollisionConstraints_Publisher.cpp.s src/micrortps_agent/DebugArray.o: src/micrortps_agent/DebugArray.cpp.o .PHONY : src/micrortps_agent/DebugArray.o # target to build an object file src/micrortps_agent/DebugArray.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugArray.cpp.o .PHONY : src/micrortps_agent/DebugArray.cpp.o src/micrortps_agent/DebugArray.i: src/micrortps_agent/DebugArray.cpp.i .PHONY : src/micrortps_agent/DebugArray.i # target to preprocess a source file src/micrortps_agent/DebugArray.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugArray.cpp.i .PHONY : src/micrortps_agent/DebugArray.cpp.i src/micrortps_agent/DebugArray.s: src/micrortps_agent/DebugArray.cpp.s .PHONY : src/micrortps_agent/DebugArray.s # target to generate assembly for a file src/micrortps_agent/DebugArray.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugArray.cpp.s .PHONY : src/micrortps_agent/DebugArray.cpp.s src/micrortps_agent/DebugArrayPubSubTypes.o: src/micrortps_agent/DebugArrayPubSubTypes.cpp.o .PHONY : src/micrortps_agent/DebugArrayPubSubTypes.o # target to build an object file src/micrortps_agent/DebugArrayPubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugArrayPubSubTypes.cpp.o .PHONY : src/micrortps_agent/DebugArrayPubSubTypes.cpp.o src/micrortps_agent/DebugArrayPubSubTypes.i: src/micrortps_agent/DebugArrayPubSubTypes.cpp.i .PHONY : src/micrortps_agent/DebugArrayPubSubTypes.i # target to preprocess a source file src/micrortps_agent/DebugArrayPubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugArrayPubSubTypes.cpp.i .PHONY : src/micrortps_agent/DebugArrayPubSubTypes.cpp.i src/micrortps_agent/DebugArrayPubSubTypes.s: src/micrortps_agent/DebugArrayPubSubTypes.cpp.s .PHONY : src/micrortps_agent/DebugArrayPubSubTypes.s # target to generate assembly for a file src/micrortps_agent/DebugArrayPubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugArrayPubSubTypes.cpp.s .PHONY : src/micrortps_agent/DebugArrayPubSubTypes.cpp.s src/micrortps_agent/DebugArray_Subscriber.o: src/micrortps_agent/DebugArray_Subscriber.cpp.o .PHONY : src/micrortps_agent/DebugArray_Subscriber.o # target to build an object file src/micrortps_agent/DebugArray_Subscriber.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugArray_Subscriber.cpp.o .PHONY : src/micrortps_agent/DebugArray_Subscriber.cpp.o src/micrortps_agent/DebugArray_Subscriber.i: src/micrortps_agent/DebugArray_Subscriber.cpp.i .PHONY : src/micrortps_agent/DebugArray_Subscriber.i # target to preprocess a source file src/micrortps_agent/DebugArray_Subscriber.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugArray_Subscriber.cpp.i .PHONY : src/micrortps_agent/DebugArray_Subscriber.cpp.i src/micrortps_agent/DebugArray_Subscriber.s: src/micrortps_agent/DebugArray_Subscriber.cpp.s .PHONY : src/micrortps_agent/DebugArray_Subscriber.s # target to generate assembly for a file src/micrortps_agent/DebugArray_Subscriber.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugArray_Subscriber.cpp.s .PHONY : src/micrortps_agent/DebugArray_Subscriber.cpp.s src/micrortps_agent/DebugKeyValue.o: src/micrortps_agent/DebugKeyValue.cpp.o .PHONY : src/micrortps_agent/DebugKeyValue.o # target to build an object file src/micrortps_agent/DebugKeyValue.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugKeyValue.cpp.o .PHONY : src/micrortps_agent/DebugKeyValue.cpp.o src/micrortps_agent/DebugKeyValue.i: src/micrortps_agent/DebugKeyValue.cpp.i .PHONY : src/micrortps_agent/DebugKeyValue.i # target to preprocess a source file src/micrortps_agent/DebugKeyValue.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugKeyValue.cpp.i .PHONY : src/micrortps_agent/DebugKeyValue.cpp.i src/micrortps_agent/DebugKeyValue.s: src/micrortps_agent/DebugKeyValue.cpp.s .PHONY : src/micrortps_agent/DebugKeyValue.s # target to generate assembly for a file src/micrortps_agent/DebugKeyValue.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugKeyValue.cpp.s .PHONY : src/micrortps_agent/DebugKeyValue.cpp.s src/micrortps_agent/DebugKeyValuePubSubTypes.o: src/micrortps_agent/DebugKeyValuePubSubTypes.cpp.o .PHONY : src/micrortps_agent/DebugKeyValuePubSubTypes.o # target to build an object file src/micrortps_agent/DebugKeyValuePubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugKeyValuePubSubTypes.cpp.o .PHONY : src/micrortps_agent/DebugKeyValuePubSubTypes.cpp.o src/micrortps_agent/DebugKeyValuePubSubTypes.i: src/micrortps_agent/DebugKeyValuePubSubTypes.cpp.i .PHONY : src/micrortps_agent/DebugKeyValuePubSubTypes.i # target to preprocess a source file src/micrortps_agent/DebugKeyValuePubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugKeyValuePubSubTypes.cpp.i .PHONY : src/micrortps_agent/DebugKeyValuePubSubTypes.cpp.i src/micrortps_agent/DebugKeyValuePubSubTypes.s: src/micrortps_agent/DebugKeyValuePubSubTypes.cpp.s .PHONY : src/micrortps_agent/DebugKeyValuePubSubTypes.s # target to generate assembly for a file src/micrortps_agent/DebugKeyValuePubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugKeyValuePubSubTypes.cpp.s .PHONY : src/micrortps_agent/DebugKeyValuePubSubTypes.cpp.s src/micrortps_agent/DebugKeyValue_Subscriber.o: src/micrortps_agent/DebugKeyValue_Subscriber.cpp.o .PHONY : src/micrortps_agent/DebugKeyValue_Subscriber.o # target to build an object file src/micrortps_agent/DebugKeyValue_Subscriber.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugKeyValue_Subscriber.cpp.o .PHONY : src/micrortps_agent/DebugKeyValue_Subscriber.cpp.o src/micrortps_agent/DebugKeyValue_Subscriber.i: src/micrortps_agent/DebugKeyValue_Subscriber.cpp.i .PHONY : src/micrortps_agent/DebugKeyValue_Subscriber.i # target to preprocess a source file src/micrortps_agent/DebugKeyValue_Subscriber.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugKeyValue_Subscriber.cpp.i .PHONY : src/micrortps_agent/DebugKeyValue_Subscriber.cpp.i src/micrortps_agent/DebugKeyValue_Subscriber.s: src/micrortps_agent/DebugKeyValue_Subscriber.cpp.s .PHONY : src/micrortps_agent/DebugKeyValue_Subscriber.s # target to generate assembly for a file src/micrortps_agent/DebugKeyValue_Subscriber.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugKeyValue_Subscriber.cpp.s .PHONY : src/micrortps_agent/DebugKeyValue_Subscriber.cpp.s src/micrortps_agent/DebugValue.o: src/micrortps_agent/DebugValue.cpp.o .PHONY : src/micrortps_agent/DebugValue.o # target to build an object file src/micrortps_agent/DebugValue.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugValue.cpp.o .PHONY : src/micrortps_agent/DebugValue.cpp.o src/micrortps_agent/DebugValue.i: src/micrortps_agent/DebugValue.cpp.i .PHONY : src/micrortps_agent/DebugValue.i # target to preprocess a source file src/micrortps_agent/DebugValue.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugValue.cpp.i .PHONY : src/micrortps_agent/DebugValue.cpp.i src/micrortps_agent/DebugValue.s: src/micrortps_agent/DebugValue.cpp.s .PHONY : src/micrortps_agent/DebugValue.s # target to generate assembly for a file src/micrortps_agent/DebugValue.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugValue.cpp.s .PHONY : src/micrortps_agent/DebugValue.cpp.s src/micrortps_agent/DebugValuePubSubTypes.o: src/micrortps_agent/DebugValuePubSubTypes.cpp.o .PHONY : src/micrortps_agent/DebugValuePubSubTypes.o # target to build an object file src/micrortps_agent/DebugValuePubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugValuePubSubTypes.cpp.o .PHONY : src/micrortps_agent/DebugValuePubSubTypes.cpp.o src/micrortps_agent/DebugValuePubSubTypes.i: src/micrortps_agent/DebugValuePubSubTypes.cpp.i .PHONY : src/micrortps_agent/DebugValuePubSubTypes.i # target to preprocess a source file src/micrortps_agent/DebugValuePubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugValuePubSubTypes.cpp.i .PHONY : src/micrortps_agent/DebugValuePubSubTypes.cpp.i src/micrortps_agent/DebugValuePubSubTypes.s: src/micrortps_agent/DebugValuePubSubTypes.cpp.s .PHONY : src/micrortps_agent/DebugValuePubSubTypes.s # target to generate assembly for a file src/micrortps_agent/DebugValuePubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugValuePubSubTypes.cpp.s .PHONY : src/micrortps_agent/DebugValuePubSubTypes.cpp.s src/micrortps_agent/DebugValue_Subscriber.o: src/micrortps_agent/DebugValue_Subscriber.cpp.o .PHONY : src/micrortps_agent/DebugValue_Subscriber.o # target to build an object file src/micrortps_agent/DebugValue_Subscriber.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugValue_Subscriber.cpp.o .PHONY : src/micrortps_agent/DebugValue_Subscriber.cpp.o src/micrortps_agent/DebugValue_Subscriber.i: src/micrortps_agent/DebugValue_Subscriber.cpp.i .PHONY : src/micrortps_agent/DebugValue_Subscriber.i # target to preprocess a source file src/micrortps_agent/DebugValue_Subscriber.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugValue_Subscriber.cpp.i .PHONY : src/micrortps_agent/DebugValue_Subscriber.cpp.i src/micrortps_agent/DebugValue_Subscriber.s: src/micrortps_agent/DebugValue_Subscriber.cpp.s .PHONY : src/micrortps_agent/DebugValue_Subscriber.s # target to generate assembly for a file src/micrortps_agent/DebugValue_Subscriber.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugValue_Subscriber.cpp.s .PHONY : src/micrortps_agent/DebugValue_Subscriber.cpp.s src/micrortps_agent/DebugVect.o: src/micrortps_agent/DebugVect.cpp.o .PHONY : src/micrortps_agent/DebugVect.o # target to build an object file src/micrortps_agent/DebugVect.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugVect.cpp.o .PHONY : src/micrortps_agent/DebugVect.cpp.o src/micrortps_agent/DebugVect.i: src/micrortps_agent/DebugVect.cpp.i .PHONY : src/micrortps_agent/DebugVect.i # target to preprocess a source file src/micrortps_agent/DebugVect.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugVect.cpp.i .PHONY : src/micrortps_agent/DebugVect.cpp.i src/micrortps_agent/DebugVect.s: src/micrortps_agent/DebugVect.cpp.s .PHONY : src/micrortps_agent/DebugVect.s # target to generate assembly for a file src/micrortps_agent/DebugVect.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugVect.cpp.s .PHONY : src/micrortps_agent/DebugVect.cpp.s src/micrortps_agent/DebugVectPubSubTypes.o: src/micrortps_agent/DebugVectPubSubTypes.cpp.o .PHONY : src/micrortps_agent/DebugVectPubSubTypes.o # target to build an object file src/micrortps_agent/DebugVectPubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugVectPubSubTypes.cpp.o .PHONY : src/micrortps_agent/DebugVectPubSubTypes.cpp.o src/micrortps_agent/DebugVectPubSubTypes.i: src/micrortps_agent/DebugVectPubSubTypes.cpp.i .PHONY : src/micrortps_agent/DebugVectPubSubTypes.i # target to preprocess a source file src/micrortps_agent/DebugVectPubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugVectPubSubTypes.cpp.i .PHONY : src/micrortps_agent/DebugVectPubSubTypes.cpp.i src/micrortps_agent/DebugVectPubSubTypes.s: src/micrortps_agent/DebugVectPubSubTypes.cpp.s .PHONY : src/micrortps_agent/DebugVectPubSubTypes.s # target to generate assembly for a file src/micrortps_agent/DebugVectPubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugVectPubSubTypes.cpp.s .PHONY : src/micrortps_agent/DebugVectPubSubTypes.cpp.s src/micrortps_agent/DebugVect_Subscriber.o: src/micrortps_agent/DebugVect_Subscriber.cpp.o .PHONY : src/micrortps_agent/DebugVect_Subscriber.o # target to build an object file src/micrortps_agent/DebugVect_Subscriber.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugVect_Subscriber.cpp.o .PHONY : src/micrortps_agent/DebugVect_Subscriber.cpp.o src/micrortps_agent/DebugVect_Subscriber.i: src/micrortps_agent/DebugVect_Subscriber.cpp.i .PHONY : src/micrortps_agent/DebugVect_Subscriber.i # target to preprocess a source file src/micrortps_agent/DebugVect_Subscriber.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugVect_Subscriber.cpp.i .PHONY : src/micrortps_agent/DebugVect_Subscriber.cpp.i src/micrortps_agent/DebugVect_Subscriber.s: src/micrortps_agent/DebugVect_Subscriber.cpp.s .PHONY : src/micrortps_agent/DebugVect_Subscriber.s # target to generate assembly for a file src/micrortps_agent/DebugVect_Subscriber.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/DebugVect_Subscriber.cpp.s .PHONY : src/micrortps_agent/DebugVect_Subscriber.cpp.s src/micrortps_agent/InputRc.o: src/micrortps_agent/InputRc.cpp.o .PHONY : src/micrortps_agent/InputRc.o # target to build an object file src/micrortps_agent/InputRc.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/InputRc.cpp.o .PHONY : src/micrortps_agent/InputRc.cpp.o src/micrortps_agent/InputRc.i: src/micrortps_agent/InputRc.cpp.i .PHONY : src/micrortps_agent/InputRc.i # target to preprocess a source file src/micrortps_agent/InputRc.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/InputRc.cpp.i .PHONY : src/micrortps_agent/InputRc.cpp.i src/micrortps_agent/InputRc.s: src/micrortps_agent/InputRc.cpp.s .PHONY : src/micrortps_agent/InputRc.s # target to generate assembly for a file src/micrortps_agent/InputRc.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/InputRc.cpp.s .PHONY : src/micrortps_agent/InputRc.cpp.s src/micrortps_agent/InputRcPubSubTypes.o: src/micrortps_agent/InputRcPubSubTypes.cpp.o .PHONY : src/micrortps_agent/InputRcPubSubTypes.o # target to build an object file src/micrortps_agent/InputRcPubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/InputRcPubSubTypes.cpp.o .PHONY : src/micrortps_agent/InputRcPubSubTypes.cpp.o src/micrortps_agent/InputRcPubSubTypes.i: src/micrortps_agent/InputRcPubSubTypes.cpp.i .PHONY : src/micrortps_agent/InputRcPubSubTypes.i # target to preprocess a source file src/micrortps_agent/InputRcPubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/InputRcPubSubTypes.cpp.i .PHONY : src/micrortps_agent/InputRcPubSubTypes.cpp.i src/micrortps_agent/InputRcPubSubTypes.s: src/micrortps_agent/InputRcPubSubTypes.cpp.s .PHONY : src/micrortps_agent/InputRcPubSubTypes.s # target to generate assembly for a file src/micrortps_agent/InputRcPubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/InputRcPubSubTypes.cpp.s .PHONY : src/micrortps_agent/InputRcPubSubTypes.cpp.s src/micrortps_agent/InputRc_Publisher.o: src/micrortps_agent/InputRc_Publisher.cpp.o .PHONY : src/micrortps_agent/InputRc_Publisher.o # target to build an object file src/micrortps_agent/InputRc_Publisher.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/InputRc_Publisher.cpp.o .PHONY : src/micrortps_agent/InputRc_Publisher.cpp.o src/micrortps_agent/InputRc_Publisher.i: src/micrortps_agent/InputRc_Publisher.cpp.i .PHONY : src/micrortps_agent/InputRc_Publisher.i # target to preprocess a source file src/micrortps_agent/InputRc_Publisher.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/InputRc_Publisher.cpp.i .PHONY : src/micrortps_agent/InputRc_Publisher.cpp.i src/micrortps_agent/InputRc_Publisher.s: src/micrortps_agent/InputRc_Publisher.cpp.s .PHONY : src/micrortps_agent/InputRc_Publisher.s # target to generate assembly for a file src/micrortps_agent/InputRc_Publisher.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/InputRc_Publisher.cpp.s .PHONY : src/micrortps_agent/InputRc_Publisher.cpp.s src/micrortps_agent/OffboardControlMode.o: src/micrortps_agent/OffboardControlMode.cpp.o .PHONY : src/micrortps_agent/OffboardControlMode.o # target to build an object file src/micrortps_agent/OffboardControlMode.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/OffboardControlMode.cpp.o .PHONY : src/micrortps_agent/OffboardControlMode.cpp.o src/micrortps_agent/OffboardControlMode.i: src/micrortps_agent/OffboardControlMode.cpp.i .PHONY : src/micrortps_agent/OffboardControlMode.i # target to preprocess a source file src/micrortps_agent/OffboardControlMode.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/OffboardControlMode.cpp.i .PHONY : src/micrortps_agent/OffboardControlMode.cpp.i src/micrortps_agent/OffboardControlMode.s: src/micrortps_agent/OffboardControlMode.cpp.s .PHONY : src/micrortps_agent/OffboardControlMode.s # target to generate assembly for a file src/micrortps_agent/OffboardControlMode.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/OffboardControlMode.cpp.s .PHONY : src/micrortps_agent/OffboardControlMode.cpp.s src/micrortps_agent/OffboardControlModePubSubTypes.o: src/micrortps_agent/OffboardControlModePubSubTypes.cpp.o .PHONY : src/micrortps_agent/OffboardControlModePubSubTypes.o # target to build an object file src/micrortps_agent/OffboardControlModePubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/OffboardControlModePubSubTypes.cpp.o .PHONY : src/micrortps_agent/OffboardControlModePubSubTypes.cpp.o src/micrortps_agent/OffboardControlModePubSubTypes.i: src/micrortps_agent/OffboardControlModePubSubTypes.cpp.i .PHONY : src/micrortps_agent/OffboardControlModePubSubTypes.i # target to preprocess a source file src/micrortps_agent/OffboardControlModePubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/OffboardControlModePubSubTypes.cpp.i .PHONY : src/micrortps_agent/OffboardControlModePubSubTypes.cpp.i src/micrortps_agent/OffboardControlModePubSubTypes.s: src/micrortps_agent/OffboardControlModePubSubTypes.cpp.s .PHONY : src/micrortps_agent/OffboardControlModePubSubTypes.s # target to generate assembly for a file src/micrortps_agent/OffboardControlModePubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/OffboardControlModePubSubTypes.cpp.s .PHONY : src/micrortps_agent/OffboardControlModePubSubTypes.cpp.s src/micrortps_agent/OffboardControlMode_Subscriber.o: src/micrortps_agent/OffboardControlMode_Subscriber.cpp.o .PHONY : src/micrortps_agent/OffboardControlMode_Subscriber.o # target to build an object file src/micrortps_agent/OffboardControlMode_Subscriber.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/OffboardControlMode_Subscriber.cpp.o .PHONY : src/micrortps_agent/OffboardControlMode_Subscriber.cpp.o src/micrortps_agent/OffboardControlMode_Subscriber.i: src/micrortps_agent/OffboardControlMode_Subscriber.cpp.i .PHONY : src/micrortps_agent/OffboardControlMode_Subscriber.i # target to preprocess a source file src/micrortps_agent/OffboardControlMode_Subscriber.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/OffboardControlMode_Subscriber.cpp.i .PHONY : src/micrortps_agent/OffboardControlMode_Subscriber.cpp.i src/micrortps_agent/OffboardControlMode_Subscriber.s: src/micrortps_agent/OffboardControlMode_Subscriber.cpp.s .PHONY : src/micrortps_agent/OffboardControlMode_Subscriber.s # target to generate assembly for a file src/micrortps_agent/OffboardControlMode_Subscriber.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/OffboardControlMode_Subscriber.cpp.s .PHONY : src/micrortps_agent/OffboardControlMode_Subscriber.cpp.s src/micrortps_agent/OnboardComputerStatus.o: src/micrortps_agent/OnboardComputerStatus.cpp.o .PHONY : src/micrortps_agent/OnboardComputerStatus.o # target to build an object file src/micrortps_agent/OnboardComputerStatus.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/OnboardComputerStatus.cpp.o .PHONY : src/micrortps_agent/OnboardComputerStatus.cpp.o src/micrortps_agent/OnboardComputerStatus.i: src/micrortps_agent/OnboardComputerStatus.cpp.i .PHONY : src/micrortps_agent/OnboardComputerStatus.i # target to preprocess a source file src/micrortps_agent/OnboardComputerStatus.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/OnboardComputerStatus.cpp.i .PHONY : src/micrortps_agent/OnboardComputerStatus.cpp.i src/micrortps_agent/OnboardComputerStatus.s: src/micrortps_agent/OnboardComputerStatus.cpp.s .PHONY : src/micrortps_agent/OnboardComputerStatus.s # target to generate assembly for a file src/micrortps_agent/OnboardComputerStatus.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/OnboardComputerStatus.cpp.s .PHONY : src/micrortps_agent/OnboardComputerStatus.cpp.s src/micrortps_agent/OnboardComputerStatusPubSubTypes.o: src/micrortps_agent/OnboardComputerStatusPubSubTypes.cpp.o .PHONY : src/micrortps_agent/OnboardComputerStatusPubSubTypes.o # target to build an object file src/micrortps_agent/OnboardComputerStatusPubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/OnboardComputerStatusPubSubTypes.cpp.o .PHONY : src/micrortps_agent/OnboardComputerStatusPubSubTypes.cpp.o src/micrortps_agent/OnboardComputerStatusPubSubTypes.i: src/micrortps_agent/OnboardComputerStatusPubSubTypes.cpp.i .PHONY : src/micrortps_agent/OnboardComputerStatusPubSubTypes.i # target to preprocess a source file src/micrortps_agent/OnboardComputerStatusPubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/OnboardComputerStatusPubSubTypes.cpp.i .PHONY : src/micrortps_agent/OnboardComputerStatusPubSubTypes.cpp.i src/micrortps_agent/OnboardComputerStatusPubSubTypes.s: src/micrortps_agent/OnboardComputerStatusPubSubTypes.cpp.s .PHONY : src/micrortps_agent/OnboardComputerStatusPubSubTypes.s # target to generate assembly for a file src/micrortps_agent/OnboardComputerStatusPubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/OnboardComputerStatusPubSubTypes.cpp.s .PHONY : src/micrortps_agent/OnboardComputerStatusPubSubTypes.cpp.s src/micrortps_agent/OnboardComputerStatus_Subscriber.o: src/micrortps_agent/OnboardComputerStatus_Subscriber.cpp.o .PHONY : src/micrortps_agent/OnboardComputerStatus_Subscriber.o # target to build an object file src/micrortps_agent/OnboardComputerStatus_Subscriber.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/OnboardComputerStatus_Subscriber.cpp.o .PHONY : src/micrortps_agent/OnboardComputerStatus_Subscriber.cpp.o src/micrortps_agent/OnboardComputerStatus_Subscriber.i: src/micrortps_agent/OnboardComputerStatus_Subscriber.cpp.i .PHONY : src/micrortps_agent/OnboardComputerStatus_Subscriber.i # target to preprocess a source file src/micrortps_agent/OnboardComputerStatus_Subscriber.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/OnboardComputerStatus_Subscriber.cpp.i .PHONY : src/micrortps_agent/OnboardComputerStatus_Subscriber.cpp.i src/micrortps_agent/OnboardComputerStatus_Subscriber.s: src/micrortps_agent/OnboardComputerStatus_Subscriber.cpp.s .PHONY : src/micrortps_agent/OnboardComputerStatus_Subscriber.s # target to generate assembly for a file src/micrortps_agent/OnboardComputerStatus_Subscriber.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/OnboardComputerStatus_Subscriber.cpp.s .PHONY : src/micrortps_agent/OnboardComputerStatus_Subscriber.cpp.s src/micrortps_agent/OpticalFlow.o: src/micrortps_agent/OpticalFlow.cpp.o .PHONY : src/micrortps_agent/OpticalFlow.o # target to build an object file src/micrortps_agent/OpticalFlow.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/OpticalFlow.cpp.o .PHONY : src/micrortps_agent/OpticalFlow.cpp.o src/micrortps_agent/OpticalFlow.i: src/micrortps_agent/OpticalFlow.cpp.i .PHONY : src/micrortps_agent/OpticalFlow.i # target to preprocess a source file src/micrortps_agent/OpticalFlow.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/OpticalFlow.cpp.i .PHONY : src/micrortps_agent/OpticalFlow.cpp.i src/micrortps_agent/OpticalFlow.s: src/micrortps_agent/OpticalFlow.cpp.s .PHONY : src/micrortps_agent/OpticalFlow.s # target to generate assembly for a file src/micrortps_agent/OpticalFlow.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/OpticalFlow.cpp.s .PHONY : src/micrortps_agent/OpticalFlow.cpp.s src/micrortps_agent/OpticalFlowPubSubTypes.o: src/micrortps_agent/OpticalFlowPubSubTypes.cpp.o .PHONY : src/micrortps_agent/OpticalFlowPubSubTypes.o # target to build an object file src/micrortps_agent/OpticalFlowPubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/OpticalFlowPubSubTypes.cpp.o .PHONY : src/micrortps_agent/OpticalFlowPubSubTypes.cpp.o src/micrortps_agent/OpticalFlowPubSubTypes.i: src/micrortps_agent/OpticalFlowPubSubTypes.cpp.i .PHONY : src/micrortps_agent/OpticalFlowPubSubTypes.i # target to preprocess a source file src/micrortps_agent/OpticalFlowPubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/OpticalFlowPubSubTypes.cpp.i .PHONY : src/micrortps_agent/OpticalFlowPubSubTypes.cpp.i src/micrortps_agent/OpticalFlowPubSubTypes.s: src/micrortps_agent/OpticalFlowPubSubTypes.cpp.s .PHONY : src/micrortps_agent/OpticalFlowPubSubTypes.s # target to generate assembly for a file src/micrortps_agent/OpticalFlowPubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/OpticalFlowPubSubTypes.cpp.s .PHONY : src/micrortps_agent/OpticalFlowPubSubTypes.cpp.s src/micrortps_agent/OpticalFlow_Subscriber.o: src/micrortps_agent/OpticalFlow_Subscriber.cpp.o .PHONY : src/micrortps_agent/OpticalFlow_Subscriber.o # target to build an object file src/micrortps_agent/OpticalFlow_Subscriber.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/OpticalFlow_Subscriber.cpp.o .PHONY : src/micrortps_agent/OpticalFlow_Subscriber.cpp.o src/micrortps_agent/OpticalFlow_Subscriber.i: src/micrortps_agent/OpticalFlow_Subscriber.cpp.i .PHONY : src/micrortps_agent/OpticalFlow_Subscriber.i # target to preprocess a source file src/micrortps_agent/OpticalFlow_Subscriber.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/OpticalFlow_Subscriber.cpp.i .PHONY : src/micrortps_agent/OpticalFlow_Subscriber.cpp.i src/micrortps_agent/OpticalFlow_Subscriber.s: src/micrortps_agent/OpticalFlow_Subscriber.cpp.s .PHONY : src/micrortps_agent/OpticalFlow_Subscriber.s # target to generate assembly for a file src/micrortps_agent/OpticalFlow_Subscriber.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/OpticalFlow_Subscriber.cpp.s .PHONY : src/micrortps_agent/OpticalFlow_Subscriber.cpp.s src/micrortps_agent/PositionSetpoint.o: src/micrortps_agent/PositionSetpoint.cpp.o .PHONY : src/micrortps_agent/PositionSetpoint.o # target to build an object file src/micrortps_agent/PositionSetpoint.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/PositionSetpoint.cpp.o .PHONY : src/micrortps_agent/PositionSetpoint.cpp.o src/micrortps_agent/PositionSetpoint.i: src/micrortps_agent/PositionSetpoint.cpp.i .PHONY : src/micrortps_agent/PositionSetpoint.i # target to preprocess a source file src/micrortps_agent/PositionSetpoint.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/PositionSetpoint.cpp.i .PHONY : src/micrortps_agent/PositionSetpoint.cpp.i src/micrortps_agent/PositionSetpoint.s: src/micrortps_agent/PositionSetpoint.cpp.s .PHONY : src/micrortps_agent/PositionSetpoint.s # target to generate assembly for a file src/micrortps_agent/PositionSetpoint.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/PositionSetpoint.cpp.s .PHONY : src/micrortps_agent/PositionSetpoint.cpp.s src/micrortps_agent/PositionSetpointPubSubTypes.o: src/micrortps_agent/PositionSetpointPubSubTypes.cpp.o .PHONY : src/micrortps_agent/PositionSetpointPubSubTypes.o # target to build an object file src/micrortps_agent/PositionSetpointPubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/PositionSetpointPubSubTypes.cpp.o .PHONY : src/micrortps_agent/PositionSetpointPubSubTypes.cpp.o src/micrortps_agent/PositionSetpointPubSubTypes.i: src/micrortps_agent/PositionSetpointPubSubTypes.cpp.i .PHONY : src/micrortps_agent/PositionSetpointPubSubTypes.i # target to preprocess a source file src/micrortps_agent/PositionSetpointPubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/PositionSetpointPubSubTypes.cpp.i .PHONY : src/micrortps_agent/PositionSetpointPubSubTypes.cpp.i src/micrortps_agent/PositionSetpointPubSubTypes.s: src/micrortps_agent/PositionSetpointPubSubTypes.cpp.s .PHONY : src/micrortps_agent/PositionSetpointPubSubTypes.s # target to generate assembly for a file src/micrortps_agent/PositionSetpointPubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/PositionSetpointPubSubTypes.cpp.s .PHONY : src/micrortps_agent/PositionSetpointPubSubTypes.cpp.s src/micrortps_agent/PositionSetpointTriplet.o: src/micrortps_agent/PositionSetpointTriplet.cpp.o .PHONY : src/micrortps_agent/PositionSetpointTriplet.o # target to build an object file src/micrortps_agent/PositionSetpointTriplet.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/PositionSetpointTriplet.cpp.o .PHONY : src/micrortps_agent/PositionSetpointTriplet.cpp.o src/micrortps_agent/PositionSetpointTriplet.i: src/micrortps_agent/PositionSetpointTriplet.cpp.i .PHONY : src/micrortps_agent/PositionSetpointTriplet.i # target to preprocess a source file src/micrortps_agent/PositionSetpointTriplet.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/PositionSetpointTriplet.cpp.i .PHONY : src/micrortps_agent/PositionSetpointTriplet.cpp.i src/micrortps_agent/PositionSetpointTriplet.s: src/micrortps_agent/PositionSetpointTriplet.cpp.s .PHONY : src/micrortps_agent/PositionSetpointTriplet.s # target to generate assembly for a file src/micrortps_agent/PositionSetpointTriplet.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/PositionSetpointTriplet.cpp.s .PHONY : src/micrortps_agent/PositionSetpointTriplet.cpp.s src/micrortps_agent/PositionSetpointTripletPubSubTypes.o: src/micrortps_agent/PositionSetpointTripletPubSubTypes.cpp.o .PHONY : src/micrortps_agent/PositionSetpointTripletPubSubTypes.o # target to build an object file src/micrortps_agent/PositionSetpointTripletPubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/PositionSetpointTripletPubSubTypes.cpp.o .PHONY : src/micrortps_agent/PositionSetpointTripletPubSubTypes.cpp.o src/micrortps_agent/PositionSetpointTripletPubSubTypes.i: src/micrortps_agent/PositionSetpointTripletPubSubTypes.cpp.i .PHONY : src/micrortps_agent/PositionSetpointTripletPubSubTypes.i # target to preprocess a source file src/micrortps_agent/PositionSetpointTripletPubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/PositionSetpointTripletPubSubTypes.cpp.i .PHONY : src/micrortps_agent/PositionSetpointTripletPubSubTypes.cpp.i src/micrortps_agent/PositionSetpointTripletPubSubTypes.s: src/micrortps_agent/PositionSetpointTripletPubSubTypes.cpp.s .PHONY : src/micrortps_agent/PositionSetpointTripletPubSubTypes.s # target to generate assembly for a file src/micrortps_agent/PositionSetpointTripletPubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/PositionSetpointTripletPubSubTypes.cpp.s .PHONY : src/micrortps_agent/PositionSetpointTripletPubSubTypes.cpp.s src/micrortps_agent/PositionSetpointTriplet_Subscriber.o: src/micrortps_agent/PositionSetpointTriplet_Subscriber.cpp.o .PHONY : src/micrortps_agent/PositionSetpointTriplet_Subscriber.o # target to build an object file src/micrortps_agent/PositionSetpointTriplet_Subscriber.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/PositionSetpointTriplet_Subscriber.cpp.o .PHONY : src/micrortps_agent/PositionSetpointTriplet_Subscriber.cpp.o src/micrortps_agent/PositionSetpointTriplet_Subscriber.i: src/micrortps_agent/PositionSetpointTriplet_Subscriber.cpp.i .PHONY : src/micrortps_agent/PositionSetpointTriplet_Subscriber.i # target to preprocess a source file src/micrortps_agent/PositionSetpointTriplet_Subscriber.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/PositionSetpointTriplet_Subscriber.cpp.i .PHONY : src/micrortps_agent/PositionSetpointTriplet_Subscriber.cpp.i src/micrortps_agent/PositionSetpointTriplet_Subscriber.s: src/micrortps_agent/PositionSetpointTriplet_Subscriber.cpp.s .PHONY : src/micrortps_agent/PositionSetpointTriplet_Subscriber.s # target to generate assembly for a file src/micrortps_agent/PositionSetpointTriplet_Subscriber.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/PositionSetpointTriplet_Subscriber.cpp.s .PHONY : src/micrortps_agent/PositionSetpointTriplet_Subscriber.cpp.s src/micrortps_agent/PositionSetpoint_Subscriber.o: src/micrortps_agent/PositionSetpoint_Subscriber.cpp.o .PHONY : src/micrortps_agent/PositionSetpoint_Subscriber.o # target to build an object file src/micrortps_agent/PositionSetpoint_Subscriber.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/PositionSetpoint_Subscriber.cpp.o .PHONY : src/micrortps_agent/PositionSetpoint_Subscriber.cpp.o src/micrortps_agent/PositionSetpoint_Subscriber.i: src/micrortps_agent/PositionSetpoint_Subscriber.cpp.i .PHONY : src/micrortps_agent/PositionSetpoint_Subscriber.i # target to preprocess a source file src/micrortps_agent/PositionSetpoint_Subscriber.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/PositionSetpoint_Subscriber.cpp.i .PHONY : src/micrortps_agent/PositionSetpoint_Subscriber.cpp.i src/micrortps_agent/PositionSetpoint_Subscriber.s: src/micrortps_agent/PositionSetpoint_Subscriber.cpp.s .PHONY : src/micrortps_agent/PositionSetpoint_Subscriber.s # target to generate assembly for a file src/micrortps_agent/PositionSetpoint_Subscriber.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/PositionSetpoint_Subscriber.cpp.s .PHONY : src/micrortps_agent/PositionSetpoint_Subscriber.cpp.s src/micrortps_agent/RtpsTopics.o: src/micrortps_agent/RtpsTopics.cpp.o .PHONY : src/micrortps_agent/RtpsTopics.o # target to build an object file src/micrortps_agent/RtpsTopics.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/RtpsTopics.cpp.o .PHONY : src/micrortps_agent/RtpsTopics.cpp.o src/micrortps_agent/RtpsTopics.i: src/micrortps_agent/RtpsTopics.cpp.i .PHONY : src/micrortps_agent/RtpsTopics.i # target to preprocess a source file src/micrortps_agent/RtpsTopics.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/RtpsTopics.cpp.i .PHONY : src/micrortps_agent/RtpsTopics.cpp.i src/micrortps_agent/RtpsTopics.s: src/micrortps_agent/RtpsTopics.cpp.s .PHONY : src/micrortps_agent/RtpsTopics.s # target to generate assembly for a file src/micrortps_agent/RtpsTopics.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/RtpsTopics.cpp.s .PHONY : src/micrortps_agent/RtpsTopics.cpp.s src/micrortps_agent/SatelliteInfo.o: src/micrortps_agent/SatelliteInfo.cpp.o .PHONY : src/micrortps_agent/SatelliteInfo.o # target to build an object file src/micrortps_agent/SatelliteInfo.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/SatelliteInfo.cpp.o .PHONY : src/micrortps_agent/SatelliteInfo.cpp.o src/micrortps_agent/SatelliteInfo.i: src/micrortps_agent/SatelliteInfo.cpp.i .PHONY : src/micrortps_agent/SatelliteInfo.i # target to preprocess a source file src/micrortps_agent/SatelliteInfo.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/SatelliteInfo.cpp.i .PHONY : src/micrortps_agent/SatelliteInfo.cpp.i src/micrortps_agent/SatelliteInfo.s: src/micrortps_agent/SatelliteInfo.cpp.s .PHONY : src/micrortps_agent/SatelliteInfo.s # target to generate assembly for a file src/micrortps_agent/SatelliteInfo.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/SatelliteInfo.cpp.s .PHONY : src/micrortps_agent/SatelliteInfo.cpp.s src/micrortps_agent/SatelliteInfoPubSubTypes.o: src/micrortps_agent/SatelliteInfoPubSubTypes.cpp.o .PHONY : src/micrortps_agent/SatelliteInfoPubSubTypes.o # target to build an object file src/micrortps_agent/SatelliteInfoPubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/SatelliteInfoPubSubTypes.cpp.o .PHONY : src/micrortps_agent/SatelliteInfoPubSubTypes.cpp.o src/micrortps_agent/SatelliteInfoPubSubTypes.i: src/micrortps_agent/SatelliteInfoPubSubTypes.cpp.i .PHONY : src/micrortps_agent/SatelliteInfoPubSubTypes.i # target to preprocess a source file src/micrortps_agent/SatelliteInfoPubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/SatelliteInfoPubSubTypes.cpp.i .PHONY : src/micrortps_agent/SatelliteInfoPubSubTypes.cpp.i src/micrortps_agent/SatelliteInfoPubSubTypes.s: src/micrortps_agent/SatelliteInfoPubSubTypes.cpp.s .PHONY : src/micrortps_agent/SatelliteInfoPubSubTypes.s # target to generate assembly for a file src/micrortps_agent/SatelliteInfoPubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/SatelliteInfoPubSubTypes.cpp.s .PHONY : src/micrortps_agent/SatelliteInfoPubSubTypes.cpp.s src/micrortps_agent/SatelliteInfo_Publisher.o: src/micrortps_agent/SatelliteInfo_Publisher.cpp.o .PHONY : src/micrortps_agent/SatelliteInfo_Publisher.o # target to build an object file src/micrortps_agent/SatelliteInfo_Publisher.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/SatelliteInfo_Publisher.cpp.o .PHONY : src/micrortps_agent/SatelliteInfo_Publisher.cpp.o src/micrortps_agent/SatelliteInfo_Publisher.i: src/micrortps_agent/SatelliteInfo_Publisher.cpp.i .PHONY : src/micrortps_agent/SatelliteInfo_Publisher.i # target to preprocess a source file src/micrortps_agent/SatelliteInfo_Publisher.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/SatelliteInfo_Publisher.cpp.i .PHONY : src/micrortps_agent/SatelliteInfo_Publisher.cpp.i src/micrortps_agent/SatelliteInfo_Publisher.s: src/micrortps_agent/SatelliteInfo_Publisher.cpp.s .PHONY : src/micrortps_agent/SatelliteInfo_Publisher.s # target to generate assembly for a file src/micrortps_agent/SatelliteInfo_Publisher.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/SatelliteInfo_Publisher.cpp.s .PHONY : src/micrortps_agent/SatelliteInfo_Publisher.cpp.s src/micrortps_agent/SensorCombined.o: src/micrortps_agent/SensorCombined.cpp.o .PHONY : src/micrortps_agent/SensorCombined.o # target to build an object file src/micrortps_agent/SensorCombined.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/SensorCombined.cpp.o .PHONY : src/micrortps_agent/SensorCombined.cpp.o src/micrortps_agent/SensorCombined.i: src/micrortps_agent/SensorCombined.cpp.i .PHONY : src/micrortps_agent/SensorCombined.i # target to preprocess a source file src/micrortps_agent/SensorCombined.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/SensorCombined.cpp.i .PHONY : src/micrortps_agent/SensorCombined.cpp.i src/micrortps_agent/SensorCombined.s: src/micrortps_agent/SensorCombined.cpp.s .PHONY : src/micrortps_agent/SensorCombined.s # target to generate assembly for a file src/micrortps_agent/SensorCombined.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/SensorCombined.cpp.s .PHONY : src/micrortps_agent/SensorCombined.cpp.s src/micrortps_agent/SensorCombinedPubSubTypes.o: src/micrortps_agent/SensorCombinedPubSubTypes.cpp.o .PHONY : src/micrortps_agent/SensorCombinedPubSubTypes.o # target to build an object file src/micrortps_agent/SensorCombinedPubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/SensorCombinedPubSubTypes.cpp.o .PHONY : src/micrortps_agent/SensorCombinedPubSubTypes.cpp.o src/micrortps_agent/SensorCombinedPubSubTypes.i: src/micrortps_agent/SensorCombinedPubSubTypes.cpp.i .PHONY : src/micrortps_agent/SensorCombinedPubSubTypes.i # target to preprocess a source file src/micrortps_agent/SensorCombinedPubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/SensorCombinedPubSubTypes.cpp.i .PHONY : src/micrortps_agent/SensorCombinedPubSubTypes.cpp.i src/micrortps_agent/SensorCombinedPubSubTypes.s: src/micrortps_agent/SensorCombinedPubSubTypes.cpp.s .PHONY : src/micrortps_agent/SensorCombinedPubSubTypes.s # target to generate assembly for a file src/micrortps_agent/SensorCombinedPubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/SensorCombinedPubSubTypes.cpp.s .PHONY : src/micrortps_agent/SensorCombinedPubSubTypes.cpp.s src/micrortps_agent/SensorCombined_Publisher.o: src/micrortps_agent/SensorCombined_Publisher.cpp.o .PHONY : src/micrortps_agent/SensorCombined_Publisher.o # target to build an object file src/micrortps_agent/SensorCombined_Publisher.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/SensorCombined_Publisher.cpp.o .PHONY : src/micrortps_agent/SensorCombined_Publisher.cpp.o src/micrortps_agent/SensorCombined_Publisher.i: src/micrortps_agent/SensorCombined_Publisher.cpp.i .PHONY : src/micrortps_agent/SensorCombined_Publisher.i # target to preprocess a source file src/micrortps_agent/SensorCombined_Publisher.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/SensorCombined_Publisher.cpp.i .PHONY : src/micrortps_agent/SensorCombined_Publisher.cpp.i src/micrortps_agent/SensorCombined_Publisher.s: src/micrortps_agent/SensorCombined_Publisher.cpp.s .PHONY : src/micrortps_agent/SensorCombined_Publisher.s # target to generate assembly for a file src/micrortps_agent/SensorCombined_Publisher.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/SensorCombined_Publisher.cpp.s .PHONY : src/micrortps_agent/SensorCombined_Publisher.cpp.s src/micrortps_agent/TelemetryStatus.o: src/micrortps_agent/TelemetryStatus.cpp.o .PHONY : src/micrortps_agent/TelemetryStatus.o # target to build an object file src/micrortps_agent/TelemetryStatus.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TelemetryStatus.cpp.o .PHONY : src/micrortps_agent/TelemetryStatus.cpp.o src/micrortps_agent/TelemetryStatus.i: src/micrortps_agent/TelemetryStatus.cpp.i .PHONY : src/micrortps_agent/TelemetryStatus.i # target to preprocess a source file src/micrortps_agent/TelemetryStatus.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TelemetryStatus.cpp.i .PHONY : src/micrortps_agent/TelemetryStatus.cpp.i src/micrortps_agent/TelemetryStatus.s: src/micrortps_agent/TelemetryStatus.cpp.s .PHONY : src/micrortps_agent/TelemetryStatus.s # target to generate assembly for a file src/micrortps_agent/TelemetryStatus.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TelemetryStatus.cpp.s .PHONY : src/micrortps_agent/TelemetryStatus.cpp.s src/micrortps_agent/TelemetryStatusPubSubTypes.o: src/micrortps_agent/TelemetryStatusPubSubTypes.cpp.o .PHONY : src/micrortps_agent/TelemetryStatusPubSubTypes.o # target to build an object file src/micrortps_agent/TelemetryStatusPubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TelemetryStatusPubSubTypes.cpp.o .PHONY : src/micrortps_agent/TelemetryStatusPubSubTypes.cpp.o src/micrortps_agent/TelemetryStatusPubSubTypes.i: src/micrortps_agent/TelemetryStatusPubSubTypes.cpp.i .PHONY : src/micrortps_agent/TelemetryStatusPubSubTypes.i # target to preprocess a source file src/micrortps_agent/TelemetryStatusPubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TelemetryStatusPubSubTypes.cpp.i .PHONY : src/micrortps_agent/TelemetryStatusPubSubTypes.cpp.i src/micrortps_agent/TelemetryStatusPubSubTypes.s: src/micrortps_agent/TelemetryStatusPubSubTypes.cpp.s .PHONY : src/micrortps_agent/TelemetryStatusPubSubTypes.s # target to generate assembly for a file src/micrortps_agent/TelemetryStatusPubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TelemetryStatusPubSubTypes.cpp.s .PHONY : src/micrortps_agent/TelemetryStatusPubSubTypes.cpp.s src/micrortps_agent/TelemetryStatus_Subscriber.o: src/micrortps_agent/TelemetryStatus_Subscriber.cpp.o .PHONY : src/micrortps_agent/TelemetryStatus_Subscriber.o # target to build an object file src/micrortps_agent/TelemetryStatus_Subscriber.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TelemetryStatus_Subscriber.cpp.o .PHONY : src/micrortps_agent/TelemetryStatus_Subscriber.cpp.o src/micrortps_agent/TelemetryStatus_Subscriber.i: src/micrortps_agent/TelemetryStatus_Subscriber.cpp.i .PHONY : src/micrortps_agent/TelemetryStatus_Subscriber.i # target to preprocess a source file src/micrortps_agent/TelemetryStatus_Subscriber.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TelemetryStatus_Subscriber.cpp.i .PHONY : src/micrortps_agent/TelemetryStatus_Subscriber.cpp.i src/micrortps_agent/TelemetryStatus_Subscriber.s: src/micrortps_agent/TelemetryStatus_Subscriber.cpp.s .PHONY : src/micrortps_agent/TelemetryStatus_Subscriber.s # target to generate assembly for a file src/micrortps_agent/TelemetryStatus_Subscriber.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TelemetryStatus_Subscriber.cpp.s .PHONY : src/micrortps_agent/TelemetryStatus_Subscriber.cpp.s src/micrortps_agent/Timesync.o: src/micrortps_agent/Timesync.cpp.o .PHONY : src/micrortps_agent/Timesync.o # target to build an object file src/micrortps_agent/Timesync.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/Timesync.cpp.o .PHONY : src/micrortps_agent/Timesync.cpp.o src/micrortps_agent/Timesync.i: src/micrortps_agent/Timesync.cpp.i .PHONY : src/micrortps_agent/Timesync.i # target to preprocess a source file src/micrortps_agent/Timesync.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/Timesync.cpp.i .PHONY : src/micrortps_agent/Timesync.cpp.i src/micrortps_agent/Timesync.s: src/micrortps_agent/Timesync.cpp.s .PHONY : src/micrortps_agent/Timesync.s # target to generate assembly for a file src/micrortps_agent/Timesync.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/Timesync.cpp.s .PHONY : src/micrortps_agent/Timesync.cpp.s src/micrortps_agent/TimesyncPubSubTypes.o: src/micrortps_agent/TimesyncPubSubTypes.cpp.o .PHONY : src/micrortps_agent/TimesyncPubSubTypes.o # target to build an object file src/micrortps_agent/TimesyncPubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TimesyncPubSubTypes.cpp.o .PHONY : src/micrortps_agent/TimesyncPubSubTypes.cpp.o src/micrortps_agent/TimesyncPubSubTypes.i: src/micrortps_agent/TimesyncPubSubTypes.cpp.i .PHONY : src/micrortps_agent/TimesyncPubSubTypes.i # target to preprocess a source file src/micrortps_agent/TimesyncPubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TimesyncPubSubTypes.cpp.i .PHONY : src/micrortps_agent/TimesyncPubSubTypes.cpp.i src/micrortps_agent/TimesyncPubSubTypes.s: src/micrortps_agent/TimesyncPubSubTypes.cpp.s .PHONY : src/micrortps_agent/TimesyncPubSubTypes.s # target to generate assembly for a file src/micrortps_agent/TimesyncPubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TimesyncPubSubTypes.cpp.s .PHONY : src/micrortps_agent/TimesyncPubSubTypes.cpp.s src/micrortps_agent/Timesync_Publisher.o: src/micrortps_agent/Timesync_Publisher.cpp.o .PHONY : src/micrortps_agent/Timesync_Publisher.o # target to build an object file src/micrortps_agent/Timesync_Publisher.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/Timesync_Publisher.cpp.o .PHONY : src/micrortps_agent/Timesync_Publisher.cpp.o src/micrortps_agent/Timesync_Publisher.i: src/micrortps_agent/Timesync_Publisher.cpp.i .PHONY : src/micrortps_agent/Timesync_Publisher.i # target to preprocess a source file src/micrortps_agent/Timesync_Publisher.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/Timesync_Publisher.cpp.i .PHONY : src/micrortps_agent/Timesync_Publisher.cpp.i src/micrortps_agent/Timesync_Publisher.s: src/micrortps_agent/Timesync_Publisher.cpp.s .PHONY : src/micrortps_agent/Timesync_Publisher.s # target to generate assembly for a file src/micrortps_agent/Timesync_Publisher.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/Timesync_Publisher.cpp.s .PHONY : src/micrortps_agent/Timesync_Publisher.cpp.s src/micrortps_agent/Timesync_Subscriber.o: src/micrortps_agent/Timesync_Subscriber.cpp.o .PHONY : src/micrortps_agent/Timesync_Subscriber.o # target to build an object file src/micrortps_agent/Timesync_Subscriber.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/Timesync_Subscriber.cpp.o .PHONY : src/micrortps_agent/Timesync_Subscriber.cpp.o src/micrortps_agent/Timesync_Subscriber.i: src/micrortps_agent/Timesync_Subscriber.cpp.i .PHONY : src/micrortps_agent/Timesync_Subscriber.i # target to preprocess a source file src/micrortps_agent/Timesync_Subscriber.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/Timesync_Subscriber.cpp.i .PHONY : src/micrortps_agent/Timesync_Subscriber.cpp.i src/micrortps_agent/Timesync_Subscriber.s: src/micrortps_agent/Timesync_Subscriber.cpp.s .PHONY : src/micrortps_agent/Timesync_Subscriber.s # target to generate assembly for a file src/micrortps_agent/Timesync_Subscriber.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/Timesync_Subscriber.cpp.s .PHONY : src/micrortps_agent/Timesync_Subscriber.cpp.s src/micrortps_agent/TrajectoryBezier.o: src/micrortps_agent/TrajectoryBezier.cpp.o .PHONY : src/micrortps_agent/TrajectoryBezier.o # target to build an object file src/micrortps_agent/TrajectoryBezier.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectoryBezier.cpp.o .PHONY : src/micrortps_agent/TrajectoryBezier.cpp.o src/micrortps_agent/TrajectoryBezier.i: src/micrortps_agent/TrajectoryBezier.cpp.i .PHONY : src/micrortps_agent/TrajectoryBezier.i # target to preprocess a source file src/micrortps_agent/TrajectoryBezier.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectoryBezier.cpp.i .PHONY : src/micrortps_agent/TrajectoryBezier.cpp.i src/micrortps_agent/TrajectoryBezier.s: src/micrortps_agent/TrajectoryBezier.cpp.s .PHONY : src/micrortps_agent/TrajectoryBezier.s # target to generate assembly for a file src/micrortps_agent/TrajectoryBezier.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectoryBezier.cpp.s .PHONY : src/micrortps_agent/TrajectoryBezier.cpp.s src/micrortps_agent/TrajectoryBezierPubSubTypes.o: src/micrortps_agent/TrajectoryBezierPubSubTypes.cpp.o .PHONY : src/micrortps_agent/TrajectoryBezierPubSubTypes.o # target to build an object file src/micrortps_agent/TrajectoryBezierPubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectoryBezierPubSubTypes.cpp.o .PHONY : src/micrortps_agent/TrajectoryBezierPubSubTypes.cpp.o src/micrortps_agent/TrajectoryBezierPubSubTypes.i: src/micrortps_agent/TrajectoryBezierPubSubTypes.cpp.i .PHONY : src/micrortps_agent/TrajectoryBezierPubSubTypes.i # target to preprocess a source file src/micrortps_agent/TrajectoryBezierPubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectoryBezierPubSubTypes.cpp.i .PHONY : src/micrortps_agent/TrajectoryBezierPubSubTypes.cpp.i src/micrortps_agent/TrajectoryBezierPubSubTypes.s: src/micrortps_agent/TrajectoryBezierPubSubTypes.cpp.s .PHONY : src/micrortps_agent/TrajectoryBezierPubSubTypes.s # target to generate assembly for a file src/micrortps_agent/TrajectoryBezierPubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectoryBezierPubSubTypes.cpp.s .PHONY : src/micrortps_agent/TrajectoryBezierPubSubTypes.cpp.s src/micrortps_agent/TrajectoryBezier_Subscriber.o: src/micrortps_agent/TrajectoryBezier_Subscriber.cpp.o .PHONY : src/micrortps_agent/TrajectoryBezier_Subscriber.o # target to build an object file src/micrortps_agent/TrajectoryBezier_Subscriber.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectoryBezier_Subscriber.cpp.o .PHONY : src/micrortps_agent/TrajectoryBezier_Subscriber.cpp.o src/micrortps_agent/TrajectoryBezier_Subscriber.i: src/micrortps_agent/TrajectoryBezier_Subscriber.cpp.i .PHONY : src/micrortps_agent/TrajectoryBezier_Subscriber.i # target to preprocess a source file src/micrortps_agent/TrajectoryBezier_Subscriber.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectoryBezier_Subscriber.cpp.i .PHONY : src/micrortps_agent/TrajectoryBezier_Subscriber.cpp.i src/micrortps_agent/TrajectoryBezier_Subscriber.s: src/micrortps_agent/TrajectoryBezier_Subscriber.cpp.s .PHONY : src/micrortps_agent/TrajectoryBezier_Subscriber.s # target to generate assembly for a file src/micrortps_agent/TrajectoryBezier_Subscriber.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectoryBezier_Subscriber.cpp.s .PHONY : src/micrortps_agent/TrajectoryBezier_Subscriber.cpp.s src/micrortps_agent/TrajectorySetpoint.o: src/micrortps_agent/TrajectorySetpoint.cpp.o .PHONY : src/micrortps_agent/TrajectorySetpoint.o # target to build an object file src/micrortps_agent/TrajectorySetpoint.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectorySetpoint.cpp.o .PHONY : src/micrortps_agent/TrajectorySetpoint.cpp.o src/micrortps_agent/TrajectorySetpoint.i: src/micrortps_agent/TrajectorySetpoint.cpp.i .PHONY : src/micrortps_agent/TrajectorySetpoint.i # target to preprocess a source file src/micrortps_agent/TrajectorySetpoint.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectorySetpoint.cpp.i .PHONY : src/micrortps_agent/TrajectorySetpoint.cpp.i src/micrortps_agent/TrajectorySetpoint.s: src/micrortps_agent/TrajectorySetpoint.cpp.s .PHONY : src/micrortps_agent/TrajectorySetpoint.s # target to generate assembly for a file src/micrortps_agent/TrajectorySetpoint.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectorySetpoint.cpp.s .PHONY : src/micrortps_agent/TrajectorySetpoint.cpp.s src/micrortps_agent/TrajectorySetpointPubSubTypes.o: src/micrortps_agent/TrajectorySetpointPubSubTypes.cpp.o .PHONY : src/micrortps_agent/TrajectorySetpointPubSubTypes.o # target to build an object file src/micrortps_agent/TrajectorySetpointPubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectorySetpointPubSubTypes.cpp.o .PHONY : src/micrortps_agent/TrajectorySetpointPubSubTypes.cpp.o src/micrortps_agent/TrajectorySetpointPubSubTypes.i: src/micrortps_agent/TrajectorySetpointPubSubTypes.cpp.i .PHONY : src/micrortps_agent/TrajectorySetpointPubSubTypes.i # target to preprocess a source file src/micrortps_agent/TrajectorySetpointPubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectorySetpointPubSubTypes.cpp.i .PHONY : src/micrortps_agent/TrajectorySetpointPubSubTypes.cpp.i src/micrortps_agent/TrajectorySetpointPubSubTypes.s: src/micrortps_agent/TrajectorySetpointPubSubTypes.cpp.s .PHONY : src/micrortps_agent/TrajectorySetpointPubSubTypes.s # target to generate assembly for a file src/micrortps_agent/TrajectorySetpointPubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectorySetpointPubSubTypes.cpp.s .PHONY : src/micrortps_agent/TrajectorySetpointPubSubTypes.cpp.s src/micrortps_agent/TrajectorySetpoint_Subscriber.o: src/micrortps_agent/TrajectorySetpoint_Subscriber.cpp.o .PHONY : src/micrortps_agent/TrajectorySetpoint_Subscriber.o # target to build an object file src/micrortps_agent/TrajectorySetpoint_Subscriber.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectorySetpoint_Subscriber.cpp.o .PHONY : src/micrortps_agent/TrajectorySetpoint_Subscriber.cpp.o src/micrortps_agent/TrajectorySetpoint_Subscriber.i: src/micrortps_agent/TrajectorySetpoint_Subscriber.cpp.i .PHONY : src/micrortps_agent/TrajectorySetpoint_Subscriber.i # target to preprocess a source file src/micrortps_agent/TrajectorySetpoint_Subscriber.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectorySetpoint_Subscriber.cpp.i .PHONY : src/micrortps_agent/TrajectorySetpoint_Subscriber.cpp.i src/micrortps_agent/TrajectorySetpoint_Subscriber.s: src/micrortps_agent/TrajectorySetpoint_Subscriber.cpp.s .PHONY : src/micrortps_agent/TrajectorySetpoint_Subscriber.s # target to generate assembly for a file src/micrortps_agent/TrajectorySetpoint_Subscriber.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectorySetpoint_Subscriber.cpp.s .PHONY : src/micrortps_agent/TrajectorySetpoint_Subscriber.cpp.s src/micrortps_agent/TrajectoryWaypoint.o: src/micrortps_agent/TrajectoryWaypoint.cpp.o .PHONY : src/micrortps_agent/TrajectoryWaypoint.o # target to build an object file src/micrortps_agent/TrajectoryWaypoint.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectoryWaypoint.cpp.o .PHONY : src/micrortps_agent/TrajectoryWaypoint.cpp.o src/micrortps_agent/TrajectoryWaypoint.i: src/micrortps_agent/TrajectoryWaypoint.cpp.i .PHONY : src/micrortps_agent/TrajectoryWaypoint.i # target to preprocess a source file src/micrortps_agent/TrajectoryWaypoint.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectoryWaypoint.cpp.i .PHONY : src/micrortps_agent/TrajectoryWaypoint.cpp.i src/micrortps_agent/TrajectoryWaypoint.s: src/micrortps_agent/TrajectoryWaypoint.cpp.s .PHONY : src/micrortps_agent/TrajectoryWaypoint.s # target to generate assembly for a file src/micrortps_agent/TrajectoryWaypoint.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectoryWaypoint.cpp.s .PHONY : src/micrortps_agent/TrajectoryWaypoint.cpp.s src/micrortps_agent/TrajectoryWaypointPubSubTypes.o: src/micrortps_agent/TrajectoryWaypointPubSubTypes.cpp.o .PHONY : src/micrortps_agent/TrajectoryWaypointPubSubTypes.o # target to build an object file src/micrortps_agent/TrajectoryWaypointPubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectoryWaypointPubSubTypes.cpp.o .PHONY : src/micrortps_agent/TrajectoryWaypointPubSubTypes.cpp.o src/micrortps_agent/TrajectoryWaypointPubSubTypes.i: src/micrortps_agent/TrajectoryWaypointPubSubTypes.cpp.i .PHONY : src/micrortps_agent/TrajectoryWaypointPubSubTypes.i # target to preprocess a source file src/micrortps_agent/TrajectoryWaypointPubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectoryWaypointPubSubTypes.cpp.i .PHONY : src/micrortps_agent/TrajectoryWaypointPubSubTypes.cpp.i src/micrortps_agent/TrajectoryWaypointPubSubTypes.s: src/micrortps_agent/TrajectoryWaypointPubSubTypes.cpp.s .PHONY : src/micrortps_agent/TrajectoryWaypointPubSubTypes.s # target to generate assembly for a file src/micrortps_agent/TrajectoryWaypointPubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectoryWaypointPubSubTypes.cpp.s .PHONY : src/micrortps_agent/TrajectoryWaypointPubSubTypes.cpp.s src/micrortps_agent/TrajectoryWaypoint_Publisher.o: src/micrortps_agent/TrajectoryWaypoint_Publisher.cpp.o .PHONY : src/micrortps_agent/TrajectoryWaypoint_Publisher.o # target to build an object file src/micrortps_agent/TrajectoryWaypoint_Publisher.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectoryWaypoint_Publisher.cpp.o .PHONY : src/micrortps_agent/TrajectoryWaypoint_Publisher.cpp.o src/micrortps_agent/TrajectoryWaypoint_Publisher.i: src/micrortps_agent/TrajectoryWaypoint_Publisher.cpp.i .PHONY : src/micrortps_agent/TrajectoryWaypoint_Publisher.i # target to preprocess a source file src/micrortps_agent/TrajectoryWaypoint_Publisher.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectoryWaypoint_Publisher.cpp.i .PHONY : src/micrortps_agent/TrajectoryWaypoint_Publisher.cpp.i src/micrortps_agent/TrajectoryWaypoint_Publisher.s: src/micrortps_agent/TrajectoryWaypoint_Publisher.cpp.s .PHONY : src/micrortps_agent/TrajectoryWaypoint_Publisher.s # target to generate assembly for a file src/micrortps_agent/TrajectoryWaypoint_Publisher.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectoryWaypoint_Publisher.cpp.s .PHONY : src/micrortps_agent/TrajectoryWaypoint_Publisher.cpp.s src/micrortps_agent/TrajectoryWaypoint_Subscriber.o: src/micrortps_agent/TrajectoryWaypoint_Subscriber.cpp.o .PHONY : src/micrortps_agent/TrajectoryWaypoint_Subscriber.o # target to build an object file src/micrortps_agent/TrajectoryWaypoint_Subscriber.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectoryWaypoint_Subscriber.cpp.o .PHONY : src/micrortps_agent/TrajectoryWaypoint_Subscriber.cpp.o src/micrortps_agent/TrajectoryWaypoint_Subscriber.i: src/micrortps_agent/TrajectoryWaypoint_Subscriber.cpp.i .PHONY : src/micrortps_agent/TrajectoryWaypoint_Subscriber.i # target to preprocess a source file src/micrortps_agent/TrajectoryWaypoint_Subscriber.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectoryWaypoint_Subscriber.cpp.i .PHONY : src/micrortps_agent/TrajectoryWaypoint_Subscriber.cpp.i src/micrortps_agent/TrajectoryWaypoint_Subscriber.s: src/micrortps_agent/TrajectoryWaypoint_Subscriber.cpp.s .PHONY : src/micrortps_agent/TrajectoryWaypoint_Subscriber.s # target to generate assembly for a file src/micrortps_agent/TrajectoryWaypoint_Subscriber.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/TrajectoryWaypoint_Subscriber.cpp.s .PHONY : src/micrortps_agent/TrajectoryWaypoint_Subscriber.cpp.s src/micrortps_agent/VehicleAngularVelocity.o: src/micrortps_agent/VehicleAngularVelocity.cpp.o .PHONY : src/micrortps_agent/VehicleAngularVelocity.o # target to build an object file src/micrortps_agent/VehicleAngularVelocity.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleAngularVelocity.cpp.o .PHONY : src/micrortps_agent/VehicleAngularVelocity.cpp.o src/micrortps_agent/VehicleAngularVelocity.i: src/micrortps_agent/VehicleAngularVelocity.cpp.i .PHONY : src/micrortps_agent/VehicleAngularVelocity.i # target to preprocess a source file src/micrortps_agent/VehicleAngularVelocity.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleAngularVelocity.cpp.i .PHONY : src/micrortps_agent/VehicleAngularVelocity.cpp.i src/micrortps_agent/VehicleAngularVelocity.s: src/micrortps_agent/VehicleAngularVelocity.cpp.s .PHONY : src/micrortps_agent/VehicleAngularVelocity.s # target to generate assembly for a file src/micrortps_agent/VehicleAngularVelocity.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleAngularVelocity.cpp.s .PHONY : src/micrortps_agent/VehicleAngularVelocity.cpp.s src/micrortps_agent/VehicleAngularVelocityPubSubTypes.o: src/micrortps_agent/VehicleAngularVelocityPubSubTypes.cpp.o .PHONY : src/micrortps_agent/VehicleAngularVelocityPubSubTypes.o # target to build an object file src/micrortps_agent/VehicleAngularVelocityPubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleAngularVelocityPubSubTypes.cpp.o .PHONY : src/micrortps_agent/VehicleAngularVelocityPubSubTypes.cpp.o src/micrortps_agent/VehicleAngularVelocityPubSubTypes.i: src/micrortps_agent/VehicleAngularVelocityPubSubTypes.cpp.i .PHONY : src/micrortps_agent/VehicleAngularVelocityPubSubTypes.i # target to preprocess a source file src/micrortps_agent/VehicleAngularVelocityPubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleAngularVelocityPubSubTypes.cpp.i .PHONY : src/micrortps_agent/VehicleAngularVelocityPubSubTypes.cpp.i src/micrortps_agent/VehicleAngularVelocityPubSubTypes.s: src/micrortps_agent/VehicleAngularVelocityPubSubTypes.cpp.s .PHONY : src/micrortps_agent/VehicleAngularVelocityPubSubTypes.s # target to generate assembly for a file src/micrortps_agent/VehicleAngularVelocityPubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleAngularVelocityPubSubTypes.cpp.s .PHONY : src/micrortps_agent/VehicleAngularVelocityPubSubTypes.cpp.s src/micrortps_agent/VehicleAngularVelocity_Publisher.o: src/micrortps_agent/VehicleAngularVelocity_Publisher.cpp.o .PHONY : src/micrortps_agent/VehicleAngularVelocity_Publisher.o # target to build an object file src/micrortps_agent/VehicleAngularVelocity_Publisher.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleAngularVelocity_Publisher.cpp.o .PHONY : src/micrortps_agent/VehicleAngularVelocity_Publisher.cpp.o src/micrortps_agent/VehicleAngularVelocity_Publisher.i: src/micrortps_agent/VehicleAngularVelocity_Publisher.cpp.i .PHONY : src/micrortps_agent/VehicleAngularVelocity_Publisher.i # target to preprocess a source file src/micrortps_agent/VehicleAngularVelocity_Publisher.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleAngularVelocity_Publisher.cpp.i .PHONY : src/micrortps_agent/VehicleAngularVelocity_Publisher.cpp.i src/micrortps_agent/VehicleAngularVelocity_Publisher.s: src/micrortps_agent/VehicleAngularVelocity_Publisher.cpp.s .PHONY : src/micrortps_agent/VehicleAngularVelocity_Publisher.s # target to generate assembly for a file src/micrortps_agent/VehicleAngularVelocity_Publisher.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleAngularVelocity_Publisher.cpp.s .PHONY : src/micrortps_agent/VehicleAngularVelocity_Publisher.cpp.s src/micrortps_agent/VehicleAttitude.o: src/micrortps_agent/VehicleAttitude.cpp.o .PHONY : src/micrortps_agent/VehicleAttitude.o # target to build an object file src/micrortps_agent/VehicleAttitude.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleAttitude.cpp.o .PHONY : src/micrortps_agent/VehicleAttitude.cpp.o src/micrortps_agent/VehicleAttitude.i: src/micrortps_agent/VehicleAttitude.cpp.i .PHONY : src/micrortps_agent/VehicleAttitude.i # target to preprocess a source file src/micrortps_agent/VehicleAttitude.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleAttitude.cpp.i .PHONY : src/micrortps_agent/VehicleAttitude.cpp.i src/micrortps_agent/VehicleAttitude.s: src/micrortps_agent/VehicleAttitude.cpp.s .PHONY : src/micrortps_agent/VehicleAttitude.s # target to generate assembly for a file src/micrortps_agent/VehicleAttitude.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleAttitude.cpp.s .PHONY : src/micrortps_agent/VehicleAttitude.cpp.s src/micrortps_agent/VehicleAttitudePubSubTypes.o: src/micrortps_agent/VehicleAttitudePubSubTypes.cpp.o .PHONY : src/micrortps_agent/VehicleAttitudePubSubTypes.o # target to build an object file src/micrortps_agent/VehicleAttitudePubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleAttitudePubSubTypes.cpp.o .PHONY : src/micrortps_agent/VehicleAttitudePubSubTypes.cpp.o src/micrortps_agent/VehicleAttitudePubSubTypes.i: src/micrortps_agent/VehicleAttitudePubSubTypes.cpp.i .PHONY : src/micrortps_agent/VehicleAttitudePubSubTypes.i # target to preprocess a source file src/micrortps_agent/VehicleAttitudePubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleAttitudePubSubTypes.cpp.i .PHONY : src/micrortps_agent/VehicleAttitudePubSubTypes.cpp.i src/micrortps_agent/VehicleAttitudePubSubTypes.s: src/micrortps_agent/VehicleAttitudePubSubTypes.cpp.s .PHONY : src/micrortps_agent/VehicleAttitudePubSubTypes.s # target to generate assembly for a file src/micrortps_agent/VehicleAttitudePubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleAttitudePubSubTypes.cpp.s .PHONY : src/micrortps_agent/VehicleAttitudePubSubTypes.cpp.s src/micrortps_agent/VehicleAttitude_Publisher.o: src/micrortps_agent/VehicleAttitude_Publisher.cpp.o .PHONY : src/micrortps_agent/VehicleAttitude_Publisher.o # target to build an object file src/micrortps_agent/VehicleAttitude_Publisher.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleAttitude_Publisher.cpp.o .PHONY : src/micrortps_agent/VehicleAttitude_Publisher.cpp.o src/micrortps_agent/VehicleAttitude_Publisher.i: src/micrortps_agent/VehicleAttitude_Publisher.cpp.i .PHONY : src/micrortps_agent/VehicleAttitude_Publisher.i # target to preprocess a source file src/micrortps_agent/VehicleAttitude_Publisher.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleAttitude_Publisher.cpp.i .PHONY : src/micrortps_agent/VehicleAttitude_Publisher.cpp.i src/micrortps_agent/VehicleAttitude_Publisher.s: src/micrortps_agent/VehicleAttitude_Publisher.cpp.s .PHONY : src/micrortps_agent/VehicleAttitude_Publisher.s # target to generate assembly for a file src/micrortps_agent/VehicleAttitude_Publisher.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleAttitude_Publisher.cpp.s .PHONY : src/micrortps_agent/VehicleAttitude_Publisher.cpp.s src/micrortps_agent/VehicleCommand.o: src/micrortps_agent/VehicleCommand.cpp.o .PHONY : src/micrortps_agent/VehicleCommand.o # target to build an object file src/micrortps_agent/VehicleCommand.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleCommand.cpp.o .PHONY : src/micrortps_agent/VehicleCommand.cpp.o src/micrortps_agent/VehicleCommand.i: src/micrortps_agent/VehicleCommand.cpp.i .PHONY : src/micrortps_agent/VehicleCommand.i # target to preprocess a source file src/micrortps_agent/VehicleCommand.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleCommand.cpp.i .PHONY : src/micrortps_agent/VehicleCommand.cpp.i src/micrortps_agent/VehicleCommand.s: src/micrortps_agent/VehicleCommand.cpp.s .PHONY : src/micrortps_agent/VehicleCommand.s # target to generate assembly for a file src/micrortps_agent/VehicleCommand.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleCommand.cpp.s .PHONY : src/micrortps_agent/VehicleCommand.cpp.s src/micrortps_agent/VehicleCommandPubSubTypes.o: src/micrortps_agent/VehicleCommandPubSubTypes.cpp.o .PHONY : src/micrortps_agent/VehicleCommandPubSubTypes.o # target to build an object file src/micrortps_agent/VehicleCommandPubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleCommandPubSubTypes.cpp.o .PHONY : src/micrortps_agent/VehicleCommandPubSubTypes.cpp.o src/micrortps_agent/VehicleCommandPubSubTypes.i: src/micrortps_agent/VehicleCommandPubSubTypes.cpp.i .PHONY : src/micrortps_agent/VehicleCommandPubSubTypes.i # target to preprocess a source file src/micrortps_agent/VehicleCommandPubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleCommandPubSubTypes.cpp.i .PHONY : src/micrortps_agent/VehicleCommandPubSubTypes.cpp.i src/micrortps_agent/VehicleCommandPubSubTypes.s: src/micrortps_agent/VehicleCommandPubSubTypes.cpp.s .PHONY : src/micrortps_agent/VehicleCommandPubSubTypes.s # target to generate assembly for a file src/micrortps_agent/VehicleCommandPubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleCommandPubSubTypes.cpp.s .PHONY : src/micrortps_agent/VehicleCommandPubSubTypes.cpp.s src/micrortps_agent/VehicleCommand_Subscriber.o: src/micrortps_agent/VehicleCommand_Subscriber.cpp.o .PHONY : src/micrortps_agent/VehicleCommand_Subscriber.o # target to build an object file src/micrortps_agent/VehicleCommand_Subscriber.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleCommand_Subscriber.cpp.o .PHONY : src/micrortps_agent/VehicleCommand_Subscriber.cpp.o src/micrortps_agent/VehicleCommand_Subscriber.i: src/micrortps_agent/VehicleCommand_Subscriber.cpp.i .PHONY : src/micrortps_agent/VehicleCommand_Subscriber.i # target to preprocess a source file src/micrortps_agent/VehicleCommand_Subscriber.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleCommand_Subscriber.cpp.i .PHONY : src/micrortps_agent/VehicleCommand_Subscriber.cpp.i src/micrortps_agent/VehicleCommand_Subscriber.s: src/micrortps_agent/VehicleCommand_Subscriber.cpp.s .PHONY : src/micrortps_agent/VehicleCommand_Subscriber.s # target to generate assembly for a file src/micrortps_agent/VehicleCommand_Subscriber.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleCommand_Subscriber.cpp.s .PHONY : src/micrortps_agent/VehicleCommand_Subscriber.cpp.s src/micrortps_agent/VehicleControlMode.o: src/micrortps_agent/VehicleControlMode.cpp.o .PHONY : src/micrortps_agent/VehicleControlMode.o # target to build an object file src/micrortps_agent/VehicleControlMode.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleControlMode.cpp.o .PHONY : src/micrortps_agent/VehicleControlMode.cpp.o src/micrortps_agent/VehicleControlMode.i: src/micrortps_agent/VehicleControlMode.cpp.i .PHONY : src/micrortps_agent/VehicleControlMode.i # target to preprocess a source file src/micrortps_agent/VehicleControlMode.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleControlMode.cpp.i .PHONY : src/micrortps_agent/VehicleControlMode.cpp.i src/micrortps_agent/VehicleControlMode.s: src/micrortps_agent/VehicleControlMode.cpp.s .PHONY : src/micrortps_agent/VehicleControlMode.s # target to generate assembly for a file src/micrortps_agent/VehicleControlMode.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleControlMode.cpp.s .PHONY : src/micrortps_agent/VehicleControlMode.cpp.s src/micrortps_agent/VehicleControlModePubSubTypes.o: src/micrortps_agent/VehicleControlModePubSubTypes.cpp.o .PHONY : src/micrortps_agent/VehicleControlModePubSubTypes.o # target to build an object file src/micrortps_agent/VehicleControlModePubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleControlModePubSubTypes.cpp.o .PHONY : src/micrortps_agent/VehicleControlModePubSubTypes.cpp.o src/micrortps_agent/VehicleControlModePubSubTypes.i: src/micrortps_agent/VehicleControlModePubSubTypes.cpp.i .PHONY : src/micrortps_agent/VehicleControlModePubSubTypes.i # target to preprocess a source file src/micrortps_agent/VehicleControlModePubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleControlModePubSubTypes.cpp.i .PHONY : src/micrortps_agent/VehicleControlModePubSubTypes.cpp.i src/micrortps_agent/VehicleControlModePubSubTypes.s: src/micrortps_agent/VehicleControlModePubSubTypes.cpp.s .PHONY : src/micrortps_agent/VehicleControlModePubSubTypes.s # target to generate assembly for a file src/micrortps_agent/VehicleControlModePubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleControlModePubSubTypes.cpp.s .PHONY : src/micrortps_agent/VehicleControlModePubSubTypes.cpp.s src/micrortps_agent/VehicleControlMode_Publisher.o: src/micrortps_agent/VehicleControlMode_Publisher.cpp.o .PHONY : src/micrortps_agent/VehicleControlMode_Publisher.o # target to build an object file src/micrortps_agent/VehicleControlMode_Publisher.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleControlMode_Publisher.cpp.o .PHONY : src/micrortps_agent/VehicleControlMode_Publisher.cpp.o src/micrortps_agent/VehicleControlMode_Publisher.i: src/micrortps_agent/VehicleControlMode_Publisher.cpp.i .PHONY : src/micrortps_agent/VehicleControlMode_Publisher.i # target to preprocess a source file src/micrortps_agent/VehicleControlMode_Publisher.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleControlMode_Publisher.cpp.i .PHONY : src/micrortps_agent/VehicleControlMode_Publisher.cpp.i src/micrortps_agent/VehicleControlMode_Publisher.s: src/micrortps_agent/VehicleControlMode_Publisher.cpp.s .PHONY : src/micrortps_agent/VehicleControlMode_Publisher.s # target to generate assembly for a file src/micrortps_agent/VehicleControlMode_Publisher.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleControlMode_Publisher.cpp.s .PHONY : src/micrortps_agent/VehicleControlMode_Publisher.cpp.s src/micrortps_agent/VehicleLocalPosition.o: src/micrortps_agent/VehicleLocalPosition.cpp.o .PHONY : src/micrortps_agent/VehicleLocalPosition.o # target to build an object file src/micrortps_agent/VehicleLocalPosition.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleLocalPosition.cpp.o .PHONY : src/micrortps_agent/VehicleLocalPosition.cpp.o src/micrortps_agent/VehicleLocalPosition.i: src/micrortps_agent/VehicleLocalPosition.cpp.i .PHONY : src/micrortps_agent/VehicleLocalPosition.i # target to preprocess a source file src/micrortps_agent/VehicleLocalPosition.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleLocalPosition.cpp.i .PHONY : src/micrortps_agent/VehicleLocalPosition.cpp.i src/micrortps_agent/VehicleLocalPosition.s: src/micrortps_agent/VehicleLocalPosition.cpp.s .PHONY : src/micrortps_agent/VehicleLocalPosition.s # target to generate assembly for a file src/micrortps_agent/VehicleLocalPosition.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleLocalPosition.cpp.s .PHONY : src/micrortps_agent/VehicleLocalPosition.cpp.s src/micrortps_agent/VehicleLocalPositionPubSubTypes.o: src/micrortps_agent/VehicleLocalPositionPubSubTypes.cpp.o .PHONY : src/micrortps_agent/VehicleLocalPositionPubSubTypes.o # target to build an object file src/micrortps_agent/VehicleLocalPositionPubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleLocalPositionPubSubTypes.cpp.o .PHONY : src/micrortps_agent/VehicleLocalPositionPubSubTypes.cpp.o src/micrortps_agent/VehicleLocalPositionPubSubTypes.i: src/micrortps_agent/VehicleLocalPositionPubSubTypes.cpp.i .PHONY : src/micrortps_agent/VehicleLocalPositionPubSubTypes.i # target to preprocess a source file src/micrortps_agent/VehicleLocalPositionPubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleLocalPositionPubSubTypes.cpp.i .PHONY : src/micrortps_agent/VehicleLocalPositionPubSubTypes.cpp.i src/micrortps_agent/VehicleLocalPositionPubSubTypes.s: src/micrortps_agent/VehicleLocalPositionPubSubTypes.cpp.s .PHONY : src/micrortps_agent/VehicleLocalPositionPubSubTypes.s # target to generate assembly for a file src/micrortps_agent/VehicleLocalPositionPubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleLocalPositionPubSubTypes.cpp.s .PHONY : src/micrortps_agent/VehicleLocalPositionPubSubTypes.cpp.s src/micrortps_agent/VehicleLocalPositionSetpoint.o: src/micrortps_agent/VehicleLocalPositionSetpoint.cpp.o .PHONY : src/micrortps_agent/VehicleLocalPositionSetpoint.o # target to build an object file src/micrortps_agent/VehicleLocalPositionSetpoint.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleLocalPositionSetpoint.cpp.o .PHONY : src/micrortps_agent/VehicleLocalPositionSetpoint.cpp.o src/micrortps_agent/VehicleLocalPositionSetpoint.i: src/micrortps_agent/VehicleLocalPositionSetpoint.cpp.i .PHONY : src/micrortps_agent/VehicleLocalPositionSetpoint.i # target to preprocess a source file src/micrortps_agent/VehicleLocalPositionSetpoint.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleLocalPositionSetpoint.cpp.i .PHONY : src/micrortps_agent/VehicleLocalPositionSetpoint.cpp.i src/micrortps_agent/VehicleLocalPositionSetpoint.s: src/micrortps_agent/VehicleLocalPositionSetpoint.cpp.s .PHONY : src/micrortps_agent/VehicleLocalPositionSetpoint.s # target to generate assembly for a file src/micrortps_agent/VehicleLocalPositionSetpoint.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleLocalPositionSetpoint.cpp.s .PHONY : src/micrortps_agent/VehicleLocalPositionSetpoint.cpp.s src/micrortps_agent/VehicleLocalPositionSetpointPubSubTypes.o: src/micrortps_agent/VehicleLocalPositionSetpointPubSubTypes.cpp.o .PHONY : src/micrortps_agent/VehicleLocalPositionSetpointPubSubTypes.o # target to build an object file src/micrortps_agent/VehicleLocalPositionSetpointPubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleLocalPositionSetpointPubSubTypes.cpp.o .PHONY : src/micrortps_agent/VehicleLocalPositionSetpointPubSubTypes.cpp.o src/micrortps_agent/VehicleLocalPositionSetpointPubSubTypes.i: src/micrortps_agent/VehicleLocalPositionSetpointPubSubTypes.cpp.i .PHONY : src/micrortps_agent/VehicleLocalPositionSetpointPubSubTypes.i # target to preprocess a source file src/micrortps_agent/VehicleLocalPositionSetpointPubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleLocalPositionSetpointPubSubTypes.cpp.i .PHONY : src/micrortps_agent/VehicleLocalPositionSetpointPubSubTypes.cpp.i src/micrortps_agent/VehicleLocalPositionSetpointPubSubTypes.s: src/micrortps_agent/VehicleLocalPositionSetpointPubSubTypes.cpp.s .PHONY : src/micrortps_agent/VehicleLocalPositionSetpointPubSubTypes.s # target to generate assembly for a file src/micrortps_agent/VehicleLocalPositionSetpointPubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleLocalPositionSetpointPubSubTypes.cpp.s .PHONY : src/micrortps_agent/VehicleLocalPositionSetpointPubSubTypes.cpp.s src/micrortps_agent/VehicleLocalPositionSetpoint_Subscriber.o: src/micrortps_agent/VehicleLocalPositionSetpoint_Subscriber.cpp.o .PHONY : src/micrortps_agent/VehicleLocalPositionSetpoint_Subscriber.o # target to build an object file src/micrortps_agent/VehicleLocalPositionSetpoint_Subscriber.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleLocalPositionSetpoint_Subscriber.cpp.o .PHONY : src/micrortps_agent/VehicleLocalPositionSetpoint_Subscriber.cpp.o src/micrortps_agent/VehicleLocalPositionSetpoint_Subscriber.i: src/micrortps_agent/VehicleLocalPositionSetpoint_Subscriber.cpp.i .PHONY : src/micrortps_agent/VehicleLocalPositionSetpoint_Subscriber.i # target to preprocess a source file src/micrortps_agent/VehicleLocalPositionSetpoint_Subscriber.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleLocalPositionSetpoint_Subscriber.cpp.i .PHONY : src/micrortps_agent/VehicleLocalPositionSetpoint_Subscriber.cpp.i src/micrortps_agent/VehicleLocalPositionSetpoint_Subscriber.s: src/micrortps_agent/VehicleLocalPositionSetpoint_Subscriber.cpp.s .PHONY : src/micrortps_agent/VehicleLocalPositionSetpoint_Subscriber.s # target to generate assembly for a file src/micrortps_agent/VehicleLocalPositionSetpoint_Subscriber.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleLocalPositionSetpoint_Subscriber.cpp.s .PHONY : src/micrortps_agent/VehicleLocalPositionSetpoint_Subscriber.cpp.s src/micrortps_agent/VehicleLocalPosition_Publisher.o: src/micrortps_agent/VehicleLocalPosition_Publisher.cpp.o .PHONY : src/micrortps_agent/VehicleLocalPosition_Publisher.o # target to build an object file src/micrortps_agent/VehicleLocalPosition_Publisher.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleLocalPosition_Publisher.cpp.o .PHONY : src/micrortps_agent/VehicleLocalPosition_Publisher.cpp.o src/micrortps_agent/VehicleLocalPosition_Publisher.i: src/micrortps_agent/VehicleLocalPosition_Publisher.cpp.i .PHONY : src/micrortps_agent/VehicleLocalPosition_Publisher.i # target to preprocess a source file src/micrortps_agent/VehicleLocalPosition_Publisher.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleLocalPosition_Publisher.cpp.i .PHONY : src/micrortps_agent/VehicleLocalPosition_Publisher.cpp.i src/micrortps_agent/VehicleLocalPosition_Publisher.s: src/micrortps_agent/VehicleLocalPosition_Publisher.cpp.s .PHONY : src/micrortps_agent/VehicleLocalPosition_Publisher.s # target to generate assembly for a file src/micrortps_agent/VehicleLocalPosition_Publisher.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleLocalPosition_Publisher.cpp.s .PHONY : src/micrortps_agent/VehicleLocalPosition_Publisher.cpp.s src/micrortps_agent/VehicleMocapOdometry.o: src/micrortps_agent/VehicleMocapOdometry.cpp.o .PHONY : src/micrortps_agent/VehicleMocapOdometry.o # target to build an object file src/micrortps_agent/VehicleMocapOdometry.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleMocapOdometry.cpp.o .PHONY : src/micrortps_agent/VehicleMocapOdometry.cpp.o src/micrortps_agent/VehicleMocapOdometry.i: src/micrortps_agent/VehicleMocapOdometry.cpp.i .PHONY : src/micrortps_agent/VehicleMocapOdometry.i # target to preprocess a source file src/micrortps_agent/VehicleMocapOdometry.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleMocapOdometry.cpp.i .PHONY : src/micrortps_agent/VehicleMocapOdometry.cpp.i src/micrortps_agent/VehicleMocapOdometry.s: src/micrortps_agent/VehicleMocapOdometry.cpp.s .PHONY : src/micrortps_agent/VehicleMocapOdometry.s # target to generate assembly for a file src/micrortps_agent/VehicleMocapOdometry.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleMocapOdometry.cpp.s .PHONY : src/micrortps_agent/VehicleMocapOdometry.cpp.s src/micrortps_agent/VehicleMocapOdometryPubSubTypes.o: src/micrortps_agent/VehicleMocapOdometryPubSubTypes.cpp.o .PHONY : src/micrortps_agent/VehicleMocapOdometryPubSubTypes.o # target to build an object file src/micrortps_agent/VehicleMocapOdometryPubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleMocapOdometryPubSubTypes.cpp.o .PHONY : src/micrortps_agent/VehicleMocapOdometryPubSubTypes.cpp.o src/micrortps_agent/VehicleMocapOdometryPubSubTypes.i: src/micrortps_agent/VehicleMocapOdometryPubSubTypes.cpp.i .PHONY : src/micrortps_agent/VehicleMocapOdometryPubSubTypes.i # target to preprocess a source file src/micrortps_agent/VehicleMocapOdometryPubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleMocapOdometryPubSubTypes.cpp.i .PHONY : src/micrortps_agent/VehicleMocapOdometryPubSubTypes.cpp.i src/micrortps_agent/VehicleMocapOdometryPubSubTypes.s: src/micrortps_agent/VehicleMocapOdometryPubSubTypes.cpp.s .PHONY : src/micrortps_agent/VehicleMocapOdometryPubSubTypes.s # target to generate assembly for a file src/micrortps_agent/VehicleMocapOdometryPubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleMocapOdometryPubSubTypes.cpp.s .PHONY : src/micrortps_agent/VehicleMocapOdometryPubSubTypes.cpp.s src/micrortps_agent/VehicleMocapOdometry_Subscriber.o: src/micrortps_agent/VehicleMocapOdometry_Subscriber.cpp.o .PHONY : src/micrortps_agent/VehicleMocapOdometry_Subscriber.o # target to build an object file src/micrortps_agent/VehicleMocapOdometry_Subscriber.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleMocapOdometry_Subscriber.cpp.o .PHONY : src/micrortps_agent/VehicleMocapOdometry_Subscriber.cpp.o src/micrortps_agent/VehicleMocapOdometry_Subscriber.i: src/micrortps_agent/VehicleMocapOdometry_Subscriber.cpp.i .PHONY : src/micrortps_agent/VehicleMocapOdometry_Subscriber.i # target to preprocess a source file src/micrortps_agent/VehicleMocapOdometry_Subscriber.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleMocapOdometry_Subscriber.cpp.i .PHONY : src/micrortps_agent/VehicleMocapOdometry_Subscriber.cpp.i src/micrortps_agent/VehicleMocapOdometry_Subscriber.s: src/micrortps_agent/VehicleMocapOdometry_Subscriber.cpp.s .PHONY : src/micrortps_agent/VehicleMocapOdometry_Subscriber.s # target to generate assembly for a file src/micrortps_agent/VehicleMocapOdometry_Subscriber.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleMocapOdometry_Subscriber.cpp.s .PHONY : src/micrortps_agent/VehicleMocapOdometry_Subscriber.cpp.s src/micrortps_agent/VehicleOdometry.o: src/micrortps_agent/VehicleOdometry.cpp.o .PHONY : src/micrortps_agent/VehicleOdometry.o # target to build an object file src/micrortps_agent/VehicleOdometry.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleOdometry.cpp.o .PHONY : src/micrortps_agent/VehicleOdometry.cpp.o src/micrortps_agent/VehicleOdometry.i: src/micrortps_agent/VehicleOdometry.cpp.i .PHONY : src/micrortps_agent/VehicleOdometry.i # target to preprocess a source file src/micrortps_agent/VehicleOdometry.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleOdometry.cpp.i .PHONY : src/micrortps_agent/VehicleOdometry.cpp.i src/micrortps_agent/VehicleOdometry.s: src/micrortps_agent/VehicleOdometry.cpp.s .PHONY : src/micrortps_agent/VehicleOdometry.s # target to generate assembly for a file src/micrortps_agent/VehicleOdometry.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleOdometry.cpp.s .PHONY : src/micrortps_agent/VehicleOdometry.cpp.s src/micrortps_agent/VehicleOdometryPubSubTypes.o: src/micrortps_agent/VehicleOdometryPubSubTypes.cpp.o .PHONY : src/micrortps_agent/VehicleOdometryPubSubTypes.o # target to build an object file src/micrortps_agent/VehicleOdometryPubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleOdometryPubSubTypes.cpp.o .PHONY : src/micrortps_agent/VehicleOdometryPubSubTypes.cpp.o src/micrortps_agent/VehicleOdometryPubSubTypes.i: src/micrortps_agent/VehicleOdometryPubSubTypes.cpp.i .PHONY : src/micrortps_agent/VehicleOdometryPubSubTypes.i # target to preprocess a source file src/micrortps_agent/VehicleOdometryPubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleOdometryPubSubTypes.cpp.i .PHONY : src/micrortps_agent/VehicleOdometryPubSubTypes.cpp.i src/micrortps_agent/VehicleOdometryPubSubTypes.s: src/micrortps_agent/VehicleOdometryPubSubTypes.cpp.s .PHONY : src/micrortps_agent/VehicleOdometryPubSubTypes.s # target to generate assembly for a file src/micrortps_agent/VehicleOdometryPubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleOdometryPubSubTypes.cpp.s .PHONY : src/micrortps_agent/VehicleOdometryPubSubTypes.cpp.s src/micrortps_agent/VehicleOdometry_Publisher.o: src/micrortps_agent/VehicleOdometry_Publisher.cpp.o .PHONY : src/micrortps_agent/VehicleOdometry_Publisher.o # target to build an object file src/micrortps_agent/VehicleOdometry_Publisher.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleOdometry_Publisher.cpp.o .PHONY : src/micrortps_agent/VehicleOdometry_Publisher.cpp.o src/micrortps_agent/VehicleOdometry_Publisher.i: src/micrortps_agent/VehicleOdometry_Publisher.cpp.i .PHONY : src/micrortps_agent/VehicleOdometry_Publisher.i # target to preprocess a source file src/micrortps_agent/VehicleOdometry_Publisher.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleOdometry_Publisher.cpp.i .PHONY : src/micrortps_agent/VehicleOdometry_Publisher.cpp.i src/micrortps_agent/VehicleOdometry_Publisher.s: src/micrortps_agent/VehicleOdometry_Publisher.cpp.s .PHONY : src/micrortps_agent/VehicleOdometry_Publisher.s # target to generate assembly for a file src/micrortps_agent/VehicleOdometry_Publisher.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleOdometry_Publisher.cpp.s .PHONY : src/micrortps_agent/VehicleOdometry_Publisher.cpp.s src/micrortps_agent/VehicleStatus.o: src/micrortps_agent/VehicleStatus.cpp.o .PHONY : src/micrortps_agent/VehicleStatus.o # target to build an object file src/micrortps_agent/VehicleStatus.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleStatus.cpp.o .PHONY : src/micrortps_agent/VehicleStatus.cpp.o src/micrortps_agent/VehicleStatus.i: src/micrortps_agent/VehicleStatus.cpp.i .PHONY : src/micrortps_agent/VehicleStatus.i # target to preprocess a source file src/micrortps_agent/VehicleStatus.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleStatus.cpp.i .PHONY : src/micrortps_agent/VehicleStatus.cpp.i src/micrortps_agent/VehicleStatus.s: src/micrortps_agent/VehicleStatus.cpp.s .PHONY : src/micrortps_agent/VehicleStatus.s # target to generate assembly for a file src/micrortps_agent/VehicleStatus.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleStatus.cpp.s .PHONY : src/micrortps_agent/VehicleStatus.cpp.s src/micrortps_agent/VehicleStatusPubSubTypes.o: src/micrortps_agent/VehicleStatusPubSubTypes.cpp.o .PHONY : src/micrortps_agent/VehicleStatusPubSubTypes.o # target to build an object file src/micrortps_agent/VehicleStatusPubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleStatusPubSubTypes.cpp.o .PHONY : src/micrortps_agent/VehicleStatusPubSubTypes.cpp.o src/micrortps_agent/VehicleStatusPubSubTypes.i: src/micrortps_agent/VehicleStatusPubSubTypes.cpp.i .PHONY : src/micrortps_agent/VehicleStatusPubSubTypes.i # target to preprocess a source file src/micrortps_agent/VehicleStatusPubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleStatusPubSubTypes.cpp.i .PHONY : src/micrortps_agent/VehicleStatusPubSubTypes.cpp.i src/micrortps_agent/VehicleStatusPubSubTypes.s: src/micrortps_agent/VehicleStatusPubSubTypes.cpp.s .PHONY : src/micrortps_agent/VehicleStatusPubSubTypes.s # target to generate assembly for a file src/micrortps_agent/VehicleStatusPubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleStatusPubSubTypes.cpp.s .PHONY : src/micrortps_agent/VehicleStatusPubSubTypes.cpp.s src/micrortps_agent/VehicleStatus_Publisher.o: src/micrortps_agent/VehicleStatus_Publisher.cpp.o .PHONY : src/micrortps_agent/VehicleStatus_Publisher.o # target to build an object file src/micrortps_agent/VehicleStatus_Publisher.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleStatus_Publisher.cpp.o .PHONY : src/micrortps_agent/VehicleStatus_Publisher.cpp.o src/micrortps_agent/VehicleStatus_Publisher.i: src/micrortps_agent/VehicleStatus_Publisher.cpp.i .PHONY : src/micrortps_agent/VehicleStatus_Publisher.i # target to preprocess a source file src/micrortps_agent/VehicleStatus_Publisher.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleStatus_Publisher.cpp.i .PHONY : src/micrortps_agent/VehicleStatus_Publisher.cpp.i src/micrortps_agent/VehicleStatus_Publisher.s: src/micrortps_agent/VehicleStatus_Publisher.cpp.s .PHONY : src/micrortps_agent/VehicleStatus_Publisher.s # target to generate assembly for a file src/micrortps_agent/VehicleStatus_Publisher.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleStatus_Publisher.cpp.s .PHONY : src/micrortps_agent/VehicleStatus_Publisher.cpp.s src/micrortps_agent/VehicleTrajectoryBezier.o: src/micrortps_agent/VehicleTrajectoryBezier.cpp.o .PHONY : src/micrortps_agent/VehicleTrajectoryBezier.o # target to build an object file src/micrortps_agent/VehicleTrajectoryBezier.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleTrajectoryBezier.cpp.o .PHONY : src/micrortps_agent/VehicleTrajectoryBezier.cpp.o src/micrortps_agent/VehicleTrajectoryBezier.i: src/micrortps_agent/VehicleTrajectoryBezier.cpp.i .PHONY : src/micrortps_agent/VehicleTrajectoryBezier.i # target to preprocess a source file src/micrortps_agent/VehicleTrajectoryBezier.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleTrajectoryBezier.cpp.i .PHONY : src/micrortps_agent/VehicleTrajectoryBezier.cpp.i src/micrortps_agent/VehicleTrajectoryBezier.s: src/micrortps_agent/VehicleTrajectoryBezier.cpp.s .PHONY : src/micrortps_agent/VehicleTrajectoryBezier.s # target to generate assembly for a file src/micrortps_agent/VehicleTrajectoryBezier.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleTrajectoryBezier.cpp.s .PHONY : src/micrortps_agent/VehicleTrajectoryBezier.cpp.s src/micrortps_agent/VehicleTrajectoryBezierPubSubTypes.o: src/micrortps_agent/VehicleTrajectoryBezierPubSubTypes.cpp.o .PHONY : src/micrortps_agent/VehicleTrajectoryBezierPubSubTypes.o # target to build an object file src/micrortps_agent/VehicleTrajectoryBezierPubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleTrajectoryBezierPubSubTypes.cpp.o .PHONY : src/micrortps_agent/VehicleTrajectoryBezierPubSubTypes.cpp.o src/micrortps_agent/VehicleTrajectoryBezierPubSubTypes.i: src/micrortps_agent/VehicleTrajectoryBezierPubSubTypes.cpp.i .PHONY : src/micrortps_agent/VehicleTrajectoryBezierPubSubTypes.i # target to preprocess a source file src/micrortps_agent/VehicleTrajectoryBezierPubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleTrajectoryBezierPubSubTypes.cpp.i .PHONY : src/micrortps_agent/VehicleTrajectoryBezierPubSubTypes.cpp.i src/micrortps_agent/VehicleTrajectoryBezierPubSubTypes.s: src/micrortps_agent/VehicleTrajectoryBezierPubSubTypes.cpp.s .PHONY : src/micrortps_agent/VehicleTrajectoryBezierPubSubTypes.s # target to generate assembly for a file src/micrortps_agent/VehicleTrajectoryBezierPubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleTrajectoryBezierPubSubTypes.cpp.s .PHONY : src/micrortps_agent/VehicleTrajectoryBezierPubSubTypes.cpp.s src/micrortps_agent/VehicleTrajectoryBezier_Subscriber.o: src/micrortps_agent/VehicleTrajectoryBezier_Subscriber.cpp.o .PHONY : src/micrortps_agent/VehicleTrajectoryBezier_Subscriber.o # target to build an object file src/micrortps_agent/VehicleTrajectoryBezier_Subscriber.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleTrajectoryBezier_Subscriber.cpp.o .PHONY : src/micrortps_agent/VehicleTrajectoryBezier_Subscriber.cpp.o src/micrortps_agent/VehicleTrajectoryBezier_Subscriber.i: src/micrortps_agent/VehicleTrajectoryBezier_Subscriber.cpp.i .PHONY : src/micrortps_agent/VehicleTrajectoryBezier_Subscriber.i # target to preprocess a source file src/micrortps_agent/VehicleTrajectoryBezier_Subscriber.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleTrajectoryBezier_Subscriber.cpp.i .PHONY : src/micrortps_agent/VehicleTrajectoryBezier_Subscriber.cpp.i src/micrortps_agent/VehicleTrajectoryBezier_Subscriber.s: src/micrortps_agent/VehicleTrajectoryBezier_Subscriber.cpp.s .PHONY : src/micrortps_agent/VehicleTrajectoryBezier_Subscriber.s # target to generate assembly for a file src/micrortps_agent/VehicleTrajectoryBezier_Subscriber.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleTrajectoryBezier_Subscriber.cpp.s .PHONY : src/micrortps_agent/VehicleTrajectoryBezier_Subscriber.cpp.s src/micrortps_agent/VehicleTrajectoryWaypoint.o: src/micrortps_agent/VehicleTrajectoryWaypoint.cpp.o .PHONY : src/micrortps_agent/VehicleTrajectoryWaypoint.o # target to build an object file src/micrortps_agent/VehicleTrajectoryWaypoint.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleTrajectoryWaypoint.cpp.o .PHONY : src/micrortps_agent/VehicleTrajectoryWaypoint.cpp.o src/micrortps_agent/VehicleTrajectoryWaypoint.i: src/micrortps_agent/VehicleTrajectoryWaypoint.cpp.i .PHONY : src/micrortps_agent/VehicleTrajectoryWaypoint.i # target to preprocess a source file src/micrortps_agent/VehicleTrajectoryWaypoint.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleTrajectoryWaypoint.cpp.i .PHONY : src/micrortps_agent/VehicleTrajectoryWaypoint.cpp.i src/micrortps_agent/VehicleTrajectoryWaypoint.s: src/micrortps_agent/VehicleTrajectoryWaypoint.cpp.s .PHONY : src/micrortps_agent/VehicleTrajectoryWaypoint.s # target to generate assembly for a file src/micrortps_agent/VehicleTrajectoryWaypoint.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleTrajectoryWaypoint.cpp.s .PHONY : src/micrortps_agent/VehicleTrajectoryWaypoint.cpp.s src/micrortps_agent/VehicleTrajectoryWaypointDesired.o: src/micrortps_agent/VehicleTrajectoryWaypointDesired.cpp.o .PHONY : src/micrortps_agent/VehicleTrajectoryWaypointDesired.o # target to build an object file src/micrortps_agent/VehicleTrajectoryWaypointDesired.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleTrajectoryWaypointDesired.cpp.o .PHONY : src/micrortps_agent/VehicleTrajectoryWaypointDesired.cpp.o src/micrortps_agent/VehicleTrajectoryWaypointDesired.i: src/micrortps_agent/VehicleTrajectoryWaypointDesired.cpp.i .PHONY : src/micrortps_agent/VehicleTrajectoryWaypointDesired.i # target to preprocess a source file src/micrortps_agent/VehicleTrajectoryWaypointDesired.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleTrajectoryWaypointDesired.cpp.i .PHONY : src/micrortps_agent/VehicleTrajectoryWaypointDesired.cpp.i src/micrortps_agent/VehicleTrajectoryWaypointDesired.s: src/micrortps_agent/VehicleTrajectoryWaypointDesired.cpp.s .PHONY : src/micrortps_agent/VehicleTrajectoryWaypointDesired.s # target to generate assembly for a file src/micrortps_agent/VehicleTrajectoryWaypointDesired.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleTrajectoryWaypointDesired.cpp.s .PHONY : src/micrortps_agent/VehicleTrajectoryWaypointDesired.cpp.s src/micrortps_agent/VehicleTrajectoryWaypointDesiredPubSubTypes.o: src/micrortps_agent/VehicleTrajectoryWaypointDesiredPubSubTypes.cpp.o .PHONY : src/micrortps_agent/VehicleTrajectoryWaypointDesiredPubSubTypes.o # target to build an object file src/micrortps_agent/VehicleTrajectoryWaypointDesiredPubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleTrajectoryWaypointDesiredPubSubTypes.cpp.o .PHONY : src/micrortps_agent/VehicleTrajectoryWaypointDesiredPubSubTypes.cpp.o src/micrortps_agent/VehicleTrajectoryWaypointDesiredPubSubTypes.i: src/micrortps_agent/VehicleTrajectoryWaypointDesiredPubSubTypes.cpp.i .PHONY : src/micrortps_agent/VehicleTrajectoryWaypointDesiredPubSubTypes.i # target to preprocess a source file src/micrortps_agent/VehicleTrajectoryWaypointDesiredPubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleTrajectoryWaypointDesiredPubSubTypes.cpp.i .PHONY : src/micrortps_agent/VehicleTrajectoryWaypointDesiredPubSubTypes.cpp.i src/micrortps_agent/VehicleTrajectoryWaypointDesiredPubSubTypes.s: src/micrortps_agent/VehicleTrajectoryWaypointDesiredPubSubTypes.cpp.s .PHONY : src/micrortps_agent/VehicleTrajectoryWaypointDesiredPubSubTypes.s # target to generate assembly for a file src/micrortps_agent/VehicleTrajectoryWaypointDesiredPubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleTrajectoryWaypointDesiredPubSubTypes.cpp.s .PHONY : src/micrortps_agent/VehicleTrajectoryWaypointDesiredPubSubTypes.cpp.s src/micrortps_agent/VehicleTrajectoryWaypointDesired_Publisher.o: src/micrortps_agent/VehicleTrajectoryWaypointDesired_Publisher.cpp.o .PHONY : src/micrortps_agent/VehicleTrajectoryWaypointDesired_Publisher.o # target to build an object file src/micrortps_agent/VehicleTrajectoryWaypointDesired_Publisher.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleTrajectoryWaypointDesired_Publisher.cpp.o .PHONY : src/micrortps_agent/VehicleTrajectoryWaypointDesired_Publisher.cpp.o src/micrortps_agent/VehicleTrajectoryWaypointDesired_Publisher.i: src/micrortps_agent/VehicleTrajectoryWaypointDesired_Publisher.cpp.i .PHONY : src/micrortps_agent/VehicleTrajectoryWaypointDesired_Publisher.i # target to preprocess a source file src/micrortps_agent/VehicleTrajectoryWaypointDesired_Publisher.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleTrajectoryWaypointDesired_Publisher.cpp.i .PHONY : src/micrortps_agent/VehicleTrajectoryWaypointDesired_Publisher.cpp.i src/micrortps_agent/VehicleTrajectoryWaypointDesired_Publisher.s: src/micrortps_agent/VehicleTrajectoryWaypointDesired_Publisher.cpp.s .PHONY : src/micrortps_agent/VehicleTrajectoryWaypointDesired_Publisher.s # target to generate assembly for a file src/micrortps_agent/VehicleTrajectoryWaypointDesired_Publisher.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleTrajectoryWaypointDesired_Publisher.cpp.s .PHONY : src/micrortps_agent/VehicleTrajectoryWaypointDesired_Publisher.cpp.s src/micrortps_agent/VehicleTrajectoryWaypointPubSubTypes.o: src/micrortps_agent/VehicleTrajectoryWaypointPubSubTypes.cpp.o .PHONY : src/micrortps_agent/VehicleTrajectoryWaypointPubSubTypes.o # target to build an object file src/micrortps_agent/VehicleTrajectoryWaypointPubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleTrajectoryWaypointPubSubTypes.cpp.o .PHONY : src/micrortps_agent/VehicleTrajectoryWaypointPubSubTypes.cpp.o src/micrortps_agent/VehicleTrajectoryWaypointPubSubTypes.i: src/micrortps_agent/VehicleTrajectoryWaypointPubSubTypes.cpp.i .PHONY : src/micrortps_agent/VehicleTrajectoryWaypointPubSubTypes.i # target to preprocess a source file src/micrortps_agent/VehicleTrajectoryWaypointPubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleTrajectoryWaypointPubSubTypes.cpp.i .PHONY : src/micrortps_agent/VehicleTrajectoryWaypointPubSubTypes.cpp.i src/micrortps_agent/VehicleTrajectoryWaypointPubSubTypes.s: src/micrortps_agent/VehicleTrajectoryWaypointPubSubTypes.cpp.s .PHONY : src/micrortps_agent/VehicleTrajectoryWaypointPubSubTypes.s # target to generate assembly for a file src/micrortps_agent/VehicleTrajectoryWaypointPubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleTrajectoryWaypointPubSubTypes.cpp.s .PHONY : src/micrortps_agent/VehicleTrajectoryWaypointPubSubTypes.cpp.s src/micrortps_agent/VehicleTrajectoryWaypoint_Subscriber.o: src/micrortps_agent/VehicleTrajectoryWaypoint_Subscriber.cpp.o .PHONY : src/micrortps_agent/VehicleTrajectoryWaypoint_Subscriber.o # target to build an object file src/micrortps_agent/VehicleTrajectoryWaypoint_Subscriber.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleTrajectoryWaypoint_Subscriber.cpp.o .PHONY : src/micrortps_agent/VehicleTrajectoryWaypoint_Subscriber.cpp.o src/micrortps_agent/VehicleTrajectoryWaypoint_Subscriber.i: src/micrortps_agent/VehicleTrajectoryWaypoint_Subscriber.cpp.i .PHONY : src/micrortps_agent/VehicleTrajectoryWaypoint_Subscriber.i # target to preprocess a source file src/micrortps_agent/VehicleTrajectoryWaypoint_Subscriber.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleTrajectoryWaypoint_Subscriber.cpp.i .PHONY : src/micrortps_agent/VehicleTrajectoryWaypoint_Subscriber.cpp.i src/micrortps_agent/VehicleTrajectoryWaypoint_Subscriber.s: src/micrortps_agent/VehicleTrajectoryWaypoint_Subscriber.cpp.s .PHONY : src/micrortps_agent/VehicleTrajectoryWaypoint_Subscriber.s # target to generate assembly for a file src/micrortps_agent/VehicleTrajectoryWaypoint_Subscriber.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleTrajectoryWaypoint_Subscriber.cpp.s .PHONY : src/micrortps_agent/VehicleTrajectoryWaypoint_Subscriber.cpp.s src/micrortps_agent/VehicleVisualOdometry.o: src/micrortps_agent/VehicleVisualOdometry.cpp.o .PHONY : src/micrortps_agent/VehicleVisualOdometry.o # target to build an object file src/micrortps_agent/VehicleVisualOdometry.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleVisualOdometry.cpp.o .PHONY : src/micrortps_agent/VehicleVisualOdometry.cpp.o src/micrortps_agent/VehicleVisualOdometry.i: src/micrortps_agent/VehicleVisualOdometry.cpp.i .PHONY : src/micrortps_agent/VehicleVisualOdometry.i # target to preprocess a source file src/micrortps_agent/VehicleVisualOdometry.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleVisualOdometry.cpp.i .PHONY : src/micrortps_agent/VehicleVisualOdometry.cpp.i src/micrortps_agent/VehicleVisualOdometry.s: src/micrortps_agent/VehicleVisualOdometry.cpp.s .PHONY : src/micrortps_agent/VehicleVisualOdometry.s # target to generate assembly for a file src/micrortps_agent/VehicleVisualOdometry.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleVisualOdometry.cpp.s .PHONY : src/micrortps_agent/VehicleVisualOdometry.cpp.s src/micrortps_agent/VehicleVisualOdometryPubSubTypes.o: src/micrortps_agent/VehicleVisualOdometryPubSubTypes.cpp.o .PHONY : src/micrortps_agent/VehicleVisualOdometryPubSubTypes.o # target to build an object file src/micrortps_agent/VehicleVisualOdometryPubSubTypes.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleVisualOdometryPubSubTypes.cpp.o .PHONY : src/micrortps_agent/VehicleVisualOdometryPubSubTypes.cpp.o src/micrortps_agent/VehicleVisualOdometryPubSubTypes.i: src/micrortps_agent/VehicleVisualOdometryPubSubTypes.cpp.i .PHONY : src/micrortps_agent/VehicleVisualOdometryPubSubTypes.i # target to preprocess a source file src/micrortps_agent/VehicleVisualOdometryPubSubTypes.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleVisualOdometryPubSubTypes.cpp.i .PHONY : src/micrortps_agent/VehicleVisualOdometryPubSubTypes.cpp.i src/micrortps_agent/VehicleVisualOdometryPubSubTypes.s: src/micrortps_agent/VehicleVisualOdometryPubSubTypes.cpp.s .PHONY : src/micrortps_agent/VehicleVisualOdometryPubSubTypes.s # target to generate assembly for a file src/micrortps_agent/VehicleVisualOdometryPubSubTypes.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleVisualOdometryPubSubTypes.cpp.s .PHONY : src/micrortps_agent/VehicleVisualOdometryPubSubTypes.cpp.s src/micrortps_agent/VehicleVisualOdometry_Subscriber.o: src/micrortps_agent/VehicleVisualOdometry_Subscriber.cpp.o .PHONY : src/micrortps_agent/VehicleVisualOdometry_Subscriber.o # target to build an object file src/micrortps_agent/VehicleVisualOdometry_Subscriber.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleVisualOdometry_Subscriber.cpp.o .PHONY : src/micrortps_agent/VehicleVisualOdometry_Subscriber.cpp.o src/micrortps_agent/VehicleVisualOdometry_Subscriber.i: src/micrortps_agent/VehicleVisualOdometry_Subscriber.cpp.i .PHONY : src/micrortps_agent/VehicleVisualOdometry_Subscriber.i # target to preprocess a source file src/micrortps_agent/VehicleVisualOdometry_Subscriber.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleVisualOdometry_Subscriber.cpp.i .PHONY : src/micrortps_agent/VehicleVisualOdometry_Subscriber.cpp.i src/micrortps_agent/VehicleVisualOdometry_Subscriber.s: src/micrortps_agent/VehicleVisualOdometry_Subscriber.cpp.s .PHONY : src/micrortps_agent/VehicleVisualOdometry_Subscriber.s # target to generate assembly for a file src/micrortps_agent/VehicleVisualOdometry_Subscriber.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/VehicleVisualOdometry_Subscriber.cpp.s .PHONY : src/micrortps_agent/VehicleVisualOdometry_Subscriber.cpp.s src/micrortps_agent/microRTPS_agent.o: src/micrortps_agent/microRTPS_agent.cpp.o .PHONY : src/micrortps_agent/microRTPS_agent.o # target to build an object file src/micrortps_agent/microRTPS_agent.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/microRTPS_agent.cpp.o .PHONY : src/micrortps_agent/microRTPS_agent.cpp.o src/micrortps_agent/microRTPS_agent.i: src/micrortps_agent/microRTPS_agent.cpp.i .PHONY : src/micrortps_agent/microRTPS_agent.i # target to preprocess a source file src/micrortps_agent/microRTPS_agent.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/microRTPS_agent.cpp.i .PHONY : src/micrortps_agent/microRTPS_agent.cpp.i src/micrortps_agent/microRTPS_agent.s: src/micrortps_agent/microRTPS_agent.cpp.s .PHONY : src/micrortps_agent/microRTPS_agent.s # target to generate assembly for a file src/micrortps_agent/microRTPS_agent.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/microRTPS_agent.cpp.s .PHONY : src/micrortps_agent/microRTPS_agent.cpp.s src/micrortps_agent/microRTPS_timesync.o: src/micrortps_agent/microRTPS_timesync.cpp.o .PHONY : src/micrortps_agent/microRTPS_timesync.o # target to build an object file src/micrortps_agent/microRTPS_timesync.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/microRTPS_timesync.cpp.o .PHONY : src/micrortps_agent/microRTPS_timesync.cpp.o src/micrortps_agent/microRTPS_timesync.i: src/micrortps_agent/microRTPS_timesync.cpp.i .PHONY : src/micrortps_agent/microRTPS_timesync.i # target to preprocess a source file src/micrortps_agent/microRTPS_timesync.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/microRTPS_timesync.cpp.i .PHONY : src/micrortps_agent/microRTPS_timesync.cpp.i src/micrortps_agent/microRTPS_timesync.s: src/micrortps_agent/microRTPS_timesync.cpp.s .PHONY : src/micrortps_agent/microRTPS_timesync.s # target to generate assembly for a file src/micrortps_agent/microRTPS_timesync.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/microRTPS_timesync.cpp.s .PHONY : src/micrortps_agent/microRTPS_timesync.cpp.s src/micrortps_agent/microRTPS_transport.o: src/micrortps_agent/microRTPS_transport.cpp.o .PHONY : src/micrortps_agent/microRTPS_transport.o # target to build an object file src/micrortps_agent/microRTPS_transport.cpp.o: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/microRTPS_transport.cpp.o .PHONY : src/micrortps_agent/microRTPS_transport.cpp.o src/micrortps_agent/microRTPS_transport.i: src/micrortps_agent/microRTPS_transport.cpp.i .PHONY : src/micrortps_agent/microRTPS_transport.i # target to preprocess a source file src/micrortps_agent/microRTPS_transport.cpp.i: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/microRTPS_transport.cpp.i .PHONY : src/micrortps_agent/microRTPS_transport.cpp.i src/micrortps_agent/microRTPS_transport.s: src/micrortps_agent/microRTPS_transport.cpp.s .PHONY : src/micrortps_agent/microRTPS_transport.s # target to generate assembly for a file src/micrortps_agent/microRTPS_transport.cpp.s: $(MAKE) -f CMakeFiles/micrortps_agent.dir/build.make CMakeFiles/micrortps_agent.dir/src/micrortps_agent/microRTPS_transport.cpp.s .PHONY : src/micrortps_agent/microRTPS_transport.cpp.s # Help Target help: @echo "The following are some of the valid targets for this Makefile:" @echo "... all (the default if no target is provided)" @echo "... clean" @echo "... depend" @echo "... install/strip" @echo "... install" @echo "... list_install_components" @echo "... rebuild_cache" @echo "... install/local" @echo "... test" @echo "... new_offboard_control" @echo "... offboard_control" @echo "... edit_cache" @echo "... debug_vect_advertiser" @echo "... px4_ros_com_uninstall" @echo "... micrortps_agent" @echo "... uninstall" @echo "... frame_transforms" @echo "... sensor_combined_listener" @echo "... vehicle_gps_position_listener" @echo "... src/examples/advertisers/debug_vect_advertiser.o" @echo "... src/examples/advertisers/debug_vect_advertiser.i" @echo "... src/examples/advertisers/debug_vect_advertiser.s" @echo "... src/examples/listeners/sensor_combined_listener.o" @echo "... src/examples/listeners/sensor_combined_listener.i" @echo "... src/examples/listeners/sensor_combined_listener.s" @echo "... src/examples/listeners/vehicle_gps_position_listener.o" @echo "... src/examples/listeners/vehicle_gps_position_listener.i" @echo "... src/examples/listeners/vehicle_gps_position_listener.s" @echo "... src/examples/offboard/new_offboard_control.o" @echo "... src/examples/offboard/new_offboard_control.i" @echo "... src/examples/offboard/new_offboard_control.s" @echo "... src/examples/offboard/offboard_control.o" @echo "... src/examples/offboard/offboard_control.i" @echo "... src/examples/offboard/offboard_control.s" @echo "... src/lib/frame_transforms.o" @echo "... src/lib/frame_transforms.i" @echo "... src/lib/frame_transforms.s" @echo "... src/micrortps_agent/CollisionConstraints.o" @echo "... src/micrortps_agent/CollisionConstraints.i" @echo "... src/micrortps_agent/CollisionConstraints.s" @echo "... src/micrortps_agent/CollisionConstraintsPubSubTypes.o" @echo "... src/micrortps_agent/CollisionConstraintsPubSubTypes.i" @echo "... src/micrortps_agent/CollisionConstraintsPubSubTypes.s" @echo "... src/micrortps_agent/CollisionConstraints_Publisher.o" @echo "... src/micrortps_agent/CollisionConstraints_Publisher.i" @echo "... src/micrortps_agent/CollisionConstraints_Publisher.s" @echo "... src/micrortps_agent/DebugArray.o" @echo "... src/micrortps_agent/DebugArray.i" @echo "... src/micrortps_agent/DebugArray.s" @echo "... src/micrortps_agent/DebugArrayPubSubTypes.o" @echo "... src/micrortps_agent/DebugArrayPubSubTypes.i" @echo "... src/micrortps_agent/DebugArrayPubSubTypes.s" @echo "... src/micrortps_agent/DebugArray_Subscriber.o" @echo "... src/micrortps_agent/DebugArray_Subscriber.i" @echo "... src/micrortps_agent/DebugArray_Subscriber.s" @echo "... src/micrortps_agent/DebugKeyValue.o" @echo "... src/micrortps_agent/DebugKeyValue.i" @echo "... src/micrortps_agent/DebugKeyValue.s" @echo "... src/micrortps_agent/DebugKeyValuePubSubTypes.o" @echo "... src/micrortps_agent/DebugKeyValuePubSubTypes.i" @echo "... src/micrortps_agent/DebugKeyValuePubSubTypes.s" @echo "... src/micrortps_agent/DebugKeyValue_Subscriber.o" @echo "... src/micrortps_agent/DebugKeyValue_Subscriber.i" @echo "... src/micrortps_agent/DebugKeyValue_Subscriber.s" @echo "... src/micrortps_agent/DebugValue.o" @echo "... src/micrortps_agent/DebugValue.i" @echo "... src/micrortps_agent/DebugValue.s" @echo "... src/micrortps_agent/DebugValuePubSubTypes.o" @echo "... src/micrortps_agent/DebugValuePubSubTypes.i" @echo "... src/micrortps_agent/DebugValuePubSubTypes.s" @echo "... src/micrortps_agent/DebugValue_Subscriber.o" @echo "... src/micrortps_agent/DebugValue_Subscriber.i" @echo "... src/micrortps_agent/DebugValue_Subscriber.s" @echo "... src/micrortps_agent/DebugVect.o" @echo "... src/micrortps_agent/DebugVect.i" @echo "... src/micrortps_agent/DebugVect.s" @echo "... src/micrortps_agent/DebugVectPubSubTypes.o" @echo "... src/micrortps_agent/DebugVectPubSubTypes.i" @echo "... src/micrortps_agent/DebugVectPubSubTypes.s" @echo "... src/micrortps_agent/DebugVect_Subscriber.o" @echo "... src/micrortps_agent/DebugVect_Subscriber.i" @echo "... src/micrortps_agent/DebugVect_Subscriber.s" @echo "... src/micrortps_agent/InputRc.o" @echo "... src/micrortps_agent/InputRc.i" @echo "... src/micrortps_agent/InputRc.s" @echo "... src/micrortps_agent/InputRcPubSubTypes.o" @echo "... src/micrortps_agent/InputRcPubSubTypes.i" @echo "... src/micrortps_agent/InputRcPubSubTypes.s" @echo "... src/micrortps_agent/InputRc_Publisher.o" @echo "... src/micrortps_agent/InputRc_Publisher.i" @echo "... src/micrortps_agent/InputRc_Publisher.s" @echo "... src/micrortps_agent/OffboardControlMode.o" @echo "... src/micrortps_agent/OffboardControlMode.i" @echo "... src/micrortps_agent/OffboardControlMode.s" @echo "... src/micrortps_agent/OffboardControlModePubSubTypes.o" @echo "... src/micrortps_agent/OffboardControlModePubSubTypes.i" @echo "... src/micrortps_agent/OffboardControlModePubSubTypes.s" @echo "... src/micrortps_agent/OffboardControlMode_Subscriber.o" @echo "... src/micrortps_agent/OffboardControlMode_Subscriber.i" @echo "... src/micrortps_agent/OffboardControlMode_Subscriber.s" @echo "... src/micrortps_agent/OnboardComputerStatus.o" @echo "... src/micrortps_agent/OnboardComputerStatus.i" @echo "... src/micrortps_agent/OnboardComputerStatus.s" @echo "... src/micrortps_agent/OnboardComputerStatusPubSubTypes.o" @echo "... src/micrortps_agent/OnboardComputerStatusPubSubTypes.i" @echo "... src/micrortps_agent/OnboardComputerStatusPubSubTypes.s" @echo "... src/micrortps_agent/OnboardComputerStatus_Subscriber.o" @echo "... src/micrortps_agent/OnboardComputerStatus_Subscriber.i" @echo "... src/micrortps_agent/OnboardComputerStatus_Subscriber.s" @echo "... src/micrortps_agent/OpticalFlow.o" @echo "... src/micrortps_agent/OpticalFlow.i" @echo "... src/micrortps_agent/OpticalFlow.s" @echo "... src/micrortps_agent/OpticalFlowPubSubTypes.o" @echo "... src/micrortps_agent/OpticalFlowPubSubTypes.i" @echo "... src/micrortps_agent/OpticalFlowPubSubTypes.s" @echo "... src/micrortps_agent/OpticalFlow_Subscriber.o" @echo "... src/micrortps_agent/OpticalFlow_Subscriber.i" @echo "... src/micrortps_agent/OpticalFlow_Subscriber.s" @echo "... src/micrortps_agent/PositionSetpoint.o" @echo "... src/micrortps_agent/PositionSetpoint.i" @echo "... src/micrortps_agent/PositionSetpoint.s" @echo "... src/micrortps_agent/PositionSetpointPubSubTypes.o" @echo "... src/micrortps_agent/PositionSetpointPubSubTypes.i" @echo "... src/micrortps_agent/PositionSetpointPubSubTypes.s" @echo "... src/micrortps_agent/PositionSetpointTriplet.o" @echo "... src/micrortps_agent/PositionSetpointTriplet.i" @echo "... src/micrortps_agent/PositionSetpointTriplet.s" @echo "... src/micrortps_agent/PositionSetpointTripletPubSubTypes.o" @echo "... src/micrortps_agent/PositionSetpointTripletPubSubTypes.i" @echo "... src/micrortps_agent/PositionSetpointTripletPubSubTypes.s" @echo "... src/micrortps_agent/PositionSetpointTriplet_Subscriber.o" @echo "... src/micrortps_agent/PositionSetpointTriplet_Subscriber.i" @echo "... src/micrortps_agent/PositionSetpointTriplet_Subscriber.s" @echo "... src/micrortps_agent/PositionSetpoint_Subscriber.o" @echo "... src/micrortps_agent/PositionSetpoint_Subscriber.i" @echo "... src/micrortps_agent/PositionSetpoint_Subscriber.s" @echo "... src/micrortps_agent/RtpsTopics.o" @echo "... src/micrortps_agent/RtpsTopics.i" @echo "... src/micrortps_agent/RtpsTopics.s" @echo "... src/micrortps_agent/SatelliteInfo.o" @echo "... src/micrortps_agent/SatelliteInfo.i" @echo "... src/micrortps_agent/SatelliteInfo.s" @echo "... src/micrortps_agent/SatelliteInfoPubSubTypes.o" @echo "... src/micrortps_agent/SatelliteInfoPubSubTypes.i" @echo "... src/micrortps_agent/SatelliteInfoPubSubTypes.s" @echo "... src/micrortps_agent/SatelliteInfo_Publisher.o" @echo "... src/micrortps_agent/SatelliteInfo_Publisher.i" @echo "... src/micrortps_agent/SatelliteInfo_Publisher.s" @echo "... src/micrortps_agent/SensorCombined.o" @echo "... src/micrortps_agent/SensorCombined.i" @echo "... src/micrortps_agent/SensorCombined.s" @echo "... src/micrortps_agent/SensorCombinedPubSubTypes.o" @echo "... src/micrortps_agent/SensorCombinedPubSubTypes.i" @echo "... src/micrortps_agent/SensorCombinedPubSubTypes.s" @echo "... src/micrortps_agent/SensorCombined_Publisher.o" @echo "... src/micrortps_agent/SensorCombined_Publisher.i" @echo "... src/micrortps_agent/SensorCombined_Publisher.s" @echo "... src/micrortps_agent/TelemetryStatus.o" @echo "... src/micrortps_agent/TelemetryStatus.i" @echo "... src/micrortps_agent/TelemetryStatus.s" @echo "... src/micrortps_agent/TelemetryStatusPubSubTypes.o" @echo "... src/micrortps_agent/TelemetryStatusPubSubTypes.i" @echo "... src/micrortps_agent/TelemetryStatusPubSubTypes.s" @echo "... src/micrortps_agent/TelemetryStatus_Subscriber.o" @echo "... src/micrortps_agent/TelemetryStatus_Subscriber.i" @echo "... src/micrortps_agent/TelemetryStatus_Subscriber.s" @echo "... src/micrortps_agent/Timesync.o" @echo "... src/micrortps_agent/Timesync.i" @echo "... src/micrortps_agent/Timesync.s" @echo "... src/micrortps_agent/TimesyncPubSubTypes.o" @echo "... src/micrortps_agent/TimesyncPubSubTypes.i" @echo "... src/micrortps_agent/TimesyncPubSubTypes.s" @echo "... src/micrortps_agent/Timesync_Publisher.o" @echo "... src/micrortps_agent/Timesync_Publisher.i" @echo "... src/micrortps_agent/Timesync_Publisher.s" @echo "... src/micrortps_agent/Timesync_Subscriber.o" @echo "... src/micrortps_agent/Timesync_Subscriber.i" @echo "... src/micrortps_agent/Timesync_Subscriber.s" @echo "... src/micrortps_agent/TrajectoryBezier.o" @echo "... src/micrortps_agent/TrajectoryBezier.i" @echo "... src/micrortps_agent/TrajectoryBezier.s" @echo "... src/micrortps_agent/TrajectoryBezierPubSubTypes.o" @echo "... src/micrortps_agent/TrajectoryBezierPubSubTypes.i" @echo "... src/micrortps_agent/TrajectoryBezierPubSubTypes.s" @echo "... src/micrortps_agent/TrajectoryBezier_Subscriber.o" @echo "... src/micrortps_agent/TrajectoryBezier_Subscriber.i" @echo "... src/micrortps_agent/TrajectoryBezier_Subscriber.s" @echo "... src/micrortps_agent/TrajectorySetpoint.o" @echo "... src/micrortps_agent/TrajectorySetpoint.i" @echo "... src/micrortps_agent/TrajectorySetpoint.s" @echo "... src/micrortps_agent/TrajectorySetpointPubSubTypes.o" @echo "... src/micrortps_agent/TrajectorySetpointPubSubTypes.i" @echo "... src/micrortps_agent/TrajectorySetpointPubSubTypes.s" @echo "... src/micrortps_agent/TrajectorySetpoint_Subscriber.o" @echo "... src/micrortps_agent/TrajectorySetpoint_Subscriber.i" @echo "... src/micrortps_agent/TrajectorySetpoint_Subscriber.s" @echo "... src/micrortps_agent/TrajectoryWaypoint.o" @echo "... src/micrortps_agent/TrajectoryWaypoint.i" @echo "... src/micrortps_agent/TrajectoryWaypoint.s" @echo "... src/micrortps_agent/TrajectoryWaypointPubSubTypes.o" @echo "... src/micrortps_agent/TrajectoryWaypointPubSubTypes.i" @echo "... src/micrortps_agent/TrajectoryWaypointPubSubTypes.s" @echo "... src/micrortps_agent/TrajectoryWaypoint_Publisher.o" @echo "... src/micrortps_agent/TrajectoryWaypoint_Publisher.i" @echo "... src/micrortps_agent/TrajectoryWaypoint_Publisher.s" @echo "... src/micrortps_agent/TrajectoryWaypoint_Subscriber.o" @echo "... src/micrortps_agent/TrajectoryWaypoint_Subscriber.i" @echo "... src/micrortps_agent/TrajectoryWaypoint_Subscriber.s" @echo "... src/micrortps_agent/VehicleAngularVelocity.o" @echo "... src/micrortps_agent/VehicleAngularVelocity.i" @echo "... src/micrortps_agent/VehicleAngularVelocity.s" @echo "... src/micrortps_agent/VehicleAngularVelocityPubSubTypes.o" @echo "... src/micrortps_agent/VehicleAngularVelocityPubSubTypes.i" @echo "... src/micrortps_agent/VehicleAngularVelocityPubSubTypes.s" @echo "... src/micrortps_agent/VehicleAngularVelocity_Publisher.o" @echo "... src/micrortps_agent/VehicleAngularVelocity_Publisher.i" @echo "... src/micrortps_agent/VehicleAngularVelocity_Publisher.s" @echo "... src/micrortps_agent/VehicleAttitude.o" @echo "... src/micrortps_agent/VehicleAttitude.i" @echo "... src/micrortps_agent/VehicleAttitude.s" @echo "... src/micrortps_agent/VehicleAttitudePubSubTypes.o" @echo "... src/micrortps_agent/VehicleAttitudePubSubTypes.i" @echo "... src/micrortps_agent/VehicleAttitudePubSubTypes.s" @echo "... src/micrortps_agent/VehicleAttitude_Publisher.o" @echo "... src/micrortps_agent/VehicleAttitude_Publisher.i" @echo "... src/micrortps_agent/VehicleAttitude_Publisher.s" @echo "... src/micrortps_agent/VehicleCommand.o" @echo "... src/micrortps_agent/VehicleCommand.i" @echo "... src/micrortps_agent/VehicleCommand.s" @echo "... src/micrortps_agent/VehicleCommandPubSubTypes.o" @echo "... src/micrortps_agent/VehicleCommandPubSubTypes.i" @echo "... src/micrortps_agent/VehicleCommandPubSubTypes.s" @echo "... src/micrortps_agent/VehicleCommand_Subscriber.o" @echo "... src/micrortps_agent/VehicleCommand_Subscriber.i" @echo "... src/micrortps_agent/VehicleCommand_Subscriber.s" @echo "... src/micrortps_agent/VehicleControlMode.o" @echo "... src/micrortps_agent/VehicleControlMode.i" @echo "... src/micrortps_agent/VehicleControlMode.s" @echo "... src/micrortps_agent/VehicleControlModePubSubTypes.o" @echo "... src/micrortps_agent/VehicleControlModePubSubTypes.i" @echo "... src/micrortps_agent/VehicleControlModePubSubTypes.s" @echo "... src/micrortps_agent/VehicleControlMode_Publisher.o" @echo "... src/micrortps_agent/VehicleControlMode_Publisher.i" @echo "... src/micrortps_agent/VehicleControlMode_Publisher.s" @echo "... src/micrortps_agent/VehicleLocalPosition.o" @echo "... src/micrortps_agent/VehicleLocalPosition.i" @echo "... src/micrortps_agent/VehicleLocalPosition.s" @echo "... src/micrortps_agent/VehicleLocalPositionPubSubTypes.o" @echo "... src/micrortps_agent/VehicleLocalPositionPubSubTypes.i" @echo "... src/micrortps_agent/VehicleLocalPositionPubSubTypes.s" @echo "... src/micrortps_agent/VehicleLocalPositionSetpoint.o" @echo "... src/micrortps_agent/VehicleLocalPositionSetpoint.i" @echo "... src/micrortps_agent/VehicleLocalPositionSetpoint.s" @echo "... src/micrortps_agent/VehicleLocalPositionSetpointPubSubTypes.o" @echo "... src/micrortps_agent/VehicleLocalPositionSetpointPubSubTypes.i" @echo "... src/micrortps_agent/VehicleLocalPositionSetpointPubSubTypes.s" @echo "... src/micrortps_agent/VehicleLocalPositionSetpoint_Subscriber.o" @echo "... src/micrortps_agent/VehicleLocalPositionSetpoint_Subscriber.i" @echo "... src/micrortps_agent/VehicleLocalPositionSetpoint_Subscriber.s" @echo "... src/micrortps_agent/VehicleLocalPosition_Publisher.o" @echo "... src/micrortps_agent/VehicleLocalPosition_Publisher.i" @echo "... src/micrortps_agent/VehicleLocalPosition_Publisher.s" @echo "... src/micrortps_agent/VehicleMocapOdometry.o" @echo "... src/micrortps_agent/VehicleMocapOdometry.i" @echo "... src/micrortps_agent/VehicleMocapOdometry.s" @echo "... src/micrortps_agent/VehicleMocapOdometryPubSubTypes.o" @echo "... src/micrortps_agent/VehicleMocapOdometryPubSubTypes.i" @echo "... src/micrortps_agent/VehicleMocapOdometryPubSubTypes.s" @echo "... src/micrortps_agent/VehicleMocapOdometry_Subscriber.o" @echo "... src/micrortps_agent/VehicleMocapOdometry_Subscriber.i" @echo "... src/micrortps_agent/VehicleMocapOdometry_Subscriber.s" @echo "... src/micrortps_agent/VehicleOdometry.o" @echo "... src/micrortps_agent/VehicleOdometry.i" @echo "... src/micrortps_agent/VehicleOdometry.s" @echo "... src/micrortps_agent/VehicleOdometryPubSubTypes.o" @echo "... src/micrortps_agent/VehicleOdometryPubSubTypes.i" @echo "... src/micrortps_agent/VehicleOdometryPubSubTypes.s" @echo "... src/micrortps_agent/VehicleOdometry_Publisher.o" @echo "... src/micrortps_agent/VehicleOdometry_Publisher.i" @echo "... src/micrortps_agent/VehicleOdometry_Publisher.s" @echo "... src/micrortps_agent/VehicleStatus.o" @echo "... src/micrortps_agent/VehicleStatus.i" @echo "... src/micrortps_agent/VehicleStatus.s" @echo "... src/micrortps_agent/VehicleStatusPubSubTypes.o" @echo "... src/micrortps_agent/VehicleStatusPubSubTypes.i" @echo "... src/micrortps_agent/VehicleStatusPubSubTypes.s" @echo "... src/micrortps_agent/VehicleStatus_Publisher.o" @echo "... src/micrortps_agent/VehicleStatus_Publisher.i" @echo "... src/micrortps_agent/VehicleStatus_Publisher.s" @echo "... src/micrortps_agent/VehicleTrajectoryBezier.o" @echo "... src/micrortps_agent/VehicleTrajectoryBezier.i" @echo "... src/micrortps_agent/VehicleTrajectoryBezier.s" @echo "... src/micrortps_agent/VehicleTrajectoryBezierPubSubTypes.o" @echo "... src/micrortps_agent/VehicleTrajectoryBezierPubSubTypes.i" @echo "... src/micrortps_agent/VehicleTrajectoryBezierPubSubTypes.s" @echo "... src/micrortps_agent/VehicleTrajectoryBezier_Subscriber.o" @echo "... src/micrortps_agent/VehicleTrajectoryBezier_Subscriber.i" @echo "... src/micrortps_agent/VehicleTrajectoryBezier_Subscriber.s" @echo "... src/micrortps_agent/VehicleTrajectoryWaypoint.o" @echo "... src/micrortps_agent/VehicleTrajectoryWaypoint.i" @echo "... src/micrortps_agent/VehicleTrajectoryWaypoint.s" @echo "... src/micrortps_agent/VehicleTrajectoryWaypointDesired.o" @echo "... src/micrortps_agent/VehicleTrajectoryWaypointDesired.i" @echo "... src/micrortps_agent/VehicleTrajectoryWaypointDesired.s" @echo "... src/micrortps_agent/VehicleTrajectoryWaypointDesiredPubSubTypes.o" @echo "... src/micrortps_agent/VehicleTrajectoryWaypointDesiredPubSubTypes.i" @echo "... src/micrortps_agent/VehicleTrajectoryWaypointDesiredPubSubTypes.s" @echo "... src/micrortps_agent/VehicleTrajectoryWaypointDesired_Publisher.o" @echo "... src/micrortps_agent/VehicleTrajectoryWaypointDesired_Publisher.i" @echo "... src/micrortps_agent/VehicleTrajectoryWaypointDesired_Publisher.s" @echo "... src/micrortps_agent/VehicleTrajectoryWaypointPubSubTypes.o" @echo "... src/micrortps_agent/VehicleTrajectoryWaypointPubSubTypes.i" @echo "... src/micrortps_agent/VehicleTrajectoryWaypointPubSubTypes.s" @echo "... src/micrortps_agent/VehicleTrajectoryWaypoint_Subscriber.o" @echo "... src/micrortps_agent/VehicleTrajectoryWaypoint_Subscriber.i" @echo "... src/micrortps_agent/VehicleTrajectoryWaypoint_Subscriber.s" @echo "... src/micrortps_agent/VehicleVisualOdometry.o" @echo "... src/micrortps_agent/VehicleVisualOdometry.i" @echo "... src/micrortps_agent/VehicleVisualOdometry.s" @echo "... src/micrortps_agent/VehicleVisualOdometryPubSubTypes.o" @echo "... src/micrortps_agent/VehicleVisualOdometryPubSubTypes.i" @echo "... src/micrortps_agent/VehicleVisualOdometryPubSubTypes.s" @echo "... src/micrortps_agent/VehicleVisualOdometry_Subscriber.o" @echo "... src/micrortps_agent/VehicleVisualOdometry_Subscriber.i" @echo "... src/micrortps_agent/VehicleVisualOdometry_Subscriber.s" @echo "... src/micrortps_agent/microRTPS_agent.o" @echo "... src/micrortps_agent/microRTPS_agent.i" @echo "... src/micrortps_agent/microRTPS_agent.s" @echo "... src/micrortps_agent/microRTPS_timesync.o" @echo "... src/micrortps_agent/microRTPS_timesync.i" @echo "... src/micrortps_agent/microRTPS_timesync.s" @echo "... src/micrortps_agent/microRTPS_transport.o" @echo "... src/micrortps_agent/microRTPS_transport.i" @echo "... src/micrortps_agent/microRTPS_transport.s" .PHONY : help #============================================================================= # Special targets to cleanup operation of make. # Special rule to run CMake to check the build system integrity. # No rule that depends on this can have commands that come from listfiles # because they might be regenerated. cmake_check_build_system: $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 .PHONY : cmake_check_build_system <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_command_ack.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleCommandAck.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_COMMAND_ACK_H_ #define PX4_MSGS__MSG__VEHICLE_COMMAND_ACK_H_ #include "px4_msgs/msg/vehicle_command_ack__struct.h" #include "px4_msgs/msg/vehicle_command_ack__functions.h" #include "px4_msgs/msg/vehicle_command_ack__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_COMMAND_ACK_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_air_data__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleAirData.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_AIR_DATA__STRUCT_H_ #define PX4_MSGS__MSG__VEHICLE_AIR_DATA__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/VehicleAirData in the package px4_msgs. typedef struct px4_msgs__msg__VehicleAirData { uint64_t timestamp; uint64_t timestamp_sample; uint32_t baro_device_id; float baro_alt_meter; float baro_temp_celcius; float baro_pressure_pa; float rho; } px4_msgs__msg__VehicleAirData; // Struct for a sequence of px4_msgs__msg__VehicleAirData. typedef struct px4_msgs__msg__VehicleAirData__Sequence { px4_msgs__msg__VehicleAirData * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__VehicleAirData__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_AIR_DATA__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/wheel_encoders__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/WheelEncoders.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__WHEEL_ENCODERS__STRUCT_HPP_ #define PX4_MSGS__MSG__WHEEL_ENCODERS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__WheelEncoders __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__WheelEncoders __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct WheelEncoders_ { using Type = WheelEncoders_<ContainerAllocator>; explicit WheelEncoders_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->encoder_position = 0ll; this->speed = 0l; this->pulses_per_rev = 0ul; } } explicit WheelEncoders_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->encoder_position = 0ll; this->speed = 0l; this->pulses_per_rev = 0ul; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _encoder_position_type = int64_t; _encoder_position_type encoder_position; using _speed_type = int32_t; _speed_type speed; using _pulses_per_rev_type = uint32_t; _pulses_per_rev_type pulses_per_rev; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__encoder_position( const int64_t & _arg) { this->encoder_position = _arg; return *this; } Type & set__speed( const int32_t & _arg) { this->speed = _arg; return *this; } Type & set__pulses_per_rev( const uint32_t & _arg) { this->pulses_per_rev = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::WheelEncoders_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::WheelEncoders_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::WheelEncoders_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::WheelEncoders_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::WheelEncoders_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::WheelEncoders_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::WheelEncoders_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::WheelEncoders_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::WheelEncoders_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::WheelEncoders_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__WheelEncoders std::shared_ptr<px4_msgs::msg::WheelEncoders_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__WheelEncoders std::shared_ptr<px4_msgs::msg::WheelEncoders_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const WheelEncoders_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->encoder_position != other.encoder_position) { return false; } if (this->speed != other.speed) { return false; } if (this->pulses_per_rev != other.pulses_per_rev) { return false; } return true; } bool operator!=(const WheelEncoders_ & other) const { return !this->operator==(other); } }; // struct WheelEncoders_ // alias to use template instance with default allocator using WheelEncoders = px4_msgs::msg::WheelEncoders_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__WHEEL_ENCODERS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/sensor_accel.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_ACCEL_HPP_ #define PX4_MSGS__MSG__SENSOR_ACCEL_HPP_ #include "px4_msgs/msg/sensor_accel__struct.hpp" #include "px4_msgs/msg/sensor_accel__traits.hpp" #endif // PX4_MSGS__MSG__SENSOR_ACCEL_HPP_ <file_sep>/install/px4_msgs/include/px4_msgs/msg/gps_dump.h /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/gps_dump.h<file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/landing_target_innovations.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__LANDING_TARGET_INNOVATIONS_HPP_ #define PX4_MSGS__MSG__LANDING_TARGET_INNOVATIONS_HPP_ #include "px4_msgs/msg/landing_target_innovations__struct.hpp" #include "px4_msgs/msg/landing_target_innovations__traits.hpp" #endif // PX4_MSGS__MSG__LANDING_TARGET_INNOVATIONS_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_mission_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/Mission.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/mission__struct.h" #include "px4_msgs/msg/mission__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__mission__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[30]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._mission.Mission", full_classname_dest, 29) == 0); } px4_msgs__msg__Mission * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // dataman_id PyObject * field = PyObject_GetAttrString(_pymsg, "dataman_id"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->dataman_id = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // count PyObject * field = PyObject_GetAttrString(_pymsg, "count"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->count = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // current_seq PyObject * field = PyObject_GetAttrString(_pymsg, "current_seq"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->current_seq = (int32_t)PyLong_AsLong(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__mission__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of Mission */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._mission"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "Mission"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__Mission * ros_message = (px4_msgs__msg__Mission *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // dataman_id PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->dataman_id); { int rc = PyObject_SetAttrString(_pymessage, "dataman_id", field); Py_DECREF(field); if (rc) { return NULL; } } } { // count PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->count); { int rc = PyObject_SetAttrString(_pymessage, "count", field); Py_DECREF(field); if (rc) { return NULL; } } } { // current_seq PyObject * field = NULL; field = PyLong_FromLong(ros_message->current_seq); { int rc = PyObject_SetAttrString(_pymessage, "current_seq", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_attitude_status__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/GimbalDeviceAttitudeStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/gimbal_device_attitude_status__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/gimbal_device_attitude_status__struct.h" #include "px4_msgs/msg/gimbal_device_attitude_status__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _GimbalDeviceAttitudeStatus__ros_msg_type = px4_msgs__msg__GimbalDeviceAttitudeStatus; static bool _GimbalDeviceAttitudeStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _GimbalDeviceAttitudeStatus__ros_msg_type * ros_message = static_cast<const _GimbalDeviceAttitudeStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: target_system { cdr << ros_message->target_system; } // Field name: target_component { cdr << ros_message->target_component; } // Field name: device_flags { cdr << ros_message->device_flags; } // Field name: q { size_t size = 4; auto array_ptr = ros_message->q; cdr.serializeArray(array_ptr, size); } // Field name: angular_velocity_x { cdr << ros_message->angular_velocity_x; } // Field name: angular_velocity_y { cdr << ros_message->angular_velocity_y; } // Field name: angular_velocity_z { cdr << ros_message->angular_velocity_z; } // Field name: failure_flags { cdr << ros_message->failure_flags; } return true; } static bool _GimbalDeviceAttitudeStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _GimbalDeviceAttitudeStatus__ros_msg_type * ros_message = static_cast<_GimbalDeviceAttitudeStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: target_system { cdr >> ros_message->target_system; } // Field name: target_component { cdr >> ros_message->target_component; } // Field name: device_flags { cdr >> ros_message->device_flags; } // Field name: q { size_t size = 4; auto array_ptr = ros_message->q; cdr.deserializeArray(array_ptr, size); } // Field name: angular_velocity_x { cdr >> ros_message->angular_velocity_x; } // Field name: angular_velocity_y { cdr >> ros_message->angular_velocity_y; } // Field name: angular_velocity_z { cdr >> ros_message->angular_velocity_z; } // Field name: failure_flags { cdr >> ros_message->failure_flags; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__GimbalDeviceAttitudeStatus( const void * untyped_ros_message, size_t current_alignment) { const _GimbalDeviceAttitudeStatus__ros_msg_type * ros_message = static_cast<const _GimbalDeviceAttitudeStatus__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name target_system { size_t item_size = sizeof(ros_message->target_system); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name target_component { size_t item_size = sizeof(ros_message->target_component); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name device_flags { size_t item_size = sizeof(ros_message->device_flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name q { size_t array_size = 4; auto array_ptr = ros_message->q; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name angular_velocity_x { size_t item_size = sizeof(ros_message->angular_velocity_x); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name angular_velocity_y { size_t item_size = sizeof(ros_message->angular_velocity_y); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name angular_velocity_z { size_t item_size = sizeof(ros_message->angular_velocity_z); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name failure_flags { size_t item_size = sizeof(ros_message->failure_flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _GimbalDeviceAttitudeStatus__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__GimbalDeviceAttitudeStatus( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__GimbalDeviceAttitudeStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: target_system { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: target_component { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: device_flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: q { size_t array_size = 4; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: angular_velocity_x { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: angular_velocity_y { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: angular_velocity_z { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: failure_flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _GimbalDeviceAttitudeStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__GimbalDeviceAttitudeStatus( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_GimbalDeviceAttitudeStatus = { "px4_msgs::msg", "GimbalDeviceAttitudeStatus", _GimbalDeviceAttitudeStatus__cdr_serialize, _GimbalDeviceAttitudeStatus__cdr_deserialize, _GimbalDeviceAttitudeStatus__get_serialized_size, _GimbalDeviceAttitudeStatus__max_serialized_size }; static rosidl_message_type_support_t _GimbalDeviceAttitudeStatus__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_GimbalDeviceAttitudeStatus, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, GimbalDeviceAttitudeStatus)() { return &_GimbalDeviceAttitudeStatus__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/rtl_flight_time__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/RtlFlightTime.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/rtl_flight_time__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/rtl_flight_time__struct.h" #include "px4_msgs/msg/rtl_flight_time__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _RtlFlightTime__ros_msg_type = px4_msgs__msg__RtlFlightTime; static bool _RtlFlightTime__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _RtlFlightTime__ros_msg_type * ros_message = static_cast<const _RtlFlightTime__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: rtl_time_s { cdr << ros_message->rtl_time_s; } // Field name: rtl_limit_fraction { cdr << ros_message->rtl_limit_fraction; } return true; } static bool _RtlFlightTime__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _RtlFlightTime__ros_msg_type * ros_message = static_cast<_RtlFlightTime__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: rtl_time_s { cdr >> ros_message->rtl_time_s; } // Field name: rtl_limit_fraction { cdr >> ros_message->rtl_limit_fraction; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__RtlFlightTime( const void * untyped_ros_message, size_t current_alignment) { const _RtlFlightTime__ros_msg_type * ros_message = static_cast<const _RtlFlightTime__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rtl_time_s { size_t item_size = sizeof(ros_message->rtl_time_s); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rtl_limit_fraction { size_t item_size = sizeof(ros_message->rtl_limit_fraction); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _RtlFlightTime__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__RtlFlightTime( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__RtlFlightTime( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: rtl_time_s { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: rtl_limit_fraction { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _RtlFlightTime__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__RtlFlightTime( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_RtlFlightTime = { "px4_msgs::msg", "RtlFlightTime", _RtlFlightTime__cdr_serialize, _RtlFlightTime__cdr_deserialize, _RtlFlightTime__get_serialized_size, _RtlFlightTime__max_serialized_size }; static rosidl_message_type_support_t _RtlFlightTime__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_RtlFlightTime, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, RtlFlightTime)() { return &_RtlFlightTime__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_multi__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/OrbTestMediumMulti.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/orb_test_medium_multi__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/orb_test_medium_multi__struct.h" #include "px4_msgs/msg/orb_test_medium_multi__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _OrbTestMediumMulti__ros_msg_type = px4_msgs__msg__OrbTestMediumMulti; static bool _OrbTestMediumMulti__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _OrbTestMediumMulti__ros_msg_type * ros_message = static_cast<const _OrbTestMediumMulti__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: val { cdr << ros_message->val; } // Field name: junk { size_t size = 64; auto array_ptr = ros_message->junk; cdr.serializeArray(array_ptr, size); } return true; } static bool _OrbTestMediumMulti__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _OrbTestMediumMulti__ros_msg_type * ros_message = static_cast<_OrbTestMediumMulti__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: val { cdr >> ros_message->val; } // Field name: junk { size_t size = 64; auto array_ptr = ros_message->junk; cdr.deserializeArray(array_ptr, size); } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__OrbTestMediumMulti( const void * untyped_ros_message, size_t current_alignment) { const _OrbTestMediumMulti__ros_msg_type * ros_message = static_cast<const _OrbTestMediumMulti__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name val { size_t item_size = sizeof(ros_message->val); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name junk { size_t array_size = 64; auto array_ptr = ros_message->junk; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _OrbTestMediumMulti__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__OrbTestMediumMulti( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__OrbTestMediumMulti( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: val { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: junk { size_t array_size = 64; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _OrbTestMediumMulti__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__OrbTestMediumMulti( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_OrbTestMediumMulti = { "px4_msgs::msg", "OrbTestMediumMulti", _OrbTestMediumMulti__cdr_serialize, _OrbTestMediumMulti__cdr_deserialize, _OrbTestMediumMulti__get_serialized_size, _OrbTestMediumMulti__max_serialized_size }; static rosidl_message_type_support_t _OrbTestMediumMulti__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_OrbTestMediumMulti, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, OrbTestMediumMulti)() { return &_OrbTestMediumMulti__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_innovation_variances__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/EstimatorInnovationVariances.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/estimator_innovation_variances__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__EstimatorInnovationVariances__init(px4_msgs__msg__EstimatorInnovationVariances * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // gps_hvel // gps_vvel // gps_hpos // gps_vpos // ev_hvel // ev_vvel // ev_hpos // ev_vpos // rng_vpos // baro_vpos // aux_hvel // aux_vvel // flow // heading // mag_field // drag // airspeed // beta // hagl return true; } void px4_msgs__msg__EstimatorInnovationVariances__fini(px4_msgs__msg__EstimatorInnovationVariances * msg) { if (!msg) { return; } // timestamp // timestamp_sample // gps_hvel // gps_vvel // gps_hpos // gps_vpos // ev_hvel // ev_vvel // ev_hpos // ev_vpos // rng_vpos // baro_vpos // aux_hvel // aux_vvel // flow // heading // mag_field // drag // airspeed // beta // hagl } px4_msgs__msg__EstimatorInnovationVariances * px4_msgs__msg__EstimatorInnovationVariances__create() { px4_msgs__msg__EstimatorInnovationVariances * msg = (px4_msgs__msg__EstimatorInnovationVariances *)malloc(sizeof(px4_msgs__msg__EstimatorInnovationVariances)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__EstimatorInnovationVariances)); bool success = px4_msgs__msg__EstimatorInnovationVariances__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__EstimatorInnovationVariances__destroy(px4_msgs__msg__EstimatorInnovationVariances * msg) { if (msg) { px4_msgs__msg__EstimatorInnovationVariances__fini(msg); } free(msg); } bool px4_msgs__msg__EstimatorInnovationVariances__Sequence__init(px4_msgs__msg__EstimatorInnovationVariances__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__EstimatorInnovationVariances * data = NULL; if (size) { data = (px4_msgs__msg__EstimatorInnovationVariances *)calloc(size, sizeof(px4_msgs__msg__EstimatorInnovationVariances)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__EstimatorInnovationVariances__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__EstimatorInnovationVariances__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__EstimatorInnovationVariances__Sequence__fini(px4_msgs__msg__EstimatorInnovationVariances__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__EstimatorInnovationVariances__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__EstimatorInnovationVariances__Sequence * px4_msgs__msg__EstimatorInnovationVariances__Sequence__create(size_t size) { px4_msgs__msg__EstimatorInnovationVariances__Sequence * array = (px4_msgs__msg__EstimatorInnovationVariances__Sequence *)malloc(sizeof(px4_msgs__msg__EstimatorInnovationVariances__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__EstimatorInnovationVariances__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__EstimatorInnovationVariances__Sequence__destroy(px4_msgs__msg__EstimatorInnovationVariances__Sequence * array) { if (array) { px4_msgs__msg__EstimatorInnovationVariances__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/ekf_gps_drift__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/EkfGpsDrift.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__EKF_GPS_DRIFT__STRUCT_HPP_ #define PX4_MSGS__MSG__EKF_GPS_DRIFT__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__EkfGpsDrift __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__EkfGpsDrift __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct EkfGpsDrift_ { using Type = EkfGpsDrift_<ContainerAllocator>; explicit EkfGpsDrift_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->hpos_drift_rate = 0.0f; this->vpos_drift_rate = 0.0f; this->hspd = 0.0f; this->blocked = false; } } explicit EkfGpsDrift_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->hpos_drift_rate = 0.0f; this->vpos_drift_rate = 0.0f; this->hspd = 0.0f; this->blocked = false; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _hpos_drift_rate_type = float; _hpos_drift_rate_type hpos_drift_rate; using _vpos_drift_rate_type = float; _vpos_drift_rate_type vpos_drift_rate; using _hspd_type = float; _hspd_type hspd; using _blocked_type = bool; _blocked_type blocked; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__hpos_drift_rate( const float & _arg) { this->hpos_drift_rate = _arg; return *this; } Type & set__vpos_drift_rate( const float & _arg) { this->vpos_drift_rate = _arg; return *this; } Type & set__hspd( const float & _arg) { this->hspd = _arg; return *this; } Type & set__blocked( const bool & _arg) { this->blocked = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::EkfGpsDrift_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::EkfGpsDrift_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::EkfGpsDrift_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::EkfGpsDrift_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::EkfGpsDrift_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::EkfGpsDrift_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::EkfGpsDrift_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::EkfGpsDrift_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::EkfGpsDrift_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::EkfGpsDrift_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__EkfGpsDrift std::shared_ptr<px4_msgs::msg::EkfGpsDrift_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__EkfGpsDrift std::shared_ptr<px4_msgs::msg::EkfGpsDrift_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const EkfGpsDrift_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->hpos_drift_rate != other.hpos_drift_rate) { return false; } if (this->vpos_drift_rate != other.vpos_drift_rate) { return false; } if (this->hspd != other.hspd) { return false; } if (this->blocked != other.blocked) { return false; } return true; } bool operator!=(const EkfGpsDrift_ & other) const { return !this->operator==(other); } }; // struct EkfGpsDrift_ // alias to use template instance with default allocator using EkfGpsDrift = px4_msgs::msg::EkfGpsDrift_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__EKF_GPS_DRIFT__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_visual_odometry_aligned__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/EstimatorVisualOdometryAligned.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/estimator_visual_odometry_aligned__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/estimator_visual_odometry_aligned__functions.h" #include "px4_msgs/msg/estimator_visual_odometry_aligned__struct.h" #ifdef __cplusplus extern "C" { #endif void EstimatorVisualOdometryAligned__rosidl_typesupport_introspection_c__EstimatorVisualOdometryAligned_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__EstimatorVisualOdometryAligned__init(message_memory); } void EstimatorVisualOdometryAligned__rosidl_typesupport_introspection_c__EstimatorVisualOdometryAligned_fini_function(void * message_memory) { px4_msgs__msg__EstimatorVisualOdometryAligned__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember EstimatorVisualOdometryAligned__rosidl_typesupport_introspection_c__EstimatorVisualOdometryAligned_message_member_array[17] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorVisualOdometryAligned, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorVisualOdometryAligned, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "local_frame", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorVisualOdometryAligned, local_frame), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "x", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorVisualOdometryAligned, x), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "y", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorVisualOdometryAligned, y), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "z", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorVisualOdometryAligned, z), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "q", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorVisualOdometryAligned, q), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "q_offset", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorVisualOdometryAligned, q_offset), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "pose_covariance", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 21, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorVisualOdometryAligned, pose_covariance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "velocity_frame", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorVisualOdometryAligned, velocity_frame), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vx", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorVisualOdometryAligned, vx), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vy", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorVisualOdometryAligned, vy), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vz", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorVisualOdometryAligned, vz), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rollspeed", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorVisualOdometryAligned, rollspeed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "pitchspeed", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorVisualOdometryAligned, pitchspeed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yawspeed", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorVisualOdometryAligned, yawspeed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "velocity_covariance", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 21, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorVisualOdometryAligned, velocity_covariance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers EstimatorVisualOdometryAligned__rosidl_typesupport_introspection_c__EstimatorVisualOdometryAligned_message_members = { "px4_msgs__msg", // message namespace "EstimatorVisualOdometryAligned", // message name 17, // number of fields sizeof(px4_msgs__msg__EstimatorVisualOdometryAligned), EstimatorVisualOdometryAligned__rosidl_typesupport_introspection_c__EstimatorVisualOdometryAligned_message_member_array, // message members EstimatorVisualOdometryAligned__rosidl_typesupport_introspection_c__EstimatorVisualOdometryAligned_init_function, // function to initialize message memory (memory has to be allocated) EstimatorVisualOdometryAligned__rosidl_typesupport_introspection_c__EstimatorVisualOdometryAligned_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t EstimatorVisualOdometryAligned__rosidl_typesupport_introspection_c__EstimatorVisualOdometryAligned_message_type_support_handle = { 0, &EstimatorVisualOdometryAligned__rosidl_typesupport_introspection_c__EstimatorVisualOdometryAligned_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, EstimatorVisualOdometryAligned)() { if (!EstimatorVisualOdometryAligned__rosidl_typesupport_introspection_c__EstimatorVisualOdometryAligned_message_type_support_handle.typesupport_identifier) { EstimatorVisualOdometryAligned__rosidl_typesupport_introspection_c__EstimatorVisualOdometryAligned_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &EstimatorVisualOdometryAligned__rosidl_typesupport_introspection_c__EstimatorVisualOdometryAligned_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_gyro_fft__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/SensorGyroFft.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_GYRO_FFT__STRUCT_H_ #define PX4_MSGS__MSG__SENSOR_GYRO_FFT__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/SensorGyroFft in the package px4_msgs. typedef struct px4_msgs__msg__SensorGyroFft { uint64_t timestamp; uint64_t timestamp_sample; uint32_t device_id; float sensor_sample_rate_hz; float resolution_hz; float peak_frequencies_x[6]; float peak_frequencies_y[6]; float peak_frequencies_z[6]; uint32_t peak_magnitude_x[6]; uint32_t peak_magnitude_y[6]; uint32_t peak_magnitude_z[6]; } px4_msgs__msg__SensorGyroFft; // Struct for a sequence of px4_msgs__msg__SensorGyroFft. typedef struct px4_msgs__msg__SensorGyroFft__Sequence { px4_msgs__msg__SensorGyroFft * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__SensorGyroFft__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__SENSOR_GYRO_FFT__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_manual_control_switches.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/ManualControlSwitches.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_ManualControlSwitches(type): """Metaclass of message 'ManualControlSwitches'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'SWITCH_POS_NONE': 0, 'SWITCH_POS_ON': 1, 'SWITCH_POS_MIDDLE': 2, 'SWITCH_POS_OFF': 3, 'MODE_SLOT_NONE': 0, 'MODE_SLOT_1': 1, 'MODE_SLOT_2': 2, 'MODE_SLOT_3': 3, 'MODE_SLOT_4': 4, 'MODE_SLOT_5': 5, 'MODE_SLOT_6': 6, 'MODE_SLOT_NUM': 6, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.ManualControlSwitches') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__manual_control_switches cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__manual_control_switches cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__manual_control_switches cls._TYPE_SUPPORT = module.type_support_msg__msg__manual_control_switches cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__manual_control_switches @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'SWITCH_POS_NONE': cls.__constants['SWITCH_POS_NONE'], 'SWITCH_POS_ON': cls.__constants['SWITCH_POS_ON'], 'SWITCH_POS_MIDDLE': cls.__constants['SWITCH_POS_MIDDLE'], 'SWITCH_POS_OFF': cls.__constants['SWITCH_POS_OFF'], 'MODE_SLOT_NONE': cls.__constants['MODE_SLOT_NONE'], 'MODE_SLOT_1': cls.__constants['MODE_SLOT_1'], 'MODE_SLOT_2': cls.__constants['MODE_SLOT_2'], 'MODE_SLOT_3': cls.__constants['MODE_SLOT_3'], 'MODE_SLOT_4': cls.__constants['MODE_SLOT_4'], 'MODE_SLOT_5': cls.__constants['MODE_SLOT_5'], 'MODE_SLOT_6': cls.__constants['MODE_SLOT_6'], 'MODE_SLOT_NUM': cls.__constants['MODE_SLOT_NUM'], } @property def SWITCH_POS_NONE(self): """Message constant 'SWITCH_POS_NONE'.""" return Metaclass_ManualControlSwitches.__constants['SWITCH_POS_NONE'] @property def SWITCH_POS_ON(self): """Message constant 'SWITCH_POS_ON'.""" return Metaclass_ManualControlSwitches.__constants['SWITCH_POS_ON'] @property def SWITCH_POS_MIDDLE(self): """Message constant 'SWITCH_POS_MIDDLE'.""" return Metaclass_ManualControlSwitches.__constants['SWITCH_POS_MIDDLE'] @property def SWITCH_POS_OFF(self): """Message constant 'SWITCH_POS_OFF'.""" return Metaclass_ManualControlSwitches.__constants['SWITCH_POS_OFF'] @property def MODE_SLOT_NONE(self): """Message constant 'MODE_SLOT_NONE'.""" return Metaclass_ManualControlSwitches.__constants['MODE_SLOT_NONE'] @property def MODE_SLOT_1(self): """Message constant 'MODE_SLOT_1'.""" return Metaclass_ManualControlSwitches.__constants['MODE_SLOT_1'] @property def MODE_SLOT_2(self): """Message constant 'MODE_SLOT_2'.""" return Metaclass_ManualControlSwitches.__constants['MODE_SLOT_2'] @property def MODE_SLOT_3(self): """Message constant 'MODE_SLOT_3'.""" return Metaclass_ManualControlSwitches.__constants['MODE_SLOT_3'] @property def MODE_SLOT_4(self): """Message constant 'MODE_SLOT_4'.""" return Metaclass_ManualControlSwitches.__constants['MODE_SLOT_4'] @property def MODE_SLOT_5(self): """Message constant 'MODE_SLOT_5'.""" return Metaclass_ManualControlSwitches.__constants['MODE_SLOT_5'] @property def MODE_SLOT_6(self): """Message constant 'MODE_SLOT_6'.""" return Metaclass_ManualControlSwitches.__constants['MODE_SLOT_6'] @property def MODE_SLOT_NUM(self): """Message constant 'MODE_SLOT_NUM'.""" return Metaclass_ManualControlSwitches.__constants['MODE_SLOT_NUM'] class ManualControlSwitches(metaclass=Metaclass_ManualControlSwitches): """ Message class 'ManualControlSwitches'. Constants: SWITCH_POS_NONE SWITCH_POS_ON SWITCH_POS_MIDDLE SWITCH_POS_OFF MODE_SLOT_NONE MODE_SLOT_1 MODE_SLOT_2 MODE_SLOT_3 MODE_SLOT_4 MODE_SLOT_5 MODE_SLOT_6 MODE_SLOT_NUM """ __slots__ = [ '_timestamp', '_timestamp_sample', '_mode_slot', '_arm_switch', '_return_switch', '_loiter_switch', '_offboard_switch', '_kill_switch', '_gear_switch', '_transition_switch', '_mode_switch', '_man_switch', '_acro_switch', '_stab_switch', '_posctl_switch', '_switch_changes', ] _fields_and_field_types = { 'timestamp': 'uint64', 'timestamp_sample': 'uint64', 'mode_slot': 'uint8', 'arm_switch': 'uint8', 'return_switch': 'uint8', 'loiter_switch': 'uint8', 'offboard_switch': 'uint8', 'kill_switch': 'uint8', 'gear_switch': 'uint8', 'transition_switch': 'uint8', 'mode_switch': 'uint8', 'man_switch': 'uint8', 'acro_switch': 'uint8', 'stab_switch': 'uint8', 'posctl_switch': 'uint8', 'switch_changes': 'uint32', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.timestamp_sample = kwargs.get('timestamp_sample', int()) self.mode_slot = kwargs.get('mode_slot', int()) self.arm_switch = kwargs.get('arm_switch', int()) self.return_switch = kwargs.get('return_switch', int()) self.loiter_switch = kwargs.get('loiter_switch', int()) self.offboard_switch = kwargs.get('offboard_switch', int()) self.kill_switch = kwargs.get('kill_switch', int()) self.gear_switch = kwargs.get('gear_switch', int()) self.transition_switch = kwargs.get('transition_switch', int()) self.mode_switch = kwargs.get('mode_switch', int()) self.man_switch = kwargs.get('man_switch', int()) self.acro_switch = kwargs.get('acro_switch', int()) self.stab_switch = kwargs.get('stab_switch', int()) self.posctl_switch = kwargs.get('posctl_switch', int()) self.switch_changes = kwargs.get('switch_changes', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.timestamp_sample != other.timestamp_sample: return False if self.mode_slot != other.mode_slot: return False if self.arm_switch != other.arm_switch: return False if self.return_switch != other.return_switch: return False if self.loiter_switch != other.loiter_switch: return False if self.offboard_switch != other.offboard_switch: return False if self.kill_switch != other.kill_switch: return False if self.gear_switch != other.gear_switch: return False if self.transition_switch != other.transition_switch: return False if self.mode_switch != other.mode_switch: return False if self.man_switch != other.man_switch: return False if self.acro_switch != other.acro_switch: return False if self.stab_switch != other.stab_switch: return False if self.posctl_switch != other.posctl_switch: return False if self.switch_changes != other.switch_changes: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def timestamp_sample(self): """Message field 'timestamp_sample'.""" return self._timestamp_sample @timestamp_sample.setter def timestamp_sample(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp_sample' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp_sample' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp_sample = value @property def mode_slot(self): """Message field 'mode_slot'.""" return self._mode_slot @mode_slot.setter def mode_slot(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'mode_slot' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'mode_slot' field must be an unsigned integer in [0, 255]" self._mode_slot = value @property def arm_switch(self): """Message field 'arm_switch'.""" return self._arm_switch @arm_switch.setter def arm_switch(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'arm_switch' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'arm_switch' field must be an unsigned integer in [0, 255]" self._arm_switch = value @property def return_switch(self): """Message field 'return_switch'.""" return self._return_switch @return_switch.setter def return_switch(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'return_switch' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'return_switch' field must be an unsigned integer in [0, 255]" self._return_switch = value @property def loiter_switch(self): """Message field 'loiter_switch'.""" return self._loiter_switch @loiter_switch.setter def loiter_switch(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'loiter_switch' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'loiter_switch' field must be an unsigned integer in [0, 255]" self._loiter_switch = value @property def offboard_switch(self): """Message field 'offboard_switch'.""" return self._offboard_switch @offboard_switch.setter def offboard_switch(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'offboard_switch' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'offboard_switch' field must be an unsigned integer in [0, 255]" self._offboard_switch = value @property def kill_switch(self): """Message field 'kill_switch'.""" return self._kill_switch @kill_switch.setter def kill_switch(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'kill_switch' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'kill_switch' field must be an unsigned integer in [0, 255]" self._kill_switch = value @property def gear_switch(self): """Message field 'gear_switch'.""" return self._gear_switch @gear_switch.setter def gear_switch(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'gear_switch' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'gear_switch' field must be an unsigned integer in [0, 255]" self._gear_switch = value @property def transition_switch(self): """Message field 'transition_switch'.""" return self._transition_switch @transition_switch.setter def transition_switch(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'transition_switch' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'transition_switch' field must be an unsigned integer in [0, 255]" self._transition_switch = value @property def mode_switch(self): """Message field 'mode_switch'.""" return self._mode_switch @mode_switch.setter def mode_switch(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'mode_switch' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'mode_switch' field must be an unsigned integer in [0, 255]" self._mode_switch = value @property def man_switch(self): """Message field 'man_switch'.""" return self._man_switch @man_switch.setter def man_switch(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'man_switch' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'man_switch' field must be an unsigned integer in [0, 255]" self._man_switch = value @property def acro_switch(self): """Message field 'acro_switch'.""" return self._acro_switch @acro_switch.setter def acro_switch(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'acro_switch' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'acro_switch' field must be an unsigned integer in [0, 255]" self._acro_switch = value @property def stab_switch(self): """Message field 'stab_switch'.""" return self._stab_switch @stab_switch.setter def stab_switch(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'stab_switch' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'stab_switch' field must be an unsigned integer in [0, 255]" self._stab_switch = value @property def posctl_switch(self): """Message field 'posctl_switch'.""" return self._posctl_switch @posctl_switch.setter def posctl_switch(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'posctl_switch' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'posctl_switch' field must be an unsigned integer in [0, 255]" self._posctl_switch = value @property def switch_changes(self): """Message field 'switch_changes'.""" return self._switch_changes @switch_changes.setter def switch_changes(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'switch_changes' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'switch_changes' field must be an unsigned integer in [0, 4294967295]" self._switch_changes = value <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_manual_control_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/GimbalManagerSetManualControl.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/gimbal_manager_set_manual_control__struct.h" #include "px4_msgs/msg/gimbal_manager_set_manual_control__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__gimbal_manager_set_manual_control__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[78]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._gimbal_manager_set_manual_control.GimbalManagerSetManualControl", full_classname_dest, 77) == 0); } px4_msgs__msg__GimbalManagerSetManualControl * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // origin_sysid PyObject * field = PyObject_GetAttrString(_pymsg, "origin_sysid"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->origin_sysid = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // origin_compid PyObject * field = PyObject_GetAttrString(_pymsg, "origin_compid"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->origin_compid = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // target_system PyObject * field = PyObject_GetAttrString(_pymsg, "target_system"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->target_system = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // target_component PyObject * field = PyObject_GetAttrString(_pymsg, "target_component"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->target_component = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // flags PyObject * field = PyObject_GetAttrString(_pymsg, "flags"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->flags = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // gimbal_device_id PyObject * field = PyObject_GetAttrString(_pymsg, "gimbal_device_id"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->gimbal_device_id = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // pitch PyObject * field = PyObject_GetAttrString(_pymsg, "pitch"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->pitch = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // yaw PyObject * field = PyObject_GetAttrString(_pymsg, "yaw"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->yaw = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // pitch_rate PyObject * field = PyObject_GetAttrString(_pymsg, "pitch_rate"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->pitch_rate = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // yaw_rate PyObject * field = PyObject_GetAttrString(_pymsg, "yaw_rate"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->yaw_rate = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__gimbal_manager_set_manual_control__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of GimbalManagerSetManualControl */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._gimbal_manager_set_manual_control"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "GimbalManagerSetManualControl"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__GimbalManagerSetManualControl * ros_message = (px4_msgs__msg__GimbalManagerSetManualControl *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // origin_sysid PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->origin_sysid); { int rc = PyObject_SetAttrString(_pymessage, "origin_sysid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // origin_compid PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->origin_compid); { int rc = PyObject_SetAttrString(_pymessage, "origin_compid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // target_system PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->target_system); { int rc = PyObject_SetAttrString(_pymessage, "target_system", field); Py_DECREF(field); if (rc) { return NULL; } } } { // target_component PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->target_component); { int rc = PyObject_SetAttrString(_pymessage, "target_component", field); Py_DECREF(field); if (rc) { return NULL; } } } { // flags PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->flags); { int rc = PyObject_SetAttrString(_pymessage, "flags", field); Py_DECREF(field); if (rc) { return NULL; } } } { // gimbal_device_id PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->gimbal_device_id); { int rc = PyObject_SetAttrString(_pymessage, "gimbal_device_id", field); Py_DECREF(field); if (rc) { return NULL; } } } { // pitch PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->pitch); { int rc = PyObject_SetAttrString(_pymessage, "pitch", field); Py_DECREF(field); if (rc) { return NULL; } } } { // yaw PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->yaw); { int rc = PyObject_SetAttrString(_pymessage, "yaw", field); Py_DECREF(field); if (rc) { return NULL; } } } { // pitch_rate PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->pitch_rate); { int rc = PyObject_SetAttrString(_pymessage, "pitch_rate", field); Py_DECREF(field); if (rc) { return NULL; } } } { // yaw_rate PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->yaw_rate); { int rc = PyObject_SetAttrString(_pymessage, "yaw_rate", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/uavcan_parameter_request__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/UavcanParameterRequest.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/uavcan_parameter_request__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__UavcanParameterRequest__init(px4_msgs__msg__UavcanParameterRequest * msg) { if (!msg) { return false; } // timestamp // message_type // node_id // param_id // param_index // param_type // int_value // real_value return true; } void px4_msgs__msg__UavcanParameterRequest__fini(px4_msgs__msg__UavcanParameterRequest * msg) { if (!msg) { return; } // timestamp // message_type // node_id // param_id // param_index // param_type // int_value // real_value } px4_msgs__msg__UavcanParameterRequest * px4_msgs__msg__UavcanParameterRequest__create() { px4_msgs__msg__UavcanParameterRequest * msg = (px4_msgs__msg__UavcanParameterRequest *)malloc(sizeof(px4_msgs__msg__UavcanParameterRequest)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__UavcanParameterRequest)); bool success = px4_msgs__msg__UavcanParameterRequest__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__UavcanParameterRequest__destroy(px4_msgs__msg__UavcanParameterRequest * msg) { if (msg) { px4_msgs__msg__UavcanParameterRequest__fini(msg); } free(msg); } bool px4_msgs__msg__UavcanParameterRequest__Sequence__init(px4_msgs__msg__UavcanParameterRequest__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__UavcanParameterRequest * data = NULL; if (size) { data = (px4_msgs__msg__UavcanParameterRequest *)calloc(size, sizeof(px4_msgs__msg__UavcanParameterRequest)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__UavcanParameterRequest__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__UavcanParameterRequest__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__UavcanParameterRequest__Sequence__fini(px4_msgs__msg__UavcanParameterRequest__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__UavcanParameterRequest__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__UavcanParameterRequest__Sequence * px4_msgs__msg__UavcanParameterRequest__Sequence__create(size_t size) { px4_msgs__msg__UavcanParameterRequest__Sequence * array = (px4_msgs__msg__UavcanParameterRequest__Sequence *)malloc(sizeof(px4_msgs__msg__UavcanParameterRequest__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__UavcanParameterRequest__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__UavcanParameterRequest__Sequence__destroy(px4_msgs__msg__UavcanParameterRequest__Sequence * array) { if (array) { px4_msgs__msg__UavcanParameterRequest__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/differential_pressure__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/DifferentialPressure.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__DIFFERENTIAL_PRESSURE__STRUCT_H_ #define PX4_MSGS__MSG__DIFFERENTIAL_PRESSURE__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/DifferentialPressure in the package px4_msgs. typedef struct px4_msgs__msg__DifferentialPressure { uint64_t timestamp; uint64_t error_count; float differential_pressure_raw_pa; float differential_pressure_filtered_pa; float temperature; uint32_t device_id; } px4_msgs__msg__DifferentialPressure; // Struct for a sequence of px4_msgs__msg__DifferentialPressure. typedef struct px4_msgs__msg__DifferentialPressure__Sequence { px4_msgs__msg__DifferentialPressure * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__DifferentialPressure__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__DIFFERENTIAL_PRESSURE__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_rates_setpoint__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleRatesSetpoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_RATES_SETPOINT__STRUCT_H_ #define PX4_MSGS__MSG__VEHICLE_RATES_SETPOINT__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/VehicleRatesSetpoint in the package px4_msgs. typedef struct px4_msgs__msg__VehicleRatesSetpoint { uint64_t timestamp; float roll; float pitch; float yaw; float thrust_body[3]; } px4_msgs__msg__VehicleRatesSetpoint; // Struct for a sequence of px4_msgs__msg__VehicleRatesSetpoint. typedef struct px4_msgs__msg__VehicleRatesSetpoint__Sequence { px4_msgs__msg__VehicleRatesSetpoint * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__VehicleRatesSetpoint__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_RATES_SETPOINT__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/rate_ctrl_status__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/RateCtrlStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__RATE_CTRL_STATUS__STRUCT_H_ #define PX4_MSGS__MSG__RATE_CTRL_STATUS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/RateCtrlStatus in the package px4_msgs. typedef struct px4_msgs__msg__RateCtrlStatus { uint64_t timestamp; float rollspeed_integ; float pitchspeed_integ; float yawspeed_integ; float additional_integ1; } px4_msgs__msg__RateCtrlStatus; // Struct for a sequence of px4_msgs__msg__RateCtrlStatus. typedef struct px4_msgs__msg__RateCtrlStatus__Sequence { px4_msgs__msg__RateCtrlStatus * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__RateCtrlStatus__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__RATE_CTRL_STATUS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/camera_trigger.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/CameraTrigger.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__CAMERA_TRIGGER_H_ #define PX4_MSGS__MSG__CAMERA_TRIGGER_H_ #include "px4_msgs/msg/camera_trigger__struct.h" #include "px4_msgs/msg/camera_trigger__functions.h" #include "px4_msgs/msg/camera_trigger__type_support.h" #endif // PX4_MSGS__MSG__CAMERA_TRIGGER_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_status__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/EstimatorStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_STATUS__STRUCT_H_ #define PX4_MSGS__MSG__ESTIMATOR_STATUS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'GPS_CHECK_FAIL_GPS_FIX'. enum { px4_msgs__msg__EstimatorStatus__GPS_CHECK_FAIL_GPS_FIX = 0 }; /// Constant 'GPS_CHECK_FAIL_MIN_SAT_COUNT'. enum { px4_msgs__msg__EstimatorStatus__GPS_CHECK_FAIL_MIN_SAT_COUNT = 1 }; /// Constant 'GPS_CHECK_FAIL_MAX_PDOP'. enum { px4_msgs__msg__EstimatorStatus__GPS_CHECK_FAIL_MAX_PDOP = 2 }; /// Constant 'GPS_CHECK_FAIL_MAX_HORZ_ERR'. enum { px4_msgs__msg__EstimatorStatus__GPS_CHECK_FAIL_MAX_HORZ_ERR = 3 }; /// Constant 'GPS_CHECK_FAIL_MAX_VERT_ERR'. enum { px4_msgs__msg__EstimatorStatus__GPS_CHECK_FAIL_MAX_VERT_ERR = 4 }; /// Constant 'GPS_CHECK_FAIL_MAX_SPD_ERR'. enum { px4_msgs__msg__EstimatorStatus__GPS_CHECK_FAIL_MAX_SPD_ERR = 5 }; /// Constant 'GPS_CHECK_FAIL_MAX_HORZ_DRIFT'. enum { px4_msgs__msg__EstimatorStatus__GPS_CHECK_FAIL_MAX_HORZ_DRIFT = 6 }; /// Constant 'GPS_CHECK_FAIL_MAX_VERT_DRIFT'. enum { px4_msgs__msg__EstimatorStatus__GPS_CHECK_FAIL_MAX_VERT_DRIFT = 7 }; /// Constant 'GPS_CHECK_FAIL_MAX_HORZ_SPD_ERR'. enum { px4_msgs__msg__EstimatorStatus__GPS_CHECK_FAIL_MAX_HORZ_SPD_ERR = 8 }; /// Constant 'GPS_CHECK_FAIL_MAX_VERT_SPD_ERR'. enum { px4_msgs__msg__EstimatorStatus__GPS_CHECK_FAIL_MAX_VERT_SPD_ERR = 9 }; /// Constant 'CS_TILT_ALIGN'. enum { px4_msgs__msg__EstimatorStatus__CS_TILT_ALIGN = 0 }; /// Constant 'CS_YAW_ALIGN'. enum { px4_msgs__msg__EstimatorStatus__CS_YAW_ALIGN = 1 }; /// Constant 'CS_GPS'. enum { px4_msgs__msg__EstimatorStatus__CS_GPS = 2 }; /// Constant 'CS_OPT_FLOW'. enum { px4_msgs__msg__EstimatorStatus__CS_OPT_FLOW = 3 }; /// Constant 'CS_MAG_HDG'. enum { px4_msgs__msg__EstimatorStatus__CS_MAG_HDG = 4 }; /// Constant 'CS_MAG_3D'. enum { px4_msgs__msg__EstimatorStatus__CS_MAG_3D = 5 }; /// Constant 'CS_MAG_DEC'. enum { px4_msgs__msg__EstimatorStatus__CS_MAG_DEC = 6 }; /// Constant 'CS_IN_AIR'. enum { px4_msgs__msg__EstimatorStatus__CS_IN_AIR = 7 }; /// Constant 'CS_WIND'. enum { px4_msgs__msg__EstimatorStatus__CS_WIND = 8 }; /// Constant 'CS_BARO_HGT'. enum { px4_msgs__msg__EstimatorStatus__CS_BARO_HGT = 9 }; /// Constant 'CS_RNG_HGT'. enum { px4_msgs__msg__EstimatorStatus__CS_RNG_HGT = 10 }; /// Constant 'CS_GPS_HGT'. enum { px4_msgs__msg__EstimatorStatus__CS_GPS_HGT = 11 }; /// Constant 'CS_EV_POS'. enum { px4_msgs__msg__EstimatorStatus__CS_EV_POS = 12 }; /// Constant 'CS_EV_YAW'. enum { px4_msgs__msg__EstimatorStatus__CS_EV_YAW = 13 }; /// Constant 'CS_EV_HGT'. enum { px4_msgs__msg__EstimatorStatus__CS_EV_HGT = 14 }; /// Constant 'CS_BETA'. enum { px4_msgs__msg__EstimatorStatus__CS_BETA = 15 }; /// Constant 'CS_MAG_FIELD'. enum { px4_msgs__msg__EstimatorStatus__CS_MAG_FIELD = 16 }; /// Constant 'CS_FIXED_WING'. enum { px4_msgs__msg__EstimatorStatus__CS_FIXED_WING = 17 }; /// Constant 'CS_MAG_FAULT'. enum { px4_msgs__msg__EstimatorStatus__CS_MAG_FAULT = 18 }; /// Constant 'CS_ASPD'. enum { px4_msgs__msg__EstimatorStatus__CS_ASPD = 19 }; /// Constant 'CS_GND_EFFECT'. enum { px4_msgs__msg__EstimatorStatus__CS_GND_EFFECT = 20 }; /// Constant 'CS_RNG_STUCK'. enum { px4_msgs__msg__EstimatorStatus__CS_RNG_STUCK = 21 }; /// Constant 'CS_GPS_YAW'. enum { px4_msgs__msg__EstimatorStatus__CS_GPS_YAW = 22 }; /// Constant 'CS_MAG_ALIGNED'. enum { px4_msgs__msg__EstimatorStatus__CS_MAG_ALIGNED = 23 }; // Struct defined in msg/EstimatorStatus in the package px4_msgs. typedef struct px4_msgs__msg__EstimatorStatus { uint64_t timestamp; uint64_t timestamp_sample; float vibe[3]; float output_tracking_error[3]; uint16_t gps_check_fail_flags; uint32_t control_mode_flags; uint32_t filter_fault_flags; float pos_horiz_accuracy; float pos_vert_accuracy; uint16_t innovation_check_flags; float mag_test_ratio; float vel_test_ratio; float pos_test_ratio; float hgt_test_ratio; float tas_test_ratio; float hagl_test_ratio; float beta_test_ratio; uint16_t solution_status_flags; uint8_t reset_count_vel_ne; uint8_t reset_count_vel_d; uint8_t reset_count_pos_ne; uint8_t reset_count_pod_d; uint8_t reset_count_quat; float time_slip; bool pre_flt_fail_innov_heading; bool pre_flt_fail_innov_vel_horiz; bool pre_flt_fail_innov_vel_vert; bool pre_flt_fail_innov_height; bool pre_flt_fail_mag_field_disturbed; uint32_t accel_device_id; uint32_t gyro_device_id; uint32_t baro_device_id; uint32_t mag_device_id; uint8_t health_flags; uint8_t timeout_flags; } px4_msgs__msg__EstimatorStatus; // Struct for a sequence of px4_msgs__msg__EstimatorStatus. typedef struct px4_msgs__msg__EstimatorStatus__Sequence { px4_msgs__msg__EstimatorStatus * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__EstimatorStatus__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ESTIMATOR_STATUS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovations__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/EstimatorInnovations.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/estimator_innovations__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void EstimatorInnovations_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::EstimatorInnovations(_init); } void EstimatorInnovations_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::EstimatorInnovations *>(message_memory); typed_message->~EstimatorInnovations(); } size_t size_function__EstimatorInnovations__gps_hvel(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__EstimatorInnovations__gps_hvel(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__EstimatorInnovations__gps_hvel(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorInnovations__gps_hpos(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__EstimatorInnovations__gps_hpos(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__EstimatorInnovations__gps_hpos(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorInnovations__ev_hvel(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__EstimatorInnovations__ev_hvel(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__EstimatorInnovations__ev_hvel(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorInnovations__ev_hpos(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__EstimatorInnovations__ev_hpos(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__EstimatorInnovations__ev_hpos(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorInnovations__aux_hvel(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__EstimatorInnovations__aux_hvel(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__EstimatorInnovations__aux_hvel(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorInnovations__flow(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__EstimatorInnovations__flow(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__EstimatorInnovations__flow(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorInnovations__mag_field(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__EstimatorInnovations__mag_field(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__EstimatorInnovations__mag_field(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorInnovations__drag(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__EstimatorInnovations__drag(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__EstimatorInnovations__drag(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember EstimatorInnovations_message_member_array[21] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovations, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovations, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "gps_hvel", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovations, gps_hvel), // bytes offset in struct nullptr, // default value size_function__EstimatorInnovations__gps_hvel, // size() function pointer get_const_function__EstimatorInnovations__gps_hvel, // get_const(index) function pointer get_function__EstimatorInnovations__gps_hvel, // get(index) function pointer nullptr // resize(index) function pointer }, { "gps_vvel", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovations, gps_vvel), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "gps_hpos", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovations, gps_hpos), // bytes offset in struct nullptr, // default value size_function__EstimatorInnovations__gps_hpos, // size() function pointer get_const_function__EstimatorInnovations__gps_hpos, // get_const(index) function pointer get_function__EstimatorInnovations__gps_hpos, // get(index) function pointer nullptr // resize(index) function pointer }, { "gps_vpos", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovations, gps_vpos), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ev_hvel", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovations, ev_hvel), // bytes offset in struct nullptr, // default value size_function__EstimatorInnovations__ev_hvel, // size() function pointer get_const_function__EstimatorInnovations__ev_hvel, // get_const(index) function pointer get_function__EstimatorInnovations__ev_hvel, // get(index) function pointer nullptr // resize(index) function pointer }, { "ev_vvel", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovations, ev_vvel), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ev_hpos", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovations, ev_hpos), // bytes offset in struct nullptr, // default value size_function__EstimatorInnovations__ev_hpos, // size() function pointer get_const_function__EstimatorInnovations__ev_hpos, // get_const(index) function pointer get_function__EstimatorInnovations__ev_hpos, // get(index) function pointer nullptr // resize(index) function pointer }, { "ev_vpos", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovations, ev_vpos), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rng_vpos", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovations, rng_vpos), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "baro_vpos", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovations, baro_vpos), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "aux_hvel", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovations, aux_hvel), // bytes offset in struct nullptr, // default value size_function__EstimatorInnovations__aux_hvel, // size() function pointer get_const_function__EstimatorInnovations__aux_hvel, // get_const(index) function pointer get_function__EstimatorInnovations__aux_hvel, // get(index) function pointer nullptr // resize(index) function pointer }, { "aux_vvel", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovations, aux_vvel), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "flow", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovations, flow), // bytes offset in struct nullptr, // default value size_function__EstimatorInnovations__flow, // size() function pointer get_const_function__EstimatorInnovations__flow, // get_const(index) function pointer get_function__EstimatorInnovations__flow, // get(index) function pointer nullptr // resize(index) function pointer }, { "heading", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovations, heading), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "mag_field", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovations, mag_field), // bytes offset in struct nullptr, // default value size_function__EstimatorInnovations__mag_field, // size() function pointer get_const_function__EstimatorInnovations__mag_field, // get_const(index) function pointer get_function__EstimatorInnovations__mag_field, // get(index) function pointer nullptr // resize(index) function pointer }, { "drag", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovations, drag), // bytes offset in struct nullptr, // default value size_function__EstimatorInnovations__drag, // size() function pointer get_const_function__EstimatorInnovations__drag, // get_const(index) function pointer get_function__EstimatorInnovations__drag, // get(index) function pointer nullptr // resize(index) function pointer }, { "airspeed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovations, airspeed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "beta", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovations, beta), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "hagl", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovations, hagl), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers EstimatorInnovations_message_members = { "px4_msgs::msg", // message namespace "EstimatorInnovations", // message name 21, // number of fields sizeof(px4_msgs::msg::EstimatorInnovations), EstimatorInnovations_message_member_array, // message members EstimatorInnovations_init_function, // function to initialize message memory (memory has to be allocated) EstimatorInnovations_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t EstimatorInnovations_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &EstimatorInnovations_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::EstimatorInnovations>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EstimatorInnovations_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, EstimatorInnovations)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EstimatorInnovations_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_magnetometer.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_MAGNETOMETER_HPP_ #define PX4_MSGS__MSG__VEHICLE_MAGNETOMETER_HPP_ #include "px4_msgs/msg/vehicle_magnetometer__struct.hpp" #include "px4_msgs/msg/vehicle_magnetometer__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_MAGNETOMETER_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/home_position__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/HomePosition.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/home_position__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__HomePosition__init(px4_msgs__msg__HomePosition * msg) { if (!msg) { return false; } // timestamp // lat // lon // alt // x // y // z // yaw // valid_alt // valid_hpos // valid_lpos // manual_home return true; } void px4_msgs__msg__HomePosition__fini(px4_msgs__msg__HomePosition * msg) { if (!msg) { return; } // timestamp // lat // lon // alt // x // y // z // yaw // valid_alt // valid_hpos // valid_lpos // manual_home } px4_msgs__msg__HomePosition * px4_msgs__msg__HomePosition__create() { px4_msgs__msg__HomePosition * msg = (px4_msgs__msg__HomePosition *)malloc(sizeof(px4_msgs__msg__HomePosition)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__HomePosition)); bool success = px4_msgs__msg__HomePosition__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__HomePosition__destroy(px4_msgs__msg__HomePosition * msg) { if (msg) { px4_msgs__msg__HomePosition__fini(msg); } free(msg); } bool px4_msgs__msg__HomePosition__Sequence__init(px4_msgs__msg__HomePosition__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__HomePosition * data = NULL; if (size) { data = (px4_msgs__msg__HomePosition *)calloc(size, sizeof(px4_msgs__msg__HomePosition)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__HomePosition__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__HomePosition__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__HomePosition__Sequence__fini(px4_msgs__msg__HomePosition__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__HomePosition__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__HomePosition__Sequence * px4_msgs__msg__HomePosition__Sequence__create(size_t size) { px4_msgs__msg__HomePosition__Sequence * array = (px4_msgs__msg__HomePosition__Sequence *)malloc(sizeof(px4_msgs__msg__HomePosition__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__HomePosition__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__HomePosition__Sequence__destroy(px4_msgs__msg__HomePosition__Sequence * array) { if (array) { px4_msgs__msg__HomePosition__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/commander_state__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/CommanderState.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__COMMANDER_STATE__FUNCTIONS_H_ #define PX4_MSGS__MSG__COMMANDER_STATE__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/commander_state__struct.h" /// Initialize msg/CommanderState message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__CommanderState * )) before or use * px4_msgs__msg__CommanderState__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__CommanderState__init(px4_msgs__msg__CommanderState * msg); /// Finalize msg/CommanderState message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__CommanderState__fini(px4_msgs__msg__CommanderState * msg); /// Create msg/CommanderState message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__CommanderState__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__CommanderState * px4_msgs__msg__CommanderState__create(); /// Destroy msg/CommanderState message. /** * It calls * px4_msgs__msg__CommanderState__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__CommanderState__destroy(px4_msgs__msg__CommanderState * msg); /// Initialize array of msg/CommanderState messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__CommanderState__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__CommanderState__Sequence__init(px4_msgs__msg__CommanderState__Sequence * array, size_t size); /// Finalize array of msg/CommanderState messages. /** * It calls * px4_msgs__msg__CommanderState__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__CommanderState__Sequence__fini(px4_msgs__msg__CommanderState__Sequence * array); /// Create array of msg/CommanderState messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__CommanderState__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__CommanderState__Sequence * px4_msgs__msg__CommanderState__Sequence__create(size_t size); /// Destroy array of msg/CommanderState messages. /** * It calls * px4_msgs__msg__CommanderState__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__CommanderState__Sequence__destroy(px4_msgs__msg__CommanderState__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__COMMANDER_STATE__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/px4_io_status__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/Px4IoStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/px4_io_status__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/px4_io_status__struct.h" #include "px4_msgs/msg/px4_io_status__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _Px4IoStatus__ros_msg_type = px4_msgs__msg__Px4IoStatus; static bool _Px4IoStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _Px4IoStatus__ros_msg_type * ros_message = static_cast<const _Px4IoStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: free_memory_bytes { cdr << ros_message->free_memory_bytes; } // Field name: voltage_v { cdr << ros_message->voltage_v; } // Field name: rssi_v { cdr << ros_message->rssi_v; } // Field name: status_outputs_armed { cdr << (ros_message->status_outputs_armed ? true : false); } // Field name: status_override { cdr << (ros_message->status_override ? true : false); } // Field name: status_rc_ok { cdr << (ros_message->status_rc_ok ? true : false); } // Field name: status_rc_ppm { cdr << (ros_message->status_rc_ppm ? true : false); } // Field name: status_rc_dsm { cdr << (ros_message->status_rc_dsm ? true : false); } // Field name: status_rc_sbus { cdr << (ros_message->status_rc_sbus ? true : false); } // Field name: status_fmu_ok { cdr << (ros_message->status_fmu_ok ? true : false); } // Field name: status_raw_pwm { cdr << (ros_message->status_raw_pwm ? true : false); } // Field name: status_mixer_ok { cdr << (ros_message->status_mixer_ok ? true : false); } // Field name: status_arm_sync { cdr << (ros_message->status_arm_sync ? true : false); } // Field name: status_init_ok { cdr << (ros_message->status_init_ok ? true : false); } // Field name: status_failsafe { cdr << (ros_message->status_failsafe ? true : false); } // Field name: status_safety_off { cdr << (ros_message->status_safety_off ? true : false); } // Field name: status_fmu_initialized { cdr << (ros_message->status_fmu_initialized ? true : false); } // Field name: status_rc_st24 { cdr << (ros_message->status_rc_st24 ? true : false); } // Field name: status_rc_sumd { cdr << (ros_message->status_rc_sumd ? true : false); } // Field name: alarm_vbatt_low { cdr << (ros_message->alarm_vbatt_low ? true : false); } // Field name: alarm_temperature { cdr << (ros_message->alarm_temperature ? true : false); } // Field name: alarm_servo_current { cdr << (ros_message->alarm_servo_current ? true : false); } // Field name: alarm_acc_current { cdr << (ros_message->alarm_acc_current ? true : false); } // Field name: alarm_fmu_lost { cdr << (ros_message->alarm_fmu_lost ? true : false); } // Field name: alarm_rc_lost { cdr << (ros_message->alarm_rc_lost ? true : false); } // Field name: alarm_pwm_error { cdr << (ros_message->alarm_pwm_error ? true : false); } // Field name: alarm_vservo_fault { cdr << (ros_message->alarm_vservo_fault ? true : false); } // Field name: arming_io_arm_ok { cdr << (ros_message->arming_io_arm_ok ? true : false); } // Field name: arming_fmu_armed { cdr << (ros_message->arming_fmu_armed ? true : false); } // Field name: arming_fmu_prearmed { cdr << (ros_message->arming_fmu_prearmed ? true : false); } // Field name: arming_manual_override_ok { cdr << (ros_message->arming_manual_override_ok ? true : false); } // Field name: arming_failsafe_custom { cdr << (ros_message->arming_failsafe_custom ? true : false); } // Field name: arming_inair_restart_ok { cdr << (ros_message->arming_inair_restart_ok ? true : false); } // Field name: arming_always_pwm_enable { cdr << (ros_message->arming_always_pwm_enable ? true : false); } // Field name: arming_rc_handling_disabled { cdr << (ros_message->arming_rc_handling_disabled ? true : false); } // Field name: arming_lockdown { cdr << (ros_message->arming_lockdown ? true : false); } // Field name: arming_force_failsafe { cdr << (ros_message->arming_force_failsafe ? true : false); } // Field name: arming_termination_failsafe { cdr << (ros_message->arming_termination_failsafe ? true : false); } // Field name: arming_override_immediate { cdr << (ros_message->arming_override_immediate ? true : false); } // Field name: actuators { size_t size = 8; auto array_ptr = ros_message->actuators; cdr.serializeArray(array_ptr, size); } // Field name: servos { size_t size = 8; auto array_ptr = ros_message->servos; cdr.serializeArray(array_ptr, size); } // Field name: raw_inputs { size_t size = 18; auto array_ptr = ros_message->raw_inputs; cdr.serializeArray(array_ptr, size); } return true; } static bool _Px4IoStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _Px4IoStatus__ros_msg_type * ros_message = static_cast<_Px4IoStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: free_memory_bytes { cdr >> ros_message->free_memory_bytes; } // Field name: voltage_v { cdr >> ros_message->voltage_v; } // Field name: rssi_v { cdr >> ros_message->rssi_v; } // Field name: status_outputs_armed { uint8_t tmp; cdr >> tmp; ros_message->status_outputs_armed = tmp ? true : false; } // Field name: status_override { uint8_t tmp; cdr >> tmp; ros_message->status_override = tmp ? true : false; } // Field name: status_rc_ok { uint8_t tmp; cdr >> tmp; ros_message->status_rc_ok = tmp ? true : false; } // Field name: status_rc_ppm { uint8_t tmp; cdr >> tmp; ros_message->status_rc_ppm = tmp ? true : false; } // Field name: status_rc_dsm { uint8_t tmp; cdr >> tmp; ros_message->status_rc_dsm = tmp ? true : false; } // Field name: status_rc_sbus { uint8_t tmp; cdr >> tmp; ros_message->status_rc_sbus = tmp ? true : false; } // Field name: status_fmu_ok { uint8_t tmp; cdr >> tmp; ros_message->status_fmu_ok = tmp ? true : false; } // Field name: status_raw_pwm { uint8_t tmp; cdr >> tmp; ros_message->status_raw_pwm = tmp ? true : false; } // Field name: status_mixer_ok { uint8_t tmp; cdr >> tmp; ros_message->status_mixer_ok = tmp ? true : false; } // Field name: status_arm_sync { uint8_t tmp; cdr >> tmp; ros_message->status_arm_sync = tmp ? true : false; } // Field name: status_init_ok { uint8_t tmp; cdr >> tmp; ros_message->status_init_ok = tmp ? true : false; } // Field name: status_failsafe { uint8_t tmp; cdr >> tmp; ros_message->status_failsafe = tmp ? true : false; } // Field name: status_safety_off { uint8_t tmp; cdr >> tmp; ros_message->status_safety_off = tmp ? true : false; } // Field name: status_fmu_initialized { uint8_t tmp; cdr >> tmp; ros_message->status_fmu_initialized = tmp ? true : false; } // Field name: status_rc_st24 { uint8_t tmp; cdr >> tmp; ros_message->status_rc_st24 = tmp ? true : false; } // Field name: status_rc_sumd { uint8_t tmp; cdr >> tmp; ros_message->status_rc_sumd = tmp ? true : false; } // Field name: alarm_vbatt_low { uint8_t tmp; cdr >> tmp; ros_message->alarm_vbatt_low = tmp ? true : false; } // Field name: alarm_temperature { uint8_t tmp; cdr >> tmp; ros_message->alarm_temperature = tmp ? true : false; } // Field name: alarm_servo_current { uint8_t tmp; cdr >> tmp; ros_message->alarm_servo_current = tmp ? true : false; } // Field name: alarm_acc_current { uint8_t tmp; cdr >> tmp; ros_message->alarm_acc_current = tmp ? true : false; } // Field name: alarm_fmu_lost { uint8_t tmp; cdr >> tmp; ros_message->alarm_fmu_lost = tmp ? true : false; } // Field name: alarm_rc_lost { uint8_t tmp; cdr >> tmp; ros_message->alarm_rc_lost = tmp ? true : false; } // Field name: alarm_pwm_error { uint8_t tmp; cdr >> tmp; ros_message->alarm_pwm_error = tmp ? true : false; } // Field name: alarm_vservo_fault { uint8_t tmp; cdr >> tmp; ros_message->alarm_vservo_fault = tmp ? true : false; } // Field name: arming_io_arm_ok { uint8_t tmp; cdr >> tmp; ros_message->arming_io_arm_ok = tmp ? true : false; } // Field name: arming_fmu_armed { uint8_t tmp; cdr >> tmp; ros_message->arming_fmu_armed = tmp ? true : false; } // Field name: arming_fmu_prearmed { uint8_t tmp; cdr >> tmp; ros_message->arming_fmu_prearmed = tmp ? true : false; } // Field name: arming_manual_override_ok { uint8_t tmp; cdr >> tmp; ros_message->arming_manual_override_ok = tmp ? true : false; } // Field name: arming_failsafe_custom { uint8_t tmp; cdr >> tmp; ros_message->arming_failsafe_custom = tmp ? true : false; } // Field name: arming_inair_restart_ok { uint8_t tmp; cdr >> tmp; ros_message->arming_inair_restart_ok = tmp ? true : false; } // Field name: arming_always_pwm_enable { uint8_t tmp; cdr >> tmp; ros_message->arming_always_pwm_enable = tmp ? true : false; } // Field name: arming_rc_handling_disabled { uint8_t tmp; cdr >> tmp; ros_message->arming_rc_handling_disabled = tmp ? true : false; } // Field name: arming_lockdown { uint8_t tmp; cdr >> tmp; ros_message->arming_lockdown = tmp ? true : false; } // Field name: arming_force_failsafe { uint8_t tmp; cdr >> tmp; ros_message->arming_force_failsafe = tmp ? true : false; } // Field name: arming_termination_failsafe { uint8_t tmp; cdr >> tmp; ros_message->arming_termination_failsafe = tmp ? true : false; } // Field name: arming_override_immediate { uint8_t tmp; cdr >> tmp; ros_message->arming_override_immediate = tmp ? true : false; } // Field name: actuators { size_t size = 8; auto array_ptr = ros_message->actuators; cdr.deserializeArray(array_ptr, size); } // Field name: servos { size_t size = 8; auto array_ptr = ros_message->servos; cdr.deserializeArray(array_ptr, size); } // Field name: raw_inputs { size_t size = 18; auto array_ptr = ros_message->raw_inputs; cdr.deserializeArray(array_ptr, size); } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__Px4IoStatus( const void * untyped_ros_message, size_t current_alignment) { const _Px4IoStatus__ros_msg_type * ros_message = static_cast<const _Px4IoStatus__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name free_memory_bytes { size_t item_size = sizeof(ros_message->free_memory_bytes); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name voltage_v { size_t item_size = sizeof(ros_message->voltage_v); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rssi_v { size_t item_size = sizeof(ros_message->rssi_v); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name status_outputs_armed { size_t item_size = sizeof(ros_message->status_outputs_armed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name status_override { size_t item_size = sizeof(ros_message->status_override); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name status_rc_ok { size_t item_size = sizeof(ros_message->status_rc_ok); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name status_rc_ppm { size_t item_size = sizeof(ros_message->status_rc_ppm); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name status_rc_dsm { size_t item_size = sizeof(ros_message->status_rc_dsm); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name status_rc_sbus { size_t item_size = sizeof(ros_message->status_rc_sbus); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name status_fmu_ok { size_t item_size = sizeof(ros_message->status_fmu_ok); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name status_raw_pwm { size_t item_size = sizeof(ros_message->status_raw_pwm); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name status_mixer_ok { size_t item_size = sizeof(ros_message->status_mixer_ok); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name status_arm_sync { size_t item_size = sizeof(ros_message->status_arm_sync); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name status_init_ok { size_t item_size = sizeof(ros_message->status_init_ok); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name status_failsafe { size_t item_size = sizeof(ros_message->status_failsafe); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name status_safety_off { size_t item_size = sizeof(ros_message->status_safety_off); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name status_fmu_initialized { size_t item_size = sizeof(ros_message->status_fmu_initialized); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name status_rc_st24 { size_t item_size = sizeof(ros_message->status_rc_st24); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name status_rc_sumd { size_t item_size = sizeof(ros_message->status_rc_sumd); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name alarm_vbatt_low { size_t item_size = sizeof(ros_message->alarm_vbatt_low); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name alarm_temperature { size_t item_size = sizeof(ros_message->alarm_temperature); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name alarm_servo_current { size_t item_size = sizeof(ros_message->alarm_servo_current); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name alarm_acc_current { size_t item_size = sizeof(ros_message->alarm_acc_current); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name alarm_fmu_lost { size_t item_size = sizeof(ros_message->alarm_fmu_lost); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name alarm_rc_lost { size_t item_size = sizeof(ros_message->alarm_rc_lost); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name alarm_pwm_error { size_t item_size = sizeof(ros_message->alarm_pwm_error); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name alarm_vservo_fault { size_t item_size = sizeof(ros_message->alarm_vservo_fault); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name arming_io_arm_ok { size_t item_size = sizeof(ros_message->arming_io_arm_ok); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name arming_fmu_armed { size_t item_size = sizeof(ros_message->arming_fmu_armed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name arming_fmu_prearmed { size_t item_size = sizeof(ros_message->arming_fmu_prearmed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name arming_manual_override_ok { size_t item_size = sizeof(ros_message->arming_manual_override_ok); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name arming_failsafe_custom { size_t item_size = sizeof(ros_message->arming_failsafe_custom); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name arming_inair_restart_ok { size_t item_size = sizeof(ros_message->arming_inair_restart_ok); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name arming_always_pwm_enable { size_t item_size = sizeof(ros_message->arming_always_pwm_enable); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name arming_rc_handling_disabled { size_t item_size = sizeof(ros_message->arming_rc_handling_disabled); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name arming_lockdown { size_t item_size = sizeof(ros_message->arming_lockdown); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name arming_force_failsafe { size_t item_size = sizeof(ros_message->arming_force_failsafe); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name arming_termination_failsafe { size_t item_size = sizeof(ros_message->arming_termination_failsafe); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name arming_override_immediate { size_t item_size = sizeof(ros_message->arming_override_immediate); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name actuators { size_t array_size = 8; auto array_ptr = ros_message->actuators; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name servos { size_t array_size = 8; auto array_ptr = ros_message->servos; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name raw_inputs { size_t array_size = 18; auto array_ptr = ros_message->raw_inputs; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _Px4IoStatus__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__Px4IoStatus( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__Px4IoStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: free_memory_bytes { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: voltage_v { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: rssi_v { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: status_outputs_armed { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: status_override { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: status_rc_ok { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: status_rc_ppm { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: status_rc_dsm { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: status_rc_sbus { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: status_fmu_ok { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: status_raw_pwm { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: status_mixer_ok { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: status_arm_sync { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: status_init_ok { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: status_failsafe { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: status_safety_off { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: status_fmu_initialized { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: status_rc_st24 { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: status_rc_sumd { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: alarm_vbatt_low { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: alarm_temperature { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: alarm_servo_current { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: alarm_acc_current { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: alarm_fmu_lost { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: alarm_rc_lost { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: alarm_pwm_error { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: alarm_vservo_fault { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: arming_io_arm_ok { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: arming_fmu_armed { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: arming_fmu_prearmed { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: arming_manual_override_ok { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: arming_failsafe_custom { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: arming_inair_restart_ok { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: arming_always_pwm_enable { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: arming_rc_handling_disabled { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: arming_lockdown { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: arming_force_failsafe { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: arming_termination_failsafe { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: arming_override_immediate { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: actuators { size_t array_size = 8; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: servos { size_t array_size = 8; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: raw_inputs { size_t array_size = 18; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } return current_alignment - initial_alignment; } static size_t _Px4IoStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__Px4IoStatus( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_Px4IoStatus = { "px4_msgs::msg", "Px4IoStatus", _Px4IoStatus__cdr_serialize, _Px4IoStatus__cdr_deserialize, _Px4IoStatus__get_serialized_size, _Px4IoStatus__max_serialized_size }; static rosidl_message_type_support_t _Px4IoStatus__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_Px4IoStatus, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, Px4IoStatus)() { return &_Px4IoStatus__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_control_mode__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleControlMode.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/vehicle_control_mode__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void VehicleControlMode_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::VehicleControlMode(_init); } void VehicleControlMode_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::VehicleControlMode *>(message_memory); typed_message->~VehicleControlMode(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember VehicleControlMode_message_member_array[14] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleControlMode, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "flag_armed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleControlMode, flag_armed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "flag_external_manual_override_ok", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleControlMode, flag_external_manual_override_ok), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "flag_control_manual_enabled", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleControlMode, flag_control_manual_enabled), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "flag_control_auto_enabled", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleControlMode, flag_control_auto_enabled), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "flag_control_offboard_enabled", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleControlMode, flag_control_offboard_enabled), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "flag_control_rates_enabled", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleControlMode, flag_control_rates_enabled), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "flag_control_attitude_enabled", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleControlMode, flag_control_attitude_enabled), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "flag_control_acceleration_enabled", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleControlMode, flag_control_acceleration_enabled), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "flag_control_velocity_enabled", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleControlMode, flag_control_velocity_enabled), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "flag_control_position_enabled", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleControlMode, flag_control_position_enabled), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "flag_control_altitude_enabled", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleControlMode, flag_control_altitude_enabled), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "flag_control_climb_rate_enabled", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleControlMode, flag_control_climb_rate_enabled), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "flag_control_termination_enabled", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleControlMode, flag_control_termination_enabled), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers VehicleControlMode_message_members = { "px4_msgs::msg", // message namespace "VehicleControlMode", // message name 14, // number of fields sizeof(px4_msgs::msg::VehicleControlMode), VehicleControlMode_message_member_array, // message members VehicleControlMode_init_function, // function to initialize message memory (memory has to be allocated) VehicleControlMode_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t VehicleControlMode_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &VehicleControlMode_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleControlMode>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleControlMode_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, VehicleControlMode)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleControlMode_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/rate_ctrl_status__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/RateCtrlStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__RATE_CTRL_STATUS__STRUCT_HPP_ #define PX4_MSGS__MSG__RATE_CTRL_STATUS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__RateCtrlStatus __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__RateCtrlStatus __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct RateCtrlStatus_ { using Type = RateCtrlStatus_<ContainerAllocator>; explicit RateCtrlStatus_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->rollspeed_integ = 0.0f; this->pitchspeed_integ = 0.0f; this->yawspeed_integ = 0.0f; this->additional_integ1 = 0.0f; } } explicit RateCtrlStatus_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->rollspeed_integ = 0.0f; this->pitchspeed_integ = 0.0f; this->yawspeed_integ = 0.0f; this->additional_integ1 = 0.0f; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _rollspeed_integ_type = float; _rollspeed_integ_type rollspeed_integ; using _pitchspeed_integ_type = float; _pitchspeed_integ_type pitchspeed_integ; using _yawspeed_integ_type = float; _yawspeed_integ_type yawspeed_integ; using _additional_integ1_type = float; _additional_integ1_type additional_integ1; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__rollspeed_integ( const float & _arg) { this->rollspeed_integ = _arg; return *this; } Type & set__pitchspeed_integ( const float & _arg) { this->pitchspeed_integ = _arg; return *this; } Type & set__yawspeed_integ( const float & _arg) { this->yawspeed_integ = _arg; return *this; } Type & set__additional_integ1( const float & _arg) { this->additional_integ1 = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::RateCtrlStatus_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::RateCtrlStatus_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::RateCtrlStatus_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::RateCtrlStatus_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::RateCtrlStatus_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::RateCtrlStatus_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::RateCtrlStatus_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::RateCtrlStatus_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::RateCtrlStatus_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::RateCtrlStatus_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__RateCtrlStatus std::shared_ptr<px4_msgs::msg::RateCtrlStatus_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__RateCtrlStatus std::shared_ptr<px4_msgs::msg::RateCtrlStatus_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const RateCtrlStatus_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->rollspeed_integ != other.rollspeed_integ) { return false; } if (this->pitchspeed_integ != other.pitchspeed_integ) { return false; } if (this->yawspeed_integ != other.yawspeed_integ) { return false; } if (this->additional_integ1 != other.additional_integ1) { return false; } return true; } bool operator!=(const RateCtrlStatus_ & other) const { return !this->operator==(other); } }; // struct RateCtrlStatus_ // alias to use template instance with default allocator using RateCtrlStatus = px4_msgs::msg::RateCtrlStatus_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__RATE_CTRL_STATUS__STRUCT_HPP_ <file_sep>/install/px4_msgs/include/px4_msgs/msg/wind__struct.h /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/wind__struct.h<file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/mission_result__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/MissionResult.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/mission_result__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/mission_result__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::MissionResult & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: instance_count cdr << ros_message.instance_count; // Member: seq_reached cdr << ros_message.seq_reached; // Member: seq_current cdr << ros_message.seq_current; // Member: seq_total cdr << ros_message.seq_total; // Member: valid cdr << (ros_message.valid ? true : false); // Member: warning cdr << (ros_message.warning ? true : false); // Member: finished cdr << (ros_message.finished ? true : false); // Member: failure cdr << (ros_message.failure ? true : false); // Member: stay_in_failsafe cdr << (ros_message.stay_in_failsafe ? true : false); // Member: flight_termination cdr << (ros_message.flight_termination ? true : false); // Member: item_do_jump_changed cdr << (ros_message.item_do_jump_changed ? true : false); // Member: item_changed_index cdr << ros_message.item_changed_index; // Member: item_do_jump_remaining cdr << ros_message.item_do_jump_remaining; // Member: execution_mode cdr << ros_message.execution_mode; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::MissionResult & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: instance_count cdr >> ros_message.instance_count; // Member: seq_reached cdr >> ros_message.seq_reached; // Member: seq_current cdr >> ros_message.seq_current; // Member: seq_total cdr >> ros_message.seq_total; // Member: valid { uint8_t tmp; cdr >> tmp; ros_message.valid = tmp ? true : false; } // Member: warning { uint8_t tmp; cdr >> tmp; ros_message.warning = tmp ? true : false; } // Member: finished { uint8_t tmp; cdr >> tmp; ros_message.finished = tmp ? true : false; } // Member: failure { uint8_t tmp; cdr >> tmp; ros_message.failure = tmp ? true : false; } // Member: stay_in_failsafe { uint8_t tmp; cdr >> tmp; ros_message.stay_in_failsafe = tmp ? true : false; } // Member: flight_termination { uint8_t tmp; cdr >> tmp; ros_message.flight_termination = tmp ? true : false; } // Member: item_do_jump_changed { uint8_t tmp; cdr >> tmp; ros_message.item_do_jump_changed = tmp ? true : false; } // Member: item_changed_index cdr >> ros_message.item_changed_index; // Member: item_do_jump_remaining cdr >> ros_message.item_do_jump_remaining; // Member: execution_mode cdr >> ros_message.execution_mode; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::MissionResult & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: instance_count { size_t item_size = sizeof(ros_message.instance_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: seq_reached { size_t item_size = sizeof(ros_message.seq_reached); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: seq_current { size_t item_size = sizeof(ros_message.seq_current); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: seq_total { size_t item_size = sizeof(ros_message.seq_total); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: valid { size_t item_size = sizeof(ros_message.valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: warning { size_t item_size = sizeof(ros_message.warning); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: finished { size_t item_size = sizeof(ros_message.finished); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: failure { size_t item_size = sizeof(ros_message.failure); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: stay_in_failsafe { size_t item_size = sizeof(ros_message.stay_in_failsafe); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: flight_termination { size_t item_size = sizeof(ros_message.flight_termination); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: item_do_jump_changed { size_t item_size = sizeof(ros_message.item_do_jump_changed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: item_changed_index { size_t item_size = sizeof(ros_message.item_changed_index); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: item_do_jump_remaining { size_t item_size = sizeof(ros_message.item_do_jump_remaining); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: execution_mode { size_t item_size = sizeof(ros_message.execution_mode); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_MissionResult( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: instance_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: seq_reached { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: seq_current { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: seq_total { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: warning { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: finished { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: failure { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: stay_in_failsafe { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: flight_termination { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: item_do_jump_changed { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: item_changed_index { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: item_do_jump_remaining { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: execution_mode { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _MissionResult__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::MissionResult *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _MissionResult__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::MissionResult *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _MissionResult__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::MissionResult *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _MissionResult__max_serialized_size(bool & full_bounded) { return max_serialized_size_MissionResult(full_bounded, 0); } static message_type_support_callbacks_t _MissionResult__callbacks = { "px4_msgs::msg", "MissionResult", _MissionResult__cdr_serialize, _MissionResult__cdr_deserialize, _MissionResult__get_serialized_size, _MissionResult__max_serialized_size }; static rosidl_message_type_support_t _MissionResult__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_MissionResult__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::MissionResult>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_MissionResult__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, MissionResult)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_MissionResult__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/heater_status__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/HeaterStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/heater_status__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/heater_status__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::HeaterStatus & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: device_id cdr << ros_message.device_id; // Member: heater_on cdr << (ros_message.heater_on ? true : false); // Member: temperature_target_met cdr << (ros_message.temperature_target_met ? true : false); // Member: temperature_sensor cdr << ros_message.temperature_sensor; // Member: temperature_target cdr << ros_message.temperature_target; // Member: controller_period_usec cdr << ros_message.controller_period_usec; // Member: controller_time_on_usec cdr << ros_message.controller_time_on_usec; // Member: proportional_value cdr << ros_message.proportional_value; // Member: integrator_value cdr << ros_message.integrator_value; // Member: feed_forward_value cdr << ros_message.feed_forward_value; // Member: mode cdr << ros_message.mode; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::HeaterStatus & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: device_id cdr >> ros_message.device_id; // Member: heater_on { uint8_t tmp; cdr >> tmp; ros_message.heater_on = tmp ? true : false; } // Member: temperature_target_met { uint8_t tmp; cdr >> tmp; ros_message.temperature_target_met = tmp ? true : false; } // Member: temperature_sensor cdr >> ros_message.temperature_sensor; // Member: temperature_target cdr >> ros_message.temperature_target; // Member: controller_period_usec cdr >> ros_message.controller_period_usec; // Member: controller_time_on_usec cdr >> ros_message.controller_time_on_usec; // Member: proportional_value cdr >> ros_message.proportional_value; // Member: integrator_value cdr >> ros_message.integrator_value; // Member: feed_forward_value cdr >> ros_message.feed_forward_value; // Member: mode cdr >> ros_message.mode; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::HeaterStatus & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: device_id { size_t item_size = sizeof(ros_message.device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: heater_on { size_t item_size = sizeof(ros_message.heater_on); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: temperature_target_met { size_t item_size = sizeof(ros_message.temperature_target_met); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: temperature_sensor { size_t item_size = sizeof(ros_message.temperature_sensor); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: temperature_target { size_t item_size = sizeof(ros_message.temperature_target); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: controller_period_usec { size_t item_size = sizeof(ros_message.controller_period_usec); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: controller_time_on_usec { size_t item_size = sizeof(ros_message.controller_time_on_usec); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: proportional_value { size_t item_size = sizeof(ros_message.proportional_value); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: integrator_value { size_t item_size = sizeof(ros_message.integrator_value); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: feed_forward_value { size_t item_size = sizeof(ros_message.feed_forward_value); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: mode { size_t item_size = sizeof(ros_message.mode); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_HeaterStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: heater_on { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: temperature_target_met { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: temperature_sensor { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: temperature_target { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: controller_period_usec { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: controller_time_on_usec { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: proportional_value { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: integrator_value { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: feed_forward_value { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: mode { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _HeaterStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::HeaterStatus *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _HeaterStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::HeaterStatus *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _HeaterStatus__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::HeaterStatus *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _HeaterStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_HeaterStatus(full_bounded, 0); } static message_type_support_callbacks_t _HeaterStatus__callbacks = { "px4_msgs::msg", "HeaterStatus", _HeaterStatus__cdr_serialize, _HeaterStatus__cdr_deserialize, _HeaterStatus__get_serialized_size, _HeaterStatus__max_serialized_size }; static rosidl_message_type_support_t _HeaterStatus__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_HeaterStatus__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::HeaterStatus>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_HeaterStatus__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, HeaterStatus)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_HeaterStatus__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_innovation_variances.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/EstimatorInnovationVariances.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_INNOVATION_VARIANCES_H_ #define PX4_MSGS__MSG__ESTIMATOR_INNOVATION_VARIANCES_H_ #include "px4_msgs/msg/estimator_innovation_variances__struct.h" #include "px4_msgs/msg/estimator_innovation_variances__functions.h" #include "px4_msgs/msg/estimator_innovation_variances__type_support.h" #endif // PX4_MSGS__MSG__ESTIMATOR_INNOVATION_VARIANCES_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/offboard_control_mode__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/OffboardControlMode.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__OFFBOARD_CONTROL_MODE__STRUCT_HPP_ #define PX4_MSGS__MSG__OFFBOARD_CONTROL_MODE__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__OffboardControlMode __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__OffboardControlMode __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct OffboardControlMode_ { using Type = OffboardControlMode_<ContainerAllocator>; explicit OffboardControlMode_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->position = false; this->velocity = false; this->acceleration = false; this->attitude = false; this->body_rate = false; } } explicit OffboardControlMode_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->position = false; this->velocity = false; this->acceleration = false; this->attitude = false; this->body_rate = false; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _position_type = bool; _position_type position; using _velocity_type = bool; _velocity_type velocity; using _acceleration_type = bool; _acceleration_type acceleration; using _attitude_type = bool; _attitude_type attitude; using _body_rate_type = bool; _body_rate_type body_rate; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__position( const bool & _arg) { this->position = _arg; return *this; } Type & set__velocity( const bool & _arg) { this->velocity = _arg; return *this; } Type & set__acceleration( const bool & _arg) { this->acceleration = _arg; return *this; } Type & set__attitude( const bool & _arg) { this->attitude = _arg; return *this; } Type & set__body_rate( const bool & _arg) { this->body_rate = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::OffboardControlMode_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::OffboardControlMode_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::OffboardControlMode_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::OffboardControlMode_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::OffboardControlMode_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::OffboardControlMode_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::OffboardControlMode_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::OffboardControlMode_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::OffboardControlMode_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::OffboardControlMode_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__OffboardControlMode std::shared_ptr<px4_msgs::msg::OffboardControlMode_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__OffboardControlMode std::shared_ptr<px4_msgs::msg::OffboardControlMode_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const OffboardControlMode_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->position != other.position) { return false; } if (this->velocity != other.velocity) { return false; } if (this->acceleration != other.acceleration) { return false; } if (this->attitude != other.attitude) { return false; } if (this->body_rate != other.body_rate) { return false; } return true; } bool operator!=(const OffboardControlMode_ & other) const { return !this->operator==(other); } }; // struct OffboardControlMode_ // alias to use template instance with default allocator using OffboardControlMode = px4_msgs::msg::OffboardControlMode_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__OFFBOARD_CONTROL_MODE__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/tecs_status__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/TecsStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/tecs_status__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/tecs_status__struct.h" #include "px4_msgs/msg/tecs_status__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _TecsStatus__ros_msg_type = px4_msgs__msg__TecsStatus; static bool _TecsStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _TecsStatus__ros_msg_type * ros_message = static_cast<const _TecsStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: altitude_sp { cdr << ros_message->altitude_sp; } // Field name: altitude_filtered { cdr << ros_message->altitude_filtered; } // Field name: height_rate_setpoint { cdr << ros_message->height_rate_setpoint; } // Field name: height_rate { cdr << ros_message->height_rate; } // Field name: equivalent_airspeed_sp { cdr << ros_message->equivalent_airspeed_sp; } // Field name: true_airspeed_sp { cdr << ros_message->true_airspeed_sp; } // Field name: true_airspeed_filtered { cdr << ros_message->true_airspeed_filtered; } // Field name: true_airspeed_derivative_sp { cdr << ros_message->true_airspeed_derivative_sp; } // Field name: true_airspeed_derivative { cdr << ros_message->true_airspeed_derivative; } // Field name: total_energy_error { cdr << ros_message->total_energy_error; } // Field name: energy_distribution_error { cdr << ros_message->energy_distribution_error; } // Field name: total_energy_rate_error { cdr << ros_message->total_energy_rate_error; } // Field name: energy_distribution_rate_error { cdr << ros_message->energy_distribution_rate_error; } // Field name: total_energy { cdr << ros_message->total_energy; } // Field name: total_energy_rate { cdr << ros_message->total_energy_rate; } // Field name: total_energy_balance { cdr << ros_message->total_energy_balance; } // Field name: total_energy_balance_rate { cdr << ros_message->total_energy_balance_rate; } // Field name: total_energy_sp { cdr << ros_message->total_energy_sp; } // Field name: total_energy_rate_sp { cdr << ros_message->total_energy_rate_sp; } // Field name: total_energy_balance_sp { cdr << ros_message->total_energy_balance_sp; } // Field name: total_energy_balance_rate_sp { cdr << ros_message->total_energy_balance_rate_sp; } // Field name: throttle_integ { cdr << ros_message->throttle_integ; } // Field name: pitch_integ { cdr << ros_message->pitch_integ; } // Field name: throttle_sp { cdr << ros_message->throttle_sp; } // Field name: mode { cdr << ros_message->mode; } return true; } static bool _TecsStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _TecsStatus__ros_msg_type * ros_message = static_cast<_TecsStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: altitude_sp { cdr >> ros_message->altitude_sp; } // Field name: altitude_filtered { cdr >> ros_message->altitude_filtered; } // Field name: height_rate_setpoint { cdr >> ros_message->height_rate_setpoint; } // Field name: height_rate { cdr >> ros_message->height_rate; } // Field name: equivalent_airspeed_sp { cdr >> ros_message->equivalent_airspeed_sp; } // Field name: true_airspeed_sp { cdr >> ros_message->true_airspeed_sp; } // Field name: true_airspeed_filtered { cdr >> ros_message->true_airspeed_filtered; } // Field name: true_airspeed_derivative_sp { cdr >> ros_message->true_airspeed_derivative_sp; } // Field name: true_airspeed_derivative { cdr >> ros_message->true_airspeed_derivative; } // Field name: total_energy_error { cdr >> ros_message->total_energy_error; } // Field name: energy_distribution_error { cdr >> ros_message->energy_distribution_error; } // Field name: total_energy_rate_error { cdr >> ros_message->total_energy_rate_error; } // Field name: energy_distribution_rate_error { cdr >> ros_message->energy_distribution_rate_error; } // Field name: total_energy { cdr >> ros_message->total_energy; } // Field name: total_energy_rate { cdr >> ros_message->total_energy_rate; } // Field name: total_energy_balance { cdr >> ros_message->total_energy_balance; } // Field name: total_energy_balance_rate { cdr >> ros_message->total_energy_balance_rate; } // Field name: total_energy_sp { cdr >> ros_message->total_energy_sp; } // Field name: total_energy_rate_sp { cdr >> ros_message->total_energy_rate_sp; } // Field name: total_energy_balance_sp { cdr >> ros_message->total_energy_balance_sp; } // Field name: total_energy_balance_rate_sp { cdr >> ros_message->total_energy_balance_rate_sp; } // Field name: throttle_integ { cdr >> ros_message->throttle_integ; } // Field name: pitch_integ { cdr >> ros_message->pitch_integ; } // Field name: throttle_sp { cdr >> ros_message->throttle_sp; } // Field name: mode { cdr >> ros_message->mode; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__TecsStatus( const void * untyped_ros_message, size_t current_alignment) { const _TecsStatus__ros_msg_type * ros_message = static_cast<const _TecsStatus__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name altitude_sp { size_t item_size = sizeof(ros_message->altitude_sp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name altitude_filtered { size_t item_size = sizeof(ros_message->altitude_filtered); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name height_rate_setpoint { size_t item_size = sizeof(ros_message->height_rate_setpoint); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name height_rate { size_t item_size = sizeof(ros_message->height_rate); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name equivalent_airspeed_sp { size_t item_size = sizeof(ros_message->equivalent_airspeed_sp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name true_airspeed_sp { size_t item_size = sizeof(ros_message->true_airspeed_sp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name true_airspeed_filtered { size_t item_size = sizeof(ros_message->true_airspeed_filtered); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name true_airspeed_derivative_sp { size_t item_size = sizeof(ros_message->true_airspeed_derivative_sp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name true_airspeed_derivative { size_t item_size = sizeof(ros_message->true_airspeed_derivative); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name total_energy_error { size_t item_size = sizeof(ros_message->total_energy_error); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name energy_distribution_error { size_t item_size = sizeof(ros_message->energy_distribution_error); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name total_energy_rate_error { size_t item_size = sizeof(ros_message->total_energy_rate_error); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name energy_distribution_rate_error { size_t item_size = sizeof(ros_message->energy_distribution_rate_error); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name total_energy { size_t item_size = sizeof(ros_message->total_energy); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name total_energy_rate { size_t item_size = sizeof(ros_message->total_energy_rate); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name total_energy_balance { size_t item_size = sizeof(ros_message->total_energy_balance); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name total_energy_balance_rate { size_t item_size = sizeof(ros_message->total_energy_balance_rate); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name total_energy_sp { size_t item_size = sizeof(ros_message->total_energy_sp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name total_energy_rate_sp { size_t item_size = sizeof(ros_message->total_energy_rate_sp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name total_energy_balance_sp { size_t item_size = sizeof(ros_message->total_energy_balance_sp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name total_energy_balance_rate_sp { size_t item_size = sizeof(ros_message->total_energy_balance_rate_sp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name throttle_integ { size_t item_size = sizeof(ros_message->throttle_integ); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name pitch_integ { size_t item_size = sizeof(ros_message->pitch_integ); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name throttle_sp { size_t item_size = sizeof(ros_message->throttle_sp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name mode { size_t item_size = sizeof(ros_message->mode); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _TecsStatus__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__TecsStatus( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__TecsStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: altitude_sp { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: altitude_filtered { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: height_rate_setpoint { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: height_rate { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: equivalent_airspeed_sp { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: true_airspeed_sp { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: true_airspeed_filtered { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: true_airspeed_derivative_sp { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: true_airspeed_derivative { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: total_energy_error { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: energy_distribution_error { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: total_energy_rate_error { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: energy_distribution_rate_error { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: total_energy { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: total_energy_rate { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: total_energy_balance { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: total_energy_balance_rate { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: total_energy_sp { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: total_energy_rate_sp { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: total_energy_balance_sp { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: total_energy_balance_rate_sp { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: throttle_integ { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: pitch_integ { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: throttle_sp { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: mode { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _TecsStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__TecsStatus( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_TecsStatus = { "px4_msgs::msg", "TecsStatus", _TecsStatus__cdr_serialize, _TecsStatus__cdr_deserialize, _TecsStatus__get_serialized_size, _TecsStatus__max_serialized_size }; static rosidl_message_type_support_t _TecsStatus__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_TecsStatus, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, TecsStatus)() { return &_TecsStatus__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_mc__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/ActuatorControlsVirtualMc.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS_VIRTUAL_MC__STRUCT_H_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS_VIRTUAL_MC__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'NUM_ACTUATOR_CONTROLS'. enum { px4_msgs__msg__ActuatorControlsVirtualMc__NUM_ACTUATOR_CONTROLS = 8 }; /// Constant 'NUM_ACTUATOR_CONTROL_GROUPS'. enum { px4_msgs__msg__ActuatorControlsVirtualMc__NUM_ACTUATOR_CONTROL_GROUPS = 6 }; /// Constant 'INDEX_ROLL'. enum { px4_msgs__msg__ActuatorControlsVirtualMc__INDEX_ROLL = 0 }; /// Constant 'INDEX_PITCH'. enum { px4_msgs__msg__ActuatorControlsVirtualMc__INDEX_PITCH = 1 }; /// Constant 'INDEX_YAW'. enum { px4_msgs__msg__ActuatorControlsVirtualMc__INDEX_YAW = 2 }; /// Constant 'INDEX_THROTTLE'. enum { px4_msgs__msg__ActuatorControlsVirtualMc__INDEX_THROTTLE = 3 }; /// Constant 'INDEX_FLAPS'. enum { px4_msgs__msg__ActuatorControlsVirtualMc__INDEX_FLAPS = 4 }; /// Constant 'INDEX_SPOILERS'. enum { px4_msgs__msg__ActuatorControlsVirtualMc__INDEX_SPOILERS = 5 }; /// Constant 'INDEX_AIRBRAKES'. enum { px4_msgs__msg__ActuatorControlsVirtualMc__INDEX_AIRBRAKES = 6 }; /// Constant 'INDEX_LANDING_GEAR'. enum { px4_msgs__msg__ActuatorControlsVirtualMc__INDEX_LANDING_GEAR = 7 }; /// Constant 'INDEX_GIMBAL_SHUTTER'. enum { px4_msgs__msg__ActuatorControlsVirtualMc__INDEX_GIMBAL_SHUTTER = 3 }; /// Constant 'INDEX_CAMERA_ZOOM'. enum { px4_msgs__msg__ActuatorControlsVirtualMc__INDEX_CAMERA_ZOOM = 4 }; /// Constant 'GROUP_INDEX_ATTITUDE'. enum { px4_msgs__msg__ActuatorControlsVirtualMc__GROUP_INDEX_ATTITUDE = 0 }; /// Constant 'GROUP_INDEX_ATTITUDE_ALTERNATE'. enum { px4_msgs__msg__ActuatorControlsVirtualMc__GROUP_INDEX_ATTITUDE_ALTERNATE = 1 }; /// Constant 'GROUP_INDEX_GIMBAL'. enum { px4_msgs__msg__ActuatorControlsVirtualMc__GROUP_INDEX_GIMBAL = 2 }; /// Constant 'GROUP_INDEX_MANUAL_PASSTHROUGH'. enum { px4_msgs__msg__ActuatorControlsVirtualMc__GROUP_INDEX_MANUAL_PASSTHROUGH = 3 }; /// Constant 'GROUP_INDEX_ALLOCATED_PART1'. enum { px4_msgs__msg__ActuatorControlsVirtualMc__GROUP_INDEX_ALLOCATED_PART1 = 4 }; /// Constant 'GROUP_INDEX_ALLOCATED_PART2'. enum { px4_msgs__msg__ActuatorControlsVirtualMc__GROUP_INDEX_ALLOCATED_PART2 = 5 }; /// Constant 'GROUP_INDEX_PAYLOAD'. enum { px4_msgs__msg__ActuatorControlsVirtualMc__GROUP_INDEX_PAYLOAD = 6 }; // Struct defined in msg/ActuatorControlsVirtualMc in the package px4_msgs. typedef struct px4_msgs__msg__ActuatorControlsVirtualMc { uint64_t timestamp; uint64_t timestamp_sample; float control[8]; } px4_msgs__msg__ActuatorControlsVirtualMc; // Struct for a sequence of px4_msgs__msg__ActuatorControlsVirtualMc. typedef struct px4_msgs__msg__ActuatorControlsVirtualMc__Sequence { px4_msgs__msg__ActuatorControlsVirtualMc * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__ActuatorControlsVirtualMc__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS_VIRTUAL_MC__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/landing_target_innovations__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/LandingTargetInnovations.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/landing_target_innovations__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__LandingTargetInnovations__init(px4_msgs__msg__LandingTargetInnovations * msg) { if (!msg) { return false; } // timestamp // innov_x // innov_y // innov_cov_x // innov_cov_y return true; } void px4_msgs__msg__LandingTargetInnovations__fini(px4_msgs__msg__LandingTargetInnovations * msg) { if (!msg) { return; } // timestamp // innov_x // innov_y // innov_cov_x // innov_cov_y } px4_msgs__msg__LandingTargetInnovations * px4_msgs__msg__LandingTargetInnovations__create() { px4_msgs__msg__LandingTargetInnovations * msg = (px4_msgs__msg__LandingTargetInnovations *)malloc(sizeof(px4_msgs__msg__LandingTargetInnovations)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__LandingTargetInnovations)); bool success = px4_msgs__msg__LandingTargetInnovations__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__LandingTargetInnovations__destroy(px4_msgs__msg__LandingTargetInnovations * msg) { if (msg) { px4_msgs__msg__LandingTargetInnovations__fini(msg); } free(msg); } bool px4_msgs__msg__LandingTargetInnovations__Sequence__init(px4_msgs__msg__LandingTargetInnovations__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__LandingTargetInnovations * data = NULL; if (size) { data = (px4_msgs__msg__LandingTargetInnovations *)calloc(size, sizeof(px4_msgs__msg__LandingTargetInnovations)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__LandingTargetInnovations__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__LandingTargetInnovations__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__LandingTargetInnovations__Sequence__fini(px4_msgs__msg__LandingTargetInnovations__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__LandingTargetInnovations__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__LandingTargetInnovations__Sequence * px4_msgs__msg__LandingTargetInnovations__Sequence__create(size_t size) { px4_msgs__msg__LandingTargetInnovations__Sequence * array = (px4_msgs__msg__LandingTargetInnovations__Sequence *)malloc(sizeof(px4_msgs__msg__LandingTargetInnovations__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__LandingTargetInnovations__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__LandingTargetInnovations__Sequence__destroy(px4_msgs__msg__LandingTargetInnovations__Sequence * array) { if (array) { px4_msgs__msg__LandingTargetInnovations__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_status__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/GimbalManagerStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/gimbal_manager_status__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/gimbal_manager_status__struct.h" #include "px4_msgs/msg/gimbal_manager_status__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _GimbalManagerStatus__ros_msg_type = px4_msgs__msg__GimbalManagerStatus; static bool _GimbalManagerStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _GimbalManagerStatus__ros_msg_type * ros_message = static_cast<const _GimbalManagerStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: flags { cdr << ros_message->flags; } // Field name: gimbal_device_id { cdr << ros_message->gimbal_device_id; } // Field name: primary_control_sysid { cdr << ros_message->primary_control_sysid; } // Field name: primary_control_compid { cdr << ros_message->primary_control_compid; } // Field name: secondary_control_sysid { cdr << ros_message->secondary_control_sysid; } // Field name: secondary_control_compid { cdr << ros_message->secondary_control_compid; } return true; } static bool _GimbalManagerStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _GimbalManagerStatus__ros_msg_type * ros_message = static_cast<_GimbalManagerStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: flags { cdr >> ros_message->flags; } // Field name: gimbal_device_id { cdr >> ros_message->gimbal_device_id; } // Field name: primary_control_sysid { cdr >> ros_message->primary_control_sysid; } // Field name: primary_control_compid { cdr >> ros_message->primary_control_compid; } // Field name: secondary_control_sysid { cdr >> ros_message->secondary_control_sysid; } // Field name: secondary_control_compid { cdr >> ros_message->secondary_control_compid; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__GimbalManagerStatus( const void * untyped_ros_message, size_t current_alignment) { const _GimbalManagerStatus__ros_msg_type * ros_message = static_cast<const _GimbalManagerStatus__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name flags { size_t item_size = sizeof(ros_message->flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gimbal_device_id { size_t item_size = sizeof(ros_message->gimbal_device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name primary_control_sysid { size_t item_size = sizeof(ros_message->primary_control_sysid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name primary_control_compid { size_t item_size = sizeof(ros_message->primary_control_compid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name secondary_control_sysid { size_t item_size = sizeof(ros_message->secondary_control_sysid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name secondary_control_compid { size_t item_size = sizeof(ros_message->secondary_control_compid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _GimbalManagerStatus__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__GimbalManagerStatus( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__GimbalManagerStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gimbal_device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: primary_control_sysid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: primary_control_compid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: secondary_control_sysid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: secondary_control_compid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _GimbalManagerStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__GimbalManagerStatus( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_GimbalManagerStatus = { "px4_msgs::msg", "GimbalManagerStatus", _GimbalManagerStatus__cdr_serialize, _GimbalManagerStatus__cdr_deserialize, _GimbalManagerStatus__get_serialized_size, _GimbalManagerStatus__max_serialized_size }; static rosidl_message_type_support_t _GimbalManagerStatus__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_GimbalManagerStatus, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, GimbalManagerStatus)() { return &_GimbalManagerStatus__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_states__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/EstimatorStates.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/estimator_states__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__EstimatorStates__init(px4_msgs__msg__EstimatorStates * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // states // n_states // covariances return true; } void px4_msgs__msg__EstimatorStates__fini(px4_msgs__msg__EstimatorStates * msg) { if (!msg) { return; } // timestamp // timestamp_sample // states // n_states // covariances } px4_msgs__msg__EstimatorStates * px4_msgs__msg__EstimatorStates__create() { px4_msgs__msg__EstimatorStates * msg = (px4_msgs__msg__EstimatorStates *)malloc(sizeof(px4_msgs__msg__EstimatorStates)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__EstimatorStates)); bool success = px4_msgs__msg__EstimatorStates__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__EstimatorStates__destroy(px4_msgs__msg__EstimatorStates * msg) { if (msg) { px4_msgs__msg__EstimatorStates__fini(msg); } free(msg); } bool px4_msgs__msg__EstimatorStates__Sequence__init(px4_msgs__msg__EstimatorStates__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__EstimatorStates * data = NULL; if (size) { data = (px4_msgs__msg__EstimatorStates *)calloc(size, sizeof(px4_msgs__msg__EstimatorStates)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__EstimatorStates__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__EstimatorStates__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__EstimatorStates__Sequence__fini(px4_msgs__msg__EstimatorStates__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__EstimatorStates__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__EstimatorStates__Sequence * px4_msgs__msg__EstimatorStates__Sequence__create(size_t size) { px4_msgs__msg__EstimatorStates__Sequence * array = (px4_msgs__msg__EstimatorStates__Sequence *)malloc(sizeof(px4_msgs__msg__EstimatorStates__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__EstimatorStates__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__EstimatorStates__Sequence__destroy(px4_msgs__msg__EstimatorStates__Sequence * array) { if (array) { px4_msgs__msg__EstimatorStates__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command_ack__rosidl_typesupport_introspection_c.h // generated from rosidl_typesupport_introspection_c/resource/idl__rosidl_typesupport_introspection_c.h.em // with input from px4_msgs:msg/VehicleCommandAck.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_COMMAND_ACK__ROSIDL_TYPESUPPORT_INTROSPECTION_C_H_ #define PX4_MSGS__MSG__VEHICLE_COMMAND_ACK__ROSIDL_TYPESUPPORT_INTROSPECTION_C_H_ #ifdef __cplusplus extern "C" { #endif #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" ROSIDL_TYPESUPPORT_INTROSPECTION_C_PUBLIC_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, VehicleCommandAck)(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_COMMAND_ACK__ROSIDL_TYPESUPPORT_INTROSPECTION_C_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/gps_inject_data__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/GpsInjectData.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/gps_inject_data__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__GpsInjectData__init(px4_msgs__msg__GpsInjectData * msg) { if (!msg) { return false; } // timestamp // len // flags // data return true; } void px4_msgs__msg__GpsInjectData__fini(px4_msgs__msg__GpsInjectData * msg) { if (!msg) { return; } // timestamp // len // flags // data } px4_msgs__msg__GpsInjectData * px4_msgs__msg__GpsInjectData__create() { px4_msgs__msg__GpsInjectData * msg = (px4_msgs__msg__GpsInjectData *)malloc(sizeof(px4_msgs__msg__GpsInjectData)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__GpsInjectData)); bool success = px4_msgs__msg__GpsInjectData__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__GpsInjectData__destroy(px4_msgs__msg__GpsInjectData * msg) { if (msg) { px4_msgs__msg__GpsInjectData__fini(msg); } free(msg); } bool px4_msgs__msg__GpsInjectData__Sequence__init(px4_msgs__msg__GpsInjectData__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__GpsInjectData * data = NULL; if (size) { data = (px4_msgs__msg__GpsInjectData *)calloc(size, sizeof(px4_msgs__msg__GpsInjectData)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__GpsInjectData__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__GpsInjectData__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__GpsInjectData__Sequence__fini(px4_msgs__msg__GpsInjectData__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__GpsInjectData__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__GpsInjectData__Sequence * px4_msgs__msg__GpsInjectData__Sequence__create(size_t size) { px4_msgs__msg__GpsInjectData__Sequence * array = (px4_msgs__msg__GpsInjectData__Sequence *)malloc(sizeof(px4_msgs__msg__GpsInjectData__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__GpsInjectData__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__GpsInjectData__Sequence__destroy(px4_msgs__msg__GpsInjectData__Sequence * array) { if (array) { px4_msgs__msg__GpsInjectData__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleAngularVelocity.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ANGULAR_VELOCITY_H_ #define PX4_MSGS__MSG__VEHICLE_ANGULAR_VELOCITY_H_ #include "px4_msgs/msg/vehicle_angular_velocity__struct.h" #include "px4_msgs/msg/vehicle_angular_velocity__functions.h" #include "px4_msgs/msg/vehicle_angular_velocity__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_ANGULAR_VELOCITY_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/telemetry_status.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TELEMETRY_STATUS_HPP_ #define PX4_MSGS__MSG__TELEMETRY_STATUS_HPP_ #include "px4_msgs/msg/telemetry_status__struct.hpp" #include "px4_msgs/msg/telemetry_status__traits.hpp" #endif // PX4_MSGS__MSG__TELEMETRY_STATUS_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_vision_attitude.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleVisionAttitude.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_VISION_ATTITUDE_H_ #define PX4_MSGS__MSG__VEHICLE_VISION_ATTITUDE_H_ #include "px4_msgs/msg/vehicle_vision_attitude__struct.h" #include "px4_msgs/msg/vehicle_vision_attitude__functions.h" #include "px4_msgs/msg/vehicle_vision_attitude__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_VISION_ATTITUDE_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/ping__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/Ping.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/ping__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/ping__functions.h" #include "px4_msgs/msg/ping__struct.h" #ifdef __cplusplus extern "C" { #endif void Ping__rosidl_typesupport_introspection_c__Ping_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__Ping__init(message_memory); } void Ping__rosidl_typesupport_introspection_c__Ping_fini_function(void * message_memory) { px4_msgs__msg__Ping__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember Ping__rosidl_typesupport_introspection_c__Ping_message_member_array[7] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Ping, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ping_time", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Ping, ping_time), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ping_sequence", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Ping, ping_sequence), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "dropped_packets", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Ping, dropped_packets), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rtt_ms", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Ping, rtt_ms), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "system_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Ping, system_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "component_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Ping, component_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers Ping__rosidl_typesupport_introspection_c__Ping_message_members = { "px4_msgs__msg", // message namespace "Ping", // message name 7, // number of fields sizeof(px4_msgs__msg__Ping), Ping__rosidl_typesupport_introspection_c__Ping_message_member_array, // message members Ping__rosidl_typesupport_introspection_c__Ping_init_function, // function to initialize message memory (memory has to be allocated) Ping__rosidl_typesupport_introspection_c__Ping_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t Ping__rosidl_typesupport_introspection_c__Ping_message_type_support_handle = { 0, &Ping__rosidl_typesupport_introspection_c__Ping_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, Ping)() { if (!Ping__rosidl_typesupport_introspection_c__Ping_message_type_support_handle.typesupport_identifier) { Ping__rosidl_typesupport_introspection_c__Ping_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &Ping__rosidl_typesupport_introspection_c__Ping_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/rpm.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__RPM_HPP_ #define PX4_MSGS__MSG__RPM_HPP_ #include "px4_msgs/msg/rpm__struct.hpp" #include "px4_msgs/msg/rpm__traits.hpp" #endif // PX4_MSGS__MSG__RPM_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity_groundtruth__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleAngularVelocityGroundtruth.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ANGULAR_VELOCITY_GROUNDTRUTH__FUNCTIONS_H_ #define PX4_MSGS__MSG__VEHICLE_ANGULAR_VELOCITY_GROUNDTRUTH__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/vehicle_angular_velocity_groundtruth__struct.h" /// Initialize msg/VehicleAngularVelocityGroundtruth message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__VehicleAngularVelocityGroundtruth * )) before or use * px4_msgs__msg__VehicleAngularVelocityGroundtruth__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__VehicleAngularVelocityGroundtruth__init(px4_msgs__msg__VehicleAngularVelocityGroundtruth * msg); /// Finalize msg/VehicleAngularVelocityGroundtruth message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleAngularVelocityGroundtruth__fini(px4_msgs__msg__VehicleAngularVelocityGroundtruth * msg); /// Create msg/VehicleAngularVelocityGroundtruth message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__VehicleAngularVelocityGroundtruth__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__VehicleAngularVelocityGroundtruth * px4_msgs__msg__VehicleAngularVelocityGroundtruth__create(); /// Destroy msg/VehicleAngularVelocityGroundtruth message. /** * It calls * px4_msgs__msg__VehicleAngularVelocityGroundtruth__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleAngularVelocityGroundtruth__destroy(px4_msgs__msg__VehicleAngularVelocityGroundtruth * msg); /// Initialize array of msg/VehicleAngularVelocityGroundtruth messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__VehicleAngularVelocityGroundtruth__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__VehicleAngularVelocityGroundtruth__Sequence__init(px4_msgs__msg__VehicleAngularVelocityGroundtruth__Sequence * array, size_t size); /// Finalize array of msg/VehicleAngularVelocityGroundtruth messages. /** * It calls * px4_msgs__msg__VehicleAngularVelocityGroundtruth__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleAngularVelocityGroundtruth__Sequence__fini(px4_msgs__msg__VehicleAngularVelocityGroundtruth__Sequence * array); /// Create array of msg/VehicleAngularVelocityGroundtruth messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__VehicleAngularVelocityGroundtruth__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__VehicleAngularVelocityGroundtruth__Sequence * px4_msgs__msg__VehicleAngularVelocityGroundtruth__Sequence__create(size_t size); /// Destroy array of msg/VehicleAngularVelocityGroundtruth messages. /** * It calls * px4_msgs__msg__VehicleAngularVelocityGroundtruth__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleAngularVelocityGroundtruth__Sequence__destroy(px4_msgs__msg__VehicleAngularVelocityGroundtruth__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_ANGULAR_VELOCITY_GROUNDTRUTH__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vtol_vehicle_status__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/VtolVehicleStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VTOL_VEHICLE_STATUS__STRUCT_HPP_ #define PX4_MSGS__MSG__VTOL_VEHICLE_STATUS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__VtolVehicleStatus __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__VtolVehicleStatus __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct VtolVehicleStatus_ { using Type = VtolVehicleStatus_<ContainerAllocator>; explicit VtolVehicleStatus_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->vtol_in_rw_mode = false; this->vtol_in_trans_mode = false; this->in_transition_to_fw = false; this->vtol_transition_failsafe = false; this->fw_permanent_stab = false; } } explicit VtolVehicleStatus_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->vtol_in_rw_mode = false; this->vtol_in_trans_mode = false; this->in_transition_to_fw = false; this->vtol_transition_failsafe = false; this->fw_permanent_stab = false; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _vtol_in_rw_mode_type = bool; _vtol_in_rw_mode_type vtol_in_rw_mode; using _vtol_in_trans_mode_type = bool; _vtol_in_trans_mode_type vtol_in_trans_mode; using _in_transition_to_fw_type = bool; _in_transition_to_fw_type in_transition_to_fw; using _vtol_transition_failsafe_type = bool; _vtol_transition_failsafe_type vtol_transition_failsafe; using _fw_permanent_stab_type = bool; _fw_permanent_stab_type fw_permanent_stab; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__vtol_in_rw_mode( const bool & _arg) { this->vtol_in_rw_mode = _arg; return *this; } Type & set__vtol_in_trans_mode( const bool & _arg) { this->vtol_in_trans_mode = _arg; return *this; } Type & set__in_transition_to_fw( const bool & _arg) { this->in_transition_to_fw = _arg; return *this; } Type & set__vtol_transition_failsafe( const bool & _arg) { this->vtol_transition_failsafe = _arg; return *this; } Type & set__fw_permanent_stab( const bool & _arg) { this->fw_permanent_stab = _arg; return *this; } // constant declarations static constexpr uint8_t VEHICLE_VTOL_STATE_UNDEFINED = 0u; static constexpr uint8_t VEHICLE_VTOL_STATE_TRANSITION_TO_FW = 1u; static constexpr uint8_t VEHICLE_VTOL_STATE_TRANSITION_TO_MC = 2u; static constexpr uint8_t VEHICLE_VTOL_STATE_MC = 3u; static constexpr uint8_t VEHICLE_VTOL_STATE_FW = 4u; // pointer types using RawPtr = px4_msgs::msg::VtolVehicleStatus_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::VtolVehicleStatus_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::VtolVehicleStatus_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::VtolVehicleStatus_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::VtolVehicleStatus_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VtolVehicleStatus_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::VtolVehicleStatus_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VtolVehicleStatus_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::VtolVehicleStatus_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::VtolVehicleStatus_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__VtolVehicleStatus std::shared_ptr<px4_msgs::msg::VtolVehicleStatus_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__VtolVehicleStatus std::shared_ptr<px4_msgs::msg::VtolVehicleStatus_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const VtolVehicleStatus_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->vtol_in_rw_mode != other.vtol_in_rw_mode) { return false; } if (this->vtol_in_trans_mode != other.vtol_in_trans_mode) { return false; } if (this->in_transition_to_fw != other.in_transition_to_fw) { return false; } if (this->vtol_transition_failsafe != other.vtol_transition_failsafe) { return false; } if (this->fw_permanent_stab != other.fw_permanent_stab) { return false; } return true; } bool operator!=(const VtolVehicleStatus_ & other) const { return !this->operator==(other); } }; // struct VtolVehicleStatus_ // alias to use template instance with default allocator using VtolVehicleStatus = px4_msgs::msg::VtolVehicleStatus_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t VtolVehicleStatus_<ContainerAllocator>::VEHICLE_VTOL_STATE_UNDEFINED; template<typename ContainerAllocator> constexpr uint8_t VtolVehicleStatus_<ContainerAllocator>::VEHICLE_VTOL_STATE_TRANSITION_TO_FW; template<typename ContainerAllocator> constexpr uint8_t VtolVehicleStatus_<ContainerAllocator>::VEHICLE_VTOL_STATE_TRANSITION_TO_MC; template<typename ContainerAllocator> constexpr uint8_t VtolVehicleStatus_<ContainerAllocator>::VEHICLE_VTOL_STATE_MC; template<typename ContainerAllocator> constexpr uint8_t VtolVehicleStatus_<ContainerAllocator>::VEHICLE_VTOL_STATE_FW; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__VTOL_VEHICLE_STATUS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_validated__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/AirspeedValidated.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/airspeed_validated__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/airspeed_validated__struct.h" #include "px4_msgs/msg/airspeed_validated__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _AirspeedValidated__ros_msg_type = px4_msgs__msg__AirspeedValidated; static bool _AirspeedValidated__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _AirspeedValidated__ros_msg_type * ros_message = static_cast<const _AirspeedValidated__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: indicated_airspeed_m_s { cdr << ros_message->indicated_airspeed_m_s; } // Field name: calibrated_airspeed_m_s { cdr << ros_message->calibrated_airspeed_m_s; } // Field name: true_airspeed_m_s { cdr << ros_message->true_airspeed_m_s; } // Field name: calibrated_ground_minus_wind_m_s { cdr << ros_message->calibrated_ground_minus_wind_m_s; } // Field name: true_ground_minus_wind_m_s { cdr << ros_message->true_ground_minus_wind_m_s; } // Field name: airspeed_sensor_measurement_valid { cdr << (ros_message->airspeed_sensor_measurement_valid ? true : false); } // Field name: selected_airspeed_index { cdr << ros_message->selected_airspeed_index; } return true; } static bool _AirspeedValidated__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _AirspeedValidated__ros_msg_type * ros_message = static_cast<_AirspeedValidated__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: indicated_airspeed_m_s { cdr >> ros_message->indicated_airspeed_m_s; } // Field name: calibrated_airspeed_m_s { cdr >> ros_message->calibrated_airspeed_m_s; } // Field name: true_airspeed_m_s { cdr >> ros_message->true_airspeed_m_s; } // Field name: calibrated_ground_minus_wind_m_s { cdr >> ros_message->calibrated_ground_minus_wind_m_s; } // Field name: true_ground_minus_wind_m_s { cdr >> ros_message->true_ground_minus_wind_m_s; } // Field name: airspeed_sensor_measurement_valid { uint8_t tmp; cdr >> tmp; ros_message->airspeed_sensor_measurement_valid = tmp ? true : false; } // Field name: selected_airspeed_index { cdr >> ros_message->selected_airspeed_index; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__AirspeedValidated( const void * untyped_ros_message, size_t current_alignment) { const _AirspeedValidated__ros_msg_type * ros_message = static_cast<const _AirspeedValidated__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name indicated_airspeed_m_s { size_t item_size = sizeof(ros_message->indicated_airspeed_m_s); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name calibrated_airspeed_m_s { size_t item_size = sizeof(ros_message->calibrated_airspeed_m_s); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name true_airspeed_m_s { size_t item_size = sizeof(ros_message->true_airspeed_m_s); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name calibrated_ground_minus_wind_m_s { size_t item_size = sizeof(ros_message->calibrated_ground_minus_wind_m_s); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name true_ground_minus_wind_m_s { size_t item_size = sizeof(ros_message->true_ground_minus_wind_m_s); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name airspeed_sensor_measurement_valid { size_t item_size = sizeof(ros_message->airspeed_sensor_measurement_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name selected_airspeed_index { size_t item_size = sizeof(ros_message->selected_airspeed_index); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _AirspeedValidated__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__AirspeedValidated( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__AirspeedValidated( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: indicated_airspeed_m_s { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: calibrated_airspeed_m_s { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: true_airspeed_m_s { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: calibrated_ground_minus_wind_m_s { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: true_ground_minus_wind_m_s { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: airspeed_sensor_measurement_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: selected_airspeed_index { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _AirspeedValidated__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__AirspeedValidated( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_AirspeedValidated = { "px4_msgs::msg", "AirspeedValidated", _AirspeedValidated__cdr_serialize, _AirspeedValidated__cdr_deserialize, _AirspeedValidated__get_serialized_size, _AirspeedValidated__max_serialized_size }; static rosidl_message_type_support_t _AirspeedValidated__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_AirspeedValidated, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, AirspeedValidated)() { return &_AirspeedValidated__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/multi_rtd_interfaces/rosidl_generator_py/multi_rtd_interfaces/_multi_rtd_interfaces_s.ep.rosidl_typesupport_c.c // generated from rosidl_generator_py/resource/_idl_pkg_typesupport_entry_point.c.em // generated code does not contain a copyright notice #include <Python.h> static PyMethodDef multi_rtd_interfaces__methods[] = { {NULL, NULL, 0, NULL} /* sentinel */ }; static struct PyModuleDef multi_rtd_interfaces__module = { PyModuleDef_HEAD_INIT, "_multi_rtd_interfaces_support", "_multi_rtd_interfaces_doc", -1, /* -1 means that the module keeps state in global variables */ multi_rtd_interfaces__methods, NULL, NULL, NULL, NULL, }; #include <stdbool.h> #include <stdint.h> #include "rosidl_generator_c/visibility_control.h" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_generator_c/service_type_support_struct.h" #include "rosidl_generator_c/action_type_support_struct.h" #include "multi_rtd_interfaces/msg/robot_trajectory__type_support.h" #include "multi_rtd_interfaces/msg/robot_trajectory__struct.h" #include "multi_rtd_interfaces/msg/robot_trajectory__functions.h" static void * multi_rtd_interfaces__msg__robot_trajectory__create_ros_message(void) { return multi_rtd_interfaces__msg__RobotTrajectory__create(); } static void multi_rtd_interfaces__msg__robot_trajectory__destroy_ros_message(void * raw_ros_message) { multi_rtd_interfaces__msg__RobotTrajectory * ros_message = (multi_rtd_interfaces__msg__RobotTrajectory *)raw_ros_message; multi_rtd_interfaces__msg__RobotTrajectory__destroy(ros_message); } ROSIDL_GENERATOR_C_IMPORT bool multi_rtd_interfaces__msg__robot_trajectory__convert_from_py(PyObject * _pymsg, void * ros_message); ROSIDL_GENERATOR_C_IMPORT PyObject * multi_rtd_interfaces__msg__robot_trajectory__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_IMPORT const rosidl_message_type_support_t * ROSIDL_GET_MSG_TYPE_SUPPORT(multi_rtd_interfaces, msg, RobotTrajectory); int8_t _register_msg_type__msg__robot_trajectory(PyObject * pymodule) { int8_t err; PyObject * pyobject_create_ros_message = NULL; pyobject_create_ros_message = PyCapsule_New( (void *)&multi_rtd_interfaces__msg__robot_trajectory__create_ros_message, NULL, NULL); if (!pyobject_create_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "create_ros_message_msg__msg__robot_trajectory", pyobject_create_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_create_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_destroy_ros_message = NULL; pyobject_destroy_ros_message = PyCapsule_New( (void *)&multi_rtd_interfaces__msg__robot_trajectory__destroy_ros_message, NULL, NULL); if (!pyobject_destroy_ros_message) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "destroy_ros_message_msg__msg__robot_trajectory", pyobject_destroy_ros_message); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_destroy_ros_message); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_from_py = NULL; pyobject_convert_from_py = PyCapsule_New( (void *)&multi_rtd_interfaces__msg__robot_trajectory__convert_from_py, NULL, NULL); if (!pyobject_convert_from_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_from_py_msg__msg__robot_trajectory", pyobject_convert_from_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_from_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_convert_to_py = NULL; pyobject_convert_to_py = PyCapsule_New( (void *)&multi_rtd_interfaces__msg__robot_trajectory__convert_to_py, NULL, NULL); if (!pyobject_convert_to_py) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "convert_to_py_msg__msg__robot_trajectory", pyobject_convert_to_py); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_convert_to_py); // previously added objects will be removed when the module is destroyed return err; } PyObject * pyobject_type_support = NULL; pyobject_type_support = PyCapsule_New( (void *)ROSIDL_GET_MSG_TYPE_SUPPORT(multi_rtd_interfaces, msg, RobotTrajectory), NULL, NULL); if (!pyobject_type_support) { // previously added objects will be removed when the module is destroyed return -1; } err = PyModule_AddObject( pymodule, "type_support_msg__msg__robot_trajectory", pyobject_type_support); if (err) { // the created capsule needs to be decremented Py_XDECREF(pyobject_type_support); // previously added objects will be removed when the module is destroyed return err; } return 0; } PyMODINIT_FUNC PyInit_multi_rtd_interfaces_s__rosidl_typesupport_c(void) { PyObject * pymodule = NULL; pymodule = PyModule_Create(&multi_rtd_interfaces__module); if (!pymodule) { return NULL; } int8_t err; err = _register_msg_type__msg__robot_trajectory(pymodule); if (err) { Py_XDECREF(pymodule); return NULL; } return pymodule; } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_imu__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleImu.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_IMU__STRUCT_H_ #define PX4_MSGS__MSG__VEHICLE_IMU__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'CLIPPING_X'. enum { px4_msgs__msg__VehicleImu__CLIPPING_X = 1 }; /// Constant 'CLIPPING_Y'. enum { px4_msgs__msg__VehicleImu__CLIPPING_Y = 2 }; /// Constant 'CLIPPING_Z'. enum { px4_msgs__msg__VehicleImu__CLIPPING_Z = 4 }; // Struct defined in msg/VehicleImu in the package px4_msgs. typedef struct px4_msgs__msg__VehicleImu { uint64_t timestamp; uint64_t timestamp_sample; uint32_t accel_device_id; uint32_t gyro_device_id; float delta_angle[3]; float delta_velocity[3]; uint16_t delta_angle_dt; uint16_t delta_velocity_dt; uint8_t delta_velocity_clipping; uint8_t calibration_count; } px4_msgs__msg__VehicleImu; // Struct for a sequence of px4_msgs__msg__VehicleImu. typedef struct px4_msgs__msg__VehicleImu__Sequence { px4_msgs__msg__VehicleImu * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__VehicleImu__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_IMU__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_offboard_control_mode_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/OffboardControlMode.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/offboard_control_mode__struct.h" #include "px4_msgs/msg/offboard_control_mode__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__offboard_control_mode__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[56]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._offboard_control_mode.OffboardControlMode", full_classname_dest, 55) == 0); } px4_msgs__msg__OffboardControlMode * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // position PyObject * field = PyObject_GetAttrString(_pymsg, "position"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->position = (Py_True == field); Py_DECREF(field); } { // velocity PyObject * field = PyObject_GetAttrString(_pymsg, "velocity"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->velocity = (Py_True == field); Py_DECREF(field); } { // acceleration PyObject * field = PyObject_GetAttrString(_pymsg, "acceleration"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->acceleration = (Py_True == field); Py_DECREF(field); } { // attitude PyObject * field = PyObject_GetAttrString(_pymsg, "attitude"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->attitude = (Py_True == field); Py_DECREF(field); } { // body_rate PyObject * field = PyObject_GetAttrString(_pymsg, "body_rate"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->body_rate = (Py_True == field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__offboard_control_mode__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of OffboardControlMode */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._offboard_control_mode"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "OffboardControlMode"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__OffboardControlMode * ros_message = (px4_msgs__msg__OffboardControlMode *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // position PyObject * field = NULL; field = PyBool_FromLong(ros_message->position ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "position", field); Py_DECREF(field); if (rc) { return NULL; } } } { // velocity PyObject * field = NULL; field = PyBool_FromLong(ros_message->velocity ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "velocity", field); Py_DECREF(field); if (rc) { return NULL; } } } { // acceleration PyObject * field = NULL; field = PyBool_FromLong(ros_message->acceleration ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "acceleration", field); Py_DECREF(field); if (rc) { return NULL; } } } { // attitude PyObject * field = NULL; field = PyBool_FromLong(ros_message->attitude ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "attitude", field); Py_DECREF(field); if (rc) { return NULL; } } } { // body_rate PyObject * field = NULL; field = PyBool_FromLong(ros_message->body_rate ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "body_rate", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_innovation_test_ratios__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/EstimatorInnovationTestRatios.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_INNOVATION_TEST_RATIOS__FUNCTIONS_H_ #define PX4_MSGS__MSG__ESTIMATOR_INNOVATION_TEST_RATIOS__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/estimator_innovation_test_ratios__struct.h" /// Initialize msg/EstimatorInnovationTestRatios message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__EstimatorInnovationTestRatios * )) before or use * px4_msgs__msg__EstimatorInnovationTestRatios__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__EstimatorInnovationTestRatios__init(px4_msgs__msg__EstimatorInnovationTestRatios * msg); /// Finalize msg/EstimatorInnovationTestRatios message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__EstimatorInnovationTestRatios__fini(px4_msgs__msg__EstimatorInnovationTestRatios * msg); /// Create msg/EstimatorInnovationTestRatios message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__EstimatorInnovationTestRatios__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__EstimatorInnovationTestRatios * px4_msgs__msg__EstimatorInnovationTestRatios__create(); /// Destroy msg/EstimatorInnovationTestRatios message. /** * It calls * px4_msgs__msg__EstimatorInnovationTestRatios__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__EstimatorInnovationTestRatios__destroy(px4_msgs__msg__EstimatorInnovationTestRatios * msg); /// Initialize array of msg/EstimatorInnovationTestRatios messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__EstimatorInnovationTestRatios__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__EstimatorInnovationTestRatios__Sequence__init(px4_msgs__msg__EstimatorInnovationTestRatios__Sequence * array, size_t size); /// Finalize array of msg/EstimatorInnovationTestRatios messages. /** * It calls * px4_msgs__msg__EstimatorInnovationTestRatios__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__EstimatorInnovationTestRatios__Sequence__fini(px4_msgs__msg__EstimatorInnovationTestRatios__Sequence * array); /// Create array of msg/EstimatorInnovationTestRatios messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__EstimatorInnovationTestRatios__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__EstimatorInnovationTestRatios__Sequence * px4_msgs__msg__EstimatorInnovationTestRatios__Sequence__create(size_t size); /// Destroy array of msg/EstimatorInnovationTestRatios messages. /** * It calls * px4_msgs__msg__EstimatorInnovationTestRatios__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__EstimatorInnovationTestRatios__Sequence__destroy(px4_msgs__msg__EstimatorInnovationTestRatios__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ESTIMATOR_INNOVATION_TEST_RATIOS__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_vehicle_status_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/VehicleStatus.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/vehicle_status__struct.h" #include "px4_msgs/msg/vehicle_status__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__vehicle_status__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[43]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._vehicle_status.VehicleStatus", full_classname_dest, 42) == 0); } px4_msgs__msg__VehicleStatus * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // nav_state PyObject * field = PyObject_GetAttrString(_pymsg, "nav_state"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->nav_state = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // nav_state_timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "nav_state_timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->nav_state_timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // arming_state PyObject * field = PyObject_GetAttrString(_pymsg, "arming_state"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->arming_state = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // hil_state PyObject * field = PyObject_GetAttrString(_pymsg, "hil_state"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->hil_state = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // failsafe PyObject * field = PyObject_GetAttrString(_pymsg, "failsafe"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->failsafe = (Py_True == field); Py_DECREF(field); } { // failsafe_timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "failsafe_timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->failsafe_timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // system_type PyObject * field = PyObject_GetAttrString(_pymsg, "system_type"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->system_type = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // system_id PyObject * field = PyObject_GetAttrString(_pymsg, "system_id"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->system_id = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // component_id PyObject * field = PyObject_GetAttrString(_pymsg, "component_id"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->component_id = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // vehicle_type PyObject * field = PyObject_GetAttrString(_pymsg, "vehicle_type"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->vehicle_type = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // is_vtol PyObject * field = PyObject_GetAttrString(_pymsg, "is_vtol"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->is_vtol = (Py_True == field); Py_DECREF(field); } { // is_vtol_tailsitter PyObject * field = PyObject_GetAttrString(_pymsg, "is_vtol_tailsitter"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->is_vtol_tailsitter = (Py_True == field); Py_DECREF(field); } { // vtol_fw_permanent_stab PyObject * field = PyObject_GetAttrString(_pymsg, "vtol_fw_permanent_stab"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->vtol_fw_permanent_stab = (Py_True == field); Py_DECREF(field); } { // in_transition_mode PyObject * field = PyObject_GetAttrString(_pymsg, "in_transition_mode"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->in_transition_mode = (Py_True == field); Py_DECREF(field); } { // in_transition_to_fw PyObject * field = PyObject_GetAttrString(_pymsg, "in_transition_to_fw"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->in_transition_to_fw = (Py_True == field); Py_DECREF(field); } { // rc_signal_lost PyObject * field = PyObject_GetAttrString(_pymsg, "rc_signal_lost"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->rc_signal_lost = (Py_True == field); Py_DECREF(field); } { // rc_input_mode PyObject * field = PyObject_GetAttrString(_pymsg, "rc_input_mode"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->rc_input_mode = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // data_link_lost PyObject * field = PyObject_GetAttrString(_pymsg, "data_link_lost"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->data_link_lost = (Py_True == field); Py_DECREF(field); } { // data_link_lost_counter PyObject * field = PyObject_GetAttrString(_pymsg, "data_link_lost_counter"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->data_link_lost_counter = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // high_latency_data_link_lost PyObject * field = PyObject_GetAttrString(_pymsg, "high_latency_data_link_lost"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->high_latency_data_link_lost = (Py_True == field); Py_DECREF(field); } { // engine_failure PyObject * field = PyObject_GetAttrString(_pymsg, "engine_failure"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->engine_failure = (Py_True == field); Py_DECREF(field); } { // mission_failure PyObject * field = PyObject_GetAttrString(_pymsg, "mission_failure"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->mission_failure = (Py_True == field); Py_DECREF(field); } { // failure_detector_status PyObject * field = PyObject_GetAttrString(_pymsg, "failure_detector_status"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->failure_detector_status = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // onboard_control_sensors_present PyObject * field = PyObject_GetAttrString(_pymsg, "onboard_control_sensors_present"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->onboard_control_sensors_present = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // onboard_control_sensors_enabled PyObject * field = PyObject_GetAttrString(_pymsg, "onboard_control_sensors_enabled"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->onboard_control_sensors_enabled = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // onboard_control_sensors_health PyObject * field = PyObject_GetAttrString(_pymsg, "onboard_control_sensors_health"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->onboard_control_sensors_health = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // latest_arming_reason PyObject * field = PyObject_GetAttrString(_pymsg, "latest_arming_reason"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->latest_arming_reason = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // latest_disarming_reason PyObject * field = PyObject_GetAttrString(_pymsg, "latest_disarming_reason"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->latest_disarming_reason = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // armed_time PyObject * field = PyObject_GetAttrString(_pymsg, "armed_time"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->armed_time = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // takeoff_time PyObject * field = PyObject_GetAttrString(_pymsg, "takeoff_time"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->takeoff_time = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__vehicle_status__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of VehicleStatus */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._vehicle_status"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "VehicleStatus"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__VehicleStatus * ros_message = (px4_msgs__msg__VehicleStatus *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // nav_state PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->nav_state); { int rc = PyObject_SetAttrString(_pymessage, "nav_state", field); Py_DECREF(field); if (rc) { return NULL; } } } { // nav_state_timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->nav_state_timestamp); { int rc = PyObject_SetAttrString(_pymessage, "nav_state_timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // arming_state PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->arming_state); { int rc = PyObject_SetAttrString(_pymessage, "arming_state", field); Py_DECREF(field); if (rc) { return NULL; } } } { // hil_state PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->hil_state); { int rc = PyObject_SetAttrString(_pymessage, "hil_state", field); Py_DECREF(field); if (rc) { return NULL; } } } { // failsafe PyObject * field = NULL; field = PyBool_FromLong(ros_message->failsafe ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "failsafe", field); Py_DECREF(field); if (rc) { return NULL; } } } { // failsafe_timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->failsafe_timestamp); { int rc = PyObject_SetAttrString(_pymessage, "failsafe_timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // system_type PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->system_type); { int rc = PyObject_SetAttrString(_pymessage, "system_type", field); Py_DECREF(field); if (rc) { return NULL; } } } { // system_id PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->system_id); { int rc = PyObject_SetAttrString(_pymessage, "system_id", field); Py_DECREF(field); if (rc) { return NULL; } } } { // component_id PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->component_id); { int rc = PyObject_SetAttrString(_pymessage, "component_id", field); Py_DECREF(field); if (rc) { return NULL; } } } { // vehicle_type PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->vehicle_type); { int rc = PyObject_SetAttrString(_pymessage, "vehicle_type", field); Py_DECREF(field); if (rc) { return NULL; } } } { // is_vtol PyObject * field = NULL; field = PyBool_FromLong(ros_message->is_vtol ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "is_vtol", field); Py_DECREF(field); if (rc) { return NULL; } } } { // is_vtol_tailsitter PyObject * field = NULL; field = PyBool_FromLong(ros_message->is_vtol_tailsitter ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "is_vtol_tailsitter", field); Py_DECREF(field); if (rc) { return NULL; } } } { // vtol_fw_permanent_stab PyObject * field = NULL; field = PyBool_FromLong(ros_message->vtol_fw_permanent_stab ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "vtol_fw_permanent_stab", field); Py_DECREF(field); if (rc) { return NULL; } } } { // in_transition_mode PyObject * field = NULL; field = PyBool_FromLong(ros_message->in_transition_mode ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "in_transition_mode", field); Py_DECREF(field); if (rc) { return NULL; } } } { // in_transition_to_fw PyObject * field = NULL; field = PyBool_FromLong(ros_message->in_transition_to_fw ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "in_transition_to_fw", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rc_signal_lost PyObject * field = NULL; field = PyBool_FromLong(ros_message->rc_signal_lost ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "rc_signal_lost", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rc_input_mode PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->rc_input_mode); { int rc = PyObject_SetAttrString(_pymessage, "rc_input_mode", field); Py_DECREF(field); if (rc) { return NULL; } } } { // data_link_lost PyObject * field = NULL; field = PyBool_FromLong(ros_message->data_link_lost ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "data_link_lost", field); Py_DECREF(field); if (rc) { return NULL; } } } { // data_link_lost_counter PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->data_link_lost_counter); { int rc = PyObject_SetAttrString(_pymessage, "data_link_lost_counter", field); Py_DECREF(field); if (rc) { return NULL; } } } { // high_latency_data_link_lost PyObject * field = NULL; field = PyBool_FromLong(ros_message->high_latency_data_link_lost ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "high_latency_data_link_lost", field); Py_DECREF(field); if (rc) { return NULL; } } } { // engine_failure PyObject * field = NULL; field = PyBool_FromLong(ros_message->engine_failure ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "engine_failure", field); Py_DECREF(field); if (rc) { return NULL; } } } { // mission_failure PyObject * field = NULL; field = PyBool_FromLong(ros_message->mission_failure ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "mission_failure", field); Py_DECREF(field); if (rc) { return NULL; } } } { // failure_detector_status PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->failure_detector_status); { int rc = PyObject_SetAttrString(_pymessage, "failure_detector_status", field); Py_DECREF(field); if (rc) { return NULL; } } } { // onboard_control_sensors_present PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->onboard_control_sensors_present); { int rc = PyObject_SetAttrString(_pymessage, "onboard_control_sensors_present", field); Py_DECREF(field); if (rc) { return NULL; } } } { // onboard_control_sensors_enabled PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->onboard_control_sensors_enabled); { int rc = PyObject_SetAttrString(_pymessage, "onboard_control_sensors_enabled", field); Py_DECREF(field); if (rc) { return NULL; } } } { // onboard_control_sensors_health PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->onboard_control_sensors_health); { int rc = PyObject_SetAttrString(_pymessage, "onboard_control_sensors_health", field); Py_DECREF(field); if (rc) { return NULL; } } } { // latest_arming_reason PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->latest_arming_reason); { int rc = PyObject_SetAttrString(_pymessage, "latest_arming_reason", field); Py_DECREF(field); if (rc) { return NULL; } } } { // latest_disarming_reason PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->latest_disarming_reason); { int rc = PyObject_SetAttrString(_pymessage, "latest_disarming_reason", field); Py_DECREF(field); if (rc) { return NULL; } } } { // armed_time PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->armed_time); { int rc = PyObject_SetAttrString(_pymessage, "armed_time", field); Py_DECREF(field); if (rc) { return NULL; } } } { // takeoff_time PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->takeoff_time); { int rc = PyObject_SetAttrString(_pymessage, "takeoff_time", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/orb_test_medium__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/OrbTestMedium.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/orb_test_medium__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__OrbTestMedium__init(px4_msgs__msg__OrbTestMedium * msg) { if (!msg) { return false; } // timestamp // val // junk return true; } void px4_msgs__msg__OrbTestMedium__fini(px4_msgs__msg__OrbTestMedium * msg) { if (!msg) { return; } // timestamp // val // junk } px4_msgs__msg__OrbTestMedium * px4_msgs__msg__OrbTestMedium__create() { px4_msgs__msg__OrbTestMedium * msg = (px4_msgs__msg__OrbTestMedium *)malloc(sizeof(px4_msgs__msg__OrbTestMedium)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__OrbTestMedium)); bool success = px4_msgs__msg__OrbTestMedium__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__OrbTestMedium__destroy(px4_msgs__msg__OrbTestMedium * msg) { if (msg) { px4_msgs__msg__OrbTestMedium__fini(msg); } free(msg); } bool px4_msgs__msg__OrbTestMedium__Sequence__init(px4_msgs__msg__OrbTestMedium__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__OrbTestMedium * data = NULL; if (size) { data = (px4_msgs__msg__OrbTestMedium *)calloc(size, sizeof(px4_msgs__msg__OrbTestMedium)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__OrbTestMedium__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__OrbTestMedium__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__OrbTestMedium__Sequence__fini(px4_msgs__msg__OrbTestMedium__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__OrbTestMedium__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__OrbTestMedium__Sequence * px4_msgs__msg__OrbTestMedium__Sequence__create(size_t size) { px4_msgs__msg__OrbTestMedium__Sequence * array = (px4_msgs__msg__OrbTestMedium__Sequence *)malloc(sizeof(px4_msgs__msg__OrbTestMedium__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__OrbTestMedium__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__OrbTestMedium__Sequence__destroy(px4_msgs__msg__OrbTestMedium__Sequence * array) { if (array) { px4_msgs__msg__OrbTestMedium__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_wind.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/EstimatorWind.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_WIND_H_ #define PX4_MSGS__MSG__ESTIMATOR_WIND_H_ #include "px4_msgs/msg/estimator_wind__struct.h" #include "px4_msgs/msg/estimator_wind__functions.h" #include "px4_msgs/msg/estimator_wind__type_support.h" #endif // PX4_MSGS__MSG__ESTIMATOR_WIND_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_command__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleCommand.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_COMMAND__FUNCTIONS_H_ #define PX4_MSGS__MSG__VEHICLE_COMMAND__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/vehicle_command__struct.h" /// Initialize msg/VehicleCommand message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__VehicleCommand * )) before or use * px4_msgs__msg__VehicleCommand__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__VehicleCommand__init(px4_msgs__msg__VehicleCommand * msg); /// Finalize msg/VehicleCommand message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleCommand__fini(px4_msgs__msg__VehicleCommand * msg); /// Create msg/VehicleCommand message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__VehicleCommand__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__VehicleCommand * px4_msgs__msg__VehicleCommand__create(); /// Destroy msg/VehicleCommand message. /** * It calls * px4_msgs__msg__VehicleCommand__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleCommand__destroy(px4_msgs__msg__VehicleCommand * msg); /// Initialize array of msg/VehicleCommand messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__VehicleCommand__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__VehicleCommand__Sequence__init(px4_msgs__msg__VehicleCommand__Sequence * array, size_t size); /// Finalize array of msg/VehicleCommand messages. /** * It calls * px4_msgs__msg__VehicleCommand__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleCommand__Sequence__fini(px4_msgs__msg__VehicleCommand__Sequence * array); /// Create array of msg/VehicleCommand messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__VehicleCommand__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__VehicleCommand__Sequence * px4_msgs__msg__VehicleCommand__Sequence__create(size_t size); /// Destroy array of msg/VehicleCommand messages. /** * It calls * px4_msgs__msg__VehicleCommand__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleCommand__Sequence__destroy(px4_msgs__msg__VehicleCommand__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_COMMAND__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/battery_status__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/BatteryStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/battery_status__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__BatteryStatus__init(px4_msgs__msg__BatteryStatus * msg) { if (!msg) { return false; } // timestamp // voltage_v // voltage_filtered_v // current_a // current_filtered_a // average_current_a // discharged_mah // remaining // scale // temperature // cell_count // connected // source // priority // capacity // cycle_count // run_time_to_empty // average_time_to_empty // serial_number // manufacture_date // state_of_health // max_error // id // interface_error // voltage_cell_v // max_cell_voltage_delta // is_powering_off // warning // average_power // available_energy // remaining_capacity // design_capacity // average_time_to_full // over_discharge_count // nominal_voltage return true; } void px4_msgs__msg__BatteryStatus__fini(px4_msgs__msg__BatteryStatus * msg) { if (!msg) { return; } // timestamp // voltage_v // voltage_filtered_v // current_a // current_filtered_a // average_current_a // discharged_mah // remaining // scale // temperature // cell_count // connected // source // priority // capacity // cycle_count // run_time_to_empty // average_time_to_empty // serial_number // manufacture_date // state_of_health // max_error // id // interface_error // voltage_cell_v // max_cell_voltage_delta // is_powering_off // warning // average_power // available_energy // remaining_capacity // design_capacity // average_time_to_full // over_discharge_count // nominal_voltage } px4_msgs__msg__BatteryStatus * px4_msgs__msg__BatteryStatus__create() { px4_msgs__msg__BatteryStatus * msg = (px4_msgs__msg__BatteryStatus *)malloc(sizeof(px4_msgs__msg__BatteryStatus)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__BatteryStatus)); bool success = px4_msgs__msg__BatteryStatus__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__BatteryStatus__destroy(px4_msgs__msg__BatteryStatus * msg) { if (msg) { px4_msgs__msg__BatteryStatus__fini(msg); } free(msg); } bool px4_msgs__msg__BatteryStatus__Sequence__init(px4_msgs__msg__BatteryStatus__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__BatteryStatus * data = NULL; if (size) { data = (px4_msgs__msg__BatteryStatus *)calloc(size, sizeof(px4_msgs__msg__BatteryStatus)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__BatteryStatus__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__BatteryStatus__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__BatteryStatus__Sequence__fini(px4_msgs__msg__BatteryStatus__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__BatteryStatus__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__BatteryStatus__Sequence * px4_msgs__msg__BatteryStatus__Sequence__create(size_t size) { px4_msgs__msg__BatteryStatus__Sequence * array = (px4_msgs__msg__BatteryStatus__Sequence *)malloc(sizeof(px4_msgs__msg__BatteryStatus__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__BatteryStatus__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__BatteryStatus__Sequence__destroy(px4_msgs__msg__BatteryStatus__Sequence * array) { if (array) { px4_msgs__msg__BatteryStatus__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_local_position.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_HPP_ #define PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_HPP_ #include "px4_msgs/msg/vehicle_local_position__struct.hpp" #include "px4_msgs/msg/vehicle_local_position__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_correction__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/SensorCorrection.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_CORRECTION__STRUCT_H_ #define PX4_MSGS__MSG__SENSOR_CORRECTION__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/SensorCorrection in the package px4_msgs. typedef struct px4_msgs__msg__SensorCorrection { uint64_t timestamp; uint32_t gyro_device_ids[4]; float gyro_offset_0[3]; float gyro_offset_1[3]; float gyro_offset_2[3]; float gyro_offset_3[3]; uint32_t accel_device_ids[4]; float accel_offset_0[3]; float accel_offset_1[3]; float accel_offset_2[3]; float accel_offset_3[3]; uint32_t baro_device_ids[4]; float baro_offset_0; float baro_offset_1; float baro_offset_2; float baro_offset_3; } px4_msgs__msg__SensorCorrection; // Struct for a sequence of px4_msgs__msg__SensorCorrection. typedef struct px4_msgs__msg__SensorCorrection__Sequence { px4_msgs__msg__SensorCorrection * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__SensorCorrection__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__SENSOR_CORRECTION__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_attitude__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/VehicleAttitude.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ATTITUDE__STRUCT_HPP_ #define PX4_MSGS__MSG__VEHICLE_ATTITUDE__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__VehicleAttitude __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__VehicleAttitude __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct VehicleAttitude_ { using Type = VehicleAttitude_<ContainerAllocator>; explicit VehicleAttitude_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; std::fill<typename std::array<float, 4>::iterator, float>(this->q.begin(), this->q.end(), 0.0f); std::fill<typename std::array<float, 4>::iterator, float>(this->delta_q_reset.begin(), this->delta_q_reset.end(), 0.0f); this->quat_reset_counter = 0; } } explicit VehicleAttitude_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : q(_alloc), delta_q_reset(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; std::fill<typename std::array<float, 4>::iterator, float>(this->q.begin(), this->q.end(), 0.0f); std::fill<typename std::array<float, 4>::iterator, float>(this->delta_q_reset.begin(), this->delta_q_reset.end(), 0.0f); this->quat_reset_counter = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _timestamp_sample_type = uint64_t; _timestamp_sample_type timestamp_sample; using _q_type = std::array<float, 4>; _q_type q; using _delta_q_reset_type = std::array<float, 4>; _delta_q_reset_type delta_q_reset; using _quat_reset_counter_type = uint8_t; _quat_reset_counter_type quat_reset_counter; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__timestamp_sample( const uint64_t & _arg) { this->timestamp_sample = _arg; return *this; } Type & set__q( const std::array<float, 4> & _arg) { this->q = _arg; return *this; } Type & set__delta_q_reset( const std::array<float, 4> & _arg) { this->delta_q_reset = _arg; return *this; } Type & set__quat_reset_counter( const uint8_t & _arg) { this->quat_reset_counter = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::VehicleAttitude_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::VehicleAttitude_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::VehicleAttitude_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::VehicleAttitude_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleAttitude_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleAttitude_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleAttitude_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleAttitude_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::VehicleAttitude_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::VehicleAttitude_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__VehicleAttitude std::shared_ptr<px4_msgs::msg::VehicleAttitude_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__VehicleAttitude std::shared_ptr<px4_msgs::msg::VehicleAttitude_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const VehicleAttitude_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->timestamp_sample != other.timestamp_sample) { return false; } if (this->q != other.q) { return false; } if (this->delta_q_reset != other.delta_q_reset) { return false; } if (this->quat_reset_counter != other.quat_reset_counter) { return false; } return true; } bool operator!=(const VehicleAttitude_ & other) const { return !this->operator==(other); } }; // struct VehicleAttitude_ // alias to use template instance with default allocator using VehicleAttitude = px4_msgs::msg::VehicleAttitude_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__VEHICLE_ATTITUDE__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/uavcan_parameter_value.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__UAVCAN_PARAMETER_VALUE_HPP_ #define PX4_MSGS__MSG__UAVCAN_PARAMETER_VALUE_HPP_ #include "px4_msgs/msg/uavcan_parameter_value__struct.hpp" #include "px4_msgs/msg/uavcan_parameter_value__traits.hpp" #endif // PX4_MSGS__MSG__UAVCAN_PARAMETER_VALUE_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_mocap_odometry__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleMocapOdometry.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_MOCAP_ODOMETRY__STRUCT_H_ #define PX4_MSGS__MSG__VEHICLE_MOCAP_ODOMETRY__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'COVARIANCE_MATRIX_X_VARIANCE'. enum { px4_msgs__msg__VehicleMocapOdometry__COVARIANCE_MATRIX_X_VARIANCE = 0 }; /// Constant 'COVARIANCE_MATRIX_Y_VARIANCE'. enum { px4_msgs__msg__VehicleMocapOdometry__COVARIANCE_MATRIX_Y_VARIANCE = 6 }; /// Constant 'COVARIANCE_MATRIX_Z_VARIANCE'. enum { px4_msgs__msg__VehicleMocapOdometry__COVARIANCE_MATRIX_Z_VARIANCE = 11 }; /// Constant 'COVARIANCE_MATRIX_ROLL_VARIANCE'. enum { px4_msgs__msg__VehicleMocapOdometry__COVARIANCE_MATRIX_ROLL_VARIANCE = 15 }; /// Constant 'COVARIANCE_MATRIX_PITCH_VARIANCE'. enum { px4_msgs__msg__VehicleMocapOdometry__COVARIANCE_MATRIX_PITCH_VARIANCE = 18 }; /// Constant 'COVARIANCE_MATRIX_YAW_VARIANCE'. enum { px4_msgs__msg__VehicleMocapOdometry__COVARIANCE_MATRIX_YAW_VARIANCE = 20 }; /// Constant 'COVARIANCE_MATRIX_VX_VARIANCE'. enum { px4_msgs__msg__VehicleMocapOdometry__COVARIANCE_MATRIX_VX_VARIANCE = 0 }; /// Constant 'COVARIANCE_MATRIX_VY_VARIANCE'. enum { px4_msgs__msg__VehicleMocapOdometry__COVARIANCE_MATRIX_VY_VARIANCE = 6 }; /// Constant 'COVARIANCE_MATRIX_VZ_VARIANCE'. enum { px4_msgs__msg__VehicleMocapOdometry__COVARIANCE_MATRIX_VZ_VARIANCE = 11 }; /// Constant 'COVARIANCE_MATRIX_ROLLRATE_VARIANCE'. enum { px4_msgs__msg__VehicleMocapOdometry__COVARIANCE_MATRIX_ROLLRATE_VARIANCE = 15 }; /// Constant 'COVARIANCE_MATRIX_PITCHRATE_VARIANCE'. enum { px4_msgs__msg__VehicleMocapOdometry__COVARIANCE_MATRIX_PITCHRATE_VARIANCE = 18 }; /// Constant 'COVARIANCE_MATRIX_YAWRATE_VARIANCE'. enum { px4_msgs__msg__VehicleMocapOdometry__COVARIANCE_MATRIX_YAWRATE_VARIANCE = 20 }; /// Constant 'LOCAL_FRAME_NED'. enum { px4_msgs__msg__VehicleMocapOdometry__LOCAL_FRAME_NED = 0 }; /// Constant 'LOCAL_FRAME_FRD'. enum { px4_msgs__msg__VehicleMocapOdometry__LOCAL_FRAME_FRD = 1 }; /// Constant 'LOCAL_FRAME_OTHER'. enum { px4_msgs__msg__VehicleMocapOdometry__LOCAL_FRAME_OTHER = 2 }; /// Constant 'BODY_FRAME_FRD'. enum { px4_msgs__msg__VehicleMocapOdometry__BODY_FRAME_FRD = 3 }; // Struct defined in msg/VehicleMocapOdometry in the package px4_msgs. typedef struct px4_msgs__msg__VehicleMocapOdometry { uint64_t timestamp; uint64_t timestamp_sample; uint8_t local_frame; float x; float y; float z; float q[4]; float q_offset[4]; float pose_covariance[21]; uint8_t velocity_frame; float vx; float vy; float vz; float rollspeed; float pitchspeed; float yawspeed; float velocity_covariance[21]; } px4_msgs__msg__VehicleMocapOdometry; // Struct for a sequence of px4_msgs__msg__VehicleMocapOdometry. typedef struct px4_msgs__msg__VehicleMocapOdometry__Sequence { px4_msgs__msg__VehicleMocapOdometry * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__VehicleMocapOdometry__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_MOCAP_ODOMETRY__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/tune_control.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/TuneControl.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TUNE_CONTROL_H_ #define PX4_MSGS__MSG__TUNE_CONTROL_H_ #include "px4_msgs/msg/tune_control__struct.h" #include "px4_msgs/msg/tune_control__functions.h" #include "px4_msgs/msg/tune_control__type_support.h" #endif // PX4_MSGS__MSG__TUNE_CONTROL_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/satellite_info__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/SatelliteInfo.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SATELLITE_INFO__STRUCT_HPP_ #define PX4_MSGS__MSG__SATELLITE_INFO__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__SatelliteInfo __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__SatelliteInfo __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct SatelliteInfo_ { using Type = SatelliteInfo_<ContainerAllocator>; explicit SatelliteInfo_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->count = 0; std::fill<typename std::array<uint8_t, 20>::iterator, uint8_t>(this->svid.begin(), this->svid.end(), 0); std::fill<typename std::array<uint8_t, 20>::iterator, uint8_t>(this->used.begin(), this->used.end(), 0); std::fill<typename std::array<uint8_t, 20>::iterator, uint8_t>(this->elevation.begin(), this->elevation.end(), 0); std::fill<typename std::array<uint8_t, 20>::iterator, uint8_t>(this->azimuth.begin(), this->azimuth.end(), 0); std::fill<typename std::array<uint8_t, 20>::iterator, uint8_t>(this->snr.begin(), this->snr.end(), 0); std::fill<typename std::array<uint8_t, 20>::iterator, uint8_t>(this->prn.begin(), this->prn.end(), 0); } } explicit SatelliteInfo_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : svid(_alloc), used(_alloc), elevation(_alloc), azimuth(_alloc), snr(_alloc), prn(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->count = 0; std::fill<typename std::array<uint8_t, 20>::iterator, uint8_t>(this->svid.begin(), this->svid.end(), 0); std::fill<typename std::array<uint8_t, 20>::iterator, uint8_t>(this->used.begin(), this->used.end(), 0); std::fill<typename std::array<uint8_t, 20>::iterator, uint8_t>(this->elevation.begin(), this->elevation.end(), 0); std::fill<typename std::array<uint8_t, 20>::iterator, uint8_t>(this->azimuth.begin(), this->azimuth.end(), 0); std::fill<typename std::array<uint8_t, 20>::iterator, uint8_t>(this->snr.begin(), this->snr.end(), 0); std::fill<typename std::array<uint8_t, 20>::iterator, uint8_t>(this->prn.begin(), this->prn.end(), 0); } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _count_type = uint8_t; _count_type count; using _svid_type = std::array<uint8_t, 20>; _svid_type svid; using _used_type = std::array<uint8_t, 20>; _used_type used; using _elevation_type = std::array<uint8_t, 20>; _elevation_type elevation; using _azimuth_type = std::array<uint8_t, 20>; _azimuth_type azimuth; using _snr_type = std::array<uint8_t, 20>; _snr_type snr; using _prn_type = std::array<uint8_t, 20>; _prn_type prn; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__count( const uint8_t & _arg) { this->count = _arg; return *this; } Type & set__svid( const std::array<uint8_t, 20> & _arg) { this->svid = _arg; return *this; } Type & set__used( const std::array<uint8_t, 20> & _arg) { this->used = _arg; return *this; } Type & set__elevation( const std::array<uint8_t, 20> & _arg) { this->elevation = _arg; return *this; } Type & set__azimuth( const std::array<uint8_t, 20> & _arg) { this->azimuth = _arg; return *this; } Type & set__snr( const std::array<uint8_t, 20> & _arg) { this->snr = _arg; return *this; } Type & set__prn( const std::array<uint8_t, 20> & _arg) { this->prn = _arg; return *this; } // constant declarations static constexpr uint8_t SAT_INFO_MAX_SATELLITES = 20u; // pointer types using RawPtr = px4_msgs::msg::SatelliteInfo_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::SatelliteInfo_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::SatelliteInfo_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::SatelliteInfo_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::SatelliteInfo_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::SatelliteInfo_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::SatelliteInfo_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::SatelliteInfo_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::SatelliteInfo_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::SatelliteInfo_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__SatelliteInfo std::shared_ptr<px4_msgs::msg::SatelliteInfo_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__SatelliteInfo std::shared_ptr<px4_msgs::msg::SatelliteInfo_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const SatelliteInfo_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->count != other.count) { return false; } if (this->svid != other.svid) { return false; } if (this->used != other.used) { return false; } if (this->elevation != other.elevation) { return false; } if (this->azimuth != other.azimuth) { return false; } if (this->snr != other.snr) { return false; } if (this->prn != other.prn) { return false; } return true; } bool operator!=(const SatelliteInfo_ & other) const { return !this->operator==(other); } }; // struct SatelliteInfo_ // alias to use template instance with default allocator using SatelliteInfo = px4_msgs::msg::SatelliteInfo_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t SatelliteInfo_<ContainerAllocator>::SAT_INFO_MAX_SATELLITES; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__SATELLITE_INFO__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/actuator_controls.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS_HPP_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS_HPP_ #include "px4_msgs/msg/actuator_controls__struct.hpp" #include "px4_msgs/msg/actuator_controls__traits.hpp" #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/collision_constraints__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/CollisionConstraints.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/collision_constraints__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__CollisionConstraints__init(px4_msgs__msg__CollisionConstraints * msg) { if (!msg) { return false; } // timestamp // original_setpoint // adapted_setpoint return true; } void px4_msgs__msg__CollisionConstraints__fini(px4_msgs__msg__CollisionConstraints * msg) { if (!msg) { return; } // timestamp // original_setpoint // adapted_setpoint } px4_msgs__msg__CollisionConstraints * px4_msgs__msg__CollisionConstraints__create() { px4_msgs__msg__CollisionConstraints * msg = (px4_msgs__msg__CollisionConstraints *)malloc(sizeof(px4_msgs__msg__CollisionConstraints)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__CollisionConstraints)); bool success = px4_msgs__msg__CollisionConstraints__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__CollisionConstraints__destroy(px4_msgs__msg__CollisionConstraints * msg) { if (msg) { px4_msgs__msg__CollisionConstraints__fini(msg); } free(msg); } bool px4_msgs__msg__CollisionConstraints__Sequence__init(px4_msgs__msg__CollisionConstraints__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__CollisionConstraints * data = NULL; if (size) { data = (px4_msgs__msg__CollisionConstraints *)calloc(size, sizeof(px4_msgs__msg__CollisionConstraints)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__CollisionConstraints__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__CollisionConstraints__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__CollisionConstraints__Sequence__fini(px4_msgs__msg__CollisionConstraints__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__CollisionConstraints__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__CollisionConstraints__Sequence * px4_msgs__msg__CollisionConstraints__Sequence__create(size_t size) { px4_msgs__msg__CollisionConstraints__Sequence * array = (px4_msgs__msg__CollisionConstraints__Sequence *)malloc(sizeof(px4_msgs__msg__CollisionConstraints__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__CollisionConstraints__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__CollisionConstraints__Sequence__destroy(px4_msgs__msg__CollisionConstraints__Sequence * array) { if (array) { px4_msgs__msg__CollisionConstraints__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_mag_worker_data_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/MagWorkerData.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/mag_worker_data__struct.h" #include "px4_msgs/msg/mag_worker_data__functions.h" #include "rosidl_generator_c/primitives_sequence.h" #include "rosidl_generator_c/primitives_sequence_functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__mag_worker_data__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[44]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._mag_worker_data.MagWorkerData", full_classname_dest, 43) == 0); } px4_msgs__msg__MagWorkerData * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // timestamp_sample PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp_sample"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp_sample = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // done_count PyObject * field = PyObject_GetAttrString(_pymsg, "done_count"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->done_count = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // calibration_points_perside PyObject * field = PyObject_GetAttrString(_pymsg, "calibration_points_perside"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->calibration_points_perside = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // calibration_interval_perside_us PyObject * field = PyObject_GetAttrString(_pymsg, "calibration_interval_perside_us"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->calibration_interval_perside_us = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // calibration_counter_total PyObject * field = PyObject_GetAttrString(_pymsg, "calibration_counter_total"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT32); Py_ssize_t size = 4; uint32_t * dest = ros_message->calibration_counter_total; for (Py_ssize_t i = 0; i < size; ++i) { uint32_t tmp = *(npy_uint32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint32_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // side_data_collected PyObject * field = PyObject_GetAttrString(_pymsg, "side_data_collected"); if (!field) { return false; } PyObject * seq_field = PySequence_Fast(field, "expected a sequence in 'side_data_collected'"); if (!seq_field) { Py_DECREF(field); return false; } Py_ssize_t size = 4; bool * dest = ros_message->side_data_collected; for (Py_ssize_t i = 0; i < size; ++i) { PyObject * item = PySequence_Fast_GET_ITEM(seq_field, i); if (!item) { Py_DECREF(seq_field); Py_DECREF(field); return false; } assert(PyBool_Check(item)); bool tmp = (item == Py_True); memcpy(&dest[i], &tmp, sizeof(bool)); } Py_DECREF(seq_field); Py_DECREF(field); } { // x PyObject * field = PyObject_GetAttrString(_pymsg, "x"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); Py_ssize_t size = 4; float * dest = ros_message->x; for (Py_ssize_t i = 0; i < size; ++i) { float tmp = *(npy_float32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(float)); } Py_DECREF(seq_field); Py_DECREF(field); } { // y PyObject * field = PyObject_GetAttrString(_pymsg, "y"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); Py_ssize_t size = 4; float * dest = ros_message->y; for (Py_ssize_t i = 0; i < size; ++i) { float tmp = *(npy_float32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(float)); } Py_DECREF(seq_field); Py_DECREF(field); } { // z PyObject * field = PyObject_GetAttrString(_pymsg, "z"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); Py_ssize_t size = 4; float * dest = ros_message->z; for (Py_ssize_t i = 0; i < size; ++i) { float tmp = *(npy_float32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(float)); } Py_DECREF(seq_field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__mag_worker_data__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of MagWorkerData */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._mag_worker_data"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "MagWorkerData"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__MagWorkerData * ros_message = (px4_msgs__msg__MagWorkerData *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // timestamp_sample PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp_sample); { int rc = PyObject_SetAttrString(_pymessage, "timestamp_sample", field); Py_DECREF(field); if (rc) { return NULL; } } } { // done_count PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->done_count); { int rc = PyObject_SetAttrString(_pymessage, "done_count", field); Py_DECREF(field); if (rc) { return NULL; } } } { // calibration_points_perside PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->calibration_points_perside); { int rc = PyObject_SetAttrString(_pymessage, "calibration_points_perside", field); Py_DECREF(field); if (rc) { return NULL; } } } { // calibration_interval_perside_us PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->calibration_interval_perside_us); { int rc = PyObject_SetAttrString(_pymessage, "calibration_interval_perside_us", field); Py_DECREF(field); if (rc) { return NULL; } } } { // calibration_counter_total PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "calibration_counter_total"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT32); assert(sizeof(npy_uint32) == sizeof(uint32_t)); npy_uint32 * dst = (npy_uint32 *)PyArray_GETPTR1(seq_field, 0); uint32_t * src = &(ros_message->calibration_counter_total[0]); memcpy(dst, src, 4 * sizeof(uint32_t)); Py_DECREF(field); } { // side_data_collected PyObject * field = NULL; size_t size = 4; bool * src = ros_message->side_data_collected; field = PyList_New(size); if (!field) { return NULL; } for (size_t i = 0; i < size; ++i) { int rc = PyList_SetItem(field, i, PyBool_FromLong(src[i] ? 1 : 0)); (void)rc; assert(rc == 0); } assert(PySequence_Check(field)); { int rc = PyObject_SetAttrString(_pymessage, "side_data_collected", field); Py_DECREF(field); if (rc) { return NULL; } } } { // x PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "x"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); assert(sizeof(npy_float32) == sizeof(float)); npy_float32 * dst = (npy_float32 *)PyArray_GETPTR1(seq_field, 0); float * src = &(ros_message->x[0]); memcpy(dst, src, 4 * sizeof(float)); Py_DECREF(field); } { // y PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "y"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); assert(sizeof(npy_float32) == sizeof(float)); npy_float32 * dst = (npy_float32 *)PyArray_GETPTR1(seq_field, 0); float * src = &(ros_message->y[0]); memcpy(dst, src, 4 * sizeof(float)); Py_DECREF(field); } { // z PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "z"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); assert(sizeof(npy_float32) == sizeof(float)); npy_float32 * dst = (npy_float32 *)PyArray_GETPTR1(seq_field, 0); float * src = &(ros_message->z[0]); memcpy(dst, src, 4 * sizeof(float)); Py_DECREF(field); } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_typesupport_c/px4_msgs/msg/vehicle_local_position__type_support.cpp // generated from rosidl_typesupport_c/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleLocalPosition.idl // generated code does not contain a copyright notice #include "cstddef" #include "rosidl_generator_c/message_type_support_struct.h" #include "px4_msgs/msg/rosidl_typesupport_c__visibility_control.h" #include "px4_msgs/msg/vehicle_local_position__struct.h" #include "rosidl_typesupport_c/visibility_control.h" #include "px4_msgs/msg/vehicle_local_position__rosidl_typesupport_fastrtps_c.h" #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_c, px4_msgs, msg, VehicleLocalPosition)() { return ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, VehicleLocalPosition)(); } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleAngularAccelerationSetpoint.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_angular_acceleration_setpoint__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__VehicleAngularAccelerationSetpoint__init(px4_msgs__msg__VehicleAngularAccelerationSetpoint * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // xyz return true; } void px4_msgs__msg__VehicleAngularAccelerationSetpoint__fini(px4_msgs__msg__VehicleAngularAccelerationSetpoint * msg) { if (!msg) { return; } // timestamp // timestamp_sample // xyz } px4_msgs__msg__VehicleAngularAccelerationSetpoint * px4_msgs__msg__VehicleAngularAccelerationSetpoint__create() { px4_msgs__msg__VehicleAngularAccelerationSetpoint * msg = (px4_msgs__msg__VehicleAngularAccelerationSetpoint *)malloc(sizeof(px4_msgs__msg__VehicleAngularAccelerationSetpoint)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleAngularAccelerationSetpoint)); bool success = px4_msgs__msg__VehicleAngularAccelerationSetpoint__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleAngularAccelerationSetpoint__destroy(px4_msgs__msg__VehicleAngularAccelerationSetpoint * msg) { if (msg) { px4_msgs__msg__VehicleAngularAccelerationSetpoint__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleAngularAccelerationSetpoint__Sequence__init(px4_msgs__msg__VehicleAngularAccelerationSetpoint__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleAngularAccelerationSetpoint * data = NULL; if (size) { data = (px4_msgs__msg__VehicleAngularAccelerationSetpoint *)calloc(size, sizeof(px4_msgs__msg__VehicleAngularAccelerationSetpoint)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleAngularAccelerationSetpoint__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleAngularAccelerationSetpoint__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleAngularAccelerationSetpoint__Sequence__fini(px4_msgs__msg__VehicleAngularAccelerationSetpoint__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleAngularAccelerationSetpoint__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleAngularAccelerationSetpoint__Sequence * px4_msgs__msg__VehicleAngularAccelerationSetpoint__Sequence__create(size_t size) { px4_msgs__msg__VehicleAngularAccelerationSetpoint__Sequence * array = (px4_msgs__msg__VehicleAngularAccelerationSetpoint__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleAngularAccelerationSetpoint__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleAngularAccelerationSetpoint__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleAngularAccelerationSetpoint__Sequence__destroy(px4_msgs__msg__VehicleAngularAccelerationSetpoint__Sequence * array) { if (array) { px4_msgs__msg__VehicleAngularAccelerationSetpoint__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_controls3__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/ActuatorControls3.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/actuator_controls3__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__ActuatorControls3__init(px4_msgs__msg__ActuatorControls3 * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // control return true; } void px4_msgs__msg__ActuatorControls3__fini(px4_msgs__msg__ActuatorControls3 * msg) { if (!msg) { return; } // timestamp // timestamp_sample // control } px4_msgs__msg__ActuatorControls3 * px4_msgs__msg__ActuatorControls3__create() { px4_msgs__msg__ActuatorControls3 * msg = (px4_msgs__msg__ActuatorControls3 *)malloc(sizeof(px4_msgs__msg__ActuatorControls3)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__ActuatorControls3)); bool success = px4_msgs__msg__ActuatorControls3__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__ActuatorControls3__destroy(px4_msgs__msg__ActuatorControls3 * msg) { if (msg) { px4_msgs__msg__ActuatorControls3__fini(msg); } free(msg); } bool px4_msgs__msg__ActuatorControls3__Sequence__init(px4_msgs__msg__ActuatorControls3__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__ActuatorControls3 * data = NULL; if (size) { data = (px4_msgs__msg__ActuatorControls3 *)calloc(size, sizeof(px4_msgs__msg__ActuatorControls3)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__ActuatorControls3__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__ActuatorControls3__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__ActuatorControls3__Sequence__fini(px4_msgs__msg__ActuatorControls3__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__ActuatorControls3__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__ActuatorControls3__Sequence * px4_msgs__msg__ActuatorControls3__Sequence__create(size_t size) { px4_msgs__msg__ActuatorControls3__Sequence * array = (px4_msgs__msg__ActuatorControls3__Sequence *)malloc(sizeof(px4_msgs__msg__ActuatorControls3__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__ActuatorControls3__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__ActuatorControls3__Sequence__destroy(px4_msgs__msg__ActuatorControls3__Sequence * array) { if (array) { px4_msgs__msg__ActuatorControls3__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/adc_report__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/AdcReport.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/adc_report__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__AdcReport__init(px4_msgs__msg__AdcReport * msg) { if (!msg) { return false; } // timestamp // device_id // channel_id // raw_data // resolution // v_ref return true; } void px4_msgs__msg__AdcReport__fini(px4_msgs__msg__AdcReport * msg) { if (!msg) { return; } // timestamp // device_id // channel_id // raw_data // resolution // v_ref } px4_msgs__msg__AdcReport * px4_msgs__msg__AdcReport__create() { px4_msgs__msg__AdcReport * msg = (px4_msgs__msg__AdcReport *)malloc(sizeof(px4_msgs__msg__AdcReport)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__AdcReport)); bool success = px4_msgs__msg__AdcReport__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__AdcReport__destroy(px4_msgs__msg__AdcReport * msg) { if (msg) { px4_msgs__msg__AdcReport__fini(msg); } free(msg); } bool px4_msgs__msg__AdcReport__Sequence__init(px4_msgs__msg__AdcReport__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__AdcReport * data = NULL; if (size) { data = (px4_msgs__msg__AdcReport *)calloc(size, sizeof(px4_msgs__msg__AdcReport)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__AdcReport__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__AdcReport__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__AdcReport__Sequence__fini(px4_msgs__msg__AdcReport__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__AdcReport__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__AdcReport__Sequence * px4_msgs__msg__AdcReport__Sequence__create(size_t size) { px4_msgs__msg__AdcReport__Sequence * array = (px4_msgs__msg__AdcReport__Sequence *)malloc(sizeof(px4_msgs__msg__AdcReport__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__AdcReport__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__AdcReport__Sequence__destroy(px4_msgs__msg__AdcReport__Sequence * array) { if (array) { px4_msgs__msg__AdcReport__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/mavlink_log__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/MavlinkLog.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__MAVLINK_LOG__STRUCT_H_ #define PX4_MSGS__MSG__MAVLINK_LOG__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'ORB_QUEUE_LENGTH'. enum { px4_msgs__msg__MavlinkLog__ORB_QUEUE_LENGTH = 8 }; // Struct defined in msg/MavlinkLog in the package px4_msgs. typedef struct px4_msgs__msg__MavlinkLog { uint64_t timestamp; uint8_t text[127]; uint8_t severity; } px4_msgs__msg__MavlinkLog; // Struct for a sequence of px4_msgs__msg__MavlinkLog. typedef struct px4_msgs__msg__MavlinkLog__Sequence { px4_msgs__msg__MavlinkLog * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__MavlinkLog__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__MAVLINK_LOG__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/timesync_status__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/TimesyncStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TIMESYNC_STATUS__STRUCT_H_ #define PX4_MSGS__MSG__TIMESYNC_STATUS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/TimesyncStatus in the package px4_msgs. typedef struct px4_msgs__msg__TimesyncStatus { uint64_t timestamp; uint64_t remote_timestamp; int64_t observed_offset; int64_t estimated_offset; uint32_t round_trip_time; } px4_msgs__msg__TimesyncStatus; // Struct for a sequence of px4_msgs__msg__TimesyncStatus. typedef struct px4_msgs__msg__TimesyncStatus__Sequence { px4_msgs__msg__TimesyncStatus * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__TimesyncStatus__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__TIMESYNC_STATUS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_local_position_setpoint.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleLocalPositionSetpoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_SETPOINT_H_ #define PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_SETPOINT_H_ #include "px4_msgs/msg/vehicle_local_position_setpoint__struct.h" #include "px4_msgs/msg/vehicle_local_position_setpoint__functions.h" #include "px4_msgs/msg/vehicle_local_position_setpoint__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_SETPOINT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_rates_setpoint__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleRatesSetpoint.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_rates_setpoint__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__VehicleRatesSetpoint__init(px4_msgs__msg__VehicleRatesSetpoint * msg) { if (!msg) { return false; } // timestamp // roll // pitch // yaw // thrust_body return true; } void px4_msgs__msg__VehicleRatesSetpoint__fini(px4_msgs__msg__VehicleRatesSetpoint * msg) { if (!msg) { return; } // timestamp // roll // pitch // yaw // thrust_body } px4_msgs__msg__VehicleRatesSetpoint * px4_msgs__msg__VehicleRatesSetpoint__create() { px4_msgs__msg__VehicleRatesSetpoint * msg = (px4_msgs__msg__VehicleRatesSetpoint *)malloc(sizeof(px4_msgs__msg__VehicleRatesSetpoint)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleRatesSetpoint)); bool success = px4_msgs__msg__VehicleRatesSetpoint__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleRatesSetpoint__destroy(px4_msgs__msg__VehicleRatesSetpoint * msg) { if (msg) { px4_msgs__msg__VehicleRatesSetpoint__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleRatesSetpoint__Sequence__init(px4_msgs__msg__VehicleRatesSetpoint__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleRatesSetpoint * data = NULL; if (size) { data = (px4_msgs__msg__VehicleRatesSetpoint *)calloc(size, sizeof(px4_msgs__msg__VehicleRatesSetpoint)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleRatesSetpoint__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleRatesSetpoint__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleRatesSetpoint__Sequence__fini(px4_msgs__msg__VehicleRatesSetpoint__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleRatesSetpoint__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleRatesSetpoint__Sequence * px4_msgs__msg__VehicleRatesSetpoint__Sequence__create(size_t size) { px4_msgs__msg__VehicleRatesSetpoint__Sequence * array = (px4_msgs__msg__VehicleRatesSetpoint__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleRatesSetpoint__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleRatesSetpoint__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleRatesSetpoint__Sequence__destroy(px4_msgs__msg__VehicleRatesSetpoint__Sequence * array) { if (array) { px4_msgs__msg__VehicleRatesSetpoint__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/estimator_innovation_variances.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_INNOVATION_VARIANCES_HPP_ #define PX4_MSGS__MSG__ESTIMATOR_INNOVATION_VARIANCES_HPP_ #include "px4_msgs/msg/estimator_innovation_variances__struct.hpp" #include "px4_msgs/msg/estimator_innovation_variances__traits.hpp" #endif // PX4_MSGS__MSG__ESTIMATOR_INNOVATION_VARIANCES_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission_result__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/MissionResult.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/mission_result__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/mission_result__struct.h" #include "px4_msgs/msg/mission_result__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _MissionResult__ros_msg_type = px4_msgs__msg__MissionResult; static bool _MissionResult__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _MissionResult__ros_msg_type * ros_message = static_cast<const _MissionResult__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: instance_count { cdr << ros_message->instance_count; } // Field name: seq_reached { cdr << ros_message->seq_reached; } // Field name: seq_current { cdr << ros_message->seq_current; } // Field name: seq_total { cdr << ros_message->seq_total; } // Field name: valid { cdr << (ros_message->valid ? true : false); } // Field name: warning { cdr << (ros_message->warning ? true : false); } // Field name: finished { cdr << (ros_message->finished ? true : false); } // Field name: failure { cdr << (ros_message->failure ? true : false); } // Field name: stay_in_failsafe { cdr << (ros_message->stay_in_failsafe ? true : false); } // Field name: flight_termination { cdr << (ros_message->flight_termination ? true : false); } // Field name: item_do_jump_changed { cdr << (ros_message->item_do_jump_changed ? true : false); } // Field name: item_changed_index { cdr << ros_message->item_changed_index; } // Field name: item_do_jump_remaining { cdr << ros_message->item_do_jump_remaining; } // Field name: execution_mode { cdr << ros_message->execution_mode; } return true; } static bool _MissionResult__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _MissionResult__ros_msg_type * ros_message = static_cast<_MissionResult__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: instance_count { cdr >> ros_message->instance_count; } // Field name: seq_reached { cdr >> ros_message->seq_reached; } // Field name: seq_current { cdr >> ros_message->seq_current; } // Field name: seq_total { cdr >> ros_message->seq_total; } // Field name: valid { uint8_t tmp; cdr >> tmp; ros_message->valid = tmp ? true : false; } // Field name: warning { uint8_t tmp; cdr >> tmp; ros_message->warning = tmp ? true : false; } // Field name: finished { uint8_t tmp; cdr >> tmp; ros_message->finished = tmp ? true : false; } // Field name: failure { uint8_t tmp; cdr >> tmp; ros_message->failure = tmp ? true : false; } // Field name: stay_in_failsafe { uint8_t tmp; cdr >> tmp; ros_message->stay_in_failsafe = tmp ? true : false; } // Field name: flight_termination { uint8_t tmp; cdr >> tmp; ros_message->flight_termination = tmp ? true : false; } // Field name: item_do_jump_changed { uint8_t tmp; cdr >> tmp; ros_message->item_do_jump_changed = tmp ? true : false; } // Field name: item_changed_index { cdr >> ros_message->item_changed_index; } // Field name: item_do_jump_remaining { cdr >> ros_message->item_do_jump_remaining; } // Field name: execution_mode { cdr >> ros_message->execution_mode; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__MissionResult( const void * untyped_ros_message, size_t current_alignment) { const _MissionResult__ros_msg_type * ros_message = static_cast<const _MissionResult__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name instance_count { size_t item_size = sizeof(ros_message->instance_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name seq_reached { size_t item_size = sizeof(ros_message->seq_reached); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name seq_current { size_t item_size = sizeof(ros_message->seq_current); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name seq_total { size_t item_size = sizeof(ros_message->seq_total); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name valid { size_t item_size = sizeof(ros_message->valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name warning { size_t item_size = sizeof(ros_message->warning); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name finished { size_t item_size = sizeof(ros_message->finished); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name failure { size_t item_size = sizeof(ros_message->failure); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name stay_in_failsafe { size_t item_size = sizeof(ros_message->stay_in_failsafe); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name flight_termination { size_t item_size = sizeof(ros_message->flight_termination); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name item_do_jump_changed { size_t item_size = sizeof(ros_message->item_do_jump_changed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name item_changed_index { size_t item_size = sizeof(ros_message->item_changed_index); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name item_do_jump_remaining { size_t item_size = sizeof(ros_message->item_do_jump_remaining); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name execution_mode { size_t item_size = sizeof(ros_message->execution_mode); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _MissionResult__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__MissionResult( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__MissionResult( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: instance_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: seq_reached { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: seq_current { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: seq_total { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: warning { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: finished { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: failure { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: stay_in_failsafe { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: flight_termination { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: item_do_jump_changed { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: item_changed_index { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: item_do_jump_remaining { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: execution_mode { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _MissionResult__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__MissionResult( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_MissionResult = { "px4_msgs::msg", "MissionResult", _MissionResult__cdr_serialize, _MissionResult__cdr_deserialize, _MissionResult__get_serialized_size, _MissionResult__max_serialized_size }; static rosidl_message_type_support_t _MissionResult__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_MissionResult, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, MissionResult)() { return &_MissionResult__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_obstacle_distance.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/ObstacleDistance.idl # generated code does not contain a copyright notice # Import statements for member types # Member 'distances' import numpy # noqa: E402, I100 import rosidl_parser.definition # noqa: E402, I100 class Metaclass_ObstacleDistance(type): """Metaclass of message 'ObstacleDistance'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'MAV_FRAME_GLOBAL': 0, 'MAV_FRAME_LOCAL_NED': 1, 'MAV_FRAME_BODY_FRD': 12, 'MAV_DISTANCE_SENSOR_LASER': 0, 'MAV_DISTANCE_SENSOR_ULTRASOUND': 1, 'MAV_DISTANCE_SENSOR_INFRARED': 2, 'MAV_DISTANCE_SENSOR_RADAR': 3, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.ObstacleDistance') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__obstacle_distance cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__obstacle_distance cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__obstacle_distance cls._TYPE_SUPPORT = module.type_support_msg__msg__obstacle_distance cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__obstacle_distance @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'MAV_FRAME_GLOBAL': cls.__constants['MAV_FRAME_GLOBAL'], 'MAV_FRAME_LOCAL_NED': cls.__constants['MAV_FRAME_LOCAL_NED'], 'MAV_FRAME_BODY_FRD': cls.__constants['MAV_FRAME_BODY_FRD'], 'MAV_DISTANCE_SENSOR_LASER': cls.__constants['MAV_DISTANCE_SENSOR_LASER'], 'MAV_DISTANCE_SENSOR_ULTRASOUND': cls.__constants['MAV_DISTANCE_SENSOR_ULTRASOUND'], 'MAV_DISTANCE_SENSOR_INFRARED': cls.__constants['MAV_DISTANCE_SENSOR_INFRARED'], 'MAV_DISTANCE_SENSOR_RADAR': cls.__constants['MAV_DISTANCE_SENSOR_RADAR'], } @property def MAV_FRAME_GLOBAL(self): """Message constant 'MAV_FRAME_GLOBAL'.""" return Metaclass_ObstacleDistance.__constants['MAV_FRAME_GLOBAL'] @property def MAV_FRAME_LOCAL_NED(self): """Message constant 'MAV_FRAME_LOCAL_NED'.""" return Metaclass_ObstacleDistance.__constants['MAV_FRAME_LOCAL_NED'] @property def MAV_FRAME_BODY_FRD(self): """Message constant 'MAV_FRAME_BODY_FRD'.""" return Metaclass_ObstacleDistance.__constants['MAV_FRAME_BODY_FRD'] @property def MAV_DISTANCE_SENSOR_LASER(self): """Message constant 'MAV_DISTANCE_SENSOR_LASER'.""" return Metaclass_ObstacleDistance.__constants['MAV_DISTANCE_SENSOR_LASER'] @property def MAV_DISTANCE_SENSOR_ULTRASOUND(self): """Message constant 'MAV_DISTANCE_SENSOR_ULTRASOUND'.""" return Metaclass_ObstacleDistance.__constants['MAV_DISTANCE_SENSOR_ULTRASOUND'] @property def MAV_DISTANCE_SENSOR_INFRARED(self): """Message constant 'MAV_DISTANCE_SENSOR_INFRARED'.""" return Metaclass_ObstacleDistance.__constants['MAV_DISTANCE_SENSOR_INFRARED'] @property def MAV_DISTANCE_SENSOR_RADAR(self): """Message constant 'MAV_DISTANCE_SENSOR_RADAR'.""" return Metaclass_ObstacleDistance.__constants['MAV_DISTANCE_SENSOR_RADAR'] class ObstacleDistance(metaclass=Metaclass_ObstacleDistance): """ Message class 'ObstacleDistance'. Constants: MAV_FRAME_GLOBAL MAV_FRAME_LOCAL_NED MAV_FRAME_BODY_FRD MAV_DISTANCE_SENSOR_LASER MAV_DISTANCE_SENSOR_ULTRASOUND MAV_DISTANCE_SENSOR_INFRARED MAV_DISTANCE_SENSOR_RADAR """ __slots__ = [ '_timestamp', '_frame', '_sensor_type', '_distances', '_increment', '_min_distance', '_max_distance', '_angle_offset', ] _fields_and_field_types = { 'timestamp': 'uint64', 'frame': 'uint8', 'sensor_type': 'uint8', 'distances': 'uint16[72]', 'increment': 'float', 'min_distance': 'uint16', 'max_distance': 'uint16', 'angle_offset': 'float', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('uint16'), 72), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.frame = kwargs.get('frame', int()) self.sensor_type = kwargs.get('sensor_type', int()) if 'distances' not in kwargs: self.distances = numpy.zeros(72, dtype=numpy.uint16) else: self.distances = numpy.array(kwargs.get('distances'), dtype=numpy.uint16) assert self.distances.shape == (72, ) self.increment = kwargs.get('increment', float()) self.min_distance = kwargs.get('min_distance', int()) self.max_distance = kwargs.get('max_distance', int()) self.angle_offset = kwargs.get('angle_offset', float()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.frame != other.frame: return False if self.sensor_type != other.sensor_type: return False if all(self.distances != other.distances): return False if self.increment != other.increment: return False if self.min_distance != other.min_distance: return False if self.max_distance != other.max_distance: return False if self.angle_offset != other.angle_offset: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def frame(self): """Message field 'frame'.""" return self._frame @frame.setter def frame(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'frame' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'frame' field must be an unsigned integer in [0, 255]" self._frame = value @property def sensor_type(self): """Message field 'sensor_type'.""" return self._sensor_type @sensor_type.setter def sensor_type(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'sensor_type' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'sensor_type' field must be an unsigned integer in [0, 255]" self._sensor_type = value @property def distances(self): """Message field 'distances'.""" return self._distances @distances.setter def distances(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.uint16, \ "The 'distances' numpy.ndarray() must have the dtype of 'numpy.uint16'" assert value.size == 72, \ "The 'distances' numpy.ndarray() must have a size of 72" self._distances = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 72 and all(isinstance(v, int) for v in value) and all(val >= 0 and val < 65536 for val in value)), \ "The 'distances' field must be a set or sequence with length 72 and each value of type 'int' and each unsigned integer in [0, 65535]" self._distances = numpy.array(value, dtype=numpy.uint16) @property def increment(self): """Message field 'increment'.""" return self._increment @increment.setter def increment(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'increment' field must be of type 'float'" self._increment = value @property def min_distance(self): """Message field 'min_distance'.""" return self._min_distance @min_distance.setter def min_distance(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'min_distance' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'min_distance' field must be an unsigned integer in [0, 65535]" self._min_distance = value @property def max_distance(self): """Message field 'max_distance'.""" return self._max_distance @max_distance.setter def max_distance(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'max_distance' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'max_distance' field must be an unsigned integer in [0, 65535]" self._max_distance = value @property def angle_offset(self): """Message field 'angle_offset'.""" return self._angle_offset @angle_offset.setter def angle_offset(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'angle_offset' field must be of type 'float'" self._angle_offset = value <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_optical_flow_vel__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/EstimatorOpticalFlowVel.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/estimator_optical_flow_vel__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void EstimatorOpticalFlowVel_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::EstimatorOpticalFlowVel(_init); } void EstimatorOpticalFlowVel_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::EstimatorOpticalFlowVel *>(message_memory); typed_message->~EstimatorOpticalFlowVel(); } size_t size_function__EstimatorOpticalFlowVel__vel_body(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__EstimatorOpticalFlowVel__vel_body(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__EstimatorOpticalFlowVel__vel_body(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorOpticalFlowVel__vel_ne(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__EstimatorOpticalFlowVel__vel_ne(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__EstimatorOpticalFlowVel__vel_ne(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorOpticalFlowVel__flow_uncompensated_integral(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__EstimatorOpticalFlowVel__flow_uncompensated_integral(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__EstimatorOpticalFlowVel__flow_uncompensated_integral(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorOpticalFlowVel__flow_compensated_integral(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__EstimatorOpticalFlowVel__flow_compensated_integral(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__EstimatorOpticalFlowVel__flow_compensated_integral(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorOpticalFlowVel__gyro_rate_integral(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__EstimatorOpticalFlowVel__gyro_rate_integral(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__EstimatorOpticalFlowVel__gyro_rate_integral(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember EstimatorOpticalFlowVel_message_member_array[7] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorOpticalFlowVel, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorOpticalFlowVel, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vel_body", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorOpticalFlowVel, vel_body), // bytes offset in struct nullptr, // default value size_function__EstimatorOpticalFlowVel__vel_body, // size() function pointer get_const_function__EstimatorOpticalFlowVel__vel_body, // get_const(index) function pointer get_function__EstimatorOpticalFlowVel__vel_body, // get(index) function pointer nullptr // resize(index) function pointer }, { "vel_ne", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorOpticalFlowVel, vel_ne), // bytes offset in struct nullptr, // default value size_function__EstimatorOpticalFlowVel__vel_ne, // size() function pointer get_const_function__EstimatorOpticalFlowVel__vel_ne, // get_const(index) function pointer get_function__EstimatorOpticalFlowVel__vel_ne, // get(index) function pointer nullptr // resize(index) function pointer }, { "flow_uncompensated_integral", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorOpticalFlowVel, flow_uncompensated_integral), // bytes offset in struct nullptr, // default value size_function__EstimatorOpticalFlowVel__flow_uncompensated_integral, // size() function pointer get_const_function__EstimatorOpticalFlowVel__flow_uncompensated_integral, // get_const(index) function pointer get_function__EstimatorOpticalFlowVel__flow_uncompensated_integral, // get(index) function pointer nullptr // resize(index) function pointer }, { "flow_compensated_integral", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorOpticalFlowVel, flow_compensated_integral), // bytes offset in struct nullptr, // default value size_function__EstimatorOpticalFlowVel__flow_compensated_integral, // size() function pointer get_const_function__EstimatorOpticalFlowVel__flow_compensated_integral, // get_const(index) function pointer get_function__EstimatorOpticalFlowVel__flow_compensated_integral, // get(index) function pointer nullptr // resize(index) function pointer }, { "gyro_rate_integral", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorOpticalFlowVel, gyro_rate_integral), // bytes offset in struct nullptr, // default value size_function__EstimatorOpticalFlowVel__gyro_rate_integral, // size() function pointer get_const_function__EstimatorOpticalFlowVel__gyro_rate_integral, // get_const(index) function pointer get_function__EstimatorOpticalFlowVel__gyro_rate_integral, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers EstimatorOpticalFlowVel_message_members = { "px4_msgs::msg", // message namespace "EstimatorOpticalFlowVel", // message name 7, // number of fields sizeof(px4_msgs::msg::EstimatorOpticalFlowVel), EstimatorOpticalFlowVel_message_member_array, // message members EstimatorOpticalFlowVel_init_function, // function to initialize message memory (memory has to be allocated) EstimatorOpticalFlowVel_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t EstimatorOpticalFlowVel_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &EstimatorOpticalFlowVel_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::EstimatorOpticalFlowVel>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EstimatorOpticalFlowVel_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, EstimatorOpticalFlowVel)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EstimatorOpticalFlowVel_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/estimator_innovation_test_ratios.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_INNOVATION_TEST_RATIOS_HPP_ #define PX4_MSGS__MSG__ESTIMATOR_INNOVATION_TEST_RATIOS_HPP_ #include "px4_msgs/msg/estimator_innovation_test_ratios__struct.hpp" #include "px4_msgs/msg/estimator_innovation_test_ratios__traits.hpp" #endif // PX4_MSGS__MSG__ESTIMATOR_INNOVATION_TEST_RATIOS_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/position_setpoint.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/PositionSetpoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__POSITION_SETPOINT_H_ #define PX4_MSGS__MSG__POSITION_SETPOINT_H_ #include "px4_msgs/msg/position_setpoint__struct.h" #include "px4_msgs/msg/position_setpoint__functions.h" #include "px4_msgs/msg/position_setpoint__type_support.h" #endif // PX4_MSGS__MSG__POSITION_SETPOINT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_setpoint__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/TrajectorySetpoint.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/trajectory_setpoint__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/trajectory_setpoint__functions.h" #include "px4_msgs/msg/trajectory_setpoint__struct.h" #ifdef __cplusplus extern "C" { #endif void TrajectorySetpoint__rosidl_typesupport_introspection_c__TrajectorySetpoint_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__TrajectorySetpoint__init(message_memory); } void TrajectorySetpoint__rosidl_typesupport_introspection_c__TrajectorySetpoint_fini_function(void * message_memory) { px4_msgs__msg__TrajectorySetpoint__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember TrajectorySetpoint__rosidl_typesupport_introspection_c__TrajectorySetpoint_message_member_array[12] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TrajectorySetpoint, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "x", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TrajectorySetpoint, x), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "y", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TrajectorySetpoint, y), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "z", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TrajectorySetpoint, z), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yaw", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TrajectorySetpoint, yaw), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yawspeed", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TrajectorySetpoint, yawspeed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vx", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TrajectorySetpoint, vx), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vy", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TrajectorySetpoint, vy), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vz", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TrajectorySetpoint, vz), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "acceleration", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__TrajectorySetpoint, acceleration), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "jerk", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__TrajectorySetpoint, jerk), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "thrust", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__TrajectorySetpoint, thrust), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers TrajectorySetpoint__rosidl_typesupport_introspection_c__TrajectorySetpoint_message_members = { "px4_msgs__msg", // message namespace "TrajectorySetpoint", // message name 12, // number of fields sizeof(px4_msgs__msg__TrajectorySetpoint), TrajectorySetpoint__rosidl_typesupport_introspection_c__TrajectorySetpoint_message_member_array, // message members TrajectorySetpoint__rosidl_typesupport_introspection_c__TrajectorySetpoint_init_function, // function to initialize message memory (memory has to be allocated) TrajectorySetpoint__rosidl_typesupport_introspection_c__TrajectorySetpoint_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t TrajectorySetpoint__rosidl_typesupport_introspection_c__TrajectorySetpoint_message_type_support_handle = { 0, &TrajectorySetpoint__rosidl_typesupport_introspection_c__TrajectorySetpoint_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, TrajectorySetpoint)() { if (!TrajectorySetpoint__rosidl_typesupport_introspection_c__TrajectorySetpoint_message_type_support_handle.typesupport_identifier) { TrajectorySetpoint__rosidl_typesupport_introspection_c__TrajectorySetpoint_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &TrajectorySetpoint__rosidl_typesupport_introspection_c__TrajectorySetpoint_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_imu_status__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleImuStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_IMU_STATUS__FUNCTIONS_H_ #define PX4_MSGS__MSG__VEHICLE_IMU_STATUS__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/vehicle_imu_status__struct.h" /// Initialize msg/VehicleImuStatus message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__VehicleImuStatus * )) before or use * px4_msgs__msg__VehicleImuStatus__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__VehicleImuStatus__init(px4_msgs__msg__VehicleImuStatus * msg); /// Finalize msg/VehicleImuStatus message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleImuStatus__fini(px4_msgs__msg__VehicleImuStatus * msg); /// Create msg/VehicleImuStatus message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__VehicleImuStatus__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__VehicleImuStatus * px4_msgs__msg__VehicleImuStatus__create(); /// Destroy msg/VehicleImuStatus message. /** * It calls * px4_msgs__msg__VehicleImuStatus__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleImuStatus__destroy(px4_msgs__msg__VehicleImuStatus * msg); /// Initialize array of msg/VehicleImuStatus messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__VehicleImuStatus__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__VehicleImuStatus__Sequence__init(px4_msgs__msg__VehicleImuStatus__Sequence * array, size_t size); /// Finalize array of msg/VehicleImuStatus messages. /** * It calls * px4_msgs__msg__VehicleImuStatus__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleImuStatus__Sequence__fini(px4_msgs__msg__VehicleImuStatus__Sequence * array); /// Create array of msg/VehicleImuStatus messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__VehicleImuStatus__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__VehicleImuStatus__Sequence * px4_msgs__msg__VehicleImuStatus__Sequence__create(size_t size); /// Destroy array of msg/VehicleImuStatus messages. /** * It calls * px4_msgs__msg__VehicleImuStatus__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleImuStatus__Sequence__destroy(px4_msgs__msg__VehicleImuStatus__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_IMU_STATUS__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_parameter_update_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/ParameterUpdate.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/parameter_update__struct.h" #include "px4_msgs/msg/parameter_update__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__parameter_update__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[47]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._parameter_update.ParameterUpdate", full_classname_dest, 46) == 0); } px4_msgs__msg__ParameterUpdate * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // instance PyObject * field = PyObject_GetAttrString(_pymsg, "instance"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->instance = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // get_count PyObject * field = PyObject_GetAttrString(_pymsg, "get_count"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->get_count = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // set_count PyObject * field = PyObject_GetAttrString(_pymsg, "set_count"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->set_count = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // find_count PyObject * field = PyObject_GetAttrString(_pymsg, "find_count"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->find_count = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // export_count PyObject * field = PyObject_GetAttrString(_pymsg, "export_count"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->export_count = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // active PyObject * field = PyObject_GetAttrString(_pymsg, "active"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->active = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // changed PyObject * field = PyObject_GetAttrString(_pymsg, "changed"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->changed = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // custom_default PyObject * field = PyObject_GetAttrString(_pymsg, "custom_default"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->custom_default = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__parameter_update__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of ParameterUpdate */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._parameter_update"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "ParameterUpdate"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__ParameterUpdate * ros_message = (px4_msgs__msg__ParameterUpdate *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // instance PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->instance); { int rc = PyObject_SetAttrString(_pymessage, "instance", field); Py_DECREF(field); if (rc) { return NULL; } } } { // get_count PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->get_count); { int rc = PyObject_SetAttrString(_pymessage, "get_count", field); Py_DECREF(field); if (rc) { return NULL; } } } { // set_count PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->set_count); { int rc = PyObject_SetAttrString(_pymessage, "set_count", field); Py_DECREF(field); if (rc) { return NULL; } } } { // find_count PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->find_count); { int rc = PyObject_SetAttrString(_pymessage, "find_count", field); Py_DECREF(field); if (rc) { return NULL; } } } { // export_count PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->export_count); { int rc = PyObject_SetAttrString(_pymessage, "export_count", field); Py_DECREF(field); if (rc) { return NULL; } } } { // active PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->active); { int rc = PyObject_SetAttrString(_pymessage, "active", field); Py_DECREF(field); if (rc) { return NULL; } } } { // changed PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->changed); { int rc = PyObject_SetAttrString(_pymessage, "changed", field); Py_DECREF(field); if (rc) { return NULL; } } } { // custom_default PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->custom_default); { int rc = PyObject_SetAttrString(_pymessage, "custom_default", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_odometry__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/EstimatorOdometry.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/estimator_odometry__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__EstimatorOdometry__init(px4_msgs__msg__EstimatorOdometry * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // local_frame // x // y // z // q // q_offset // pose_covariance // velocity_frame // vx // vy // vz // rollspeed // pitchspeed // yawspeed // velocity_covariance return true; } void px4_msgs__msg__EstimatorOdometry__fini(px4_msgs__msg__EstimatorOdometry * msg) { if (!msg) { return; } // timestamp // timestamp_sample // local_frame // x // y // z // q // q_offset // pose_covariance // velocity_frame // vx // vy // vz // rollspeed // pitchspeed // yawspeed // velocity_covariance } px4_msgs__msg__EstimatorOdometry * px4_msgs__msg__EstimatorOdometry__create() { px4_msgs__msg__EstimatorOdometry * msg = (px4_msgs__msg__EstimatorOdometry *)malloc(sizeof(px4_msgs__msg__EstimatorOdometry)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__EstimatorOdometry)); bool success = px4_msgs__msg__EstimatorOdometry__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__EstimatorOdometry__destroy(px4_msgs__msg__EstimatorOdometry * msg) { if (msg) { px4_msgs__msg__EstimatorOdometry__fini(msg); } free(msg); } bool px4_msgs__msg__EstimatorOdometry__Sequence__init(px4_msgs__msg__EstimatorOdometry__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__EstimatorOdometry * data = NULL; if (size) { data = (px4_msgs__msg__EstimatorOdometry *)calloc(size, sizeof(px4_msgs__msg__EstimatorOdometry)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__EstimatorOdometry__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__EstimatorOdometry__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__EstimatorOdometry__Sequence__fini(px4_msgs__msg__EstimatorOdometry__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__EstimatorOdometry__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__EstimatorOdometry__Sequence * px4_msgs__msg__EstimatorOdometry__Sequence__create(size_t size) { px4_msgs__msg__EstimatorOdometry__Sequence * array = (px4_msgs__msg__EstimatorOdometry__Sequence *)malloc(sizeof(px4_msgs__msg__EstimatorOdometry__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__EstimatorOdometry__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__EstimatorOdometry__Sequence__destroy(px4_msgs__msg__EstimatorOdometry__Sequence * array) { if (array) { px4_msgs__msg__EstimatorOdometry__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/airspeed_wind__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/AirspeedWind.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/airspeed_wind__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__AirspeedWind__init(px4_msgs__msg__AirspeedWind * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // windspeed_north // windspeed_east // variance_north // variance_east // tas_innov // tas_innov_var // tas_scale // beta_innov // beta_innov_var // source return true; } void px4_msgs__msg__AirspeedWind__fini(px4_msgs__msg__AirspeedWind * msg) { if (!msg) { return; } // timestamp // timestamp_sample // windspeed_north // windspeed_east // variance_north // variance_east // tas_innov // tas_innov_var // tas_scale // beta_innov // beta_innov_var // source } px4_msgs__msg__AirspeedWind * px4_msgs__msg__AirspeedWind__create() { px4_msgs__msg__AirspeedWind * msg = (px4_msgs__msg__AirspeedWind *)malloc(sizeof(px4_msgs__msg__AirspeedWind)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__AirspeedWind)); bool success = px4_msgs__msg__AirspeedWind__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__AirspeedWind__destroy(px4_msgs__msg__AirspeedWind * msg) { if (msg) { px4_msgs__msg__AirspeedWind__fini(msg); } free(msg); } bool px4_msgs__msg__AirspeedWind__Sequence__init(px4_msgs__msg__AirspeedWind__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__AirspeedWind * data = NULL; if (size) { data = (px4_msgs__msg__AirspeedWind *)calloc(size, sizeof(px4_msgs__msg__AirspeedWind)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__AirspeedWind__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__AirspeedWind__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__AirspeedWind__Sequence__fini(px4_msgs__msg__AirspeedWind__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__AirspeedWind__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__AirspeedWind__Sequence * px4_msgs__msg__AirspeedWind__Sequence__create(size_t size) { px4_msgs__msg__AirspeedWind__Sequence * array = (px4_msgs__msg__AirspeedWind__Sequence *)malloc(sizeof(px4_msgs__msg__AirspeedWind__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__AirspeedWind__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__AirspeedWind__Sequence__destroy(px4_msgs__msg__AirspeedWind__Sequence * array) { if (array) { px4_msgs__msg__AirspeedWind__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/rc_channels__rosidl_typesupport_fastrtps_c.h // generated from rosidl_typesupport_fastrtps_c/resource/idl__rosidl_typesupport_fastrtps_c.h.em // with input from px4_msgs:msg/RcChannels.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__RC_CHANNELS__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #define PX4_MSGS__MSG__RC_CHANNELS__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #include <stddef.h> #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__RcChannels( const void * untyped_ros_message, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__RcChannels( bool & full_bounded, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, RcChannels)(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__RC_CHANNELS__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_qshell_req.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/QshellReq.idl # generated code does not contain a copyright notice # Import statements for member types # Member 'cmd' import numpy # noqa: E402, I100 import rosidl_parser.definition # noqa: E402, I100 class Metaclass_QshellReq(type): """Metaclass of message 'QshellReq'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'MAX_STRLEN': 100, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.QshellReq') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__qshell_req cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__qshell_req cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__qshell_req cls._TYPE_SUPPORT = module.type_support_msg__msg__qshell_req cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__qshell_req @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'MAX_STRLEN': cls.__constants['MAX_STRLEN'], } @property def MAX_STRLEN(self): """Message constant 'MAX_STRLEN'.""" return Metaclass_QshellReq.__constants['MAX_STRLEN'] class QshellReq(metaclass=Metaclass_QshellReq): """ Message class 'QshellReq'. Constants: MAX_STRLEN """ __slots__ = [ '_timestamp', '_cmd', '_strlen', '_request_sequence', ] _fields_and_field_types = { 'timestamp': 'uint64', 'cmd': 'uint8[100]', 'strlen': 'uint32', 'request_sequence': 'uint32', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('uint8'), 100), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) if 'cmd' not in kwargs: self.cmd = numpy.zeros(100, dtype=numpy.uint8) else: self.cmd = numpy.array(kwargs.get('cmd'), dtype=numpy.uint8) assert self.cmd.shape == (100, ) self.strlen = kwargs.get('strlen', int()) self.request_sequence = kwargs.get('request_sequence', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if all(self.cmd != other.cmd): return False if self.strlen != other.strlen: return False if self.request_sequence != other.request_sequence: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def cmd(self): """Message field 'cmd'.""" return self._cmd @cmd.setter def cmd(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.uint8, \ "The 'cmd' numpy.ndarray() must have the dtype of 'numpy.uint8'" assert value.size == 100, \ "The 'cmd' numpy.ndarray() must have a size of 100" self._cmd = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 100 and all(isinstance(v, int) for v in value) and all(val >= 0 and val < 256 for val in value)), \ "The 'cmd' field must be a set or sequence with length 100 and each value of type 'int' and each unsigned integer in [0, 255]" self._cmd = numpy.array(value, dtype=numpy.uint8) @property def strlen(self): """Message field 'strlen'.""" return self._strlen @strlen.setter def strlen(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'strlen' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'strlen' field must be an unsigned integer in [0, 4294967295]" self._strlen = value @property def request_sequence(self): """Message field 'request_sequence'.""" return self._request_sequence @request_sequence.setter def request_sequence(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'request_sequence' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'request_sequence' field must be an unsigned integer in [0, 4294967295]" self._request_sequence = value <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/radio_status__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/RadioStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__RADIO_STATUS__STRUCT_HPP_ #define PX4_MSGS__MSG__RADIO_STATUS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__RadioStatus __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__RadioStatus __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct RadioStatus_ { using Type = RadioStatus_<ContainerAllocator>; explicit RadioStatus_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->rssi = 0; this->remote_rssi = 0; this->txbuf = 0; this->noise = 0; this->remote_noise = 0; this->rxerrors = 0; this->fix = 0; } } explicit RadioStatus_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->rssi = 0; this->remote_rssi = 0; this->txbuf = 0; this->noise = 0; this->remote_noise = 0; this->rxerrors = 0; this->fix = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _rssi_type = uint8_t; _rssi_type rssi; using _remote_rssi_type = uint8_t; _remote_rssi_type remote_rssi; using _txbuf_type = uint8_t; _txbuf_type txbuf; using _noise_type = uint8_t; _noise_type noise; using _remote_noise_type = uint8_t; _remote_noise_type remote_noise; using _rxerrors_type = uint16_t; _rxerrors_type rxerrors; using _fix_type = uint16_t; _fix_type fix; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__rssi( const uint8_t & _arg) { this->rssi = _arg; return *this; } Type & set__remote_rssi( const uint8_t & _arg) { this->remote_rssi = _arg; return *this; } Type & set__txbuf( const uint8_t & _arg) { this->txbuf = _arg; return *this; } Type & set__noise( const uint8_t & _arg) { this->noise = _arg; return *this; } Type & set__remote_noise( const uint8_t & _arg) { this->remote_noise = _arg; return *this; } Type & set__rxerrors( const uint16_t & _arg) { this->rxerrors = _arg; return *this; } Type & set__fix( const uint16_t & _arg) { this->fix = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::RadioStatus_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::RadioStatus_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::RadioStatus_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::RadioStatus_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::RadioStatus_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::RadioStatus_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::RadioStatus_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::RadioStatus_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::RadioStatus_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::RadioStatus_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__RadioStatus std::shared_ptr<px4_msgs::msg::RadioStatus_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__RadioStatus std::shared_ptr<px4_msgs::msg::RadioStatus_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const RadioStatus_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->rssi != other.rssi) { return false; } if (this->remote_rssi != other.remote_rssi) { return false; } if (this->txbuf != other.txbuf) { return false; } if (this->noise != other.noise) { return false; } if (this->remote_noise != other.remote_noise) { return false; } if (this->rxerrors != other.rxerrors) { return false; } if (this->fix != other.fix) { return false; } return true; } bool operator!=(const RadioStatus_ & other) const { return !this->operator==(other); } }; // struct RadioStatus_ // alias to use template instance with default allocator using RadioStatus = px4_msgs::msg::RadioStatus_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__RADIO_STATUS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_sensor_bias__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/EstimatorSensorBias.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/estimator_sensor_bias__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void EstimatorSensorBias_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::EstimatorSensorBias(_init); } void EstimatorSensorBias_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::EstimatorSensorBias *>(message_memory); typed_message->~EstimatorSensorBias(); } size_t size_function__EstimatorSensorBias__gyro_bias(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__EstimatorSensorBias__gyro_bias(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__EstimatorSensorBias__gyro_bias(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorSensorBias__gyro_bias_variance(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__EstimatorSensorBias__gyro_bias_variance(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__EstimatorSensorBias__gyro_bias_variance(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorSensorBias__accel_bias(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__EstimatorSensorBias__accel_bias(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__EstimatorSensorBias__accel_bias(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorSensorBias__accel_bias_variance(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__EstimatorSensorBias__accel_bias_variance(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__EstimatorSensorBias__accel_bias_variance(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorSensorBias__mag_bias(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__EstimatorSensorBias__mag_bias(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__EstimatorSensorBias__mag_bias(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorSensorBias__mag_bias_variance(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__EstimatorSensorBias__mag_bias_variance(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__EstimatorSensorBias__mag_bias_variance(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember EstimatorSensorBias_message_member_array[17] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSensorBias, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSensorBias, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "gyro_device_id", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSensorBias, gyro_device_id), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "gyro_bias", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSensorBias, gyro_bias), // bytes offset in struct nullptr, // default value size_function__EstimatorSensorBias__gyro_bias, // size() function pointer get_const_function__EstimatorSensorBias__gyro_bias, // get_const(index) function pointer get_function__EstimatorSensorBias__gyro_bias, // get(index) function pointer nullptr // resize(index) function pointer }, { "gyro_bias_limit", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSensorBias, gyro_bias_limit), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "gyro_bias_variance", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSensorBias, gyro_bias_variance), // bytes offset in struct nullptr, // default value size_function__EstimatorSensorBias__gyro_bias_variance, // size() function pointer get_const_function__EstimatorSensorBias__gyro_bias_variance, // get_const(index) function pointer get_function__EstimatorSensorBias__gyro_bias_variance, // get(index) function pointer nullptr // resize(index) function pointer }, { "gyro_bias_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSensorBias, gyro_bias_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "accel_device_id", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSensorBias, accel_device_id), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "accel_bias", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSensorBias, accel_bias), // bytes offset in struct nullptr, // default value size_function__EstimatorSensorBias__accel_bias, // size() function pointer get_const_function__EstimatorSensorBias__accel_bias, // get_const(index) function pointer get_function__EstimatorSensorBias__accel_bias, // get(index) function pointer nullptr // resize(index) function pointer }, { "accel_bias_limit", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSensorBias, accel_bias_limit), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "accel_bias_variance", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSensorBias, accel_bias_variance), // bytes offset in struct nullptr, // default value size_function__EstimatorSensorBias__accel_bias_variance, // size() function pointer get_const_function__EstimatorSensorBias__accel_bias_variance, // get_const(index) function pointer get_function__EstimatorSensorBias__accel_bias_variance, // get(index) function pointer nullptr // resize(index) function pointer }, { "accel_bias_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSensorBias, accel_bias_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "mag_device_id", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSensorBias, mag_device_id), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "mag_bias", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSensorBias, mag_bias), // bytes offset in struct nullptr, // default value size_function__EstimatorSensorBias__mag_bias, // size() function pointer get_const_function__EstimatorSensorBias__mag_bias, // get_const(index) function pointer get_function__EstimatorSensorBias__mag_bias, // get(index) function pointer nullptr // resize(index) function pointer }, { "mag_bias_limit", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSensorBias, mag_bias_limit), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "mag_bias_variance", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSensorBias, mag_bias_variance), // bytes offset in struct nullptr, // default value size_function__EstimatorSensorBias__mag_bias_variance, // size() function pointer get_const_function__EstimatorSensorBias__mag_bias_variance, // get_const(index) function pointer get_function__EstimatorSensorBias__mag_bias_variance, // get(index) function pointer nullptr // resize(index) function pointer }, { "mag_bias_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSensorBias, mag_bias_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers EstimatorSensorBias_message_members = { "px4_msgs::msg", // message namespace "EstimatorSensorBias", // message name 17, // number of fields sizeof(px4_msgs::msg::EstimatorSensorBias), EstimatorSensorBias_message_member_array, // message members EstimatorSensorBias_init_function, // function to initialize message memory (memory has to be allocated) EstimatorSensorBias_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t EstimatorSensorBias_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &EstimatorSensorBias_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::EstimatorSensorBias>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EstimatorSensorBias_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, EstimatorSensorBias)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EstimatorSensorBias_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/iridiumsbd_status.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/IridiumsbdStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__IRIDIUMSBD_STATUS_H_ #define PX4_MSGS__MSG__IRIDIUMSBD_STATUS_H_ #include "px4_msgs/msg/iridiumsbd_status__struct.h" #include "px4_msgs/msg/iridiumsbd_status__functions.h" #include "px4_msgs/msg/iridiumsbd_status__type_support.h" #endif // PX4_MSGS__MSG__IRIDIUMSBD_STATUS_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/orb_multitest.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORB_MULTITEST_HPP_ #define PX4_MSGS__MSG__ORB_MULTITEST_HPP_ #include "px4_msgs/msg/orb_multitest__struct.hpp" #include "px4_msgs/msg/orb_multitest__traits.hpp" #endif // PX4_MSGS__MSG__ORB_MULTITEST_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test_medium_wrap_around__rosidl_typesupport_fastrtps_c.h // generated from rosidl_typesupport_fastrtps_c/resource/idl__rosidl_typesupport_fastrtps_c.h.em // with input from px4_msgs:msg/OrbTestMediumWrapAround.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORB_TEST_MEDIUM_WRAP_AROUND__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #define PX4_MSGS__MSG__ORB_TEST_MEDIUM_WRAP_AROUND__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #include <stddef.h> #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__OrbTestMediumWrapAround( const void * untyped_ros_message, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__OrbTestMediumWrapAround( bool & full_bounded, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, OrbTestMediumWrapAround)(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ORB_TEST_MEDIUM_WRAP_AROUND__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_vehicle_command.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/VehicleCommand.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_VehicleCommand(type): """Metaclass of message 'VehicleCommand'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'VEHICLE_CMD_CUSTOM_0': 0, 'VEHICLE_CMD_CUSTOM_1': 1, 'VEHICLE_CMD_CUSTOM_2': 2, 'VEHICLE_CMD_NAV_WAYPOINT': 16, 'VEHICLE_CMD_NAV_LOITER_UNLIM': 17, 'VEHICLE_CMD_NAV_LOITER_TURNS': 18, 'VEHICLE_CMD_NAV_LOITER_TIME': 19, 'VEHICLE_CMD_NAV_RETURN_TO_LAUNCH': 20, 'VEHICLE_CMD_NAV_LAND': 21, 'VEHICLE_CMD_NAV_TAKEOFF': 22, 'VEHICLE_CMD_NAV_PRECLAND': 23, 'VEHICLE_CMD_DO_ORBIT': 34, 'VEHICLE_CMD_NAV_ROI': 80, 'VEHICLE_CMD_NAV_PATHPLANNING': 81, 'VEHICLE_CMD_NAV_VTOL_TAKEOFF': 84, 'VEHICLE_CMD_NAV_VTOL_LAND': 85, 'VEHICLE_CMD_NAV_GUIDED_LIMITS': 90, 'VEHICLE_CMD_NAV_GUIDED_MASTER': 91, 'VEHICLE_CMD_NAV_DELAY': 93, 'VEHICLE_CMD_NAV_LAST': 95, 'VEHICLE_CMD_CONDITION_DELAY': 112, 'VEHICLE_CMD_CONDITION_CHANGE_ALT': 113, 'VEHICLE_CMD_CONDITION_DISTANCE': 114, 'VEHICLE_CMD_CONDITION_YAW': 115, 'VEHICLE_CMD_CONDITION_LAST': 159, 'VEHICLE_CMD_CONDITION_GATE': 4501, 'VEHICLE_CMD_DO_SET_MODE': 176, 'VEHICLE_CMD_DO_JUMP': 177, 'VEHICLE_CMD_DO_CHANGE_SPEED': 178, 'VEHICLE_CMD_DO_SET_HOME': 179, 'VEHICLE_CMD_DO_SET_PARAMETER': 180, 'VEHICLE_CMD_DO_SET_RELAY': 181, 'VEHICLE_CMD_DO_REPEAT_RELAY': 182, 'VEHICLE_CMD_DO_SET_SERVO': 183, 'VEHICLE_CMD_DO_REPEAT_SERVO': 184, 'VEHICLE_CMD_DO_FLIGHTTERMINATION': 185, 'VEHICLE_CMD_DO_LAND_START': 189, 'VEHICLE_CMD_DO_GO_AROUND': 191, 'VEHICLE_CMD_DO_REPOSITION': 192, 'VEHICLE_CMD_DO_PAUSE_CONTINUE': 193, 'VEHICLE_CMD_DO_SET_ROI_LOCATION': 195, 'VEHICLE_CMD_DO_SET_ROI_WPNEXT_OFFSET': 196, 'VEHICLE_CMD_DO_SET_ROI_NONE': 197, 'VEHICLE_CMD_DO_CONTROL_VIDEO': 200, 'VEHICLE_CMD_DO_SET_ROI': 201, 'VEHICLE_CMD_DO_DIGICAM_CONTROL': 203, 'VEHICLE_CMD_DO_MOUNT_CONFIGURE': 204, 'VEHICLE_CMD_DO_MOUNT_CONTROL': 205, 'VEHICLE_CMD_DO_SET_CAM_TRIGG_DIST': 206, 'VEHICLE_CMD_DO_FENCE_ENABLE': 207, 'VEHICLE_CMD_DO_PARACHUTE': 208, 'VEHICLE_CMD_DO_MOTOR_TEST': 209, 'VEHICLE_CMD_DO_INVERTED_FLIGHT': 210, 'VEHICLE_CMD_DO_SET_CAM_TRIGG_INTERVAL': 214, 'VEHICLE_CMD_DO_MOUNT_CONTROL_QUAT': 220, 'VEHICLE_CMD_DO_GUIDED_MASTER': 221, 'VEHICLE_CMD_DO_GUIDED_LIMITS': 222, 'VEHICLE_CMD_DO_LAST': 240, 'VEHICLE_CMD_PREFLIGHT_CALIBRATION': 241, 'PREFLIGHT_CALIBRATION_TEMPERATURE_CALIBRATION': 3, 'VEHICLE_CMD_PREFLIGHT_SET_SENSOR_OFFSETS': 242, 'VEHICLE_CMD_PREFLIGHT_UAVCAN': 243, 'VEHICLE_CMD_PREFLIGHT_STORAGE': 245, 'VEHICLE_CMD_PREFLIGHT_REBOOT_SHUTDOWN': 246, 'VEHICLE_CMD_OBLIQUE_SURVEY': 260, 'VEHICLE_CMD_GIMBAL_DEVICE_INFORMATION': 283, 'VEHICLE_CMD_MISSION_START': 300, 'VEHICLE_CMD_COMPONENT_ARM_DISARM': 400, 'VEHICLE_CMD_INJECT_FAILURE': 420, 'VEHICLE_CMD_START_RX_PAIR': 500, 'VEHICLE_CMD_REQUEST_MESSAGE': 512, 'VEHICLE_CMD_SET_CAMERA_MODE': 530, 'VEHICLE_CMD_SET_CAMERA_ZOOM': 531, 'VEHICLE_CMD_SET_CAMERA_FOCUS': 532, 'VEHICLE_CMD_DO_GIMBAL_MANAGER_PITCHYAW': 1000, 'VEHICLE_CMD_DO_GIMBAL_MANAGER_CONFIGURE': 1001, 'VEHICLE_CMD_DO_TRIGGER_CONTROL': 2003, 'VEHICLE_CMD_LOGGING_START': 2510, 'VEHICLE_CMD_LOGGING_STOP': 2511, 'VEHICLE_CMD_CONTROL_HIGH_LATENCY': 2600, 'VEHICLE_CMD_DO_VTOL_TRANSITION': 3000, 'VEHICLE_CMD_ARM_AUTHORIZATION_REQUEST': 3001, 'VEHICLE_CMD_PAYLOAD_PREPARE_DEPLOY': 30001, 'VEHICLE_CMD_PAYLOAD_CONTROL_DEPLOY': 30002, 'VEHICLE_CMD_FIXED_MAG_CAL_YAW': 42006, 'VEHICLE_CMD_PX4_INTERNAL_START': 65537, 'VEHICLE_CMD_SET_GPS_GLOBAL_ORIGIN': 100000, 'VEHICLE_CMD_RESULT_ACCEPTED': 0, 'VEHICLE_CMD_RESULT_TEMPORARILY_REJECTED': 1, 'VEHICLE_CMD_RESULT_DENIED': 2, 'VEHICLE_CMD_RESULT_UNSUPPORTED': 3, 'VEHICLE_CMD_RESULT_FAILED': 4, 'VEHICLE_CMD_RESULT_IN_PROGRESS': 5, 'VEHICLE_CMD_RESULT_ENUM_END': 6, 'VEHICLE_MOUNT_MODE_RETRACT': 0, 'VEHICLE_MOUNT_MODE_NEUTRAL': 1, 'VEHICLE_MOUNT_MODE_MAVLINK_TARGETING': 2, 'VEHICLE_MOUNT_MODE_RC_TARGETING': 3, 'VEHICLE_MOUNT_MODE_GPS_POINT': 4, 'VEHICLE_MOUNT_MODE_ENUM_END': 5, 'VEHICLE_ROI_NONE': 0, 'VEHICLE_ROI_WPNEXT': 1, 'VEHICLE_ROI_WPINDEX': 2, 'VEHICLE_ROI_LOCATION': 3, 'VEHICLE_ROI_TARGET': 4, 'VEHICLE_ROI_ENUM_END': 5, 'VEHICLE_CAMERA_ZOOM_TYPE_STEP': 0, 'VEHICLE_CAMERA_ZOOM_TYPE_CONTINUOUS': 1, 'VEHICLE_CAMERA_ZOOM_TYPE_RANGE': 2, 'VEHICLE_CAMERA_ZOOM_TYPE_FOCAL_LENGTH': 3, 'FAILURE_UNIT_SENSOR_GYRO': 0, 'FAILURE_UNIT_SENSOR_ACCEL': 1, 'FAILURE_UNIT_SENSOR_MAG': 2, 'FAILURE_UNIT_SENSOR_BARO': 3, 'FAILURE_UNIT_SENSOR_GPS': 4, 'FAILURE_UNIT_SENSOR_OPTICAL_FLOW': 5, 'FAILURE_UNIT_SENSOR_VIO': 6, 'FAILURE_UNIT_SENSOR_DISTANCE_SENSOR': 7, 'FAILURE_UNIT_SENSOR_AIRSPEED': 8, 'FAILURE_UNIT_SYSTEM_BATTERY': 100, 'FAILURE_UNIT_SYSTEM_MOTOR': 101, 'FAILURE_UNIT_SYSTEM_SERVO': 102, 'FAILURE_UNIT_SYSTEM_AVOIDANCE': 103, 'FAILURE_UNIT_SYSTEM_RC_SIGNAL': 104, 'FAILURE_UNIT_SYSTEM_MAVLINK_SIGNAL': 105, 'FAILURE_TYPE_OK': 0, 'FAILURE_TYPE_OFF': 1, 'FAILURE_TYPE_STUCK': 2, 'FAILURE_TYPE_GARBAGE': 3, 'FAILURE_TYPE_WRONG': 4, 'FAILURE_TYPE_SLOW': 5, 'FAILURE_TYPE_DELAYED': 6, 'FAILURE_TYPE_INTERMITTENT': 7, 'ORB_QUEUE_LENGTH': 8, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.VehicleCommand') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__vehicle_command cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__vehicle_command cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__vehicle_command cls._TYPE_SUPPORT = module.type_support_msg__msg__vehicle_command cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__vehicle_command @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'VEHICLE_CMD_CUSTOM_0': cls.__constants['VEHICLE_CMD_CUSTOM_0'], 'VEHICLE_CMD_CUSTOM_1': cls.__constants['VEHICLE_CMD_CUSTOM_1'], 'VEHICLE_CMD_CUSTOM_2': cls.__constants['VEHICLE_CMD_CUSTOM_2'], 'VEHICLE_CMD_NAV_WAYPOINT': cls.__constants['VEHICLE_CMD_NAV_WAYPOINT'], 'VEHICLE_CMD_NAV_LOITER_UNLIM': cls.__constants['VEHICLE_CMD_NAV_LOITER_UNLIM'], 'VEHICLE_CMD_NAV_LOITER_TURNS': cls.__constants['VEHICLE_CMD_NAV_LOITER_TURNS'], 'VEHICLE_CMD_NAV_LOITER_TIME': cls.__constants['VEHICLE_CMD_NAV_LOITER_TIME'], 'VEHICLE_CMD_NAV_RETURN_TO_LAUNCH': cls.__constants['VEHICLE_CMD_NAV_RETURN_TO_LAUNCH'], 'VEHICLE_CMD_NAV_LAND': cls.__constants['VEHICLE_CMD_NAV_LAND'], 'VEHICLE_CMD_NAV_TAKEOFF': cls.__constants['VEHICLE_CMD_NAV_TAKEOFF'], 'VEHICLE_CMD_NAV_PRECLAND': cls.__constants['VEHICLE_CMD_NAV_PRECLAND'], 'VEHICLE_CMD_DO_ORBIT': cls.__constants['VEHICLE_CMD_DO_ORBIT'], 'VEHICLE_CMD_NAV_ROI': cls.__constants['VEHICLE_CMD_NAV_ROI'], 'VEHICLE_CMD_NAV_PATHPLANNING': cls.__constants['VEHICLE_CMD_NAV_PATHPLANNING'], 'VEHICLE_CMD_NAV_VTOL_TAKEOFF': cls.__constants['VEHICLE_CMD_NAV_VTOL_TAKEOFF'], 'VEHICLE_CMD_NAV_VTOL_LAND': cls.__constants['VEHICLE_CMD_NAV_VTOL_LAND'], 'VEHICLE_CMD_NAV_GUIDED_LIMITS': cls.__constants['VEHICLE_CMD_NAV_GUIDED_LIMITS'], 'VEHICLE_CMD_NAV_GUIDED_MASTER': cls.__constants['VEHICLE_CMD_NAV_GUIDED_MASTER'], 'VEHICLE_CMD_NAV_DELAY': cls.__constants['VEHICLE_CMD_NAV_DELAY'], 'VEHICLE_CMD_NAV_LAST': cls.__constants['VEHICLE_CMD_NAV_LAST'], 'VEHICLE_CMD_CONDITION_DELAY': cls.__constants['VEHICLE_CMD_CONDITION_DELAY'], 'VEHICLE_CMD_CONDITION_CHANGE_ALT': cls.__constants['VEHICLE_CMD_CONDITION_CHANGE_ALT'], 'VEHICLE_CMD_CONDITION_DISTANCE': cls.__constants['VEHICLE_CMD_CONDITION_DISTANCE'], 'VEHICLE_CMD_CONDITION_YAW': cls.__constants['VEHICLE_CMD_CONDITION_YAW'], 'VEHICLE_CMD_CONDITION_LAST': cls.__constants['VEHICLE_CMD_CONDITION_LAST'], 'VEHICLE_CMD_CONDITION_GATE': cls.__constants['VEHICLE_CMD_CONDITION_GATE'], 'VEHICLE_CMD_DO_SET_MODE': cls.__constants['VEHICLE_CMD_DO_SET_MODE'], 'VEHICLE_CMD_DO_JUMP': cls.__constants['VEHICLE_CMD_DO_JUMP'], 'VEHICLE_CMD_DO_CHANGE_SPEED': cls.__constants['VEHICLE_CMD_DO_CHANGE_SPEED'], 'VEHICLE_CMD_DO_SET_HOME': cls.__constants['VEHICLE_CMD_DO_SET_HOME'], 'VEHICLE_CMD_DO_SET_PARAMETER': cls.__constants['VEHICLE_CMD_DO_SET_PARAMETER'], 'VEHICLE_CMD_DO_SET_RELAY': cls.__constants['VEHICLE_CMD_DO_SET_RELAY'], 'VEHICLE_CMD_DO_REPEAT_RELAY': cls.__constants['VEHICLE_CMD_DO_REPEAT_RELAY'], 'VEHICLE_CMD_DO_SET_SERVO': cls.__constants['VEHICLE_CMD_DO_SET_SERVO'], 'VEHICLE_CMD_DO_REPEAT_SERVO': cls.__constants['VEHICLE_CMD_DO_REPEAT_SERVO'], 'VEHICLE_CMD_DO_FLIGHTTERMINATION': cls.__constants['VEHICLE_CMD_DO_FLIGHTTERMINATION'], 'VEHICLE_CMD_DO_LAND_START': cls.__constants['VEHICLE_CMD_DO_LAND_START'], 'VEHICLE_CMD_DO_GO_AROUND': cls.__constants['VEHICLE_CMD_DO_GO_AROUND'], 'VEHICLE_CMD_DO_REPOSITION': cls.__constants['VEHICLE_CMD_DO_REPOSITION'], 'VEHICLE_CMD_DO_PAUSE_CONTINUE': cls.__constants['VEHICLE_CMD_DO_PAUSE_CONTINUE'], 'VEHICLE_CMD_DO_SET_ROI_LOCATION': cls.__constants['VEHICLE_CMD_DO_SET_ROI_LOCATION'], 'VEHICLE_CMD_DO_SET_ROI_WPNEXT_OFFSET': cls.__constants['VEHICLE_CMD_DO_SET_ROI_WPNEXT_OFFSET'], 'VEHICLE_CMD_DO_SET_ROI_NONE': cls.__constants['VEHICLE_CMD_DO_SET_ROI_NONE'], 'VEHICLE_CMD_DO_CONTROL_VIDEO': cls.__constants['VEHICLE_CMD_DO_CONTROL_VIDEO'], 'VEHICLE_CMD_DO_SET_ROI': cls.__constants['VEHICLE_CMD_DO_SET_ROI'], 'VEHICLE_CMD_DO_DIGICAM_CONTROL': cls.__constants['VEHICLE_CMD_DO_DIGICAM_CONTROL'], 'VEHICLE_CMD_DO_MOUNT_CONFIGURE': cls.__constants['VEHICLE_CMD_DO_MOUNT_CONFIGURE'], 'VEHICLE_CMD_DO_MOUNT_CONTROL': cls.__constants['VEHICLE_CMD_DO_MOUNT_CONTROL'], 'VEHICLE_CMD_DO_SET_CAM_TRIGG_DIST': cls.__constants['VEHICLE_CMD_DO_SET_CAM_TRIGG_DIST'], 'VEHICLE_CMD_DO_FENCE_ENABLE': cls.__constants['VEHICLE_CMD_DO_FENCE_ENABLE'], 'VEHICLE_CMD_DO_PARACHUTE': cls.__constants['VEHICLE_CMD_DO_PARACHUTE'], 'VEHICLE_CMD_DO_MOTOR_TEST': cls.__constants['VEHICLE_CMD_DO_MOTOR_TEST'], 'VEHICLE_CMD_DO_INVERTED_FLIGHT': cls.__constants['VEHICLE_CMD_DO_INVERTED_FLIGHT'], 'VEHICLE_CMD_DO_SET_CAM_TRIGG_INTERVAL': cls.__constants['VEHICLE_CMD_DO_SET_CAM_TRIGG_INTERVAL'], 'VEHICLE_CMD_DO_MOUNT_CONTROL_QUAT': cls.__constants['VEHICLE_CMD_DO_MOUNT_CONTROL_QUAT'], 'VEHICLE_CMD_DO_GUIDED_MASTER': cls.__constants['VEHICLE_CMD_DO_GUIDED_MASTER'], 'VEHICLE_CMD_DO_GUIDED_LIMITS': cls.__constants['VEHICLE_CMD_DO_GUIDED_LIMITS'], 'VEHICLE_CMD_DO_LAST': cls.__constants['VEHICLE_CMD_DO_LAST'], 'VEHICLE_CMD_PREFLIGHT_CALIBRATION': cls.__constants['VEHICLE_CMD_PREFLIGHT_CALIBRATION'], 'PREFLIGHT_CALIBRATION_TEMPERATURE_CALIBRATION': cls.__constants['PREFLIGHT_CALIBRATION_TEMPERATURE_CALIBRATION'], 'VEHICLE_CMD_PREFLIGHT_SET_SENSOR_OFFSETS': cls.__constants['VEHICLE_CMD_PREFLIGHT_SET_SENSOR_OFFSETS'], 'VEHICLE_CMD_PREFLIGHT_UAVCAN': cls.__constants['VEHICLE_CMD_PREFLIGHT_UAVCAN'], 'VEHICLE_CMD_PREFLIGHT_STORAGE': cls.__constants['VEHICLE_CMD_PREFLIGHT_STORAGE'], 'VEHICLE_CMD_PREFLIGHT_REBOOT_SHUTDOWN': cls.__constants['VEHICLE_CMD_PREFLIGHT_REBOOT_SHUTDOWN'], 'VEHICLE_CMD_OBLIQUE_SURVEY': cls.__constants['VEHICLE_CMD_OBLIQUE_SURVEY'], 'VEHICLE_CMD_GIMBAL_DEVICE_INFORMATION': cls.__constants['VEHICLE_CMD_GIMBAL_DEVICE_INFORMATION'], 'VEHICLE_CMD_MISSION_START': cls.__constants['VEHICLE_CMD_MISSION_START'], 'VEHICLE_CMD_COMPONENT_ARM_DISARM': cls.__constants['VEHICLE_CMD_COMPONENT_ARM_DISARM'], 'VEHICLE_CMD_INJECT_FAILURE': cls.__constants['VEHICLE_CMD_INJECT_FAILURE'], 'VEHICLE_CMD_START_RX_PAIR': cls.__constants['VEHICLE_CMD_START_RX_PAIR'], 'VEHICLE_CMD_REQUEST_MESSAGE': cls.__constants['VEHICLE_CMD_REQUEST_MESSAGE'], 'VEHICLE_CMD_SET_CAMERA_MODE': cls.__constants['VEHICLE_CMD_SET_CAMERA_MODE'], 'VEHICLE_CMD_SET_CAMERA_ZOOM': cls.__constants['VEHICLE_CMD_SET_CAMERA_ZOOM'], 'VEHICLE_CMD_SET_CAMERA_FOCUS': cls.__constants['VEHICLE_CMD_SET_CAMERA_FOCUS'], 'VEHICLE_CMD_DO_GIMBAL_MANAGER_PITCHYAW': cls.__constants['VEHICLE_CMD_DO_GIMBAL_MANAGER_PITCHYAW'], 'VEHICLE_CMD_DO_GIMBAL_MANAGER_CONFIGURE': cls.__constants['VEHICLE_CMD_DO_GIMBAL_MANAGER_CONFIGURE'], 'VEHICLE_CMD_DO_TRIGGER_CONTROL': cls.__constants['VEHICLE_CMD_DO_TRIGGER_CONTROL'], 'VEHICLE_CMD_LOGGING_START': cls.__constants['VEHICLE_CMD_LOGGING_START'], 'VEHICLE_CMD_LOGGING_STOP': cls.__constants['VEHICLE_CMD_LOGGING_STOP'], 'VEHICLE_CMD_CONTROL_HIGH_LATENCY': cls.__constants['VEHICLE_CMD_CONTROL_HIGH_LATENCY'], 'VEHICLE_CMD_DO_VTOL_TRANSITION': cls.__constants['VEHICLE_CMD_DO_VTOL_TRANSITION'], 'VEHICLE_CMD_ARM_AUTHORIZATION_REQUEST': cls.__constants['VEHICLE_CMD_ARM_AUTHORIZATION_REQUEST'], 'VEHICLE_CMD_PAYLOAD_PREPARE_DEPLOY': cls.__constants['VEHICLE_CMD_PAYLOAD_PREPARE_DEPLOY'], 'VEHICLE_CMD_PAYLOAD_CONTROL_DEPLOY': cls.__constants['VEHICLE_CMD_PAYLOAD_CONTROL_DEPLOY'], 'VEHICLE_CMD_FIXED_MAG_CAL_YAW': cls.__constants['VEHICLE_CMD_FIXED_MAG_CAL_YAW'], 'VEHICLE_CMD_PX4_INTERNAL_START': cls.__constants['VEHICLE_CMD_PX4_INTERNAL_START'], 'VEHICLE_CMD_SET_GPS_GLOBAL_ORIGIN': cls.__constants['VEHICLE_CMD_SET_GPS_GLOBAL_ORIGIN'], 'VEHICLE_CMD_RESULT_ACCEPTED': cls.__constants['VEHICLE_CMD_RESULT_ACCEPTED'], 'VEHICLE_CMD_RESULT_TEMPORARILY_REJECTED': cls.__constants['VEHICLE_CMD_RESULT_TEMPORARILY_REJECTED'], 'VEHICLE_CMD_RESULT_DENIED': cls.__constants['VEHICLE_CMD_RESULT_DENIED'], 'VEHICLE_CMD_RESULT_UNSUPPORTED': cls.__constants['VEHICLE_CMD_RESULT_UNSUPPORTED'], 'VEHICLE_CMD_RESULT_FAILED': cls.__constants['VEHICLE_CMD_RESULT_FAILED'], 'VEHICLE_CMD_RESULT_IN_PROGRESS': cls.__constants['VEHICLE_CMD_RESULT_IN_PROGRESS'], 'VEHICLE_CMD_RESULT_ENUM_END': cls.__constants['VEHICLE_CMD_RESULT_ENUM_END'], 'VEHICLE_MOUNT_MODE_RETRACT': cls.__constants['VEHICLE_MOUNT_MODE_RETRACT'], 'VEHICLE_MOUNT_MODE_NEUTRAL': cls.__constants['VEHICLE_MOUNT_MODE_NEUTRAL'], 'VEHICLE_MOUNT_MODE_MAVLINK_TARGETING': cls.__constants['VEHICLE_MOUNT_MODE_MAVLINK_TARGETING'], 'VEHICLE_MOUNT_MODE_RC_TARGETING': cls.__constants['VEHICLE_MOUNT_MODE_RC_TARGETING'], 'VEHICLE_MOUNT_MODE_GPS_POINT': cls.__constants['VEHICLE_MOUNT_MODE_GPS_POINT'], 'VEHICLE_MOUNT_MODE_ENUM_END': cls.__constants['VEHICLE_MOUNT_MODE_ENUM_END'], 'VEHICLE_ROI_NONE': cls.__constants['VEHICLE_ROI_NONE'], 'VEHICLE_ROI_WPNEXT': cls.__constants['VEHICLE_ROI_WPNEXT'], 'VEHICLE_ROI_WPINDEX': cls.__constants['VEHICLE_ROI_WPINDEX'], 'VEHICLE_ROI_LOCATION': cls.__constants['VEHICLE_ROI_LOCATION'], 'VEHICLE_ROI_TARGET': cls.__constants['VEHICLE_ROI_TARGET'], 'VEHICLE_ROI_ENUM_END': cls.__constants['VEHICLE_ROI_ENUM_END'], 'VEHICLE_CAMERA_ZOOM_TYPE_STEP': cls.__constants['VEHICLE_CAMERA_ZOOM_TYPE_STEP'], 'VEHICLE_CAMERA_ZOOM_TYPE_CONTINUOUS': cls.__constants['VEHICLE_CAMERA_ZOOM_TYPE_CONTINUOUS'], 'VEHICLE_CAMERA_ZOOM_TYPE_RANGE': cls.__constants['VEHICLE_CAMERA_ZOOM_TYPE_RANGE'], 'VEHICLE_CAMERA_ZOOM_TYPE_FOCAL_LENGTH': cls.__constants['VEHICLE_CAMERA_ZOOM_TYPE_FOCAL_LENGTH'], 'FAILURE_UNIT_SENSOR_GYRO': cls.__constants['FAILURE_UNIT_SENSOR_GYRO'], 'FAILURE_UNIT_SENSOR_ACCEL': cls.__constants['FAILURE_UNIT_SENSOR_ACCEL'], 'FAILURE_UNIT_SENSOR_MAG': cls.__constants['FAILURE_UNIT_SENSOR_MAG'], 'FAILURE_UNIT_SENSOR_BARO': cls.__constants['FAILURE_UNIT_SENSOR_BARO'], 'FAILURE_UNIT_SENSOR_GPS': cls.__constants['FAILURE_UNIT_SENSOR_GPS'], 'FAILURE_UNIT_SENSOR_OPTICAL_FLOW': cls.__constants['FAILURE_UNIT_SENSOR_OPTICAL_FLOW'], 'FAILURE_UNIT_SENSOR_VIO': cls.__constants['FAILURE_UNIT_SENSOR_VIO'], 'FAILURE_UNIT_SENSOR_DISTANCE_SENSOR': cls.__constants['FAILURE_UNIT_SENSOR_DISTANCE_SENSOR'], 'FAILURE_UNIT_SENSOR_AIRSPEED': cls.__constants['FAILURE_UNIT_SENSOR_AIRSPEED'], 'FAILURE_UNIT_SYSTEM_BATTERY': cls.__constants['FAILURE_UNIT_SYSTEM_BATTERY'], 'FAILURE_UNIT_SYSTEM_MOTOR': cls.__constants['FAILURE_UNIT_SYSTEM_MOTOR'], 'FAILURE_UNIT_SYSTEM_SERVO': cls.__constants['FAILURE_UNIT_SYSTEM_SERVO'], 'FAILURE_UNIT_SYSTEM_AVOIDANCE': cls.__constants['FAILURE_UNIT_SYSTEM_AVOIDANCE'], 'FAILURE_UNIT_SYSTEM_RC_SIGNAL': cls.__constants['FAILURE_UNIT_SYSTEM_RC_SIGNAL'], 'FAILURE_UNIT_SYSTEM_MAVLINK_SIGNAL': cls.__constants['FAILURE_UNIT_SYSTEM_MAVLINK_SIGNAL'], 'FAILURE_TYPE_OK': cls.__constants['FAILURE_TYPE_OK'], 'FAILURE_TYPE_OFF': cls.__constants['FAILURE_TYPE_OFF'], 'FAILURE_TYPE_STUCK': cls.__constants['FAILURE_TYPE_STUCK'], 'FAILURE_TYPE_GARBAGE': cls.__constants['FAILURE_TYPE_GARBAGE'], 'FAILURE_TYPE_WRONG': cls.__constants['FAILURE_TYPE_WRONG'], 'FAILURE_TYPE_SLOW': cls.__constants['FAILURE_TYPE_SLOW'], 'FAILURE_TYPE_DELAYED': cls.__constants['FAILURE_TYPE_DELAYED'], 'FAILURE_TYPE_INTERMITTENT': cls.__constants['FAILURE_TYPE_INTERMITTENT'], 'ORB_QUEUE_LENGTH': cls.__constants['ORB_QUEUE_LENGTH'], } @property def VEHICLE_CMD_CUSTOM_0(self): """Message constant 'VEHICLE_CMD_CUSTOM_0'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_CUSTOM_0'] @property def VEHICLE_CMD_CUSTOM_1(self): """Message constant 'VEHICLE_CMD_CUSTOM_1'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_CUSTOM_1'] @property def VEHICLE_CMD_CUSTOM_2(self): """Message constant 'VEHICLE_CMD_CUSTOM_2'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_CUSTOM_2'] @property def VEHICLE_CMD_NAV_WAYPOINT(self): """Message constant 'VEHICLE_CMD_NAV_WAYPOINT'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_NAV_WAYPOINT'] @property def VEHICLE_CMD_NAV_LOITER_UNLIM(self): """Message constant 'VEHICLE_CMD_NAV_LOITER_UNLIM'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_NAV_LOITER_UNLIM'] @property def VEHICLE_CMD_NAV_LOITER_TURNS(self): """Message constant 'VEHICLE_CMD_NAV_LOITER_TURNS'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_NAV_LOITER_TURNS'] @property def VEHICLE_CMD_NAV_LOITER_TIME(self): """Message constant 'VEHICLE_CMD_NAV_LOITER_TIME'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_NAV_LOITER_TIME'] @property def VEHICLE_CMD_NAV_RETURN_TO_LAUNCH(self): """Message constant 'VEHICLE_CMD_NAV_RETURN_TO_LAUNCH'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_NAV_RETURN_TO_LAUNCH'] @property def VEHICLE_CMD_NAV_LAND(self): """Message constant 'VEHICLE_CMD_NAV_LAND'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_NAV_LAND'] @property def VEHICLE_CMD_NAV_TAKEOFF(self): """Message constant 'VEHICLE_CMD_NAV_TAKEOFF'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_NAV_TAKEOFF'] @property def VEHICLE_CMD_NAV_PRECLAND(self): """Message constant 'VEHICLE_CMD_NAV_PRECLAND'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_NAV_PRECLAND'] @property def VEHICLE_CMD_DO_ORBIT(self): """Message constant 'VEHICLE_CMD_DO_ORBIT'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_ORBIT'] @property def VEHICLE_CMD_NAV_ROI(self): """Message constant 'VEHICLE_CMD_NAV_ROI'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_NAV_ROI'] @property def VEHICLE_CMD_NAV_PATHPLANNING(self): """Message constant 'VEHICLE_CMD_NAV_PATHPLANNING'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_NAV_PATHPLANNING'] @property def VEHICLE_CMD_NAV_VTOL_TAKEOFF(self): """Message constant 'VEHICLE_CMD_NAV_VTOL_TAKEOFF'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_NAV_VTOL_TAKEOFF'] @property def VEHICLE_CMD_NAV_VTOL_LAND(self): """Message constant 'VEHICLE_CMD_NAV_VTOL_LAND'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_NAV_VTOL_LAND'] @property def VEHICLE_CMD_NAV_GUIDED_LIMITS(self): """Message constant 'VEHICLE_CMD_NAV_GUIDED_LIMITS'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_NAV_GUIDED_LIMITS'] @property def VEHICLE_CMD_NAV_GUIDED_MASTER(self): """Message constant 'VEHICLE_CMD_NAV_GUIDED_MASTER'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_NAV_GUIDED_MASTER'] @property def VEHICLE_CMD_NAV_DELAY(self): """Message constant 'VEHICLE_CMD_NAV_DELAY'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_NAV_DELAY'] @property def VEHICLE_CMD_NAV_LAST(self): """Message constant 'VEHICLE_CMD_NAV_LAST'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_NAV_LAST'] @property def VEHICLE_CMD_CONDITION_DELAY(self): """Message constant 'VEHICLE_CMD_CONDITION_DELAY'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_CONDITION_DELAY'] @property def VEHICLE_CMD_CONDITION_CHANGE_ALT(self): """Message constant 'VEHICLE_CMD_CONDITION_CHANGE_ALT'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_CONDITION_CHANGE_ALT'] @property def VEHICLE_CMD_CONDITION_DISTANCE(self): """Message constant 'VEHICLE_CMD_CONDITION_DISTANCE'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_CONDITION_DISTANCE'] @property def VEHICLE_CMD_CONDITION_YAW(self): """Message constant 'VEHICLE_CMD_CONDITION_YAW'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_CONDITION_YAW'] @property def VEHICLE_CMD_CONDITION_LAST(self): """Message constant 'VEHICLE_CMD_CONDITION_LAST'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_CONDITION_LAST'] @property def VEHICLE_CMD_CONDITION_GATE(self): """Message constant 'VEHICLE_CMD_CONDITION_GATE'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_CONDITION_GATE'] @property def VEHICLE_CMD_DO_SET_MODE(self): """Message constant 'VEHICLE_CMD_DO_SET_MODE'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_SET_MODE'] @property def VEHICLE_CMD_DO_JUMP(self): """Message constant 'VEHICLE_CMD_DO_JUMP'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_JUMP'] @property def VEHICLE_CMD_DO_CHANGE_SPEED(self): """Message constant 'VEHICLE_CMD_DO_CHANGE_SPEED'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_CHANGE_SPEED'] @property def VEHICLE_CMD_DO_SET_HOME(self): """Message constant 'VEHICLE_CMD_DO_SET_HOME'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_SET_HOME'] @property def VEHICLE_CMD_DO_SET_PARAMETER(self): """Message constant 'VEHICLE_CMD_DO_SET_PARAMETER'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_SET_PARAMETER'] @property def VEHICLE_CMD_DO_SET_RELAY(self): """Message constant 'VEHICLE_CMD_DO_SET_RELAY'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_SET_RELAY'] @property def VEHICLE_CMD_DO_REPEAT_RELAY(self): """Message constant 'VEHICLE_CMD_DO_REPEAT_RELAY'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_REPEAT_RELAY'] @property def VEHICLE_CMD_DO_SET_SERVO(self): """Message constant 'VEHICLE_CMD_DO_SET_SERVO'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_SET_SERVO'] @property def VEHICLE_CMD_DO_REPEAT_SERVO(self): """Message constant 'VEHICLE_CMD_DO_REPEAT_SERVO'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_REPEAT_SERVO'] @property def VEHICLE_CMD_DO_FLIGHTTERMINATION(self): """Message constant 'VEHICLE_CMD_DO_FLIGHTTERMINATION'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_FLIGHTTERMINATION'] @property def VEHICLE_CMD_DO_LAND_START(self): """Message constant 'VEHICLE_CMD_DO_LAND_START'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_LAND_START'] @property def VEHICLE_CMD_DO_GO_AROUND(self): """Message constant 'VEHICLE_CMD_DO_GO_AROUND'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_GO_AROUND'] @property def VEHICLE_CMD_DO_REPOSITION(self): """Message constant 'VEHICLE_CMD_DO_REPOSITION'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_REPOSITION'] @property def VEHICLE_CMD_DO_PAUSE_CONTINUE(self): """Message constant 'VEHICLE_CMD_DO_PAUSE_CONTINUE'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_PAUSE_CONTINUE'] @property def VEHICLE_CMD_DO_SET_ROI_LOCATION(self): """Message constant 'VEHICLE_CMD_DO_SET_ROI_LOCATION'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_SET_ROI_LOCATION'] @property def VEHICLE_CMD_DO_SET_ROI_WPNEXT_OFFSET(self): """Message constant 'VEHICLE_CMD_DO_SET_ROI_WPNEXT_OFFSET'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_SET_ROI_WPNEXT_OFFSET'] @property def VEHICLE_CMD_DO_SET_ROI_NONE(self): """Message constant 'VEHICLE_CMD_DO_SET_ROI_NONE'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_SET_ROI_NONE'] @property def VEHICLE_CMD_DO_CONTROL_VIDEO(self): """Message constant 'VEHICLE_CMD_DO_CONTROL_VIDEO'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_CONTROL_VIDEO'] @property def VEHICLE_CMD_DO_SET_ROI(self): """Message constant 'VEHICLE_CMD_DO_SET_ROI'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_SET_ROI'] @property def VEHICLE_CMD_DO_DIGICAM_CONTROL(self): """Message constant 'VEHICLE_CMD_DO_DIGICAM_CONTROL'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_DIGICAM_CONTROL'] @property def VEHICLE_CMD_DO_MOUNT_CONFIGURE(self): """Message constant 'VEHICLE_CMD_DO_MOUNT_CONFIGURE'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_MOUNT_CONFIGURE'] @property def VEHICLE_CMD_DO_MOUNT_CONTROL(self): """Message constant 'VEHICLE_CMD_DO_MOUNT_CONTROL'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_MOUNT_CONTROL'] @property def VEHICLE_CMD_DO_SET_CAM_TRIGG_DIST(self): """Message constant 'VEHICLE_CMD_DO_SET_CAM_TRIGG_DIST'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_SET_CAM_TRIGG_DIST'] @property def VEHICLE_CMD_DO_FENCE_ENABLE(self): """Message constant 'VEHICLE_CMD_DO_FENCE_ENABLE'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_FENCE_ENABLE'] @property def VEHICLE_CMD_DO_PARACHUTE(self): """Message constant 'VEHICLE_CMD_DO_PARACHUTE'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_PARACHUTE'] @property def VEHICLE_CMD_DO_MOTOR_TEST(self): """Message constant 'VEHICLE_CMD_DO_MOTOR_TEST'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_MOTOR_TEST'] @property def VEHICLE_CMD_DO_INVERTED_FLIGHT(self): """Message constant 'VEHICLE_CMD_DO_INVERTED_FLIGHT'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_INVERTED_FLIGHT'] @property def VEHICLE_CMD_DO_SET_CAM_TRIGG_INTERVAL(self): """Message constant 'VEHICLE_CMD_DO_SET_CAM_TRIGG_INTERVAL'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_SET_CAM_TRIGG_INTERVAL'] @property def VEHICLE_CMD_DO_MOUNT_CONTROL_QUAT(self): """Message constant 'VEHICLE_CMD_DO_MOUNT_CONTROL_QUAT'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_MOUNT_CONTROL_QUAT'] @property def VEHICLE_CMD_DO_GUIDED_MASTER(self): """Message constant 'VEHICLE_CMD_DO_GUIDED_MASTER'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_GUIDED_MASTER'] @property def VEHICLE_CMD_DO_GUIDED_LIMITS(self): """Message constant 'VEHICLE_CMD_DO_GUIDED_LIMITS'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_GUIDED_LIMITS'] @property def VEHICLE_CMD_DO_LAST(self): """Message constant 'VEHICLE_CMD_DO_LAST'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_LAST'] @property def VEHICLE_CMD_PREFLIGHT_CALIBRATION(self): """Message constant 'VEHICLE_CMD_PREFLIGHT_CALIBRATION'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_PREFLIGHT_CALIBRATION'] @property def PREFLIGHT_CALIBRATION_TEMPERATURE_CALIBRATION(self): """Message constant 'PREFLIGHT_CALIBRATION_TEMPERATURE_CALIBRATION'.""" return Metaclass_VehicleCommand.__constants['PREFLIGHT_CALIBRATION_TEMPERATURE_CALIBRATION'] @property def VEHICLE_CMD_PREFLIGHT_SET_SENSOR_OFFSETS(self): """Message constant 'VEHICLE_CMD_PREFLIGHT_SET_SENSOR_OFFSETS'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_PREFLIGHT_SET_SENSOR_OFFSETS'] @property def VEHICLE_CMD_PREFLIGHT_UAVCAN(self): """Message constant 'VEHICLE_CMD_PREFLIGHT_UAVCAN'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_PREFLIGHT_UAVCAN'] @property def VEHICLE_CMD_PREFLIGHT_STORAGE(self): """Message constant 'VEHICLE_CMD_PREFLIGHT_STORAGE'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_PREFLIGHT_STORAGE'] @property def VEHICLE_CMD_PREFLIGHT_REBOOT_SHUTDOWN(self): """Message constant 'VEHICLE_CMD_PREFLIGHT_REBOOT_SHUTDOWN'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_PREFLIGHT_REBOOT_SHUTDOWN'] @property def VEHICLE_CMD_OBLIQUE_SURVEY(self): """Message constant 'VEHICLE_CMD_OBLIQUE_SURVEY'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_OBLIQUE_SURVEY'] @property def VEHICLE_CMD_GIMBAL_DEVICE_INFORMATION(self): """Message constant 'VEHICLE_CMD_GIMBAL_DEVICE_INFORMATION'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_GIMBAL_DEVICE_INFORMATION'] @property def VEHICLE_CMD_MISSION_START(self): """Message constant 'VEHICLE_CMD_MISSION_START'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_MISSION_START'] @property def VEHICLE_CMD_COMPONENT_ARM_DISARM(self): """Message constant 'VEHICLE_CMD_COMPONENT_ARM_DISARM'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_COMPONENT_ARM_DISARM'] @property def VEHICLE_CMD_INJECT_FAILURE(self): """Message constant 'VEHICLE_CMD_INJECT_FAILURE'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_INJECT_FAILURE'] @property def VEHICLE_CMD_START_RX_PAIR(self): """Message constant 'VEHICLE_CMD_START_RX_PAIR'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_START_RX_PAIR'] @property def VEHICLE_CMD_REQUEST_MESSAGE(self): """Message constant 'VEHICLE_CMD_REQUEST_MESSAGE'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_REQUEST_MESSAGE'] @property def VEHICLE_CMD_SET_CAMERA_MODE(self): """Message constant 'VEHICLE_CMD_SET_CAMERA_MODE'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_SET_CAMERA_MODE'] @property def VEHICLE_CMD_SET_CAMERA_ZOOM(self): """Message constant 'VEHICLE_CMD_SET_CAMERA_ZOOM'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_SET_CAMERA_ZOOM'] @property def VEHICLE_CMD_SET_CAMERA_FOCUS(self): """Message constant 'VEHICLE_CMD_SET_CAMERA_FOCUS'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_SET_CAMERA_FOCUS'] @property def VEHICLE_CMD_DO_GIMBAL_MANAGER_PITCHYAW(self): """Message constant 'VEHICLE_CMD_DO_GIMBAL_MANAGER_PITCHYAW'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_GIMBAL_MANAGER_PITCHYAW'] @property def VEHICLE_CMD_DO_GIMBAL_MANAGER_CONFIGURE(self): """Message constant 'VEHICLE_CMD_DO_GIMBAL_MANAGER_CONFIGURE'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_GIMBAL_MANAGER_CONFIGURE'] @property def VEHICLE_CMD_DO_TRIGGER_CONTROL(self): """Message constant 'VEHICLE_CMD_DO_TRIGGER_CONTROL'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_TRIGGER_CONTROL'] @property def VEHICLE_CMD_LOGGING_START(self): """Message constant 'VEHICLE_CMD_LOGGING_START'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_LOGGING_START'] @property def VEHICLE_CMD_LOGGING_STOP(self): """Message constant 'VEHICLE_CMD_LOGGING_STOP'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_LOGGING_STOP'] @property def VEHICLE_CMD_CONTROL_HIGH_LATENCY(self): """Message constant 'VEHICLE_CMD_CONTROL_HIGH_LATENCY'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_CONTROL_HIGH_LATENCY'] @property def VEHICLE_CMD_DO_VTOL_TRANSITION(self): """Message constant 'VEHICLE_CMD_DO_VTOL_TRANSITION'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_DO_VTOL_TRANSITION'] @property def VEHICLE_CMD_ARM_AUTHORIZATION_REQUEST(self): """Message constant 'VEHICLE_CMD_ARM_AUTHORIZATION_REQUEST'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_ARM_AUTHORIZATION_REQUEST'] @property def VEHICLE_CMD_PAYLOAD_PREPARE_DEPLOY(self): """Message constant 'VEHICLE_CMD_PAYLOAD_PREPARE_DEPLOY'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_PAYLOAD_PREPARE_DEPLOY'] @property def VEHICLE_CMD_PAYLOAD_CONTROL_DEPLOY(self): """Message constant 'VEHICLE_CMD_PAYLOAD_CONTROL_DEPLOY'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_PAYLOAD_CONTROL_DEPLOY'] @property def VEHICLE_CMD_FIXED_MAG_CAL_YAW(self): """Message constant 'VEHICLE_CMD_FIXED_MAG_CAL_YAW'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_FIXED_MAG_CAL_YAW'] @property def VEHICLE_CMD_PX4_INTERNAL_START(self): """Message constant 'VEHICLE_CMD_PX4_INTERNAL_START'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_PX4_INTERNAL_START'] @property def VEHICLE_CMD_SET_GPS_GLOBAL_ORIGIN(self): """Message constant 'VEHICLE_CMD_SET_GPS_GLOBAL_ORIGIN'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_SET_GPS_GLOBAL_ORIGIN'] @property def VEHICLE_CMD_RESULT_ACCEPTED(self): """Message constant 'VEHICLE_CMD_RESULT_ACCEPTED'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_RESULT_ACCEPTED'] @property def VEHICLE_CMD_RESULT_TEMPORARILY_REJECTED(self): """Message constant 'VEHICLE_CMD_RESULT_TEMPORARILY_REJECTED'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_RESULT_TEMPORARILY_REJECTED'] @property def VEHICLE_CMD_RESULT_DENIED(self): """Message constant 'VEHICLE_CMD_RESULT_DENIED'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_RESULT_DENIED'] @property def VEHICLE_CMD_RESULT_UNSUPPORTED(self): """Message constant 'VEHICLE_CMD_RESULT_UNSUPPORTED'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_RESULT_UNSUPPORTED'] @property def VEHICLE_CMD_RESULT_FAILED(self): """Message constant 'VEHICLE_CMD_RESULT_FAILED'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_RESULT_FAILED'] @property def VEHICLE_CMD_RESULT_IN_PROGRESS(self): """Message constant 'VEHICLE_CMD_RESULT_IN_PROGRESS'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_RESULT_IN_PROGRESS'] @property def VEHICLE_CMD_RESULT_ENUM_END(self): """Message constant 'VEHICLE_CMD_RESULT_ENUM_END'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CMD_RESULT_ENUM_END'] @property def VEHICLE_MOUNT_MODE_RETRACT(self): """Message constant 'VEHICLE_MOUNT_MODE_RETRACT'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_MOUNT_MODE_RETRACT'] @property def VEHICLE_MOUNT_MODE_NEUTRAL(self): """Message constant 'VEHICLE_MOUNT_MODE_NEUTRAL'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_MOUNT_MODE_NEUTRAL'] @property def VEHICLE_MOUNT_MODE_MAVLINK_TARGETING(self): """Message constant 'VEHICLE_MOUNT_MODE_MAVLINK_TARGETING'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_MOUNT_MODE_MAVLINK_TARGETING'] @property def VEHICLE_MOUNT_MODE_RC_TARGETING(self): """Message constant 'VEHICLE_MOUNT_MODE_RC_TARGETING'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_MOUNT_MODE_RC_TARGETING'] @property def VEHICLE_MOUNT_MODE_GPS_POINT(self): """Message constant 'VEHICLE_MOUNT_MODE_GPS_POINT'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_MOUNT_MODE_GPS_POINT'] @property def VEHICLE_MOUNT_MODE_ENUM_END(self): """Message constant 'VEHICLE_MOUNT_MODE_ENUM_END'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_MOUNT_MODE_ENUM_END'] @property def VEHICLE_ROI_NONE(self): """Message constant 'VEHICLE_ROI_NONE'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_ROI_NONE'] @property def VEHICLE_ROI_WPNEXT(self): """Message constant 'VEHICLE_ROI_WPNEXT'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_ROI_WPNEXT'] @property def VEHICLE_ROI_WPINDEX(self): """Message constant 'VEHICLE_ROI_WPINDEX'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_ROI_WPINDEX'] @property def VEHICLE_ROI_LOCATION(self): """Message constant 'VEHICLE_ROI_LOCATION'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_ROI_LOCATION'] @property def VEHICLE_ROI_TARGET(self): """Message constant 'VEHICLE_ROI_TARGET'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_ROI_TARGET'] @property def VEHICLE_ROI_ENUM_END(self): """Message constant 'VEHICLE_ROI_ENUM_END'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_ROI_ENUM_END'] @property def VEHICLE_CAMERA_ZOOM_TYPE_STEP(self): """Message constant 'VEHICLE_CAMERA_ZOOM_TYPE_STEP'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CAMERA_ZOOM_TYPE_STEP'] @property def VEHICLE_CAMERA_ZOOM_TYPE_CONTINUOUS(self): """Message constant 'VEHICLE_CAMERA_ZOOM_TYPE_CONTINUOUS'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CAMERA_ZOOM_TYPE_CONTINUOUS'] @property def VEHICLE_CAMERA_ZOOM_TYPE_RANGE(self): """Message constant 'VEHICLE_CAMERA_ZOOM_TYPE_RANGE'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CAMERA_ZOOM_TYPE_RANGE'] @property def VEHICLE_CAMERA_ZOOM_TYPE_FOCAL_LENGTH(self): """Message constant 'VEHICLE_CAMERA_ZOOM_TYPE_FOCAL_LENGTH'.""" return Metaclass_VehicleCommand.__constants['VEHICLE_CAMERA_ZOOM_TYPE_FOCAL_LENGTH'] @property def FAILURE_UNIT_SENSOR_GYRO(self): """Message constant 'FAILURE_UNIT_SENSOR_GYRO'.""" return Metaclass_VehicleCommand.__constants['FAILURE_UNIT_SENSOR_GYRO'] @property def FAILURE_UNIT_SENSOR_ACCEL(self): """Message constant 'FAILURE_UNIT_SENSOR_ACCEL'.""" return Metaclass_VehicleCommand.__constants['FAILURE_UNIT_SENSOR_ACCEL'] @property def FAILURE_UNIT_SENSOR_MAG(self): """Message constant 'FAILURE_UNIT_SENSOR_MAG'.""" return Metaclass_VehicleCommand.__constants['FAILURE_UNIT_SENSOR_MAG'] @property def FAILURE_UNIT_SENSOR_BARO(self): """Message constant 'FAILURE_UNIT_SENSOR_BARO'.""" return Metaclass_VehicleCommand.__constants['FAILURE_UNIT_SENSOR_BARO'] @property def FAILURE_UNIT_SENSOR_GPS(self): """Message constant 'FAILURE_UNIT_SENSOR_GPS'.""" return Metaclass_VehicleCommand.__constants['FAILURE_UNIT_SENSOR_GPS'] @property def FAILURE_UNIT_SENSOR_OPTICAL_FLOW(self): """Message constant 'FAILURE_UNIT_SENSOR_OPTICAL_FLOW'.""" return Metaclass_VehicleCommand.__constants['FAILURE_UNIT_SENSOR_OPTICAL_FLOW'] @property def FAILURE_UNIT_SENSOR_VIO(self): """Message constant 'FAILURE_UNIT_SENSOR_VIO'.""" return Metaclass_VehicleCommand.__constants['FAILURE_UNIT_SENSOR_VIO'] @property def FAILURE_UNIT_SENSOR_DISTANCE_SENSOR(self): """Message constant 'FAILURE_UNIT_SENSOR_DISTANCE_SENSOR'.""" return Metaclass_VehicleCommand.__constants['FAILURE_UNIT_SENSOR_DISTANCE_SENSOR'] @property def FAILURE_UNIT_SENSOR_AIRSPEED(self): """Message constant 'FAILURE_UNIT_SENSOR_AIRSPEED'.""" return Metaclass_VehicleCommand.__constants['FAILURE_UNIT_SENSOR_AIRSPEED'] @property def FAILURE_UNIT_SYSTEM_BATTERY(self): """Message constant 'FAILURE_UNIT_SYSTEM_BATTERY'.""" return Metaclass_VehicleCommand.__constants['FAILURE_UNIT_SYSTEM_BATTERY'] @property def FAILURE_UNIT_SYSTEM_MOTOR(self): """Message constant 'FAILURE_UNIT_SYSTEM_MOTOR'.""" return Metaclass_VehicleCommand.__constants['FAILURE_UNIT_SYSTEM_MOTOR'] @property def FAILURE_UNIT_SYSTEM_SERVO(self): """Message constant 'FAILURE_UNIT_SYSTEM_SERVO'.""" return Metaclass_VehicleCommand.__constants['FAILURE_UNIT_SYSTEM_SERVO'] @property def FAILURE_UNIT_SYSTEM_AVOIDANCE(self): """Message constant 'FAILURE_UNIT_SYSTEM_AVOIDANCE'.""" return Metaclass_VehicleCommand.__constants['FAILURE_UNIT_SYSTEM_AVOIDANCE'] @property def FAILURE_UNIT_SYSTEM_RC_SIGNAL(self): """Message constant 'FAILURE_UNIT_SYSTEM_RC_SIGNAL'.""" return Metaclass_VehicleCommand.__constants['FAILURE_UNIT_SYSTEM_RC_SIGNAL'] @property def FAILURE_UNIT_SYSTEM_MAVLINK_SIGNAL(self): """Message constant 'FAILURE_UNIT_SYSTEM_MAVLINK_SIGNAL'.""" return Metaclass_VehicleCommand.__constants['FAILURE_UNIT_SYSTEM_MAVLINK_SIGNAL'] @property def FAILURE_TYPE_OK(self): """Message constant 'FAILURE_TYPE_OK'.""" return Metaclass_VehicleCommand.__constants['FAILURE_TYPE_OK'] @property def FAILURE_TYPE_OFF(self): """Message constant 'FAILURE_TYPE_OFF'.""" return Metaclass_VehicleCommand.__constants['FAILURE_TYPE_OFF'] @property def FAILURE_TYPE_STUCK(self): """Message constant 'FAILURE_TYPE_STUCK'.""" return Metaclass_VehicleCommand.__constants['FAILURE_TYPE_STUCK'] @property def FAILURE_TYPE_GARBAGE(self): """Message constant 'FAILURE_TYPE_GARBAGE'.""" return Metaclass_VehicleCommand.__constants['FAILURE_TYPE_GARBAGE'] @property def FAILURE_TYPE_WRONG(self): """Message constant 'FAILURE_TYPE_WRONG'.""" return Metaclass_VehicleCommand.__constants['FAILURE_TYPE_WRONG'] @property def FAILURE_TYPE_SLOW(self): """Message constant 'FAILURE_TYPE_SLOW'.""" return Metaclass_VehicleCommand.__constants['FAILURE_TYPE_SLOW'] @property def FAILURE_TYPE_DELAYED(self): """Message constant 'FAILURE_TYPE_DELAYED'.""" return Metaclass_VehicleCommand.__constants['FAILURE_TYPE_DELAYED'] @property def FAILURE_TYPE_INTERMITTENT(self): """Message constant 'FAILURE_TYPE_INTERMITTENT'.""" return Metaclass_VehicleCommand.__constants['FAILURE_TYPE_INTERMITTENT'] @property def ORB_QUEUE_LENGTH(self): """Message constant 'ORB_QUEUE_LENGTH'.""" return Metaclass_VehicleCommand.__constants['ORB_QUEUE_LENGTH'] class VehicleCommand(metaclass=Metaclass_VehicleCommand): """ Message class 'VehicleCommand'. Constants: VEHICLE_CMD_CUSTOM_0 VEHICLE_CMD_CUSTOM_1 VEHICLE_CMD_CUSTOM_2 VEHICLE_CMD_NAV_WAYPOINT VEHICLE_CMD_NAV_LOITER_UNLIM VEHICLE_CMD_NAV_LOITER_TURNS VEHICLE_CMD_NAV_LOITER_TIME VEHICLE_CMD_NAV_RETURN_TO_LAUNCH VEHICLE_CMD_NAV_LAND VEHICLE_CMD_NAV_TAKEOFF VEHICLE_CMD_NAV_PRECLAND VEHICLE_CMD_DO_ORBIT VEHICLE_CMD_NAV_ROI VEHICLE_CMD_NAV_PATHPLANNING VEHICLE_CMD_NAV_VTOL_TAKEOFF VEHICLE_CMD_NAV_VTOL_LAND VEHICLE_CMD_NAV_GUIDED_LIMITS VEHICLE_CMD_NAV_GUIDED_MASTER VEHICLE_CMD_NAV_DELAY VEHICLE_CMD_NAV_LAST VEHICLE_CMD_CONDITION_DELAY VEHICLE_CMD_CONDITION_CHANGE_ALT VEHICLE_CMD_CONDITION_DISTANCE VEHICLE_CMD_CONDITION_YAW VEHICLE_CMD_CONDITION_LAST VEHICLE_CMD_CONDITION_GATE VEHICLE_CMD_DO_SET_MODE VEHICLE_CMD_DO_JUMP VEHICLE_CMD_DO_CHANGE_SPEED VEHICLE_CMD_DO_SET_HOME VEHICLE_CMD_DO_SET_PARAMETER VEHICLE_CMD_DO_SET_RELAY VEHICLE_CMD_DO_REPEAT_RELAY VEHICLE_CMD_DO_SET_SERVO VEHICLE_CMD_DO_REPEAT_SERVO VEHICLE_CMD_DO_FLIGHTTERMINATION VEHICLE_CMD_DO_LAND_START VEHICLE_CMD_DO_GO_AROUND VEHICLE_CMD_DO_REPOSITION VEHICLE_CMD_DO_PAUSE_CONTINUE VEHICLE_CMD_DO_SET_ROI_LOCATION VEHICLE_CMD_DO_SET_ROI_WPNEXT_OFFSET VEHICLE_CMD_DO_SET_ROI_NONE VEHICLE_CMD_DO_CONTROL_VIDEO VEHICLE_CMD_DO_SET_ROI VEHICLE_CMD_DO_DIGICAM_CONTROL VEHICLE_CMD_DO_MOUNT_CONFIGURE VEHICLE_CMD_DO_MOUNT_CONTROL VEHICLE_CMD_DO_SET_CAM_TRIGG_DIST VEHICLE_CMD_DO_FENCE_ENABLE VEHICLE_CMD_DO_PARACHUTE VEHICLE_CMD_DO_MOTOR_TEST VEHICLE_CMD_DO_INVERTED_FLIGHT VEHICLE_CMD_DO_SET_CAM_TRIGG_INTERVAL VEHICLE_CMD_DO_MOUNT_CONTROL_QUAT VEHICLE_CMD_DO_GUIDED_MASTER VEHICLE_CMD_DO_GUIDED_LIMITS VEHICLE_CMD_DO_LAST VEHICLE_CMD_PREFLIGHT_CALIBRATION PREFLIGHT_CALIBRATION_TEMPERATURE_CALIBRATION VEHICLE_CMD_PREFLIGHT_SET_SENSOR_OFFSETS VEHICLE_CMD_PREFLIGHT_UAVCAN VEHICLE_CMD_PREFLIGHT_STORAGE VEHICLE_CMD_PREFLIGHT_REBOOT_SHUTDOWN VEHICLE_CMD_OBLIQUE_SURVEY VEHICLE_CMD_GIMBAL_DEVICE_INFORMATION VEHICLE_CMD_MISSION_START VEHICLE_CMD_COMPONENT_ARM_DISARM VEHICLE_CMD_INJECT_FAILURE VEHICLE_CMD_START_RX_PAIR VEHICLE_CMD_REQUEST_MESSAGE VEHICLE_CMD_SET_CAMERA_MODE VEHICLE_CMD_SET_CAMERA_ZOOM VEHICLE_CMD_SET_CAMERA_FOCUS VEHICLE_CMD_DO_GIMBAL_MANAGER_PITCHYAW VEHICLE_CMD_DO_GIMBAL_MANAGER_CONFIGURE VEHICLE_CMD_DO_TRIGGER_CONTROL VEHICLE_CMD_LOGGING_START VEHICLE_CMD_LOGGING_STOP VEHICLE_CMD_CONTROL_HIGH_LATENCY VEHICLE_CMD_DO_VTOL_TRANSITION VEHICLE_CMD_ARM_AUTHORIZATION_REQUEST VEHICLE_CMD_PAYLOAD_PREPARE_DEPLOY VEHICLE_CMD_PAYLOAD_CONTROL_DEPLOY VEHICLE_CMD_FIXED_MAG_CAL_YAW VEHICLE_CMD_PX4_INTERNAL_START VEHICLE_CMD_SET_GPS_GLOBAL_ORIGIN VEHICLE_CMD_RESULT_ACCEPTED VEHICLE_CMD_RESULT_TEMPORARILY_REJECTED VEHICLE_CMD_RESULT_DENIED VEHICLE_CMD_RESULT_UNSUPPORTED VEHICLE_CMD_RESULT_FAILED VEHICLE_CMD_RESULT_IN_PROGRESS VEHICLE_CMD_RESULT_ENUM_END VEHICLE_MOUNT_MODE_RETRACT VEHICLE_MOUNT_MODE_NEUTRAL VEHICLE_MOUNT_MODE_MAVLINK_TARGETING VEHICLE_MOUNT_MODE_RC_TARGETING VEHICLE_MOUNT_MODE_GPS_POINT VEHICLE_MOUNT_MODE_ENUM_END VEHICLE_ROI_NONE VEHICLE_ROI_WPNEXT VEHICLE_ROI_WPINDEX VEHICLE_ROI_LOCATION VEHICLE_ROI_TARGET VEHICLE_ROI_ENUM_END VEHICLE_CAMERA_ZOOM_TYPE_STEP VEHICLE_CAMERA_ZOOM_TYPE_CONTINUOUS VEHICLE_CAMERA_ZOOM_TYPE_RANGE VEHICLE_CAMERA_ZOOM_TYPE_FOCAL_LENGTH FAILURE_UNIT_SENSOR_GYRO FAILURE_UNIT_SENSOR_ACCEL FAILURE_UNIT_SENSOR_MAG FAILURE_UNIT_SENSOR_BARO FAILURE_UNIT_SENSOR_GPS FAILURE_UNIT_SENSOR_OPTICAL_FLOW FAILURE_UNIT_SENSOR_VIO FAILURE_UNIT_SENSOR_DISTANCE_SENSOR FAILURE_UNIT_SENSOR_AIRSPEED FAILURE_UNIT_SYSTEM_BATTERY FAILURE_UNIT_SYSTEM_MOTOR FAILURE_UNIT_SYSTEM_SERVO FAILURE_UNIT_SYSTEM_AVOIDANCE FAILURE_UNIT_SYSTEM_RC_SIGNAL FAILURE_UNIT_SYSTEM_MAVLINK_SIGNAL FAILURE_TYPE_OK FAILURE_TYPE_OFF FAILURE_TYPE_STUCK FAILURE_TYPE_GARBAGE FAILURE_TYPE_WRONG FAILURE_TYPE_SLOW FAILURE_TYPE_DELAYED FAILURE_TYPE_INTERMITTENT ORB_QUEUE_LENGTH """ __slots__ = [ '_timestamp', '_param1', '_param2', '_param3', '_param4', '_param5', '_param6', '_param7', '_command', '_target_system', '_target_component', '_source_system', '_source_component', '_confirmation', '_from_external', ] _fields_and_field_types = { 'timestamp': 'uint64', 'param1': 'float', 'param2': 'float', 'param3': 'float', 'param4': 'float', 'param5': 'double', 'param6': 'double', 'param7': 'float', 'command': 'uint32', 'target_system': 'uint8', 'target_component': 'uint8', 'source_system': 'uint8', 'source_component': 'uint8', 'confirmation': 'uint8', 'from_external': 'boolean', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('double'), # noqa: E501 rosidl_parser.definition.BasicType('double'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.param1 = kwargs.get('param1', float()) self.param2 = kwargs.get('param2', float()) self.param3 = kwargs.get('param3', float()) self.param4 = kwargs.get('param4', float()) self.param5 = kwargs.get('param5', float()) self.param6 = kwargs.get('param6', float()) self.param7 = kwargs.get('param7', float()) self.command = kwargs.get('command', int()) self.target_system = kwargs.get('target_system', int()) self.target_component = kwargs.get('target_component', int()) self.source_system = kwargs.get('source_system', int()) self.source_component = kwargs.get('source_component', int()) self.confirmation = kwargs.get('confirmation', int()) self.from_external = kwargs.get('from_external', bool()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.param1 != other.param1: return False if self.param2 != other.param2: return False if self.param3 != other.param3: return False if self.param4 != other.param4: return False if self.param5 != other.param5: return False if self.param6 != other.param6: return False if self.param7 != other.param7: return False if self.command != other.command: return False if self.target_system != other.target_system: return False if self.target_component != other.target_component: return False if self.source_system != other.source_system: return False if self.source_component != other.source_component: return False if self.confirmation != other.confirmation: return False if self.from_external != other.from_external: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def param1(self): """Message field 'param1'.""" return self._param1 @param1.setter def param1(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'param1' field must be of type 'float'" self._param1 = value @property def param2(self): """Message field 'param2'.""" return self._param2 @param2.setter def param2(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'param2' field must be of type 'float'" self._param2 = value @property def param3(self): """Message field 'param3'.""" return self._param3 @param3.setter def param3(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'param3' field must be of type 'float'" self._param3 = value @property def param4(self): """Message field 'param4'.""" return self._param4 @param4.setter def param4(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'param4' field must be of type 'float'" self._param4 = value @property def param5(self): """Message field 'param5'.""" return self._param5 @param5.setter def param5(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'param5' field must be of type 'float'" self._param5 = value @property def param6(self): """Message field 'param6'.""" return self._param6 @param6.setter def param6(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'param6' field must be of type 'float'" self._param6 = value @property def param7(self): """Message field 'param7'.""" return self._param7 @param7.setter def param7(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'param7' field must be of type 'float'" self._param7 = value @property def command(self): """Message field 'command'.""" return self._command @command.setter def command(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'command' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'command' field must be an unsigned integer in [0, 4294967295]" self._command = value @property def target_system(self): """Message field 'target_system'.""" return self._target_system @target_system.setter def target_system(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'target_system' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'target_system' field must be an unsigned integer in [0, 255]" self._target_system = value @property def target_component(self): """Message field 'target_component'.""" return self._target_component @target_component.setter def target_component(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'target_component' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'target_component' field must be an unsigned integer in [0, 255]" self._target_component = value @property def source_system(self): """Message field 'source_system'.""" return self._source_system @source_system.setter def source_system(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'source_system' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'source_system' field must be an unsigned integer in [0, 255]" self._source_system = value @property def source_component(self): """Message field 'source_component'.""" return self._source_component @source_component.setter def source_component(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'source_component' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'source_component' field must be an unsigned integer in [0, 255]" self._source_component = value @property def confirmation(self): """Message field 'confirmation'.""" return self._confirmation @confirmation.setter def confirmation(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'confirmation' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'confirmation' field must be an unsigned integer in [0, 255]" self._confirmation = value @property def from_external(self): """Message field 'from_external'.""" return self._from_external @from_external.setter def from_external(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'from_external' field must be of type 'bool'" self._from_external = value <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_command_ack__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/VehicleCommandAck.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/vehicle_command_ack__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/vehicle_command_ack__functions.h" #include "px4_msgs/msg/vehicle_command_ack__struct.h" #ifdef __cplusplus extern "C" { #endif void VehicleCommandAck__rosidl_typesupport_introspection_c__VehicleCommandAck_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__VehicleCommandAck__init(message_memory); } void VehicleCommandAck__rosidl_typesupport_introspection_c__VehicleCommandAck_fini_function(void * message_memory) { px4_msgs__msg__VehicleCommandAck__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember VehicleCommandAck__rosidl_typesupport_introspection_c__VehicleCommandAck_message_member_array[8] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleCommandAck, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "command", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleCommandAck, command), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "result", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleCommandAck, result), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "from_external", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleCommandAck, from_external), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "result_param1", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleCommandAck, result_param1), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "result_param2", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleCommandAck, result_param2), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "target_system", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleCommandAck, target_system), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "target_component", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleCommandAck, target_component), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers VehicleCommandAck__rosidl_typesupport_introspection_c__VehicleCommandAck_message_members = { "px4_msgs__msg", // message namespace "VehicleCommandAck", // message name 8, // number of fields sizeof(px4_msgs__msg__VehicleCommandAck), VehicleCommandAck__rosidl_typesupport_introspection_c__VehicleCommandAck_message_member_array, // message members VehicleCommandAck__rosidl_typesupport_introspection_c__VehicleCommandAck_init_function, // function to initialize message memory (memory has to be allocated) VehicleCommandAck__rosidl_typesupport_introspection_c__VehicleCommandAck_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t VehicleCommandAck__rosidl_typesupport_introspection_c__VehicleCommandAck_message_type_support_handle = { 0, &VehicleCommandAck__rosidl_typesupport_introspection_c__VehicleCommandAck_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, VehicleCommandAck)() { if (!VehicleCommandAck__rosidl_typesupport_introspection_c__VehicleCommandAck_message_type_support_handle.typesupport_identifier) { VehicleCommandAck__rosidl_typesupport_introspection_c__VehicleCommandAck_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &VehicleCommandAck__rosidl_typesupport_introspection_c__VehicleCommandAck_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/test_motor__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/TestMotor.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TEST_MOTOR__STRUCT_HPP_ #define PX4_MSGS__MSG__TEST_MOTOR__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__TestMotor __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__TestMotor __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct TestMotor_ { using Type = TestMotor_<ContainerAllocator>; explicit TestMotor_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->action = 0; this->motor_number = 0ul; this->value = 0.0f; this->timeout_ms = 0ul; this->driver_instance = 0; } } explicit TestMotor_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->action = 0; this->motor_number = 0ul; this->value = 0.0f; this->timeout_ms = 0ul; this->driver_instance = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _action_type = uint8_t; _action_type action; using _motor_number_type = uint32_t; _motor_number_type motor_number; using _value_type = float; _value_type value; using _timeout_ms_type = uint32_t; _timeout_ms_type timeout_ms; using _driver_instance_type = uint8_t; _driver_instance_type driver_instance; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__action( const uint8_t & _arg) { this->action = _arg; return *this; } Type & set__motor_number( const uint32_t & _arg) { this->motor_number = _arg; return *this; } Type & set__value( const float & _arg) { this->value = _arg; return *this; } Type & set__timeout_ms( const uint32_t & _arg) { this->timeout_ms = _arg; return *this; } Type & set__driver_instance( const uint8_t & _arg) { this->driver_instance = _arg; return *this; } // constant declarations static constexpr uint8_t NUM_MOTOR_OUTPUTS = 8u; static constexpr uint8_t ACTION_STOP = 0u; static constexpr uint8_t ACTION_RUN = 1u; static constexpr uint8_t ORB_QUEUE_LENGTH = 4u; // pointer types using RawPtr = px4_msgs::msg::TestMotor_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::TestMotor_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::TestMotor_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::TestMotor_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::TestMotor_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::TestMotor_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::TestMotor_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::TestMotor_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::TestMotor_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::TestMotor_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__TestMotor std::shared_ptr<px4_msgs::msg::TestMotor_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__TestMotor std::shared_ptr<px4_msgs::msg::TestMotor_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const TestMotor_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->action != other.action) { return false; } if (this->motor_number != other.motor_number) { return false; } if (this->value != other.value) { return false; } if (this->timeout_ms != other.timeout_ms) { return false; } if (this->driver_instance != other.driver_instance) { return false; } return true; } bool operator!=(const TestMotor_ & other) const { return !this->operator==(other); } }; // struct TestMotor_ // alias to use template instance with default allocator using TestMotor = px4_msgs::msg::TestMotor_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t TestMotor_<ContainerAllocator>::NUM_MOTOR_OUTPUTS; template<typename ContainerAllocator> constexpr uint8_t TestMotor_<ContainerAllocator>::ACTION_STOP; template<typename ContainerAllocator> constexpr uint8_t TestMotor_<ContainerAllocator>::ACTION_RUN; template<typename ContainerAllocator> constexpr uint8_t TestMotor_<ContainerAllocator>::ORB_QUEUE_LENGTH; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__TEST_MOTOR__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_dump__rosidl_typesupport_fastrtps_c.h // generated from rosidl_typesupport_fastrtps_c/resource/idl__rosidl_typesupport_fastrtps_c.h.em // with input from px4_msgs:msg/GpsDump.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GPS_DUMP__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #define PX4_MSGS__MSG__GPS_DUMP__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #include <stddef.h> #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__GpsDump( const void * untyped_ros_message, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__GpsDump( bool & full_bounded, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, GpsDump)(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__GPS_DUMP__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/cellular_status__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/CellularStatus.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/cellular_status__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/cellular_status__functions.h" #include "px4_msgs/msg/cellular_status__struct.h" #ifdef __cplusplus extern "C" { #endif void CellularStatus__rosidl_typesupport_introspection_c__CellularStatus_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__CellularStatus__init(message_memory); } void CellularStatus__rosidl_typesupport_introspection_c__CellularStatus_fini_function(void * message_memory) { px4_msgs__msg__CellularStatus__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember CellularStatus__rosidl_typesupport_introspection_c__CellularStatus_message_member_array[8] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__CellularStatus, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "status", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__CellularStatus, status), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "failure_reason", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__CellularStatus, failure_reason), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "type", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__CellularStatus, type), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "quality", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__CellularStatus, quality), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "mcc", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__CellularStatus, mcc), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "mnc", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__CellularStatus, mnc), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "lac", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__CellularStatus, lac), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers CellularStatus__rosidl_typesupport_introspection_c__CellularStatus_message_members = { "px4_msgs__msg", // message namespace "CellularStatus", // message name 8, // number of fields sizeof(px4_msgs__msg__CellularStatus), CellularStatus__rosidl_typesupport_introspection_c__CellularStatus_message_member_array, // message members CellularStatus__rosidl_typesupport_introspection_c__CellularStatus_init_function, // function to initialize message memory (memory has to be allocated) CellularStatus__rosidl_typesupport_introspection_c__CellularStatus_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t CellularStatus__rosidl_typesupport_introspection_c__CellularStatus_message_type_support_handle = { 0, &CellularStatus__rosidl_typesupport_introspection_c__CellularStatus_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, CellularStatus)() { if (!CellularStatus__rosidl_typesupport_introspection_c__CellularStatus_message_type_support_handle.typesupport_identifier) { CellularStatus__rosidl_typesupport_introspection_c__CellularStatus_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &CellularStatus__rosidl_typesupport_introspection_c__CellularStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_vehicle_local_position_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/VehicleLocalPosition.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/vehicle_local_position__struct.h" #include "px4_msgs/msg/vehicle_local_position__functions.h" #include "rosidl_generator_c/primitives_sequence.h" #include "rosidl_generator_c/primitives_sequence_functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__vehicle_local_position__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[58]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._vehicle_local_position.VehicleLocalPosition", full_classname_dest, 57) == 0); } px4_msgs__msg__VehicleLocalPosition * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // timestamp_sample PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp_sample"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp_sample = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // xy_valid PyObject * field = PyObject_GetAttrString(_pymsg, "xy_valid"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->xy_valid = (Py_True == field); Py_DECREF(field); } { // z_valid PyObject * field = PyObject_GetAttrString(_pymsg, "z_valid"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->z_valid = (Py_True == field); Py_DECREF(field); } { // v_xy_valid PyObject * field = PyObject_GetAttrString(_pymsg, "v_xy_valid"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->v_xy_valid = (Py_True == field); Py_DECREF(field); } { // v_z_valid PyObject * field = PyObject_GetAttrString(_pymsg, "v_z_valid"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->v_z_valid = (Py_True == field); Py_DECREF(field); } { // x PyObject * field = PyObject_GetAttrString(_pymsg, "x"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->x = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // y PyObject * field = PyObject_GetAttrString(_pymsg, "y"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->y = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // z PyObject * field = PyObject_GetAttrString(_pymsg, "z"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->z = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // delta_xy PyObject * field = PyObject_GetAttrString(_pymsg, "delta_xy"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); Py_ssize_t size = 2; float * dest = ros_message->delta_xy; for (Py_ssize_t i = 0; i < size; ++i) { float tmp = *(npy_float32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(float)); } Py_DECREF(seq_field); Py_DECREF(field); } { // xy_reset_counter PyObject * field = PyObject_GetAttrString(_pymsg, "xy_reset_counter"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->xy_reset_counter = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // delta_z PyObject * field = PyObject_GetAttrString(_pymsg, "delta_z"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->delta_z = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // z_reset_counter PyObject * field = PyObject_GetAttrString(_pymsg, "z_reset_counter"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->z_reset_counter = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // vx PyObject * field = PyObject_GetAttrString(_pymsg, "vx"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->vx = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // vy PyObject * field = PyObject_GetAttrString(_pymsg, "vy"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->vy = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // vz PyObject * field = PyObject_GetAttrString(_pymsg, "vz"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->vz = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // z_deriv PyObject * field = PyObject_GetAttrString(_pymsg, "z_deriv"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->z_deriv = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // delta_vxy PyObject * field = PyObject_GetAttrString(_pymsg, "delta_vxy"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); Py_ssize_t size = 2; float * dest = ros_message->delta_vxy; for (Py_ssize_t i = 0; i < size; ++i) { float tmp = *(npy_float32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(float)); } Py_DECREF(seq_field); Py_DECREF(field); } { // vxy_reset_counter PyObject * field = PyObject_GetAttrString(_pymsg, "vxy_reset_counter"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->vxy_reset_counter = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // delta_vz PyObject * field = PyObject_GetAttrString(_pymsg, "delta_vz"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->delta_vz = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // vz_reset_counter PyObject * field = PyObject_GetAttrString(_pymsg, "vz_reset_counter"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->vz_reset_counter = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // ax PyObject * field = PyObject_GetAttrString(_pymsg, "ax"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->ax = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // ay PyObject * field = PyObject_GetAttrString(_pymsg, "ay"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->ay = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // az PyObject * field = PyObject_GetAttrString(_pymsg, "az"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->az = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // heading PyObject * field = PyObject_GetAttrString(_pymsg, "heading"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->heading = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // delta_heading PyObject * field = PyObject_GetAttrString(_pymsg, "delta_heading"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->delta_heading = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // heading_reset_counter PyObject * field = PyObject_GetAttrString(_pymsg, "heading_reset_counter"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->heading_reset_counter = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // xy_global PyObject * field = PyObject_GetAttrString(_pymsg, "xy_global"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->xy_global = (Py_True == field); Py_DECREF(field); } { // z_global PyObject * field = PyObject_GetAttrString(_pymsg, "z_global"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->z_global = (Py_True == field); Py_DECREF(field); } { // ref_timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "ref_timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->ref_timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // ref_lat PyObject * field = PyObject_GetAttrString(_pymsg, "ref_lat"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->ref_lat = PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // ref_lon PyObject * field = PyObject_GetAttrString(_pymsg, "ref_lon"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->ref_lon = PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // ref_alt PyObject * field = PyObject_GetAttrString(_pymsg, "ref_alt"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->ref_alt = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // dist_bottom PyObject * field = PyObject_GetAttrString(_pymsg, "dist_bottom"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->dist_bottom = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // dist_bottom_valid PyObject * field = PyObject_GetAttrString(_pymsg, "dist_bottom_valid"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->dist_bottom_valid = (Py_True == field); Py_DECREF(field); } { // dist_bottom_sensor_bitfield PyObject * field = PyObject_GetAttrString(_pymsg, "dist_bottom_sensor_bitfield"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->dist_bottom_sensor_bitfield = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // eph PyObject * field = PyObject_GetAttrString(_pymsg, "eph"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->eph = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // epv PyObject * field = PyObject_GetAttrString(_pymsg, "epv"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->epv = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // evh PyObject * field = PyObject_GetAttrString(_pymsg, "evh"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->evh = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // evv PyObject * field = PyObject_GetAttrString(_pymsg, "evv"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->evv = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // vxy_max PyObject * field = PyObject_GetAttrString(_pymsg, "vxy_max"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->vxy_max = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // vz_max PyObject * field = PyObject_GetAttrString(_pymsg, "vz_max"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->vz_max = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // hagl_min PyObject * field = PyObject_GetAttrString(_pymsg, "hagl_min"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->hagl_min = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // hagl_max PyObject * field = PyObject_GetAttrString(_pymsg, "hagl_max"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->hagl_max = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__vehicle_local_position__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of VehicleLocalPosition */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._vehicle_local_position"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "VehicleLocalPosition"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__VehicleLocalPosition * ros_message = (px4_msgs__msg__VehicleLocalPosition *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // timestamp_sample PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp_sample); { int rc = PyObject_SetAttrString(_pymessage, "timestamp_sample", field); Py_DECREF(field); if (rc) { return NULL; } } } { // xy_valid PyObject * field = NULL; field = PyBool_FromLong(ros_message->xy_valid ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "xy_valid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // z_valid PyObject * field = NULL; field = PyBool_FromLong(ros_message->z_valid ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "z_valid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // v_xy_valid PyObject * field = NULL; field = PyBool_FromLong(ros_message->v_xy_valid ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "v_xy_valid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // v_z_valid PyObject * field = NULL; field = PyBool_FromLong(ros_message->v_z_valid ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "v_z_valid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // x PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->x); { int rc = PyObject_SetAttrString(_pymessage, "x", field); Py_DECREF(field); if (rc) { return NULL; } } } { // y PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->y); { int rc = PyObject_SetAttrString(_pymessage, "y", field); Py_DECREF(field); if (rc) { return NULL; } } } { // z PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->z); { int rc = PyObject_SetAttrString(_pymessage, "z", field); Py_DECREF(field); if (rc) { return NULL; } } } { // delta_xy PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "delta_xy"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); assert(sizeof(npy_float32) == sizeof(float)); npy_float32 * dst = (npy_float32 *)PyArray_GETPTR1(seq_field, 0); float * src = &(ros_message->delta_xy[0]); memcpy(dst, src, 2 * sizeof(float)); Py_DECREF(field); } { // xy_reset_counter PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->xy_reset_counter); { int rc = PyObject_SetAttrString(_pymessage, "xy_reset_counter", field); Py_DECREF(field); if (rc) { return NULL; } } } { // delta_z PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->delta_z); { int rc = PyObject_SetAttrString(_pymessage, "delta_z", field); Py_DECREF(field); if (rc) { return NULL; } } } { // z_reset_counter PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->z_reset_counter); { int rc = PyObject_SetAttrString(_pymessage, "z_reset_counter", field); Py_DECREF(field); if (rc) { return NULL; } } } { // vx PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->vx); { int rc = PyObject_SetAttrString(_pymessage, "vx", field); Py_DECREF(field); if (rc) { return NULL; } } } { // vy PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->vy); { int rc = PyObject_SetAttrString(_pymessage, "vy", field); Py_DECREF(field); if (rc) { return NULL; } } } { // vz PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->vz); { int rc = PyObject_SetAttrString(_pymessage, "vz", field); Py_DECREF(field); if (rc) { return NULL; } } } { // z_deriv PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->z_deriv); { int rc = PyObject_SetAttrString(_pymessage, "z_deriv", field); Py_DECREF(field); if (rc) { return NULL; } } } { // delta_vxy PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "delta_vxy"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); assert(sizeof(npy_float32) == sizeof(float)); npy_float32 * dst = (npy_float32 *)PyArray_GETPTR1(seq_field, 0); float * src = &(ros_message->delta_vxy[0]); memcpy(dst, src, 2 * sizeof(float)); Py_DECREF(field); } { // vxy_reset_counter PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->vxy_reset_counter); { int rc = PyObject_SetAttrString(_pymessage, "vxy_reset_counter", field); Py_DECREF(field); if (rc) { return NULL; } } } { // delta_vz PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->delta_vz); { int rc = PyObject_SetAttrString(_pymessage, "delta_vz", field); Py_DECREF(field); if (rc) { return NULL; } } } { // vz_reset_counter PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->vz_reset_counter); { int rc = PyObject_SetAttrString(_pymessage, "vz_reset_counter", field); Py_DECREF(field); if (rc) { return NULL; } } } { // ax PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->ax); { int rc = PyObject_SetAttrString(_pymessage, "ax", field); Py_DECREF(field); if (rc) { return NULL; } } } { // ay PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->ay); { int rc = PyObject_SetAttrString(_pymessage, "ay", field); Py_DECREF(field); if (rc) { return NULL; } } } { // az PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->az); { int rc = PyObject_SetAttrString(_pymessage, "az", field); Py_DECREF(field); if (rc) { return NULL; } } } { // heading PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->heading); { int rc = PyObject_SetAttrString(_pymessage, "heading", field); Py_DECREF(field); if (rc) { return NULL; } } } { // delta_heading PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->delta_heading); { int rc = PyObject_SetAttrString(_pymessage, "delta_heading", field); Py_DECREF(field); if (rc) { return NULL; } } } { // heading_reset_counter PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->heading_reset_counter); { int rc = PyObject_SetAttrString(_pymessage, "heading_reset_counter", field); Py_DECREF(field); if (rc) { return NULL; } } } { // xy_global PyObject * field = NULL; field = PyBool_FromLong(ros_message->xy_global ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "xy_global", field); Py_DECREF(field); if (rc) { return NULL; } } } { // z_global PyObject * field = NULL; field = PyBool_FromLong(ros_message->z_global ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "z_global", field); Py_DECREF(field); if (rc) { return NULL; } } } { // ref_timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->ref_timestamp); { int rc = PyObject_SetAttrString(_pymessage, "ref_timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // ref_lat PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->ref_lat); { int rc = PyObject_SetAttrString(_pymessage, "ref_lat", field); Py_DECREF(field); if (rc) { return NULL; } } } { // ref_lon PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->ref_lon); { int rc = PyObject_SetAttrString(_pymessage, "ref_lon", field); Py_DECREF(field); if (rc) { return NULL; } } } { // ref_alt PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->ref_alt); { int rc = PyObject_SetAttrString(_pymessage, "ref_alt", field); Py_DECREF(field); if (rc) { return NULL; } } } { // dist_bottom PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->dist_bottom); { int rc = PyObject_SetAttrString(_pymessage, "dist_bottom", field); Py_DECREF(field); if (rc) { return NULL; } } } { // dist_bottom_valid PyObject * field = NULL; field = PyBool_FromLong(ros_message->dist_bottom_valid ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "dist_bottom_valid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // dist_bottom_sensor_bitfield PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->dist_bottom_sensor_bitfield); { int rc = PyObject_SetAttrString(_pymessage, "dist_bottom_sensor_bitfield", field); Py_DECREF(field); if (rc) { return NULL; } } } { // eph PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->eph); { int rc = PyObject_SetAttrString(_pymessage, "eph", field); Py_DECREF(field); if (rc) { return NULL; } } } { // epv PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->epv); { int rc = PyObject_SetAttrString(_pymessage, "epv", field); Py_DECREF(field); if (rc) { return NULL; } } } { // evh PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->evh); { int rc = PyObject_SetAttrString(_pymessage, "evh", field); Py_DECREF(field); if (rc) { return NULL; } } } { // evv PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->evv); { int rc = PyObject_SetAttrString(_pymessage, "evv", field); Py_DECREF(field); if (rc) { return NULL; } } } { // vxy_max PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->vxy_max); { int rc = PyObject_SetAttrString(_pymessage, "vxy_max", field); Py_DECREF(field); if (rc) { return NULL; } } } { // vz_max PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->vz_max); { int rc = PyObject_SetAttrString(_pymessage, "vz_max", field); Py_DECREF(field); if (rc) { return NULL; } } } { // hagl_min PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->hagl_min); { int rc = PyObject_SetAttrString(_pymessage, "hagl_min", field); Py_DECREF(field); if (rc) { return NULL; } } } { // hagl_max PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->hagl_max); { int rc = PyObject_SetAttrString(_pymessage, "hagl_max", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_vehicle_control_mode.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/VehicleControlMode.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_VehicleControlMode(type): """Metaclass of message 'VehicleControlMode'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.VehicleControlMode') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__vehicle_control_mode cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__vehicle_control_mode cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__vehicle_control_mode cls._TYPE_SUPPORT = module.type_support_msg__msg__vehicle_control_mode cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__vehicle_control_mode @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class VehicleControlMode(metaclass=Metaclass_VehicleControlMode): """Message class 'VehicleControlMode'.""" __slots__ = [ '_timestamp', '_flag_armed', '_flag_external_manual_override_ok', '_flag_control_manual_enabled', '_flag_control_auto_enabled', '_flag_control_offboard_enabled', '_flag_control_rates_enabled', '_flag_control_attitude_enabled', '_flag_control_acceleration_enabled', '_flag_control_velocity_enabled', '_flag_control_position_enabled', '_flag_control_altitude_enabled', '_flag_control_climb_rate_enabled', '_flag_control_termination_enabled', ] _fields_and_field_types = { 'timestamp': 'uint64', 'flag_armed': 'boolean', 'flag_external_manual_override_ok': 'boolean', 'flag_control_manual_enabled': 'boolean', 'flag_control_auto_enabled': 'boolean', 'flag_control_offboard_enabled': 'boolean', 'flag_control_rates_enabled': 'boolean', 'flag_control_attitude_enabled': 'boolean', 'flag_control_acceleration_enabled': 'boolean', 'flag_control_velocity_enabled': 'boolean', 'flag_control_position_enabled': 'boolean', 'flag_control_altitude_enabled': 'boolean', 'flag_control_climb_rate_enabled': 'boolean', 'flag_control_termination_enabled': 'boolean', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.flag_armed = kwargs.get('flag_armed', bool()) self.flag_external_manual_override_ok = kwargs.get('flag_external_manual_override_ok', bool()) self.flag_control_manual_enabled = kwargs.get('flag_control_manual_enabled', bool()) self.flag_control_auto_enabled = kwargs.get('flag_control_auto_enabled', bool()) self.flag_control_offboard_enabled = kwargs.get('flag_control_offboard_enabled', bool()) self.flag_control_rates_enabled = kwargs.get('flag_control_rates_enabled', bool()) self.flag_control_attitude_enabled = kwargs.get('flag_control_attitude_enabled', bool()) self.flag_control_acceleration_enabled = kwargs.get('flag_control_acceleration_enabled', bool()) self.flag_control_velocity_enabled = kwargs.get('flag_control_velocity_enabled', bool()) self.flag_control_position_enabled = kwargs.get('flag_control_position_enabled', bool()) self.flag_control_altitude_enabled = kwargs.get('flag_control_altitude_enabled', bool()) self.flag_control_climb_rate_enabled = kwargs.get('flag_control_climb_rate_enabled', bool()) self.flag_control_termination_enabled = kwargs.get('flag_control_termination_enabled', bool()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.flag_armed != other.flag_armed: return False if self.flag_external_manual_override_ok != other.flag_external_manual_override_ok: return False if self.flag_control_manual_enabled != other.flag_control_manual_enabled: return False if self.flag_control_auto_enabled != other.flag_control_auto_enabled: return False if self.flag_control_offboard_enabled != other.flag_control_offboard_enabled: return False if self.flag_control_rates_enabled != other.flag_control_rates_enabled: return False if self.flag_control_attitude_enabled != other.flag_control_attitude_enabled: return False if self.flag_control_acceleration_enabled != other.flag_control_acceleration_enabled: return False if self.flag_control_velocity_enabled != other.flag_control_velocity_enabled: return False if self.flag_control_position_enabled != other.flag_control_position_enabled: return False if self.flag_control_altitude_enabled != other.flag_control_altitude_enabled: return False if self.flag_control_climb_rate_enabled != other.flag_control_climb_rate_enabled: return False if self.flag_control_termination_enabled != other.flag_control_termination_enabled: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def flag_armed(self): """Message field 'flag_armed'.""" return self._flag_armed @flag_armed.setter def flag_armed(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'flag_armed' field must be of type 'bool'" self._flag_armed = value @property def flag_external_manual_override_ok(self): """Message field 'flag_external_manual_override_ok'.""" return self._flag_external_manual_override_ok @flag_external_manual_override_ok.setter def flag_external_manual_override_ok(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'flag_external_manual_override_ok' field must be of type 'bool'" self._flag_external_manual_override_ok = value @property def flag_control_manual_enabled(self): """Message field 'flag_control_manual_enabled'.""" return self._flag_control_manual_enabled @flag_control_manual_enabled.setter def flag_control_manual_enabled(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'flag_control_manual_enabled' field must be of type 'bool'" self._flag_control_manual_enabled = value @property def flag_control_auto_enabled(self): """Message field 'flag_control_auto_enabled'.""" return self._flag_control_auto_enabled @flag_control_auto_enabled.setter def flag_control_auto_enabled(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'flag_control_auto_enabled' field must be of type 'bool'" self._flag_control_auto_enabled = value @property def flag_control_offboard_enabled(self): """Message field 'flag_control_offboard_enabled'.""" return self._flag_control_offboard_enabled @flag_control_offboard_enabled.setter def flag_control_offboard_enabled(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'flag_control_offboard_enabled' field must be of type 'bool'" self._flag_control_offboard_enabled = value @property def flag_control_rates_enabled(self): """Message field 'flag_control_rates_enabled'.""" return self._flag_control_rates_enabled @flag_control_rates_enabled.setter def flag_control_rates_enabled(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'flag_control_rates_enabled' field must be of type 'bool'" self._flag_control_rates_enabled = value @property def flag_control_attitude_enabled(self): """Message field 'flag_control_attitude_enabled'.""" return self._flag_control_attitude_enabled @flag_control_attitude_enabled.setter def flag_control_attitude_enabled(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'flag_control_attitude_enabled' field must be of type 'bool'" self._flag_control_attitude_enabled = value @property def flag_control_acceleration_enabled(self): """Message field 'flag_control_acceleration_enabled'.""" return self._flag_control_acceleration_enabled @flag_control_acceleration_enabled.setter def flag_control_acceleration_enabled(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'flag_control_acceleration_enabled' field must be of type 'bool'" self._flag_control_acceleration_enabled = value @property def flag_control_velocity_enabled(self): """Message field 'flag_control_velocity_enabled'.""" return self._flag_control_velocity_enabled @flag_control_velocity_enabled.setter def flag_control_velocity_enabled(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'flag_control_velocity_enabled' field must be of type 'bool'" self._flag_control_velocity_enabled = value @property def flag_control_position_enabled(self): """Message field 'flag_control_position_enabled'.""" return self._flag_control_position_enabled @flag_control_position_enabled.setter def flag_control_position_enabled(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'flag_control_position_enabled' field must be of type 'bool'" self._flag_control_position_enabled = value @property def flag_control_altitude_enabled(self): """Message field 'flag_control_altitude_enabled'.""" return self._flag_control_altitude_enabled @flag_control_altitude_enabled.setter def flag_control_altitude_enabled(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'flag_control_altitude_enabled' field must be of type 'bool'" self._flag_control_altitude_enabled = value @property def flag_control_climb_rate_enabled(self): """Message field 'flag_control_climb_rate_enabled'.""" return self._flag_control_climb_rate_enabled @flag_control_climb_rate_enabled.setter def flag_control_climb_rate_enabled(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'flag_control_climb_rate_enabled' field must be of type 'bool'" self._flag_control_climb_rate_enabled = value @property def flag_control_termination_enabled(self): """Message field 'flag_control_termination_enabled'.""" return self._flag_control_termination_enabled @flag_control_termination_enabled.setter def flag_control_termination_enabled(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'flag_control_termination_enabled' field must be of type 'bool'" self._flag_control_termination_enabled = value <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/power_button_state.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__POWER_BUTTON_STATE_HPP_ #define PX4_MSGS__MSG__POWER_BUTTON_STATE_HPP_ #include "px4_msgs/msg/power_button_state__struct.hpp" #include "px4_msgs/msg/power_button_state__traits.hpp" #endif // PX4_MSGS__MSG__POWER_BUTTON_STATE_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_odometry__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/EstimatorOdometry.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/estimator_odometry__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/estimator_odometry__functions.h" #include "px4_msgs/msg/estimator_odometry__struct.h" #ifdef __cplusplus extern "C" { #endif void EstimatorOdometry__rosidl_typesupport_introspection_c__EstimatorOdometry_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__EstimatorOdometry__init(message_memory); } void EstimatorOdometry__rosidl_typesupport_introspection_c__EstimatorOdometry_fini_function(void * message_memory) { px4_msgs__msg__EstimatorOdometry__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember EstimatorOdometry__rosidl_typesupport_introspection_c__EstimatorOdometry_message_member_array[17] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorOdometry, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorOdometry, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "local_frame", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorOdometry, local_frame), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "x", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorOdometry, x), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "y", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorOdometry, y), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "z", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorOdometry, z), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "q", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorOdometry, q), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "q_offset", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorOdometry, q_offset), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "pose_covariance", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 21, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorOdometry, pose_covariance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "velocity_frame", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorOdometry, velocity_frame), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vx", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorOdometry, vx), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vy", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorOdometry, vy), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vz", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorOdometry, vz), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rollspeed", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorOdometry, rollspeed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "pitchspeed", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorOdometry, pitchspeed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yawspeed", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorOdometry, yawspeed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "velocity_covariance", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 21, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorOdometry, velocity_covariance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers EstimatorOdometry__rosidl_typesupport_introspection_c__EstimatorOdometry_message_members = { "px4_msgs__msg", // message namespace "EstimatorOdometry", // message name 17, // number of fields sizeof(px4_msgs__msg__EstimatorOdometry), EstimatorOdometry__rosidl_typesupport_introspection_c__EstimatorOdometry_message_member_array, // message members EstimatorOdometry__rosidl_typesupport_introspection_c__EstimatorOdometry_init_function, // function to initialize message memory (memory has to be allocated) EstimatorOdometry__rosidl_typesupport_introspection_c__EstimatorOdometry_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t EstimatorOdometry__rosidl_typesupport_introspection_c__EstimatorOdometry_message_type_support_handle = { 0, &EstimatorOdometry__rosidl_typesupport_introspection_c__EstimatorOdometry_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, EstimatorOdometry)() { if (!EstimatorOdometry__rosidl_typesupport_introspection_c__EstimatorOdometry_message_type_support_handle.typesupport_identifier) { EstimatorOdometry__rosidl_typesupport_introspection_c__EstimatorOdometry_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &EstimatorOdometry__rosidl_typesupport_introspection_c__EstimatorOdometry_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/multi_rtd_interfaces/rosidl_generator_py/multi_rtd_interfaces/msg/__init__.py from multi_rtd_interfaces.msg._robot_trajectory import RobotTrajectory # noqa: F401 <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_imu_status.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_IMU_STATUS_HPP_ #define PX4_MSGS__MSG__VEHICLE_IMU_STATUS_HPP_ #include "px4_msgs/msg/vehicle_imu_status__struct.hpp" #include "px4_msgs/msg/vehicle_imu_status__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_IMU_STATUS_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/fw_virtual_attitude_setpoint.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/FwVirtualAttitudeSetpoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__FW_VIRTUAL_ATTITUDE_SETPOINT_H_ #define PX4_MSGS__MSG__FW_VIRTUAL_ATTITUDE_SETPOINT_H_ #include "px4_msgs/msg/fw_virtual_attitude_setpoint__struct.h" #include "px4_msgs/msg/fw_virtual_attitude_setpoint__functions.h" #include "px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.h" #endif // PX4_MSGS__MSG__FW_VIRTUAL_ATTITUDE_SETPOINT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/VehicleTrajectoryWaypointDesired.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_trajectory_waypoint_desired__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/vehicle_trajectory_waypoint_desired__struct.h" #include "px4_msgs/msg/vehicle_trajectory_waypoint_desired__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif #include "px4_msgs/msg/trajectory_waypoint__functions.h" // waypoints // forward declare type support functions size_t get_serialized_size_px4_msgs__msg__TrajectoryWaypoint( const void * untyped_ros_message, size_t current_alignment); size_t max_serialized_size_px4_msgs__msg__TrajectoryWaypoint( bool & full_bounded, size_t current_alignment); const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, TrajectoryWaypoint)(); using _VehicleTrajectoryWaypointDesired__ros_msg_type = px4_msgs__msg__VehicleTrajectoryWaypointDesired; static bool _VehicleTrajectoryWaypointDesired__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _VehicleTrajectoryWaypointDesired__ros_msg_type * ros_message = static_cast<const _VehicleTrajectoryWaypointDesired__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: type { cdr << ros_message->type; } // Field name: waypoints { const message_type_support_callbacks_t * callbacks = static_cast<const message_type_support_callbacks_t *>( ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, TrajectoryWaypoint )()->data); size_t size = 5; auto array_ptr = ros_message->waypoints; for (size_t i = 0; i < size; ++i) { if (!callbacks->cdr_serialize( &array_ptr[i], cdr)) { return false; } } } return true; } static bool _VehicleTrajectoryWaypointDesired__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _VehicleTrajectoryWaypointDesired__ros_msg_type * ros_message = static_cast<_VehicleTrajectoryWaypointDesired__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: type { cdr >> ros_message->type; } // Field name: waypoints { const message_type_support_callbacks_t * callbacks = static_cast<const message_type_support_callbacks_t *>( ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, TrajectoryWaypoint )()->data); size_t size = 5; auto array_ptr = ros_message->waypoints; for (size_t i = 0; i < size; ++i) { if (!callbacks->cdr_deserialize( cdr, &array_ptr[i])) { return false; } } } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__VehicleTrajectoryWaypointDesired( const void * untyped_ros_message, size_t current_alignment) { const _VehicleTrajectoryWaypointDesired__ros_msg_type * ros_message = static_cast<const _VehicleTrajectoryWaypointDesired__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name type { size_t item_size = sizeof(ros_message->type); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name waypoints { size_t array_size = 5; auto array_ptr = ros_message->waypoints; for (size_t index = 0; index < array_size; ++index) { current_alignment += get_serialized_size_px4_msgs__msg__TrajectoryWaypoint( &array_ptr[index], current_alignment); } } return current_alignment - initial_alignment; } static uint32_t _VehicleTrajectoryWaypointDesired__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__VehicleTrajectoryWaypointDesired( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__VehicleTrajectoryWaypointDesired( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: type { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: waypoints { size_t array_size = 5; for (size_t index = 0; index < array_size; ++index) { current_alignment += max_serialized_size_px4_msgs__msg__TrajectoryWaypoint( full_bounded, current_alignment); } } return current_alignment - initial_alignment; } static size_t _VehicleTrajectoryWaypointDesired__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__VehicleTrajectoryWaypointDesired( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_VehicleTrajectoryWaypointDesired = { "px4_msgs::msg", "VehicleTrajectoryWaypointDesired", _VehicleTrajectoryWaypointDesired__cdr_serialize, _VehicleTrajectoryWaypointDesired__cdr_deserialize, _VehicleTrajectoryWaypointDesired__get_serialized_size, _VehicleTrajectoryWaypointDesired__max_serialized_size }; static rosidl_message_type_support_t _VehicleTrajectoryWaypointDesired__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_VehicleTrajectoryWaypointDesired, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, VehicleTrajectoryWaypointDesired)() { return &_VehicleTrajectoryWaypointDesired__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/multi_rtd_interfaces/CMakeFiles/multi_rtd_interfaces__rosidl_typesupport_introspection_cpp.dir/cmake_clean.cmake file(REMOVE_RECURSE "rosidl_typesupport_introspection_cpp/multi_rtd_interfaces/msg/robot_trajectory__rosidl_typesupport_introspection_cpp.hpp" "rosidl_typesupport_introspection_cpp/multi_rtd_interfaces/msg/robot_trajectory__type_support.cpp" "CMakeFiles/multi_rtd_interfaces__rosidl_typesupport_introspection_cpp.dir/rosidl_typesupport_introspection_cpp/multi_rtd_interfaces/msg/robot_trajectory__type_support.cpp.o" "libmulti_rtd_interfaces__rosidl_typesupport_introspection_cpp.pdb" "libmulti_rtd_interfaces__rosidl_typesupport_introspection_cpp.so" ) # Per-language clean rules from dependency scanning. foreach(lang CXX) include(CMakeFiles/multi_rtd_interfaces__rosidl_typesupport_introspection_cpp.dir/cmake_clean_${lang}.cmake OPTIONAL) endforeach() <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_vtol_vehicle_status.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/VtolVehicleStatus.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_VtolVehicleStatus(type): """Metaclass of message 'VtolVehicleStatus'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'VEHICLE_VTOL_STATE_UNDEFINED': 0, 'VEHICLE_VTOL_STATE_TRANSITION_TO_FW': 1, 'VEHICLE_VTOL_STATE_TRANSITION_TO_MC': 2, 'VEHICLE_VTOL_STATE_MC': 3, 'VEHICLE_VTOL_STATE_FW': 4, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.VtolVehicleStatus') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__vtol_vehicle_status cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__vtol_vehicle_status cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__vtol_vehicle_status cls._TYPE_SUPPORT = module.type_support_msg__msg__vtol_vehicle_status cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__vtol_vehicle_status @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'VEHICLE_VTOL_STATE_UNDEFINED': cls.__constants['VEHICLE_VTOL_STATE_UNDEFINED'], 'VEHICLE_VTOL_STATE_TRANSITION_TO_FW': cls.__constants['VEHICLE_VTOL_STATE_TRANSITION_TO_FW'], 'VEHICLE_VTOL_STATE_TRANSITION_TO_MC': cls.__constants['VEHICLE_VTOL_STATE_TRANSITION_TO_MC'], 'VEHICLE_VTOL_STATE_MC': cls.__constants['VEHICLE_VTOL_STATE_MC'], 'VEHICLE_VTOL_STATE_FW': cls.__constants['VEHICLE_VTOL_STATE_FW'], } @property def VEHICLE_VTOL_STATE_UNDEFINED(self): """Message constant 'VEHICLE_VTOL_STATE_UNDEFINED'.""" return Metaclass_VtolVehicleStatus.__constants['VEHICLE_VTOL_STATE_UNDEFINED'] @property def VEHICLE_VTOL_STATE_TRANSITION_TO_FW(self): """Message constant 'VEHICLE_VTOL_STATE_TRANSITION_TO_FW'.""" return Metaclass_VtolVehicleStatus.__constants['VEHICLE_VTOL_STATE_TRANSITION_TO_FW'] @property def VEHICLE_VTOL_STATE_TRANSITION_TO_MC(self): """Message constant 'VEHICLE_VTOL_STATE_TRANSITION_TO_MC'.""" return Metaclass_VtolVehicleStatus.__constants['VEHICLE_VTOL_STATE_TRANSITION_TO_MC'] @property def VEHICLE_VTOL_STATE_MC(self): """Message constant 'VEHICLE_VTOL_STATE_MC'.""" return Metaclass_VtolVehicleStatus.__constants['VEHICLE_VTOL_STATE_MC'] @property def VEHICLE_VTOL_STATE_FW(self): """Message constant 'VEHICLE_VTOL_STATE_FW'.""" return Metaclass_VtolVehicleStatus.__constants['VEHICLE_VTOL_STATE_FW'] class VtolVehicleStatus(metaclass=Metaclass_VtolVehicleStatus): """ Message class 'VtolVehicleStatus'. Constants: VEHICLE_VTOL_STATE_UNDEFINED VEHICLE_VTOL_STATE_TRANSITION_TO_FW VEHICLE_VTOL_STATE_TRANSITION_TO_MC VEHICLE_VTOL_STATE_MC VEHICLE_VTOL_STATE_FW """ __slots__ = [ '_timestamp', '_vtol_in_rw_mode', '_vtol_in_trans_mode', '_in_transition_to_fw', '_vtol_transition_failsafe', '_fw_permanent_stab', ] _fields_and_field_types = { 'timestamp': 'uint64', 'vtol_in_rw_mode': 'boolean', 'vtol_in_trans_mode': 'boolean', 'in_transition_to_fw': 'boolean', 'vtol_transition_failsafe': 'boolean', 'fw_permanent_stab': 'boolean', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.vtol_in_rw_mode = kwargs.get('vtol_in_rw_mode', bool()) self.vtol_in_trans_mode = kwargs.get('vtol_in_trans_mode', bool()) self.in_transition_to_fw = kwargs.get('in_transition_to_fw', bool()) self.vtol_transition_failsafe = kwargs.get('vtol_transition_failsafe', bool()) self.fw_permanent_stab = kwargs.get('fw_permanent_stab', bool()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.vtol_in_rw_mode != other.vtol_in_rw_mode: return False if self.vtol_in_trans_mode != other.vtol_in_trans_mode: return False if self.in_transition_to_fw != other.in_transition_to_fw: return False if self.vtol_transition_failsafe != other.vtol_transition_failsafe: return False if self.fw_permanent_stab != other.fw_permanent_stab: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def vtol_in_rw_mode(self): """Message field 'vtol_in_rw_mode'.""" return self._vtol_in_rw_mode @vtol_in_rw_mode.setter def vtol_in_rw_mode(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'vtol_in_rw_mode' field must be of type 'bool'" self._vtol_in_rw_mode = value @property def vtol_in_trans_mode(self): """Message field 'vtol_in_trans_mode'.""" return self._vtol_in_trans_mode @vtol_in_trans_mode.setter def vtol_in_trans_mode(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'vtol_in_trans_mode' field must be of type 'bool'" self._vtol_in_trans_mode = value @property def in_transition_to_fw(self): """Message field 'in_transition_to_fw'.""" return self._in_transition_to_fw @in_transition_to_fw.setter def in_transition_to_fw(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'in_transition_to_fw' field must be of type 'bool'" self._in_transition_to_fw = value @property def vtol_transition_failsafe(self): """Message field 'vtol_transition_failsafe'.""" return self._vtol_transition_failsafe @vtol_transition_failsafe.setter def vtol_transition_failsafe(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'vtol_transition_failsafe' field must be of type 'bool'" self._vtol_transition_failsafe = value @property def fw_permanent_stab(self): """Message field 'fw_permanent_stab'.""" return self._fw_permanent_stab @fw_permanent_stab.setter def fw_permanent_stab(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'fw_permanent_stab' field must be of type 'bool'" self._fw_permanent_stab = value <file_sep>/install/px4_msgs/include/px4_msgs/msg/cpuload.hpp /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/cpuload.hpp<file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/landing_target_innovations__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/LandingTargetInnovations.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/landing_target_innovations__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/landing_target_innovations__struct.h" #include "px4_msgs/msg/landing_target_innovations__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _LandingTargetInnovations__ros_msg_type = px4_msgs__msg__LandingTargetInnovations; static bool _LandingTargetInnovations__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _LandingTargetInnovations__ros_msg_type * ros_message = static_cast<const _LandingTargetInnovations__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: innov_x { cdr << ros_message->innov_x; } // Field name: innov_y { cdr << ros_message->innov_y; } // Field name: innov_cov_x { cdr << ros_message->innov_cov_x; } // Field name: innov_cov_y { cdr << ros_message->innov_cov_y; } return true; } static bool _LandingTargetInnovations__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _LandingTargetInnovations__ros_msg_type * ros_message = static_cast<_LandingTargetInnovations__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: innov_x { cdr >> ros_message->innov_x; } // Field name: innov_y { cdr >> ros_message->innov_y; } // Field name: innov_cov_x { cdr >> ros_message->innov_cov_x; } // Field name: innov_cov_y { cdr >> ros_message->innov_cov_y; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__LandingTargetInnovations( const void * untyped_ros_message, size_t current_alignment) { const _LandingTargetInnovations__ros_msg_type * ros_message = static_cast<const _LandingTargetInnovations__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name innov_x { size_t item_size = sizeof(ros_message->innov_x); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name innov_y { size_t item_size = sizeof(ros_message->innov_y); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name innov_cov_x { size_t item_size = sizeof(ros_message->innov_cov_x); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name innov_cov_y { size_t item_size = sizeof(ros_message->innov_cov_y); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _LandingTargetInnovations__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__LandingTargetInnovations( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__LandingTargetInnovations( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: innov_x { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: innov_y { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: innov_cov_x { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: innov_cov_y { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _LandingTargetInnovations__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__LandingTargetInnovations( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_LandingTargetInnovations = { "px4_msgs::msg", "LandingTargetInnovations", _LandingTargetInnovations__cdr_serialize, _LandingTargetInnovations__cdr_deserialize, _LandingTargetInnovations__get_serialized_size, _LandingTargetInnovations__max_serialized_size }; static rosidl_message_type_support_t _LandingTargetInnovations__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_LandingTargetInnovations, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, LandingTargetInnovations)() { return &_LandingTargetInnovations__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/gimbal_manager_set_manual_control.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GIMBAL_MANAGER_SET_MANUAL_CONTROL_HPP_ #define PX4_MSGS__MSG__GIMBAL_MANAGER_SET_MANUAL_CONTROL_HPP_ #include "px4_msgs/msg/gimbal_manager_set_manual_control__struct.hpp" #include "px4_msgs/msg/gimbal_manager_set_manual_control__traits.hpp" #endif // PX4_MSGS__MSG__GIMBAL_MANAGER_SET_MANUAL_CONTROL_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/logger_status__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/LoggerStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/logger_status__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/logger_status__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::LoggerStatus & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: type cdr << ros_message.type; // Member: backend cdr << ros_message.backend; // Member: total_written_kb cdr << ros_message.total_written_kb; // Member: write_rate_kb_s cdr << ros_message.write_rate_kb_s; // Member: dropouts cdr << ros_message.dropouts; // Member: message_gaps cdr << ros_message.message_gaps; // Member: buffer_used_bytes cdr << ros_message.buffer_used_bytes; // Member: buffer_size_bytes cdr << ros_message.buffer_size_bytes; // Member: num_messages cdr << ros_message.num_messages; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::LoggerStatus & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: type cdr >> ros_message.type; // Member: backend cdr >> ros_message.backend; // Member: total_written_kb cdr >> ros_message.total_written_kb; // Member: write_rate_kb_s cdr >> ros_message.write_rate_kb_s; // Member: dropouts cdr >> ros_message.dropouts; // Member: message_gaps cdr >> ros_message.message_gaps; // Member: buffer_used_bytes cdr >> ros_message.buffer_used_bytes; // Member: buffer_size_bytes cdr >> ros_message.buffer_size_bytes; // Member: num_messages cdr >> ros_message.num_messages; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::LoggerStatus & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: type { size_t item_size = sizeof(ros_message.type); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: backend { size_t item_size = sizeof(ros_message.backend); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: total_written_kb { size_t item_size = sizeof(ros_message.total_written_kb); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: write_rate_kb_s { size_t item_size = sizeof(ros_message.write_rate_kb_s); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: dropouts { size_t item_size = sizeof(ros_message.dropouts); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: message_gaps { size_t item_size = sizeof(ros_message.message_gaps); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: buffer_used_bytes { size_t item_size = sizeof(ros_message.buffer_used_bytes); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: buffer_size_bytes { size_t item_size = sizeof(ros_message.buffer_size_bytes); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: num_messages { size_t item_size = sizeof(ros_message.num_messages); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_LoggerStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: type { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: backend { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: total_written_kb { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: write_rate_kb_s { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: dropouts { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: message_gaps { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: buffer_used_bytes { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: buffer_size_bytes { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: num_messages { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _LoggerStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::LoggerStatus *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _LoggerStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::LoggerStatus *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _LoggerStatus__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::LoggerStatus *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _LoggerStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_LoggerStatus(full_bounded, 0); } static message_type_support_callbacks_t _LoggerStatus__callbacks = { "px4_msgs::msg", "LoggerStatus", _LoggerStatus__cdr_serialize, _LoggerStatus__cdr_deserialize, _LoggerStatus__get_serialized_size, _LoggerStatus__max_serialized_size }; static rosidl_message_type_support_t _LoggerStatus__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_LoggerStatus__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::LoggerStatus>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_LoggerStatus__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, LoggerStatus)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_LoggerStatus__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_esc_status_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/EscStatus.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/esc_status__struct.h" #include "px4_msgs/msg/esc_status__functions.h" #include "rosidl_generator_c/primitives_sequence.h" #include "rosidl_generator_c/primitives_sequence_functions.h" // Nested array functions includes #include "px4_msgs/msg/esc_report__functions.h" // end nested array functions include bool px4_msgs__msg__esc_report__convert_from_py(PyObject * _pymsg, void * _ros_message); PyObject * px4_msgs__msg__esc_report__convert_to_py(void * raw_ros_message); ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__esc_status__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[35]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._esc_status.EscStatus", full_classname_dest, 34) == 0); } px4_msgs__msg__EscStatus * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // counter PyObject * field = PyObject_GetAttrString(_pymsg, "counter"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->counter = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // esc_count PyObject * field = PyObject_GetAttrString(_pymsg, "esc_count"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->esc_count = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // esc_connectiontype PyObject * field = PyObject_GetAttrString(_pymsg, "esc_connectiontype"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->esc_connectiontype = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // esc_online_flags PyObject * field = PyObject_GetAttrString(_pymsg, "esc_online_flags"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->esc_online_flags = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // esc_armed_flags PyObject * field = PyObject_GetAttrString(_pymsg, "esc_armed_flags"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->esc_armed_flags = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // esc PyObject * field = PyObject_GetAttrString(_pymsg, "esc"); if (!field) { return false; } PyObject * seq_field = PySequence_Fast(field, "expected a sequence in 'esc'"); if (!seq_field) { Py_DECREF(field); return false; } Py_ssize_t size = 8; px4_msgs__msg__EscReport * dest = ros_message->esc; for (Py_ssize_t i = 0; i < size; ++i) { if (!px4_msgs__msg__esc_report__convert_from_py(PySequence_Fast_GET_ITEM(seq_field, i), &dest[i])) { Py_DECREF(seq_field); Py_DECREF(field); return false; } } Py_DECREF(seq_field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__esc_status__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of EscStatus */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._esc_status"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "EscStatus"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__EscStatus * ros_message = (px4_msgs__msg__EscStatus *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // counter PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->counter); { int rc = PyObject_SetAttrString(_pymessage, "counter", field); Py_DECREF(field); if (rc) { return NULL; } } } { // esc_count PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->esc_count); { int rc = PyObject_SetAttrString(_pymessage, "esc_count", field); Py_DECREF(field); if (rc) { return NULL; } } } { // esc_connectiontype PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->esc_connectiontype); { int rc = PyObject_SetAttrString(_pymessage, "esc_connectiontype", field); Py_DECREF(field); if (rc) { return NULL; } } } { // esc_online_flags PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->esc_online_flags); { int rc = PyObject_SetAttrString(_pymessage, "esc_online_flags", field); Py_DECREF(field); if (rc) { return NULL; } } } { // esc_armed_flags PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->esc_armed_flags); { int rc = PyObject_SetAttrString(_pymessage, "esc_armed_flags", field); Py_DECREF(field); if (rc) { return NULL; } } } { // esc PyObject * field = NULL; size_t size = 8; field = PyList_New(size); if (!field) { return NULL; } px4_msgs__msg__EscReport * item; for (size_t i = 0; i < size; ++i) { item = &(ros_message->esc[i]); PyObject * pyitem = px4_msgs__msg__esc_report__convert_to_py(item); if (!pyitem) { Py_DECREF(field); return NULL; } int rc = PyList_SetItem(field, i, pyitem); (void)rc; assert(rc == 0); } assert(PySequence_Check(field)); { int rc = PyObject_SetAttrString(_pymessage, "esc", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/control_allocator_status.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/ControlAllocatorStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__CONTROL_ALLOCATOR_STATUS_H_ #define PX4_MSGS__MSG__CONTROL_ALLOCATOR_STATUS_H_ #include "px4_msgs/msg/control_allocator_status__struct.h" #include "px4_msgs/msg/control_allocator_status__functions.h" #include "px4_msgs/msg/control_allocator_status__type_support.h" #endif // PX4_MSGS__MSG__CONTROL_ALLOCATOR_STATUS_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_channels__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/RcChannels.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/rc_channels__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/rc_channels__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::RcChannels & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: timestamp_last_valid cdr << ros_message.timestamp_last_valid; // Member: channels { cdr << ros_message.channels; } // Member: channel_count cdr << ros_message.channel_count; // Member: function { cdr << ros_message.function; } // Member: rssi cdr << ros_message.rssi; // Member: signal_lost cdr << (ros_message.signal_lost ? true : false); // Member: frame_drop_count cdr << ros_message.frame_drop_count; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::RcChannels & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: timestamp_last_valid cdr >> ros_message.timestamp_last_valid; // Member: channels { cdr >> ros_message.channels; } // Member: channel_count cdr >> ros_message.channel_count; // Member: function { cdr >> ros_message.function; } // Member: rssi cdr >> ros_message.rssi; // Member: signal_lost { uint8_t tmp; cdr >> tmp; ros_message.signal_lost = tmp ? true : false; } // Member: frame_drop_count cdr >> ros_message.frame_drop_count; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::RcChannels & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: timestamp_last_valid { size_t item_size = sizeof(ros_message.timestamp_last_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: channels { size_t array_size = 18; size_t item_size = sizeof(ros_message.channels[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: channel_count { size_t item_size = sizeof(ros_message.channel_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: function { size_t array_size = 26; size_t item_size = sizeof(ros_message.function[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rssi { size_t item_size = sizeof(ros_message.rssi); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: signal_lost { size_t item_size = sizeof(ros_message.signal_lost); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: frame_drop_count { size_t item_size = sizeof(ros_message.frame_drop_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_RcChannels( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: timestamp_last_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: channels { size_t array_size = 18; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: channel_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: function { size_t array_size = 26; current_alignment += array_size * sizeof(uint8_t); } // Member: rssi { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: signal_lost { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: frame_drop_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static bool _RcChannels__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::RcChannels *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _RcChannels__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::RcChannels *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _RcChannels__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::RcChannels *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _RcChannels__max_serialized_size(bool & full_bounded) { return max_serialized_size_RcChannels(full_bounded, 0); } static message_type_support_callbacks_t _RcChannels__callbacks = { "px4_msgs::msg", "RcChannels", _RcChannels__cdr_serialize, _RcChannels__cdr_deserialize, _RcChannels__get_serialized_size, _RcChannels__max_serialized_size }; static rosidl_message_type_support_t _RcChannels__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_RcChannels__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::RcChannels>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_RcChannels__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, RcChannels)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_RcChannels__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_cpp/px4_msgs/msg/rate_ctrl_status__type_support.cpp // generated from rosidl_typesupport_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/RateCtrlStatus.idl // generated code does not contain a copyright notice #include "cstddef" #include "rosidl_generator_c/message_type_support_struct.h" #include "px4_msgs/msg/rate_ctrl_status__struct.hpp" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_cpp/visibility_control.h" #include "px4_msgs/msg/rate_ctrl_status__rosidl_typesupport_fastrtps_cpp.hpp" namespace rosidl_typesupport_cpp { template<> ROSIDL_TYPESUPPORT_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::RateCtrlStatus>() { return ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, RateCtrlStatus)(); } #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_cpp, px4_msgs, msg, RateCtrlStatus)() { return get_message_type_support_handle<px4_msgs::msg::RateCtrlStatus>(); } #ifdef __cplusplus } #endif } // namespace rosidl_typesupport_cpp <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_mag__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/SensorMag.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_MAG__STRUCT_H_ #define PX4_MSGS__MSG__SENSOR_MAG__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'ORB_QUEUE_LENGTH'. enum { px4_msgs__msg__SensorMag__ORB_QUEUE_LENGTH = 4 }; // Struct defined in msg/SensorMag in the package px4_msgs. typedef struct px4_msgs__msg__SensorMag { uint64_t timestamp; uint64_t timestamp_sample; uint32_t device_id; float x; float y; float z; float temperature; uint32_t error_count; bool is_external; } px4_msgs__msg__SensorMag; // Struct for a sequence of px4_msgs__msg__SensorMag. typedef struct px4_msgs__msg__SensorMag__Sequence { px4_msgs__msg__SensorMag * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__SensorMag__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__SENSOR_MAG__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/airspeed_validated.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/AirspeedValidated.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__AIRSPEED_VALIDATED_H_ #define PX4_MSGS__MSG__AIRSPEED_VALIDATED_H_ #include "px4_msgs/msg/airspeed_validated__struct.h" #include "px4_msgs/msg/airspeed_validated__functions.h" #include "px4_msgs/msg/airspeed_validated__type_support.h" #endif // PX4_MSGS__MSG__AIRSPEED_VALIDATED_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_mag__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/SensorMag.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/sensor_mag__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__SensorMag__init(px4_msgs__msg__SensorMag * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // device_id // x // y // z // temperature // error_count // is_external return true; } void px4_msgs__msg__SensorMag__fini(px4_msgs__msg__SensorMag * msg) { if (!msg) { return; } // timestamp // timestamp_sample // device_id // x // y // z // temperature // error_count // is_external } px4_msgs__msg__SensorMag * px4_msgs__msg__SensorMag__create() { px4_msgs__msg__SensorMag * msg = (px4_msgs__msg__SensorMag *)malloc(sizeof(px4_msgs__msg__SensorMag)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__SensorMag)); bool success = px4_msgs__msg__SensorMag__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__SensorMag__destroy(px4_msgs__msg__SensorMag * msg) { if (msg) { px4_msgs__msg__SensorMag__fini(msg); } free(msg); } bool px4_msgs__msg__SensorMag__Sequence__init(px4_msgs__msg__SensorMag__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__SensorMag * data = NULL; if (size) { data = (px4_msgs__msg__SensorMag *)calloc(size, sizeof(px4_msgs__msg__SensorMag)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__SensorMag__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__SensorMag__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__SensorMag__Sequence__fini(px4_msgs__msg__SensorMag__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__SensorMag__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__SensorMag__Sequence * px4_msgs__msg__SensorMag__Sequence__create(size_t size) { px4_msgs__msg__SensorMag__Sequence * array = (px4_msgs__msg__SensorMag__Sequence *)malloc(sizeof(px4_msgs__msg__SensorMag__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__SensorMag__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__SensorMag__Sequence__destroy(px4_msgs__msg__SensorMag__Sequence * array) { if (array) { px4_msgs__msg__SensorMag__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_constraints__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleConstraints.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_constraints__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/vehicle_constraints__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::VehicleConstraints & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: speed_xy cdr << ros_message.speed_xy; // Member: speed_up cdr << ros_message.speed_up; // Member: speed_down cdr << ros_message.speed_down; // Member: want_takeoff cdr << (ros_message.want_takeoff ? true : false); return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::VehicleConstraints & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: speed_xy cdr >> ros_message.speed_xy; // Member: speed_up cdr >> ros_message.speed_up; // Member: speed_down cdr >> ros_message.speed_down; // Member: want_takeoff { uint8_t tmp; cdr >> tmp; ros_message.want_takeoff = tmp ? true : false; } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::VehicleConstraints & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: speed_xy { size_t item_size = sizeof(ros_message.speed_xy); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: speed_up { size_t item_size = sizeof(ros_message.speed_up); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: speed_down { size_t item_size = sizeof(ros_message.speed_down); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: want_takeoff { size_t item_size = sizeof(ros_message.want_takeoff); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_VehicleConstraints( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: speed_xy { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: speed_up { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: speed_down { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: want_takeoff { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _VehicleConstraints__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::VehicleConstraints *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _VehicleConstraints__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::VehicleConstraints *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _VehicleConstraints__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::VehicleConstraints *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _VehicleConstraints__max_serialized_size(bool & full_bounded) { return max_serialized_size_VehicleConstraints(full_bounded, 0); } static message_type_support_callbacks_t _VehicleConstraints__callbacks = { "px4_msgs::msg", "VehicleConstraints", _VehicleConstraints__cdr_serialize, _VehicleConstraints__cdr_deserialize, _VehicleConstraints__get_serialized_size, _VehicleConstraints__max_serialized_size }; static rosidl_message_type_support_t _VehicleConstraints__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_VehicleConstraints__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleConstraints>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_VehicleConstraints__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, VehicleConstraints)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_VehicleConstraints__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/sensor_combined__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/SensorCombined.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_COMBINED__STRUCT_HPP_ #define PX4_MSGS__MSG__SENSOR_COMBINED__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__SensorCombined __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__SensorCombined __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct SensorCombined_ { using Type = SensorCombined_<ContainerAllocator>; explicit SensorCombined_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; std::fill<typename std::array<float, 3>::iterator, float>(this->gyro_rad.begin(), this->gyro_rad.end(), 0.0f); this->gyro_integral_dt = 0ul; this->accelerometer_timestamp_relative = 0l; std::fill<typename std::array<float, 3>::iterator, float>(this->accelerometer_m_s2.begin(), this->accelerometer_m_s2.end(), 0.0f); this->accelerometer_integral_dt = 0ul; this->accelerometer_clipping = 0; } } explicit SensorCombined_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : gyro_rad(_alloc), accelerometer_m_s2(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; std::fill<typename std::array<float, 3>::iterator, float>(this->gyro_rad.begin(), this->gyro_rad.end(), 0.0f); this->gyro_integral_dt = 0ul; this->accelerometer_timestamp_relative = 0l; std::fill<typename std::array<float, 3>::iterator, float>(this->accelerometer_m_s2.begin(), this->accelerometer_m_s2.end(), 0.0f); this->accelerometer_integral_dt = 0ul; this->accelerometer_clipping = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _gyro_rad_type = std::array<float, 3>; _gyro_rad_type gyro_rad; using _gyro_integral_dt_type = uint32_t; _gyro_integral_dt_type gyro_integral_dt; using _accelerometer_timestamp_relative_type = int32_t; _accelerometer_timestamp_relative_type accelerometer_timestamp_relative; using _accelerometer_m_s2_type = std::array<float, 3>; _accelerometer_m_s2_type accelerometer_m_s2; using _accelerometer_integral_dt_type = uint32_t; _accelerometer_integral_dt_type accelerometer_integral_dt; using _accelerometer_clipping_type = uint8_t; _accelerometer_clipping_type accelerometer_clipping; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__gyro_rad( const std::array<float, 3> & _arg) { this->gyro_rad = _arg; return *this; } Type & set__gyro_integral_dt( const uint32_t & _arg) { this->gyro_integral_dt = _arg; return *this; } Type & set__accelerometer_timestamp_relative( const int32_t & _arg) { this->accelerometer_timestamp_relative = _arg; return *this; } Type & set__accelerometer_m_s2( const std::array<float, 3> & _arg) { this->accelerometer_m_s2 = _arg; return *this; } Type & set__accelerometer_integral_dt( const uint32_t & _arg) { this->accelerometer_integral_dt = _arg; return *this; } Type & set__accelerometer_clipping( const uint8_t & _arg) { this->accelerometer_clipping = _arg; return *this; } // constant declarations static constexpr int32_t RELATIVE_TIMESTAMP_INVALID = 2147483647; static constexpr uint8_t CLIPPING_X = 1u; static constexpr uint8_t CLIPPING_Y = 2u; static constexpr uint8_t CLIPPING_Z = 4u; // pointer types using RawPtr = px4_msgs::msg::SensorCombined_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::SensorCombined_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::SensorCombined_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::SensorCombined_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::SensorCombined_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::SensorCombined_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::SensorCombined_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::SensorCombined_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::SensorCombined_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::SensorCombined_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__SensorCombined std::shared_ptr<px4_msgs::msg::SensorCombined_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__SensorCombined std::shared_ptr<px4_msgs::msg::SensorCombined_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const SensorCombined_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->gyro_rad != other.gyro_rad) { return false; } if (this->gyro_integral_dt != other.gyro_integral_dt) { return false; } if (this->accelerometer_timestamp_relative != other.accelerometer_timestamp_relative) { return false; } if (this->accelerometer_m_s2 != other.accelerometer_m_s2) { return false; } if (this->accelerometer_integral_dt != other.accelerometer_integral_dt) { return false; } if (this->accelerometer_clipping != other.accelerometer_clipping) { return false; } return true; } bool operator!=(const SensorCombined_ & other) const { return !this->operator==(other); } }; // struct SensorCombined_ // alias to use template instance with default allocator using SensorCombined = px4_msgs::msg::SensorCombined_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr int32_t SensorCombined_<ContainerAllocator>::RELATIVE_TIMESTAMP_INVALID; template<typename ContainerAllocator> constexpr uint8_t SensorCombined_<ContainerAllocator>::CLIPPING_X; template<typename ContainerAllocator> constexpr uint8_t SensorCombined_<ContainerAllocator>::CLIPPING_Y; template<typename ContainerAllocator> constexpr uint8_t SensorCombined_<ContainerAllocator>::CLIPPING_Z; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__SENSOR_COMBINED__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/rc_parameter_map__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/RcParameterMap.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/rc_parameter_map__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/rc_parameter_map__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::RcParameterMap & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: valid { cdr << ros_message.valid; } // Member: param_index { cdr << ros_message.param_index; } // Member: param_id { cdr << ros_message.param_id; } // Member: scale { cdr << ros_message.scale; } // Member: value0 { cdr << ros_message.value0; } // Member: value_min { cdr << ros_message.value_min; } // Member: value_max { cdr << ros_message.value_max; } return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::RcParameterMap & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: valid { cdr >> ros_message.valid; } // Member: param_index { cdr >> ros_message.param_index; } // Member: param_id { cdr >> ros_message.param_id; } // Member: scale { cdr >> ros_message.scale; } // Member: value0 { cdr >> ros_message.value0; } // Member: value_min { cdr >> ros_message.value_min; } // Member: value_max { cdr >> ros_message.value_max; } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::RcParameterMap & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: valid { size_t array_size = 3; size_t item_size = sizeof(ros_message.valid[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: param_index { size_t array_size = 3; size_t item_size = sizeof(ros_message.param_index[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: param_id { size_t array_size = 51; size_t item_size = sizeof(ros_message.param_id[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: scale { size_t array_size = 3; size_t item_size = sizeof(ros_message.scale[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: value0 { size_t array_size = 3; size_t item_size = sizeof(ros_message.value0[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: value_min { size_t array_size = 3; size_t item_size = sizeof(ros_message.value_min[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: value_max { size_t array_size = 3; size_t item_size = sizeof(ros_message.value_max[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_RcParameterMap( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: valid { size_t array_size = 3; current_alignment += array_size * sizeof(uint8_t); } // Member: param_index { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: param_id { size_t array_size = 51; current_alignment += array_size * sizeof(uint8_t); } // Member: scale { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: value0 { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: value_min { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: value_max { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static bool _RcParameterMap__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::RcParameterMap *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _RcParameterMap__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::RcParameterMap *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _RcParameterMap__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::RcParameterMap *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _RcParameterMap__max_serialized_size(bool & full_bounded) { return max_serialized_size_RcParameterMap(full_bounded, 0); } static message_type_support_callbacks_t _RcParameterMap__callbacks = { "px4_msgs::msg", "RcParameterMap", _RcParameterMap__cdr_serialize, _RcParameterMap__cdr_deserialize, _RcParameterMap__get_serialized_size, _RcParameterMap__max_serialized_size }; static rosidl_message_type_support_t _RcParameterMap__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_RcParameterMap__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::RcParameterMap>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_RcParameterMap__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, RcParameterMap)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_RcParameterMap__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/input_rc__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/InputRc.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/input_rc__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void InputRc_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::InputRc(_init); } void InputRc_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::InputRc *>(message_memory); typed_message->~InputRc(); } size_t size_function__InputRc__values(const void * untyped_member) { (void)untyped_member; return 18; } const void * get_const_function__InputRc__values(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint16_t, 18> *>(untyped_member); return &member[index]; } void * get_function__InputRc__values(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint16_t, 18> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember InputRc_message_member_array[11] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::InputRc, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_last_signal", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::InputRc, timestamp_last_signal), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "channel_count", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::InputRc, channel_count), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rssi", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::InputRc, rssi), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rc_failsafe", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::InputRc, rc_failsafe), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rc_lost", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::InputRc, rc_lost), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rc_lost_frame_count", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::InputRc, rc_lost_frame_count), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rc_total_frame_count", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::InputRc, rc_total_frame_count), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rc_ppm_frame_length", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::InputRc, rc_ppm_frame_length), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "input_source", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::InputRc, input_source), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "values", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 18, // array size false, // is upper bound offsetof(px4_msgs::msg::InputRc, values), // bytes offset in struct nullptr, // default value size_function__InputRc__values, // size() function pointer get_const_function__InputRc__values, // get_const(index) function pointer get_function__InputRc__values, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers InputRc_message_members = { "px4_msgs::msg", // message namespace "InputRc", // message name 11, // number of fields sizeof(px4_msgs::msg::InputRc), InputRc_message_member_array, // message members InputRc_init_function, // function to initialize message memory (memory has to be allocated) InputRc_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t InputRc_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &InputRc_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::InputRc>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::InputRc_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, InputRc)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::InputRc_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_imu_status__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleImuStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_IMU_STATUS__STRUCT_H_ #define PX4_MSGS__MSG__VEHICLE_IMU_STATUS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/VehicleImuStatus in the package px4_msgs. typedef struct px4_msgs__msg__VehicleImuStatus { uint64_t timestamp; uint32_t accel_device_id; uint32_t gyro_device_id; uint32_t accel_clipping[3]; uint32_t accel_error_count; uint32_t gyro_error_count; float accel_rate_hz; float gyro_rate_hz; float accel_raw_rate_hz; float gyro_raw_rate_hz; float accel_vibration_metric; float gyro_vibration_metric; float gyro_coning_vibration; float mean_accel[3]; float mean_gyro[3]; float temperature_accel; float temperature_gyro; } px4_msgs__msg__VehicleImuStatus; // Struct for a sequence of px4_msgs__msg__VehicleImuStatus. typedef struct px4_msgs__msg__VehicleImuStatus__Sequence { px4_msgs__msg__VehicleImuStatus * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__VehicleImuStatus__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_IMU_STATUS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/qshell_req.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__QSHELL_REQ_HPP_ #define PX4_MSGS__MSG__QSHELL_REQ_HPP_ #include "px4_msgs/msg/qshell_req__struct.hpp" #include "px4_msgs/msg/qshell_req__traits.hpp" #endif // PX4_MSGS__MSG__QSHELL_REQ_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_airspeed_validated.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/AirspeedValidated.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_AirspeedValidated(type): """Metaclass of message 'AirspeedValidated'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.AirspeedValidated') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__airspeed_validated cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__airspeed_validated cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__airspeed_validated cls._TYPE_SUPPORT = module.type_support_msg__msg__airspeed_validated cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__airspeed_validated @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class AirspeedValidated(metaclass=Metaclass_AirspeedValidated): """Message class 'AirspeedValidated'.""" __slots__ = [ '_timestamp', '_indicated_airspeed_m_s', '_calibrated_airspeed_m_s', '_true_airspeed_m_s', '_calibrated_ground_minus_wind_m_s', '_true_ground_minus_wind_m_s', '_airspeed_sensor_measurement_valid', '_selected_airspeed_index', ] _fields_and_field_types = { 'timestamp': 'uint64', 'indicated_airspeed_m_s': 'float', 'calibrated_airspeed_m_s': 'float', 'true_airspeed_m_s': 'float', 'calibrated_ground_minus_wind_m_s': 'float', 'true_ground_minus_wind_m_s': 'float', 'airspeed_sensor_measurement_valid': 'boolean', 'selected_airspeed_index': 'int8', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('int8'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.indicated_airspeed_m_s = kwargs.get('indicated_airspeed_m_s', float()) self.calibrated_airspeed_m_s = kwargs.get('calibrated_airspeed_m_s', float()) self.true_airspeed_m_s = kwargs.get('true_airspeed_m_s', float()) self.calibrated_ground_minus_wind_m_s = kwargs.get('calibrated_ground_minus_wind_m_s', float()) self.true_ground_minus_wind_m_s = kwargs.get('true_ground_minus_wind_m_s', float()) self.airspeed_sensor_measurement_valid = kwargs.get('airspeed_sensor_measurement_valid', bool()) self.selected_airspeed_index = kwargs.get('selected_airspeed_index', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.indicated_airspeed_m_s != other.indicated_airspeed_m_s: return False if self.calibrated_airspeed_m_s != other.calibrated_airspeed_m_s: return False if self.true_airspeed_m_s != other.true_airspeed_m_s: return False if self.calibrated_ground_minus_wind_m_s != other.calibrated_ground_minus_wind_m_s: return False if self.true_ground_minus_wind_m_s != other.true_ground_minus_wind_m_s: return False if self.airspeed_sensor_measurement_valid != other.airspeed_sensor_measurement_valid: return False if self.selected_airspeed_index != other.selected_airspeed_index: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def indicated_airspeed_m_s(self): """Message field 'indicated_airspeed_m_s'.""" return self._indicated_airspeed_m_s @indicated_airspeed_m_s.setter def indicated_airspeed_m_s(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'indicated_airspeed_m_s' field must be of type 'float'" self._indicated_airspeed_m_s = value @property def calibrated_airspeed_m_s(self): """Message field 'calibrated_airspeed_m_s'.""" return self._calibrated_airspeed_m_s @calibrated_airspeed_m_s.setter def calibrated_airspeed_m_s(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'calibrated_airspeed_m_s' field must be of type 'float'" self._calibrated_airspeed_m_s = value @property def true_airspeed_m_s(self): """Message field 'true_airspeed_m_s'.""" return self._true_airspeed_m_s @true_airspeed_m_s.setter def true_airspeed_m_s(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'true_airspeed_m_s' field must be of type 'float'" self._true_airspeed_m_s = value @property def calibrated_ground_minus_wind_m_s(self): """Message field 'calibrated_ground_minus_wind_m_s'.""" return self._calibrated_ground_minus_wind_m_s @calibrated_ground_minus_wind_m_s.setter def calibrated_ground_minus_wind_m_s(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'calibrated_ground_minus_wind_m_s' field must be of type 'float'" self._calibrated_ground_minus_wind_m_s = value @property def true_ground_minus_wind_m_s(self): """Message field 'true_ground_minus_wind_m_s'.""" return self._true_ground_minus_wind_m_s @true_ground_minus_wind_m_s.setter def true_ground_minus_wind_m_s(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'true_ground_minus_wind_m_s' field must be of type 'float'" self._true_ground_minus_wind_m_s = value @property def airspeed_sensor_measurement_valid(self): """Message field 'airspeed_sensor_measurement_valid'.""" return self._airspeed_sensor_measurement_valid @airspeed_sensor_measurement_valid.setter def airspeed_sensor_measurement_valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'airspeed_sensor_measurement_valid' field must be of type 'bool'" self._airspeed_sensor_measurement_valid = value @property def selected_airspeed_index(self): """Message field 'selected_airspeed_index'.""" return self._selected_airspeed_index @selected_airspeed_index.setter def selected_airspeed_index(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'selected_airspeed_index' field must be of type 'int'" assert value >= -128 and value < 128, \ "The 'selected_airspeed_index' field must be an integer in [-128, 127]" self._selected_airspeed_index = value <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/ekf_gps_drift__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/EkfGpsDrift.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/ekf_gps_drift__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void EkfGpsDrift_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::EkfGpsDrift(_init); } void EkfGpsDrift_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::EkfGpsDrift *>(message_memory); typed_message->~EkfGpsDrift(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember EkfGpsDrift_message_member_array[5] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EkfGpsDrift, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "hpos_drift_rate", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EkfGpsDrift, hpos_drift_rate), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vpos_drift_rate", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EkfGpsDrift, vpos_drift_rate), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "hspd", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EkfGpsDrift, hspd), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "blocked", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EkfGpsDrift, blocked), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers EkfGpsDrift_message_members = { "px4_msgs::msg", // message namespace "EkfGpsDrift", // message name 5, // number of fields sizeof(px4_msgs::msg::EkfGpsDrift), EkfGpsDrift_message_member_array, // message members EkfGpsDrift_init_function, // function to initialize message memory (memory has to be allocated) EkfGpsDrift_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t EkfGpsDrift_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &EkfGpsDrift_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::EkfGpsDrift>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EkfGpsDrift_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, EkfGpsDrift)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EkfGpsDrift_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_control_mode__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/VehicleControlMode.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_CONTROL_MODE__STRUCT_HPP_ #define PX4_MSGS__MSG__VEHICLE_CONTROL_MODE__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__VehicleControlMode __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__VehicleControlMode __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct VehicleControlMode_ { using Type = VehicleControlMode_<ContainerAllocator>; explicit VehicleControlMode_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->flag_armed = false; this->flag_external_manual_override_ok = false; this->flag_control_manual_enabled = false; this->flag_control_auto_enabled = false; this->flag_control_offboard_enabled = false; this->flag_control_rates_enabled = false; this->flag_control_attitude_enabled = false; this->flag_control_acceleration_enabled = false; this->flag_control_velocity_enabled = false; this->flag_control_position_enabled = false; this->flag_control_altitude_enabled = false; this->flag_control_climb_rate_enabled = false; this->flag_control_termination_enabled = false; } } explicit VehicleControlMode_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->flag_armed = false; this->flag_external_manual_override_ok = false; this->flag_control_manual_enabled = false; this->flag_control_auto_enabled = false; this->flag_control_offboard_enabled = false; this->flag_control_rates_enabled = false; this->flag_control_attitude_enabled = false; this->flag_control_acceleration_enabled = false; this->flag_control_velocity_enabled = false; this->flag_control_position_enabled = false; this->flag_control_altitude_enabled = false; this->flag_control_climb_rate_enabled = false; this->flag_control_termination_enabled = false; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _flag_armed_type = bool; _flag_armed_type flag_armed; using _flag_external_manual_override_ok_type = bool; _flag_external_manual_override_ok_type flag_external_manual_override_ok; using _flag_control_manual_enabled_type = bool; _flag_control_manual_enabled_type flag_control_manual_enabled; using _flag_control_auto_enabled_type = bool; _flag_control_auto_enabled_type flag_control_auto_enabled; using _flag_control_offboard_enabled_type = bool; _flag_control_offboard_enabled_type flag_control_offboard_enabled; using _flag_control_rates_enabled_type = bool; _flag_control_rates_enabled_type flag_control_rates_enabled; using _flag_control_attitude_enabled_type = bool; _flag_control_attitude_enabled_type flag_control_attitude_enabled; using _flag_control_acceleration_enabled_type = bool; _flag_control_acceleration_enabled_type flag_control_acceleration_enabled; using _flag_control_velocity_enabled_type = bool; _flag_control_velocity_enabled_type flag_control_velocity_enabled; using _flag_control_position_enabled_type = bool; _flag_control_position_enabled_type flag_control_position_enabled; using _flag_control_altitude_enabled_type = bool; _flag_control_altitude_enabled_type flag_control_altitude_enabled; using _flag_control_climb_rate_enabled_type = bool; _flag_control_climb_rate_enabled_type flag_control_climb_rate_enabled; using _flag_control_termination_enabled_type = bool; _flag_control_termination_enabled_type flag_control_termination_enabled; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__flag_armed( const bool & _arg) { this->flag_armed = _arg; return *this; } Type & set__flag_external_manual_override_ok( const bool & _arg) { this->flag_external_manual_override_ok = _arg; return *this; } Type & set__flag_control_manual_enabled( const bool & _arg) { this->flag_control_manual_enabled = _arg; return *this; } Type & set__flag_control_auto_enabled( const bool & _arg) { this->flag_control_auto_enabled = _arg; return *this; } Type & set__flag_control_offboard_enabled( const bool & _arg) { this->flag_control_offboard_enabled = _arg; return *this; } Type & set__flag_control_rates_enabled( const bool & _arg) { this->flag_control_rates_enabled = _arg; return *this; } Type & set__flag_control_attitude_enabled( const bool & _arg) { this->flag_control_attitude_enabled = _arg; return *this; } Type & set__flag_control_acceleration_enabled( const bool & _arg) { this->flag_control_acceleration_enabled = _arg; return *this; } Type & set__flag_control_velocity_enabled( const bool & _arg) { this->flag_control_velocity_enabled = _arg; return *this; } Type & set__flag_control_position_enabled( const bool & _arg) { this->flag_control_position_enabled = _arg; return *this; } Type & set__flag_control_altitude_enabled( const bool & _arg) { this->flag_control_altitude_enabled = _arg; return *this; } Type & set__flag_control_climb_rate_enabled( const bool & _arg) { this->flag_control_climb_rate_enabled = _arg; return *this; } Type & set__flag_control_termination_enabled( const bool & _arg) { this->flag_control_termination_enabled = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::VehicleControlMode_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::VehicleControlMode_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::VehicleControlMode_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::VehicleControlMode_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleControlMode_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleControlMode_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleControlMode_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleControlMode_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::VehicleControlMode_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::VehicleControlMode_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__VehicleControlMode std::shared_ptr<px4_msgs::msg::VehicleControlMode_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__VehicleControlMode std::shared_ptr<px4_msgs::msg::VehicleControlMode_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const VehicleControlMode_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->flag_armed != other.flag_armed) { return false; } if (this->flag_external_manual_override_ok != other.flag_external_manual_override_ok) { return false; } if (this->flag_control_manual_enabled != other.flag_control_manual_enabled) { return false; } if (this->flag_control_auto_enabled != other.flag_control_auto_enabled) { return false; } if (this->flag_control_offboard_enabled != other.flag_control_offboard_enabled) { return false; } if (this->flag_control_rates_enabled != other.flag_control_rates_enabled) { return false; } if (this->flag_control_attitude_enabled != other.flag_control_attitude_enabled) { return false; } if (this->flag_control_acceleration_enabled != other.flag_control_acceleration_enabled) { return false; } if (this->flag_control_velocity_enabled != other.flag_control_velocity_enabled) { return false; } if (this->flag_control_position_enabled != other.flag_control_position_enabled) { return false; } if (this->flag_control_altitude_enabled != other.flag_control_altitude_enabled) { return false; } if (this->flag_control_climb_rate_enabled != other.flag_control_climb_rate_enabled) { return false; } if (this->flag_control_termination_enabled != other.flag_control_termination_enabled) { return false; } return true; } bool operator!=(const VehicleControlMode_ & other) const { return !this->operator==(other); } }; // struct VehicleControlMode_ // alias to use template instance with default allocator using VehicleControlMode = px4_msgs::msg::VehicleControlMode_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__VEHICLE_CONTROL_MODE__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/gimbal_device_information.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/GimbalDeviceInformation.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GIMBAL_DEVICE_INFORMATION_H_ #define PX4_MSGS__MSG__GIMBAL_DEVICE_INFORMATION_H_ #include "px4_msgs/msg/gimbal_device_information__struct.h" #include "px4_msgs/msg/gimbal_device_information__functions.h" #include "px4_msgs/msg/gimbal_device_information__type_support.h" #endif // PX4_MSGS__MSG__GIMBAL_DEVICE_INFORMATION_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_constraints__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/VehicleConstraints.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_CONSTRAINTS__STRUCT_HPP_ #define PX4_MSGS__MSG__VEHICLE_CONSTRAINTS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__VehicleConstraints __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__VehicleConstraints __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct VehicleConstraints_ { using Type = VehicleConstraints_<ContainerAllocator>; explicit VehicleConstraints_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->speed_xy = 0.0f; this->speed_up = 0.0f; this->speed_down = 0.0f; this->want_takeoff = false; } } explicit VehicleConstraints_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->speed_xy = 0.0f; this->speed_up = 0.0f; this->speed_down = 0.0f; this->want_takeoff = false; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _speed_xy_type = float; _speed_xy_type speed_xy; using _speed_up_type = float; _speed_up_type speed_up; using _speed_down_type = float; _speed_down_type speed_down; using _want_takeoff_type = bool; _want_takeoff_type want_takeoff; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__speed_xy( const float & _arg) { this->speed_xy = _arg; return *this; } Type & set__speed_up( const float & _arg) { this->speed_up = _arg; return *this; } Type & set__speed_down( const float & _arg) { this->speed_down = _arg; return *this; } Type & set__want_takeoff( const bool & _arg) { this->want_takeoff = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::VehicleConstraints_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::VehicleConstraints_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::VehicleConstraints_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::VehicleConstraints_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleConstraints_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleConstraints_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleConstraints_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleConstraints_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::VehicleConstraints_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::VehicleConstraints_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__VehicleConstraints std::shared_ptr<px4_msgs::msg::VehicleConstraints_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__VehicleConstraints std::shared_ptr<px4_msgs::msg::VehicleConstraints_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const VehicleConstraints_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->speed_xy != other.speed_xy) { return false; } if (this->speed_up != other.speed_up) { return false; } if (this->speed_down != other.speed_down) { return false; } if (this->want_takeoff != other.want_takeoff) { return false; } return true; } bool operator!=(const VehicleConstraints_ & other) const { return !this->operator==(other); } }; // struct VehicleConstraints_ // alias to use template instance with default allocator using VehicleConstraints = px4_msgs::msg::VehicleConstraints_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__VEHICLE_CONSTRAINTS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/takeoff_status.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TAKEOFF_STATUS_HPP_ #define PX4_MSGS__MSG__TAKEOFF_STATUS_HPP_ #include "px4_msgs/msg/takeoff_status__struct.hpp" #include "px4_msgs/msg/takeoff_status__traits.hpp" #endif // PX4_MSGS__MSG__TAKEOFF_STATUS_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/geofence_result__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/GeofenceResult.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/geofence_result__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void GeofenceResult_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::GeofenceResult(_init); } void GeofenceResult_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::GeofenceResult *>(message_memory); typed_message->~GeofenceResult(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember GeofenceResult_message_member_array[4] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::GeofenceResult, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "geofence_violated", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::GeofenceResult, geofence_violated), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "geofence_action", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::GeofenceResult, geofence_action), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "home_required", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::GeofenceResult, home_required), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers GeofenceResult_message_members = { "px4_msgs::msg", // message namespace "GeofenceResult", // message name 4, // number of fields sizeof(px4_msgs::msg::GeofenceResult), GeofenceResult_message_member_array, // message members GeofenceResult_init_function, // function to initialize message memory (memory has to be allocated) GeofenceResult_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t GeofenceResult_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &GeofenceResult_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::GeofenceResult>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::GeofenceResult_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, GeofenceResult)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::GeofenceResult_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_trajectory_waypoint.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_TRAJECTORY_WAYPOINT_HPP_ #define PX4_MSGS__MSG__VEHICLE_TRAJECTORY_WAYPOINT_HPP_ #include "px4_msgs/msg/vehicle_trajectory_waypoint__struct.hpp" #include "px4_msgs/msg/vehicle_trajectory_waypoint__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_TRAJECTORY_WAYPOINT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/task_stack_info.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TASK_STACK_INFO_HPP_ #define PX4_MSGS__MSG__TASK_STACK_INFO_HPP_ #include "px4_msgs/msg/task_stack_info__struct.hpp" #include "px4_msgs/msg/task_stack_info__traits.hpp" #endif // PX4_MSGS__MSG__TASK_STACK_INFO_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/log_message__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/LogMessage.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__LOG_MESSAGE__FUNCTIONS_H_ #define PX4_MSGS__MSG__LOG_MESSAGE__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/log_message__struct.h" /// Initialize msg/LogMessage message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__LogMessage * )) before or use * px4_msgs__msg__LogMessage__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__LogMessage__init(px4_msgs__msg__LogMessage * msg); /// Finalize msg/LogMessage message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__LogMessage__fini(px4_msgs__msg__LogMessage * msg); /// Create msg/LogMessage message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__LogMessage__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__LogMessage * px4_msgs__msg__LogMessage__create(); /// Destroy msg/LogMessage message. /** * It calls * px4_msgs__msg__LogMessage__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__LogMessage__destroy(px4_msgs__msg__LogMessage * msg); /// Initialize array of msg/LogMessage messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__LogMessage__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__LogMessage__Sequence__init(px4_msgs__msg__LogMessage__Sequence * array, size_t size); /// Finalize array of msg/LogMessage messages. /** * It calls * px4_msgs__msg__LogMessage__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__LogMessage__Sequence__fini(px4_msgs__msg__LogMessage__Sequence * array); /// Create array of msg/LogMessage messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__LogMessage__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__LogMessage__Sequence * px4_msgs__msg__LogMessage__Sequence__create(size_t size); /// Destroy array of msg/LogMessage messages. /** * It calls * px4_msgs__msg__LogMessage__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__LogMessage__Sequence__destroy(px4_msgs__msg__LogMessage__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__LOG_MESSAGE__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/radio_status.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/RadioStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__RADIO_STATUS_H_ #define PX4_MSGS__MSG__RADIO_STATUS_H_ #include "px4_msgs/msg/radio_status__struct.h" #include "px4_msgs/msg/radio_status__functions.h" #include "px4_msgs/msg/radio_status__type_support.h" #endif // PX4_MSGS__MSG__RADIO_STATUS_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_fw_virtual_attitude_setpoint.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/FwVirtualAttitudeSetpoint.idl # generated code does not contain a copyright notice # Import statements for member types # Member 'q_d' # Member 'thrust_body' import numpy # noqa: E402, I100 import rosidl_parser.definition # noqa: E402, I100 class Metaclass_FwVirtualAttitudeSetpoint(type): """Metaclass of message 'FwVirtualAttitudeSetpoint'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'FLAPS_OFF': 0, 'FLAPS_LAND': 1, 'FLAPS_TAKEOFF': 2, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.FwVirtualAttitudeSetpoint') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__fw_virtual_attitude_setpoint cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__fw_virtual_attitude_setpoint cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__fw_virtual_attitude_setpoint cls._TYPE_SUPPORT = module.type_support_msg__msg__fw_virtual_attitude_setpoint cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__fw_virtual_attitude_setpoint @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'FLAPS_OFF': cls.__constants['FLAPS_OFF'], 'FLAPS_LAND': cls.__constants['FLAPS_LAND'], 'FLAPS_TAKEOFF': cls.__constants['FLAPS_TAKEOFF'], } @property def FLAPS_OFF(self): """Message constant 'FLAPS_OFF'.""" return Metaclass_FwVirtualAttitudeSetpoint.__constants['FLAPS_OFF'] @property def FLAPS_LAND(self): """Message constant 'FLAPS_LAND'.""" return Metaclass_FwVirtualAttitudeSetpoint.__constants['FLAPS_LAND'] @property def FLAPS_TAKEOFF(self): """Message constant 'FLAPS_TAKEOFF'.""" return Metaclass_FwVirtualAttitudeSetpoint.__constants['FLAPS_TAKEOFF'] class FwVirtualAttitudeSetpoint(metaclass=Metaclass_FwVirtualAttitudeSetpoint): """ Message class 'FwVirtualAttitudeSetpoint'. Constants: FLAPS_OFF FLAPS_LAND FLAPS_TAKEOFF """ __slots__ = [ '_timestamp', '_roll_body', '_pitch_body', '_yaw_body', '_yaw_sp_move_rate', '_q_d', '_thrust_body', '_roll_reset_integral', '_pitch_reset_integral', '_yaw_reset_integral', '_fw_control_yaw', '_apply_flaps', ] _fields_and_field_types = { 'timestamp': 'uint64', 'roll_body': 'float', 'pitch_body': 'float', 'yaw_body': 'float', 'yaw_sp_move_rate': 'float', 'q_d': 'float[4]', 'thrust_body': 'float[3]', 'roll_reset_integral': 'boolean', 'pitch_reset_integral': 'boolean', 'yaw_reset_integral': 'boolean', 'fw_control_yaw': 'boolean', 'apply_flaps': 'uint8', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 4), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.roll_body = kwargs.get('roll_body', float()) self.pitch_body = kwargs.get('pitch_body', float()) self.yaw_body = kwargs.get('yaw_body', float()) self.yaw_sp_move_rate = kwargs.get('yaw_sp_move_rate', float()) if 'q_d' not in kwargs: self.q_d = numpy.zeros(4, dtype=numpy.float32) else: self.q_d = numpy.array(kwargs.get('q_d'), dtype=numpy.float32) assert self.q_d.shape == (4, ) if 'thrust_body' not in kwargs: self.thrust_body = numpy.zeros(3, dtype=numpy.float32) else: self.thrust_body = numpy.array(kwargs.get('thrust_body'), dtype=numpy.float32) assert self.thrust_body.shape == (3, ) self.roll_reset_integral = kwargs.get('roll_reset_integral', bool()) self.pitch_reset_integral = kwargs.get('pitch_reset_integral', bool()) self.yaw_reset_integral = kwargs.get('yaw_reset_integral', bool()) self.fw_control_yaw = kwargs.get('fw_control_yaw', bool()) self.apply_flaps = kwargs.get('apply_flaps', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.roll_body != other.roll_body: return False if self.pitch_body != other.pitch_body: return False if self.yaw_body != other.yaw_body: return False if self.yaw_sp_move_rate != other.yaw_sp_move_rate: return False if all(self.q_d != other.q_d): return False if all(self.thrust_body != other.thrust_body): return False if self.roll_reset_integral != other.roll_reset_integral: return False if self.pitch_reset_integral != other.pitch_reset_integral: return False if self.yaw_reset_integral != other.yaw_reset_integral: return False if self.fw_control_yaw != other.fw_control_yaw: return False if self.apply_flaps != other.apply_flaps: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def roll_body(self): """Message field 'roll_body'.""" return self._roll_body @roll_body.setter def roll_body(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'roll_body' field must be of type 'float'" self._roll_body = value @property def pitch_body(self): """Message field 'pitch_body'.""" return self._pitch_body @pitch_body.setter def pitch_body(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'pitch_body' field must be of type 'float'" self._pitch_body = value @property def yaw_body(self): """Message field 'yaw_body'.""" return self._yaw_body @yaw_body.setter def yaw_body(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'yaw_body' field must be of type 'float'" self._yaw_body = value @property def yaw_sp_move_rate(self): """Message field 'yaw_sp_move_rate'.""" return self._yaw_sp_move_rate @yaw_sp_move_rate.setter def yaw_sp_move_rate(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'yaw_sp_move_rate' field must be of type 'float'" self._yaw_sp_move_rate = value @property def q_d(self): """Message field 'q_d'.""" return self._q_d @q_d.setter def q_d(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'q_d' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 4, \ "The 'q_d' numpy.ndarray() must have a size of 4" self._q_d = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 4 and all(isinstance(v, float) for v in value) and True), \ "The 'q_d' field must be a set or sequence with length 4 and each value of type 'float'" self._q_d = numpy.array(value, dtype=numpy.float32) @property def thrust_body(self): """Message field 'thrust_body'.""" return self._thrust_body @thrust_body.setter def thrust_body(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'thrust_body' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'thrust_body' numpy.ndarray() must have a size of 3" self._thrust_body = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'thrust_body' field must be a set or sequence with length 3 and each value of type 'float'" self._thrust_body = numpy.array(value, dtype=numpy.float32) @property def roll_reset_integral(self): """Message field 'roll_reset_integral'.""" return self._roll_reset_integral @roll_reset_integral.setter def roll_reset_integral(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'roll_reset_integral' field must be of type 'bool'" self._roll_reset_integral = value @property def pitch_reset_integral(self): """Message field 'pitch_reset_integral'.""" return self._pitch_reset_integral @pitch_reset_integral.setter def pitch_reset_integral(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'pitch_reset_integral' field must be of type 'bool'" self._pitch_reset_integral = value @property def yaw_reset_integral(self): """Message field 'yaw_reset_integral'.""" return self._yaw_reset_integral @yaw_reset_integral.setter def yaw_reset_integral(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'yaw_reset_integral' field must be of type 'bool'" self._yaw_reset_integral = value @property def fw_control_yaw(self): """Message field 'fw_control_yaw'.""" return self._fw_control_yaw @fw_control_yaw.setter def fw_control_yaw(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'fw_control_yaw' field must be of type 'bool'" self._fw_control_yaw = value @property def apply_flaps(self): """Message field 'apply_flaps'.""" return self._apply_flaps @apply_flaps.setter def apply_flaps(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'apply_flaps' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'apply_flaps' field must be an unsigned integer in [0, 255]" self._apply_flaps = value <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_attitude.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/GimbalManagerSetAttitude.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GIMBAL_MANAGER_SET_ATTITUDE_H_ #define PX4_MSGS__MSG__GIMBAL_MANAGER_SET_ATTITUDE_H_ #include "px4_msgs/msg/gimbal_manager_set_attitude__struct.h" #include "px4_msgs/msg/gimbal_manager_set_attitude__functions.h" #include "px4_msgs/msg/gimbal_manager_set_attitude__type_support.h" #endif // PX4_MSGS__MSG__GIMBAL_MANAGER_SET_ATTITUDE_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/orb_test_large.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/OrbTestLarge.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORB_TEST_LARGE_H_ #define PX4_MSGS__MSG__ORB_TEST_LARGE_H_ #include "px4_msgs/msg/orb_test_large__struct.h" #include "px4_msgs/msg/orb_test_large__functions.h" #include "px4_msgs/msg/orb_test_large__type_support.h" #endif // PX4_MSGS__MSG__ORB_TEST_LARGE_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/cellular_status.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/CellularStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__CELLULAR_STATUS_H_ #define PX4_MSGS__MSG__CELLULAR_STATUS_H_ #include "px4_msgs/msg/cellular_status__struct.h" #include "px4_msgs/msg/cellular_status__functions.h" #include "px4_msgs/msg/cellular_status__type_support.h" #endif // PX4_MSGS__MSG__CELLULAR_STATUS_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/EstimatorStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/estimator_status__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/estimator_status__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::EstimatorStatus & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: timestamp_sample cdr << ros_message.timestamp_sample; // Member: vibe { cdr << ros_message.vibe; } // Member: output_tracking_error { cdr << ros_message.output_tracking_error; } // Member: gps_check_fail_flags cdr << ros_message.gps_check_fail_flags; // Member: control_mode_flags cdr << ros_message.control_mode_flags; // Member: filter_fault_flags cdr << ros_message.filter_fault_flags; // Member: pos_horiz_accuracy cdr << ros_message.pos_horiz_accuracy; // Member: pos_vert_accuracy cdr << ros_message.pos_vert_accuracy; // Member: innovation_check_flags cdr << ros_message.innovation_check_flags; // Member: mag_test_ratio cdr << ros_message.mag_test_ratio; // Member: vel_test_ratio cdr << ros_message.vel_test_ratio; // Member: pos_test_ratio cdr << ros_message.pos_test_ratio; // Member: hgt_test_ratio cdr << ros_message.hgt_test_ratio; // Member: tas_test_ratio cdr << ros_message.tas_test_ratio; // Member: hagl_test_ratio cdr << ros_message.hagl_test_ratio; // Member: beta_test_ratio cdr << ros_message.beta_test_ratio; // Member: solution_status_flags cdr << ros_message.solution_status_flags; // Member: reset_count_vel_ne cdr << ros_message.reset_count_vel_ne; // Member: reset_count_vel_d cdr << ros_message.reset_count_vel_d; // Member: reset_count_pos_ne cdr << ros_message.reset_count_pos_ne; // Member: reset_count_pod_d cdr << ros_message.reset_count_pod_d; // Member: reset_count_quat cdr << ros_message.reset_count_quat; // Member: time_slip cdr << ros_message.time_slip; // Member: pre_flt_fail_innov_heading cdr << (ros_message.pre_flt_fail_innov_heading ? true : false); // Member: pre_flt_fail_innov_vel_horiz cdr << (ros_message.pre_flt_fail_innov_vel_horiz ? true : false); // Member: pre_flt_fail_innov_vel_vert cdr << (ros_message.pre_flt_fail_innov_vel_vert ? true : false); // Member: pre_flt_fail_innov_height cdr << (ros_message.pre_flt_fail_innov_height ? true : false); // Member: pre_flt_fail_mag_field_disturbed cdr << (ros_message.pre_flt_fail_mag_field_disturbed ? true : false); // Member: accel_device_id cdr << ros_message.accel_device_id; // Member: gyro_device_id cdr << ros_message.gyro_device_id; // Member: baro_device_id cdr << ros_message.baro_device_id; // Member: mag_device_id cdr << ros_message.mag_device_id; // Member: health_flags cdr << ros_message.health_flags; // Member: timeout_flags cdr << ros_message.timeout_flags; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::EstimatorStatus & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: timestamp_sample cdr >> ros_message.timestamp_sample; // Member: vibe { cdr >> ros_message.vibe; } // Member: output_tracking_error { cdr >> ros_message.output_tracking_error; } // Member: gps_check_fail_flags cdr >> ros_message.gps_check_fail_flags; // Member: control_mode_flags cdr >> ros_message.control_mode_flags; // Member: filter_fault_flags cdr >> ros_message.filter_fault_flags; // Member: pos_horiz_accuracy cdr >> ros_message.pos_horiz_accuracy; // Member: pos_vert_accuracy cdr >> ros_message.pos_vert_accuracy; // Member: innovation_check_flags cdr >> ros_message.innovation_check_flags; // Member: mag_test_ratio cdr >> ros_message.mag_test_ratio; // Member: vel_test_ratio cdr >> ros_message.vel_test_ratio; // Member: pos_test_ratio cdr >> ros_message.pos_test_ratio; // Member: hgt_test_ratio cdr >> ros_message.hgt_test_ratio; // Member: tas_test_ratio cdr >> ros_message.tas_test_ratio; // Member: hagl_test_ratio cdr >> ros_message.hagl_test_ratio; // Member: beta_test_ratio cdr >> ros_message.beta_test_ratio; // Member: solution_status_flags cdr >> ros_message.solution_status_flags; // Member: reset_count_vel_ne cdr >> ros_message.reset_count_vel_ne; // Member: reset_count_vel_d cdr >> ros_message.reset_count_vel_d; // Member: reset_count_pos_ne cdr >> ros_message.reset_count_pos_ne; // Member: reset_count_pod_d cdr >> ros_message.reset_count_pod_d; // Member: reset_count_quat cdr >> ros_message.reset_count_quat; // Member: time_slip cdr >> ros_message.time_slip; // Member: pre_flt_fail_innov_heading { uint8_t tmp; cdr >> tmp; ros_message.pre_flt_fail_innov_heading = tmp ? true : false; } // Member: pre_flt_fail_innov_vel_horiz { uint8_t tmp; cdr >> tmp; ros_message.pre_flt_fail_innov_vel_horiz = tmp ? true : false; } // Member: pre_flt_fail_innov_vel_vert { uint8_t tmp; cdr >> tmp; ros_message.pre_flt_fail_innov_vel_vert = tmp ? true : false; } // Member: pre_flt_fail_innov_height { uint8_t tmp; cdr >> tmp; ros_message.pre_flt_fail_innov_height = tmp ? true : false; } // Member: pre_flt_fail_mag_field_disturbed { uint8_t tmp; cdr >> tmp; ros_message.pre_flt_fail_mag_field_disturbed = tmp ? true : false; } // Member: accel_device_id cdr >> ros_message.accel_device_id; // Member: gyro_device_id cdr >> ros_message.gyro_device_id; // Member: baro_device_id cdr >> ros_message.baro_device_id; // Member: mag_device_id cdr >> ros_message.mag_device_id; // Member: health_flags cdr >> ros_message.health_flags; // Member: timeout_flags cdr >> ros_message.timeout_flags; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::EstimatorStatus & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: timestamp_sample { size_t item_size = sizeof(ros_message.timestamp_sample); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: vibe { size_t array_size = 3; size_t item_size = sizeof(ros_message.vibe[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: output_tracking_error { size_t array_size = 3; size_t item_size = sizeof(ros_message.output_tracking_error[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gps_check_fail_flags { size_t item_size = sizeof(ros_message.gps_check_fail_flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: control_mode_flags { size_t item_size = sizeof(ros_message.control_mode_flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: filter_fault_flags { size_t item_size = sizeof(ros_message.filter_fault_flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: pos_horiz_accuracy { size_t item_size = sizeof(ros_message.pos_horiz_accuracy); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: pos_vert_accuracy { size_t item_size = sizeof(ros_message.pos_vert_accuracy); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: innovation_check_flags { size_t item_size = sizeof(ros_message.innovation_check_flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: mag_test_ratio { size_t item_size = sizeof(ros_message.mag_test_ratio); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: vel_test_ratio { size_t item_size = sizeof(ros_message.vel_test_ratio); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: pos_test_ratio { size_t item_size = sizeof(ros_message.pos_test_ratio); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: hgt_test_ratio { size_t item_size = sizeof(ros_message.hgt_test_ratio); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: tas_test_ratio { size_t item_size = sizeof(ros_message.tas_test_ratio); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: hagl_test_ratio { size_t item_size = sizeof(ros_message.hagl_test_ratio); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: beta_test_ratio { size_t item_size = sizeof(ros_message.beta_test_ratio); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: solution_status_flags { size_t item_size = sizeof(ros_message.solution_status_flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: reset_count_vel_ne { size_t item_size = sizeof(ros_message.reset_count_vel_ne); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: reset_count_vel_d { size_t item_size = sizeof(ros_message.reset_count_vel_d); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: reset_count_pos_ne { size_t item_size = sizeof(ros_message.reset_count_pos_ne); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: reset_count_pod_d { size_t item_size = sizeof(ros_message.reset_count_pod_d); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: reset_count_quat { size_t item_size = sizeof(ros_message.reset_count_quat); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: time_slip { size_t item_size = sizeof(ros_message.time_slip); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: pre_flt_fail_innov_heading { size_t item_size = sizeof(ros_message.pre_flt_fail_innov_heading); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: pre_flt_fail_innov_vel_horiz { size_t item_size = sizeof(ros_message.pre_flt_fail_innov_vel_horiz); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: pre_flt_fail_innov_vel_vert { size_t item_size = sizeof(ros_message.pre_flt_fail_innov_vel_vert); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: pre_flt_fail_innov_height { size_t item_size = sizeof(ros_message.pre_flt_fail_innov_height); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: pre_flt_fail_mag_field_disturbed { size_t item_size = sizeof(ros_message.pre_flt_fail_mag_field_disturbed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: accel_device_id { size_t item_size = sizeof(ros_message.accel_device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gyro_device_id { size_t item_size = sizeof(ros_message.gyro_device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: baro_device_id { size_t item_size = sizeof(ros_message.baro_device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: mag_device_id { size_t item_size = sizeof(ros_message.mag_device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: health_flags { size_t item_size = sizeof(ros_message.health_flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: timeout_flags { size_t item_size = sizeof(ros_message.timeout_flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_EstimatorStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: timestamp_sample { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: vibe { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: output_tracking_error { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: gps_check_fail_flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: control_mode_flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: filter_fault_flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: pos_horiz_accuracy { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: pos_vert_accuracy { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: innovation_check_flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: mag_test_ratio { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: vel_test_ratio { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: pos_test_ratio { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: hgt_test_ratio { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: tas_test_ratio { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: hagl_test_ratio { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: beta_test_ratio { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: solution_status_flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: reset_count_vel_ne { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: reset_count_vel_d { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: reset_count_pos_ne { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: reset_count_pod_d { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: reset_count_quat { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: time_slip { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: pre_flt_fail_innov_heading { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: pre_flt_fail_innov_vel_horiz { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: pre_flt_fail_innov_vel_vert { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: pre_flt_fail_innov_height { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: pre_flt_fail_mag_field_disturbed { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: accel_device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: gyro_device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: baro_device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: mag_device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: health_flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: timeout_flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _EstimatorStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::EstimatorStatus *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _EstimatorStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::EstimatorStatus *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _EstimatorStatus__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::EstimatorStatus *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _EstimatorStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_EstimatorStatus(full_bounded, 0); } static message_type_support_callbacks_t _EstimatorStatus__callbacks = { "px4_msgs::msg", "EstimatorStatus", _EstimatorStatus__cdr_serialize, _EstimatorStatus__cdr_deserialize, _EstimatorStatus__get_serialized_size, _EstimatorStatus__max_serialized_size }; static rosidl_message_type_support_t _EstimatorStatus__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_EstimatorStatus__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::EstimatorStatus>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_EstimatorStatus__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, EstimatorStatus)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_EstimatorStatus__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fft__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/SensorGyroFft.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/sensor_gyro_fft__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void SensorGyroFft_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::SensorGyroFft(_init); } void SensorGyroFft_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::SensorGyroFft *>(message_memory); typed_message->~SensorGyroFft(); } size_t size_function__SensorGyroFft__peak_frequencies_x(const void * untyped_member) { (void)untyped_member; return 6; } const void * get_const_function__SensorGyroFft__peak_frequencies_x(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 6> *>(untyped_member); return &member[index]; } void * get_function__SensorGyroFft__peak_frequencies_x(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 6> *>(untyped_member); return &member[index]; } size_t size_function__SensorGyroFft__peak_frequencies_y(const void * untyped_member) { (void)untyped_member; return 6; } const void * get_const_function__SensorGyroFft__peak_frequencies_y(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 6> *>(untyped_member); return &member[index]; } void * get_function__SensorGyroFft__peak_frequencies_y(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 6> *>(untyped_member); return &member[index]; } size_t size_function__SensorGyroFft__peak_frequencies_z(const void * untyped_member) { (void)untyped_member; return 6; } const void * get_const_function__SensorGyroFft__peak_frequencies_z(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 6> *>(untyped_member); return &member[index]; } void * get_function__SensorGyroFft__peak_frequencies_z(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 6> *>(untyped_member); return &member[index]; } size_t size_function__SensorGyroFft__peak_magnitude_x(const void * untyped_member) { (void)untyped_member; return 6; } const void * get_const_function__SensorGyroFft__peak_magnitude_x(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint32_t, 6> *>(untyped_member); return &member[index]; } void * get_function__SensorGyroFft__peak_magnitude_x(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint32_t, 6> *>(untyped_member); return &member[index]; } size_t size_function__SensorGyroFft__peak_magnitude_y(const void * untyped_member) { (void)untyped_member; return 6; } const void * get_const_function__SensorGyroFft__peak_magnitude_y(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint32_t, 6> *>(untyped_member); return &member[index]; } void * get_function__SensorGyroFft__peak_magnitude_y(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint32_t, 6> *>(untyped_member); return &member[index]; } size_t size_function__SensorGyroFft__peak_magnitude_z(const void * untyped_member) { (void)untyped_member; return 6; } const void * get_const_function__SensorGyroFft__peak_magnitude_z(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint32_t, 6> *>(untyped_member); return &member[index]; } void * get_function__SensorGyroFft__peak_magnitude_z(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint32_t, 6> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember SensorGyroFft_message_member_array[11] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGyroFft, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGyroFft, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "device_id", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGyroFft, device_id), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "sensor_sample_rate_hz", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGyroFft, sensor_sample_rate_hz), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "resolution_hz", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGyroFft, resolution_hz), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "peak_frequencies_x", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 6, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGyroFft, peak_frequencies_x), // bytes offset in struct nullptr, // default value size_function__SensorGyroFft__peak_frequencies_x, // size() function pointer get_const_function__SensorGyroFft__peak_frequencies_x, // get_const(index) function pointer get_function__SensorGyroFft__peak_frequencies_x, // get(index) function pointer nullptr // resize(index) function pointer }, { "peak_frequencies_y", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 6, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGyroFft, peak_frequencies_y), // bytes offset in struct nullptr, // default value size_function__SensorGyroFft__peak_frequencies_y, // size() function pointer get_const_function__SensorGyroFft__peak_frequencies_y, // get_const(index) function pointer get_function__SensorGyroFft__peak_frequencies_y, // get(index) function pointer nullptr // resize(index) function pointer }, { "peak_frequencies_z", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 6, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGyroFft, peak_frequencies_z), // bytes offset in struct nullptr, // default value size_function__SensorGyroFft__peak_frequencies_z, // size() function pointer get_const_function__SensorGyroFft__peak_frequencies_z, // get_const(index) function pointer get_function__SensorGyroFft__peak_frequencies_z, // get(index) function pointer nullptr // resize(index) function pointer }, { "peak_magnitude_x", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 6, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGyroFft, peak_magnitude_x), // bytes offset in struct nullptr, // default value size_function__SensorGyroFft__peak_magnitude_x, // size() function pointer get_const_function__SensorGyroFft__peak_magnitude_x, // get_const(index) function pointer get_function__SensorGyroFft__peak_magnitude_x, // get(index) function pointer nullptr // resize(index) function pointer }, { "peak_magnitude_y", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 6, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGyroFft, peak_magnitude_y), // bytes offset in struct nullptr, // default value size_function__SensorGyroFft__peak_magnitude_y, // size() function pointer get_const_function__SensorGyroFft__peak_magnitude_y, // get_const(index) function pointer get_function__SensorGyroFft__peak_magnitude_y, // get(index) function pointer nullptr // resize(index) function pointer }, { "peak_magnitude_z", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 6, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGyroFft, peak_magnitude_z), // bytes offset in struct nullptr, // default value size_function__SensorGyroFft__peak_magnitude_z, // size() function pointer get_const_function__SensorGyroFft__peak_magnitude_z, // get_const(index) function pointer get_function__SensorGyroFft__peak_magnitude_z, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers SensorGyroFft_message_members = { "px4_msgs::msg", // message namespace "SensorGyroFft", // message name 11, // number of fields sizeof(px4_msgs::msg::SensorGyroFft), SensorGyroFft_message_member_array, // message members SensorGyroFft_init_function, // function to initialize message memory (memory has to be allocated) SensorGyroFft_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t SensorGyroFft_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &SensorGyroFft_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::SensorGyroFft>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::SensorGyroFft_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, SensorGyroFft)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::SensorGyroFft_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_orbit_status.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/OrbitStatus.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_OrbitStatus(type): """Metaclass of message 'OrbitStatus'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'ORBIT_YAW_BEHAVIOUR_HOLD_FRONT_TO_CIRCLE_CENTER': 0, 'ORBIT_YAW_BEHAVIOUR_HOLD_INITIAL_HEADING': 1, 'ORBIT_YAW_BEHAVIOUR_UNCONTROLLED': 2, 'ORBIT_YAW_BEHAVIOUR_HOLD_FRONT_TANGENT_TO_CIRCLE': 3, 'ORBIT_YAW_BEHAVIOUR_RC_CONTROLLED': 4, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.OrbitStatus') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__orbit_status cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__orbit_status cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__orbit_status cls._TYPE_SUPPORT = module.type_support_msg__msg__orbit_status cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__orbit_status @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'ORBIT_YAW_BEHAVIOUR_HOLD_FRONT_TO_CIRCLE_CENTER': cls.__constants['ORBIT_YAW_BEHAVIOUR_HOLD_FRONT_TO_CIRCLE_CENTER'], 'ORBIT_YAW_BEHAVIOUR_HOLD_INITIAL_HEADING': cls.__constants['ORBIT_YAW_BEHAVIOUR_HOLD_INITIAL_HEADING'], 'ORBIT_YAW_BEHAVIOUR_UNCONTROLLED': cls.__constants['ORBIT_YAW_BEHAVIOUR_UNCONTROLLED'], 'ORBIT_YAW_BEHAVIOUR_HOLD_FRONT_TANGENT_TO_CIRCLE': cls.__constants['ORBIT_YAW_BEHAVIOUR_HOLD_FRONT_TANGENT_TO_CIRCLE'], 'ORBIT_YAW_BEHAVIOUR_RC_CONTROLLED': cls.__constants['ORBIT_YAW_BEHAVIOUR_RC_CONTROLLED'], } @property def ORBIT_YAW_BEHAVIOUR_HOLD_FRONT_TO_CIRCLE_CENTER(self): """Message constant 'ORBIT_YAW_BEHAVIOUR_HOLD_FRONT_TO_CIRCLE_CENTER'.""" return Metaclass_OrbitStatus.__constants['ORBIT_YAW_BEHAVIOUR_HOLD_FRONT_TO_CIRCLE_CENTER'] @property def ORBIT_YAW_BEHAVIOUR_HOLD_INITIAL_HEADING(self): """Message constant 'ORBIT_YAW_BEHAVIOUR_HOLD_INITIAL_HEADING'.""" return Metaclass_OrbitStatus.__constants['ORBIT_YAW_BEHAVIOUR_HOLD_INITIAL_HEADING'] @property def ORBIT_YAW_BEHAVIOUR_UNCONTROLLED(self): """Message constant 'ORBIT_YAW_BEHAVIOUR_UNCONTROLLED'.""" return Metaclass_OrbitStatus.__constants['ORBIT_YAW_BEHAVIOUR_UNCONTROLLED'] @property def ORBIT_YAW_BEHAVIOUR_HOLD_FRONT_TANGENT_TO_CIRCLE(self): """Message constant 'ORBIT_YAW_BEHAVIOUR_HOLD_FRONT_TANGENT_TO_CIRCLE'.""" return Metaclass_OrbitStatus.__constants['ORBIT_YAW_BEHAVIOUR_HOLD_FRONT_TANGENT_TO_CIRCLE'] @property def ORBIT_YAW_BEHAVIOUR_RC_CONTROLLED(self): """Message constant 'ORBIT_YAW_BEHAVIOUR_RC_CONTROLLED'.""" return Metaclass_OrbitStatus.__constants['ORBIT_YAW_BEHAVIOUR_RC_CONTROLLED'] class OrbitStatus(metaclass=Metaclass_OrbitStatus): """ Message class 'OrbitStatus'. Constants: ORBIT_YAW_BEHAVIOUR_HOLD_FRONT_TO_CIRCLE_CENTER ORBIT_YAW_BEHAVIOUR_HOLD_INITIAL_HEADING ORBIT_YAW_BEHAVIOUR_UNCONTROLLED ORBIT_YAW_BEHAVIOUR_HOLD_FRONT_TANGENT_TO_CIRCLE ORBIT_YAW_BEHAVIOUR_RC_CONTROLLED """ __slots__ = [ '_timestamp', '_radius', '_frame', '_x', '_y', '_z', '_yaw_behaviour', ] _fields_and_field_types = { 'timestamp': 'uint64', 'radius': 'float', 'frame': 'uint8', 'x': 'double', 'y': 'double', 'z': 'float', 'yaw_behaviour': 'uint8', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('double'), # noqa: E501 rosidl_parser.definition.BasicType('double'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.radius = kwargs.get('radius', float()) self.frame = kwargs.get('frame', int()) self.x = kwargs.get('x', float()) self.y = kwargs.get('y', float()) self.z = kwargs.get('z', float()) self.yaw_behaviour = kwargs.get('yaw_behaviour', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.radius != other.radius: return False if self.frame != other.frame: return False if self.x != other.x: return False if self.y != other.y: return False if self.z != other.z: return False if self.yaw_behaviour != other.yaw_behaviour: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def radius(self): """Message field 'radius'.""" return self._radius @radius.setter def radius(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'radius' field must be of type 'float'" self._radius = value @property def frame(self): """Message field 'frame'.""" return self._frame @frame.setter def frame(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'frame' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'frame' field must be an unsigned integer in [0, 255]" self._frame = value @property def x(self): """Message field 'x'.""" return self._x @x.setter def x(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'x' field must be of type 'float'" self._x = value @property def y(self): """Message field 'y'.""" return self._y @y.setter def y(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'y' field must be of type 'float'" self._y = value @property def z(self): """Message field 'z'.""" return self._z @z.setter def z(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'z' field must be of type 'float'" self._z = value @property def yaw_behaviour(self): """Message field 'yaw_behaviour'.""" return self._yaw_behaviour @yaw_behaviour.setter def yaw_behaviour(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'yaw_behaviour' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'yaw_behaviour' field must be an unsigned integer in [0, 255]" self._yaw_behaviour = value <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/home_position.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__HOME_POSITION_HPP_ #define PX4_MSGS__MSG__HOME_POSITION_HPP_ #include "px4_msgs/msg/home_position__struct.hpp" #include "px4_msgs/msg/home_position__traits.hpp" #endif // PX4_MSGS__MSG__HOME_POSITION_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance__rosidl_typesupport_introspection_c.h // generated from rosidl_typesupport_introspection_c/resource/idl__rosidl_typesupport_introspection_c.h.em // with input from px4_msgs:msg/ObstacleDistance.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__OBSTACLE_DISTANCE__ROSIDL_TYPESUPPORT_INTROSPECTION_C_H_ #define PX4_MSGS__MSG__OBSTACLE_DISTANCE__ROSIDL_TYPESUPPORT_INTROSPECTION_C_H_ #ifdef __cplusplus extern "C" { #endif #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" ROSIDL_TYPESUPPORT_INTROSPECTION_C_PUBLIC_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, ObstacleDistance)(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__OBSTACLE_DISTANCE__ROSIDL_TYPESUPPORT_INTROSPECTION_C_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/test_motor__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/TestMotor.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/test_motor__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/test_motor__functions.h" #include "px4_msgs/msg/test_motor__struct.h" #ifdef __cplusplus extern "C" { #endif void TestMotor__rosidl_typesupport_introspection_c__TestMotor_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__TestMotor__init(message_memory); } void TestMotor__rosidl_typesupport_introspection_c__TestMotor_fini_function(void * message_memory) { px4_msgs__msg__TestMotor__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember TestMotor__rosidl_typesupport_introspection_c__TestMotor_message_member_array[6] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TestMotor, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "action", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TestMotor, action), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "motor_number", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TestMotor, motor_number), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "value", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TestMotor, value), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timeout_ms", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TestMotor, timeout_ms), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "driver_instance", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TestMotor, driver_instance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers TestMotor__rosidl_typesupport_introspection_c__TestMotor_message_members = { "px4_msgs__msg", // message namespace "TestMotor", // message name 6, // number of fields sizeof(px4_msgs__msg__TestMotor), TestMotor__rosidl_typesupport_introspection_c__TestMotor_message_member_array, // message members TestMotor__rosidl_typesupport_introspection_c__TestMotor_init_function, // function to initialize message memory (memory has to be allocated) TestMotor__rosidl_typesupport_introspection_c__TestMotor_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t TestMotor__rosidl_typesupport_introspection_c__TestMotor_message_type_support_handle = { 0, &TestMotor__rosidl_typesupport_introspection_c__TestMotor_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, TestMotor)() { if (!TestMotor__rosidl_typesupport_introspection_c__TestMotor_message_type_support_handle.typesupport_identifier) { TestMotor__rosidl_typesupport_introspection_c__TestMotor_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &TestMotor__rosidl_typesupport_introspection_c__TestMotor_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_selector_status__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/EstimatorSelectorStatus.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/estimator_selector_status__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void EstimatorSelectorStatus_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::EstimatorSelectorStatus(_init); } void EstimatorSelectorStatus_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::EstimatorSelectorStatus *>(message_memory); typed_message->~EstimatorSelectorStatus(); } size_t size_function__EstimatorSelectorStatus__combined_test_ratio(const void * untyped_member) { (void)untyped_member; return 9; } const void * get_const_function__EstimatorSelectorStatus__combined_test_ratio(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 9> *>(untyped_member); return &member[index]; } void * get_function__EstimatorSelectorStatus__combined_test_ratio(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 9> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorSelectorStatus__relative_test_ratio(const void * untyped_member) { (void)untyped_member; return 9; } const void * get_const_function__EstimatorSelectorStatus__relative_test_ratio(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 9> *>(untyped_member); return &member[index]; } void * get_function__EstimatorSelectorStatus__relative_test_ratio(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 9> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorSelectorStatus__healthy(const void * untyped_member) { (void)untyped_member; return 9; } const void * get_const_function__EstimatorSelectorStatus__healthy(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<bool, 9> *>(untyped_member); return &member[index]; } void * get_function__EstimatorSelectorStatus__healthy(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<bool, 9> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorSelectorStatus__accumulated_gyro_error(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__EstimatorSelectorStatus__accumulated_gyro_error(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 4> *>(untyped_member); return &member[index]; } void * get_function__EstimatorSelectorStatus__accumulated_gyro_error(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 4> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorSelectorStatus__accumulated_accel_error(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__EstimatorSelectorStatus__accumulated_accel_error(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 4> *>(untyped_member); return &member[index]; } void * get_function__EstimatorSelectorStatus__accumulated_accel_error(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 4> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember EstimatorSelectorStatus_message_member_array[16] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSelectorStatus, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "primary_instance", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSelectorStatus, primary_instance), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "instances_available", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSelectorStatus, instances_available), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "instance_changed_count", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSelectorStatus, instance_changed_count), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "last_instance_change", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSelectorStatus, last_instance_change), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "accel_device_id", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSelectorStatus, accel_device_id), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "baro_device_id", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSelectorStatus, baro_device_id), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "gyro_device_id", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSelectorStatus, gyro_device_id), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "mag_device_id", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSelectorStatus, mag_device_id), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "combined_test_ratio", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 9, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSelectorStatus, combined_test_ratio), // bytes offset in struct nullptr, // default value size_function__EstimatorSelectorStatus__combined_test_ratio, // size() function pointer get_const_function__EstimatorSelectorStatus__combined_test_ratio, // get_const(index) function pointer get_function__EstimatorSelectorStatus__combined_test_ratio, // get(index) function pointer nullptr // resize(index) function pointer }, { "relative_test_ratio", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 9, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSelectorStatus, relative_test_ratio), // bytes offset in struct nullptr, // default value size_function__EstimatorSelectorStatus__relative_test_ratio, // size() function pointer get_const_function__EstimatorSelectorStatus__relative_test_ratio, // get_const(index) function pointer get_function__EstimatorSelectorStatus__relative_test_ratio, // get(index) function pointer nullptr // resize(index) function pointer }, { "healthy", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 9, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSelectorStatus, healthy), // bytes offset in struct nullptr, // default value size_function__EstimatorSelectorStatus__healthy, // size() function pointer get_const_function__EstimatorSelectorStatus__healthy, // get_const(index) function pointer get_function__EstimatorSelectorStatus__healthy, // get(index) function pointer nullptr // resize(index) function pointer }, { "accumulated_gyro_error", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSelectorStatus, accumulated_gyro_error), // bytes offset in struct nullptr, // default value size_function__EstimatorSelectorStatus__accumulated_gyro_error, // size() function pointer get_const_function__EstimatorSelectorStatus__accumulated_gyro_error, // get_const(index) function pointer get_function__EstimatorSelectorStatus__accumulated_gyro_error, // get(index) function pointer nullptr // resize(index) function pointer }, { "accumulated_accel_error", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSelectorStatus, accumulated_accel_error), // bytes offset in struct nullptr, // default value size_function__EstimatorSelectorStatus__accumulated_accel_error, // size() function pointer get_const_function__EstimatorSelectorStatus__accumulated_accel_error, // get_const(index) function pointer get_function__EstimatorSelectorStatus__accumulated_accel_error, // get(index) function pointer nullptr // resize(index) function pointer }, { "gyro_fault_detected", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSelectorStatus, gyro_fault_detected), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "accel_fault_detected", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorSelectorStatus, accel_fault_detected), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers EstimatorSelectorStatus_message_members = { "px4_msgs::msg", // message namespace "EstimatorSelectorStatus", // message name 16, // number of fields sizeof(px4_msgs::msg::EstimatorSelectorStatus), EstimatorSelectorStatus_message_member_array, // message members EstimatorSelectorStatus_init_function, // function to initialize message memory (memory has to be allocated) EstimatorSelectorStatus_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t EstimatorSelectorStatus_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &EstimatorSelectorStatus_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::EstimatorSelectorStatus>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EstimatorSelectorStatus_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, EstimatorSelectorStatus)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EstimatorSelectorStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_gimbal_manager_set_manual_control.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/GimbalManagerSetManualControl.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_GimbalManagerSetManualControl(type): """Metaclass of message 'GimbalManagerSetManualControl'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'GIMBAL_MANAGER_FLAGS_RETRACT': 1, 'GIMBAL_MANAGER_FLAGS_NEUTRAL': 2, 'GIMBAL_MANAGER_FLAGS_ROLL_LOCK': 4, 'GIMBAL_MANAGER_FLAGS_PITCH_LOCK': 8, 'GIMBAL_MANAGER_FLAGS_YAW_LOCK': 16, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.GimbalManagerSetManualControl') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__gimbal_manager_set_manual_control cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__gimbal_manager_set_manual_control cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__gimbal_manager_set_manual_control cls._TYPE_SUPPORT = module.type_support_msg__msg__gimbal_manager_set_manual_control cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__gimbal_manager_set_manual_control @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'GIMBAL_MANAGER_FLAGS_RETRACT': cls.__constants['GIMBAL_MANAGER_FLAGS_RETRACT'], 'GIMBAL_MANAGER_FLAGS_NEUTRAL': cls.__constants['GIMBAL_MANAGER_FLAGS_NEUTRAL'], 'GIMBAL_MANAGER_FLAGS_ROLL_LOCK': cls.__constants['GIMBAL_MANAGER_FLAGS_ROLL_LOCK'], 'GIMBAL_MANAGER_FLAGS_PITCH_LOCK': cls.__constants['GIMBAL_MANAGER_FLAGS_PITCH_LOCK'], 'GIMBAL_MANAGER_FLAGS_YAW_LOCK': cls.__constants['GIMBAL_MANAGER_FLAGS_YAW_LOCK'], } @property def GIMBAL_MANAGER_FLAGS_RETRACT(self): """Message constant 'GIMBAL_MANAGER_FLAGS_RETRACT'.""" return Metaclass_GimbalManagerSetManualControl.__constants['GIMBAL_MANAGER_FLAGS_RETRACT'] @property def GIMBAL_MANAGER_FLAGS_NEUTRAL(self): """Message constant 'GIMBAL_MANAGER_FLAGS_NEUTRAL'.""" return Metaclass_GimbalManagerSetManualControl.__constants['GIMBAL_MANAGER_FLAGS_NEUTRAL'] @property def GIMBAL_MANAGER_FLAGS_ROLL_LOCK(self): """Message constant 'GIMBAL_MANAGER_FLAGS_ROLL_LOCK'.""" return Metaclass_GimbalManagerSetManualControl.__constants['GIMBAL_MANAGER_FLAGS_ROLL_LOCK'] @property def GIMBAL_MANAGER_FLAGS_PITCH_LOCK(self): """Message constant 'GIMBAL_MANAGER_FLAGS_PITCH_LOCK'.""" return Metaclass_GimbalManagerSetManualControl.__constants['GIMBAL_MANAGER_FLAGS_PITCH_LOCK'] @property def GIMBAL_MANAGER_FLAGS_YAW_LOCK(self): """Message constant 'GIMBAL_MANAGER_FLAGS_YAW_LOCK'.""" return Metaclass_GimbalManagerSetManualControl.__constants['GIMBAL_MANAGER_FLAGS_YAW_LOCK'] class GimbalManagerSetManualControl(metaclass=Metaclass_GimbalManagerSetManualControl): """ Message class 'GimbalManagerSetManualControl'. Constants: GIMBAL_MANAGER_FLAGS_RETRACT GIMBAL_MANAGER_FLAGS_NEUTRAL GIMBAL_MANAGER_FLAGS_ROLL_LOCK GIMBAL_MANAGER_FLAGS_PITCH_LOCK GIMBAL_MANAGER_FLAGS_YAW_LOCK """ __slots__ = [ '_timestamp', '_origin_sysid', '_origin_compid', '_target_system', '_target_component', '_flags', '_gimbal_device_id', '_pitch', '_yaw', '_pitch_rate', '_yaw_rate', ] _fields_and_field_types = { 'timestamp': 'uint64', 'origin_sysid': 'uint8', 'origin_compid': 'uint8', 'target_system': 'uint8', 'target_component': 'uint8', 'flags': 'uint32', 'gimbal_device_id': 'uint8', 'pitch': 'float', 'yaw': 'float', 'pitch_rate': 'float', 'yaw_rate': 'float', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.origin_sysid = kwargs.get('origin_sysid', int()) self.origin_compid = kwargs.get('origin_compid', int()) self.target_system = kwargs.get('target_system', int()) self.target_component = kwargs.get('target_component', int()) self.flags = kwargs.get('flags', int()) self.gimbal_device_id = kwargs.get('gimbal_device_id', int()) self.pitch = kwargs.get('pitch', float()) self.yaw = kwargs.get('yaw', float()) self.pitch_rate = kwargs.get('pitch_rate', float()) self.yaw_rate = kwargs.get('yaw_rate', float()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.origin_sysid != other.origin_sysid: return False if self.origin_compid != other.origin_compid: return False if self.target_system != other.target_system: return False if self.target_component != other.target_component: return False if self.flags != other.flags: return False if self.gimbal_device_id != other.gimbal_device_id: return False if self.pitch != other.pitch: return False if self.yaw != other.yaw: return False if self.pitch_rate != other.pitch_rate: return False if self.yaw_rate != other.yaw_rate: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def origin_sysid(self): """Message field 'origin_sysid'.""" return self._origin_sysid @origin_sysid.setter def origin_sysid(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'origin_sysid' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'origin_sysid' field must be an unsigned integer in [0, 255]" self._origin_sysid = value @property def origin_compid(self): """Message field 'origin_compid'.""" return self._origin_compid @origin_compid.setter def origin_compid(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'origin_compid' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'origin_compid' field must be an unsigned integer in [0, 255]" self._origin_compid = value @property def target_system(self): """Message field 'target_system'.""" return self._target_system @target_system.setter def target_system(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'target_system' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'target_system' field must be an unsigned integer in [0, 255]" self._target_system = value @property def target_component(self): """Message field 'target_component'.""" return self._target_component @target_component.setter def target_component(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'target_component' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'target_component' field must be an unsigned integer in [0, 255]" self._target_component = value @property def flags(self): """Message field 'flags'.""" return self._flags @flags.setter def flags(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'flags' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'flags' field must be an unsigned integer in [0, 4294967295]" self._flags = value @property def gimbal_device_id(self): """Message field 'gimbal_device_id'.""" return self._gimbal_device_id @gimbal_device_id.setter def gimbal_device_id(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'gimbal_device_id' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'gimbal_device_id' field must be an unsigned integer in [0, 255]" self._gimbal_device_id = value @property def pitch(self): """Message field 'pitch'.""" return self._pitch @pitch.setter def pitch(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'pitch' field must be of type 'float'" self._pitch = value @property def yaw(self): """Message field 'yaw'.""" return self._yaw @yaw.setter def yaw(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'yaw' field must be of type 'float'" self._yaw = value @property def pitch_rate(self): """Message field 'pitch_rate'.""" return self._pitch_rate @pitch_rate.setter def pitch_rate(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'pitch_rate' field must be of type 'float'" self._pitch_rate = value @property def yaw_rate(self): """Message field 'yaw_rate'.""" return self._yaw_rate @yaw_rate.setter def yaw_rate(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'yaw_rate' field must be of type 'float'" self._yaw_rate = value <file_sep>/build/px4_msgs/CMakeFiles/px4_msgs__cpp.dir/cmake_clean.cmake file(REMOVE_RECURSE "CMakeFiles/px4_msgs__cpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_armed.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_armed__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_armed__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_controls.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_controls__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_controls__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_controls0.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_controls0__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_controls0__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_controls1.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_controls1__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_controls1__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_controls2.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_controls2__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_controls2__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_controls3.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_controls3__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_controls3__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_controls4.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_controls4__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_controls4__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_controls5.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_controls5__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_controls5__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_controls_virtual_fw.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_controls_virtual_fw__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_controls_virtual_fw__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_controls_virtual_mc.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_controls_virtual_mc__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_controls_virtual_mc__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_outputs.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_outputs__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/actuator_outputs__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/adc_report.hpp" "rosidl_generator_cpp/px4_msgs/msg/adc_report__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/adc_report__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/airspeed.hpp" "rosidl_generator_cpp/px4_msgs/msg/airspeed__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/airspeed__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/airspeed_validated.hpp" "rosidl_generator_cpp/px4_msgs/msg/airspeed_validated__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/airspeed_validated__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/airspeed_wind.hpp" "rosidl_generator_cpp/px4_msgs/msg/airspeed_wind__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/airspeed_wind__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/battery_status.hpp" "rosidl_generator_cpp/px4_msgs/msg/battery_status__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/battery_status__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/camera_capture.hpp" "rosidl_generator_cpp/px4_msgs/msg/camera_capture__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/camera_capture__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/camera_trigger.hpp" "rosidl_generator_cpp/px4_msgs/msg/camera_trigger__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/camera_trigger__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/camera_trigger_secondary.hpp" "rosidl_generator_cpp/px4_msgs/msg/camera_trigger_secondary__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/camera_trigger_secondary__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/cellular_status.hpp" "rosidl_generator_cpp/px4_msgs/msg/cellular_status__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/cellular_status__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/collision_constraints.hpp" "rosidl_generator_cpp/px4_msgs/msg/collision_constraints__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/collision_constraints__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/collision_report.hpp" "rosidl_generator_cpp/px4_msgs/msg/collision_report__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/collision_report__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/commander_state.hpp" "rosidl_generator_cpp/px4_msgs/msg/commander_state__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/commander_state__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/control_allocator_status.hpp" "rosidl_generator_cpp/px4_msgs/msg/control_allocator_status__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/control_allocator_status__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/cpuload.hpp" "rosidl_generator_cpp/px4_msgs/msg/cpuload__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/cpuload__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/debug_array.hpp" "rosidl_generator_cpp/px4_msgs/msg/debug_array__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/debug_array__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/debug_key_value.hpp" "rosidl_generator_cpp/px4_msgs/msg/debug_key_value__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/debug_key_value__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/debug_value.hpp" "rosidl_generator_cpp/px4_msgs/msg/debug_value__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/debug_value__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/debug_vect.hpp" "rosidl_generator_cpp/px4_msgs/msg/debug_vect__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/debug_vect__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/differential_pressure.hpp" "rosidl_generator_cpp/px4_msgs/msg/differential_pressure__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/differential_pressure__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/distance_sensor.hpp" "rosidl_generator_cpp/px4_msgs/msg/distance_sensor__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/distance_sensor__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/ekf2_timestamps.hpp" "rosidl_generator_cpp/px4_msgs/msg/ekf2_timestamps__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/ekf2_timestamps__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/ekf_gps_drift.hpp" "rosidl_generator_cpp/px4_msgs/msg/ekf_gps_drift__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/ekf_gps_drift__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/esc_report.hpp" "rosidl_generator_cpp/px4_msgs/msg/esc_report__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/esc_report__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/esc_status.hpp" "rosidl_generator_cpp/px4_msgs/msg/esc_status__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/esc_status__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_attitude.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_attitude__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_attitude__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_event_flags.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_event_flags__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_event_flags__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_global_position.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_global_position__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_global_position__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_innovation_test_ratios.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_innovation_test_ratios__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_innovation_test_ratios__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_innovation_variances.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_innovation_variances__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_innovation_variances__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_innovations.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_innovations__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_innovations__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_local_position.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_local_position__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_local_position__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_odometry.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_odometry__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_odometry__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_optical_flow_vel.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_optical_flow_vel__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_optical_flow_vel__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_selector_status.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_selector_status__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_selector_status__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_sensor_bias.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_sensor_bias__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_sensor_bias__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_states.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_states__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_states__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_status.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_status__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_status__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_status_flags.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_status_flags__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_status_flags__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_visual_odometry_aligned.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_visual_odometry_aligned__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_wind.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_wind__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/estimator_wind__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/follow_target.hpp" "rosidl_generator_cpp/px4_msgs/msg/follow_target__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/follow_target__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint.hpp" "rosidl_generator_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/fw_virtual_attitude_setpoint__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/generator_status.hpp" "rosidl_generator_cpp/px4_msgs/msg/generator_status__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/generator_status__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/geofence_result.hpp" "rosidl_generator_cpp/px4_msgs/msg/geofence_result__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/geofence_result__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/gimbal_device_attitude_status.hpp" "rosidl_generator_cpp/px4_msgs/msg/gimbal_device_attitude_status__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/gimbal_device_attitude_status__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/gimbal_device_information.hpp" "rosidl_generator_cpp/px4_msgs/msg/gimbal_device_information__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/gimbal_device_information__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/gimbal_device_set_attitude.hpp" "rosidl_generator_cpp/px4_msgs/msg/gimbal_device_set_attitude__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/gimbal_device_set_attitude__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/gimbal_manager_information.hpp" "rosidl_generator_cpp/px4_msgs/msg/gimbal_manager_information__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/gimbal_manager_information__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/gimbal_manager_set_attitude.hpp" "rosidl_generator_cpp/px4_msgs/msg/gimbal_manager_set_attitude__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/gimbal_manager_set_attitude__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/gimbal_manager_set_manual_control.hpp" "rosidl_generator_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/gimbal_manager_set_manual_control__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/gimbal_manager_status.hpp" "rosidl_generator_cpp/px4_msgs/msg/gimbal_manager_status__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/gimbal_manager_status__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/gps_dump.hpp" "rosidl_generator_cpp/px4_msgs/msg/gps_dump__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/gps_dump__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/gps_inject_data.hpp" "rosidl_generator_cpp/px4_msgs/msg/gps_inject_data__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/gps_inject_data__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/heater_status.hpp" "rosidl_generator_cpp/px4_msgs/msg/heater_status__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/heater_status__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/home_position.hpp" "rosidl_generator_cpp/px4_msgs/msg/home_position__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/home_position__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/hover_thrust_estimate.hpp" "rosidl_generator_cpp/px4_msgs/msg/hover_thrust_estimate__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/hover_thrust_estimate__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/input_rc.hpp" "rosidl_generator_cpp/px4_msgs/msg/input_rc__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/input_rc__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/iridiumsbd_status.hpp" "rosidl_generator_cpp/px4_msgs/msg/iridiumsbd_status__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/iridiumsbd_status__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/irlock_report.hpp" "rosidl_generator_cpp/px4_msgs/msg/irlock_report__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/irlock_report__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/landing_gear.hpp" "rosidl_generator_cpp/px4_msgs/msg/landing_gear__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/landing_gear__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/landing_target_innovations.hpp" "rosidl_generator_cpp/px4_msgs/msg/landing_target_innovations__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/landing_target_innovations__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/landing_target_pose.hpp" "rosidl_generator_cpp/px4_msgs/msg/landing_target_pose__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/landing_target_pose__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/led_control.hpp" "rosidl_generator_cpp/px4_msgs/msg/led_control__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/led_control__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/log_message.hpp" "rosidl_generator_cpp/px4_msgs/msg/log_message__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/log_message__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/logger_status.hpp" "rosidl_generator_cpp/px4_msgs/msg/logger_status__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/logger_status__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/mag_worker_data.hpp" "rosidl_generator_cpp/px4_msgs/msg/mag_worker_data__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/mag_worker_data__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/manual_control_setpoint.hpp" "rosidl_generator_cpp/px4_msgs/msg/manual_control_setpoint__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/manual_control_setpoint__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/manual_control_switches.hpp" "rosidl_generator_cpp/px4_msgs/msg/manual_control_switches__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/manual_control_switches__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/mavlink_log.hpp" "rosidl_generator_cpp/px4_msgs/msg/mavlink_log__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/mavlink_log__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint.hpp" "rosidl_generator_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/mission.hpp" "rosidl_generator_cpp/px4_msgs/msg/mission__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/mission__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/mission_result.hpp" "rosidl_generator_cpp/px4_msgs/msg/mission_result__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/mission_result__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/mount_orientation.hpp" "rosidl_generator_cpp/px4_msgs/msg/mount_orientation__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/mount_orientation__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/multirotor_motor_limits.hpp" "rosidl_generator_cpp/px4_msgs/msg/multirotor_motor_limits__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/multirotor_motor_limits__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/navigator_mission_item.hpp" "rosidl_generator_cpp/px4_msgs/msg/navigator_mission_item__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/navigator_mission_item__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/obstacle_distance.hpp" "rosidl_generator_cpp/px4_msgs/msg/obstacle_distance__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/obstacle_distance__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/obstacle_distance_fused.hpp" "rosidl_generator_cpp/px4_msgs/msg/obstacle_distance_fused__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/obstacle_distance_fused__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/offboard_control_mode.hpp" "rosidl_generator_cpp/px4_msgs/msg/offboard_control_mode__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/offboard_control_mode__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/onboard_computer_status.hpp" "rosidl_generator_cpp/px4_msgs/msg/onboard_computer_status__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/onboard_computer_status__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/optical_flow.hpp" "rosidl_generator_cpp/px4_msgs/msg/optical_flow__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/optical_flow__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/orb_multitest.hpp" "rosidl_generator_cpp/px4_msgs/msg/orb_multitest__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/orb_multitest__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/orb_test.hpp" "rosidl_generator_cpp/px4_msgs/msg/orb_test__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/orb_test__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/orb_test_large.hpp" "rosidl_generator_cpp/px4_msgs/msg/orb_test_large__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/orb_test_large__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/orb_test_medium.hpp" "rosidl_generator_cpp/px4_msgs/msg/orb_test_medium__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/orb_test_medium__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/orb_test_medium_multi.hpp" "rosidl_generator_cpp/px4_msgs/msg/orb_test_medium_multi__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/orb_test_medium_multi__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/orb_test_medium_queue.hpp" "rosidl_generator_cpp/px4_msgs/msg/orb_test_medium_queue__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/orb_test_medium_queue__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/orb_test_medium_queue_poll.hpp" "rosidl_generator_cpp/px4_msgs/msg/orb_test_medium_queue_poll__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/orb_test_medium_queue_poll__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/orb_test_medium_wrap_around.hpp" "rosidl_generator_cpp/px4_msgs/msg/orb_test_medium_wrap_around__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/orb_test_medium_wrap_around__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/orbit_status.hpp" "rosidl_generator_cpp/px4_msgs/msg/orbit_status__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/orbit_status__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/parameter_update.hpp" "rosidl_generator_cpp/px4_msgs/msg/parameter_update__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/parameter_update__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/ping.hpp" "rosidl_generator_cpp/px4_msgs/msg/ping__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/ping__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/position_controller_landing_status.hpp" "rosidl_generator_cpp/px4_msgs/msg/position_controller_landing_status__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/position_controller_landing_status__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/position_controller_status.hpp" "rosidl_generator_cpp/px4_msgs/msg/position_controller_status__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/position_controller_status__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/position_setpoint.hpp" "rosidl_generator_cpp/px4_msgs/msg/position_setpoint__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/position_setpoint__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/position_setpoint_triplet.hpp" "rosidl_generator_cpp/px4_msgs/msg/position_setpoint_triplet__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/position_setpoint_triplet__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/power_button_state.hpp" "rosidl_generator_cpp/px4_msgs/msg/power_button_state__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/power_button_state__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/power_monitor.hpp" "rosidl_generator_cpp/px4_msgs/msg/power_monitor__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/power_monitor__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/pwm_input.hpp" "rosidl_generator_cpp/px4_msgs/msg/pwm_input__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/pwm_input__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/px4_io_status.hpp" "rosidl_generator_cpp/px4_msgs/msg/px4_io_status__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/px4_io_status__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/qshell_req.hpp" "rosidl_generator_cpp/px4_msgs/msg/qshell_req__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/qshell_req__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/qshell_retval.hpp" "rosidl_generator_cpp/px4_msgs/msg/qshell_retval__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/qshell_retval__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/radio_status.hpp" "rosidl_generator_cpp/px4_msgs/msg/radio_status__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/radio_status__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/rate_ctrl_status.hpp" "rosidl_generator_cpp/px4_msgs/msg/rate_ctrl_status__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/rate_ctrl_status__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/rc_channels.hpp" "rosidl_generator_cpp/px4_msgs/msg/rc_channels__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/rc_channels__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/rc_parameter_map.hpp" "rosidl_generator_cpp/px4_msgs/msg/rc_parameter_map__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/rc_parameter_map__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/rpm.hpp" "rosidl_generator_cpp/px4_msgs/msg/rpm__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/rpm__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/rtl_flight_time.hpp" "rosidl_generator_cpp/px4_msgs/msg/rtl_flight_time__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/rtl_flight_time__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/safety.hpp" "rosidl_generator_cpp/px4_msgs/msg/safety__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/safety__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/satellite_info.hpp" "rosidl_generator_cpp/px4_msgs/msg/satellite_info__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/satellite_info__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_accel.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_accel__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_accel__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_accel_fifo.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_accel_fifo__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_accel_fifo__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_baro.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_baro__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_baro__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_combined.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_combined__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_combined__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_correction.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_correction__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_correction__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_gps.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_gps__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_gps__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_gyro.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_gyro__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_gyro__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_gyro_fft.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_gyro_fft__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_gyro_fft__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_gyro_fifo.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_gyro_fifo__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_gyro_fifo__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_mag.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_mag__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_mag__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_preflight_mag.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_preflight_mag__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_preflight_mag__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_selection.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_selection__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensor_selection__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensors_status_imu.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensors_status_imu__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/sensors_status_imu__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/system_power.hpp" "rosidl_generator_cpp/px4_msgs/msg/system_power__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/system_power__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/takeoff_status.hpp" "rosidl_generator_cpp/px4_msgs/msg/takeoff_status__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/takeoff_status__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/task_stack_info.hpp" "rosidl_generator_cpp/px4_msgs/msg/task_stack_info__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/task_stack_info__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/tecs_status.hpp" "rosidl_generator_cpp/px4_msgs/msg/tecs_status__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/tecs_status__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/telemetry_status.hpp" "rosidl_generator_cpp/px4_msgs/msg/telemetry_status__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/telemetry_status__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/test_motor.hpp" "rosidl_generator_cpp/px4_msgs/msg/test_motor__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/test_motor__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/timesync.hpp" "rosidl_generator_cpp/px4_msgs/msg/timesync__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/timesync__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/timesync_status.hpp" "rosidl_generator_cpp/px4_msgs/msg/timesync_status__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/timesync_status__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/trajectory_bezier.hpp" "rosidl_generator_cpp/px4_msgs/msg/trajectory_bezier__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/trajectory_bezier__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/trajectory_setpoint.hpp" "rosidl_generator_cpp/px4_msgs/msg/trajectory_setpoint__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/trajectory_setpoint__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/trajectory_waypoint.hpp" "rosidl_generator_cpp/px4_msgs/msg/trajectory_waypoint__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/trajectory_waypoint__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/transponder_report.hpp" "rosidl_generator_cpp/px4_msgs/msg/transponder_report__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/transponder_report__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/tune_control.hpp" "rosidl_generator_cpp/px4_msgs/msg/tune_control__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/tune_control__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/uavcan_parameter_request.hpp" "rosidl_generator_cpp/px4_msgs/msg/uavcan_parameter_request__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/uavcan_parameter_request__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/uavcan_parameter_value.hpp" "rosidl_generator_cpp/px4_msgs/msg/uavcan_parameter_value__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/uavcan_parameter_value__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/ulog_stream.hpp" "rosidl_generator_cpp/px4_msgs/msg/ulog_stream__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/ulog_stream__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/ulog_stream_ack.hpp" "rosidl_generator_cpp/px4_msgs/msg/ulog_stream_ack__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/ulog_stream_ack__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_acceleration.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_acceleration__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_acceleration__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_actuator_setpoint.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_actuator_setpoint__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_actuator_setpoint__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_air_data.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_air_data__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_air_data__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_angular_acceleration.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_angular_acceleration__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_angular_acceleration__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_angular_velocity.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_angular_velocity__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_angular_velocity__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_angular_velocity_groundtruth__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_attitude.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_attitude__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_attitude__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_attitude_groundtruth.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_attitude_setpoint.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_attitude_setpoint__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_attitude_setpoint__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_command.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_command__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_command__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_command_ack.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_command_ack__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_command_ack__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_constraints.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_constraints__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_constraints__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_control_mode.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_control_mode__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_control_mode__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_global_position.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_global_position__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_global_position__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_global_position_groundtruth.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_gps_position.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_gps_position__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_gps_position__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_imu.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_imu__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_imu__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_imu_status.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_imu_status__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_imu_status__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_land_detected.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_land_detected__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_land_detected__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_local_position.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_local_position__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_local_position__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_local_position_groundtruth.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_local_position_groundtruth__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_local_position_setpoint.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_local_position_setpoint__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_local_position_setpoint__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_magnetometer.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_magnetometer__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_magnetometer__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_mocap_odometry.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_mocap_odometry__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_mocap_odometry__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_odometry.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_odometry__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_odometry__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_rates_setpoint.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_rates_setpoint__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_rates_setpoint__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_roi.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_roi__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_roi__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_status.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_status__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_status__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_status_flags.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_status_flags__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_status_flags__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_thrust_setpoint.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_thrust_setpoint__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_thrust_setpoint__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_torque_setpoint.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_torque_setpoint__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_torque_setpoint__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_trajectory_bezier.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_trajectory_bezier__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_trajectory_bezier__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_trajectory_waypoint.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_trajectory_waypoint_desired__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_vision_attitude.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_vision_attitude__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_vision_attitude__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_visual_odometry.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_visual_odometry__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vehicle_visual_odometry__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/vtol_vehicle_status.hpp" "rosidl_generator_cpp/px4_msgs/msg/vtol_vehicle_status__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/vtol_vehicle_status__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/wheel_encoders.hpp" "rosidl_generator_cpp/px4_msgs/msg/wheel_encoders__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/wheel_encoders__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/wind.hpp" "rosidl_generator_cpp/px4_msgs/msg/wind__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/wind__traits.hpp" "rosidl_generator_cpp/px4_msgs/msg/yaw_estimator_status.hpp" "rosidl_generator_cpp/px4_msgs/msg/yaw_estimator_status__struct.hpp" "rosidl_generator_cpp/px4_msgs/msg/yaw_estimator_status__traits.hpp" ) # Per-language clean rules from dependency scanning. foreach(lang ) include(CMakeFiles/px4_msgs__cpp.dir/cmake_clean_${lang}.cmake OPTIONAL) endforeach() <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/takeoff_status.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/TakeoffStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TAKEOFF_STATUS_H_ #define PX4_MSGS__MSG__TAKEOFF_STATUS_H_ #include "px4_msgs/msg/takeoff_status__struct.h" #include "px4_msgs/msg/takeoff_status__functions.h" #include "px4_msgs/msg/takeoff_status__type_support.h" #endif // PX4_MSGS__MSG__TAKEOFF_STATUS_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/tecs_status__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/TecsStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/tecs_status__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/tecs_status__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::TecsStatus & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: altitude_sp cdr << ros_message.altitude_sp; // Member: altitude_filtered cdr << ros_message.altitude_filtered; // Member: height_rate_setpoint cdr << ros_message.height_rate_setpoint; // Member: height_rate cdr << ros_message.height_rate; // Member: equivalent_airspeed_sp cdr << ros_message.equivalent_airspeed_sp; // Member: true_airspeed_sp cdr << ros_message.true_airspeed_sp; // Member: true_airspeed_filtered cdr << ros_message.true_airspeed_filtered; // Member: true_airspeed_derivative_sp cdr << ros_message.true_airspeed_derivative_sp; // Member: true_airspeed_derivative cdr << ros_message.true_airspeed_derivative; // Member: total_energy_error cdr << ros_message.total_energy_error; // Member: energy_distribution_error cdr << ros_message.energy_distribution_error; // Member: total_energy_rate_error cdr << ros_message.total_energy_rate_error; // Member: energy_distribution_rate_error cdr << ros_message.energy_distribution_rate_error; // Member: total_energy cdr << ros_message.total_energy; // Member: total_energy_rate cdr << ros_message.total_energy_rate; // Member: total_energy_balance cdr << ros_message.total_energy_balance; // Member: total_energy_balance_rate cdr << ros_message.total_energy_balance_rate; // Member: total_energy_sp cdr << ros_message.total_energy_sp; // Member: total_energy_rate_sp cdr << ros_message.total_energy_rate_sp; // Member: total_energy_balance_sp cdr << ros_message.total_energy_balance_sp; // Member: total_energy_balance_rate_sp cdr << ros_message.total_energy_balance_rate_sp; // Member: throttle_integ cdr << ros_message.throttle_integ; // Member: pitch_integ cdr << ros_message.pitch_integ; // Member: throttle_sp cdr << ros_message.throttle_sp; // Member: mode cdr << ros_message.mode; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::TecsStatus & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: altitude_sp cdr >> ros_message.altitude_sp; // Member: altitude_filtered cdr >> ros_message.altitude_filtered; // Member: height_rate_setpoint cdr >> ros_message.height_rate_setpoint; // Member: height_rate cdr >> ros_message.height_rate; // Member: equivalent_airspeed_sp cdr >> ros_message.equivalent_airspeed_sp; // Member: true_airspeed_sp cdr >> ros_message.true_airspeed_sp; // Member: true_airspeed_filtered cdr >> ros_message.true_airspeed_filtered; // Member: true_airspeed_derivative_sp cdr >> ros_message.true_airspeed_derivative_sp; // Member: true_airspeed_derivative cdr >> ros_message.true_airspeed_derivative; // Member: total_energy_error cdr >> ros_message.total_energy_error; // Member: energy_distribution_error cdr >> ros_message.energy_distribution_error; // Member: total_energy_rate_error cdr >> ros_message.total_energy_rate_error; // Member: energy_distribution_rate_error cdr >> ros_message.energy_distribution_rate_error; // Member: total_energy cdr >> ros_message.total_energy; // Member: total_energy_rate cdr >> ros_message.total_energy_rate; // Member: total_energy_balance cdr >> ros_message.total_energy_balance; // Member: total_energy_balance_rate cdr >> ros_message.total_energy_balance_rate; // Member: total_energy_sp cdr >> ros_message.total_energy_sp; // Member: total_energy_rate_sp cdr >> ros_message.total_energy_rate_sp; // Member: total_energy_balance_sp cdr >> ros_message.total_energy_balance_sp; // Member: total_energy_balance_rate_sp cdr >> ros_message.total_energy_balance_rate_sp; // Member: throttle_integ cdr >> ros_message.throttle_integ; // Member: pitch_integ cdr >> ros_message.pitch_integ; // Member: throttle_sp cdr >> ros_message.throttle_sp; // Member: mode cdr >> ros_message.mode; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::TecsStatus & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: altitude_sp { size_t item_size = sizeof(ros_message.altitude_sp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: altitude_filtered { size_t item_size = sizeof(ros_message.altitude_filtered); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: height_rate_setpoint { size_t item_size = sizeof(ros_message.height_rate_setpoint); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: height_rate { size_t item_size = sizeof(ros_message.height_rate); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: equivalent_airspeed_sp { size_t item_size = sizeof(ros_message.equivalent_airspeed_sp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: true_airspeed_sp { size_t item_size = sizeof(ros_message.true_airspeed_sp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: true_airspeed_filtered { size_t item_size = sizeof(ros_message.true_airspeed_filtered); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: true_airspeed_derivative_sp { size_t item_size = sizeof(ros_message.true_airspeed_derivative_sp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: true_airspeed_derivative { size_t item_size = sizeof(ros_message.true_airspeed_derivative); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: total_energy_error { size_t item_size = sizeof(ros_message.total_energy_error); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: energy_distribution_error { size_t item_size = sizeof(ros_message.energy_distribution_error); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: total_energy_rate_error { size_t item_size = sizeof(ros_message.total_energy_rate_error); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: energy_distribution_rate_error { size_t item_size = sizeof(ros_message.energy_distribution_rate_error); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: total_energy { size_t item_size = sizeof(ros_message.total_energy); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: total_energy_rate { size_t item_size = sizeof(ros_message.total_energy_rate); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: total_energy_balance { size_t item_size = sizeof(ros_message.total_energy_balance); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: total_energy_balance_rate { size_t item_size = sizeof(ros_message.total_energy_balance_rate); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: total_energy_sp { size_t item_size = sizeof(ros_message.total_energy_sp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: total_energy_rate_sp { size_t item_size = sizeof(ros_message.total_energy_rate_sp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: total_energy_balance_sp { size_t item_size = sizeof(ros_message.total_energy_balance_sp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: total_energy_balance_rate_sp { size_t item_size = sizeof(ros_message.total_energy_balance_rate_sp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: throttle_integ { size_t item_size = sizeof(ros_message.throttle_integ); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: pitch_integ { size_t item_size = sizeof(ros_message.pitch_integ); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: throttle_sp { size_t item_size = sizeof(ros_message.throttle_sp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: mode { size_t item_size = sizeof(ros_message.mode); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_TecsStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: altitude_sp { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: altitude_filtered { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: height_rate_setpoint { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: height_rate { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: equivalent_airspeed_sp { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: true_airspeed_sp { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: true_airspeed_filtered { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: true_airspeed_derivative_sp { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: true_airspeed_derivative { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: total_energy_error { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: energy_distribution_error { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: total_energy_rate_error { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: energy_distribution_rate_error { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: total_energy { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: total_energy_rate { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: total_energy_balance { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: total_energy_balance_rate { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: total_energy_sp { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: total_energy_rate_sp { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: total_energy_balance_sp { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: total_energy_balance_rate_sp { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: throttle_integ { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: pitch_integ { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: throttle_sp { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: mode { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _TecsStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::TecsStatus *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _TecsStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::TecsStatus *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _TecsStatus__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::TecsStatus *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _TecsStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_TecsStatus(full_bounded, 0); } static message_type_support_callbacks_t _TecsStatus__callbacks = { "px4_msgs::msg", "TecsStatus", _TecsStatus__cdr_serialize, _TecsStatus__cdr_deserialize, _TecsStatus__get_serialized_size, _TecsStatus__max_serialized_size }; static rosidl_message_type_support_t _TecsStatus__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_TecsStatus__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::TecsStatus>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_TecsStatus__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, TecsStatus)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_TecsStatus__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/onboard_computer_status__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/OnboardComputerStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/onboard_computer_status__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/onboard_computer_status__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::OnboardComputerStatus & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: uptime cdr << ros_message.uptime; // Member: type cdr << ros_message.type; // Member: cpu_cores { cdr << ros_message.cpu_cores; } // Member: cpu_combined { cdr << ros_message.cpu_combined; } // Member: gpu_cores { cdr << ros_message.gpu_cores; } // Member: gpu_combined { cdr << ros_message.gpu_combined; } // Member: temperature_board cdr << ros_message.temperature_board; // Member: temperature_core { cdr << ros_message.temperature_core; } // Member: fan_speed { cdr << ros_message.fan_speed; } // Member: ram_usage cdr << ros_message.ram_usage; // Member: ram_total cdr << ros_message.ram_total; // Member: storage_type { cdr << ros_message.storage_type; } // Member: storage_usage { cdr << ros_message.storage_usage; } // Member: storage_total { cdr << ros_message.storage_total; } // Member: link_type { cdr << ros_message.link_type; } // Member: link_tx_rate { cdr << ros_message.link_tx_rate; } // Member: link_rx_rate { cdr << ros_message.link_rx_rate; } // Member: link_tx_max { cdr << ros_message.link_tx_max; } // Member: link_rx_max { cdr << ros_message.link_rx_max; } return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::OnboardComputerStatus & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: uptime cdr >> ros_message.uptime; // Member: type cdr >> ros_message.type; // Member: cpu_cores { cdr >> ros_message.cpu_cores; } // Member: cpu_combined { cdr >> ros_message.cpu_combined; } // Member: gpu_cores { cdr >> ros_message.gpu_cores; } // Member: gpu_combined { cdr >> ros_message.gpu_combined; } // Member: temperature_board cdr >> ros_message.temperature_board; // Member: temperature_core { cdr >> ros_message.temperature_core; } // Member: fan_speed { cdr >> ros_message.fan_speed; } // Member: ram_usage cdr >> ros_message.ram_usage; // Member: ram_total cdr >> ros_message.ram_total; // Member: storage_type { cdr >> ros_message.storage_type; } // Member: storage_usage { cdr >> ros_message.storage_usage; } // Member: storage_total { cdr >> ros_message.storage_total; } // Member: link_type { cdr >> ros_message.link_type; } // Member: link_tx_rate { cdr >> ros_message.link_tx_rate; } // Member: link_rx_rate { cdr >> ros_message.link_rx_rate; } // Member: link_tx_max { cdr >> ros_message.link_tx_max; } // Member: link_rx_max { cdr >> ros_message.link_rx_max; } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::OnboardComputerStatus & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: uptime { size_t item_size = sizeof(ros_message.uptime); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: type { size_t item_size = sizeof(ros_message.type); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cpu_cores { size_t array_size = 8; size_t item_size = sizeof(ros_message.cpu_cores[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cpu_combined { size_t array_size = 10; size_t item_size = sizeof(ros_message.cpu_combined[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gpu_cores { size_t array_size = 4; size_t item_size = sizeof(ros_message.gpu_cores[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gpu_combined { size_t array_size = 10; size_t item_size = sizeof(ros_message.gpu_combined[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: temperature_board { size_t item_size = sizeof(ros_message.temperature_board); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: temperature_core { size_t array_size = 8; size_t item_size = sizeof(ros_message.temperature_core[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: fan_speed { size_t array_size = 4; size_t item_size = sizeof(ros_message.fan_speed[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: ram_usage { size_t item_size = sizeof(ros_message.ram_usage); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: ram_total { size_t item_size = sizeof(ros_message.ram_total); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: storage_type { size_t array_size = 4; size_t item_size = sizeof(ros_message.storage_type[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: storage_usage { size_t array_size = 4; size_t item_size = sizeof(ros_message.storage_usage[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: storage_total { size_t array_size = 4; size_t item_size = sizeof(ros_message.storage_total[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: link_type { size_t array_size = 6; size_t item_size = sizeof(ros_message.link_type[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: link_tx_rate { size_t array_size = 6; size_t item_size = sizeof(ros_message.link_tx_rate[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: link_rx_rate { size_t array_size = 6; size_t item_size = sizeof(ros_message.link_rx_rate[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: link_tx_max { size_t array_size = 6; size_t item_size = sizeof(ros_message.link_tx_max[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: link_rx_max { size_t array_size = 6; size_t item_size = sizeof(ros_message.link_rx_max[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_OnboardComputerStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: uptime { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: type { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: cpu_cores { size_t array_size = 8; current_alignment += array_size * sizeof(uint8_t); } // Member: cpu_combined { size_t array_size = 10; current_alignment += array_size * sizeof(uint8_t); } // Member: gpu_cores { size_t array_size = 4; current_alignment += array_size * sizeof(uint8_t); } // Member: gpu_combined { size_t array_size = 10; current_alignment += array_size * sizeof(uint8_t); } // Member: temperature_board { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: temperature_core { size_t array_size = 8; current_alignment += array_size * sizeof(uint8_t); } // Member: fan_speed { size_t array_size = 4; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: ram_usage { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: ram_total { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: storage_type { size_t array_size = 4; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: storage_usage { size_t array_size = 4; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: storage_total { size_t array_size = 4; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: link_type { size_t array_size = 6; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: link_tx_rate { size_t array_size = 6; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: link_rx_rate { size_t array_size = 6; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: link_tx_max { size_t array_size = 6; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: link_rx_max { size_t array_size = 6; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static bool _OnboardComputerStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::OnboardComputerStatus *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _OnboardComputerStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::OnboardComputerStatus *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _OnboardComputerStatus__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::OnboardComputerStatus *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _OnboardComputerStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_OnboardComputerStatus(full_bounded, 0); } static message_type_support_callbacks_t _OnboardComputerStatus__callbacks = { "px4_msgs::msg", "OnboardComputerStatus", _OnboardComputerStatus__cdr_serialize, _OnboardComputerStatus__cdr_deserialize, _OnboardComputerStatus__get_serialized_size, _OnboardComputerStatus__max_serialized_size }; static rosidl_message_type_support_t _OnboardComputerStatus__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_OnboardComputerStatus__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::OnboardComputerStatus>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_OnboardComputerStatus__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, OnboardComputerStatus)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_OnboardComputerStatus__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_imu_status__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleImuStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_imu_status__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/vehicle_imu_status__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::VehicleImuStatus & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: accel_device_id cdr << ros_message.accel_device_id; // Member: gyro_device_id cdr << ros_message.gyro_device_id; // Member: accel_clipping { cdr << ros_message.accel_clipping; } // Member: accel_error_count cdr << ros_message.accel_error_count; // Member: gyro_error_count cdr << ros_message.gyro_error_count; // Member: accel_rate_hz cdr << ros_message.accel_rate_hz; // Member: gyro_rate_hz cdr << ros_message.gyro_rate_hz; // Member: accel_raw_rate_hz cdr << ros_message.accel_raw_rate_hz; // Member: gyro_raw_rate_hz cdr << ros_message.gyro_raw_rate_hz; // Member: accel_vibration_metric cdr << ros_message.accel_vibration_metric; // Member: gyro_vibration_metric cdr << ros_message.gyro_vibration_metric; // Member: gyro_coning_vibration cdr << ros_message.gyro_coning_vibration; // Member: mean_accel { cdr << ros_message.mean_accel; } // Member: mean_gyro { cdr << ros_message.mean_gyro; } // Member: temperature_accel cdr << ros_message.temperature_accel; // Member: temperature_gyro cdr << ros_message.temperature_gyro; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::VehicleImuStatus & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: accel_device_id cdr >> ros_message.accel_device_id; // Member: gyro_device_id cdr >> ros_message.gyro_device_id; // Member: accel_clipping { cdr >> ros_message.accel_clipping; } // Member: accel_error_count cdr >> ros_message.accel_error_count; // Member: gyro_error_count cdr >> ros_message.gyro_error_count; // Member: accel_rate_hz cdr >> ros_message.accel_rate_hz; // Member: gyro_rate_hz cdr >> ros_message.gyro_rate_hz; // Member: accel_raw_rate_hz cdr >> ros_message.accel_raw_rate_hz; // Member: gyro_raw_rate_hz cdr >> ros_message.gyro_raw_rate_hz; // Member: accel_vibration_metric cdr >> ros_message.accel_vibration_metric; // Member: gyro_vibration_metric cdr >> ros_message.gyro_vibration_metric; // Member: gyro_coning_vibration cdr >> ros_message.gyro_coning_vibration; // Member: mean_accel { cdr >> ros_message.mean_accel; } // Member: mean_gyro { cdr >> ros_message.mean_gyro; } // Member: temperature_accel cdr >> ros_message.temperature_accel; // Member: temperature_gyro cdr >> ros_message.temperature_gyro; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::VehicleImuStatus & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: accel_device_id { size_t item_size = sizeof(ros_message.accel_device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gyro_device_id { size_t item_size = sizeof(ros_message.gyro_device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: accel_clipping { size_t array_size = 3; size_t item_size = sizeof(ros_message.accel_clipping[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: accel_error_count { size_t item_size = sizeof(ros_message.accel_error_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gyro_error_count { size_t item_size = sizeof(ros_message.gyro_error_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: accel_rate_hz { size_t item_size = sizeof(ros_message.accel_rate_hz); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gyro_rate_hz { size_t item_size = sizeof(ros_message.gyro_rate_hz); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: accel_raw_rate_hz { size_t item_size = sizeof(ros_message.accel_raw_rate_hz); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gyro_raw_rate_hz { size_t item_size = sizeof(ros_message.gyro_raw_rate_hz); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: accel_vibration_metric { size_t item_size = sizeof(ros_message.accel_vibration_metric); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gyro_vibration_metric { size_t item_size = sizeof(ros_message.gyro_vibration_metric); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gyro_coning_vibration { size_t item_size = sizeof(ros_message.gyro_coning_vibration); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: mean_accel { size_t array_size = 3; size_t item_size = sizeof(ros_message.mean_accel[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: mean_gyro { size_t array_size = 3; size_t item_size = sizeof(ros_message.mean_gyro[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: temperature_accel { size_t item_size = sizeof(ros_message.temperature_accel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: temperature_gyro { size_t item_size = sizeof(ros_message.temperature_gyro); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_VehicleImuStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: accel_device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: gyro_device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: accel_clipping { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: accel_error_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: gyro_error_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: accel_rate_hz { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: gyro_rate_hz { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: accel_raw_rate_hz { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: gyro_raw_rate_hz { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: accel_vibration_metric { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: gyro_vibration_metric { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: gyro_coning_vibration { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: mean_accel { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: mean_gyro { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: temperature_accel { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: temperature_gyro { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static bool _VehicleImuStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::VehicleImuStatus *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _VehicleImuStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::VehicleImuStatus *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _VehicleImuStatus__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::VehicleImuStatus *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _VehicleImuStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_VehicleImuStatus(full_bounded, 0); } static message_type_support_callbacks_t _VehicleImuStatus__callbacks = { "px4_msgs::msg", "VehicleImuStatus", _VehicleImuStatus__cdr_serialize, _VehicleImuStatus__cdr_deserialize, _VehicleImuStatus__get_serialized_size, _VehicleImuStatus__max_serialized_size }; static rosidl_message_type_support_t _VehicleImuStatus__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_VehicleImuStatus__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleImuStatus>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_VehicleImuStatus__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, VehicleImuStatus)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_VehicleImuStatus__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/radio_status__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/RadioStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/radio_status__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__RadioStatus__init(px4_msgs__msg__RadioStatus * msg) { if (!msg) { return false; } // timestamp // rssi // remote_rssi // txbuf // noise // remote_noise // rxerrors // fix return true; } void px4_msgs__msg__RadioStatus__fini(px4_msgs__msg__RadioStatus * msg) { if (!msg) { return; } // timestamp // rssi // remote_rssi // txbuf // noise // remote_noise // rxerrors // fix } px4_msgs__msg__RadioStatus * px4_msgs__msg__RadioStatus__create() { px4_msgs__msg__RadioStatus * msg = (px4_msgs__msg__RadioStatus *)malloc(sizeof(px4_msgs__msg__RadioStatus)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__RadioStatus)); bool success = px4_msgs__msg__RadioStatus__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__RadioStatus__destroy(px4_msgs__msg__RadioStatus * msg) { if (msg) { px4_msgs__msg__RadioStatus__fini(msg); } free(msg); } bool px4_msgs__msg__RadioStatus__Sequence__init(px4_msgs__msg__RadioStatus__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__RadioStatus * data = NULL; if (size) { data = (px4_msgs__msg__RadioStatus *)calloc(size, sizeof(px4_msgs__msg__RadioStatus)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__RadioStatus__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__RadioStatus__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__RadioStatus__Sequence__fini(px4_msgs__msg__RadioStatus__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__RadioStatus__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__RadioStatus__Sequence * px4_msgs__msg__RadioStatus__Sequence__create(size_t size) { px4_msgs__msg__RadioStatus__Sequence * array = (px4_msgs__msg__RadioStatus__Sequence *)malloc(sizeof(px4_msgs__msg__RadioStatus__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__RadioStatus__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__RadioStatus__Sequence__destroy(px4_msgs__msg__RadioStatus__Sequence * array) { if (array) { px4_msgs__msg__RadioStatus__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_attitude_setpoint.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ATTITUDE_SETPOINT_HPP_ #define PX4_MSGS__MSG__VEHICLE_ATTITUDE_SETPOINT_HPP_ #include "px4_msgs/msg/vehicle_attitude_setpoint__struct.hpp" #include "px4_msgs/msg/vehicle_attitude_setpoint__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_ATTITUDE_SETPOINT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/tecs_status__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/TecsStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TECS_STATUS__STRUCT_HPP_ #define PX4_MSGS__MSG__TECS_STATUS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__TecsStatus __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__TecsStatus __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct TecsStatus_ { using Type = TecsStatus_<ContainerAllocator>; explicit TecsStatus_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->altitude_sp = 0.0f; this->altitude_filtered = 0.0f; this->height_rate_setpoint = 0.0f; this->height_rate = 0.0f; this->equivalent_airspeed_sp = 0.0f; this->true_airspeed_sp = 0.0f; this->true_airspeed_filtered = 0.0f; this->true_airspeed_derivative_sp = 0.0f; this->true_airspeed_derivative = 0.0f; this->total_energy_error = 0.0f; this->energy_distribution_error = 0.0f; this->total_energy_rate_error = 0.0f; this->energy_distribution_rate_error = 0.0f; this->total_energy = 0.0f; this->total_energy_rate = 0.0f; this->total_energy_balance = 0.0f; this->total_energy_balance_rate = 0.0f; this->total_energy_sp = 0.0f; this->total_energy_rate_sp = 0.0f; this->total_energy_balance_sp = 0.0f; this->total_energy_balance_rate_sp = 0.0f; this->throttle_integ = 0.0f; this->pitch_integ = 0.0f; this->throttle_sp = 0.0f; this->mode = 0; } } explicit TecsStatus_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->altitude_sp = 0.0f; this->altitude_filtered = 0.0f; this->height_rate_setpoint = 0.0f; this->height_rate = 0.0f; this->equivalent_airspeed_sp = 0.0f; this->true_airspeed_sp = 0.0f; this->true_airspeed_filtered = 0.0f; this->true_airspeed_derivative_sp = 0.0f; this->true_airspeed_derivative = 0.0f; this->total_energy_error = 0.0f; this->energy_distribution_error = 0.0f; this->total_energy_rate_error = 0.0f; this->energy_distribution_rate_error = 0.0f; this->total_energy = 0.0f; this->total_energy_rate = 0.0f; this->total_energy_balance = 0.0f; this->total_energy_balance_rate = 0.0f; this->total_energy_sp = 0.0f; this->total_energy_rate_sp = 0.0f; this->total_energy_balance_sp = 0.0f; this->total_energy_balance_rate_sp = 0.0f; this->throttle_integ = 0.0f; this->pitch_integ = 0.0f; this->throttle_sp = 0.0f; this->mode = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _altitude_sp_type = float; _altitude_sp_type altitude_sp; using _altitude_filtered_type = float; _altitude_filtered_type altitude_filtered; using _height_rate_setpoint_type = float; _height_rate_setpoint_type height_rate_setpoint; using _height_rate_type = float; _height_rate_type height_rate; using _equivalent_airspeed_sp_type = float; _equivalent_airspeed_sp_type equivalent_airspeed_sp; using _true_airspeed_sp_type = float; _true_airspeed_sp_type true_airspeed_sp; using _true_airspeed_filtered_type = float; _true_airspeed_filtered_type true_airspeed_filtered; using _true_airspeed_derivative_sp_type = float; _true_airspeed_derivative_sp_type true_airspeed_derivative_sp; using _true_airspeed_derivative_type = float; _true_airspeed_derivative_type true_airspeed_derivative; using _total_energy_error_type = float; _total_energy_error_type total_energy_error; using _energy_distribution_error_type = float; _energy_distribution_error_type energy_distribution_error; using _total_energy_rate_error_type = float; _total_energy_rate_error_type total_energy_rate_error; using _energy_distribution_rate_error_type = float; _energy_distribution_rate_error_type energy_distribution_rate_error; using _total_energy_type = float; _total_energy_type total_energy; using _total_energy_rate_type = float; _total_energy_rate_type total_energy_rate; using _total_energy_balance_type = float; _total_energy_balance_type total_energy_balance; using _total_energy_balance_rate_type = float; _total_energy_balance_rate_type total_energy_balance_rate; using _total_energy_sp_type = float; _total_energy_sp_type total_energy_sp; using _total_energy_rate_sp_type = float; _total_energy_rate_sp_type total_energy_rate_sp; using _total_energy_balance_sp_type = float; _total_energy_balance_sp_type total_energy_balance_sp; using _total_energy_balance_rate_sp_type = float; _total_energy_balance_rate_sp_type total_energy_balance_rate_sp; using _throttle_integ_type = float; _throttle_integ_type throttle_integ; using _pitch_integ_type = float; _pitch_integ_type pitch_integ; using _throttle_sp_type = float; _throttle_sp_type throttle_sp; using _mode_type = uint8_t; _mode_type mode; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__altitude_sp( const float & _arg) { this->altitude_sp = _arg; return *this; } Type & set__altitude_filtered( const float & _arg) { this->altitude_filtered = _arg; return *this; } Type & set__height_rate_setpoint( const float & _arg) { this->height_rate_setpoint = _arg; return *this; } Type & set__height_rate( const float & _arg) { this->height_rate = _arg; return *this; } Type & set__equivalent_airspeed_sp( const float & _arg) { this->equivalent_airspeed_sp = _arg; return *this; } Type & set__true_airspeed_sp( const float & _arg) { this->true_airspeed_sp = _arg; return *this; } Type & set__true_airspeed_filtered( const float & _arg) { this->true_airspeed_filtered = _arg; return *this; } Type & set__true_airspeed_derivative_sp( const float & _arg) { this->true_airspeed_derivative_sp = _arg; return *this; } Type & set__true_airspeed_derivative( const float & _arg) { this->true_airspeed_derivative = _arg; return *this; } Type & set__total_energy_error( const float & _arg) { this->total_energy_error = _arg; return *this; } Type & set__energy_distribution_error( const float & _arg) { this->energy_distribution_error = _arg; return *this; } Type & set__total_energy_rate_error( const float & _arg) { this->total_energy_rate_error = _arg; return *this; } Type & set__energy_distribution_rate_error( const float & _arg) { this->energy_distribution_rate_error = _arg; return *this; } Type & set__total_energy( const float & _arg) { this->total_energy = _arg; return *this; } Type & set__total_energy_rate( const float & _arg) { this->total_energy_rate = _arg; return *this; } Type & set__total_energy_balance( const float & _arg) { this->total_energy_balance = _arg; return *this; } Type & set__total_energy_balance_rate( const float & _arg) { this->total_energy_balance_rate = _arg; return *this; } Type & set__total_energy_sp( const float & _arg) { this->total_energy_sp = _arg; return *this; } Type & set__total_energy_rate_sp( const float & _arg) { this->total_energy_rate_sp = _arg; return *this; } Type & set__total_energy_balance_sp( const float & _arg) { this->total_energy_balance_sp = _arg; return *this; } Type & set__total_energy_balance_rate_sp( const float & _arg) { this->total_energy_balance_rate_sp = _arg; return *this; } Type & set__throttle_integ( const float & _arg) { this->throttle_integ = _arg; return *this; } Type & set__pitch_integ( const float & _arg) { this->pitch_integ = _arg; return *this; } Type & set__throttle_sp( const float & _arg) { this->throttle_sp = _arg; return *this; } Type & set__mode( const uint8_t & _arg) { this->mode = _arg; return *this; } // constant declarations static constexpr uint8_t TECS_MODE_NORMAL = 0u; static constexpr uint8_t TECS_MODE_UNDERSPEED = 1u; static constexpr uint8_t TECS_MODE_TAKEOFF = 2u; static constexpr uint8_t TECS_MODE_LAND = 3u; static constexpr uint8_t TECS_MODE_LAND_THROTTLELIM = 4u; static constexpr uint8_t TECS_MODE_BAD_DESCENT = 5u; static constexpr uint8_t TECS_MODE_CLIMBOUT = 6u; // pointer types using RawPtr = px4_msgs::msg::TecsStatus_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::TecsStatus_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::TecsStatus_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::TecsStatus_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::TecsStatus_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::TecsStatus_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::TecsStatus_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::TecsStatus_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::TecsStatus_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::TecsStatus_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__TecsStatus std::shared_ptr<px4_msgs::msg::TecsStatus_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__TecsStatus std::shared_ptr<px4_msgs::msg::TecsStatus_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const TecsStatus_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->altitude_sp != other.altitude_sp) { return false; } if (this->altitude_filtered != other.altitude_filtered) { return false; } if (this->height_rate_setpoint != other.height_rate_setpoint) { return false; } if (this->height_rate != other.height_rate) { return false; } if (this->equivalent_airspeed_sp != other.equivalent_airspeed_sp) { return false; } if (this->true_airspeed_sp != other.true_airspeed_sp) { return false; } if (this->true_airspeed_filtered != other.true_airspeed_filtered) { return false; } if (this->true_airspeed_derivative_sp != other.true_airspeed_derivative_sp) { return false; } if (this->true_airspeed_derivative != other.true_airspeed_derivative) { return false; } if (this->total_energy_error != other.total_energy_error) { return false; } if (this->energy_distribution_error != other.energy_distribution_error) { return false; } if (this->total_energy_rate_error != other.total_energy_rate_error) { return false; } if (this->energy_distribution_rate_error != other.energy_distribution_rate_error) { return false; } if (this->total_energy != other.total_energy) { return false; } if (this->total_energy_rate != other.total_energy_rate) { return false; } if (this->total_energy_balance != other.total_energy_balance) { return false; } if (this->total_energy_balance_rate != other.total_energy_balance_rate) { return false; } if (this->total_energy_sp != other.total_energy_sp) { return false; } if (this->total_energy_rate_sp != other.total_energy_rate_sp) { return false; } if (this->total_energy_balance_sp != other.total_energy_balance_sp) { return false; } if (this->total_energy_balance_rate_sp != other.total_energy_balance_rate_sp) { return false; } if (this->throttle_integ != other.throttle_integ) { return false; } if (this->pitch_integ != other.pitch_integ) { return false; } if (this->throttle_sp != other.throttle_sp) { return false; } if (this->mode != other.mode) { return false; } return true; } bool operator!=(const TecsStatus_ & other) const { return !this->operator==(other); } }; // struct TecsStatus_ // alias to use template instance with default allocator using TecsStatus = px4_msgs::msg::TecsStatus_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t TecsStatus_<ContainerAllocator>::TECS_MODE_NORMAL; template<typename ContainerAllocator> constexpr uint8_t TecsStatus_<ContainerAllocator>::TECS_MODE_UNDERSPEED; template<typename ContainerAllocator> constexpr uint8_t TecsStatus_<ContainerAllocator>::TECS_MODE_TAKEOFF; template<typename ContainerAllocator> constexpr uint8_t TecsStatus_<ContainerAllocator>::TECS_MODE_LAND; template<typename ContainerAllocator> constexpr uint8_t TecsStatus_<ContainerAllocator>::TECS_MODE_LAND_THROTTLELIM; template<typename ContainerAllocator> constexpr uint8_t TecsStatus_<ContainerAllocator>::TECS_MODE_BAD_DESCENT; template<typename ContainerAllocator> constexpr uint8_t TecsStatus_<ContainerAllocator>::TECS_MODE_CLIMBOUT; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__TECS_STATUS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/irlock_report__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/IrlockReport.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/irlock_report__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/irlock_report__functions.h" #include "px4_msgs/msg/irlock_report__struct.h" #ifdef __cplusplus extern "C" { #endif void IrlockReport__rosidl_typesupport_introspection_c__IrlockReport_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__IrlockReport__init(message_memory); } void IrlockReport__rosidl_typesupport_introspection_c__IrlockReport_fini_function(void * message_memory) { px4_msgs__msg__IrlockReport__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember IrlockReport__rosidl_typesupport_introspection_c__IrlockReport_message_member_array[6] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__IrlockReport, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "signature", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__IrlockReport, signature), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "pos_x", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__IrlockReport, pos_x), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "pos_y", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__IrlockReport, pos_y), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "size_x", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__IrlockReport, size_x), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "size_y", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__IrlockReport, size_y), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers IrlockReport__rosidl_typesupport_introspection_c__IrlockReport_message_members = { "px4_msgs__msg", // message namespace "IrlockReport", // message name 6, // number of fields sizeof(px4_msgs__msg__IrlockReport), IrlockReport__rosidl_typesupport_introspection_c__IrlockReport_message_member_array, // message members IrlockReport__rosidl_typesupport_introspection_c__IrlockReport_init_function, // function to initialize message memory (memory has to be allocated) IrlockReport__rosidl_typesupport_introspection_c__IrlockReport_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t IrlockReport__rosidl_typesupport_introspection_c__IrlockReport_message_type_support_handle = { 0, &IrlockReport__rosidl_typesupport_introspection_c__IrlockReport_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, IrlockReport)() { if (!IrlockReport__rosidl_typesupport_introspection_c__IrlockReport_message_type_support_handle.typesupport_identifier) { IrlockReport__rosidl_typesupport_introspection_c__IrlockReport_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &IrlockReport__rosidl_typesupport_introspection_c__IrlockReport_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/fw_virtual_attitude_setpoint__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/FwVirtualAttitudeSetpoint.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/fw_virtual_attitude_setpoint__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__FwVirtualAttitudeSetpoint__init(px4_msgs__msg__FwVirtualAttitudeSetpoint * msg) { if (!msg) { return false; } // timestamp // roll_body // pitch_body // yaw_body // yaw_sp_move_rate // q_d // thrust_body // roll_reset_integral // pitch_reset_integral // yaw_reset_integral // fw_control_yaw // apply_flaps return true; } void px4_msgs__msg__FwVirtualAttitudeSetpoint__fini(px4_msgs__msg__FwVirtualAttitudeSetpoint * msg) { if (!msg) { return; } // timestamp // roll_body // pitch_body // yaw_body // yaw_sp_move_rate // q_d // thrust_body // roll_reset_integral // pitch_reset_integral // yaw_reset_integral // fw_control_yaw // apply_flaps } px4_msgs__msg__FwVirtualAttitudeSetpoint * px4_msgs__msg__FwVirtualAttitudeSetpoint__create() { px4_msgs__msg__FwVirtualAttitudeSetpoint * msg = (px4_msgs__msg__FwVirtualAttitudeSetpoint *)malloc(sizeof(px4_msgs__msg__FwVirtualAttitudeSetpoint)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__FwVirtualAttitudeSetpoint)); bool success = px4_msgs__msg__FwVirtualAttitudeSetpoint__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__FwVirtualAttitudeSetpoint__destroy(px4_msgs__msg__FwVirtualAttitudeSetpoint * msg) { if (msg) { px4_msgs__msg__FwVirtualAttitudeSetpoint__fini(msg); } free(msg); } bool px4_msgs__msg__FwVirtualAttitudeSetpoint__Sequence__init(px4_msgs__msg__FwVirtualAttitudeSetpoint__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__FwVirtualAttitudeSetpoint * data = NULL; if (size) { data = (px4_msgs__msg__FwVirtualAttitudeSetpoint *)calloc(size, sizeof(px4_msgs__msg__FwVirtualAttitudeSetpoint)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__FwVirtualAttitudeSetpoint__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__FwVirtualAttitudeSetpoint__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__FwVirtualAttitudeSetpoint__Sequence__fini(px4_msgs__msg__FwVirtualAttitudeSetpoint__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__FwVirtualAttitudeSetpoint__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__FwVirtualAttitudeSetpoint__Sequence * px4_msgs__msg__FwVirtualAttitudeSetpoint__Sequence__create(size_t size) { px4_msgs__msg__FwVirtualAttitudeSetpoint__Sequence * array = (px4_msgs__msg__FwVirtualAttitudeSetpoint__Sequence *)malloc(sizeof(px4_msgs__msg__FwVirtualAttitudeSetpoint__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__FwVirtualAttitudeSetpoint__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__FwVirtualAttitudeSetpoint__Sequence__destroy(px4_msgs__msg__FwVirtualAttitudeSetpoint__Sequence * array) { if (array) { px4_msgs__msg__FwVirtualAttitudeSetpoint__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/transponder_report__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/TransponderReport.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/transponder_report__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__TransponderReport__init(px4_msgs__msg__TransponderReport * msg) { if (!msg) { return false; } // timestamp // icao_address // lat // lon // altitude_type // altitude // heading // hor_velocity // ver_velocity // callsign // emitter_type // tslc // flags // squawk // uas_id return true; } void px4_msgs__msg__TransponderReport__fini(px4_msgs__msg__TransponderReport * msg) { if (!msg) { return; } // timestamp // icao_address // lat // lon // altitude_type // altitude // heading // hor_velocity // ver_velocity // callsign // emitter_type // tslc // flags // squawk // uas_id } px4_msgs__msg__TransponderReport * px4_msgs__msg__TransponderReport__create() { px4_msgs__msg__TransponderReport * msg = (px4_msgs__msg__TransponderReport *)malloc(sizeof(px4_msgs__msg__TransponderReport)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__TransponderReport)); bool success = px4_msgs__msg__TransponderReport__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__TransponderReport__destroy(px4_msgs__msg__TransponderReport * msg) { if (msg) { px4_msgs__msg__TransponderReport__fini(msg); } free(msg); } bool px4_msgs__msg__TransponderReport__Sequence__init(px4_msgs__msg__TransponderReport__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__TransponderReport * data = NULL; if (size) { data = (px4_msgs__msg__TransponderReport *)calloc(size, sizeof(px4_msgs__msg__TransponderReport)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__TransponderReport__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__TransponderReport__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__TransponderReport__Sequence__fini(px4_msgs__msg__TransponderReport__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__TransponderReport__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__TransponderReport__Sequence * px4_msgs__msg__TransponderReport__Sequence__create(size_t size) { px4_msgs__msg__TransponderReport__Sequence * array = (px4_msgs__msg__TransponderReport__Sequence *)malloc(sizeof(px4_msgs__msg__TransponderReport__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__TransponderReport__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__TransponderReport__Sequence__destroy(px4_msgs__msg__TransponderReport__Sequence * array) { if (array) { px4_msgs__msg__TransponderReport__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_acceleration.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ACCELERATION_HPP_ #define PX4_MSGS__MSG__VEHICLE_ACCELERATION_HPP_ #include "px4_msgs/msg/vehicle_acceleration__struct.hpp" #include "px4_msgs/msg/vehicle_acceleration__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_ACCELERATION_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_mocap_odometry__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleMocapOdometry.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_mocap_odometry__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__VehicleMocapOdometry__init(px4_msgs__msg__VehicleMocapOdometry * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // local_frame // x // y // z // q // q_offset // pose_covariance // velocity_frame // vx // vy // vz // rollspeed // pitchspeed // yawspeed // velocity_covariance return true; } void px4_msgs__msg__VehicleMocapOdometry__fini(px4_msgs__msg__VehicleMocapOdometry * msg) { if (!msg) { return; } // timestamp // timestamp_sample // local_frame // x // y // z // q // q_offset // pose_covariance // velocity_frame // vx // vy // vz // rollspeed // pitchspeed // yawspeed // velocity_covariance } px4_msgs__msg__VehicleMocapOdometry * px4_msgs__msg__VehicleMocapOdometry__create() { px4_msgs__msg__VehicleMocapOdometry * msg = (px4_msgs__msg__VehicleMocapOdometry *)malloc(sizeof(px4_msgs__msg__VehicleMocapOdometry)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleMocapOdometry)); bool success = px4_msgs__msg__VehicleMocapOdometry__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleMocapOdometry__destroy(px4_msgs__msg__VehicleMocapOdometry * msg) { if (msg) { px4_msgs__msg__VehicleMocapOdometry__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleMocapOdometry__Sequence__init(px4_msgs__msg__VehicleMocapOdometry__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleMocapOdometry * data = NULL; if (size) { data = (px4_msgs__msg__VehicleMocapOdometry *)calloc(size, sizeof(px4_msgs__msg__VehicleMocapOdometry)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleMocapOdometry__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleMocapOdometry__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleMocapOdometry__Sequence__fini(px4_msgs__msg__VehicleMocapOdometry__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleMocapOdometry__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleMocapOdometry__Sequence * px4_msgs__msg__VehicleMocapOdometry__Sequence__create(size_t size) { px4_msgs__msg__VehicleMocapOdometry__Sequence * array = (px4_msgs__msg__VehicleMocapOdometry__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleMocapOdometry__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleMocapOdometry__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleMocapOdometry__Sequence__destroy(px4_msgs__msg__VehicleMocapOdometry__Sequence * array) { if (array) { px4_msgs__msg__VehicleMocapOdometry__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/telemetry_status__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/TelemetryStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/telemetry_status__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/telemetry_status__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::TelemetryStatus & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: type cdr << ros_message.type; // Member: mode cdr << ros_message.mode; // Member: flow_control cdr << (ros_message.flow_control ? true : false); // Member: forwarding cdr << (ros_message.forwarding ? true : false); // Member: mavlink_v2 cdr << (ros_message.mavlink_v2 ? true : false); // Member: ftp cdr << (ros_message.ftp ? true : false); // Member: streams cdr << ros_message.streams; // Member: data_rate cdr << ros_message.data_rate; // Member: rate_multiplier cdr << ros_message.rate_multiplier; // Member: tx_rate_avg cdr << ros_message.tx_rate_avg; // Member: tx_error_rate_avg cdr << ros_message.tx_error_rate_avg; // Member: tx_message_count cdr << ros_message.tx_message_count; // Member: tx_buffer_overruns cdr << ros_message.tx_buffer_overruns; // Member: rx_rate_avg cdr << ros_message.rx_rate_avg; // Member: rx_message_count cdr << ros_message.rx_message_count; // Member: rx_message_count_supported cdr << ros_message.rx_message_count_supported; // Member: rx_message_lost_count cdr << ros_message.rx_message_lost_count; // Member: rx_buffer_overruns cdr << ros_message.rx_buffer_overruns; // Member: rx_parse_errors cdr << ros_message.rx_parse_errors; // Member: rx_packet_drop_count cdr << ros_message.rx_packet_drop_count; // Member: rx_message_lost_rate cdr << ros_message.rx_message_lost_rate; // Member: heartbeat_type_antenna_tracker cdr << (ros_message.heartbeat_type_antenna_tracker ? true : false); // Member: heartbeat_type_gcs cdr << (ros_message.heartbeat_type_gcs ? true : false); // Member: heartbeat_type_onboard_controller cdr << (ros_message.heartbeat_type_onboard_controller ? true : false); // Member: heartbeat_type_gimbal cdr << (ros_message.heartbeat_type_gimbal ? true : false); // Member: heartbeat_type_adsb cdr << (ros_message.heartbeat_type_adsb ? true : false); // Member: heartbeat_type_camera cdr << (ros_message.heartbeat_type_camera ? true : false); // Member: heartbeat_component_telemetry_radio cdr << (ros_message.heartbeat_component_telemetry_radio ? true : false); // Member: heartbeat_component_log cdr << (ros_message.heartbeat_component_log ? true : false); // Member: heartbeat_component_osd cdr << (ros_message.heartbeat_component_osd ? true : false); // Member: heartbeat_component_obstacle_avoidance cdr << (ros_message.heartbeat_component_obstacle_avoidance ? true : false); // Member: heartbeat_component_vio cdr << (ros_message.heartbeat_component_vio ? true : false); // Member: heartbeat_component_pairing_manager cdr << (ros_message.heartbeat_component_pairing_manager ? true : false); // Member: heartbeat_component_udp_bridge cdr << (ros_message.heartbeat_component_udp_bridge ? true : false); // Member: heartbeat_component_uart_bridge cdr << (ros_message.heartbeat_component_uart_bridge ? true : false); // Member: avoidance_system_healthy cdr << (ros_message.avoidance_system_healthy ? true : false); return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::TelemetryStatus & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: type cdr >> ros_message.type; // Member: mode cdr >> ros_message.mode; // Member: flow_control { uint8_t tmp; cdr >> tmp; ros_message.flow_control = tmp ? true : false; } // Member: forwarding { uint8_t tmp; cdr >> tmp; ros_message.forwarding = tmp ? true : false; } // Member: mavlink_v2 { uint8_t tmp; cdr >> tmp; ros_message.mavlink_v2 = tmp ? true : false; } // Member: ftp { uint8_t tmp; cdr >> tmp; ros_message.ftp = tmp ? true : false; } // Member: streams cdr >> ros_message.streams; // Member: data_rate cdr >> ros_message.data_rate; // Member: rate_multiplier cdr >> ros_message.rate_multiplier; // Member: tx_rate_avg cdr >> ros_message.tx_rate_avg; // Member: tx_error_rate_avg cdr >> ros_message.tx_error_rate_avg; // Member: tx_message_count cdr >> ros_message.tx_message_count; // Member: tx_buffer_overruns cdr >> ros_message.tx_buffer_overruns; // Member: rx_rate_avg cdr >> ros_message.rx_rate_avg; // Member: rx_message_count cdr >> ros_message.rx_message_count; // Member: rx_message_count_supported cdr >> ros_message.rx_message_count_supported; // Member: rx_message_lost_count cdr >> ros_message.rx_message_lost_count; // Member: rx_buffer_overruns cdr >> ros_message.rx_buffer_overruns; // Member: rx_parse_errors cdr >> ros_message.rx_parse_errors; // Member: rx_packet_drop_count cdr >> ros_message.rx_packet_drop_count; // Member: rx_message_lost_rate cdr >> ros_message.rx_message_lost_rate; // Member: heartbeat_type_antenna_tracker { uint8_t tmp; cdr >> tmp; ros_message.heartbeat_type_antenna_tracker = tmp ? true : false; } // Member: heartbeat_type_gcs { uint8_t tmp; cdr >> tmp; ros_message.heartbeat_type_gcs = tmp ? true : false; } // Member: heartbeat_type_onboard_controller { uint8_t tmp; cdr >> tmp; ros_message.heartbeat_type_onboard_controller = tmp ? true : false; } // Member: heartbeat_type_gimbal { uint8_t tmp; cdr >> tmp; ros_message.heartbeat_type_gimbal = tmp ? true : false; } // Member: heartbeat_type_adsb { uint8_t tmp; cdr >> tmp; ros_message.heartbeat_type_adsb = tmp ? true : false; } // Member: heartbeat_type_camera { uint8_t tmp; cdr >> tmp; ros_message.heartbeat_type_camera = tmp ? true : false; } // Member: heartbeat_component_telemetry_radio { uint8_t tmp; cdr >> tmp; ros_message.heartbeat_component_telemetry_radio = tmp ? true : false; } // Member: heartbeat_component_log { uint8_t tmp; cdr >> tmp; ros_message.heartbeat_component_log = tmp ? true : false; } // Member: heartbeat_component_osd { uint8_t tmp; cdr >> tmp; ros_message.heartbeat_component_osd = tmp ? true : false; } // Member: heartbeat_component_obstacle_avoidance { uint8_t tmp; cdr >> tmp; ros_message.heartbeat_component_obstacle_avoidance = tmp ? true : false; } // Member: heartbeat_component_vio { uint8_t tmp; cdr >> tmp; ros_message.heartbeat_component_vio = tmp ? true : false; } // Member: heartbeat_component_pairing_manager { uint8_t tmp; cdr >> tmp; ros_message.heartbeat_component_pairing_manager = tmp ? true : false; } // Member: heartbeat_component_udp_bridge { uint8_t tmp; cdr >> tmp; ros_message.heartbeat_component_udp_bridge = tmp ? true : false; } // Member: heartbeat_component_uart_bridge { uint8_t tmp; cdr >> tmp; ros_message.heartbeat_component_uart_bridge = tmp ? true : false; } // Member: avoidance_system_healthy { uint8_t tmp; cdr >> tmp; ros_message.avoidance_system_healthy = tmp ? true : false; } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::TelemetryStatus & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: type { size_t item_size = sizeof(ros_message.type); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: mode { size_t item_size = sizeof(ros_message.mode); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: flow_control { size_t item_size = sizeof(ros_message.flow_control); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: forwarding { size_t item_size = sizeof(ros_message.forwarding); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: mavlink_v2 { size_t item_size = sizeof(ros_message.mavlink_v2); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: ftp { size_t item_size = sizeof(ros_message.ftp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: streams { size_t item_size = sizeof(ros_message.streams); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: data_rate { size_t item_size = sizeof(ros_message.data_rate); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rate_multiplier { size_t item_size = sizeof(ros_message.rate_multiplier); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: tx_rate_avg { size_t item_size = sizeof(ros_message.tx_rate_avg); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: tx_error_rate_avg { size_t item_size = sizeof(ros_message.tx_error_rate_avg); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: tx_message_count { size_t item_size = sizeof(ros_message.tx_message_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: tx_buffer_overruns { size_t item_size = sizeof(ros_message.tx_buffer_overruns); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rx_rate_avg { size_t item_size = sizeof(ros_message.rx_rate_avg); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rx_message_count { size_t item_size = sizeof(ros_message.rx_message_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rx_message_count_supported { size_t item_size = sizeof(ros_message.rx_message_count_supported); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rx_message_lost_count { size_t item_size = sizeof(ros_message.rx_message_lost_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rx_buffer_overruns { size_t item_size = sizeof(ros_message.rx_buffer_overruns); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rx_parse_errors { size_t item_size = sizeof(ros_message.rx_parse_errors); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rx_packet_drop_count { size_t item_size = sizeof(ros_message.rx_packet_drop_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rx_message_lost_rate { size_t item_size = sizeof(ros_message.rx_message_lost_rate); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: heartbeat_type_antenna_tracker { size_t item_size = sizeof(ros_message.heartbeat_type_antenna_tracker); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: heartbeat_type_gcs { size_t item_size = sizeof(ros_message.heartbeat_type_gcs); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: heartbeat_type_onboard_controller { size_t item_size = sizeof(ros_message.heartbeat_type_onboard_controller); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: heartbeat_type_gimbal { size_t item_size = sizeof(ros_message.heartbeat_type_gimbal); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: heartbeat_type_adsb { size_t item_size = sizeof(ros_message.heartbeat_type_adsb); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: heartbeat_type_camera { size_t item_size = sizeof(ros_message.heartbeat_type_camera); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: heartbeat_component_telemetry_radio { size_t item_size = sizeof(ros_message.heartbeat_component_telemetry_radio); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: heartbeat_component_log { size_t item_size = sizeof(ros_message.heartbeat_component_log); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: heartbeat_component_osd { size_t item_size = sizeof(ros_message.heartbeat_component_osd); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: heartbeat_component_obstacle_avoidance { size_t item_size = sizeof(ros_message.heartbeat_component_obstacle_avoidance); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: heartbeat_component_vio { size_t item_size = sizeof(ros_message.heartbeat_component_vio); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: heartbeat_component_pairing_manager { size_t item_size = sizeof(ros_message.heartbeat_component_pairing_manager); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: heartbeat_component_udp_bridge { size_t item_size = sizeof(ros_message.heartbeat_component_udp_bridge); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: heartbeat_component_uart_bridge { size_t item_size = sizeof(ros_message.heartbeat_component_uart_bridge); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: avoidance_system_healthy { size_t item_size = sizeof(ros_message.avoidance_system_healthy); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_TelemetryStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: type { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: mode { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: flow_control { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: forwarding { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: mavlink_v2 { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: ftp { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: streams { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: data_rate { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: rate_multiplier { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: tx_rate_avg { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: tx_error_rate_avg { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: tx_message_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: tx_buffer_overruns { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: rx_rate_avg { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: rx_message_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: rx_message_count_supported { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: rx_message_lost_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: rx_buffer_overruns { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: rx_parse_errors { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: rx_packet_drop_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: rx_message_lost_rate { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: heartbeat_type_antenna_tracker { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: heartbeat_type_gcs { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: heartbeat_type_onboard_controller { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: heartbeat_type_gimbal { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: heartbeat_type_adsb { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: heartbeat_type_camera { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: heartbeat_component_telemetry_radio { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: heartbeat_component_log { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: heartbeat_component_osd { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: heartbeat_component_obstacle_avoidance { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: heartbeat_component_vio { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: heartbeat_component_pairing_manager { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: heartbeat_component_udp_bridge { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: heartbeat_component_uart_bridge { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: avoidance_system_healthy { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _TelemetryStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::TelemetryStatus *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _TelemetryStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::TelemetryStatus *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _TelemetryStatus__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::TelemetryStatus *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _TelemetryStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_TelemetryStatus(full_bounded, 0); } static message_type_support_callbacks_t _TelemetryStatus__callbacks = { "px4_msgs::msg", "TelemetryStatus", _TelemetryStatus__cdr_serialize, _TelemetryStatus__cdr_deserialize, _TelemetryStatus__get_serialized_size, _TelemetryStatus__max_serialized_size }; static rosidl_message_type_support_t _TelemetryStatus__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_TelemetryStatus__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::TelemetryStatus>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_TelemetryStatus__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, TelemetryStatus)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_TelemetryStatus__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_attitude__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/EstimatorAttitude.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/estimator_attitude__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void EstimatorAttitude_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::EstimatorAttitude(_init); } void EstimatorAttitude_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::EstimatorAttitude *>(message_memory); typed_message->~EstimatorAttitude(); } size_t size_function__EstimatorAttitude__q(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__EstimatorAttitude__q(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 4> *>(untyped_member); return &member[index]; } void * get_function__EstimatorAttitude__q(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 4> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorAttitude__delta_q_reset(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__EstimatorAttitude__delta_q_reset(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 4> *>(untyped_member); return &member[index]; } void * get_function__EstimatorAttitude__delta_q_reset(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 4> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember EstimatorAttitude_message_member_array[5] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorAttitude, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorAttitude, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "q", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorAttitude, q), // bytes offset in struct nullptr, // default value size_function__EstimatorAttitude__q, // size() function pointer get_const_function__EstimatorAttitude__q, // get_const(index) function pointer get_function__EstimatorAttitude__q, // get(index) function pointer nullptr // resize(index) function pointer }, { "delta_q_reset", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorAttitude, delta_q_reset), // bytes offset in struct nullptr, // default value size_function__EstimatorAttitude__delta_q_reset, // size() function pointer get_const_function__EstimatorAttitude__delta_q_reset, // get_const(index) function pointer get_function__EstimatorAttitude__delta_q_reset, // get(index) function pointer nullptr // resize(index) function pointer }, { "quat_reset_counter", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorAttitude, quat_reset_counter), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers EstimatorAttitude_message_members = { "px4_msgs::msg", // message namespace "EstimatorAttitude", // message name 5, // number of fields sizeof(px4_msgs::msg::EstimatorAttitude), EstimatorAttitude_message_member_array, // message members EstimatorAttitude_init_function, // function to initialize message memory (memory has to be allocated) EstimatorAttitude_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t EstimatorAttitude_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &EstimatorAttitude_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::EstimatorAttitude>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EstimatorAttitude_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, EstimatorAttitude)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EstimatorAttitude_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_global_position_groundtruth.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleGlobalPositionGroundtruth.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_GLOBAL_POSITION_GROUNDTRUTH_H_ #define PX4_MSGS__MSG__VEHICLE_GLOBAL_POSITION_GROUNDTRUTH_H_ #include "px4_msgs/msg/vehicle_global_position_groundtruth__struct.h" #include "px4_msgs/msg/vehicle_global_position_groundtruth__functions.h" #include "px4_msgs/msg/vehicle_global_position_groundtruth__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_GLOBAL_POSITION_GROUNDTRUTH_H_ <file_sep>/install/px4_ros_com/share/px4_ros_com/cmake/EnableC++XX.cmake /home/navlab-tx2-4/px4_ros_com_ros2/src/px4_ros_com/cmake/EnableC++XX.cmake<file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_controls__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/ActuatorControls.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/actuator_controls__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__ActuatorControls__init(px4_msgs__msg__ActuatorControls * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // control return true; } void px4_msgs__msg__ActuatorControls__fini(px4_msgs__msg__ActuatorControls * msg) { if (!msg) { return; } // timestamp // timestamp_sample // control } px4_msgs__msg__ActuatorControls * px4_msgs__msg__ActuatorControls__create() { px4_msgs__msg__ActuatorControls * msg = (px4_msgs__msg__ActuatorControls *)malloc(sizeof(px4_msgs__msg__ActuatorControls)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__ActuatorControls)); bool success = px4_msgs__msg__ActuatorControls__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__ActuatorControls__destroy(px4_msgs__msg__ActuatorControls * msg) { if (msg) { px4_msgs__msg__ActuatorControls__fini(msg); } free(msg); } bool px4_msgs__msg__ActuatorControls__Sequence__init(px4_msgs__msg__ActuatorControls__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__ActuatorControls * data = NULL; if (size) { data = (px4_msgs__msg__ActuatorControls *)calloc(size, sizeof(px4_msgs__msg__ActuatorControls)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__ActuatorControls__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__ActuatorControls__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__ActuatorControls__Sequence__fini(px4_msgs__msg__ActuatorControls__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__ActuatorControls__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__ActuatorControls__Sequence * px4_msgs__msg__ActuatorControls__Sequence__create(size_t size) { px4_msgs__msg__ActuatorControls__Sequence * array = (px4_msgs__msg__ActuatorControls__Sequence *)malloc(sizeof(px4_msgs__msg__ActuatorControls__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__ActuatorControls__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__ActuatorControls__Sequence__destroy(px4_msgs__msg__ActuatorControls__Sequence * array) { if (array) { px4_msgs__msg__ActuatorControls__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_input_rc.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/InputRc.idl # generated code does not contain a copyright notice # Import statements for member types # Member 'values' import numpy # noqa: E402, I100 import rosidl_parser.definition # noqa: E402, I100 class Metaclass_InputRc(type): """Metaclass of message 'InputRc'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'RC_INPUT_SOURCE_UNKNOWN': 0, 'RC_INPUT_SOURCE_PX4FMU_PPM': 1, 'RC_INPUT_SOURCE_PX4IO_PPM': 2, 'RC_INPUT_SOURCE_PX4IO_SPEKTRUM': 3, 'RC_INPUT_SOURCE_PX4IO_SBUS': 4, 'RC_INPUT_SOURCE_PX4IO_ST24': 5, 'RC_INPUT_SOURCE_MAVLINK': 6, 'RC_INPUT_SOURCE_QURT': 7, 'RC_INPUT_SOURCE_PX4FMU_SPEKTRUM': 8, 'RC_INPUT_SOURCE_PX4FMU_SBUS': 9, 'RC_INPUT_SOURCE_PX4FMU_ST24': 10, 'RC_INPUT_SOURCE_PX4FMU_SUMD': 11, 'RC_INPUT_SOURCE_PX4FMU_DSM': 12, 'RC_INPUT_SOURCE_PX4IO_SUMD': 13, 'RC_INPUT_SOURCE_PX4FMU_CRSF': 14, 'RC_INPUT_SOURCE_PX4FMU_GHST': 15, 'RC_INPUT_MAX_CHANNELS': 18, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.InputRc') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__input_rc cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__input_rc cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__input_rc cls._TYPE_SUPPORT = module.type_support_msg__msg__input_rc cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__input_rc @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'RC_INPUT_SOURCE_UNKNOWN': cls.__constants['RC_INPUT_SOURCE_UNKNOWN'], 'RC_INPUT_SOURCE_PX4FMU_PPM': cls.__constants['RC_INPUT_SOURCE_PX4FMU_PPM'], 'RC_INPUT_SOURCE_PX4IO_PPM': cls.__constants['RC_INPUT_SOURCE_PX4IO_PPM'], 'RC_INPUT_SOURCE_PX4IO_SPEKTRUM': cls.__constants['RC_INPUT_SOURCE_PX4IO_SPEKTRUM'], 'RC_INPUT_SOURCE_PX4IO_SBUS': cls.__constants['RC_INPUT_SOURCE_PX4IO_SBUS'], 'RC_INPUT_SOURCE_PX4IO_ST24': cls.__constants['RC_INPUT_SOURCE_PX4IO_ST24'], 'RC_INPUT_SOURCE_MAVLINK': cls.__constants['RC_INPUT_SOURCE_MAVLINK'], 'RC_INPUT_SOURCE_QURT': cls.__constants['RC_INPUT_SOURCE_QURT'], 'RC_INPUT_SOURCE_PX4FMU_SPEKTRUM': cls.__constants['RC_INPUT_SOURCE_PX4FMU_SPEKTRUM'], 'RC_INPUT_SOURCE_PX4FMU_SBUS': cls.__constants['RC_INPUT_SOURCE_PX4FMU_SBUS'], 'RC_INPUT_SOURCE_PX4FMU_ST24': cls.__constants['RC_INPUT_SOURCE_PX4FMU_ST24'], 'RC_INPUT_SOURCE_PX4FMU_SUMD': cls.__constants['RC_INPUT_SOURCE_PX4FMU_SUMD'], 'RC_INPUT_SOURCE_PX4FMU_DSM': cls.__constants['RC_INPUT_SOURCE_PX4FMU_DSM'], 'RC_INPUT_SOURCE_PX4IO_SUMD': cls.__constants['RC_INPUT_SOURCE_PX4IO_SUMD'], 'RC_INPUT_SOURCE_PX4FMU_CRSF': cls.__constants['RC_INPUT_SOURCE_PX4FMU_CRSF'], 'RC_INPUT_SOURCE_PX4FMU_GHST': cls.__constants['RC_INPUT_SOURCE_PX4FMU_GHST'], 'RC_INPUT_MAX_CHANNELS': cls.__constants['RC_INPUT_MAX_CHANNELS'], } @property def RC_INPUT_SOURCE_UNKNOWN(self): """Message constant 'RC_INPUT_SOURCE_UNKNOWN'.""" return Metaclass_InputRc.__constants['RC_INPUT_SOURCE_UNKNOWN'] @property def RC_INPUT_SOURCE_PX4FMU_PPM(self): """Message constant 'RC_INPUT_SOURCE_PX4FMU_PPM'.""" return Metaclass_InputRc.__constants['RC_INPUT_SOURCE_PX4FMU_PPM'] @property def RC_INPUT_SOURCE_PX4IO_PPM(self): """Message constant 'RC_INPUT_SOURCE_PX4IO_PPM'.""" return Metaclass_InputRc.__constants['RC_INPUT_SOURCE_PX4IO_PPM'] @property def RC_INPUT_SOURCE_PX4IO_SPEKTRUM(self): """Message constant 'RC_INPUT_SOURCE_PX4IO_SPEKTRUM'.""" return Metaclass_InputRc.__constants['RC_INPUT_SOURCE_PX4IO_SPEKTRUM'] @property def RC_INPUT_SOURCE_PX4IO_SBUS(self): """Message constant 'RC_INPUT_SOURCE_PX4IO_SBUS'.""" return Metaclass_InputRc.__constants['RC_INPUT_SOURCE_PX4IO_SBUS'] @property def RC_INPUT_SOURCE_PX4IO_ST24(self): """Message constant 'RC_INPUT_SOURCE_PX4IO_ST24'.""" return Metaclass_InputRc.__constants['RC_INPUT_SOURCE_PX4IO_ST24'] @property def RC_INPUT_SOURCE_MAVLINK(self): """Message constant 'RC_INPUT_SOURCE_MAVLINK'.""" return Metaclass_InputRc.__constants['RC_INPUT_SOURCE_MAVLINK'] @property def RC_INPUT_SOURCE_QURT(self): """Message constant 'RC_INPUT_SOURCE_QURT'.""" return Metaclass_InputRc.__constants['RC_INPUT_SOURCE_QURT'] @property def RC_INPUT_SOURCE_PX4FMU_SPEKTRUM(self): """Message constant 'RC_INPUT_SOURCE_PX4FMU_SPEKTRUM'.""" return Metaclass_InputRc.__constants['RC_INPUT_SOURCE_PX4FMU_SPEKTRUM'] @property def RC_INPUT_SOURCE_PX4FMU_SBUS(self): """Message constant 'RC_INPUT_SOURCE_PX4FMU_SBUS'.""" return Metaclass_InputRc.__constants['RC_INPUT_SOURCE_PX4FMU_SBUS'] @property def RC_INPUT_SOURCE_PX4FMU_ST24(self): """Message constant 'RC_INPUT_SOURCE_PX4FMU_ST24'.""" return Metaclass_InputRc.__constants['RC_INPUT_SOURCE_PX4FMU_ST24'] @property def RC_INPUT_SOURCE_PX4FMU_SUMD(self): """Message constant 'RC_INPUT_SOURCE_PX4FMU_SUMD'.""" return Metaclass_InputRc.__constants['RC_INPUT_SOURCE_PX4FMU_SUMD'] @property def RC_INPUT_SOURCE_PX4FMU_DSM(self): """Message constant 'RC_INPUT_SOURCE_PX4FMU_DSM'.""" return Metaclass_InputRc.__constants['RC_INPUT_SOURCE_PX4FMU_DSM'] @property def RC_INPUT_SOURCE_PX4IO_SUMD(self): """Message constant 'RC_INPUT_SOURCE_PX4IO_SUMD'.""" return Metaclass_InputRc.__constants['RC_INPUT_SOURCE_PX4IO_SUMD'] @property def RC_INPUT_SOURCE_PX4FMU_CRSF(self): """Message constant 'RC_INPUT_SOURCE_PX4FMU_CRSF'.""" return Metaclass_InputRc.__constants['RC_INPUT_SOURCE_PX4FMU_CRSF'] @property def RC_INPUT_SOURCE_PX4FMU_GHST(self): """Message constant 'RC_INPUT_SOURCE_PX4FMU_GHST'.""" return Metaclass_InputRc.__constants['RC_INPUT_SOURCE_PX4FMU_GHST'] @property def RC_INPUT_MAX_CHANNELS(self): """Message constant 'RC_INPUT_MAX_CHANNELS'.""" return Metaclass_InputRc.__constants['RC_INPUT_MAX_CHANNELS'] class InputRc(metaclass=Metaclass_InputRc): """ Message class 'InputRc'. Constants: RC_INPUT_SOURCE_UNKNOWN RC_INPUT_SOURCE_PX4FMU_PPM RC_INPUT_SOURCE_PX4IO_PPM RC_INPUT_SOURCE_PX4IO_SPEKTRUM RC_INPUT_SOURCE_PX4IO_SBUS RC_INPUT_SOURCE_PX4IO_ST24 RC_INPUT_SOURCE_MAVLINK RC_INPUT_SOURCE_QURT RC_INPUT_SOURCE_PX4FMU_SPEKTRUM RC_INPUT_SOURCE_PX4FMU_SBUS RC_INPUT_SOURCE_PX4FMU_ST24 RC_INPUT_SOURCE_PX4FMU_SUMD RC_INPUT_SOURCE_PX4FMU_DSM RC_INPUT_SOURCE_PX4IO_SUMD RC_INPUT_SOURCE_PX4FMU_CRSF RC_INPUT_SOURCE_PX4FMU_GHST RC_INPUT_MAX_CHANNELS """ __slots__ = [ '_timestamp', '_timestamp_last_signal', '_channel_count', '_rssi', '_rc_failsafe', '_rc_lost', '_rc_lost_frame_count', '_rc_total_frame_count', '_rc_ppm_frame_length', '_input_source', '_values', ] _fields_and_field_types = { 'timestamp': 'uint64', 'timestamp_last_signal': 'uint64', 'channel_count': 'uint8', 'rssi': 'int32', 'rc_failsafe': 'boolean', 'rc_lost': 'boolean', 'rc_lost_frame_count': 'uint16', 'rc_total_frame_count': 'uint16', 'rc_ppm_frame_length': 'uint16', 'input_source': 'uint8', 'values': 'uint16[18]', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('int32'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('uint16'), 18), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.timestamp_last_signal = kwargs.get('timestamp_last_signal', int()) self.channel_count = kwargs.get('channel_count', int()) self.rssi = kwargs.get('rssi', int()) self.rc_failsafe = kwargs.get('rc_failsafe', bool()) self.rc_lost = kwargs.get('rc_lost', bool()) self.rc_lost_frame_count = kwargs.get('rc_lost_frame_count', int()) self.rc_total_frame_count = kwargs.get('rc_total_frame_count', int()) self.rc_ppm_frame_length = kwargs.get('rc_ppm_frame_length', int()) self.input_source = kwargs.get('input_source', int()) if 'values' not in kwargs: self.values = numpy.zeros(18, dtype=numpy.uint16) else: self.values = numpy.array(kwargs.get('values'), dtype=numpy.uint16) assert self.values.shape == (18, ) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.timestamp_last_signal != other.timestamp_last_signal: return False if self.channel_count != other.channel_count: return False if self.rssi != other.rssi: return False if self.rc_failsafe != other.rc_failsafe: return False if self.rc_lost != other.rc_lost: return False if self.rc_lost_frame_count != other.rc_lost_frame_count: return False if self.rc_total_frame_count != other.rc_total_frame_count: return False if self.rc_ppm_frame_length != other.rc_ppm_frame_length: return False if self.input_source != other.input_source: return False if all(self.values != other.values): return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def timestamp_last_signal(self): """Message field 'timestamp_last_signal'.""" return self._timestamp_last_signal @timestamp_last_signal.setter def timestamp_last_signal(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp_last_signal' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp_last_signal' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp_last_signal = value @property def channel_count(self): """Message field 'channel_count'.""" return self._channel_count @channel_count.setter def channel_count(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'channel_count' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'channel_count' field must be an unsigned integer in [0, 255]" self._channel_count = value @property def rssi(self): """Message field 'rssi'.""" return self._rssi @rssi.setter def rssi(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'rssi' field must be of type 'int'" assert value >= -2147483648 and value < 2147483648, \ "The 'rssi' field must be an integer in [-2147483648, 2147483647]" self._rssi = value @property def rc_failsafe(self): """Message field 'rc_failsafe'.""" return self._rc_failsafe @rc_failsafe.setter def rc_failsafe(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'rc_failsafe' field must be of type 'bool'" self._rc_failsafe = value @property def rc_lost(self): """Message field 'rc_lost'.""" return self._rc_lost @rc_lost.setter def rc_lost(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'rc_lost' field must be of type 'bool'" self._rc_lost = value @property def rc_lost_frame_count(self): """Message field 'rc_lost_frame_count'.""" return self._rc_lost_frame_count @rc_lost_frame_count.setter def rc_lost_frame_count(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'rc_lost_frame_count' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'rc_lost_frame_count' field must be an unsigned integer in [0, 65535]" self._rc_lost_frame_count = value @property def rc_total_frame_count(self): """Message field 'rc_total_frame_count'.""" return self._rc_total_frame_count @rc_total_frame_count.setter def rc_total_frame_count(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'rc_total_frame_count' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'rc_total_frame_count' field must be an unsigned integer in [0, 65535]" self._rc_total_frame_count = value @property def rc_ppm_frame_length(self): """Message field 'rc_ppm_frame_length'.""" return self._rc_ppm_frame_length @rc_ppm_frame_length.setter def rc_ppm_frame_length(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'rc_ppm_frame_length' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'rc_ppm_frame_length' field must be an unsigned integer in [0, 65535]" self._rc_ppm_frame_length = value @property def input_source(self): """Message field 'input_source'.""" return self._input_source @input_source.setter def input_source(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'input_source' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'input_source' field must be an unsigned integer in [0, 255]" self._input_source = value @property def values(self): """Message field 'values'.""" return self._values @values.setter def values(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.uint16, \ "The 'values' numpy.ndarray() must have the dtype of 'numpy.uint16'" assert value.size == 18, \ "The 'values' numpy.ndarray() must have a size of 18" self._values = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 18 and all(isinstance(v, int) for v in value) and all(val >= 0 and val < 65536 for val in value)), \ "The 'values' field must be a set or sequence with length 18 and each value of type 'int' and each unsigned integer in [0, 65535]" self._values = numpy.array(value, dtype=numpy.uint16) <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_land_detected__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleLandDetected.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_land_detected__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/vehicle_land_detected__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::VehicleLandDetected & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: alt_max cdr << ros_message.alt_max; // Member: freefall cdr << (ros_message.freefall ? true : false); // Member: ground_contact cdr << (ros_message.ground_contact ? true : false); // Member: maybe_landed cdr << (ros_message.maybe_landed ? true : false); // Member: landed cdr << (ros_message.landed ? true : false); // Member: in_ground_effect cdr << (ros_message.in_ground_effect ? true : false); return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::VehicleLandDetected & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: alt_max cdr >> ros_message.alt_max; // Member: freefall { uint8_t tmp; cdr >> tmp; ros_message.freefall = tmp ? true : false; } // Member: ground_contact { uint8_t tmp; cdr >> tmp; ros_message.ground_contact = tmp ? true : false; } // Member: maybe_landed { uint8_t tmp; cdr >> tmp; ros_message.maybe_landed = tmp ? true : false; } // Member: landed { uint8_t tmp; cdr >> tmp; ros_message.landed = tmp ? true : false; } // Member: in_ground_effect { uint8_t tmp; cdr >> tmp; ros_message.in_ground_effect = tmp ? true : false; } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::VehicleLandDetected & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: alt_max { size_t item_size = sizeof(ros_message.alt_max); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: freefall { size_t item_size = sizeof(ros_message.freefall); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: ground_contact { size_t item_size = sizeof(ros_message.ground_contact); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: maybe_landed { size_t item_size = sizeof(ros_message.maybe_landed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: landed { size_t item_size = sizeof(ros_message.landed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: in_ground_effect { size_t item_size = sizeof(ros_message.in_ground_effect); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_VehicleLandDetected( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: alt_max { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: freefall { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: ground_contact { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: maybe_landed { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: landed { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: in_ground_effect { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _VehicleLandDetected__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::VehicleLandDetected *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _VehicleLandDetected__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::VehicleLandDetected *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _VehicleLandDetected__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::VehicleLandDetected *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _VehicleLandDetected__max_serialized_size(bool & full_bounded) { return max_serialized_size_VehicleLandDetected(full_bounded, 0); } static message_type_support_callbacks_t _VehicleLandDetected__callbacks = { "px4_msgs::msg", "VehicleLandDetected", _VehicleLandDetected__cdr_serialize, _VehicleLandDetected__cdr_deserialize, _VehicleLandDetected__get_serialized_size, _VehicleLandDetected__max_serialized_size }; static rosidl_message_type_support_t _VehicleLandDetected__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_VehicleLandDetected__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleLandDetected>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_VehicleLandDetected__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, VehicleLandDetected)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_VehicleLandDetected__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_vehicle_gps_position_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/VehicleGpsPosition.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/vehicle_gps_position__struct.h" #include "px4_msgs/msg/vehicle_gps_position__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__vehicle_gps_position__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[54]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._vehicle_gps_position.VehicleGpsPosition", full_classname_dest, 53) == 0); } px4_msgs__msg__VehicleGpsPosition * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // lat PyObject * field = PyObject_GetAttrString(_pymsg, "lat"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->lat = (int32_t)PyLong_AsLong(field); Py_DECREF(field); } { // lon PyObject * field = PyObject_GetAttrString(_pymsg, "lon"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->lon = (int32_t)PyLong_AsLong(field); Py_DECREF(field); } { // alt PyObject * field = PyObject_GetAttrString(_pymsg, "alt"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->alt = (int32_t)PyLong_AsLong(field); Py_DECREF(field); } { // alt_ellipsoid PyObject * field = PyObject_GetAttrString(_pymsg, "alt_ellipsoid"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->alt_ellipsoid = (int32_t)PyLong_AsLong(field); Py_DECREF(field); } { // s_variance_m_s PyObject * field = PyObject_GetAttrString(_pymsg, "s_variance_m_s"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->s_variance_m_s = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // c_variance_rad PyObject * field = PyObject_GetAttrString(_pymsg, "c_variance_rad"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->c_variance_rad = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // fix_type PyObject * field = PyObject_GetAttrString(_pymsg, "fix_type"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->fix_type = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // eph PyObject * field = PyObject_GetAttrString(_pymsg, "eph"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->eph = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // epv PyObject * field = PyObject_GetAttrString(_pymsg, "epv"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->epv = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // hdop PyObject * field = PyObject_GetAttrString(_pymsg, "hdop"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->hdop = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // vdop PyObject * field = PyObject_GetAttrString(_pymsg, "vdop"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->vdop = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // noise_per_ms PyObject * field = PyObject_GetAttrString(_pymsg, "noise_per_ms"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->noise_per_ms = (int32_t)PyLong_AsLong(field); Py_DECREF(field); } { // jamming_indicator PyObject * field = PyObject_GetAttrString(_pymsg, "jamming_indicator"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->jamming_indicator = (int32_t)PyLong_AsLong(field); Py_DECREF(field); } { // jamming_state PyObject * field = PyObject_GetAttrString(_pymsg, "jamming_state"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->jamming_state = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // vel_m_s PyObject * field = PyObject_GetAttrString(_pymsg, "vel_m_s"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->vel_m_s = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // vel_n_m_s PyObject * field = PyObject_GetAttrString(_pymsg, "vel_n_m_s"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->vel_n_m_s = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // vel_e_m_s PyObject * field = PyObject_GetAttrString(_pymsg, "vel_e_m_s"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->vel_e_m_s = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // vel_d_m_s PyObject * field = PyObject_GetAttrString(_pymsg, "vel_d_m_s"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->vel_d_m_s = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // cog_rad PyObject * field = PyObject_GetAttrString(_pymsg, "cog_rad"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->cog_rad = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // vel_ned_valid PyObject * field = PyObject_GetAttrString(_pymsg, "vel_ned_valid"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->vel_ned_valid = (Py_True == field); Py_DECREF(field); } { // timestamp_time_relative PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp_time_relative"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp_time_relative = (int32_t)PyLong_AsLong(field); Py_DECREF(field); } { // time_utc_usec PyObject * field = PyObject_GetAttrString(_pymsg, "time_utc_usec"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->time_utc_usec = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // satellites_used PyObject * field = PyObject_GetAttrString(_pymsg, "satellites_used"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->satellites_used = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // heading PyObject * field = PyObject_GetAttrString(_pymsg, "heading"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->heading = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // heading_offset PyObject * field = PyObject_GetAttrString(_pymsg, "heading_offset"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->heading_offset = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // selected PyObject * field = PyObject_GetAttrString(_pymsg, "selected"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->selected = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__vehicle_gps_position__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of VehicleGpsPosition */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._vehicle_gps_position"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "VehicleGpsPosition"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__VehicleGpsPosition * ros_message = (px4_msgs__msg__VehicleGpsPosition *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // lat PyObject * field = NULL; field = PyLong_FromLong(ros_message->lat); { int rc = PyObject_SetAttrString(_pymessage, "lat", field); Py_DECREF(field); if (rc) { return NULL; } } } { // lon PyObject * field = NULL; field = PyLong_FromLong(ros_message->lon); { int rc = PyObject_SetAttrString(_pymessage, "lon", field); Py_DECREF(field); if (rc) { return NULL; } } } { // alt PyObject * field = NULL; field = PyLong_FromLong(ros_message->alt); { int rc = PyObject_SetAttrString(_pymessage, "alt", field); Py_DECREF(field); if (rc) { return NULL; } } } { // alt_ellipsoid PyObject * field = NULL; field = PyLong_FromLong(ros_message->alt_ellipsoid); { int rc = PyObject_SetAttrString(_pymessage, "alt_ellipsoid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // s_variance_m_s PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->s_variance_m_s); { int rc = PyObject_SetAttrString(_pymessage, "s_variance_m_s", field); Py_DECREF(field); if (rc) { return NULL; } } } { // c_variance_rad PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->c_variance_rad); { int rc = PyObject_SetAttrString(_pymessage, "c_variance_rad", field); Py_DECREF(field); if (rc) { return NULL; } } } { // fix_type PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->fix_type); { int rc = PyObject_SetAttrString(_pymessage, "fix_type", field); Py_DECREF(field); if (rc) { return NULL; } } } { // eph PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->eph); { int rc = PyObject_SetAttrString(_pymessage, "eph", field); Py_DECREF(field); if (rc) { return NULL; } } } { // epv PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->epv); { int rc = PyObject_SetAttrString(_pymessage, "epv", field); Py_DECREF(field); if (rc) { return NULL; } } } { // hdop PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->hdop); { int rc = PyObject_SetAttrString(_pymessage, "hdop", field); Py_DECREF(field); if (rc) { return NULL; } } } { // vdop PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->vdop); { int rc = PyObject_SetAttrString(_pymessage, "vdop", field); Py_DECREF(field); if (rc) { return NULL; } } } { // noise_per_ms PyObject * field = NULL; field = PyLong_FromLong(ros_message->noise_per_ms); { int rc = PyObject_SetAttrString(_pymessage, "noise_per_ms", field); Py_DECREF(field); if (rc) { return NULL; } } } { // jamming_indicator PyObject * field = NULL; field = PyLong_FromLong(ros_message->jamming_indicator); { int rc = PyObject_SetAttrString(_pymessage, "jamming_indicator", field); Py_DECREF(field); if (rc) { return NULL; } } } { // jamming_state PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->jamming_state); { int rc = PyObject_SetAttrString(_pymessage, "jamming_state", field); Py_DECREF(field); if (rc) { return NULL; } } } { // vel_m_s PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->vel_m_s); { int rc = PyObject_SetAttrString(_pymessage, "vel_m_s", field); Py_DECREF(field); if (rc) { return NULL; } } } { // vel_n_m_s PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->vel_n_m_s); { int rc = PyObject_SetAttrString(_pymessage, "vel_n_m_s", field); Py_DECREF(field); if (rc) { return NULL; } } } { // vel_e_m_s PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->vel_e_m_s); { int rc = PyObject_SetAttrString(_pymessage, "vel_e_m_s", field); Py_DECREF(field); if (rc) { return NULL; } } } { // vel_d_m_s PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->vel_d_m_s); { int rc = PyObject_SetAttrString(_pymessage, "vel_d_m_s", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cog_rad PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->cog_rad); { int rc = PyObject_SetAttrString(_pymessage, "cog_rad", field); Py_DECREF(field); if (rc) { return NULL; } } } { // vel_ned_valid PyObject * field = NULL; field = PyBool_FromLong(ros_message->vel_ned_valid ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "vel_ned_valid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // timestamp_time_relative PyObject * field = NULL; field = PyLong_FromLong(ros_message->timestamp_time_relative); { int rc = PyObject_SetAttrString(_pymessage, "timestamp_time_relative", field); Py_DECREF(field); if (rc) { return NULL; } } } { // time_utc_usec PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->time_utc_usec); { int rc = PyObject_SetAttrString(_pymessage, "time_utc_usec", field); Py_DECREF(field); if (rc) { return NULL; } } } { // satellites_used PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->satellites_used); { int rc = PyObject_SetAttrString(_pymessage, "satellites_used", field); Py_DECREF(field); if (rc) { return NULL; } } } { // heading PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->heading); { int rc = PyObject_SetAttrString(_pymessage, "heading", field); Py_DECREF(field); if (rc) { return NULL; } } } { // heading_offset PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->heading_offset); { int rc = PyObject_SetAttrString(_pymessage, "heading_offset", field); Py_DECREF(field); if (rc) { return NULL; } } } { // selected PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->selected); { int rc = PyObject_SetAttrString(_pymessage, "selected", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/commander_state.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/CommanderState.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__COMMANDER_STATE_H_ #define PX4_MSGS__MSG__COMMANDER_STATE_H_ #include "px4_msgs/msg/commander_state__struct.h" #include "px4_msgs/msg/commander_state__functions.h" #include "px4_msgs/msg/commander_state__type_support.h" #endif // PX4_MSGS__MSG__COMMANDER_STATE_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_status__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/EstimatorStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/estimator_status__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__EstimatorStatus__init(px4_msgs__msg__EstimatorStatus * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // vibe // output_tracking_error // gps_check_fail_flags // control_mode_flags // filter_fault_flags // pos_horiz_accuracy // pos_vert_accuracy // innovation_check_flags // mag_test_ratio // vel_test_ratio // pos_test_ratio // hgt_test_ratio // tas_test_ratio // hagl_test_ratio // beta_test_ratio // solution_status_flags // reset_count_vel_ne // reset_count_vel_d // reset_count_pos_ne // reset_count_pod_d // reset_count_quat // time_slip // pre_flt_fail_innov_heading // pre_flt_fail_innov_vel_horiz // pre_flt_fail_innov_vel_vert // pre_flt_fail_innov_height // pre_flt_fail_mag_field_disturbed // accel_device_id // gyro_device_id // baro_device_id // mag_device_id // health_flags // timeout_flags return true; } void px4_msgs__msg__EstimatorStatus__fini(px4_msgs__msg__EstimatorStatus * msg) { if (!msg) { return; } // timestamp // timestamp_sample // vibe // output_tracking_error // gps_check_fail_flags // control_mode_flags // filter_fault_flags // pos_horiz_accuracy // pos_vert_accuracy // innovation_check_flags // mag_test_ratio // vel_test_ratio // pos_test_ratio // hgt_test_ratio // tas_test_ratio // hagl_test_ratio // beta_test_ratio // solution_status_flags // reset_count_vel_ne // reset_count_vel_d // reset_count_pos_ne // reset_count_pod_d // reset_count_quat // time_slip // pre_flt_fail_innov_heading // pre_flt_fail_innov_vel_horiz // pre_flt_fail_innov_vel_vert // pre_flt_fail_innov_height // pre_flt_fail_mag_field_disturbed // accel_device_id // gyro_device_id // baro_device_id // mag_device_id // health_flags // timeout_flags } px4_msgs__msg__EstimatorStatus * px4_msgs__msg__EstimatorStatus__create() { px4_msgs__msg__EstimatorStatus * msg = (px4_msgs__msg__EstimatorStatus *)malloc(sizeof(px4_msgs__msg__EstimatorStatus)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__EstimatorStatus)); bool success = px4_msgs__msg__EstimatorStatus__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__EstimatorStatus__destroy(px4_msgs__msg__EstimatorStatus * msg) { if (msg) { px4_msgs__msg__EstimatorStatus__fini(msg); } free(msg); } bool px4_msgs__msg__EstimatorStatus__Sequence__init(px4_msgs__msg__EstimatorStatus__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__EstimatorStatus * data = NULL; if (size) { data = (px4_msgs__msg__EstimatorStatus *)calloc(size, sizeof(px4_msgs__msg__EstimatorStatus)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__EstimatorStatus__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__EstimatorStatus__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__EstimatorStatus__Sequence__fini(px4_msgs__msg__EstimatorStatus__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__EstimatorStatus__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__EstimatorStatus__Sequence * px4_msgs__msg__EstimatorStatus__Sequence__create(size_t size) { px4_msgs__msg__EstimatorStatus__Sequence * array = (px4_msgs__msg__EstimatorStatus__Sequence *)malloc(sizeof(px4_msgs__msg__EstimatorStatus__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__EstimatorStatus__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__EstimatorStatus__Sequence__destroy(px4_msgs__msg__EstimatorStatus__Sequence * array) { if (array) { px4_msgs__msg__EstimatorStatus__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/ulog_stream_ack.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ULOG_STREAM_ACK_HPP_ #define PX4_MSGS__MSG__ULOG_STREAM_ACK_HPP_ #include "px4_msgs/msg/ulog_stream_ack__struct.hpp" #include "px4_msgs/msg/ulog_stream_ack__traits.hpp" #endif // PX4_MSGS__MSG__ULOG_STREAM_ACK_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/obstacle_distance__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/ObstacleDistance.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__OBSTACLE_DISTANCE__STRUCT_H_ #define PX4_MSGS__MSG__OBSTACLE_DISTANCE__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'MAV_FRAME_GLOBAL'. enum { px4_msgs__msg__ObstacleDistance__MAV_FRAME_GLOBAL = 0 }; /// Constant 'MAV_FRAME_LOCAL_NED'. enum { px4_msgs__msg__ObstacleDistance__MAV_FRAME_LOCAL_NED = 1 }; /// Constant 'MAV_FRAME_BODY_FRD'. enum { px4_msgs__msg__ObstacleDistance__MAV_FRAME_BODY_FRD = 12 }; /// Constant 'MAV_DISTANCE_SENSOR_LASER'. enum { px4_msgs__msg__ObstacleDistance__MAV_DISTANCE_SENSOR_LASER = 0 }; /// Constant 'MAV_DISTANCE_SENSOR_ULTRASOUND'. enum { px4_msgs__msg__ObstacleDistance__MAV_DISTANCE_SENSOR_ULTRASOUND = 1 }; /// Constant 'MAV_DISTANCE_SENSOR_INFRARED'. enum { px4_msgs__msg__ObstacleDistance__MAV_DISTANCE_SENSOR_INFRARED = 2 }; /// Constant 'MAV_DISTANCE_SENSOR_RADAR'. enum { px4_msgs__msg__ObstacleDistance__MAV_DISTANCE_SENSOR_RADAR = 3 }; // Struct defined in msg/ObstacleDistance in the package px4_msgs. typedef struct px4_msgs__msg__ObstacleDistance { uint64_t timestamp; uint8_t frame; uint8_t sensor_type; uint16_t distances[72]; float increment; uint16_t min_distance; uint16_t max_distance; float angle_offset; } px4_msgs__msg__ObstacleDistance; // Struct for a sequence of px4_msgs__msg__ObstacleDistance. typedef struct px4_msgs__msg__ObstacleDistance__Sequence { px4_msgs__msg__ObstacleDistance * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__ObstacleDistance__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__OBSTACLE_DISTANCE__STRUCT_H_ <file_sep>/install/multi_rtd_interfaces/include/multi_rtd_interfaces/msg/robot_trajectory__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from multi_rtd_interfaces:msg/RobotTrajectory.idl // generated code does not contain a copyright notice #include "multi_rtd_interfaces/msg/robot_trajectory__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> // Include directives for member types // Member `robot_name` #include "rosidl_generator_c/string_functions.h" // Member `trajectory` #include "trajectory_msgs/msg/joint_trajectory__functions.h" bool multi_rtd_interfaces__msg__RobotTrajectory__init(multi_rtd_interfaces__msg__RobotTrajectory * msg) { if (!msg) { return false; } // robot_name if (!rosidl_generator_c__String__init(&msg->robot_name)) { multi_rtd_interfaces__msg__RobotTrajectory__fini(msg); return false; } // trajectory if (!trajectory_msgs__msg__JointTrajectory__init(&msg->trajectory)) { multi_rtd_interfaces__msg__RobotTrajectory__fini(msg); return false; } return true; } void multi_rtd_interfaces__msg__RobotTrajectory__fini(multi_rtd_interfaces__msg__RobotTrajectory * msg) { if (!msg) { return; } // robot_name rosidl_generator_c__String__fini(&msg->robot_name); // trajectory trajectory_msgs__msg__JointTrajectory__fini(&msg->trajectory); } multi_rtd_interfaces__msg__RobotTrajectory * multi_rtd_interfaces__msg__RobotTrajectory__create() { multi_rtd_interfaces__msg__RobotTrajectory * msg = (multi_rtd_interfaces__msg__RobotTrajectory *)malloc(sizeof(multi_rtd_interfaces__msg__RobotTrajectory)); if (!msg) { return NULL; } memset(msg, 0, sizeof(multi_rtd_interfaces__msg__RobotTrajectory)); bool success = multi_rtd_interfaces__msg__RobotTrajectory__init(msg); if (!success) { free(msg); return NULL; } return msg; } void multi_rtd_interfaces__msg__RobotTrajectory__destroy(multi_rtd_interfaces__msg__RobotTrajectory * msg) { if (msg) { multi_rtd_interfaces__msg__RobotTrajectory__fini(msg); } free(msg); } bool multi_rtd_interfaces__msg__RobotTrajectory__Sequence__init(multi_rtd_interfaces__msg__RobotTrajectory__Sequence * array, size_t size) { if (!array) { return false; } multi_rtd_interfaces__msg__RobotTrajectory * data = NULL; if (size) { data = (multi_rtd_interfaces__msg__RobotTrajectory *)calloc(size, sizeof(multi_rtd_interfaces__msg__RobotTrajectory)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = multi_rtd_interfaces__msg__RobotTrajectory__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { multi_rtd_interfaces__msg__RobotTrajectory__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void multi_rtd_interfaces__msg__RobotTrajectory__Sequence__fini(multi_rtd_interfaces__msg__RobotTrajectory__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { multi_rtd_interfaces__msg__RobotTrajectory__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } multi_rtd_interfaces__msg__RobotTrajectory__Sequence * multi_rtd_interfaces__msg__RobotTrajectory__Sequence__create(size_t size) { multi_rtd_interfaces__msg__RobotTrajectory__Sequence * array = (multi_rtd_interfaces__msg__RobotTrajectory__Sequence *)malloc(sizeof(multi_rtd_interfaces__msg__RobotTrajectory__Sequence)); if (!array) { return NULL; } bool success = multi_rtd_interfaces__msg__RobotTrajectory__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void multi_rtd_interfaces__msg__RobotTrajectory__Sequence__destroy(multi_rtd_interfaces__msg__RobotTrajectory__Sequence * array) { if (array) { multi_rtd_interfaces__msg__RobotTrajectory__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/actuator_controls1__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/ActuatorControls1.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/actuator_controls1__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/actuator_controls1__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::ActuatorControls1 & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: timestamp_sample cdr << ros_message.timestamp_sample; // Member: control { cdr << ros_message.control; } return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::ActuatorControls1 & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: timestamp_sample cdr >> ros_message.timestamp_sample; // Member: control { cdr >> ros_message.control; } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::ActuatorControls1 & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: timestamp_sample { size_t item_size = sizeof(ros_message.timestamp_sample); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: control { size_t array_size = 8; size_t item_size = sizeof(ros_message.control[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_ActuatorControls1( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: timestamp_sample { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: control { size_t array_size = 8; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static bool _ActuatorControls1__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::ActuatorControls1 *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _ActuatorControls1__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::ActuatorControls1 *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _ActuatorControls1__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::ActuatorControls1 *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _ActuatorControls1__max_serialized_size(bool & full_bounded) { return max_serialized_size_ActuatorControls1(full_bounded, 0); } static message_type_support_callbacks_t _ActuatorControls1__callbacks = { "px4_msgs::msg", "ActuatorControls1", _ActuatorControls1__cdr_serialize, _ActuatorControls1__cdr_deserialize, _ActuatorControls1__get_serialized_size, _ActuatorControls1__max_serialized_size }; static rosidl_message_type_support_t _ActuatorControls1__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_ActuatorControls1__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::ActuatorControls1>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_ActuatorControls1__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, ActuatorControls1)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_ActuatorControls1__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_controls4__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/ActuatorControls4.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS4__STRUCT_H_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS4__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'NUM_ACTUATOR_CONTROLS'. enum { px4_msgs__msg__ActuatorControls4__NUM_ACTUATOR_CONTROLS = 8 }; /// Constant 'NUM_ACTUATOR_CONTROL_GROUPS'. enum { px4_msgs__msg__ActuatorControls4__NUM_ACTUATOR_CONTROL_GROUPS = 6 }; /// Constant 'INDEX_ROLL'. enum { px4_msgs__msg__ActuatorControls4__INDEX_ROLL = 0 }; /// Constant 'INDEX_PITCH'. enum { px4_msgs__msg__ActuatorControls4__INDEX_PITCH = 1 }; /// Constant 'INDEX_YAW'. enum { px4_msgs__msg__ActuatorControls4__INDEX_YAW = 2 }; /// Constant 'INDEX_THROTTLE'. enum { px4_msgs__msg__ActuatorControls4__INDEX_THROTTLE = 3 }; /// Constant 'INDEX_FLAPS'. enum { px4_msgs__msg__ActuatorControls4__INDEX_FLAPS = 4 }; /// Constant 'INDEX_SPOILERS'. enum { px4_msgs__msg__ActuatorControls4__INDEX_SPOILERS = 5 }; /// Constant 'INDEX_AIRBRAKES'. enum { px4_msgs__msg__ActuatorControls4__INDEX_AIRBRAKES = 6 }; /// Constant 'INDEX_LANDING_GEAR'. enum { px4_msgs__msg__ActuatorControls4__INDEX_LANDING_GEAR = 7 }; /// Constant 'INDEX_GIMBAL_SHUTTER'. enum { px4_msgs__msg__ActuatorControls4__INDEX_GIMBAL_SHUTTER = 3 }; /// Constant 'INDEX_CAMERA_ZOOM'. enum { px4_msgs__msg__ActuatorControls4__INDEX_CAMERA_ZOOM = 4 }; /// Constant 'GROUP_INDEX_ATTITUDE'. enum { px4_msgs__msg__ActuatorControls4__GROUP_INDEX_ATTITUDE = 0 }; /// Constant 'GROUP_INDEX_ATTITUDE_ALTERNATE'. enum { px4_msgs__msg__ActuatorControls4__GROUP_INDEX_ATTITUDE_ALTERNATE = 1 }; /// Constant 'GROUP_INDEX_GIMBAL'. enum { px4_msgs__msg__ActuatorControls4__GROUP_INDEX_GIMBAL = 2 }; /// Constant 'GROUP_INDEX_MANUAL_PASSTHROUGH'. enum { px4_msgs__msg__ActuatorControls4__GROUP_INDEX_MANUAL_PASSTHROUGH = 3 }; /// Constant 'GROUP_INDEX_ALLOCATED_PART1'. enum { px4_msgs__msg__ActuatorControls4__GROUP_INDEX_ALLOCATED_PART1 = 4 }; /// Constant 'GROUP_INDEX_ALLOCATED_PART2'. enum { px4_msgs__msg__ActuatorControls4__GROUP_INDEX_ALLOCATED_PART2 = 5 }; /// Constant 'GROUP_INDEX_PAYLOAD'. enum { px4_msgs__msg__ActuatorControls4__GROUP_INDEX_PAYLOAD = 6 }; // Struct defined in msg/ActuatorControls4 in the package px4_msgs. typedef struct px4_msgs__msg__ActuatorControls4 { uint64_t timestamp; uint64_t timestamp_sample; float control[8]; } px4_msgs__msg__ActuatorControls4; // Struct for a sequence of px4_msgs__msg__ActuatorControls4. typedef struct px4_msgs__msg__ActuatorControls4__Sequence { px4_msgs__msg__ActuatorControls4 * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__ActuatorControls4__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS4__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovations__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/EstimatorInnovations.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/estimator_innovations__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/estimator_innovations__functions.h" #include "px4_msgs/msg/estimator_innovations__struct.h" #ifdef __cplusplus extern "C" { #endif void EstimatorInnovations__rosidl_typesupport_introspection_c__EstimatorInnovations_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__EstimatorInnovations__init(message_memory); } void EstimatorInnovations__rosidl_typesupport_introspection_c__EstimatorInnovations_fini_function(void * message_memory) { px4_msgs__msg__EstimatorInnovations__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember EstimatorInnovations__rosidl_typesupport_introspection_c__EstimatorInnovations_message_member_array[21] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovations, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovations, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gps_hvel", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovations, gps_hvel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gps_vvel", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovations, gps_vvel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gps_hpos", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovations, gps_hpos), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gps_vpos", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovations, gps_vpos), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ev_hvel", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovations, ev_hvel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ev_vvel", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovations, ev_vvel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ev_hpos", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovations, ev_hpos), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ev_vpos", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovations, ev_vpos), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rng_vpos", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovations, rng_vpos), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "baro_vpos", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovations, baro_vpos), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "aux_hvel", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovations, aux_hvel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "aux_vvel", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovations, aux_vvel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "flow", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovations, flow), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "heading", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovations, heading), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "mag_field", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovations, mag_field), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "drag", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovations, drag), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "airspeed", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovations, airspeed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "beta", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovations, beta), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "hagl", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovations, hagl), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers EstimatorInnovations__rosidl_typesupport_introspection_c__EstimatorInnovations_message_members = { "px4_msgs__msg", // message namespace "EstimatorInnovations", // message name 21, // number of fields sizeof(px4_msgs__msg__EstimatorInnovations), EstimatorInnovations__rosidl_typesupport_introspection_c__EstimatorInnovations_message_member_array, // message members EstimatorInnovations__rosidl_typesupport_introspection_c__EstimatorInnovations_init_function, // function to initialize message memory (memory has to be allocated) EstimatorInnovations__rosidl_typesupport_introspection_c__EstimatorInnovations_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t EstimatorInnovations__rosidl_typesupport_introspection_c__EstimatorInnovations_message_type_support_handle = { 0, &EstimatorInnovations__rosidl_typesupport_introspection_c__EstimatorInnovations_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, EstimatorInnovations)() { if (!EstimatorInnovations__rosidl_typesupport_introspection_c__EstimatorInnovations_message_type_support_handle.typesupport_identifier) { EstimatorInnovations__rosidl_typesupport_introspection_c__EstimatorInnovations_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &EstimatorInnovations__rosidl_typesupport_introspection_c__EstimatorInnovations_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/telemetry_status__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/TelemetryStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/telemetry_status__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__TelemetryStatus__init(px4_msgs__msg__TelemetryStatus * msg) { if (!msg) { return false; } // timestamp // type // mode // flow_control // forwarding // mavlink_v2 // ftp // streams // data_rate // rate_multiplier // tx_rate_avg // tx_error_rate_avg // tx_message_count // tx_buffer_overruns // rx_rate_avg // rx_message_count // rx_message_count_supported // rx_message_lost_count // rx_buffer_overruns // rx_parse_errors // rx_packet_drop_count // rx_message_lost_rate // heartbeat_type_antenna_tracker // heartbeat_type_gcs // heartbeat_type_onboard_controller // heartbeat_type_gimbal // heartbeat_type_adsb // heartbeat_type_camera // heartbeat_component_telemetry_radio // heartbeat_component_log // heartbeat_component_osd // heartbeat_component_obstacle_avoidance // heartbeat_component_vio // heartbeat_component_pairing_manager // heartbeat_component_udp_bridge // heartbeat_component_uart_bridge // avoidance_system_healthy return true; } void px4_msgs__msg__TelemetryStatus__fini(px4_msgs__msg__TelemetryStatus * msg) { if (!msg) { return; } // timestamp // type // mode // flow_control // forwarding // mavlink_v2 // ftp // streams // data_rate // rate_multiplier // tx_rate_avg // tx_error_rate_avg // tx_message_count // tx_buffer_overruns // rx_rate_avg // rx_message_count // rx_message_count_supported // rx_message_lost_count // rx_buffer_overruns // rx_parse_errors // rx_packet_drop_count // rx_message_lost_rate // heartbeat_type_antenna_tracker // heartbeat_type_gcs // heartbeat_type_onboard_controller // heartbeat_type_gimbal // heartbeat_type_adsb // heartbeat_type_camera // heartbeat_component_telemetry_radio // heartbeat_component_log // heartbeat_component_osd // heartbeat_component_obstacle_avoidance // heartbeat_component_vio // heartbeat_component_pairing_manager // heartbeat_component_udp_bridge // heartbeat_component_uart_bridge // avoidance_system_healthy } px4_msgs__msg__TelemetryStatus * px4_msgs__msg__TelemetryStatus__create() { px4_msgs__msg__TelemetryStatus * msg = (px4_msgs__msg__TelemetryStatus *)malloc(sizeof(px4_msgs__msg__TelemetryStatus)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__TelemetryStatus)); bool success = px4_msgs__msg__TelemetryStatus__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__TelemetryStatus__destroy(px4_msgs__msg__TelemetryStatus * msg) { if (msg) { px4_msgs__msg__TelemetryStatus__fini(msg); } free(msg); } bool px4_msgs__msg__TelemetryStatus__Sequence__init(px4_msgs__msg__TelemetryStatus__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__TelemetryStatus * data = NULL; if (size) { data = (px4_msgs__msg__TelemetryStatus *)calloc(size, sizeof(px4_msgs__msg__TelemetryStatus)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__TelemetryStatus__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__TelemetryStatus__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__TelemetryStatus__Sequence__fini(px4_msgs__msg__TelemetryStatus__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__TelemetryStatus__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__TelemetryStatus__Sequence * px4_msgs__msg__TelemetryStatus__Sequence__create(size_t size) { px4_msgs__msg__TelemetryStatus__Sequence * array = (px4_msgs__msg__TelemetryStatus__Sequence *)malloc(sizeof(px4_msgs__msg__TelemetryStatus__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__TelemetryStatus__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__TelemetryStatus__Sequence__destroy(px4_msgs__msg__TelemetryStatus__Sequence * array) { if (array) { px4_msgs__msg__TelemetryStatus__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/gimbal_device_information__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/GimbalDeviceInformation.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GIMBAL_DEVICE_INFORMATION__STRUCT_HPP_ #define PX4_MSGS__MSG__GIMBAL_DEVICE_INFORMATION__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__GimbalDeviceInformation __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__GimbalDeviceInformation __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct GimbalDeviceInformation_ { using Type = GimbalDeviceInformation_<ContainerAllocator>; explicit GimbalDeviceInformation_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; std::fill<typename std::array<uint8_t, 32>::iterator, uint8_t>(this->vendor_name.begin(), this->vendor_name.end(), 0); std::fill<typename std::array<uint8_t, 32>::iterator, uint8_t>(this->model_name.begin(), this->model_name.end(), 0); std::fill<typename std::array<uint8_t, 32>::iterator, uint8_t>(this->custom_name.begin(), this->custom_name.end(), 0); this->firmware_version = 0ul; this->hardware_version = 0ul; this->uid = 0ull; this->cap_flags = 0; this->custom_cap_flags = 0; this->roll_min = 0.0f; this->roll_max = 0.0f; this->pitch_min = 0.0f; this->pitch_max = 0.0f; this->yaw_min = 0.0f; this->yaw_max = 0.0f; this->gimbal_device_compid = 0; } } explicit GimbalDeviceInformation_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : vendor_name(_alloc), model_name(_alloc), custom_name(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; std::fill<typename std::array<uint8_t, 32>::iterator, uint8_t>(this->vendor_name.begin(), this->vendor_name.end(), 0); std::fill<typename std::array<uint8_t, 32>::iterator, uint8_t>(this->model_name.begin(), this->model_name.end(), 0); std::fill<typename std::array<uint8_t, 32>::iterator, uint8_t>(this->custom_name.begin(), this->custom_name.end(), 0); this->firmware_version = 0ul; this->hardware_version = 0ul; this->uid = 0ull; this->cap_flags = 0; this->custom_cap_flags = 0; this->roll_min = 0.0f; this->roll_max = 0.0f; this->pitch_min = 0.0f; this->pitch_max = 0.0f; this->yaw_min = 0.0f; this->yaw_max = 0.0f; this->gimbal_device_compid = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _vendor_name_type = std::array<uint8_t, 32>; _vendor_name_type vendor_name; using _model_name_type = std::array<uint8_t, 32>; _model_name_type model_name; using _custom_name_type = std::array<uint8_t, 32>; _custom_name_type custom_name; using _firmware_version_type = uint32_t; _firmware_version_type firmware_version; using _hardware_version_type = uint32_t; _hardware_version_type hardware_version; using _uid_type = uint64_t; _uid_type uid; using _cap_flags_type = uint16_t; _cap_flags_type cap_flags; using _custom_cap_flags_type = uint16_t; _custom_cap_flags_type custom_cap_flags; using _roll_min_type = float; _roll_min_type roll_min; using _roll_max_type = float; _roll_max_type roll_max; using _pitch_min_type = float; _pitch_min_type pitch_min; using _pitch_max_type = float; _pitch_max_type pitch_max; using _yaw_min_type = float; _yaw_min_type yaw_min; using _yaw_max_type = float; _yaw_max_type yaw_max; using _gimbal_device_compid_type = uint8_t; _gimbal_device_compid_type gimbal_device_compid; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__vendor_name( const std::array<uint8_t, 32> & _arg) { this->vendor_name = _arg; return *this; } Type & set__model_name( const std::array<uint8_t, 32> & _arg) { this->model_name = _arg; return *this; } Type & set__custom_name( const std::array<uint8_t, 32> & _arg) { this->custom_name = _arg; return *this; } Type & set__firmware_version( const uint32_t & _arg) { this->firmware_version = _arg; return *this; } Type & set__hardware_version( const uint32_t & _arg) { this->hardware_version = _arg; return *this; } Type & set__uid( const uint64_t & _arg) { this->uid = _arg; return *this; } Type & set__cap_flags( const uint16_t & _arg) { this->cap_flags = _arg; return *this; } Type & set__custom_cap_flags( const uint16_t & _arg) { this->custom_cap_flags = _arg; return *this; } Type & set__roll_min( const float & _arg) { this->roll_min = _arg; return *this; } Type & set__roll_max( const float & _arg) { this->roll_max = _arg; return *this; } Type & set__pitch_min( const float & _arg) { this->pitch_min = _arg; return *this; } Type & set__pitch_max( const float & _arg) { this->pitch_max = _arg; return *this; } Type & set__yaw_min( const float & _arg) { this->yaw_min = _arg; return *this; } Type & set__yaw_max( const float & _arg) { this->yaw_max = _arg; return *this; } Type & set__gimbal_device_compid( const uint8_t & _arg) { this->gimbal_device_compid = _arg; return *this; } // constant declarations static constexpr uint32_t GIMBAL_DEVICE_CAP_FLAGS_HAS_RETRACT = 1u; static constexpr uint32_t GIMBAL_DEVICE_CAP_FLAGS_HAS_NEUTRAL = 2u; static constexpr uint32_t GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_AXIS = 4u; static constexpr uint32_t GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_FOLLOW = 8u; static constexpr uint32_t GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_LOCK = 16u; static constexpr uint32_t GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_AXIS = 32u; static constexpr uint32_t GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_FOLLOW = 64u; static constexpr uint32_t GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_LOCK = 128u; static constexpr uint32_t GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_AXIS = 256u; static constexpr uint32_t GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_FOLLOW = 512u; static constexpr uint32_t GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_LOCK = 1024u; static constexpr uint32_t GIMBAL_DEVICE_CAP_FLAGS_SUPPORTS_INFINITE_YAW = 2048u; // pointer types using RawPtr = px4_msgs::msg::GimbalDeviceInformation_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::GimbalDeviceInformation_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::GimbalDeviceInformation_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::GimbalDeviceInformation_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::GimbalDeviceInformation_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::GimbalDeviceInformation_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::GimbalDeviceInformation_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::GimbalDeviceInformation_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::GimbalDeviceInformation_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::GimbalDeviceInformation_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__GimbalDeviceInformation std::shared_ptr<px4_msgs::msg::GimbalDeviceInformation_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__GimbalDeviceInformation std::shared_ptr<px4_msgs::msg::GimbalDeviceInformation_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const GimbalDeviceInformation_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->vendor_name != other.vendor_name) { return false; } if (this->model_name != other.model_name) { return false; } if (this->custom_name != other.custom_name) { return false; } if (this->firmware_version != other.firmware_version) { return false; } if (this->hardware_version != other.hardware_version) { return false; } if (this->uid != other.uid) { return false; } if (this->cap_flags != other.cap_flags) { return false; } if (this->custom_cap_flags != other.custom_cap_flags) { return false; } if (this->roll_min != other.roll_min) { return false; } if (this->roll_max != other.roll_max) { return false; } if (this->pitch_min != other.pitch_min) { return false; } if (this->pitch_max != other.pitch_max) { return false; } if (this->yaw_min != other.yaw_min) { return false; } if (this->yaw_max != other.yaw_max) { return false; } if (this->gimbal_device_compid != other.gimbal_device_compid) { return false; } return true; } bool operator!=(const GimbalDeviceInformation_ & other) const { return !this->operator==(other); } }; // struct GimbalDeviceInformation_ // alias to use template instance with default allocator using GimbalDeviceInformation = px4_msgs::msg::GimbalDeviceInformation_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint32_t GimbalDeviceInformation_<ContainerAllocator>::GIMBAL_DEVICE_CAP_FLAGS_HAS_RETRACT; template<typename ContainerAllocator> constexpr uint32_t GimbalDeviceInformation_<ContainerAllocator>::GIMBAL_DEVICE_CAP_FLAGS_HAS_NEUTRAL; template<typename ContainerAllocator> constexpr uint32_t GimbalDeviceInformation_<ContainerAllocator>::GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_AXIS; template<typename ContainerAllocator> constexpr uint32_t GimbalDeviceInformation_<ContainerAllocator>::GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_FOLLOW; template<typename ContainerAllocator> constexpr uint32_t GimbalDeviceInformation_<ContainerAllocator>::GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_LOCK; template<typename ContainerAllocator> constexpr uint32_t GimbalDeviceInformation_<ContainerAllocator>::GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_AXIS; template<typename ContainerAllocator> constexpr uint32_t GimbalDeviceInformation_<ContainerAllocator>::GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_FOLLOW; template<typename ContainerAllocator> constexpr uint32_t GimbalDeviceInformation_<ContainerAllocator>::GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_LOCK; template<typename ContainerAllocator> constexpr uint32_t GimbalDeviceInformation_<ContainerAllocator>::GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_AXIS; template<typename ContainerAllocator> constexpr uint32_t GimbalDeviceInformation_<ContainerAllocator>::GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_FOLLOW; template<typename ContainerAllocator> constexpr uint32_t GimbalDeviceInformation_<ContainerAllocator>::GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_LOCK; template<typename ContainerAllocator> constexpr uint32_t GimbalDeviceInformation_<ContainerAllocator>::GIMBAL_DEVICE_CAP_FLAGS_SUPPORTS_INFINITE_YAW; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__GIMBAL_DEVICE_INFORMATION__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint_triplet__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/PositionSetpointTriplet.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/position_setpoint_triplet__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void PositionSetpointTriplet_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::PositionSetpointTriplet(_init); } void PositionSetpointTriplet_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::PositionSetpointTriplet *>(message_memory); typed_message->~PositionSetpointTriplet(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember PositionSetpointTriplet_message_member_array[4] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PositionSetpointTriplet, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "previous", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_MESSAGE, // type 0, // upper bound of string ::rosidl_typesupport_introspection_cpp::get_message_type_support_handle<px4_msgs::msg::PositionSetpoint>(), // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PositionSetpointTriplet, previous), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "current", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_MESSAGE, // type 0, // upper bound of string ::rosidl_typesupport_introspection_cpp::get_message_type_support_handle<px4_msgs::msg::PositionSetpoint>(), // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PositionSetpointTriplet, current), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "next", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_MESSAGE, // type 0, // upper bound of string ::rosidl_typesupport_introspection_cpp::get_message_type_support_handle<px4_msgs::msg::PositionSetpoint>(), // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PositionSetpointTriplet, next), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers PositionSetpointTriplet_message_members = { "px4_msgs::msg", // message namespace "PositionSetpointTriplet", // message name 4, // number of fields sizeof(px4_msgs::msg::PositionSetpointTriplet), PositionSetpointTriplet_message_member_array, // message members PositionSetpointTriplet_init_function, // function to initialize message memory (memory has to be allocated) PositionSetpointTriplet_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t PositionSetpointTriplet_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &PositionSetpointTriplet_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::PositionSetpointTriplet>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::PositionSetpointTriplet_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, PositionSetpointTriplet)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::PositionSetpointTriplet_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/rc_parameter_map__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/RcParameterMap.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__RC_PARAMETER_MAP__STRUCT_H_ #define PX4_MSGS__MSG__RC_PARAMETER_MAP__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'RC_PARAM_MAP_NCHAN'. enum { px4_msgs__msg__RcParameterMap__RC_PARAM_MAP_NCHAN = 3 }; /// Constant 'PARAM_ID_LEN'. enum { px4_msgs__msg__RcParameterMap__PARAM_ID_LEN = 16 }; // Struct defined in msg/RcParameterMap in the package px4_msgs. typedef struct px4_msgs__msg__RcParameterMap { uint64_t timestamp; bool valid[3]; int32_t param_index[3]; uint8_t param_id[51]; float scale[3]; float value0[3]; float value_min[3]; float value_max[3]; } px4_msgs__msg__RcParameterMap; // Struct for a sequence of px4_msgs__msg__RcParameterMap. typedef struct px4_msgs__msg__RcParameterMap__Sequence { px4_msgs__msg__RcParameterMap * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__RcParameterMap__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__RC_PARAMETER_MAP__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_local_position_setpoint.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_SETPOINT_HPP_ #define PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_SETPOINT_HPP_ #include "px4_msgs/msg/vehicle_local_position_setpoint__struct.hpp" #include "px4_msgs/msg/vehicle_local_position_setpoint__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_SETPOINT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_innovation_variances__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/EstimatorInnovationVariances.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/estimator_innovation_variances__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/estimator_innovation_variances__functions.h" #include "px4_msgs/msg/estimator_innovation_variances__struct.h" #ifdef __cplusplus extern "C" { #endif void EstimatorInnovationVariances__rosidl_typesupport_introspection_c__EstimatorInnovationVariances_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__EstimatorInnovationVariances__init(message_memory); } void EstimatorInnovationVariances__rosidl_typesupport_introspection_c__EstimatorInnovationVariances_fini_function(void * message_memory) { px4_msgs__msg__EstimatorInnovationVariances__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember EstimatorInnovationVariances__rosidl_typesupport_introspection_c__EstimatorInnovationVariances_message_member_array[21] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovationVariances, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovationVariances, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gps_hvel", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovationVariances, gps_hvel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gps_vvel", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovationVariances, gps_vvel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gps_hpos", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovationVariances, gps_hpos), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gps_vpos", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovationVariances, gps_vpos), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ev_hvel", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovationVariances, ev_hvel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ev_vvel", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovationVariances, ev_vvel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ev_hpos", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovationVariances, ev_hpos), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ev_vpos", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovationVariances, ev_vpos), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rng_vpos", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovationVariances, rng_vpos), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "baro_vpos", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovationVariances, baro_vpos), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "aux_hvel", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovationVariances, aux_hvel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "aux_vvel", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovationVariances, aux_vvel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "flow", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovationVariances, flow), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "heading", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovationVariances, heading), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "mag_field", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovationVariances, mag_field), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "drag", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovationVariances, drag), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "airspeed", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovationVariances, airspeed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "beta", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovationVariances, beta), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "hagl", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorInnovationVariances, hagl), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers EstimatorInnovationVariances__rosidl_typesupport_introspection_c__EstimatorInnovationVariances_message_members = { "px4_msgs__msg", // message namespace "EstimatorInnovationVariances", // message name 21, // number of fields sizeof(px4_msgs__msg__EstimatorInnovationVariances), EstimatorInnovationVariances__rosidl_typesupport_introspection_c__EstimatorInnovationVariances_message_member_array, // message members EstimatorInnovationVariances__rosidl_typesupport_introspection_c__EstimatorInnovationVariances_init_function, // function to initialize message memory (memory has to be allocated) EstimatorInnovationVariances__rosidl_typesupport_introspection_c__EstimatorInnovationVariances_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t EstimatorInnovationVariances__rosidl_typesupport_introspection_c__EstimatorInnovationVariances_message_type_support_handle = { 0, &EstimatorInnovationVariances__rosidl_typesupport_introspection_c__EstimatorInnovationVariances_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, EstimatorInnovationVariances)() { if (!EstimatorInnovationVariances__rosidl_typesupport_introspection_c__EstimatorInnovationVariances_message_type_support_handle.typesupport_identifier) { EstimatorInnovationVariances__rosidl_typesupport_introspection_c__EstimatorInnovationVariances_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &EstimatorInnovationVariances__rosidl_typesupport_introspection_c__EstimatorInnovationVariances_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_vehicle_status_flags_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/VehicleStatusFlags.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/vehicle_status_flags__struct.h" #include "px4_msgs/msg/vehicle_status_flags__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__vehicle_status_flags__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[54]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._vehicle_status_flags.VehicleStatusFlags", full_classname_dest, 53) == 0); } px4_msgs__msg__VehicleStatusFlags * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // condition_calibration_enabled PyObject * field = PyObject_GetAttrString(_pymsg, "condition_calibration_enabled"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->condition_calibration_enabled = (Py_True == field); Py_DECREF(field); } { // condition_system_sensors_initialized PyObject * field = PyObject_GetAttrString(_pymsg, "condition_system_sensors_initialized"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->condition_system_sensors_initialized = (Py_True == field); Py_DECREF(field); } { // condition_system_hotplug_timeout PyObject * field = PyObject_GetAttrString(_pymsg, "condition_system_hotplug_timeout"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->condition_system_hotplug_timeout = (Py_True == field); Py_DECREF(field); } { // condition_system_returned_to_home PyObject * field = PyObject_GetAttrString(_pymsg, "condition_system_returned_to_home"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->condition_system_returned_to_home = (Py_True == field); Py_DECREF(field); } { // condition_auto_mission_available PyObject * field = PyObject_GetAttrString(_pymsg, "condition_auto_mission_available"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->condition_auto_mission_available = (Py_True == field); Py_DECREF(field); } { // condition_angular_velocity_valid PyObject * field = PyObject_GetAttrString(_pymsg, "condition_angular_velocity_valid"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->condition_angular_velocity_valid = (Py_True == field); Py_DECREF(field); } { // condition_attitude_valid PyObject * field = PyObject_GetAttrString(_pymsg, "condition_attitude_valid"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->condition_attitude_valid = (Py_True == field); Py_DECREF(field); } { // condition_local_altitude_valid PyObject * field = PyObject_GetAttrString(_pymsg, "condition_local_altitude_valid"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->condition_local_altitude_valid = (Py_True == field); Py_DECREF(field); } { // condition_local_position_valid PyObject * field = PyObject_GetAttrString(_pymsg, "condition_local_position_valid"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->condition_local_position_valid = (Py_True == field); Py_DECREF(field); } { // condition_local_velocity_valid PyObject * field = PyObject_GetAttrString(_pymsg, "condition_local_velocity_valid"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->condition_local_velocity_valid = (Py_True == field); Py_DECREF(field); } { // condition_global_position_valid PyObject * field = PyObject_GetAttrString(_pymsg, "condition_global_position_valid"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->condition_global_position_valid = (Py_True == field); Py_DECREF(field); } { // condition_home_position_valid PyObject * field = PyObject_GetAttrString(_pymsg, "condition_home_position_valid"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->condition_home_position_valid = (Py_True == field); Py_DECREF(field); } { // condition_power_input_valid PyObject * field = PyObject_GetAttrString(_pymsg, "condition_power_input_valid"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->condition_power_input_valid = (Py_True == field); Py_DECREF(field); } { // condition_battery_healthy PyObject * field = PyObject_GetAttrString(_pymsg, "condition_battery_healthy"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->condition_battery_healthy = (Py_True == field); Py_DECREF(field); } { // condition_escs_error PyObject * field = PyObject_GetAttrString(_pymsg, "condition_escs_error"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->condition_escs_error = (Py_True == field); Py_DECREF(field); } { // condition_escs_failure PyObject * field = PyObject_GetAttrString(_pymsg, "condition_escs_failure"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->condition_escs_failure = (Py_True == field); Py_DECREF(field); } { // circuit_breaker_engaged_power_check PyObject * field = PyObject_GetAttrString(_pymsg, "circuit_breaker_engaged_power_check"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->circuit_breaker_engaged_power_check = (Py_True == field); Py_DECREF(field); } { // circuit_breaker_engaged_airspd_check PyObject * field = PyObject_GetAttrString(_pymsg, "circuit_breaker_engaged_airspd_check"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->circuit_breaker_engaged_airspd_check = (Py_True == field); Py_DECREF(field); } { // circuit_breaker_engaged_enginefailure_check PyObject * field = PyObject_GetAttrString(_pymsg, "circuit_breaker_engaged_enginefailure_check"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->circuit_breaker_engaged_enginefailure_check = (Py_True == field); Py_DECREF(field); } { // circuit_breaker_flight_termination_disabled PyObject * field = PyObject_GetAttrString(_pymsg, "circuit_breaker_flight_termination_disabled"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->circuit_breaker_flight_termination_disabled = (Py_True == field); Py_DECREF(field); } { // circuit_breaker_engaged_usb_check PyObject * field = PyObject_GetAttrString(_pymsg, "circuit_breaker_engaged_usb_check"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->circuit_breaker_engaged_usb_check = (Py_True == field); Py_DECREF(field); } { // circuit_breaker_engaged_posfailure_check PyObject * field = PyObject_GetAttrString(_pymsg, "circuit_breaker_engaged_posfailure_check"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->circuit_breaker_engaged_posfailure_check = (Py_True == field); Py_DECREF(field); } { // circuit_breaker_vtol_fw_arming_check PyObject * field = PyObject_GetAttrString(_pymsg, "circuit_breaker_vtol_fw_arming_check"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->circuit_breaker_vtol_fw_arming_check = (Py_True == field); Py_DECREF(field); } { // offboard_control_signal_found_once PyObject * field = PyObject_GetAttrString(_pymsg, "offboard_control_signal_found_once"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->offboard_control_signal_found_once = (Py_True == field); Py_DECREF(field); } { // offboard_control_signal_lost PyObject * field = PyObject_GetAttrString(_pymsg, "offboard_control_signal_lost"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->offboard_control_signal_lost = (Py_True == field); Py_DECREF(field); } { // rc_signal_found_once PyObject * field = PyObject_GetAttrString(_pymsg, "rc_signal_found_once"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->rc_signal_found_once = (Py_True == field); Py_DECREF(field); } { // rc_input_blocked PyObject * field = PyObject_GetAttrString(_pymsg, "rc_input_blocked"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->rc_input_blocked = (Py_True == field); Py_DECREF(field); } { // rc_calibration_valid PyObject * field = PyObject_GetAttrString(_pymsg, "rc_calibration_valid"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->rc_calibration_valid = (Py_True == field); Py_DECREF(field); } { // vtol_transition_failure PyObject * field = PyObject_GetAttrString(_pymsg, "vtol_transition_failure"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->vtol_transition_failure = (Py_True == field); Py_DECREF(field); } { // usb_connected PyObject * field = PyObject_GetAttrString(_pymsg, "usb_connected"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->usb_connected = (Py_True == field); Py_DECREF(field); } { // sd_card_detected_once PyObject * field = PyObject_GetAttrString(_pymsg, "sd_card_detected_once"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->sd_card_detected_once = (Py_True == field); Py_DECREF(field); } { // avoidance_system_required PyObject * field = PyObject_GetAttrString(_pymsg, "avoidance_system_required"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->avoidance_system_required = (Py_True == field); Py_DECREF(field); } { // avoidance_system_valid PyObject * field = PyObject_GetAttrString(_pymsg, "avoidance_system_valid"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->avoidance_system_valid = (Py_True == field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__vehicle_status_flags__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of VehicleStatusFlags */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._vehicle_status_flags"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "VehicleStatusFlags"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__VehicleStatusFlags * ros_message = (px4_msgs__msg__VehicleStatusFlags *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // condition_calibration_enabled PyObject * field = NULL; field = PyBool_FromLong(ros_message->condition_calibration_enabled ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "condition_calibration_enabled", field); Py_DECREF(field); if (rc) { return NULL; } } } { // condition_system_sensors_initialized PyObject * field = NULL; field = PyBool_FromLong(ros_message->condition_system_sensors_initialized ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "condition_system_sensors_initialized", field); Py_DECREF(field); if (rc) { return NULL; } } } { // condition_system_hotplug_timeout PyObject * field = NULL; field = PyBool_FromLong(ros_message->condition_system_hotplug_timeout ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "condition_system_hotplug_timeout", field); Py_DECREF(field); if (rc) { return NULL; } } } { // condition_system_returned_to_home PyObject * field = NULL; field = PyBool_FromLong(ros_message->condition_system_returned_to_home ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "condition_system_returned_to_home", field); Py_DECREF(field); if (rc) { return NULL; } } } { // condition_auto_mission_available PyObject * field = NULL; field = PyBool_FromLong(ros_message->condition_auto_mission_available ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "condition_auto_mission_available", field); Py_DECREF(field); if (rc) { return NULL; } } } { // condition_angular_velocity_valid PyObject * field = NULL; field = PyBool_FromLong(ros_message->condition_angular_velocity_valid ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "condition_angular_velocity_valid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // condition_attitude_valid PyObject * field = NULL; field = PyBool_FromLong(ros_message->condition_attitude_valid ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "condition_attitude_valid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // condition_local_altitude_valid PyObject * field = NULL; field = PyBool_FromLong(ros_message->condition_local_altitude_valid ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "condition_local_altitude_valid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // condition_local_position_valid PyObject * field = NULL; field = PyBool_FromLong(ros_message->condition_local_position_valid ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "condition_local_position_valid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // condition_local_velocity_valid PyObject * field = NULL; field = PyBool_FromLong(ros_message->condition_local_velocity_valid ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "condition_local_velocity_valid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // condition_global_position_valid PyObject * field = NULL; field = PyBool_FromLong(ros_message->condition_global_position_valid ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "condition_global_position_valid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // condition_home_position_valid PyObject * field = NULL; field = PyBool_FromLong(ros_message->condition_home_position_valid ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "condition_home_position_valid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // condition_power_input_valid PyObject * field = NULL; field = PyBool_FromLong(ros_message->condition_power_input_valid ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "condition_power_input_valid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // condition_battery_healthy PyObject * field = NULL; field = PyBool_FromLong(ros_message->condition_battery_healthy ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "condition_battery_healthy", field); Py_DECREF(field); if (rc) { return NULL; } } } { // condition_escs_error PyObject * field = NULL; field = PyBool_FromLong(ros_message->condition_escs_error ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "condition_escs_error", field); Py_DECREF(field); if (rc) { return NULL; } } } { // condition_escs_failure PyObject * field = NULL; field = PyBool_FromLong(ros_message->condition_escs_failure ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "condition_escs_failure", field); Py_DECREF(field); if (rc) { return NULL; } } } { // circuit_breaker_engaged_power_check PyObject * field = NULL; field = PyBool_FromLong(ros_message->circuit_breaker_engaged_power_check ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "circuit_breaker_engaged_power_check", field); Py_DECREF(field); if (rc) { return NULL; } } } { // circuit_breaker_engaged_airspd_check PyObject * field = NULL; field = PyBool_FromLong(ros_message->circuit_breaker_engaged_airspd_check ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "circuit_breaker_engaged_airspd_check", field); Py_DECREF(field); if (rc) { return NULL; } } } { // circuit_breaker_engaged_enginefailure_check PyObject * field = NULL; field = PyBool_FromLong(ros_message->circuit_breaker_engaged_enginefailure_check ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "circuit_breaker_engaged_enginefailure_check", field); Py_DECREF(field); if (rc) { return NULL; } } } { // circuit_breaker_flight_termination_disabled PyObject * field = NULL; field = PyBool_FromLong(ros_message->circuit_breaker_flight_termination_disabled ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "circuit_breaker_flight_termination_disabled", field); Py_DECREF(field); if (rc) { return NULL; } } } { // circuit_breaker_engaged_usb_check PyObject * field = NULL; field = PyBool_FromLong(ros_message->circuit_breaker_engaged_usb_check ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "circuit_breaker_engaged_usb_check", field); Py_DECREF(field); if (rc) { return NULL; } } } { // circuit_breaker_engaged_posfailure_check PyObject * field = NULL; field = PyBool_FromLong(ros_message->circuit_breaker_engaged_posfailure_check ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "circuit_breaker_engaged_posfailure_check", field); Py_DECREF(field); if (rc) { return NULL; } } } { // circuit_breaker_vtol_fw_arming_check PyObject * field = NULL; field = PyBool_FromLong(ros_message->circuit_breaker_vtol_fw_arming_check ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "circuit_breaker_vtol_fw_arming_check", field); Py_DECREF(field); if (rc) { return NULL; } } } { // offboard_control_signal_found_once PyObject * field = NULL; field = PyBool_FromLong(ros_message->offboard_control_signal_found_once ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "offboard_control_signal_found_once", field); Py_DECREF(field); if (rc) { return NULL; } } } { // offboard_control_signal_lost PyObject * field = NULL; field = PyBool_FromLong(ros_message->offboard_control_signal_lost ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "offboard_control_signal_lost", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rc_signal_found_once PyObject * field = NULL; field = PyBool_FromLong(ros_message->rc_signal_found_once ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "rc_signal_found_once", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rc_input_blocked PyObject * field = NULL; field = PyBool_FromLong(ros_message->rc_input_blocked ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "rc_input_blocked", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rc_calibration_valid PyObject * field = NULL; field = PyBool_FromLong(ros_message->rc_calibration_valid ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "rc_calibration_valid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // vtol_transition_failure PyObject * field = NULL; field = PyBool_FromLong(ros_message->vtol_transition_failure ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "vtol_transition_failure", field); Py_DECREF(field); if (rc) { return NULL; } } } { // usb_connected PyObject * field = NULL; field = PyBool_FromLong(ros_message->usb_connected ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "usb_connected", field); Py_DECREF(field); if (rc) { return NULL; } } } { // sd_card_detected_once PyObject * field = NULL; field = PyBool_FromLong(ros_message->sd_card_detected_once ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "sd_card_detected_once", field); Py_DECREF(field); if (rc) { return NULL; } } } { // avoidance_system_required PyObject * field = NULL; field = PyBool_FromLong(ros_message->avoidance_system_required ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "avoidance_system_required", field); Py_DECREF(field); if (rc) { return NULL; } } } { // avoidance_system_valid PyObject * field = NULL; field = PyBool_FromLong(ros_message->avoidance_system_valid ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "avoidance_system_valid", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_controls4__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/ActuatorControls4.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/actuator_controls4__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__ActuatorControls4__init(px4_msgs__msg__ActuatorControls4 * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // control return true; } void px4_msgs__msg__ActuatorControls4__fini(px4_msgs__msg__ActuatorControls4 * msg) { if (!msg) { return; } // timestamp // timestamp_sample // control } px4_msgs__msg__ActuatorControls4 * px4_msgs__msg__ActuatorControls4__create() { px4_msgs__msg__ActuatorControls4 * msg = (px4_msgs__msg__ActuatorControls4 *)malloc(sizeof(px4_msgs__msg__ActuatorControls4)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__ActuatorControls4)); bool success = px4_msgs__msg__ActuatorControls4__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__ActuatorControls4__destroy(px4_msgs__msg__ActuatorControls4 * msg) { if (msg) { px4_msgs__msg__ActuatorControls4__fini(msg); } free(msg); } bool px4_msgs__msg__ActuatorControls4__Sequence__init(px4_msgs__msg__ActuatorControls4__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__ActuatorControls4 * data = NULL; if (size) { data = (px4_msgs__msg__ActuatorControls4 *)calloc(size, sizeof(px4_msgs__msg__ActuatorControls4)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__ActuatorControls4__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__ActuatorControls4__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__ActuatorControls4__Sequence__fini(px4_msgs__msg__ActuatorControls4__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__ActuatorControls4__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__ActuatorControls4__Sequence * px4_msgs__msg__ActuatorControls4__Sequence__create(size_t size) { px4_msgs__msg__ActuatorControls4__Sequence * array = (px4_msgs__msg__ActuatorControls4__Sequence *)malloc(sizeof(px4_msgs__msg__ActuatorControls4__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__ActuatorControls4__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__ActuatorControls4__Sequence__destroy(px4_msgs__msg__ActuatorControls4__Sequence * array) { if (array) { px4_msgs__msg__ActuatorControls4__Sequence__fini(array); } free(array); } <file_sep>/build/px4_ros_com/CMakeFiles/new_offboard_control.dir/cmake_clean.cmake file(REMOVE_RECURSE "CMakeFiles/new_offboard_control.dir/src/examples/offboard/new_offboard_control.cpp.o" "new_offboard_control.pdb" "new_offboard_control" ) # Per-language clean rules from dependency scanning. foreach(lang CXX) include(CMakeFiles/new_offboard_control.dir/cmake_clean_${lang}.cmake OPTIONAL) endforeach() <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_sensor_correction.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/SensorCorrection.idl # generated code does not contain a copyright notice # Import statements for member types # Member 'gyro_device_ids' # Member 'gyro_offset_0' # Member 'gyro_offset_1' # Member 'gyro_offset_2' # Member 'gyro_offset_3' # Member 'accel_device_ids' # Member 'accel_offset_0' # Member 'accel_offset_1' # Member 'accel_offset_2' # Member 'accel_offset_3' # Member 'baro_device_ids' import numpy # noqa: E402, I100 import rosidl_parser.definition # noqa: E402, I100 class Metaclass_SensorCorrection(type): """Metaclass of message 'SensorCorrection'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.SensorCorrection') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__sensor_correction cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__sensor_correction cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__sensor_correction cls._TYPE_SUPPORT = module.type_support_msg__msg__sensor_correction cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__sensor_correction @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class SensorCorrection(metaclass=Metaclass_SensorCorrection): """Message class 'SensorCorrection'.""" __slots__ = [ '_timestamp', '_gyro_device_ids', '_gyro_offset_0', '_gyro_offset_1', '_gyro_offset_2', '_gyro_offset_3', '_accel_device_ids', '_accel_offset_0', '_accel_offset_1', '_accel_offset_2', '_accel_offset_3', '_baro_device_ids', '_baro_offset_0', '_baro_offset_1', '_baro_offset_2', '_baro_offset_3', ] _fields_and_field_types = { 'timestamp': 'uint64', 'gyro_device_ids': 'uint32[4]', 'gyro_offset_0': 'float[3]', 'gyro_offset_1': 'float[3]', 'gyro_offset_2': 'float[3]', 'gyro_offset_3': 'float[3]', 'accel_device_ids': 'uint32[4]', 'accel_offset_0': 'float[3]', 'accel_offset_1': 'float[3]', 'accel_offset_2': 'float[3]', 'accel_offset_3': 'float[3]', 'baro_device_ids': 'uint32[4]', 'baro_offset_0': 'float', 'baro_offset_1': 'float', 'baro_offset_2': 'float', 'baro_offset_3': 'float', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('uint32'), 4), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('uint32'), 4), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('uint32'), 4), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) if 'gyro_device_ids' not in kwargs: self.gyro_device_ids = numpy.zeros(4, dtype=numpy.uint32) else: self.gyro_device_ids = numpy.array(kwargs.get('gyro_device_ids'), dtype=numpy.uint32) assert self.gyro_device_ids.shape == (4, ) if 'gyro_offset_0' not in kwargs: self.gyro_offset_0 = numpy.zeros(3, dtype=numpy.float32) else: self.gyro_offset_0 = numpy.array(kwargs.get('gyro_offset_0'), dtype=numpy.float32) assert self.gyro_offset_0.shape == (3, ) if 'gyro_offset_1' not in kwargs: self.gyro_offset_1 = numpy.zeros(3, dtype=numpy.float32) else: self.gyro_offset_1 = numpy.array(kwargs.get('gyro_offset_1'), dtype=numpy.float32) assert self.gyro_offset_1.shape == (3, ) if 'gyro_offset_2' not in kwargs: self.gyro_offset_2 = numpy.zeros(3, dtype=numpy.float32) else: self.gyro_offset_2 = numpy.array(kwargs.get('gyro_offset_2'), dtype=numpy.float32) assert self.gyro_offset_2.shape == (3, ) if 'gyro_offset_3' not in kwargs: self.gyro_offset_3 = numpy.zeros(3, dtype=numpy.float32) else: self.gyro_offset_3 = numpy.array(kwargs.get('gyro_offset_3'), dtype=numpy.float32) assert self.gyro_offset_3.shape == (3, ) if 'accel_device_ids' not in kwargs: self.accel_device_ids = numpy.zeros(4, dtype=numpy.uint32) else: self.accel_device_ids = numpy.array(kwargs.get('accel_device_ids'), dtype=numpy.uint32) assert self.accel_device_ids.shape == (4, ) if 'accel_offset_0' not in kwargs: self.accel_offset_0 = numpy.zeros(3, dtype=numpy.float32) else: self.accel_offset_0 = numpy.array(kwargs.get('accel_offset_0'), dtype=numpy.float32) assert self.accel_offset_0.shape == (3, ) if 'accel_offset_1' not in kwargs: self.accel_offset_1 = numpy.zeros(3, dtype=numpy.float32) else: self.accel_offset_1 = numpy.array(kwargs.get('accel_offset_1'), dtype=numpy.float32) assert self.accel_offset_1.shape == (3, ) if 'accel_offset_2' not in kwargs: self.accel_offset_2 = numpy.zeros(3, dtype=numpy.float32) else: self.accel_offset_2 = numpy.array(kwargs.get('accel_offset_2'), dtype=numpy.float32) assert self.accel_offset_2.shape == (3, ) if 'accel_offset_3' not in kwargs: self.accel_offset_3 = numpy.zeros(3, dtype=numpy.float32) else: self.accel_offset_3 = numpy.array(kwargs.get('accel_offset_3'), dtype=numpy.float32) assert self.accel_offset_3.shape == (3, ) if 'baro_device_ids' not in kwargs: self.baro_device_ids = numpy.zeros(4, dtype=numpy.uint32) else: self.baro_device_ids = numpy.array(kwargs.get('baro_device_ids'), dtype=numpy.uint32) assert self.baro_device_ids.shape == (4, ) self.baro_offset_0 = kwargs.get('baro_offset_0', float()) self.baro_offset_1 = kwargs.get('baro_offset_1', float()) self.baro_offset_2 = kwargs.get('baro_offset_2', float()) self.baro_offset_3 = kwargs.get('baro_offset_3', float()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if all(self.gyro_device_ids != other.gyro_device_ids): return False if all(self.gyro_offset_0 != other.gyro_offset_0): return False if all(self.gyro_offset_1 != other.gyro_offset_1): return False if all(self.gyro_offset_2 != other.gyro_offset_2): return False if all(self.gyro_offset_3 != other.gyro_offset_3): return False if all(self.accel_device_ids != other.accel_device_ids): return False if all(self.accel_offset_0 != other.accel_offset_0): return False if all(self.accel_offset_1 != other.accel_offset_1): return False if all(self.accel_offset_2 != other.accel_offset_2): return False if all(self.accel_offset_3 != other.accel_offset_3): return False if all(self.baro_device_ids != other.baro_device_ids): return False if self.baro_offset_0 != other.baro_offset_0: return False if self.baro_offset_1 != other.baro_offset_1: return False if self.baro_offset_2 != other.baro_offset_2: return False if self.baro_offset_3 != other.baro_offset_3: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def gyro_device_ids(self): """Message field 'gyro_device_ids'.""" return self._gyro_device_ids @gyro_device_ids.setter def gyro_device_ids(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.uint32, \ "The 'gyro_device_ids' numpy.ndarray() must have the dtype of 'numpy.uint32'" assert value.size == 4, \ "The 'gyro_device_ids' numpy.ndarray() must have a size of 4" self._gyro_device_ids = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 4 and all(isinstance(v, int) for v in value) and all(val >= 0 and val < 4294967296 for val in value)), \ "The 'gyro_device_ids' field must be a set or sequence with length 4 and each value of type 'int' and each unsigned integer in [0, 4294967295]" self._gyro_device_ids = numpy.array(value, dtype=numpy.uint32) @property def gyro_offset_0(self): """Message field 'gyro_offset_0'.""" return self._gyro_offset_0 @gyro_offset_0.setter def gyro_offset_0(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'gyro_offset_0' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'gyro_offset_0' numpy.ndarray() must have a size of 3" self._gyro_offset_0 = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'gyro_offset_0' field must be a set or sequence with length 3 and each value of type 'float'" self._gyro_offset_0 = numpy.array(value, dtype=numpy.float32) @property def gyro_offset_1(self): """Message field 'gyro_offset_1'.""" return self._gyro_offset_1 @gyro_offset_1.setter def gyro_offset_1(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'gyro_offset_1' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'gyro_offset_1' numpy.ndarray() must have a size of 3" self._gyro_offset_1 = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'gyro_offset_1' field must be a set or sequence with length 3 and each value of type 'float'" self._gyro_offset_1 = numpy.array(value, dtype=numpy.float32) @property def gyro_offset_2(self): """Message field 'gyro_offset_2'.""" return self._gyro_offset_2 @gyro_offset_2.setter def gyro_offset_2(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'gyro_offset_2' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'gyro_offset_2' numpy.ndarray() must have a size of 3" self._gyro_offset_2 = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'gyro_offset_2' field must be a set or sequence with length 3 and each value of type 'float'" self._gyro_offset_2 = numpy.array(value, dtype=numpy.float32) @property def gyro_offset_3(self): """Message field 'gyro_offset_3'.""" return self._gyro_offset_3 @gyro_offset_3.setter def gyro_offset_3(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'gyro_offset_3' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'gyro_offset_3' numpy.ndarray() must have a size of 3" self._gyro_offset_3 = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'gyro_offset_3' field must be a set or sequence with length 3 and each value of type 'float'" self._gyro_offset_3 = numpy.array(value, dtype=numpy.float32) @property def accel_device_ids(self): """Message field 'accel_device_ids'.""" return self._accel_device_ids @accel_device_ids.setter def accel_device_ids(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.uint32, \ "The 'accel_device_ids' numpy.ndarray() must have the dtype of 'numpy.uint32'" assert value.size == 4, \ "The 'accel_device_ids' numpy.ndarray() must have a size of 4" self._accel_device_ids = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 4 and all(isinstance(v, int) for v in value) and all(val >= 0 and val < 4294967296 for val in value)), \ "The 'accel_device_ids' field must be a set or sequence with length 4 and each value of type 'int' and each unsigned integer in [0, 4294967295]" self._accel_device_ids = numpy.array(value, dtype=numpy.uint32) @property def accel_offset_0(self): """Message field 'accel_offset_0'.""" return self._accel_offset_0 @accel_offset_0.setter def accel_offset_0(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'accel_offset_0' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'accel_offset_0' numpy.ndarray() must have a size of 3" self._accel_offset_0 = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'accel_offset_0' field must be a set or sequence with length 3 and each value of type 'float'" self._accel_offset_0 = numpy.array(value, dtype=numpy.float32) @property def accel_offset_1(self): """Message field 'accel_offset_1'.""" return self._accel_offset_1 @accel_offset_1.setter def accel_offset_1(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'accel_offset_1' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'accel_offset_1' numpy.ndarray() must have a size of 3" self._accel_offset_1 = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'accel_offset_1' field must be a set or sequence with length 3 and each value of type 'float'" self._accel_offset_1 = numpy.array(value, dtype=numpy.float32) @property def accel_offset_2(self): """Message field 'accel_offset_2'.""" return self._accel_offset_2 @accel_offset_2.setter def accel_offset_2(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'accel_offset_2' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'accel_offset_2' numpy.ndarray() must have a size of 3" self._accel_offset_2 = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'accel_offset_2' field must be a set or sequence with length 3 and each value of type 'float'" self._accel_offset_2 = numpy.array(value, dtype=numpy.float32) @property def accel_offset_3(self): """Message field 'accel_offset_3'.""" return self._accel_offset_3 @accel_offset_3.setter def accel_offset_3(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'accel_offset_3' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'accel_offset_3' numpy.ndarray() must have a size of 3" self._accel_offset_3 = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'accel_offset_3' field must be a set or sequence with length 3 and each value of type 'float'" self._accel_offset_3 = numpy.array(value, dtype=numpy.float32) @property def baro_device_ids(self): """Message field 'baro_device_ids'.""" return self._baro_device_ids @baro_device_ids.setter def baro_device_ids(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.uint32, \ "The 'baro_device_ids' numpy.ndarray() must have the dtype of 'numpy.uint32'" assert value.size == 4, \ "The 'baro_device_ids' numpy.ndarray() must have a size of 4" self._baro_device_ids = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 4 and all(isinstance(v, int) for v in value) and all(val >= 0 and val < 4294967296 for val in value)), \ "The 'baro_device_ids' field must be a set or sequence with length 4 and each value of type 'int' and each unsigned integer in [0, 4294967295]" self._baro_device_ids = numpy.array(value, dtype=numpy.uint32) @property def baro_offset_0(self): """Message field 'baro_offset_0'.""" return self._baro_offset_0 @baro_offset_0.setter def baro_offset_0(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'baro_offset_0' field must be of type 'float'" self._baro_offset_0 = value @property def baro_offset_1(self): """Message field 'baro_offset_1'.""" return self._baro_offset_1 @baro_offset_1.setter def baro_offset_1(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'baro_offset_1' field must be of type 'float'" self._baro_offset_1 = value @property def baro_offset_2(self): """Message field 'baro_offset_2'.""" return self._baro_offset_2 @baro_offset_2.setter def baro_offset_2(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'baro_offset_2' field must be of type 'float'" self._baro_offset_2 = value @property def baro_offset_3(self): """Message field 'baro_offset_3'.""" return self._baro_offset_3 @baro_offset_3.setter def baro_offset_3(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'baro_offset_3' field must be of type 'float'" self._baro_offset_3 = value <file_sep>/install/px4_msgs/include/px4_msgs/msg/ping.h /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/ping.h<file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/esc_status__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/EscStatus.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/esc_status__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void EscStatus_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::EscStatus(_init); } void EscStatus_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::EscStatus *>(message_memory); typed_message->~EscStatus(); } size_t size_function__EscStatus__esc(const void * untyped_member) { (void)untyped_member; return 8; } const void * get_const_function__EscStatus__esc(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<px4_msgs::msg::EscReport, 8> *>(untyped_member); return &member[index]; } void * get_function__EscStatus__esc(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<px4_msgs::msg::EscReport, 8> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember EscStatus_message_member_array[7] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EscStatus, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "counter", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EscStatus, counter), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "esc_count", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EscStatus, esc_count), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "esc_connectiontype", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EscStatus, esc_connectiontype), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "esc_online_flags", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EscStatus, esc_online_flags), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "esc_armed_flags", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EscStatus, esc_armed_flags), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "esc", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_MESSAGE, // type 0, // upper bound of string ::rosidl_typesupport_introspection_cpp::get_message_type_support_handle<px4_msgs::msg::EscReport>(), // members of sub message true, // is array 8, // array size false, // is upper bound offsetof(px4_msgs::msg::EscStatus, esc), // bytes offset in struct nullptr, // default value size_function__EscStatus__esc, // size() function pointer get_const_function__EscStatus__esc, // get_const(index) function pointer get_function__EscStatus__esc, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers EscStatus_message_members = { "px4_msgs::msg", // message namespace "EscStatus", // message name 7, // number of fields sizeof(px4_msgs::msg::EscStatus), EscStatus_message_member_array, // message members EscStatus_init_function, // function to initialize message memory (memory has to be allocated) EscStatus_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t EscStatus_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &EscStatus_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::EscStatus>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EscStatus_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, EscStatus)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EscStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleAngularVelocity.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_angular_velocity__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__VehicleAngularVelocity__init(px4_msgs__msg__VehicleAngularVelocity * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // xyz return true; } void px4_msgs__msg__VehicleAngularVelocity__fini(px4_msgs__msg__VehicleAngularVelocity * msg) { if (!msg) { return; } // timestamp // timestamp_sample // xyz } px4_msgs__msg__VehicleAngularVelocity * px4_msgs__msg__VehicleAngularVelocity__create() { px4_msgs__msg__VehicleAngularVelocity * msg = (px4_msgs__msg__VehicleAngularVelocity *)malloc(sizeof(px4_msgs__msg__VehicleAngularVelocity)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleAngularVelocity)); bool success = px4_msgs__msg__VehicleAngularVelocity__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleAngularVelocity__destroy(px4_msgs__msg__VehicleAngularVelocity * msg) { if (msg) { px4_msgs__msg__VehicleAngularVelocity__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleAngularVelocity__Sequence__init(px4_msgs__msg__VehicleAngularVelocity__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleAngularVelocity * data = NULL; if (size) { data = (px4_msgs__msg__VehicleAngularVelocity *)calloc(size, sizeof(px4_msgs__msg__VehicleAngularVelocity)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleAngularVelocity__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleAngularVelocity__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleAngularVelocity__Sequence__fini(px4_msgs__msg__VehicleAngularVelocity__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleAngularVelocity__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleAngularVelocity__Sequence * px4_msgs__msg__VehicleAngularVelocity__Sequence__create(size_t size) { px4_msgs__msg__VehicleAngularVelocity__Sequence * array = (px4_msgs__msg__VehicleAngularVelocity__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleAngularVelocity__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleAngularVelocity__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleAngularVelocity__Sequence__destroy(px4_msgs__msg__VehicleAngularVelocity__Sequence * array) { if (array) { px4_msgs__msg__VehicleAngularVelocity__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/landing_target_innovations__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/LandingTargetInnovations.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__LANDING_TARGET_INNOVATIONS__FUNCTIONS_H_ #define PX4_MSGS__MSG__LANDING_TARGET_INNOVATIONS__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/landing_target_innovations__struct.h" /// Initialize msg/LandingTargetInnovations message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__LandingTargetInnovations * )) before or use * px4_msgs__msg__LandingTargetInnovations__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__LandingTargetInnovations__init(px4_msgs__msg__LandingTargetInnovations * msg); /// Finalize msg/LandingTargetInnovations message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__LandingTargetInnovations__fini(px4_msgs__msg__LandingTargetInnovations * msg); /// Create msg/LandingTargetInnovations message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__LandingTargetInnovations__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__LandingTargetInnovations * px4_msgs__msg__LandingTargetInnovations__create(); /// Destroy msg/LandingTargetInnovations message. /** * It calls * px4_msgs__msg__LandingTargetInnovations__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__LandingTargetInnovations__destroy(px4_msgs__msg__LandingTargetInnovations * msg); /// Initialize array of msg/LandingTargetInnovations messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__LandingTargetInnovations__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__LandingTargetInnovations__Sequence__init(px4_msgs__msg__LandingTargetInnovations__Sequence * array, size_t size); /// Finalize array of msg/LandingTargetInnovations messages. /** * It calls * px4_msgs__msg__LandingTargetInnovations__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__LandingTargetInnovations__Sequence__fini(px4_msgs__msg__LandingTargetInnovations__Sequence * array); /// Create array of msg/LandingTargetInnovations messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__LandingTargetInnovations__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__LandingTargetInnovations__Sequence * px4_msgs__msg__LandingTargetInnovations__Sequence__create(size_t size); /// Destroy array of msg/LandingTargetInnovations messages. /** * It calls * px4_msgs__msg__LandingTargetInnovations__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__LandingTargetInnovations__Sequence__destroy(px4_msgs__msg__LandingTargetInnovations__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__LANDING_TARGET_INNOVATIONS__FUNCTIONS_H_ <file_sep>/install/px4_ros_com/share/px4_ros_com/launch/sensor_combined_listener.launch.py /home/navlab-tx2-4/px4_ros_com_ros2/src/px4_ros_com/launch/sensor_combined_listener.launch.py<file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_thrust_setpoint__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleThrustSetpoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_THRUST_SETPOINT__STRUCT_H_ #define PX4_MSGS__MSG__VEHICLE_THRUST_SETPOINT__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/VehicleThrustSetpoint in the package px4_msgs. typedef struct px4_msgs__msg__VehicleThrustSetpoint { uint64_t timestamp; uint64_t timestamp_sample; float xyz[3]; } px4_msgs__msg__VehicleThrustSetpoint; // Struct for a sequence of px4_msgs__msg__VehicleThrustSetpoint. typedef struct px4_msgs__msg__VehicleThrustSetpoint__Sequence { px4_msgs__msg__VehicleThrustSetpoint * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__VehicleThrustSetpoint__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_THRUST_SETPOINT__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/ulog_stream_ack.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/UlogStreamAck.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ULOG_STREAM_ACK_H_ #define PX4_MSGS__MSG__ULOG_STREAM_ACK_H_ #include "px4_msgs/msg/ulog_stream_ack__struct.h" #include "px4_msgs/msg/ulog_stream_ack__functions.h" #include "px4_msgs/msg/ulog_stream_ack__type_support.h" #endif // PX4_MSGS__MSG__ULOG_STREAM_ACK_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_global_position__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/EstimatorGlobalPosition.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/estimator_global_position__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__EstimatorGlobalPosition__init(px4_msgs__msg__EstimatorGlobalPosition * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // lat // lon // alt // alt_ellipsoid // delta_alt // lat_lon_reset_counter // alt_reset_counter // eph // epv // terrain_alt // terrain_alt_valid // dead_reckoning return true; } void px4_msgs__msg__EstimatorGlobalPosition__fini(px4_msgs__msg__EstimatorGlobalPosition * msg) { if (!msg) { return; } // timestamp // timestamp_sample // lat // lon // alt // alt_ellipsoid // delta_alt // lat_lon_reset_counter // alt_reset_counter // eph // epv // terrain_alt // terrain_alt_valid // dead_reckoning } px4_msgs__msg__EstimatorGlobalPosition * px4_msgs__msg__EstimatorGlobalPosition__create() { px4_msgs__msg__EstimatorGlobalPosition * msg = (px4_msgs__msg__EstimatorGlobalPosition *)malloc(sizeof(px4_msgs__msg__EstimatorGlobalPosition)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__EstimatorGlobalPosition)); bool success = px4_msgs__msg__EstimatorGlobalPosition__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__EstimatorGlobalPosition__destroy(px4_msgs__msg__EstimatorGlobalPosition * msg) { if (msg) { px4_msgs__msg__EstimatorGlobalPosition__fini(msg); } free(msg); } bool px4_msgs__msg__EstimatorGlobalPosition__Sequence__init(px4_msgs__msg__EstimatorGlobalPosition__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__EstimatorGlobalPosition * data = NULL; if (size) { data = (px4_msgs__msg__EstimatorGlobalPosition *)calloc(size, sizeof(px4_msgs__msg__EstimatorGlobalPosition)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__EstimatorGlobalPosition__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__EstimatorGlobalPosition__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__EstimatorGlobalPosition__Sequence__fini(px4_msgs__msg__EstimatorGlobalPosition__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__EstimatorGlobalPosition__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__EstimatorGlobalPosition__Sequence * px4_msgs__msg__EstimatorGlobalPosition__Sequence__create(size_t size) { px4_msgs__msg__EstimatorGlobalPosition__Sequence * array = (px4_msgs__msg__EstimatorGlobalPosition__Sequence *)malloc(sizeof(px4_msgs__msg__EstimatorGlobalPosition__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__EstimatorGlobalPosition__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__EstimatorGlobalPosition__Sequence__destroy(px4_msgs__msg__EstimatorGlobalPosition__Sequence * array) { if (array) { px4_msgs__msg__EstimatorGlobalPosition__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_innovation_variances__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/EstimatorInnovationVariances.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/estimator_innovation_variances__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/estimator_innovation_variances__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::EstimatorInnovationVariances & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: timestamp_sample cdr << ros_message.timestamp_sample; // Member: gps_hvel { cdr << ros_message.gps_hvel; } // Member: gps_vvel cdr << ros_message.gps_vvel; // Member: gps_hpos { cdr << ros_message.gps_hpos; } // Member: gps_vpos cdr << ros_message.gps_vpos; // Member: ev_hvel { cdr << ros_message.ev_hvel; } // Member: ev_vvel cdr << ros_message.ev_vvel; // Member: ev_hpos { cdr << ros_message.ev_hpos; } // Member: ev_vpos cdr << ros_message.ev_vpos; // Member: rng_vpos cdr << ros_message.rng_vpos; // Member: baro_vpos cdr << ros_message.baro_vpos; // Member: aux_hvel { cdr << ros_message.aux_hvel; } // Member: aux_vvel cdr << ros_message.aux_vvel; // Member: flow { cdr << ros_message.flow; } // Member: heading cdr << ros_message.heading; // Member: mag_field { cdr << ros_message.mag_field; } // Member: drag { cdr << ros_message.drag; } // Member: airspeed cdr << ros_message.airspeed; // Member: beta cdr << ros_message.beta; // Member: hagl cdr << ros_message.hagl; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::EstimatorInnovationVariances & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: timestamp_sample cdr >> ros_message.timestamp_sample; // Member: gps_hvel { cdr >> ros_message.gps_hvel; } // Member: gps_vvel cdr >> ros_message.gps_vvel; // Member: gps_hpos { cdr >> ros_message.gps_hpos; } // Member: gps_vpos cdr >> ros_message.gps_vpos; // Member: ev_hvel { cdr >> ros_message.ev_hvel; } // Member: ev_vvel cdr >> ros_message.ev_vvel; // Member: ev_hpos { cdr >> ros_message.ev_hpos; } // Member: ev_vpos cdr >> ros_message.ev_vpos; // Member: rng_vpos cdr >> ros_message.rng_vpos; // Member: baro_vpos cdr >> ros_message.baro_vpos; // Member: aux_hvel { cdr >> ros_message.aux_hvel; } // Member: aux_vvel cdr >> ros_message.aux_vvel; // Member: flow { cdr >> ros_message.flow; } // Member: heading cdr >> ros_message.heading; // Member: mag_field { cdr >> ros_message.mag_field; } // Member: drag { cdr >> ros_message.drag; } // Member: airspeed cdr >> ros_message.airspeed; // Member: beta cdr >> ros_message.beta; // Member: hagl cdr >> ros_message.hagl; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::EstimatorInnovationVariances & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: timestamp_sample { size_t item_size = sizeof(ros_message.timestamp_sample); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gps_hvel { size_t array_size = 2; size_t item_size = sizeof(ros_message.gps_hvel[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gps_vvel { size_t item_size = sizeof(ros_message.gps_vvel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gps_hpos { size_t array_size = 2; size_t item_size = sizeof(ros_message.gps_hpos[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gps_vpos { size_t item_size = sizeof(ros_message.gps_vpos); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: ev_hvel { size_t array_size = 2; size_t item_size = sizeof(ros_message.ev_hvel[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: ev_vvel { size_t item_size = sizeof(ros_message.ev_vvel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: ev_hpos { size_t array_size = 2; size_t item_size = sizeof(ros_message.ev_hpos[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: ev_vpos { size_t item_size = sizeof(ros_message.ev_vpos); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rng_vpos { size_t item_size = sizeof(ros_message.rng_vpos); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: baro_vpos { size_t item_size = sizeof(ros_message.baro_vpos); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: aux_hvel { size_t array_size = 2; size_t item_size = sizeof(ros_message.aux_hvel[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: aux_vvel { size_t item_size = sizeof(ros_message.aux_vvel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: flow { size_t array_size = 2; size_t item_size = sizeof(ros_message.flow[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: heading { size_t item_size = sizeof(ros_message.heading); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: mag_field { size_t array_size = 3; size_t item_size = sizeof(ros_message.mag_field[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: drag { size_t array_size = 2; size_t item_size = sizeof(ros_message.drag[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: airspeed { size_t item_size = sizeof(ros_message.airspeed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: beta { size_t item_size = sizeof(ros_message.beta); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: hagl { size_t item_size = sizeof(ros_message.hagl); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_EstimatorInnovationVariances( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: timestamp_sample { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: gps_hvel { size_t array_size = 2; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: gps_vvel { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: gps_hpos { size_t array_size = 2; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: gps_vpos { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: ev_hvel { size_t array_size = 2; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: ev_vvel { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: ev_hpos { size_t array_size = 2; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: ev_vpos { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: rng_vpos { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: baro_vpos { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: aux_hvel { size_t array_size = 2; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: aux_vvel { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: flow { size_t array_size = 2; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: heading { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: mag_field { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: drag { size_t array_size = 2; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: airspeed { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: beta { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: hagl { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static bool _EstimatorInnovationVariances__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::EstimatorInnovationVariances *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _EstimatorInnovationVariances__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::EstimatorInnovationVariances *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _EstimatorInnovationVariances__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::EstimatorInnovationVariances *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _EstimatorInnovationVariances__max_serialized_size(bool & full_bounded) { return max_serialized_size_EstimatorInnovationVariances(full_bounded, 0); } static message_type_support_callbacks_t _EstimatorInnovationVariances__callbacks = { "px4_msgs::msg", "EstimatorInnovationVariances", _EstimatorInnovationVariances__cdr_serialize, _EstimatorInnovationVariances__cdr_deserialize, _EstimatorInnovationVariances__get_serialized_size, _EstimatorInnovationVariances__max_serialized_size }; static rosidl_message_type_support_t _EstimatorInnovationVariances__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_EstimatorInnovationVariances__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::EstimatorInnovationVariances>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_EstimatorInnovationVariances__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, EstimatorInnovationVariances)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_EstimatorInnovationVariances__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/yaw_estimator_status__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/YawEstimatorStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__YAW_ESTIMATOR_STATUS__FUNCTIONS_H_ #define PX4_MSGS__MSG__YAW_ESTIMATOR_STATUS__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/yaw_estimator_status__struct.h" /// Initialize msg/YawEstimatorStatus message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__YawEstimatorStatus * )) before or use * px4_msgs__msg__YawEstimatorStatus__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__YawEstimatorStatus__init(px4_msgs__msg__YawEstimatorStatus * msg); /// Finalize msg/YawEstimatorStatus message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__YawEstimatorStatus__fini(px4_msgs__msg__YawEstimatorStatus * msg); /// Create msg/YawEstimatorStatus message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__YawEstimatorStatus__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__YawEstimatorStatus * px4_msgs__msg__YawEstimatorStatus__create(); /// Destroy msg/YawEstimatorStatus message. /** * It calls * px4_msgs__msg__YawEstimatorStatus__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__YawEstimatorStatus__destroy(px4_msgs__msg__YawEstimatorStatus * msg); /// Initialize array of msg/YawEstimatorStatus messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__YawEstimatorStatus__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__YawEstimatorStatus__Sequence__init(px4_msgs__msg__YawEstimatorStatus__Sequence * array, size_t size); /// Finalize array of msg/YawEstimatorStatus messages. /** * It calls * px4_msgs__msg__YawEstimatorStatus__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__YawEstimatorStatus__Sequence__fini(px4_msgs__msg__YawEstimatorStatus__Sequence * array); /// Create array of msg/YawEstimatorStatus messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__YawEstimatorStatus__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__YawEstimatorStatus__Sequence * px4_msgs__msg__YawEstimatorStatus__Sequence__create(size_t size); /// Destroy array of msg/YawEstimatorStatus messages. /** * It calls * px4_msgs__msg__YawEstimatorStatus__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__YawEstimatorStatus__Sequence__destroy(px4_msgs__msg__YawEstimatorStatus__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__YAW_ESTIMATOR_STATUS__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/estimator_event_flags.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_EVENT_FLAGS_HPP_ #define PX4_MSGS__MSG__ESTIMATOR_EVENT_FLAGS_HPP_ #include "px4_msgs/msg/estimator_event_flags__struct.hpp" #include "px4_msgs/msg/estimator_event_flags__traits.hpp" #endif // PX4_MSGS__MSG__ESTIMATOR_EVENT_FLAGS_HPP_ <file_sep>/install/multi_rtd_interfaces/share/multi_rtd_interfaces/cmake/rosidl_cmake-extras.cmake # generated from rosidl_cmake/cmake/rosidl_cmake-extras.cmake.in set(multi_rtd_interfaces_IDL_FILES "msg/RobotTrajectory.idl") set(multi_rtd_interfaces_INTERFACE_FILES "msg/RobotTrajectory.msg") <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_selection__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/SensorSelection.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_SELECTION__STRUCT_H_ #define PX4_MSGS__MSG__SENSOR_SELECTION__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/SensorSelection in the package px4_msgs. typedef struct px4_msgs__msg__SensorSelection { uint64_t timestamp; uint32_t accel_device_id; uint32_t gyro_device_id; } px4_msgs__msg__SensorSelection; // Struct for a sequence of px4_msgs__msg__SensorSelection. typedef struct px4_msgs__msg__SensorSelection__Sequence { px4_msgs__msg__SensorSelection * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__SensorSelection__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__SENSOR_SELECTION__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_accel_fifo.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/SensorAccelFifo.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_ACCEL_FIFO_H_ #define PX4_MSGS__MSG__SENSOR_ACCEL_FIFO_H_ #include "px4_msgs/msg/sensor_accel_fifo__struct.h" #include "px4_msgs/msg/sensor_accel_fifo__functions.h" #include "px4_msgs/msg/sensor_accel_fifo__type_support.h" #endif // PX4_MSGS__MSG__SENSOR_ACCEL_FIFO_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/takeoff_status__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/TakeoffStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TAKEOFF_STATUS__STRUCT_H_ #define PX4_MSGS__MSG__TAKEOFF_STATUS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'TAKEOFF_STATE_UNINITIALIZED'. enum { px4_msgs__msg__TakeoffStatus__TAKEOFF_STATE_UNINITIALIZED = 0 }; /// Constant 'TAKEOFF_STATE_DISARMED'. enum { px4_msgs__msg__TakeoffStatus__TAKEOFF_STATE_DISARMED = 1 }; /// Constant 'TAKEOFF_STATE_SPOOLUP'. enum { px4_msgs__msg__TakeoffStatus__TAKEOFF_STATE_SPOOLUP = 2 }; /// Constant 'TAKEOFF_STATE_READY_FOR_TAKEOFF'. enum { px4_msgs__msg__TakeoffStatus__TAKEOFF_STATE_READY_FOR_TAKEOFF = 3 }; /// Constant 'TAKEOFF_STATE_RAMPUP'. enum { px4_msgs__msg__TakeoffStatus__TAKEOFF_STATE_RAMPUP = 4 }; /// Constant 'TAKEOFF_STATE_FLIGHT'. enum { px4_msgs__msg__TakeoffStatus__TAKEOFF_STATE_FLIGHT = 5 }; // Struct defined in msg/TakeoffStatus in the package px4_msgs. typedef struct px4_msgs__msg__TakeoffStatus { uint64_t timestamp; uint8_t takeoff_state; float tilt_limit; } px4_msgs__msg__TakeoffStatus; // Struct for a sequence of px4_msgs__msg__TakeoffStatus. typedef struct px4_msgs__msg__TakeoffStatus__Sequence { px4_msgs__msg__TakeoffStatus * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__TakeoffStatus__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__TAKEOFF_STATUS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/collision_report.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/CollisionReport.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__COLLISION_REPORT_H_ #define PX4_MSGS__MSG__COLLISION_REPORT_H_ #include "px4_msgs/msg/collision_report__struct.h" #include "px4_msgs/msg/collision_report__functions.h" #include "px4_msgs/msg/collision_report__type_support.h" #endif // PX4_MSGS__MSG__COLLISION_REPORT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/control_allocator_status.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__CONTROL_ALLOCATOR_STATUS_HPP_ #define PX4_MSGS__MSG__CONTROL_ALLOCATOR_STATUS_HPP_ #include "px4_msgs/msg/control_allocator_status__struct.hpp" #include "px4_msgs/msg/control_allocator_status__traits.hpp" #endif // PX4_MSGS__MSG__CONTROL_ALLOCATOR_STATUS_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/cpuload__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/Cpuload.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__CPULOAD__STRUCT_H_ #define PX4_MSGS__MSG__CPULOAD__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/Cpuload in the package px4_msgs. typedef struct px4_msgs__msg__Cpuload { uint64_t timestamp; float load; float ram_usage; } px4_msgs__msg__Cpuload; // Struct for a sequence of px4_msgs__msg__Cpuload. typedef struct px4_msgs__msg__Cpuload__Sequence { px4_msgs__msg__Cpuload * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__Cpuload__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__CPULOAD__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_estimator_innovations.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/EstimatorInnovations.idl # generated code does not contain a copyright notice # Import statements for member types # Member 'gps_hvel' # Member 'gps_hpos' # Member 'ev_hvel' # Member 'ev_hpos' # Member 'aux_hvel' # Member 'flow' # Member 'mag_field' # Member 'drag' import numpy # noqa: E402, I100 import rosidl_parser.definition # noqa: E402, I100 class Metaclass_EstimatorInnovations(type): """Metaclass of message 'EstimatorInnovations'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.EstimatorInnovations') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__estimator_innovations cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__estimator_innovations cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__estimator_innovations cls._TYPE_SUPPORT = module.type_support_msg__msg__estimator_innovations cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__estimator_innovations @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class EstimatorInnovations(metaclass=Metaclass_EstimatorInnovations): """Message class 'EstimatorInnovations'.""" __slots__ = [ '_timestamp', '_timestamp_sample', '_gps_hvel', '_gps_vvel', '_gps_hpos', '_gps_vpos', '_ev_hvel', '_ev_vvel', '_ev_hpos', '_ev_vpos', '_rng_vpos', '_baro_vpos', '_aux_hvel', '_aux_vvel', '_flow', '_heading', '_mag_field', '_drag', '_airspeed', '_beta', '_hagl', ] _fields_and_field_types = { 'timestamp': 'uint64', 'timestamp_sample': 'uint64', 'gps_hvel': 'float[2]', 'gps_vvel': 'float', 'gps_hpos': 'float[2]', 'gps_vpos': 'float', 'ev_hvel': 'float[2]', 'ev_vvel': 'float', 'ev_hpos': 'float[2]', 'ev_vpos': 'float', 'rng_vpos': 'float', 'baro_vpos': 'float', 'aux_hvel': 'float[2]', 'aux_vvel': 'float', 'flow': 'float[2]', 'heading': 'float', 'mag_field': 'float[3]', 'drag': 'float[2]', 'airspeed': 'float', 'beta': 'float', 'hagl': 'float', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 2), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 2), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 2), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 2), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 2), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 2), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 2), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.timestamp_sample = kwargs.get('timestamp_sample', int()) if 'gps_hvel' not in kwargs: self.gps_hvel = numpy.zeros(2, dtype=numpy.float32) else: self.gps_hvel = numpy.array(kwargs.get('gps_hvel'), dtype=numpy.float32) assert self.gps_hvel.shape == (2, ) self.gps_vvel = kwargs.get('gps_vvel', float()) if 'gps_hpos' not in kwargs: self.gps_hpos = numpy.zeros(2, dtype=numpy.float32) else: self.gps_hpos = numpy.array(kwargs.get('gps_hpos'), dtype=numpy.float32) assert self.gps_hpos.shape == (2, ) self.gps_vpos = kwargs.get('gps_vpos', float()) if 'ev_hvel' not in kwargs: self.ev_hvel = numpy.zeros(2, dtype=numpy.float32) else: self.ev_hvel = numpy.array(kwargs.get('ev_hvel'), dtype=numpy.float32) assert self.ev_hvel.shape == (2, ) self.ev_vvel = kwargs.get('ev_vvel', float()) if 'ev_hpos' not in kwargs: self.ev_hpos = numpy.zeros(2, dtype=numpy.float32) else: self.ev_hpos = numpy.array(kwargs.get('ev_hpos'), dtype=numpy.float32) assert self.ev_hpos.shape == (2, ) self.ev_vpos = kwargs.get('ev_vpos', float()) self.rng_vpos = kwargs.get('rng_vpos', float()) self.baro_vpos = kwargs.get('baro_vpos', float()) if 'aux_hvel' not in kwargs: self.aux_hvel = numpy.zeros(2, dtype=numpy.float32) else: self.aux_hvel = numpy.array(kwargs.get('aux_hvel'), dtype=numpy.float32) assert self.aux_hvel.shape == (2, ) self.aux_vvel = kwargs.get('aux_vvel', float()) if 'flow' not in kwargs: self.flow = numpy.zeros(2, dtype=numpy.float32) else: self.flow = numpy.array(kwargs.get('flow'), dtype=numpy.float32) assert self.flow.shape == (2, ) self.heading = kwargs.get('heading', float()) if 'mag_field' not in kwargs: self.mag_field = numpy.zeros(3, dtype=numpy.float32) else: self.mag_field = numpy.array(kwargs.get('mag_field'), dtype=numpy.float32) assert self.mag_field.shape == (3, ) if 'drag' not in kwargs: self.drag = numpy.zeros(2, dtype=numpy.float32) else: self.drag = numpy.array(kwargs.get('drag'), dtype=numpy.float32) assert self.drag.shape == (2, ) self.airspeed = kwargs.get('airspeed', float()) self.beta = kwargs.get('beta', float()) self.hagl = kwargs.get('hagl', float()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.timestamp_sample != other.timestamp_sample: return False if all(self.gps_hvel != other.gps_hvel): return False if self.gps_vvel != other.gps_vvel: return False if all(self.gps_hpos != other.gps_hpos): return False if self.gps_vpos != other.gps_vpos: return False if all(self.ev_hvel != other.ev_hvel): return False if self.ev_vvel != other.ev_vvel: return False if all(self.ev_hpos != other.ev_hpos): return False if self.ev_vpos != other.ev_vpos: return False if self.rng_vpos != other.rng_vpos: return False if self.baro_vpos != other.baro_vpos: return False if all(self.aux_hvel != other.aux_hvel): return False if self.aux_vvel != other.aux_vvel: return False if all(self.flow != other.flow): return False if self.heading != other.heading: return False if all(self.mag_field != other.mag_field): return False if all(self.drag != other.drag): return False if self.airspeed != other.airspeed: return False if self.beta != other.beta: return False if self.hagl != other.hagl: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def timestamp_sample(self): """Message field 'timestamp_sample'.""" return self._timestamp_sample @timestamp_sample.setter def timestamp_sample(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp_sample' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp_sample' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp_sample = value @property def gps_hvel(self): """Message field 'gps_hvel'.""" return self._gps_hvel @gps_hvel.setter def gps_hvel(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'gps_hvel' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 2, \ "The 'gps_hvel' numpy.ndarray() must have a size of 2" self._gps_hvel = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 2 and all(isinstance(v, float) for v in value) and True), \ "The 'gps_hvel' field must be a set or sequence with length 2 and each value of type 'float'" self._gps_hvel = numpy.array(value, dtype=numpy.float32) @property def gps_vvel(self): """Message field 'gps_vvel'.""" return self._gps_vvel @gps_vvel.setter def gps_vvel(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'gps_vvel' field must be of type 'float'" self._gps_vvel = value @property def gps_hpos(self): """Message field 'gps_hpos'.""" return self._gps_hpos @gps_hpos.setter def gps_hpos(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'gps_hpos' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 2, \ "The 'gps_hpos' numpy.ndarray() must have a size of 2" self._gps_hpos = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 2 and all(isinstance(v, float) for v in value) and True), \ "The 'gps_hpos' field must be a set or sequence with length 2 and each value of type 'float'" self._gps_hpos = numpy.array(value, dtype=numpy.float32) @property def gps_vpos(self): """Message field 'gps_vpos'.""" return self._gps_vpos @gps_vpos.setter def gps_vpos(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'gps_vpos' field must be of type 'float'" self._gps_vpos = value @property def ev_hvel(self): """Message field 'ev_hvel'.""" return self._ev_hvel @ev_hvel.setter def ev_hvel(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'ev_hvel' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 2, \ "The 'ev_hvel' numpy.ndarray() must have a size of 2" self._ev_hvel = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 2 and all(isinstance(v, float) for v in value) and True), \ "The 'ev_hvel' field must be a set or sequence with length 2 and each value of type 'float'" self._ev_hvel = numpy.array(value, dtype=numpy.float32) @property def ev_vvel(self): """Message field 'ev_vvel'.""" return self._ev_vvel @ev_vvel.setter def ev_vvel(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'ev_vvel' field must be of type 'float'" self._ev_vvel = value @property def ev_hpos(self): """Message field 'ev_hpos'.""" return self._ev_hpos @ev_hpos.setter def ev_hpos(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'ev_hpos' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 2, \ "The 'ev_hpos' numpy.ndarray() must have a size of 2" self._ev_hpos = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 2 and all(isinstance(v, float) for v in value) and True), \ "The 'ev_hpos' field must be a set or sequence with length 2 and each value of type 'float'" self._ev_hpos = numpy.array(value, dtype=numpy.float32) @property def ev_vpos(self): """Message field 'ev_vpos'.""" return self._ev_vpos @ev_vpos.setter def ev_vpos(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'ev_vpos' field must be of type 'float'" self._ev_vpos = value @property def rng_vpos(self): """Message field 'rng_vpos'.""" return self._rng_vpos @rng_vpos.setter def rng_vpos(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'rng_vpos' field must be of type 'float'" self._rng_vpos = value @property def baro_vpos(self): """Message field 'baro_vpos'.""" return self._baro_vpos @baro_vpos.setter def baro_vpos(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'baro_vpos' field must be of type 'float'" self._baro_vpos = value @property def aux_hvel(self): """Message field 'aux_hvel'.""" return self._aux_hvel @aux_hvel.setter def aux_hvel(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'aux_hvel' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 2, \ "The 'aux_hvel' numpy.ndarray() must have a size of 2" self._aux_hvel = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 2 and all(isinstance(v, float) for v in value) and True), \ "The 'aux_hvel' field must be a set or sequence with length 2 and each value of type 'float'" self._aux_hvel = numpy.array(value, dtype=numpy.float32) @property def aux_vvel(self): """Message field 'aux_vvel'.""" return self._aux_vvel @aux_vvel.setter def aux_vvel(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'aux_vvel' field must be of type 'float'" self._aux_vvel = value @property def flow(self): """Message field 'flow'.""" return self._flow @flow.setter def flow(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'flow' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 2, \ "The 'flow' numpy.ndarray() must have a size of 2" self._flow = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 2 and all(isinstance(v, float) for v in value) and True), \ "The 'flow' field must be a set or sequence with length 2 and each value of type 'float'" self._flow = numpy.array(value, dtype=numpy.float32) @property def heading(self): """Message field 'heading'.""" return self._heading @heading.setter def heading(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'heading' field must be of type 'float'" self._heading = value @property def mag_field(self): """Message field 'mag_field'.""" return self._mag_field @mag_field.setter def mag_field(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'mag_field' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'mag_field' numpy.ndarray() must have a size of 3" self._mag_field = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'mag_field' field must be a set or sequence with length 3 and each value of type 'float'" self._mag_field = numpy.array(value, dtype=numpy.float32) @property def drag(self): """Message field 'drag'.""" return self._drag @drag.setter def drag(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'drag' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 2, \ "The 'drag' numpy.ndarray() must have a size of 2" self._drag = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 2 and all(isinstance(v, float) for v in value) and True), \ "The 'drag' field must be a set or sequence with length 2 and each value of type 'float'" self._drag = numpy.array(value, dtype=numpy.float32) @property def airspeed(self): """Message field 'airspeed'.""" return self._airspeed @airspeed.setter def airspeed(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'airspeed' field must be of type 'float'" self._airspeed = value @property def beta(self): """Message field 'beta'.""" return self._beta @beta.setter def beta(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'beta' field must be of type 'float'" self._beta = value @property def hagl(self): """Message field 'hagl'.""" return self._hagl @hagl.setter def hagl(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'hagl' field must be of type 'float'" self._hagl = value <file_sep>/install/px4_msgs/include/px4_msgs/msg/ulog_stream.h /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/ulog_stream.h<file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance_fused__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/ObstacleDistanceFused.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/obstacle_distance_fused__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/obstacle_distance_fused__functions.h" #include "px4_msgs/msg/obstacle_distance_fused__struct.h" #ifdef __cplusplus extern "C" { #endif void ObstacleDistanceFused__rosidl_typesupport_introspection_c__ObstacleDistanceFused_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__ObstacleDistanceFused__init(message_memory); } void ObstacleDistanceFused__rosidl_typesupport_introspection_c__ObstacleDistanceFused_fini_function(void * message_memory) { px4_msgs__msg__ObstacleDistanceFused__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember ObstacleDistanceFused__rosidl_typesupport_introspection_c__ObstacleDistanceFused_message_member_array[8] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ObstacleDistanceFused, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "frame", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ObstacleDistanceFused, frame), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "sensor_type", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ObstacleDistanceFused, sensor_type), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "distances", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message true, // is array 72, // array size false, // is upper bound offsetof(px4_msgs__msg__ObstacleDistanceFused, distances), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "increment", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ObstacleDistanceFused, increment), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "min_distance", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ObstacleDistanceFused, min_distance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "max_distance", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ObstacleDistanceFused, max_distance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "angle_offset", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ObstacleDistanceFused, angle_offset), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers ObstacleDistanceFused__rosidl_typesupport_introspection_c__ObstacleDistanceFused_message_members = { "px4_msgs__msg", // message namespace "ObstacleDistanceFused", // message name 8, // number of fields sizeof(px4_msgs__msg__ObstacleDistanceFused), ObstacleDistanceFused__rosidl_typesupport_introspection_c__ObstacleDistanceFused_message_member_array, // message members ObstacleDistanceFused__rosidl_typesupport_introspection_c__ObstacleDistanceFused_init_function, // function to initialize message memory (memory has to be allocated) ObstacleDistanceFused__rosidl_typesupport_introspection_c__ObstacleDistanceFused_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t ObstacleDistanceFused__rosidl_typesupport_introspection_c__ObstacleDistanceFused_message_type_support_handle = { 0, &ObstacleDistanceFused__rosidl_typesupport_introspection_c__ObstacleDistanceFused_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, ObstacleDistanceFused)() { if (!ObstacleDistanceFused__rosidl_typesupport_introspection_c__ObstacleDistanceFused_message_type_support_handle.typesupport_identifier) { ObstacleDistanceFused__rosidl_typesupport_introspection_c__ObstacleDistanceFused_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &ObstacleDistanceFused__rosidl_typesupport_introspection_c__ObstacleDistanceFused_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_global_position__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/VehicleGlobalPosition.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/vehicle_global_position__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/vehicle_global_position__functions.h" #include "px4_msgs/msg/vehicle_global_position__struct.h" #ifdef __cplusplus extern "C" { #endif void VehicleGlobalPosition__rosidl_typesupport_introspection_c__VehicleGlobalPosition_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__VehicleGlobalPosition__init(message_memory); } void VehicleGlobalPosition__rosidl_typesupport_introspection_c__VehicleGlobalPosition_fini_function(void * message_memory) { px4_msgs__msg__VehicleGlobalPosition__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember VehicleGlobalPosition__rosidl_typesupport_introspection_c__VehicleGlobalPosition_message_member_array[14] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGlobalPosition, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGlobalPosition, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "lat", // name rosidl_typesupport_introspection_c__ROS_TYPE_DOUBLE, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGlobalPosition, lat), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "lon", // name rosidl_typesupport_introspection_c__ROS_TYPE_DOUBLE, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGlobalPosition, lon), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "alt", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGlobalPosition, alt), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "alt_ellipsoid", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGlobalPosition, alt_ellipsoid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "delta_alt", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGlobalPosition, delta_alt), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "lat_lon_reset_counter", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGlobalPosition, lat_lon_reset_counter), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "alt_reset_counter", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGlobalPosition, alt_reset_counter), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "eph", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGlobalPosition, eph), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "epv", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGlobalPosition, epv), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "terrain_alt", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGlobalPosition, terrain_alt), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "terrain_alt_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGlobalPosition, terrain_alt_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "dead_reckoning", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleGlobalPosition, dead_reckoning), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers VehicleGlobalPosition__rosidl_typesupport_introspection_c__VehicleGlobalPosition_message_members = { "px4_msgs__msg", // message namespace "VehicleGlobalPosition", // message name 14, // number of fields sizeof(px4_msgs__msg__VehicleGlobalPosition), VehicleGlobalPosition__rosidl_typesupport_introspection_c__VehicleGlobalPosition_message_member_array, // message members VehicleGlobalPosition__rosidl_typesupport_introspection_c__VehicleGlobalPosition_init_function, // function to initialize message memory (memory has to be allocated) VehicleGlobalPosition__rosidl_typesupport_introspection_c__VehicleGlobalPosition_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t VehicleGlobalPosition__rosidl_typesupport_introspection_c__VehicleGlobalPosition_message_type_support_handle = { 0, &VehicleGlobalPosition__rosidl_typesupport_introspection_c__VehicleGlobalPosition_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, VehicleGlobalPosition)() { if (!VehicleGlobalPosition__rosidl_typesupport_introspection_c__VehicleGlobalPosition_message_type_support_handle.typesupport_identifier) { VehicleGlobalPosition__rosidl_typesupport_introspection_c__VehicleGlobalPosition_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &VehicleGlobalPosition__rosidl_typesupport_introspection_c__VehicleGlobalPosition_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_gps_position.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_GPS_POSITION_HPP_ #define PX4_MSGS__MSG__VEHICLE_GPS_POSITION_HPP_ #include "px4_msgs/msg/vehicle_gps_position__struct.hpp" #include "px4_msgs/msg/vehicle_gps_position__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_GPS_POSITION_HPP_ <file_sep>/build/px4_msgs/CMakeFiles/px4_msgs__rosidl_typesupport_c__pyext.dir/cmake_clean.cmake file(REMOVE_RECURSE "CMakeFiles/px4_msgs__rosidl_typesupport_c__pyext.dir/rosidl_generator_py/px4_msgs/_px4_msgs_s.ep.rosidl_typesupport_c.c.o" "rosidl_generator_py/px4_msgs/px4_msgs_s__rosidl_typesupport_c.cpython-36m-aarch64-linux-gnu.pdb" "rosidl_generator_py/px4_msgs/px4_msgs_s__rosidl_typesupport_c.cpython-36m-aarch64-linux-gnu.so" ) # Per-language clean rules from dependency scanning. foreach(lang C) include(CMakeFiles/px4_msgs__rosidl_typesupport_c__pyext.dir/cmake_clean_${lang}.cmake OPTIONAL) endforeach() <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleAngularVelocity.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ANGULAR_VELOCITY__STRUCT_H_ #define PX4_MSGS__MSG__VEHICLE_ANGULAR_VELOCITY__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/VehicleAngularVelocity in the package px4_msgs. typedef struct px4_msgs__msg__VehicleAngularVelocity { uint64_t timestamp; uint64_t timestamp_sample; float xyz[3]; } px4_msgs__msg__VehicleAngularVelocity; // Struct for a sequence of px4_msgs__msg__VehicleAngularVelocity. typedef struct px4_msgs__msg__VehicleAngularVelocity__Sequence { px4_msgs__msg__VehicleAngularVelocity * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__VehicleAngularVelocity__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_ANGULAR_VELOCITY__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_command.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleCommand.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_COMMAND_H_ #define PX4_MSGS__MSG__VEHICLE_COMMAND_H_ #include "px4_msgs/msg/vehicle_command__struct.h" #include "px4_msgs/msg/vehicle_command__functions.h" #include "px4_msgs/msg/vehicle_command__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_COMMAND_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/landing_target_innovations__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/LandingTargetInnovations.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/landing_target_innovations__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/landing_target_innovations__functions.h" #include "px4_msgs/msg/landing_target_innovations__struct.h" #ifdef __cplusplus extern "C" { #endif void LandingTargetInnovations__rosidl_typesupport_introspection_c__LandingTargetInnovations_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__LandingTargetInnovations__init(message_memory); } void LandingTargetInnovations__rosidl_typesupport_introspection_c__LandingTargetInnovations_fini_function(void * message_memory) { px4_msgs__msg__LandingTargetInnovations__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember LandingTargetInnovations__rosidl_typesupport_introspection_c__LandingTargetInnovations_message_member_array[5] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__LandingTargetInnovations, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "innov_x", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__LandingTargetInnovations, innov_x), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "innov_y", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__LandingTargetInnovations, innov_y), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "innov_cov_x", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__LandingTargetInnovations, innov_cov_x), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "innov_cov_y", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__LandingTargetInnovations, innov_cov_y), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers LandingTargetInnovations__rosidl_typesupport_introspection_c__LandingTargetInnovations_message_members = { "px4_msgs__msg", // message namespace "LandingTargetInnovations", // message name 5, // number of fields sizeof(px4_msgs__msg__LandingTargetInnovations), LandingTargetInnovations__rosidl_typesupport_introspection_c__LandingTargetInnovations_message_member_array, // message members LandingTargetInnovations__rosidl_typesupport_introspection_c__LandingTargetInnovations_init_function, // function to initialize message memory (memory has to be allocated) LandingTargetInnovations__rosidl_typesupport_introspection_c__LandingTargetInnovations_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t LandingTargetInnovations__rosidl_typesupport_introspection_c__LandingTargetInnovations_message_type_support_handle = { 0, &LandingTargetInnovations__rosidl_typesupport_introspection_c__LandingTargetInnovations_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, LandingTargetInnovations)() { if (!LandingTargetInnovations__rosidl_typesupport_introspection_c__LandingTargetInnovations_message_type_support_handle.typesupport_identifier) { LandingTargetInnovations__rosidl_typesupport_introspection_c__LandingTargetInnovations_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &LandingTargetInnovations__rosidl_typesupport_introspection_c__LandingTargetInnovations_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/fw_virtual_attitude_setpoint__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/FwVirtualAttitudeSetpoint.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/fw_virtual_attitude_setpoint__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/fw_virtual_attitude_setpoint__functions.h" #include "px4_msgs/msg/fw_virtual_attitude_setpoint__struct.h" #ifdef __cplusplus extern "C" { #endif void FwVirtualAttitudeSetpoint__rosidl_typesupport_introspection_c__FwVirtualAttitudeSetpoint_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__FwVirtualAttitudeSetpoint__init(message_memory); } void FwVirtualAttitudeSetpoint__rosidl_typesupport_introspection_c__FwVirtualAttitudeSetpoint_fini_function(void * message_memory) { px4_msgs__msg__FwVirtualAttitudeSetpoint__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember FwVirtualAttitudeSetpoint__rosidl_typesupport_introspection_c__FwVirtualAttitudeSetpoint_message_member_array[12] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__FwVirtualAttitudeSetpoint, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "roll_body", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__FwVirtualAttitudeSetpoint, roll_body), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "pitch_body", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__FwVirtualAttitudeSetpoint, pitch_body), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yaw_body", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__FwVirtualAttitudeSetpoint, yaw_body), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yaw_sp_move_rate", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__FwVirtualAttitudeSetpoint, yaw_sp_move_rate), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "q_d", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__FwVirtualAttitudeSetpoint, q_d), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "thrust_body", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__FwVirtualAttitudeSetpoint, thrust_body), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "roll_reset_integral", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__FwVirtualAttitudeSetpoint, roll_reset_integral), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "pitch_reset_integral", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__FwVirtualAttitudeSetpoint, pitch_reset_integral), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yaw_reset_integral", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__FwVirtualAttitudeSetpoint, yaw_reset_integral), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "fw_control_yaw", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__FwVirtualAttitudeSetpoint, fw_control_yaw), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "apply_flaps", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__FwVirtualAttitudeSetpoint, apply_flaps), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers FwVirtualAttitudeSetpoint__rosidl_typesupport_introspection_c__FwVirtualAttitudeSetpoint_message_members = { "px4_msgs__msg", // message namespace "FwVirtualAttitudeSetpoint", // message name 12, // number of fields sizeof(px4_msgs__msg__FwVirtualAttitudeSetpoint), FwVirtualAttitudeSetpoint__rosidl_typesupport_introspection_c__FwVirtualAttitudeSetpoint_message_member_array, // message members FwVirtualAttitudeSetpoint__rosidl_typesupport_introspection_c__FwVirtualAttitudeSetpoint_init_function, // function to initialize message memory (memory has to be allocated) FwVirtualAttitudeSetpoint__rosidl_typesupport_introspection_c__FwVirtualAttitudeSetpoint_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t FwVirtualAttitudeSetpoint__rosidl_typesupport_introspection_c__FwVirtualAttitudeSetpoint_message_type_support_handle = { 0, &FwVirtualAttitudeSetpoint__rosidl_typesupport_introspection_c__FwVirtualAttitudeSetpoint_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, FwVirtualAttitudeSetpoint)() { if (!FwVirtualAttitudeSetpoint__rosidl_typesupport_introspection_c__FwVirtualAttitudeSetpoint_message_type_support_handle.typesupport_identifier) { FwVirtualAttitudeSetpoint__rosidl_typesupport_introspection_c__FwVirtualAttitudeSetpoint_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &FwVirtualAttitudeSetpoint__rosidl_typesupport_introspection_c__FwVirtualAttitudeSetpoint_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/ping__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/Ping.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__PING__STRUCT_H_ #define PX4_MSGS__MSG__PING__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/Ping in the package px4_msgs. typedef struct px4_msgs__msg__Ping { uint64_t timestamp; uint64_t ping_time; uint32_t ping_sequence; uint32_t dropped_packets; float rtt_ms; uint8_t system_id; uint8_t component_id; } px4_msgs__msg__Ping; // Struct for a sequence of px4_msgs__msg__Ping. typedef struct px4_msgs__msg__Ping__Sequence { px4_msgs__msg__Ping * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__Ping__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__PING__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/airspeed_validated.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__AIRSPEED_VALIDATED_HPP_ #define PX4_MSGS__MSG__AIRSPEED_VALIDATED_HPP_ #include "px4_msgs/msg/airspeed_validated__struct.hpp" #include "px4_msgs/msg/airspeed_validated__traits.hpp" #endif // PX4_MSGS__MSG__AIRSPEED_VALIDATED_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/px4_io_status__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/Px4IoStatus.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/px4_io_status__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void Px4IoStatus_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::Px4IoStatus(_init); } void Px4IoStatus_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::Px4IoStatus *>(message_memory); typed_message->~Px4IoStatus(); } size_t size_function__Px4IoStatus__actuators(const void * untyped_member) { (void)untyped_member; return 8; } const void * get_const_function__Px4IoStatus__actuators(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<int16_t, 8> *>(untyped_member); return &member[index]; } void * get_function__Px4IoStatus__actuators(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<int16_t, 8> *>(untyped_member); return &member[index]; } size_t size_function__Px4IoStatus__servos(const void * untyped_member) { (void)untyped_member; return 8; } const void * get_const_function__Px4IoStatus__servos(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint16_t, 8> *>(untyped_member); return &member[index]; } void * get_function__Px4IoStatus__servos(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint16_t, 8> *>(untyped_member); return &member[index]; } size_t size_function__Px4IoStatus__raw_inputs(const void * untyped_member) { (void)untyped_member; return 18; } const void * get_const_function__Px4IoStatus__raw_inputs(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint16_t, 18> *>(untyped_member); return &member[index]; } void * get_function__Px4IoStatus__raw_inputs(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint16_t, 18> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember Px4IoStatus_message_member_array[43] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "free_memory_bytes", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, free_memory_bytes), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "voltage_v", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, voltage_v), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rssi_v", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, rssi_v), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "status_outputs_armed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, status_outputs_armed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "status_override", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, status_override), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "status_rc_ok", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, status_rc_ok), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "status_rc_ppm", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, status_rc_ppm), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "status_rc_dsm", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, status_rc_dsm), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "status_rc_sbus", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, status_rc_sbus), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "status_fmu_ok", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, status_fmu_ok), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "status_raw_pwm", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, status_raw_pwm), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "status_mixer_ok", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, status_mixer_ok), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "status_arm_sync", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, status_arm_sync), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "status_init_ok", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, status_init_ok), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "status_failsafe", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, status_failsafe), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "status_safety_off", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, status_safety_off), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "status_fmu_initialized", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, status_fmu_initialized), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "status_rc_st24", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, status_rc_st24), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "status_rc_sumd", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, status_rc_sumd), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "alarm_vbatt_low", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, alarm_vbatt_low), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "alarm_temperature", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, alarm_temperature), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "alarm_servo_current", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, alarm_servo_current), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "alarm_acc_current", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, alarm_acc_current), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "alarm_fmu_lost", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, alarm_fmu_lost), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "alarm_rc_lost", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, alarm_rc_lost), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "alarm_pwm_error", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, alarm_pwm_error), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "alarm_vservo_fault", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, alarm_vservo_fault), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "arming_io_arm_ok", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, arming_io_arm_ok), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "arming_fmu_armed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, arming_fmu_armed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "arming_fmu_prearmed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, arming_fmu_prearmed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "arming_manual_override_ok", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, arming_manual_override_ok), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "arming_failsafe_custom", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, arming_failsafe_custom), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "arming_inair_restart_ok", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, arming_inair_restart_ok), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "arming_always_pwm_enable", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, arming_always_pwm_enable), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "arming_rc_handling_disabled", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, arming_rc_handling_disabled), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "arming_lockdown", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, arming_lockdown), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "arming_force_failsafe", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, arming_force_failsafe), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "arming_termination_failsafe", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, arming_termination_failsafe), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "arming_override_immediate", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, arming_override_immediate), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "actuators", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT16, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 8, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, actuators), // bytes offset in struct nullptr, // default value size_function__Px4IoStatus__actuators, // size() function pointer get_const_function__Px4IoStatus__actuators, // get_const(index) function pointer get_function__Px4IoStatus__actuators, // get(index) function pointer nullptr // resize(index) function pointer }, { "servos", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 8, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, servos), // bytes offset in struct nullptr, // default value size_function__Px4IoStatus__servos, // size() function pointer get_const_function__Px4IoStatus__servos, // get_const(index) function pointer get_function__Px4IoStatus__servos, // get(index) function pointer nullptr // resize(index) function pointer }, { "raw_inputs", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 18, // array size false, // is upper bound offsetof(px4_msgs::msg::Px4IoStatus, raw_inputs), // bytes offset in struct nullptr, // default value size_function__Px4IoStatus__raw_inputs, // size() function pointer get_const_function__Px4IoStatus__raw_inputs, // get_const(index) function pointer get_function__Px4IoStatus__raw_inputs, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers Px4IoStatus_message_members = { "px4_msgs::msg", // message namespace "Px4IoStatus", // message name 43, // number of fields sizeof(px4_msgs::msg::Px4IoStatus), Px4IoStatus_message_member_array, // message members Px4IoStatus_init_function, // function to initialize message memory (memory has to be allocated) Px4IoStatus_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t Px4IoStatus_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &Px4IoStatus_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::Px4IoStatus>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::Px4IoStatus_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, Px4IoStatus)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::Px4IoStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/actuator_armed__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/ActuatorArmed.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/actuator_armed__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/actuator_armed__struct.h" #include "px4_msgs/msg/actuator_armed__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _ActuatorArmed__ros_msg_type = px4_msgs__msg__ActuatorArmed; static bool _ActuatorArmed__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _ActuatorArmed__ros_msg_type * ros_message = static_cast<const _ActuatorArmed__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: armed { cdr << (ros_message->armed ? true : false); } // Field name: prearmed { cdr << (ros_message->prearmed ? true : false); } // Field name: ready_to_arm { cdr << (ros_message->ready_to_arm ? true : false); } // Field name: lockdown { cdr << (ros_message->lockdown ? true : false); } // Field name: manual_lockdown { cdr << (ros_message->manual_lockdown ? true : false); } // Field name: force_failsafe { cdr << (ros_message->force_failsafe ? true : false); } // Field name: in_esc_calibration_mode { cdr << (ros_message->in_esc_calibration_mode ? true : false); } // Field name: soft_stop { cdr << (ros_message->soft_stop ? true : false); } return true; } static bool _ActuatorArmed__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _ActuatorArmed__ros_msg_type * ros_message = static_cast<_ActuatorArmed__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: armed { uint8_t tmp; cdr >> tmp; ros_message->armed = tmp ? true : false; } // Field name: prearmed { uint8_t tmp; cdr >> tmp; ros_message->prearmed = tmp ? true : false; } // Field name: ready_to_arm { uint8_t tmp; cdr >> tmp; ros_message->ready_to_arm = tmp ? true : false; } // Field name: lockdown { uint8_t tmp; cdr >> tmp; ros_message->lockdown = tmp ? true : false; } // Field name: manual_lockdown { uint8_t tmp; cdr >> tmp; ros_message->manual_lockdown = tmp ? true : false; } // Field name: force_failsafe { uint8_t tmp; cdr >> tmp; ros_message->force_failsafe = tmp ? true : false; } // Field name: in_esc_calibration_mode { uint8_t tmp; cdr >> tmp; ros_message->in_esc_calibration_mode = tmp ? true : false; } // Field name: soft_stop { uint8_t tmp; cdr >> tmp; ros_message->soft_stop = tmp ? true : false; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__ActuatorArmed( const void * untyped_ros_message, size_t current_alignment) { const _ActuatorArmed__ros_msg_type * ros_message = static_cast<const _ActuatorArmed__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name armed { size_t item_size = sizeof(ros_message->armed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name prearmed { size_t item_size = sizeof(ros_message->prearmed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name ready_to_arm { size_t item_size = sizeof(ros_message->ready_to_arm); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name lockdown { size_t item_size = sizeof(ros_message->lockdown); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name manual_lockdown { size_t item_size = sizeof(ros_message->manual_lockdown); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name force_failsafe { size_t item_size = sizeof(ros_message->force_failsafe); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name in_esc_calibration_mode { size_t item_size = sizeof(ros_message->in_esc_calibration_mode); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name soft_stop { size_t item_size = sizeof(ros_message->soft_stop); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _ActuatorArmed__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__ActuatorArmed( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__ActuatorArmed( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: armed { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: prearmed { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: ready_to_arm { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: lockdown { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: manual_lockdown { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: force_failsafe { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: in_esc_calibration_mode { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: soft_stop { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _ActuatorArmed__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__ActuatorArmed( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_ActuatorArmed = { "px4_msgs::msg", "ActuatorArmed", _ActuatorArmed__cdr_serialize, _ActuatorArmed__cdr_deserialize, _ActuatorArmed__get_serialized_size, _ActuatorArmed__max_serialized_size }; static rosidl_message_type_support_t _ActuatorArmed__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_ActuatorArmed, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, ActuatorArmed)() { return &_ActuatorArmed__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_control_mode.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_CONTROL_MODE_HPP_ #define PX4_MSGS__MSG__VEHICLE_CONTROL_MODE_HPP_ #include "px4_msgs/msg/vehicle_control_mode__struct.hpp" #include "px4_msgs/msg/vehicle_control_mode__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_CONTROL_MODE_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/sensor_gyro_fft.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_GYRO_FFT_HPP_ #define PX4_MSGS__MSG__SENSOR_GYRO_FFT_HPP_ #include "px4_msgs/msg/sensor_gyro_fft__struct.hpp" #include "px4_msgs/msg/sensor_gyro_fft__traits.hpp" #endif // PX4_MSGS__MSG__SENSOR_GYRO_FFT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/ulog_stream.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/UlogStream.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ULOG_STREAM_H_ #define PX4_MSGS__MSG__ULOG_STREAM_H_ #include "px4_msgs/msg/ulog_stream__struct.h" #include "px4_msgs/msg/ulog_stream__functions.h" #include "px4_msgs/msg/ulog_stream__type_support.h" #endif // PX4_MSGS__MSG__ULOG_STREAM_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_vehicle_air_data_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/VehicleAirData.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/vehicle_air_data__struct.h" #include "px4_msgs/msg/vehicle_air_data__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__vehicle_air_data__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[46]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._vehicle_air_data.VehicleAirData", full_classname_dest, 45) == 0); } px4_msgs__msg__VehicleAirData * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // timestamp_sample PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp_sample"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp_sample = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // baro_device_id PyObject * field = PyObject_GetAttrString(_pymsg, "baro_device_id"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->baro_device_id = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // baro_alt_meter PyObject * field = PyObject_GetAttrString(_pymsg, "baro_alt_meter"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->baro_alt_meter = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // baro_temp_celcius PyObject * field = PyObject_GetAttrString(_pymsg, "baro_temp_celcius"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->baro_temp_celcius = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // baro_pressure_pa PyObject * field = PyObject_GetAttrString(_pymsg, "baro_pressure_pa"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->baro_pressure_pa = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // rho PyObject * field = PyObject_GetAttrString(_pymsg, "rho"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->rho = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__vehicle_air_data__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of VehicleAirData */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._vehicle_air_data"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "VehicleAirData"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__VehicleAirData * ros_message = (px4_msgs__msg__VehicleAirData *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // timestamp_sample PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp_sample); { int rc = PyObject_SetAttrString(_pymessage, "timestamp_sample", field); Py_DECREF(field); if (rc) { return NULL; } } } { // baro_device_id PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->baro_device_id); { int rc = PyObject_SetAttrString(_pymessage, "baro_device_id", field); Py_DECREF(field); if (rc) { return NULL; } } } { // baro_alt_meter PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->baro_alt_meter); { int rc = PyObject_SetAttrString(_pymessage, "baro_alt_meter", field); Py_DECREF(field); if (rc) { return NULL; } } } { // baro_temp_celcius PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->baro_temp_celcius); { int rc = PyObject_SetAttrString(_pymessage, "baro_temp_celcius", field); Py_DECREF(field); if (rc) { return NULL; } } } { // baro_pressure_pa PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->baro_pressure_pa); { int rc = PyObject_SetAttrString(_pymessage, "baro_pressure_pa", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rho PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->rho); { int rc = PyObject_SetAttrString(_pymessage, "rho", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_bezier.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleTrajectoryBezier.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_TRAJECTORY_BEZIER_H_ #define PX4_MSGS__MSG__VEHICLE_TRAJECTORY_BEZIER_H_ #include "px4_msgs/msg/vehicle_trajectory_bezier__struct.h" #include "px4_msgs/msg/vehicle_trajectory_bezier__functions.h" #include "px4_msgs/msg/vehicle_trajectory_bezier__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_TRAJECTORY_BEZIER_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_vehicle_control_mode_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/VehicleControlMode.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/vehicle_control_mode__struct.h" #include "px4_msgs/msg/vehicle_control_mode__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__vehicle_control_mode__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[54]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._vehicle_control_mode.VehicleControlMode", full_classname_dest, 53) == 0); } px4_msgs__msg__VehicleControlMode * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // flag_armed PyObject * field = PyObject_GetAttrString(_pymsg, "flag_armed"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->flag_armed = (Py_True == field); Py_DECREF(field); } { // flag_external_manual_override_ok PyObject * field = PyObject_GetAttrString(_pymsg, "flag_external_manual_override_ok"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->flag_external_manual_override_ok = (Py_True == field); Py_DECREF(field); } { // flag_control_manual_enabled PyObject * field = PyObject_GetAttrString(_pymsg, "flag_control_manual_enabled"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->flag_control_manual_enabled = (Py_True == field); Py_DECREF(field); } { // flag_control_auto_enabled PyObject * field = PyObject_GetAttrString(_pymsg, "flag_control_auto_enabled"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->flag_control_auto_enabled = (Py_True == field); Py_DECREF(field); } { // flag_control_offboard_enabled PyObject * field = PyObject_GetAttrString(_pymsg, "flag_control_offboard_enabled"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->flag_control_offboard_enabled = (Py_True == field); Py_DECREF(field); } { // flag_control_rates_enabled PyObject * field = PyObject_GetAttrString(_pymsg, "flag_control_rates_enabled"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->flag_control_rates_enabled = (Py_True == field); Py_DECREF(field); } { // flag_control_attitude_enabled PyObject * field = PyObject_GetAttrString(_pymsg, "flag_control_attitude_enabled"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->flag_control_attitude_enabled = (Py_True == field); Py_DECREF(field); } { // flag_control_acceleration_enabled PyObject * field = PyObject_GetAttrString(_pymsg, "flag_control_acceleration_enabled"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->flag_control_acceleration_enabled = (Py_True == field); Py_DECREF(field); } { // flag_control_velocity_enabled PyObject * field = PyObject_GetAttrString(_pymsg, "flag_control_velocity_enabled"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->flag_control_velocity_enabled = (Py_True == field); Py_DECREF(field); } { // flag_control_position_enabled PyObject * field = PyObject_GetAttrString(_pymsg, "flag_control_position_enabled"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->flag_control_position_enabled = (Py_True == field); Py_DECREF(field); } { // flag_control_altitude_enabled PyObject * field = PyObject_GetAttrString(_pymsg, "flag_control_altitude_enabled"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->flag_control_altitude_enabled = (Py_True == field); Py_DECREF(field); } { // flag_control_climb_rate_enabled PyObject * field = PyObject_GetAttrString(_pymsg, "flag_control_climb_rate_enabled"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->flag_control_climb_rate_enabled = (Py_True == field); Py_DECREF(field); } { // flag_control_termination_enabled PyObject * field = PyObject_GetAttrString(_pymsg, "flag_control_termination_enabled"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->flag_control_termination_enabled = (Py_True == field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__vehicle_control_mode__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of VehicleControlMode */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._vehicle_control_mode"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "VehicleControlMode"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__VehicleControlMode * ros_message = (px4_msgs__msg__VehicleControlMode *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // flag_armed PyObject * field = NULL; field = PyBool_FromLong(ros_message->flag_armed ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "flag_armed", field); Py_DECREF(field); if (rc) { return NULL; } } } { // flag_external_manual_override_ok PyObject * field = NULL; field = PyBool_FromLong(ros_message->flag_external_manual_override_ok ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "flag_external_manual_override_ok", field); Py_DECREF(field); if (rc) { return NULL; } } } { // flag_control_manual_enabled PyObject * field = NULL; field = PyBool_FromLong(ros_message->flag_control_manual_enabled ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "flag_control_manual_enabled", field); Py_DECREF(field); if (rc) { return NULL; } } } { // flag_control_auto_enabled PyObject * field = NULL; field = PyBool_FromLong(ros_message->flag_control_auto_enabled ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "flag_control_auto_enabled", field); Py_DECREF(field); if (rc) { return NULL; } } } { // flag_control_offboard_enabled PyObject * field = NULL; field = PyBool_FromLong(ros_message->flag_control_offboard_enabled ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "flag_control_offboard_enabled", field); Py_DECREF(field); if (rc) { return NULL; } } } { // flag_control_rates_enabled PyObject * field = NULL; field = PyBool_FromLong(ros_message->flag_control_rates_enabled ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "flag_control_rates_enabled", field); Py_DECREF(field); if (rc) { return NULL; } } } { // flag_control_attitude_enabled PyObject * field = NULL; field = PyBool_FromLong(ros_message->flag_control_attitude_enabled ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "flag_control_attitude_enabled", field); Py_DECREF(field); if (rc) { return NULL; } } } { // flag_control_acceleration_enabled PyObject * field = NULL; field = PyBool_FromLong(ros_message->flag_control_acceleration_enabled ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "flag_control_acceleration_enabled", field); Py_DECREF(field); if (rc) { return NULL; } } } { // flag_control_velocity_enabled PyObject * field = NULL; field = PyBool_FromLong(ros_message->flag_control_velocity_enabled ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "flag_control_velocity_enabled", field); Py_DECREF(field); if (rc) { return NULL; } } } { // flag_control_position_enabled PyObject * field = NULL; field = PyBool_FromLong(ros_message->flag_control_position_enabled ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "flag_control_position_enabled", field); Py_DECREF(field); if (rc) { return NULL; } } } { // flag_control_altitude_enabled PyObject * field = NULL; field = PyBool_FromLong(ros_message->flag_control_altitude_enabled ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "flag_control_altitude_enabled", field); Py_DECREF(field); if (rc) { return NULL; } } } { // flag_control_climb_rate_enabled PyObject * field = NULL; field = PyBool_FromLong(ros_message->flag_control_climb_rate_enabled ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "flag_control_climb_rate_enabled", field); Py_DECREF(field); if (rc) { return NULL; } } } { // flag_control_termination_enabled PyObject * field = NULL; field = PyBool_FromLong(ros_message->flag_control_termination_enabled ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "flag_control_termination_enabled", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_selector_status__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/EstimatorSelectorStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_SELECTOR_STATUS__STRUCT_H_ #define PX4_MSGS__MSG__ESTIMATOR_SELECTOR_STATUS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/EstimatorSelectorStatus in the package px4_msgs. typedef struct px4_msgs__msg__EstimatorSelectorStatus { uint64_t timestamp; uint8_t primary_instance; uint8_t instances_available; uint32_t instance_changed_count; uint64_t last_instance_change; uint32_t accel_device_id; uint32_t baro_device_id; uint32_t gyro_device_id; uint32_t mag_device_id; float combined_test_ratio[9]; float relative_test_ratio[9]; bool healthy[9]; float accumulated_gyro_error[4]; float accumulated_accel_error[4]; bool gyro_fault_detected; bool accel_fault_detected; } px4_msgs__msg__EstimatorSelectorStatus; // Struct for a sequence of px4_msgs__msg__EstimatorSelectorStatus. typedef struct px4_msgs__msg__EstimatorSelectorStatus__Sequence { px4_msgs__msg__EstimatorSelectorStatus * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__EstimatorSelectorStatus__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ESTIMATOR_SELECTOR_STATUS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/rpm.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/Rpm.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__RPM_H_ #define PX4_MSGS__MSG__RPM_H_ #include "px4_msgs/msg/rpm__struct.h" #include "px4_msgs/msg/rpm__functions.h" #include "px4_msgs/msg/rpm__type_support.h" #endif // PX4_MSGS__MSG__RPM_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/generator_status.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/GeneratorStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GENERATOR_STATUS_H_ #define PX4_MSGS__MSG__GENERATOR_STATUS_H_ #include "px4_msgs/msg/generator_status__struct.h" #include "px4_msgs/msg/generator_status__functions.h" #include "px4_msgs/msg/generator_status__type_support.h" #endif // PX4_MSGS__MSG__GENERATOR_STATUS_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/cellular_status__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/CellularStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/cellular_status__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/cellular_status__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::CellularStatus & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: status cdr << ros_message.status; // Member: failure_reason cdr << ros_message.failure_reason; // Member: type cdr << ros_message.type; // Member: quality cdr << ros_message.quality; // Member: mcc cdr << ros_message.mcc; // Member: mnc cdr << ros_message.mnc; // Member: lac cdr << ros_message.lac; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::CellularStatus & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: status cdr >> ros_message.status; // Member: failure_reason cdr >> ros_message.failure_reason; // Member: type cdr >> ros_message.type; // Member: quality cdr >> ros_message.quality; // Member: mcc cdr >> ros_message.mcc; // Member: mnc cdr >> ros_message.mnc; // Member: lac cdr >> ros_message.lac; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::CellularStatus & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: status { size_t item_size = sizeof(ros_message.status); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: failure_reason { size_t item_size = sizeof(ros_message.failure_reason); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: type { size_t item_size = sizeof(ros_message.type); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: quality { size_t item_size = sizeof(ros_message.quality); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: mcc { size_t item_size = sizeof(ros_message.mcc); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: mnc { size_t item_size = sizeof(ros_message.mnc); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: lac { size_t item_size = sizeof(ros_message.lac); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_CellularStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: status { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: failure_reason { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: type { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: quality { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: mcc { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: mnc { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: lac { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } return current_alignment - initial_alignment; } static bool _CellularStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::CellularStatus *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _CellularStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::CellularStatus *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _CellularStatus__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::CellularStatus *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _CellularStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_CellularStatus(full_bounded, 0); } static message_type_support_callbacks_t _CellularStatus__callbacks = { "px4_msgs::msg", "CellularStatus", _CellularStatus__cdr_serialize, _CellularStatus__cdr_deserialize, _CellularStatus__get_serialized_size, _CellularStatus__max_serialized_size }; static rosidl_message_type_support_t _CellularStatus__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_CellularStatus__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::CellularStatus>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_CellularStatus__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, CellularStatus)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_CellularStatus__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/debug_key_value__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/DebugKeyValue.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__DEBUG_KEY_VALUE__FUNCTIONS_H_ #define PX4_MSGS__MSG__DEBUG_KEY_VALUE__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/debug_key_value__struct.h" /// Initialize msg/DebugKeyValue message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__DebugKeyValue * )) before or use * px4_msgs__msg__DebugKeyValue__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__DebugKeyValue__init(px4_msgs__msg__DebugKeyValue * msg); /// Finalize msg/DebugKeyValue message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__DebugKeyValue__fini(px4_msgs__msg__DebugKeyValue * msg); /// Create msg/DebugKeyValue message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__DebugKeyValue__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__DebugKeyValue * px4_msgs__msg__DebugKeyValue__create(); /// Destroy msg/DebugKeyValue message. /** * It calls * px4_msgs__msg__DebugKeyValue__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__DebugKeyValue__destroy(px4_msgs__msg__DebugKeyValue * msg); /// Initialize array of msg/DebugKeyValue messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__DebugKeyValue__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__DebugKeyValue__Sequence__init(px4_msgs__msg__DebugKeyValue__Sequence * array, size_t size); /// Finalize array of msg/DebugKeyValue messages. /** * It calls * px4_msgs__msg__DebugKeyValue__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__DebugKeyValue__Sequence__fini(px4_msgs__msg__DebugKeyValue__Sequence * array); /// Create array of msg/DebugKeyValue messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__DebugKeyValue__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__DebugKeyValue__Sequence * px4_msgs__msg__DebugKeyValue__Sequence__create(size_t size); /// Destroy array of msg/DebugKeyValue messages. /** * It calls * px4_msgs__msg__DebugKeyValue__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__DebugKeyValue__Sequence__destroy(px4_msgs__msg__DebugKeyValue__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__DEBUG_KEY_VALUE__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/esc_report__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/EscReport.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESC_REPORT__STRUCT_HPP_ #define PX4_MSGS__MSG__ESC_REPORT__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__EscReport __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__EscReport __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct EscReport_ { using Type = EscReport_<ContainerAllocator>; explicit EscReport_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->esc_errorcount = 0ul; this->esc_rpm = 0l; this->esc_voltage = 0.0f; this->esc_current = 0.0f; this->esc_temperature = 0; this->esc_address = 0; this->esc_state = 0; this->failures = 0; } } explicit EscReport_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->esc_errorcount = 0ul; this->esc_rpm = 0l; this->esc_voltage = 0.0f; this->esc_current = 0.0f; this->esc_temperature = 0; this->esc_address = 0; this->esc_state = 0; this->failures = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _esc_errorcount_type = uint32_t; _esc_errorcount_type esc_errorcount; using _esc_rpm_type = int32_t; _esc_rpm_type esc_rpm; using _esc_voltage_type = float; _esc_voltage_type esc_voltage; using _esc_current_type = float; _esc_current_type esc_current; using _esc_temperature_type = uint8_t; _esc_temperature_type esc_temperature; using _esc_address_type = uint8_t; _esc_address_type esc_address; using _esc_state_type = uint8_t; _esc_state_type esc_state; using _failures_type = uint8_t; _failures_type failures; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__esc_errorcount( const uint32_t & _arg) { this->esc_errorcount = _arg; return *this; } Type & set__esc_rpm( const int32_t & _arg) { this->esc_rpm = _arg; return *this; } Type & set__esc_voltage( const float & _arg) { this->esc_voltage = _arg; return *this; } Type & set__esc_current( const float & _arg) { this->esc_current = _arg; return *this; } Type & set__esc_temperature( const uint8_t & _arg) { this->esc_temperature = _arg; return *this; } Type & set__esc_address( const uint8_t & _arg) { this->esc_address = _arg; return *this; } Type & set__esc_state( const uint8_t & _arg) { this->esc_state = _arg; return *this; } Type & set__failures( const uint8_t & _arg) { this->failures = _arg; return *this; } // constant declarations static constexpr uint8_t FAILURE_NONE = 0u; static constexpr uint8_t FAILURE_OVER_CURRENT_MASK = 1u; static constexpr uint8_t FAILURE_OVER_VOLTAGE_MASK = 2u; static constexpr uint8_t FAILURE_OVER_TEMPERATURE_MASK = 4u; static constexpr uint8_t FAILURE_OVER_RPM_MASK = 8u; static constexpr uint8_t FAILURE_INCONSISTENT_CMD_MASK = 16u; static constexpr uint8_t FAILURE_MOTOR_STUCK_MASK = 32u; static constexpr uint8_t FAILURE_GENERIC_MASK = 64u; // pointer types using RawPtr = px4_msgs::msg::EscReport_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::EscReport_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::EscReport_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::EscReport_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::EscReport_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::EscReport_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::EscReport_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::EscReport_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::EscReport_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::EscReport_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__EscReport std::shared_ptr<px4_msgs::msg::EscReport_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__EscReport std::shared_ptr<px4_msgs::msg::EscReport_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const EscReport_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->esc_errorcount != other.esc_errorcount) { return false; } if (this->esc_rpm != other.esc_rpm) { return false; } if (this->esc_voltage != other.esc_voltage) { return false; } if (this->esc_current != other.esc_current) { return false; } if (this->esc_temperature != other.esc_temperature) { return false; } if (this->esc_address != other.esc_address) { return false; } if (this->esc_state != other.esc_state) { return false; } if (this->failures != other.failures) { return false; } return true; } bool operator!=(const EscReport_ & other) const { return !this->operator==(other); } }; // struct EscReport_ // alias to use template instance with default allocator using EscReport = px4_msgs::msg::EscReport_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t EscReport_<ContainerAllocator>::FAILURE_NONE; template<typename ContainerAllocator> constexpr uint8_t EscReport_<ContainerAllocator>::FAILURE_OVER_CURRENT_MASK; template<typename ContainerAllocator> constexpr uint8_t EscReport_<ContainerAllocator>::FAILURE_OVER_VOLTAGE_MASK; template<typename ContainerAllocator> constexpr uint8_t EscReport_<ContainerAllocator>::FAILURE_OVER_TEMPERATURE_MASK; template<typename ContainerAllocator> constexpr uint8_t EscReport_<ContainerAllocator>::FAILURE_OVER_RPM_MASK; template<typename ContainerAllocator> constexpr uint8_t EscReport_<ContainerAllocator>::FAILURE_INCONSISTENT_CMD_MASK; template<typename ContainerAllocator> constexpr uint8_t EscReport_<ContainerAllocator>::FAILURE_MOTOR_STUCK_MASK; template<typename ContainerAllocator> constexpr uint8_t EscReport_<ContainerAllocator>::FAILURE_GENERIC_MASK; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__ESC_REPORT__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/VehicleLocalPositionGroundtruth.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_local_position_groundtruth__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/vehicle_local_position_groundtruth__struct.h" #include "px4_msgs/msg/vehicle_local_position_groundtruth__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _VehicleLocalPositionGroundtruth__ros_msg_type = px4_msgs__msg__VehicleLocalPositionGroundtruth; static bool _VehicleLocalPositionGroundtruth__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _VehicleLocalPositionGroundtruth__ros_msg_type * ros_message = static_cast<const _VehicleLocalPositionGroundtruth__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: timestamp_sample { cdr << ros_message->timestamp_sample; } // Field name: xy_valid { cdr << (ros_message->xy_valid ? true : false); } // Field name: z_valid { cdr << (ros_message->z_valid ? true : false); } // Field name: v_xy_valid { cdr << (ros_message->v_xy_valid ? true : false); } // Field name: v_z_valid { cdr << (ros_message->v_z_valid ? true : false); } // Field name: x { cdr << ros_message->x; } // Field name: y { cdr << ros_message->y; } // Field name: z { cdr << ros_message->z; } // Field name: delta_xy { size_t size = 2; auto array_ptr = ros_message->delta_xy; cdr.serializeArray(array_ptr, size); } // Field name: xy_reset_counter { cdr << ros_message->xy_reset_counter; } // Field name: delta_z { cdr << ros_message->delta_z; } // Field name: z_reset_counter { cdr << ros_message->z_reset_counter; } // Field name: vx { cdr << ros_message->vx; } // Field name: vy { cdr << ros_message->vy; } // Field name: vz { cdr << ros_message->vz; } // Field name: z_deriv { cdr << ros_message->z_deriv; } // Field name: delta_vxy { size_t size = 2; auto array_ptr = ros_message->delta_vxy; cdr.serializeArray(array_ptr, size); } // Field name: vxy_reset_counter { cdr << ros_message->vxy_reset_counter; } // Field name: delta_vz { cdr << ros_message->delta_vz; } // Field name: vz_reset_counter { cdr << ros_message->vz_reset_counter; } // Field name: ax { cdr << ros_message->ax; } // Field name: ay { cdr << ros_message->ay; } // Field name: az { cdr << ros_message->az; } // Field name: heading { cdr << ros_message->heading; } // Field name: delta_heading { cdr << ros_message->delta_heading; } // Field name: heading_reset_counter { cdr << ros_message->heading_reset_counter; } // Field name: xy_global { cdr << (ros_message->xy_global ? true : false); } // Field name: z_global { cdr << (ros_message->z_global ? true : false); } // Field name: ref_timestamp { cdr << ros_message->ref_timestamp; } // Field name: ref_lat { cdr << ros_message->ref_lat; } // Field name: ref_lon { cdr << ros_message->ref_lon; } // Field name: ref_alt { cdr << ros_message->ref_alt; } // Field name: dist_bottom { cdr << ros_message->dist_bottom; } // Field name: dist_bottom_valid { cdr << (ros_message->dist_bottom_valid ? true : false); } // Field name: dist_bottom_sensor_bitfield { cdr << ros_message->dist_bottom_sensor_bitfield; } // Field name: eph { cdr << ros_message->eph; } // Field name: epv { cdr << ros_message->epv; } // Field name: evh { cdr << ros_message->evh; } // Field name: evv { cdr << ros_message->evv; } // Field name: vxy_max { cdr << ros_message->vxy_max; } // Field name: vz_max { cdr << ros_message->vz_max; } // Field name: hagl_min { cdr << ros_message->hagl_min; } // Field name: hagl_max { cdr << ros_message->hagl_max; } return true; } static bool _VehicleLocalPositionGroundtruth__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _VehicleLocalPositionGroundtruth__ros_msg_type * ros_message = static_cast<_VehicleLocalPositionGroundtruth__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: timestamp_sample { cdr >> ros_message->timestamp_sample; } // Field name: xy_valid { uint8_t tmp; cdr >> tmp; ros_message->xy_valid = tmp ? true : false; } // Field name: z_valid { uint8_t tmp; cdr >> tmp; ros_message->z_valid = tmp ? true : false; } // Field name: v_xy_valid { uint8_t tmp; cdr >> tmp; ros_message->v_xy_valid = tmp ? true : false; } // Field name: v_z_valid { uint8_t tmp; cdr >> tmp; ros_message->v_z_valid = tmp ? true : false; } // Field name: x { cdr >> ros_message->x; } // Field name: y { cdr >> ros_message->y; } // Field name: z { cdr >> ros_message->z; } // Field name: delta_xy { size_t size = 2; auto array_ptr = ros_message->delta_xy; cdr.deserializeArray(array_ptr, size); } // Field name: xy_reset_counter { cdr >> ros_message->xy_reset_counter; } // Field name: delta_z { cdr >> ros_message->delta_z; } // Field name: z_reset_counter { cdr >> ros_message->z_reset_counter; } // Field name: vx { cdr >> ros_message->vx; } // Field name: vy { cdr >> ros_message->vy; } // Field name: vz { cdr >> ros_message->vz; } // Field name: z_deriv { cdr >> ros_message->z_deriv; } // Field name: delta_vxy { size_t size = 2; auto array_ptr = ros_message->delta_vxy; cdr.deserializeArray(array_ptr, size); } // Field name: vxy_reset_counter { cdr >> ros_message->vxy_reset_counter; } // Field name: delta_vz { cdr >> ros_message->delta_vz; } // Field name: vz_reset_counter { cdr >> ros_message->vz_reset_counter; } // Field name: ax { cdr >> ros_message->ax; } // Field name: ay { cdr >> ros_message->ay; } // Field name: az { cdr >> ros_message->az; } // Field name: heading { cdr >> ros_message->heading; } // Field name: delta_heading { cdr >> ros_message->delta_heading; } // Field name: heading_reset_counter { cdr >> ros_message->heading_reset_counter; } // Field name: xy_global { uint8_t tmp; cdr >> tmp; ros_message->xy_global = tmp ? true : false; } // Field name: z_global { uint8_t tmp; cdr >> tmp; ros_message->z_global = tmp ? true : false; } // Field name: ref_timestamp { cdr >> ros_message->ref_timestamp; } // Field name: ref_lat { cdr >> ros_message->ref_lat; } // Field name: ref_lon { cdr >> ros_message->ref_lon; } // Field name: ref_alt { cdr >> ros_message->ref_alt; } // Field name: dist_bottom { cdr >> ros_message->dist_bottom; } // Field name: dist_bottom_valid { uint8_t tmp; cdr >> tmp; ros_message->dist_bottom_valid = tmp ? true : false; } // Field name: dist_bottom_sensor_bitfield { cdr >> ros_message->dist_bottom_sensor_bitfield; } // Field name: eph { cdr >> ros_message->eph; } // Field name: epv { cdr >> ros_message->epv; } // Field name: evh { cdr >> ros_message->evh; } // Field name: evv { cdr >> ros_message->evv; } // Field name: vxy_max { cdr >> ros_message->vxy_max; } // Field name: vz_max { cdr >> ros_message->vz_max; } // Field name: hagl_min { cdr >> ros_message->hagl_min; } // Field name: hagl_max { cdr >> ros_message->hagl_max; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__VehicleLocalPositionGroundtruth( const void * untyped_ros_message, size_t current_alignment) { const _VehicleLocalPositionGroundtruth__ros_msg_type * ros_message = static_cast<const _VehicleLocalPositionGroundtruth__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name timestamp_sample { size_t item_size = sizeof(ros_message->timestamp_sample); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name xy_valid { size_t item_size = sizeof(ros_message->xy_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name z_valid { size_t item_size = sizeof(ros_message->z_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name v_xy_valid { size_t item_size = sizeof(ros_message->v_xy_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name v_z_valid { size_t item_size = sizeof(ros_message->v_z_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name x { size_t item_size = sizeof(ros_message->x); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name y { size_t item_size = sizeof(ros_message->y); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name z { size_t item_size = sizeof(ros_message->z); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name delta_xy { size_t array_size = 2; auto array_ptr = ros_message->delta_xy; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name xy_reset_counter { size_t item_size = sizeof(ros_message->xy_reset_counter); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name delta_z { size_t item_size = sizeof(ros_message->delta_z); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name z_reset_counter { size_t item_size = sizeof(ros_message->z_reset_counter); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vx { size_t item_size = sizeof(ros_message->vx); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vy { size_t item_size = sizeof(ros_message->vy); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vz { size_t item_size = sizeof(ros_message->vz); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name z_deriv { size_t item_size = sizeof(ros_message->z_deriv); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name delta_vxy { size_t array_size = 2; auto array_ptr = ros_message->delta_vxy; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vxy_reset_counter { size_t item_size = sizeof(ros_message->vxy_reset_counter); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name delta_vz { size_t item_size = sizeof(ros_message->delta_vz); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vz_reset_counter { size_t item_size = sizeof(ros_message->vz_reset_counter); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name ax { size_t item_size = sizeof(ros_message->ax); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name ay { size_t item_size = sizeof(ros_message->ay); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name az { size_t item_size = sizeof(ros_message->az); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name heading { size_t item_size = sizeof(ros_message->heading); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name delta_heading { size_t item_size = sizeof(ros_message->delta_heading); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name heading_reset_counter { size_t item_size = sizeof(ros_message->heading_reset_counter); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name xy_global { size_t item_size = sizeof(ros_message->xy_global); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name z_global { size_t item_size = sizeof(ros_message->z_global); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name ref_timestamp { size_t item_size = sizeof(ros_message->ref_timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name ref_lat { size_t item_size = sizeof(ros_message->ref_lat); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name ref_lon { size_t item_size = sizeof(ros_message->ref_lon); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name ref_alt { size_t item_size = sizeof(ros_message->ref_alt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name dist_bottom { size_t item_size = sizeof(ros_message->dist_bottom); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name dist_bottom_valid { size_t item_size = sizeof(ros_message->dist_bottom_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name dist_bottom_sensor_bitfield { size_t item_size = sizeof(ros_message->dist_bottom_sensor_bitfield); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name eph { size_t item_size = sizeof(ros_message->eph); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name epv { size_t item_size = sizeof(ros_message->epv); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name evh { size_t item_size = sizeof(ros_message->evh); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name evv { size_t item_size = sizeof(ros_message->evv); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vxy_max { size_t item_size = sizeof(ros_message->vxy_max); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vz_max { size_t item_size = sizeof(ros_message->vz_max); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name hagl_min { size_t item_size = sizeof(ros_message->hagl_min); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name hagl_max { size_t item_size = sizeof(ros_message->hagl_max); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _VehicleLocalPositionGroundtruth__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__VehicleLocalPositionGroundtruth( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__VehicleLocalPositionGroundtruth( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: timestamp_sample { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: xy_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: z_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: v_xy_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: v_z_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: x { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: y { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: z { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: delta_xy { size_t array_size = 2; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: xy_reset_counter { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: delta_z { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: z_reset_counter { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: vx { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: vy { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: vz { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: z_deriv { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: delta_vxy { size_t array_size = 2; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: vxy_reset_counter { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: delta_vz { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: vz_reset_counter { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: ax { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: ay { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: az { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: heading { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: delta_heading { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: heading_reset_counter { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: xy_global { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: z_global { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: ref_timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: ref_lat { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: ref_lon { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: ref_alt { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: dist_bottom { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: dist_bottom_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: dist_bottom_sensor_bitfield { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: eph { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: epv { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: evh { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: evv { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: vxy_max { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: vz_max { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: hagl_min { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: hagl_max { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _VehicleLocalPositionGroundtruth__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__VehicleLocalPositionGroundtruth( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_VehicleLocalPositionGroundtruth = { "px4_msgs::msg", "VehicleLocalPositionGroundtruth", _VehicleLocalPositionGroundtruth__cdr_serialize, _VehicleLocalPositionGroundtruth__cdr_deserialize, _VehicleLocalPositionGroundtruth__get_serialized_size, _VehicleLocalPositionGroundtruth__max_serialized_size }; static rosidl_message_type_support_t _VehicleLocalPositionGroundtruth__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_VehicleLocalPositionGroundtruth, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, VehicleLocalPositionGroundtruth)() { return &_VehicleLocalPositionGroundtruth__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/bringup/ament_cmake_core/package.cmake set(_AMENT_PACKAGE_NAME "bringup") set(bringup_VERSION "0.0.0") set(bringup_MAINTAINER "talbot330-red <<EMAIL>>") set(bringup_BUILD_DEPENDS ) set(bringup_BUILDTOOL_DEPENDS "ament_cmake") set(bringup_BUILD_EXPORT_DEPENDS ) set(bringup_BUILDTOOL_EXPORT_DEPENDS ) set(bringup_EXEC_DEPENDS "multi_rtd" "offboard_ibqr") set(bringup_TEST_DEPENDS "ament_lint_auto" "ament_lint_common") set(bringup_GROUP_DEPENDS ) set(bringup_MEMBER_OF_GROUPS ) set(bringup_DEPRECATED "") set(bringup_EXPORT_TAGS) list(APPEND bringup_EXPORT_TAGS "<build_type>ament_cmake</build_type>") <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/collision_constraints.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/CollisionConstraints.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__COLLISION_CONSTRAINTS_H_ #define PX4_MSGS__MSG__COLLISION_CONSTRAINTS_H_ #include "px4_msgs/msg/collision_constraints__struct.h" #include "px4_msgs/msg/collision_constraints__functions.h" #include "px4_msgs/msg/collision_constraints__type_support.h" #endif // PX4_MSGS__MSG__COLLISION_CONSTRAINTS_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/uavcan_parameter_request.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__UAVCAN_PARAMETER_REQUEST_HPP_ #define PX4_MSGS__MSG__UAVCAN_PARAMETER_REQUEST_HPP_ #include "px4_msgs/msg/uavcan_parameter_request__struct.hpp" #include "px4_msgs/msg/uavcan_parameter_request__traits.hpp" #endif // PX4_MSGS__MSG__UAVCAN_PARAMETER_REQUEST_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_position_controller_status_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/PositionControllerStatus.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/position_controller_status__struct.h" #include "px4_msgs/msg/position_controller_status__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__position_controller_status__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[66]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._position_controller_status.PositionControllerStatus", full_classname_dest, 65) == 0); } px4_msgs__msg__PositionControllerStatus * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // nav_roll PyObject * field = PyObject_GetAttrString(_pymsg, "nav_roll"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->nav_roll = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // nav_pitch PyObject * field = PyObject_GetAttrString(_pymsg, "nav_pitch"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->nav_pitch = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // nav_bearing PyObject * field = PyObject_GetAttrString(_pymsg, "nav_bearing"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->nav_bearing = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // target_bearing PyObject * field = PyObject_GetAttrString(_pymsg, "target_bearing"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->target_bearing = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // xtrack_error PyObject * field = PyObject_GetAttrString(_pymsg, "xtrack_error"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->xtrack_error = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // wp_dist PyObject * field = PyObject_GetAttrString(_pymsg, "wp_dist"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->wp_dist = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // acceptance_radius PyObject * field = PyObject_GetAttrString(_pymsg, "acceptance_radius"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->acceptance_radius = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // yaw_acceptance PyObject * field = PyObject_GetAttrString(_pymsg, "yaw_acceptance"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->yaw_acceptance = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // altitude_acceptance PyObject * field = PyObject_GetAttrString(_pymsg, "altitude_acceptance"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->altitude_acceptance = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // type PyObject * field = PyObject_GetAttrString(_pymsg, "type"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->type = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__position_controller_status__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of PositionControllerStatus */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._position_controller_status"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "PositionControllerStatus"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__PositionControllerStatus * ros_message = (px4_msgs__msg__PositionControllerStatus *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // nav_roll PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->nav_roll); { int rc = PyObject_SetAttrString(_pymessage, "nav_roll", field); Py_DECREF(field); if (rc) { return NULL; } } } { // nav_pitch PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->nav_pitch); { int rc = PyObject_SetAttrString(_pymessage, "nav_pitch", field); Py_DECREF(field); if (rc) { return NULL; } } } { // nav_bearing PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->nav_bearing); { int rc = PyObject_SetAttrString(_pymessage, "nav_bearing", field); Py_DECREF(field); if (rc) { return NULL; } } } { // target_bearing PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->target_bearing); { int rc = PyObject_SetAttrString(_pymessage, "target_bearing", field); Py_DECREF(field); if (rc) { return NULL; } } } { // xtrack_error PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->xtrack_error); { int rc = PyObject_SetAttrString(_pymessage, "xtrack_error", field); Py_DECREF(field); if (rc) { return NULL; } } } { // wp_dist PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->wp_dist); { int rc = PyObject_SetAttrString(_pymessage, "wp_dist", field); Py_DECREF(field); if (rc) { return NULL; } } } { // acceptance_radius PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->acceptance_radius); { int rc = PyObject_SetAttrString(_pymessage, "acceptance_radius", field); Py_DECREF(field); if (rc) { return NULL; } } } { // yaw_acceptance PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->yaw_acceptance); { int rc = PyObject_SetAttrString(_pymessage, "yaw_acceptance", field); Py_DECREF(field); if (rc) { return NULL; } } } { // altitude_acceptance PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->altitude_acceptance); { int rc = PyObject_SetAttrString(_pymessage, "altitude_acceptance", field); Py_DECREF(field); if (rc) { return NULL; } } } { // type PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->type); { int rc = PyObject_SetAttrString(_pymessage, "type", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/rc_channels__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/RcChannels.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/rc_channels__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/rc_channels__functions.h" #include "px4_msgs/msg/rc_channels__struct.h" #ifdef __cplusplus extern "C" { #endif void RcChannels__rosidl_typesupport_introspection_c__RcChannels_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__RcChannels__init(message_memory); } void RcChannels__rosidl_typesupport_introspection_c__RcChannels_fini_function(void * message_memory) { px4_msgs__msg__RcChannels__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember RcChannels__rosidl_typesupport_introspection_c__RcChannels_message_member_array[8] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__RcChannels, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_last_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__RcChannels, timestamp_last_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "channels", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 18, // array size false, // is upper bound offsetof(px4_msgs__msg__RcChannels, channels), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "channel_count", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__RcChannels, channel_count), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "function", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT8, // type 0, // upper bound of string NULL, // members of sub message true, // is array 26, // array size false, // is upper bound offsetof(px4_msgs__msg__RcChannels, function), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rssi", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__RcChannels, rssi), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "signal_lost", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__RcChannels, signal_lost), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "frame_drop_count", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__RcChannels, frame_drop_count), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers RcChannels__rosidl_typesupport_introspection_c__RcChannels_message_members = { "px4_msgs__msg", // message namespace "RcChannels", // message name 8, // number of fields sizeof(px4_msgs__msg__RcChannels), RcChannels__rosidl_typesupport_introspection_c__RcChannels_message_member_array, // message members RcChannels__rosidl_typesupport_introspection_c__RcChannels_init_function, // function to initialize message memory (memory has to be allocated) RcChannels__rosidl_typesupport_introspection_c__RcChannels_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t RcChannels__rosidl_typesupport_introspection_c__RcChannels_message_type_support_handle = { 0, &RcChannels__rosidl_typesupport_introspection_c__RcChannels_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, RcChannels)() { if (!RcChannels__rosidl_typesupport_introspection_c__RcChannels_message_type_support_handle.typesupport_identifier) { RcChannels__rosidl_typesupport_introspection_c__RcChannels_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &RcChannels__rosidl_typesupport_introspection_c__RcChannels_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/multi_rtd/build/lib/multi_rtd/agent.py # Dynamical system describing robot import numpy as np class Agent: def __init__(self): # parameters self.n_dim = 3 # number of dimensions agent exists in (i.e. 2D or 3D) self.v_max = 2 # [m/s] max allowed velocity in any dimension # system matrices self.A = np.array([]) # dynamics matrix self.B = np.array([]) # control matrix self.C = np.array([]) # measurement matrix self.K = np.array([]) # feedback matrix self.Q = np.array([]) # process noise covariance self.R = np.array([]) # measurement noise covariance # state, measurements, and history self.x = np.zeros((self.n_dim*3,1)) # state = (position, velocitiy, acceleration) # state update def step(self, input): pass <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_status.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_STATUS_H_ #define PX4_MSGS__MSG__VEHICLE_STATUS_H_ #include "px4_msgs/msg/vehicle_status__struct.h" #include "px4_msgs/msg/vehicle_status__functions.h" #include "px4_msgs/msg/vehicle_status__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_STATUS_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_ping.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/Ping.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_Ping(type): """Metaclass of message 'Ping'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.Ping') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__ping cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__ping cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__ping cls._TYPE_SUPPORT = module.type_support_msg__msg__ping cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__ping @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class Ping(metaclass=Metaclass_Ping): """Message class 'Ping'.""" __slots__ = [ '_timestamp', '_ping_time', '_ping_sequence', '_dropped_packets', '_rtt_ms', '_system_id', '_component_id', ] _fields_and_field_types = { 'timestamp': 'uint64', 'ping_time': 'uint64', 'ping_sequence': 'uint32', 'dropped_packets': 'uint32', 'rtt_ms': 'float', 'system_id': 'uint8', 'component_id': 'uint8', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.ping_time = kwargs.get('ping_time', int()) self.ping_sequence = kwargs.get('ping_sequence', int()) self.dropped_packets = kwargs.get('dropped_packets', int()) self.rtt_ms = kwargs.get('rtt_ms', float()) self.system_id = kwargs.get('system_id', int()) self.component_id = kwargs.get('component_id', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.ping_time != other.ping_time: return False if self.ping_sequence != other.ping_sequence: return False if self.dropped_packets != other.dropped_packets: return False if self.rtt_ms != other.rtt_ms: return False if self.system_id != other.system_id: return False if self.component_id != other.component_id: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def ping_time(self): """Message field 'ping_time'.""" return self._ping_time @ping_time.setter def ping_time(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'ping_time' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'ping_time' field must be an unsigned integer in [0, 18446744073709551615]" self._ping_time = value @property def ping_sequence(self): """Message field 'ping_sequence'.""" return self._ping_sequence @ping_sequence.setter def ping_sequence(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'ping_sequence' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'ping_sequence' field must be an unsigned integer in [0, 4294967295]" self._ping_sequence = value @property def dropped_packets(self): """Message field 'dropped_packets'.""" return self._dropped_packets @dropped_packets.setter def dropped_packets(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'dropped_packets' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'dropped_packets' field must be an unsigned integer in [0, 4294967295]" self._dropped_packets = value @property def rtt_ms(self): """Message field 'rtt_ms'.""" return self._rtt_ms @rtt_ms.setter def rtt_ms(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'rtt_ms' field must be of type 'float'" self._rtt_ms = value @property def system_id(self): """Message field 'system_id'.""" return self._system_id @system_id.setter def system_id(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'system_id' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'system_id' field must be an unsigned integer in [0, 255]" self._system_id = value @property def component_id(self): """Message field 'component_id'.""" return self._component_id @component_id.setter def component_id(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'component_id' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'component_id' field must be an unsigned integer in [0, 255]" self._component_id = value <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_air_data.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_AIR_DATA_HPP_ #define PX4_MSGS__MSG__VEHICLE_AIR_DATA_HPP_ #include "px4_msgs/msg/vehicle_air_data__struct.hpp" #include "px4_msgs/msg/vehicle_air_data__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_AIR_DATA_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/esc_report__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/EscReport.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/esc_report__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__EscReport__init(px4_msgs__msg__EscReport * msg) { if (!msg) { return false; } // timestamp // esc_errorcount // esc_rpm // esc_voltage // esc_current // esc_temperature // esc_address // esc_state // failures return true; } void px4_msgs__msg__EscReport__fini(px4_msgs__msg__EscReport * msg) { if (!msg) { return; } // timestamp // esc_errorcount // esc_rpm // esc_voltage // esc_current // esc_temperature // esc_address // esc_state // failures } px4_msgs__msg__EscReport * px4_msgs__msg__EscReport__create() { px4_msgs__msg__EscReport * msg = (px4_msgs__msg__EscReport *)malloc(sizeof(px4_msgs__msg__EscReport)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__EscReport)); bool success = px4_msgs__msg__EscReport__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__EscReport__destroy(px4_msgs__msg__EscReport * msg) { if (msg) { px4_msgs__msg__EscReport__fini(msg); } free(msg); } bool px4_msgs__msg__EscReport__Sequence__init(px4_msgs__msg__EscReport__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__EscReport * data = NULL; if (size) { data = (px4_msgs__msg__EscReport *)calloc(size, sizeof(px4_msgs__msg__EscReport)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__EscReport__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__EscReport__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__EscReport__Sequence__fini(px4_msgs__msg__EscReport__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__EscReport__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__EscReport__Sequence * px4_msgs__msg__EscReport__Sequence__create(size_t size) { px4_msgs__msg__EscReport__Sequence * array = (px4_msgs__msg__EscReport__Sequence *)malloc(sizeof(px4_msgs__msg__EscReport__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__EscReport__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__EscReport__Sequence__destroy(px4_msgs__msg__EscReport__Sequence * array) { if (array) { px4_msgs__msg__EscReport__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_estimator_status_flags_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/EstimatorStatusFlags.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/estimator_status_flags__struct.h" #include "px4_msgs/msg/estimator_status_flags__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__estimator_status_flags__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[58]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._estimator_status_flags.EstimatorStatusFlags", full_classname_dest, 57) == 0); } px4_msgs__msg__EstimatorStatusFlags * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // timestamp_sample PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp_sample"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp_sample = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // control_status_changes PyObject * field = PyObject_GetAttrString(_pymsg, "control_status_changes"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->control_status_changes = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // cs_tilt_align PyObject * field = PyObject_GetAttrString(_pymsg, "cs_tilt_align"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->cs_tilt_align = (Py_True == field); Py_DECREF(field); } { // cs_yaw_align PyObject * field = PyObject_GetAttrString(_pymsg, "cs_yaw_align"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->cs_yaw_align = (Py_True == field); Py_DECREF(field); } { // cs_gps PyObject * field = PyObject_GetAttrString(_pymsg, "cs_gps"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->cs_gps = (Py_True == field); Py_DECREF(field); } { // cs_opt_flow PyObject * field = PyObject_GetAttrString(_pymsg, "cs_opt_flow"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->cs_opt_flow = (Py_True == field); Py_DECREF(field); } { // cs_mag_hdg PyObject * field = PyObject_GetAttrString(_pymsg, "cs_mag_hdg"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->cs_mag_hdg = (Py_True == field); Py_DECREF(field); } { // cs_mag_3d PyObject * field = PyObject_GetAttrString(_pymsg, "cs_mag_3d"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->cs_mag_3d = (Py_True == field); Py_DECREF(field); } { // cs_mag_dec PyObject * field = PyObject_GetAttrString(_pymsg, "cs_mag_dec"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->cs_mag_dec = (Py_True == field); Py_DECREF(field); } { // cs_in_air PyObject * field = PyObject_GetAttrString(_pymsg, "cs_in_air"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->cs_in_air = (Py_True == field); Py_DECREF(field); } { // cs_wind PyObject * field = PyObject_GetAttrString(_pymsg, "cs_wind"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->cs_wind = (Py_True == field); Py_DECREF(field); } { // cs_baro_hgt PyObject * field = PyObject_GetAttrString(_pymsg, "cs_baro_hgt"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->cs_baro_hgt = (Py_True == field); Py_DECREF(field); } { // cs_rng_hgt PyObject * field = PyObject_GetAttrString(_pymsg, "cs_rng_hgt"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->cs_rng_hgt = (Py_True == field); Py_DECREF(field); } { // cs_gps_hgt PyObject * field = PyObject_GetAttrString(_pymsg, "cs_gps_hgt"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->cs_gps_hgt = (Py_True == field); Py_DECREF(field); } { // cs_ev_pos PyObject * field = PyObject_GetAttrString(_pymsg, "cs_ev_pos"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->cs_ev_pos = (Py_True == field); Py_DECREF(field); } { // cs_ev_yaw PyObject * field = PyObject_GetAttrString(_pymsg, "cs_ev_yaw"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->cs_ev_yaw = (Py_True == field); Py_DECREF(field); } { // cs_ev_hgt PyObject * field = PyObject_GetAttrString(_pymsg, "cs_ev_hgt"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->cs_ev_hgt = (Py_True == field); Py_DECREF(field); } { // cs_fuse_beta PyObject * field = PyObject_GetAttrString(_pymsg, "cs_fuse_beta"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->cs_fuse_beta = (Py_True == field); Py_DECREF(field); } { // cs_mag_field_disturbed PyObject * field = PyObject_GetAttrString(_pymsg, "cs_mag_field_disturbed"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->cs_mag_field_disturbed = (Py_True == field); Py_DECREF(field); } { // cs_fixed_wing PyObject * field = PyObject_GetAttrString(_pymsg, "cs_fixed_wing"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->cs_fixed_wing = (Py_True == field); Py_DECREF(field); } { // cs_mag_fault PyObject * field = PyObject_GetAttrString(_pymsg, "cs_mag_fault"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->cs_mag_fault = (Py_True == field); Py_DECREF(field); } { // cs_fuse_aspd PyObject * field = PyObject_GetAttrString(_pymsg, "cs_fuse_aspd"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->cs_fuse_aspd = (Py_True == field); Py_DECREF(field); } { // cs_gnd_effect PyObject * field = PyObject_GetAttrString(_pymsg, "cs_gnd_effect"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->cs_gnd_effect = (Py_True == field); Py_DECREF(field); } { // cs_rng_stuck PyObject * field = PyObject_GetAttrString(_pymsg, "cs_rng_stuck"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->cs_rng_stuck = (Py_True == field); Py_DECREF(field); } { // cs_gps_yaw PyObject * field = PyObject_GetAttrString(_pymsg, "cs_gps_yaw"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->cs_gps_yaw = (Py_True == field); Py_DECREF(field); } { // cs_mag_aligned_in_flight PyObject * field = PyObject_GetAttrString(_pymsg, "cs_mag_aligned_in_flight"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->cs_mag_aligned_in_flight = (Py_True == field); Py_DECREF(field); } { // cs_ev_vel PyObject * field = PyObject_GetAttrString(_pymsg, "cs_ev_vel"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->cs_ev_vel = (Py_True == field); Py_DECREF(field); } { // cs_synthetic_mag_z PyObject * field = PyObject_GetAttrString(_pymsg, "cs_synthetic_mag_z"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->cs_synthetic_mag_z = (Py_True == field); Py_DECREF(field); } { // cs_vehicle_at_rest PyObject * field = PyObject_GetAttrString(_pymsg, "cs_vehicle_at_rest"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->cs_vehicle_at_rest = (Py_True == field); Py_DECREF(field); } { // fault_status_changes PyObject * field = PyObject_GetAttrString(_pymsg, "fault_status_changes"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->fault_status_changes = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // fs_bad_mag_x PyObject * field = PyObject_GetAttrString(_pymsg, "fs_bad_mag_x"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->fs_bad_mag_x = (Py_True == field); Py_DECREF(field); } { // fs_bad_mag_y PyObject * field = PyObject_GetAttrString(_pymsg, "fs_bad_mag_y"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->fs_bad_mag_y = (Py_True == field); Py_DECREF(field); } { // fs_bad_mag_z PyObject * field = PyObject_GetAttrString(_pymsg, "fs_bad_mag_z"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->fs_bad_mag_z = (Py_True == field); Py_DECREF(field); } { // fs_bad_hdg PyObject * field = PyObject_GetAttrString(_pymsg, "fs_bad_hdg"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->fs_bad_hdg = (Py_True == field); Py_DECREF(field); } { // fs_bad_mag_decl PyObject * field = PyObject_GetAttrString(_pymsg, "fs_bad_mag_decl"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->fs_bad_mag_decl = (Py_True == field); Py_DECREF(field); } { // fs_bad_airspeed PyObject * field = PyObject_GetAttrString(_pymsg, "fs_bad_airspeed"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->fs_bad_airspeed = (Py_True == field); Py_DECREF(field); } { // fs_bad_sideslip PyObject * field = PyObject_GetAttrString(_pymsg, "fs_bad_sideslip"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->fs_bad_sideslip = (Py_True == field); Py_DECREF(field); } { // fs_bad_optflow_x PyObject * field = PyObject_GetAttrString(_pymsg, "fs_bad_optflow_x"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->fs_bad_optflow_x = (Py_True == field); Py_DECREF(field); } { // fs_bad_optflow_y PyObject * field = PyObject_GetAttrString(_pymsg, "fs_bad_optflow_y"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->fs_bad_optflow_y = (Py_True == field); Py_DECREF(field); } { // fs_bad_vel_n PyObject * field = PyObject_GetAttrString(_pymsg, "fs_bad_vel_n"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->fs_bad_vel_n = (Py_True == field); Py_DECREF(field); } { // fs_bad_vel_e PyObject * field = PyObject_GetAttrString(_pymsg, "fs_bad_vel_e"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->fs_bad_vel_e = (Py_True == field); Py_DECREF(field); } { // fs_bad_vel_d PyObject * field = PyObject_GetAttrString(_pymsg, "fs_bad_vel_d"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->fs_bad_vel_d = (Py_True == field); Py_DECREF(field); } { // fs_bad_pos_n PyObject * field = PyObject_GetAttrString(_pymsg, "fs_bad_pos_n"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->fs_bad_pos_n = (Py_True == field); Py_DECREF(field); } { // fs_bad_pos_e PyObject * field = PyObject_GetAttrString(_pymsg, "fs_bad_pos_e"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->fs_bad_pos_e = (Py_True == field); Py_DECREF(field); } { // fs_bad_pos_d PyObject * field = PyObject_GetAttrString(_pymsg, "fs_bad_pos_d"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->fs_bad_pos_d = (Py_True == field); Py_DECREF(field); } { // fs_bad_acc_bias PyObject * field = PyObject_GetAttrString(_pymsg, "fs_bad_acc_bias"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->fs_bad_acc_bias = (Py_True == field); Py_DECREF(field); } { // fs_bad_acc_vertical PyObject * field = PyObject_GetAttrString(_pymsg, "fs_bad_acc_vertical"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->fs_bad_acc_vertical = (Py_True == field); Py_DECREF(field); } { // fs_bad_acc_clipping PyObject * field = PyObject_GetAttrString(_pymsg, "fs_bad_acc_clipping"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->fs_bad_acc_clipping = (Py_True == field); Py_DECREF(field); } { // innovation_fault_status_changes PyObject * field = PyObject_GetAttrString(_pymsg, "innovation_fault_status_changes"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->innovation_fault_status_changes = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // reject_hor_vel PyObject * field = PyObject_GetAttrString(_pymsg, "reject_hor_vel"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->reject_hor_vel = (Py_True == field); Py_DECREF(field); } { // reject_ver_vel PyObject * field = PyObject_GetAttrString(_pymsg, "reject_ver_vel"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->reject_ver_vel = (Py_True == field); Py_DECREF(field); } { // reject_hor_pos PyObject * field = PyObject_GetAttrString(_pymsg, "reject_hor_pos"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->reject_hor_pos = (Py_True == field); Py_DECREF(field); } { // reject_ver_pos PyObject * field = PyObject_GetAttrString(_pymsg, "reject_ver_pos"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->reject_ver_pos = (Py_True == field); Py_DECREF(field); } { // reject_mag_x PyObject * field = PyObject_GetAttrString(_pymsg, "reject_mag_x"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->reject_mag_x = (Py_True == field); Py_DECREF(field); } { // reject_mag_y PyObject * field = PyObject_GetAttrString(_pymsg, "reject_mag_y"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->reject_mag_y = (Py_True == field); Py_DECREF(field); } { // reject_mag_z PyObject * field = PyObject_GetAttrString(_pymsg, "reject_mag_z"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->reject_mag_z = (Py_True == field); Py_DECREF(field); } { // reject_yaw PyObject * field = PyObject_GetAttrString(_pymsg, "reject_yaw"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->reject_yaw = (Py_True == field); Py_DECREF(field); } { // reject_airspeed PyObject * field = PyObject_GetAttrString(_pymsg, "reject_airspeed"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->reject_airspeed = (Py_True == field); Py_DECREF(field); } { // reject_sideslip PyObject * field = PyObject_GetAttrString(_pymsg, "reject_sideslip"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->reject_sideslip = (Py_True == field); Py_DECREF(field); } { // reject_hagl PyObject * field = PyObject_GetAttrString(_pymsg, "reject_hagl"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->reject_hagl = (Py_True == field); Py_DECREF(field); } { // reject_optflow_x PyObject * field = PyObject_GetAttrString(_pymsg, "reject_optflow_x"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->reject_optflow_x = (Py_True == field); Py_DECREF(field); } { // reject_optflow_y PyObject * field = PyObject_GetAttrString(_pymsg, "reject_optflow_y"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->reject_optflow_y = (Py_True == field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__estimator_status_flags__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of EstimatorStatusFlags */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._estimator_status_flags"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "EstimatorStatusFlags"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__EstimatorStatusFlags * ros_message = (px4_msgs__msg__EstimatorStatusFlags *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // timestamp_sample PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp_sample); { int rc = PyObject_SetAttrString(_pymessage, "timestamp_sample", field); Py_DECREF(field); if (rc) { return NULL; } } } { // control_status_changes PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->control_status_changes); { int rc = PyObject_SetAttrString(_pymessage, "control_status_changes", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cs_tilt_align PyObject * field = NULL; field = PyBool_FromLong(ros_message->cs_tilt_align ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "cs_tilt_align", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cs_yaw_align PyObject * field = NULL; field = PyBool_FromLong(ros_message->cs_yaw_align ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "cs_yaw_align", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cs_gps PyObject * field = NULL; field = PyBool_FromLong(ros_message->cs_gps ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "cs_gps", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cs_opt_flow PyObject * field = NULL; field = PyBool_FromLong(ros_message->cs_opt_flow ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "cs_opt_flow", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cs_mag_hdg PyObject * field = NULL; field = PyBool_FromLong(ros_message->cs_mag_hdg ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "cs_mag_hdg", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cs_mag_3d PyObject * field = NULL; field = PyBool_FromLong(ros_message->cs_mag_3d ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "cs_mag_3d", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cs_mag_dec PyObject * field = NULL; field = PyBool_FromLong(ros_message->cs_mag_dec ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "cs_mag_dec", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cs_in_air PyObject * field = NULL; field = PyBool_FromLong(ros_message->cs_in_air ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "cs_in_air", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cs_wind PyObject * field = NULL; field = PyBool_FromLong(ros_message->cs_wind ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "cs_wind", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cs_baro_hgt PyObject * field = NULL; field = PyBool_FromLong(ros_message->cs_baro_hgt ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "cs_baro_hgt", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cs_rng_hgt PyObject * field = NULL; field = PyBool_FromLong(ros_message->cs_rng_hgt ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "cs_rng_hgt", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cs_gps_hgt PyObject * field = NULL; field = PyBool_FromLong(ros_message->cs_gps_hgt ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "cs_gps_hgt", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cs_ev_pos PyObject * field = NULL; field = PyBool_FromLong(ros_message->cs_ev_pos ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "cs_ev_pos", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cs_ev_yaw PyObject * field = NULL; field = PyBool_FromLong(ros_message->cs_ev_yaw ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "cs_ev_yaw", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cs_ev_hgt PyObject * field = NULL; field = PyBool_FromLong(ros_message->cs_ev_hgt ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "cs_ev_hgt", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cs_fuse_beta PyObject * field = NULL; field = PyBool_FromLong(ros_message->cs_fuse_beta ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "cs_fuse_beta", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cs_mag_field_disturbed PyObject * field = NULL; field = PyBool_FromLong(ros_message->cs_mag_field_disturbed ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "cs_mag_field_disturbed", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cs_fixed_wing PyObject * field = NULL; field = PyBool_FromLong(ros_message->cs_fixed_wing ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "cs_fixed_wing", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cs_mag_fault PyObject * field = NULL; field = PyBool_FromLong(ros_message->cs_mag_fault ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "cs_mag_fault", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cs_fuse_aspd PyObject * field = NULL; field = PyBool_FromLong(ros_message->cs_fuse_aspd ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "cs_fuse_aspd", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cs_gnd_effect PyObject * field = NULL; field = PyBool_FromLong(ros_message->cs_gnd_effect ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "cs_gnd_effect", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cs_rng_stuck PyObject * field = NULL; field = PyBool_FromLong(ros_message->cs_rng_stuck ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "cs_rng_stuck", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cs_gps_yaw PyObject * field = NULL; field = PyBool_FromLong(ros_message->cs_gps_yaw ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "cs_gps_yaw", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cs_mag_aligned_in_flight PyObject * field = NULL; field = PyBool_FromLong(ros_message->cs_mag_aligned_in_flight ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "cs_mag_aligned_in_flight", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cs_ev_vel PyObject * field = NULL; field = PyBool_FromLong(ros_message->cs_ev_vel ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "cs_ev_vel", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cs_synthetic_mag_z PyObject * field = NULL; field = PyBool_FromLong(ros_message->cs_synthetic_mag_z ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "cs_synthetic_mag_z", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cs_vehicle_at_rest PyObject * field = NULL; field = PyBool_FromLong(ros_message->cs_vehicle_at_rest ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "cs_vehicle_at_rest", field); Py_DECREF(field); if (rc) { return NULL; } } } { // fault_status_changes PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->fault_status_changes); { int rc = PyObject_SetAttrString(_pymessage, "fault_status_changes", field); Py_DECREF(field); if (rc) { return NULL; } } } { // fs_bad_mag_x PyObject * field = NULL; field = PyBool_FromLong(ros_message->fs_bad_mag_x ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "fs_bad_mag_x", field); Py_DECREF(field); if (rc) { return NULL; } } } { // fs_bad_mag_y PyObject * field = NULL; field = PyBool_FromLong(ros_message->fs_bad_mag_y ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "fs_bad_mag_y", field); Py_DECREF(field); if (rc) { return NULL; } } } { // fs_bad_mag_z PyObject * field = NULL; field = PyBool_FromLong(ros_message->fs_bad_mag_z ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "fs_bad_mag_z", field); Py_DECREF(field); if (rc) { return NULL; } } } { // fs_bad_hdg PyObject * field = NULL; field = PyBool_FromLong(ros_message->fs_bad_hdg ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "fs_bad_hdg", field); Py_DECREF(field); if (rc) { return NULL; } } } { // fs_bad_mag_decl PyObject * field = NULL; field = PyBool_FromLong(ros_message->fs_bad_mag_decl ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "fs_bad_mag_decl", field); Py_DECREF(field); if (rc) { return NULL; } } } { // fs_bad_airspeed PyObject * field = NULL; field = PyBool_FromLong(ros_message->fs_bad_airspeed ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "fs_bad_airspeed", field); Py_DECREF(field); if (rc) { return NULL; } } } { // fs_bad_sideslip PyObject * field = NULL; field = PyBool_FromLong(ros_message->fs_bad_sideslip ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "fs_bad_sideslip", field); Py_DECREF(field); if (rc) { return NULL; } } } { // fs_bad_optflow_x PyObject * field = NULL; field = PyBool_FromLong(ros_message->fs_bad_optflow_x ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "fs_bad_optflow_x", field); Py_DECREF(field); if (rc) { return NULL; } } } { // fs_bad_optflow_y PyObject * field = NULL; field = PyBool_FromLong(ros_message->fs_bad_optflow_y ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "fs_bad_optflow_y", field); Py_DECREF(field); if (rc) { return NULL; } } } { // fs_bad_vel_n PyObject * field = NULL; field = PyBool_FromLong(ros_message->fs_bad_vel_n ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "fs_bad_vel_n", field); Py_DECREF(field); if (rc) { return NULL; } } } { // fs_bad_vel_e PyObject * field = NULL; field = PyBool_FromLong(ros_message->fs_bad_vel_e ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "fs_bad_vel_e", field); Py_DECREF(field); if (rc) { return NULL; } } } { // fs_bad_vel_d PyObject * field = NULL; field = PyBool_FromLong(ros_message->fs_bad_vel_d ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "fs_bad_vel_d", field); Py_DECREF(field); if (rc) { return NULL; } } } { // fs_bad_pos_n PyObject * field = NULL; field = PyBool_FromLong(ros_message->fs_bad_pos_n ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "fs_bad_pos_n", field); Py_DECREF(field); if (rc) { return NULL; } } } { // fs_bad_pos_e PyObject * field = NULL; field = PyBool_FromLong(ros_message->fs_bad_pos_e ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "fs_bad_pos_e", field); Py_DECREF(field); if (rc) { return NULL; } } } { // fs_bad_pos_d PyObject * field = NULL; field = PyBool_FromLong(ros_message->fs_bad_pos_d ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "fs_bad_pos_d", field); Py_DECREF(field); if (rc) { return NULL; } } } { // fs_bad_acc_bias PyObject * field = NULL; field = PyBool_FromLong(ros_message->fs_bad_acc_bias ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "fs_bad_acc_bias", field); Py_DECREF(field); if (rc) { return NULL; } } } { // fs_bad_acc_vertical PyObject * field = NULL; field = PyBool_FromLong(ros_message->fs_bad_acc_vertical ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "fs_bad_acc_vertical", field); Py_DECREF(field); if (rc) { return NULL; } } } { // fs_bad_acc_clipping PyObject * field = NULL; field = PyBool_FromLong(ros_message->fs_bad_acc_clipping ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "fs_bad_acc_clipping", field); Py_DECREF(field); if (rc) { return NULL; } } } { // innovation_fault_status_changes PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->innovation_fault_status_changes); { int rc = PyObject_SetAttrString(_pymessage, "innovation_fault_status_changes", field); Py_DECREF(field); if (rc) { return NULL; } } } { // reject_hor_vel PyObject * field = NULL; field = PyBool_FromLong(ros_message->reject_hor_vel ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "reject_hor_vel", field); Py_DECREF(field); if (rc) { return NULL; } } } { // reject_ver_vel PyObject * field = NULL; field = PyBool_FromLong(ros_message->reject_ver_vel ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "reject_ver_vel", field); Py_DECREF(field); if (rc) { return NULL; } } } { // reject_hor_pos PyObject * field = NULL; field = PyBool_FromLong(ros_message->reject_hor_pos ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "reject_hor_pos", field); Py_DECREF(field); if (rc) { return NULL; } } } { // reject_ver_pos PyObject * field = NULL; field = PyBool_FromLong(ros_message->reject_ver_pos ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "reject_ver_pos", field); Py_DECREF(field); if (rc) { return NULL; } } } { // reject_mag_x PyObject * field = NULL; field = PyBool_FromLong(ros_message->reject_mag_x ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "reject_mag_x", field); Py_DECREF(field); if (rc) { return NULL; } } } { // reject_mag_y PyObject * field = NULL; field = PyBool_FromLong(ros_message->reject_mag_y ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "reject_mag_y", field); Py_DECREF(field); if (rc) { return NULL; } } } { // reject_mag_z PyObject * field = NULL; field = PyBool_FromLong(ros_message->reject_mag_z ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "reject_mag_z", field); Py_DECREF(field); if (rc) { return NULL; } } } { // reject_yaw PyObject * field = NULL; field = PyBool_FromLong(ros_message->reject_yaw ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "reject_yaw", field); Py_DECREF(field); if (rc) { return NULL; } } } { // reject_airspeed PyObject * field = NULL; field = PyBool_FromLong(ros_message->reject_airspeed ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "reject_airspeed", field); Py_DECREF(field); if (rc) { return NULL; } } } { // reject_sideslip PyObject * field = NULL; field = PyBool_FromLong(ros_message->reject_sideslip ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "reject_sideslip", field); Py_DECREF(field); if (rc) { return NULL; } } } { // reject_hagl PyObject * field = NULL; field = PyBool_FromLong(ros_message->reject_hagl ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "reject_hagl", field); Py_DECREF(field); if (rc) { return NULL; } } } { // reject_optflow_x PyObject * field = NULL; field = PyBool_FromLong(ros_message->reject_optflow_x ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "reject_optflow_x", field); Py_DECREF(field); if (rc) { return NULL; } } } { // reject_optflow_y PyObject * field = NULL; field = PyBool_FromLong(ros_message->reject_optflow_y ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "reject_optflow_y", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/orb_test_medium_multi__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/OrbTestMediumMulti.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORB_TEST_MEDIUM_MULTI__STRUCT_H_ #define PX4_MSGS__MSG__ORB_TEST_MEDIUM_MULTI__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/OrbTestMediumMulti in the package px4_msgs. typedef struct px4_msgs__msg__OrbTestMediumMulti { uint64_t timestamp; int32_t val; uint8_t junk[64]; } px4_msgs__msg__OrbTestMediumMulti; // Struct for a sequence of px4_msgs__msg__OrbTestMediumMulti. typedef struct px4_msgs__msg__OrbTestMediumMulti__Sequence { px4_msgs__msg__OrbTestMediumMulti * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__OrbTestMediumMulti__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ORB_TEST_MEDIUM_MULTI__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/px4_io_status__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/Px4IoStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/px4_io_status__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__Px4IoStatus__init(px4_msgs__msg__Px4IoStatus * msg) { if (!msg) { return false; } // timestamp // free_memory_bytes // voltage_v // rssi_v // status_outputs_armed // status_override // status_rc_ok // status_rc_ppm // status_rc_dsm // status_rc_sbus // status_fmu_ok // status_raw_pwm // status_mixer_ok // status_arm_sync // status_init_ok // status_failsafe // status_safety_off // status_fmu_initialized // status_rc_st24 // status_rc_sumd // alarm_vbatt_low // alarm_temperature // alarm_servo_current // alarm_acc_current // alarm_fmu_lost // alarm_rc_lost // alarm_pwm_error // alarm_vservo_fault // arming_io_arm_ok // arming_fmu_armed // arming_fmu_prearmed // arming_manual_override_ok // arming_failsafe_custom // arming_inair_restart_ok // arming_always_pwm_enable // arming_rc_handling_disabled // arming_lockdown // arming_force_failsafe // arming_termination_failsafe // arming_override_immediate // actuators // servos // raw_inputs return true; } void px4_msgs__msg__Px4IoStatus__fini(px4_msgs__msg__Px4IoStatus * msg) { if (!msg) { return; } // timestamp // free_memory_bytes // voltage_v // rssi_v // status_outputs_armed // status_override // status_rc_ok // status_rc_ppm // status_rc_dsm // status_rc_sbus // status_fmu_ok // status_raw_pwm // status_mixer_ok // status_arm_sync // status_init_ok // status_failsafe // status_safety_off // status_fmu_initialized // status_rc_st24 // status_rc_sumd // alarm_vbatt_low // alarm_temperature // alarm_servo_current // alarm_acc_current // alarm_fmu_lost // alarm_rc_lost // alarm_pwm_error // alarm_vservo_fault // arming_io_arm_ok // arming_fmu_armed // arming_fmu_prearmed // arming_manual_override_ok // arming_failsafe_custom // arming_inair_restart_ok // arming_always_pwm_enable // arming_rc_handling_disabled // arming_lockdown // arming_force_failsafe // arming_termination_failsafe // arming_override_immediate // actuators // servos // raw_inputs } px4_msgs__msg__Px4IoStatus * px4_msgs__msg__Px4IoStatus__create() { px4_msgs__msg__Px4IoStatus * msg = (px4_msgs__msg__Px4IoStatus *)malloc(sizeof(px4_msgs__msg__Px4IoStatus)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__Px4IoStatus)); bool success = px4_msgs__msg__Px4IoStatus__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__Px4IoStatus__destroy(px4_msgs__msg__Px4IoStatus * msg) { if (msg) { px4_msgs__msg__Px4IoStatus__fini(msg); } free(msg); } bool px4_msgs__msg__Px4IoStatus__Sequence__init(px4_msgs__msg__Px4IoStatus__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__Px4IoStatus * data = NULL; if (size) { data = (px4_msgs__msg__Px4IoStatus *)calloc(size, sizeof(px4_msgs__msg__Px4IoStatus)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__Px4IoStatus__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__Px4IoStatus__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__Px4IoStatus__Sequence__fini(px4_msgs__msg__Px4IoStatus__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__Px4IoStatus__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__Px4IoStatus__Sequence * px4_msgs__msg__Px4IoStatus__Sequence__create(size_t size) { px4_msgs__msg__Px4IoStatus__Sequence * array = (px4_msgs__msg__Px4IoStatus__Sequence *)malloc(sizeof(px4_msgs__msg__Px4IoStatus__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__Px4IoStatus__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__Px4IoStatus__Sequence__destroy(px4_msgs__msg__Px4IoStatus__Sequence * array) { if (array) { px4_msgs__msg__Px4IoStatus__Sequence__fini(array); } free(array); } <file_sep>/install/px4_msgs/include/px4_msgs/msg/esc_report.h /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/esc_report.h<file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/home_position.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/HomePosition.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__HOME_POSITION_H_ #define PX4_MSGS__MSG__HOME_POSITION_H_ #include "px4_msgs/msg/home_position__struct.h" #include "px4_msgs/msg/home_position__functions.h" #include "px4_msgs/msg/home_position__type_support.h" #endif // PX4_MSGS__MSG__HOME_POSITION_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/follow_target.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__FOLLOW_TARGET_HPP_ #define PX4_MSGS__MSG__FOLLOW_TARGET_HPP_ #include "px4_msgs/msg/follow_target__struct.hpp" #include "px4_msgs/msg/follow_target__traits.hpp" #endif // PX4_MSGS__MSG__FOLLOW_TARGET_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_visual_odometry_aligned__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/EstimatorVisualOdometryAligned.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/estimator_visual_odometry_aligned__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__EstimatorVisualOdometryAligned__init(px4_msgs__msg__EstimatorVisualOdometryAligned * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // local_frame // x // y // z // q // q_offset // pose_covariance // velocity_frame // vx // vy // vz // rollspeed // pitchspeed // yawspeed // velocity_covariance return true; } void px4_msgs__msg__EstimatorVisualOdometryAligned__fini(px4_msgs__msg__EstimatorVisualOdometryAligned * msg) { if (!msg) { return; } // timestamp // timestamp_sample // local_frame // x // y // z // q // q_offset // pose_covariance // velocity_frame // vx // vy // vz // rollspeed // pitchspeed // yawspeed // velocity_covariance } px4_msgs__msg__EstimatorVisualOdometryAligned * px4_msgs__msg__EstimatorVisualOdometryAligned__create() { px4_msgs__msg__EstimatorVisualOdometryAligned * msg = (px4_msgs__msg__EstimatorVisualOdometryAligned *)malloc(sizeof(px4_msgs__msg__EstimatorVisualOdometryAligned)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__EstimatorVisualOdometryAligned)); bool success = px4_msgs__msg__EstimatorVisualOdometryAligned__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__EstimatorVisualOdometryAligned__destroy(px4_msgs__msg__EstimatorVisualOdometryAligned * msg) { if (msg) { px4_msgs__msg__EstimatorVisualOdometryAligned__fini(msg); } free(msg); } bool px4_msgs__msg__EstimatorVisualOdometryAligned__Sequence__init(px4_msgs__msg__EstimatorVisualOdometryAligned__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__EstimatorVisualOdometryAligned * data = NULL; if (size) { data = (px4_msgs__msg__EstimatorVisualOdometryAligned *)calloc(size, sizeof(px4_msgs__msg__EstimatorVisualOdometryAligned)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__EstimatorVisualOdometryAligned__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__EstimatorVisualOdometryAligned__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__EstimatorVisualOdometryAligned__Sequence__fini(px4_msgs__msg__EstimatorVisualOdometryAligned__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__EstimatorVisualOdometryAligned__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__EstimatorVisualOdometryAligned__Sequence * px4_msgs__msg__EstimatorVisualOdometryAligned__Sequence__create(size_t size) { px4_msgs__msg__EstimatorVisualOdometryAligned__Sequence * array = (px4_msgs__msg__EstimatorVisualOdometryAligned__Sequence *)malloc(sizeof(px4_msgs__msg__EstimatorVisualOdometryAligned__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__EstimatorVisualOdometryAligned__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__EstimatorVisualOdometryAligned__Sequence__destroy(px4_msgs__msg__EstimatorVisualOdometryAligned__Sequence * array) { if (array) { px4_msgs__msg__EstimatorVisualOdometryAligned__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_local_position_groundtruth__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/VehicleLocalPositionGroundtruth.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/vehicle_local_position_groundtruth__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/vehicle_local_position_groundtruth__functions.h" #include "px4_msgs/msg/vehicle_local_position_groundtruth__struct.h" #ifdef __cplusplus extern "C" { #endif void VehicleLocalPositionGroundtruth__rosidl_typesupport_introspection_c__VehicleLocalPositionGroundtruth_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__VehicleLocalPositionGroundtruth__init(message_memory); } void VehicleLocalPositionGroundtruth__rosidl_typesupport_introspection_c__VehicleLocalPositionGroundtruth_fini_function(void * message_memory) { px4_msgs__msg__VehicleLocalPositionGroundtruth__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember VehicleLocalPositionGroundtruth__rosidl_typesupport_introspection_c__VehicleLocalPositionGroundtruth_message_member_array[44] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "xy_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, xy_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "z_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, z_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "v_xy_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, v_xy_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "v_z_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, v_z_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "x", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, x), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "y", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, y), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "z", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, z), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "delta_xy", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, delta_xy), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "xy_reset_counter", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, xy_reset_counter), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "delta_z", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, delta_z), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "z_reset_counter", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, z_reset_counter), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vx", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, vx), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vy", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, vy), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vz", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, vz), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "z_deriv", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, z_deriv), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "delta_vxy", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, delta_vxy), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vxy_reset_counter", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, vxy_reset_counter), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "delta_vz", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, delta_vz), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vz_reset_counter", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, vz_reset_counter), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ax", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, ax), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ay", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, ay), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "az", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, az), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "heading", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, heading), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "delta_heading", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, delta_heading), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "heading_reset_counter", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, heading_reset_counter), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "xy_global", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, xy_global), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "z_global", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, z_global), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ref_timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, ref_timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ref_lat", // name rosidl_typesupport_introspection_c__ROS_TYPE_DOUBLE, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, ref_lat), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ref_lon", // name rosidl_typesupport_introspection_c__ROS_TYPE_DOUBLE, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, ref_lon), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ref_alt", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, ref_alt), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "dist_bottom", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, dist_bottom), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "dist_bottom_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, dist_bottom_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "dist_bottom_sensor_bitfield", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, dist_bottom_sensor_bitfield), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "eph", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, eph), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "epv", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, epv), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "evh", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, evh), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "evv", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, evv), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vxy_max", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, vxy_max), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vz_max", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, vz_max), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "hagl_min", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, hagl_min), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "hagl_max", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleLocalPositionGroundtruth, hagl_max), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers VehicleLocalPositionGroundtruth__rosidl_typesupport_introspection_c__VehicleLocalPositionGroundtruth_message_members = { "px4_msgs__msg", // message namespace "VehicleLocalPositionGroundtruth", // message name 44, // number of fields sizeof(px4_msgs__msg__VehicleLocalPositionGroundtruth), VehicleLocalPositionGroundtruth__rosidl_typesupport_introspection_c__VehicleLocalPositionGroundtruth_message_member_array, // message members VehicleLocalPositionGroundtruth__rosidl_typesupport_introspection_c__VehicleLocalPositionGroundtruth_init_function, // function to initialize message memory (memory has to be allocated) VehicleLocalPositionGroundtruth__rosidl_typesupport_introspection_c__VehicleLocalPositionGroundtruth_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t VehicleLocalPositionGroundtruth__rosidl_typesupport_introspection_c__VehicleLocalPositionGroundtruth_message_type_support_handle = { 0, &VehicleLocalPositionGroundtruth__rosidl_typesupport_introspection_c__VehicleLocalPositionGroundtruth_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, VehicleLocalPositionGroundtruth)() { if (!VehicleLocalPositionGroundtruth__rosidl_typesupport_introspection_c__VehicleLocalPositionGroundtruth_message_type_support_handle.typesupport_identifier) { VehicleLocalPositionGroundtruth__rosidl_typesupport_introspection_c__VehicleLocalPositionGroundtruth_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &VehicleLocalPositionGroundtruth__rosidl_typesupport_introspection_c__VehicleLocalPositionGroundtruth_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/system_power.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/SystemPower.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SYSTEM_POWER_H_ #define PX4_MSGS__MSG__SYSTEM_POWER_H_ #include "px4_msgs/msg/system_power__struct.h" #include "px4_msgs/msg/system_power__functions.h" #include "px4_msgs/msg/system_power__type_support.h" #endif // PX4_MSGS__MSG__SYSTEM_POWER_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/debug_array.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/DebugArray.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__DEBUG_ARRAY_H_ #define PX4_MSGS__MSG__DEBUG_ARRAY_H_ #include "px4_msgs/msg/debug_array__struct.h" #include "px4_msgs/msg/debug_array__functions.h" #include "px4_msgs/msg/debug_array__type_support.h" #endif // PX4_MSGS__MSG__DEBUG_ARRAY_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/radio_status__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/RadioStatus.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/radio_status__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void RadioStatus_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::RadioStatus(_init); } void RadioStatus_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::RadioStatus *>(message_memory); typed_message->~RadioStatus(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember RadioStatus_message_member_array[8] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::RadioStatus, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rssi", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::RadioStatus, rssi), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "remote_rssi", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::RadioStatus, remote_rssi), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "txbuf", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::RadioStatus, txbuf), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "noise", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::RadioStatus, noise), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "remote_noise", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::RadioStatus, remote_noise), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rxerrors", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::RadioStatus, rxerrors), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "fix", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::RadioStatus, fix), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers RadioStatus_message_members = { "px4_msgs::msg", // message namespace "RadioStatus", // message name 8, // number of fields sizeof(px4_msgs::msg::RadioStatus), RadioStatus_message_member_array, // message members RadioStatus_init_function, // function to initialize message memory (memory has to be allocated) RadioStatus_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t RadioStatus_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &RadioStatus_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::RadioStatus>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::RadioStatus_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, RadioStatus)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::RadioStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/led_control__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/LedControl.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__LED_CONTROL__FUNCTIONS_H_ #define PX4_MSGS__MSG__LED_CONTROL__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/led_control__struct.h" /// Initialize msg/LedControl message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__LedControl * )) before or use * px4_msgs__msg__LedControl__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__LedControl__init(px4_msgs__msg__LedControl * msg); /// Finalize msg/LedControl message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__LedControl__fini(px4_msgs__msg__LedControl * msg); /// Create msg/LedControl message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__LedControl__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__LedControl * px4_msgs__msg__LedControl__create(); /// Destroy msg/LedControl message. /** * It calls * px4_msgs__msg__LedControl__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__LedControl__destroy(px4_msgs__msg__LedControl * msg); /// Initialize array of msg/LedControl messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__LedControl__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__LedControl__Sequence__init(px4_msgs__msg__LedControl__Sequence * array, size_t size); /// Finalize array of msg/LedControl messages. /** * It calls * px4_msgs__msg__LedControl__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__LedControl__Sequence__fini(px4_msgs__msg__LedControl__Sequence * array); /// Create array of msg/LedControl messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__LedControl__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__LedControl__Sequence * px4_msgs__msg__LedControl__Sequence__create(size_t size); /// Destroy array of msg/LedControl messages. /** * It calls * px4_msgs__msg__LedControl__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__LedControl__Sequence__destroy(px4_msgs__msg__LedControl__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__LED_CONTROL__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/landing_target_innovations.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/LandingTargetInnovations.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__LANDING_TARGET_INNOVATIONS_H_ #define PX4_MSGS__MSG__LANDING_TARGET_INNOVATIONS_H_ #include "px4_msgs/msg/landing_target_innovations__struct.h" #include "px4_msgs/msg/landing_target_innovations__functions.h" #include "px4_msgs/msg/landing_target_innovations__type_support.h" #endif // PX4_MSGS__MSG__LANDING_TARGET_INNOVATIONS_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gps__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/SensorGps.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/sensor_gps__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void SensorGps_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::SensorGps(_init); } void SensorGps_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::SensorGps *>(message_memory); typed_message->~SensorGps(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember SensorGps_message_member_array[28] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGps, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "device_id", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGps, device_id), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "lat", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGps, lat), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "lon", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGps, lon), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "alt", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGps, alt), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "alt_ellipsoid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGps, alt_ellipsoid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "s_variance_m_s", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGps, s_variance_m_s), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "c_variance_rad", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGps, c_variance_rad), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "fix_type", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGps, fix_type), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "eph", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGps, eph), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "epv", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGps, epv), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "hdop", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGps, hdop), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vdop", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGps, vdop), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "noise_per_ms", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGps, noise_per_ms), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "automatic_gain_control", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGps, automatic_gain_control), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "jamming_indicator", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGps, jamming_indicator), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "jamming_state", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGps, jamming_state), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vel_m_s", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGps, vel_m_s), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vel_n_m_s", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGps, vel_n_m_s), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vel_e_m_s", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGps, vel_e_m_s), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vel_d_m_s", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGps, vel_d_m_s), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cog_rad", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGps, cog_rad), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vel_ned_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGps, vel_ned_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_time_relative", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGps, timestamp_time_relative), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "time_utc_usec", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGps, time_utc_usec), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "satellites_used", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGps, satellites_used), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "heading", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGps, heading), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "heading_offset", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGps, heading_offset), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers SensorGps_message_members = { "px4_msgs::msg", // message namespace "SensorGps", // message name 28, // number of fields sizeof(px4_msgs::msg::SensorGps), SensorGps_message_member_array, // message members SensorGps_init_function, // function to initialize message memory (memory has to be allocated) SensorGps_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t SensorGps_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &SensorGps_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::SensorGps>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::SensorGps_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, SensorGps)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::SensorGps_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/multi_rtd_interfaces/cmake_install.cmake # Install script for directory: /home/navlab-tx2-4/px4_ros_com_ros2/src/px4_multi_agent_planning/multi_rtd_interfaces # Set the install prefix if(NOT DEFINED CMAKE_INSTALL_PREFIX) set(CMAKE_INSTALL_PREFIX "/home/navlab-tx2-4/px4_ros_com_ros2/install/multi_rtd_interfaces") endif() string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") # Set the install configuration name. if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) if(BUILD_TYPE) string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") else() set(CMAKE_INSTALL_CONFIG_NAME "") endif() message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") endif() # Set the component getting installed. if(NOT CMAKE_INSTALL_COMPONENT) if(COMPONENT) message(STATUS "Install component: \"${COMPONENT}\"") set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") else() set(CMAKE_INSTALL_COMPONENT) endif() endif() # Install shared libraries without execute permission? if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) set(CMAKE_INSTALL_SO_NO_EXE "1") endif() # Is this installation the result of a crosscompile? if(NOT DEFINED CMAKE_CROSSCOMPILING) set(CMAKE_CROSSCOMPILING "FALSE") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/ament_index/resource_index/rosidl_interfaces" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/ament_cmake_index/share/ament_index/resource_index/rosidl_interfaces/multi_rtd_interfaces") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/multi_rtd_interfaces" TYPE DIRECTORY FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/rosidl_generator_cpp/multi_rtd_interfaces/" REGEX "/[^/]*\\.hpp$") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/multi_rtd_interfaces" TYPE DIRECTORY FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/rosidl_generator_c/multi_rtd_interfaces/" REGEX "/[^/]*\\.h$") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/multi_rtd_interfaces/environment" TYPE FILE FILES "/opt/ros/eloquent/lib/python3.6/site-packages/ament_package/template/environment_hook/library_path.sh") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/multi_rtd_interfaces/environment" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/ament_cmake_environment_hooks/library_path.dsv") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_generator_c.so" AND NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_generator_c.so") file(RPATH_CHECK FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_generator_c.so" RPATH "") endif() file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE SHARED_LIBRARY FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/libmulti_rtd_interfaces__rosidl_generator_c.so") if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_generator_c.so" AND NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_generator_c.so") file(RPATH_CHANGE FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_generator_c.so" OLD_RPATH "/opt/ros/eloquent/lib:" NEW_RPATH "") if(CMAKE_INSTALL_DO_STRIP) execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_generator_c.so") endif() endif() endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_c.so" AND NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_c.so") file(RPATH_CHECK FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_c.so" RPATH "") endif() file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE SHARED_LIBRARY FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/libmulti_rtd_interfaces__rosidl_typesupport_c.so") if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_c.so" AND NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_c.so") file(RPATH_CHANGE FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_c.so" OLD_RPATH "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces:/opt/ros/eloquent/lib:" NEW_RPATH "") if(CMAKE_INSTALL_DO_STRIP) execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_c.so") endif() endif() endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_cpp.so" AND NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_cpp.so") file(RPATH_CHECK FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_cpp.so" RPATH "") endif() file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE SHARED_LIBRARY FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/libmulti_rtd_interfaces__rosidl_typesupport_cpp.so") if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_cpp.so" AND NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_cpp.so") file(RPATH_CHANGE FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_cpp.so" OLD_RPATH "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces:/opt/ros/eloquent/lib:" NEW_RPATH "") if(CMAKE_INSTALL_DO_STRIP) execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_cpp.so") endif() endif() endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/multi_rtd_interfaces" TYPE DIRECTORY FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/rosidl_typesupport_introspection_c/multi_rtd_interfaces/" REGEX "/[^/]*\\.h$") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_introspection_c.so" AND NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_introspection_c.so") file(RPATH_CHECK FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_introspection_c.so" RPATH "") endif() file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE SHARED_LIBRARY FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/libmulti_rtd_interfaces__rosidl_typesupport_introspection_c.so") if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_introspection_c.so" AND NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_introspection_c.so") file(RPATH_CHANGE FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_introspection_c.so" OLD_RPATH "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces:/opt/ros/eloquent/lib:" NEW_RPATH "") if(CMAKE_INSTALL_DO_STRIP) execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_introspection_c.so") endif() endif() endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/multi_rtd_interfaces" TYPE DIRECTORY FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/rosidl_typesupport_introspection_cpp/multi_rtd_interfaces/" REGEX "/[^/]*\\.hpp$") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_introspection_cpp.so" AND NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_introspection_cpp.so") file(RPATH_CHECK FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_introspection_cpp.so" RPATH "") endif() file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE SHARED_LIBRARY FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/libmulti_rtd_interfaces__rosidl_typesupport_introspection_cpp.so") if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_introspection_cpp.so" AND NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_introspection_cpp.so") file(RPATH_CHANGE FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_introspection_cpp.so" OLD_RPATH "/opt/ros/eloquent/lib:" NEW_RPATH "") if(CMAKE_INSTALL_DO_STRIP) execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_introspection_cpp.so") endif() endif() endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/multi_rtd_interfaces" TYPE DIRECTORY FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/rosidl_typesupport_fastrtps_c/multi_rtd_interfaces/" REGEX "/[^/]*\\.cpp$" EXCLUDE) endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_fastrtps_c.so" AND NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_fastrtps_c.so") file(RPATH_CHECK FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_fastrtps_c.so" RPATH "") endif() file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE SHARED_LIBRARY FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/libmulti_rtd_interfaces__rosidl_typesupport_fastrtps_c.so") if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_fastrtps_c.so" AND NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_fastrtps_c.so") file(RPATH_CHANGE FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_fastrtps_c.so" OLD_RPATH "/opt/ros/eloquent/lib:/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces:" NEW_RPATH "") if(CMAKE_INSTALL_DO_STRIP) execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_fastrtps_c.so") endif() endif() endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/multi_rtd_interfaces" TYPE DIRECTORY FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/rosidl_typesupport_fastrtps_cpp/multi_rtd_interfaces/" REGEX "/[^/]*\\.cpp$" EXCLUDE) endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_fastrtps_cpp.so" AND NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_fastrtps_cpp.so") file(RPATH_CHECK FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_fastrtps_cpp.so" RPATH "") endif() file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE SHARED_LIBRARY FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/libmulti_rtd_interfaces__rosidl_typesupport_fastrtps_cpp.so") if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_fastrtps_cpp.so" AND NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_fastrtps_cpp.so") file(RPATH_CHANGE FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_fastrtps_cpp.so" OLD_RPATH "/opt/ros/eloquent/lib:" NEW_RPATH "") if(CMAKE_INSTALL_DO_STRIP) execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__rosidl_typesupport_fastrtps_cpp.so") endif() endif() endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/multi_rtd_interfaces/environment" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/ament_cmake_environment_hooks/pythonpath.sh") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/multi_rtd_interfaces/environment" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/ament_cmake_environment_hooks/pythonpath.dsv") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/python3.6/site-packages/multi_rtd_interfaces" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/rosidl_generator_py/multi_rtd_interfaces/__init__.py") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) execute_process( COMMAND "/usr/bin/python3" "-m" "compileall" "/home/navlab-tx2-4/px4_ros_com_ros2/install/multi_rtd_interfaces/lib/python3.6/site-packages/multi_rtd_interfaces/__init__.py" ) endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/python3.6/site-packages/multi_rtd_interfaces/msg" TYPE DIRECTORY FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/rosidl_generator_py/multi_rtd_interfaces/msg/" REGEX "/[^/]*\\.py$") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/python3.6/site-packages/multi_rtd_interfaces/multi_rtd_interfaces_s__rosidl_typesupport_c.cpython-36m-aarch64-linux-gnu.so" AND NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/python3.6/site-packages/multi_rtd_interfaces/multi_rtd_interfaces_s__rosidl_typesupport_c.cpython-36m-aarch64-linux-gnu.so") file(RPATH_CHECK FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/python3.6/site-packages/multi_rtd_interfaces/multi_rtd_interfaces_s__rosidl_typesupport_c.cpython-36m-aarch64-linux-gnu.so" RPATH "") endif() file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/python3.6/site-packages/multi_rtd_interfaces" TYPE SHARED_LIBRARY FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/rosidl_generator_py/multi_rtd_interfaces/multi_rtd_interfaces_s__rosidl_typesupport_c.cpython-36m-aarch64-linux-gnu.so") if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/python3.6/site-packages/multi_rtd_interfaces/multi_rtd_interfaces_s__rosidl_typesupport_c.cpython-36m-aarch64-linux-gnu.so" AND NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/python3.6/site-packages/multi_rtd_interfaces/multi_rtd_interfaces_s__rosidl_typesupport_c.cpython-36m-aarch64-linux-gnu.so") file(RPATH_CHANGE FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/python3.6/site-packages/multi_rtd_interfaces/multi_rtd_interfaces_s__rosidl_typesupport_c.cpython-36m-aarch64-linux-gnu.so" OLD_RPATH "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/rosidl_generator_py/multi_rtd_interfaces:/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces:/opt/ros/eloquent/lib:/opt/ros/eloquent/share/std_msgs/cmake/../../../lib:/opt/ros/eloquent/share/builtin_interfaces/cmake/../../../lib:/opt/ros/eloquent/share/trajectory_msgs/cmake/../../../lib:/opt/ros/eloquent/share/geometry_msgs/cmake/../../../lib:" NEW_RPATH "") if(CMAKE_INSTALL_DO_STRIP) execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/python3.6/site-packages/multi_rtd_interfaces/multi_rtd_interfaces_s__rosidl_typesupport_c.cpython-36m-aarch64-linux-gnu.so") endif() endif() endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/python3.6/site-packages/multi_rtd_interfaces/multi_rtd_interfaces_s__rosidl_typesupport_fastrtps_c.cpython-36m-aarch64-linux-gnu.so" AND NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/python3.6/site-packages/multi_rtd_interfaces/multi_rtd_interfaces_s__rosidl_typesupport_fastrtps_c.cpython-36m-aarch64-linux-gnu.so") file(RPATH_CHECK FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/python3.6/site-packages/multi_rtd_interfaces/multi_rtd_interfaces_s__rosidl_typesupport_fastrtps_c.cpython-36m-aarch64-linux-gnu.so" RPATH "") endif() file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/python3.6/site-packages/multi_rtd_interfaces" TYPE SHARED_LIBRARY FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/rosidl_generator_py/multi_rtd_interfaces/multi_rtd_interfaces_s__rosidl_typesupport_fastrtps_c.cpython-36m-aarch64-linux-gnu.so") if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/python3.6/site-packages/multi_rtd_interfaces/multi_rtd_interfaces_s__rosidl_typesupport_fastrtps_c.cpython-36m-aarch64-linux-gnu.so" AND NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/python3.6/site-packages/multi_rtd_interfaces/multi_rtd_interfaces_s__rosidl_typesupport_fastrtps_c.cpython-36m-aarch64-linux-gnu.so") file(RPATH_CHANGE FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/python3.6/site-packages/multi_rtd_interfaces/multi_rtd_interfaces_s__rosidl_typesupport_fastrtps_c.cpython-36m-aarch64-linux-gnu.so" OLD_RPATH "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/rosidl_generator_py/multi_rtd_interfaces:/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces:/opt/ros/eloquent/lib:/opt/ros/eloquent/share/std_msgs/cmake/../../../lib:/opt/ros/eloquent/share/builtin_interfaces/cmake/../../../lib:/opt/ros/eloquent/share/trajectory_msgs/cmake/../../../lib:/opt/ros/eloquent/share/geometry_msgs/cmake/../../../lib:" NEW_RPATH "") if(CMAKE_INSTALL_DO_STRIP) execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/python3.6/site-packages/multi_rtd_interfaces/multi_rtd_interfaces_s__rosidl_typesupport_fastrtps_c.cpython-36m-aarch64-linux-gnu.so") endif() endif() endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__python.so" AND NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__python.so") file(RPATH_CHECK FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__python.so" RPATH "") endif() file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE SHARED_LIBRARY FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/rosidl_generator_py/multi_rtd_interfaces/libmulti_rtd_interfaces__python.so") if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__python.so" AND NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__python.so") file(RPATH_CHANGE FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__python.so" OLD_RPATH "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces:/opt/ros/eloquent/share/std_msgs/cmake/../../../lib:/opt/ros/eloquent/share/builtin_interfaces/cmake/../../../lib:/opt/ros/eloquent/share/trajectory_msgs/cmake/../../../lib:/opt/ros/eloquent/share/geometry_msgs/cmake/../../../lib:/opt/ros/eloquent/lib:" NEW_RPATH "") if(CMAKE_INSTALL_DO_STRIP) execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libmulti_rtd_interfaces__python.so") endif() endif() endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/multi_rtd_interfaces/msg" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/rosidl_adapter/multi_rtd_interfaces/msg/RobotTrajectory.idl") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/multi_rtd_interfaces/msg" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_multi_agent_planning/multi_rtd_interfaces/msg/RobotTrajectory.msg") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/ament_index/resource_index/package_run_dependencies" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/ament_cmake_index/share/ament_index/resource_index/package_run_dependencies/multi_rtd_interfaces") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/ament_index/resource_index/parent_prefix_path" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/ament_cmake_index/share/ament_index/resource_index/parent_prefix_path/multi_rtd_interfaces") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/multi_rtd_interfaces/environment" TYPE FILE FILES "/opt/ros/eloquent/share/ament_cmake_core/cmake/environment_hooks/environment/ament_prefix_path.sh") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/multi_rtd_interfaces/environment" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/ament_cmake_environment_hooks/ament_prefix_path.dsv") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/multi_rtd_interfaces/environment" TYPE FILE FILES "/opt/ros/eloquent/share/ament_cmake_core/cmake/environment_hooks/environment/path.sh") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/multi_rtd_interfaces/environment" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/ament_cmake_environment_hooks/path.dsv") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/multi_rtd_interfaces" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/ament_cmake_environment_hooks/local_setup.bash") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/multi_rtd_interfaces" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/ament_cmake_environment_hooks/local_setup.sh") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/multi_rtd_interfaces" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/ament_cmake_environment_hooks/local_setup.zsh") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/multi_rtd_interfaces" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/ament_cmake_environment_hooks/local_setup.dsv") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/multi_rtd_interfaces" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/ament_cmake_environment_hooks/package.dsv") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/ament_index/resource_index/packages" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/ament_cmake_index/share/ament_index/resource_index/packages/multi_rtd_interfaces") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/multi_rtd_interfaces/cmake" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/rosidl_cmake/rosidl_cmake-extras.cmake") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/multi_rtd_interfaces/cmake" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/ament_cmake_export_dependencies/ament_cmake_export_dependencies-extras.cmake") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/multi_rtd_interfaces/cmake" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/ament_cmake_export_include_directories/ament_cmake_export_include_directories-extras.cmake") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/multi_rtd_interfaces/cmake" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/ament_cmake_export_libraries/ament_cmake_export_libraries-extras.cmake") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/multi_rtd_interfaces/cmake" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/ament_cmake_core/multi_rtd_interfacesConfig.cmake" "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/ament_cmake_core/multi_rtd_interfacesConfig-version.cmake" ) endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/multi_rtd_interfaces" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_multi_agent_planning/multi_rtd_interfaces/package.xml") endif() if(NOT CMAKE_INSTALL_LOCAL_ONLY) # Include the install script for each subdirectory. include("/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/multi_rtd_interfaces__py/cmake_install.cmake") endif() if(CMAKE_INSTALL_COMPONENT) set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") else() set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") endif() string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT "${CMAKE_INSTALL_MANIFEST_FILES}") file(WRITE "/home/navlab-tx2-4/px4_ros_com_ros2/build/multi_rtd_interfaces/${CMAKE_INSTALL_MANIFEST}" "${CMAKE_INSTALL_MANIFEST_CONTENT}") <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_heater_status.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/HeaterStatus.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_HeaterStatus(type): """Metaclass of message 'HeaterStatus'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'MODE_GPIO': 1, 'MODE_PX4IO': 2, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.HeaterStatus') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__heater_status cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__heater_status cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__heater_status cls._TYPE_SUPPORT = module.type_support_msg__msg__heater_status cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__heater_status @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'MODE_GPIO': cls.__constants['MODE_GPIO'], 'MODE_PX4IO': cls.__constants['MODE_PX4IO'], } @property def MODE_GPIO(self): """Message constant 'MODE_GPIO'.""" return Metaclass_HeaterStatus.__constants['MODE_GPIO'] @property def MODE_PX4IO(self): """Message constant 'MODE_PX4IO'.""" return Metaclass_HeaterStatus.__constants['MODE_PX4IO'] class HeaterStatus(metaclass=Metaclass_HeaterStatus): """ Message class 'HeaterStatus'. Constants: MODE_GPIO MODE_PX4IO """ __slots__ = [ '_timestamp', '_device_id', '_heater_on', '_temperature_target_met', '_temperature_sensor', '_temperature_target', '_controller_period_usec', '_controller_time_on_usec', '_proportional_value', '_integrator_value', '_feed_forward_value', '_mode', ] _fields_and_field_types = { 'timestamp': 'uint64', 'device_id': 'uint32', 'heater_on': 'boolean', 'temperature_target_met': 'boolean', 'temperature_sensor': 'float', 'temperature_target': 'float', 'controller_period_usec': 'uint32', 'controller_time_on_usec': 'uint32', 'proportional_value': 'float', 'integrator_value': 'float', 'feed_forward_value': 'float', 'mode': 'uint8', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.device_id = kwargs.get('device_id', int()) self.heater_on = kwargs.get('heater_on', bool()) self.temperature_target_met = kwargs.get('temperature_target_met', bool()) self.temperature_sensor = kwargs.get('temperature_sensor', float()) self.temperature_target = kwargs.get('temperature_target', float()) self.controller_period_usec = kwargs.get('controller_period_usec', int()) self.controller_time_on_usec = kwargs.get('controller_time_on_usec', int()) self.proportional_value = kwargs.get('proportional_value', float()) self.integrator_value = kwargs.get('integrator_value', float()) self.feed_forward_value = kwargs.get('feed_forward_value', float()) self.mode = kwargs.get('mode', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.device_id != other.device_id: return False if self.heater_on != other.heater_on: return False if self.temperature_target_met != other.temperature_target_met: return False if self.temperature_sensor != other.temperature_sensor: return False if self.temperature_target != other.temperature_target: return False if self.controller_period_usec != other.controller_period_usec: return False if self.controller_time_on_usec != other.controller_time_on_usec: return False if self.proportional_value != other.proportional_value: return False if self.integrator_value != other.integrator_value: return False if self.feed_forward_value != other.feed_forward_value: return False if self.mode != other.mode: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def device_id(self): """Message field 'device_id'.""" return self._device_id @device_id.setter def device_id(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'device_id' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'device_id' field must be an unsigned integer in [0, 4294967295]" self._device_id = value @property def heater_on(self): """Message field 'heater_on'.""" return self._heater_on @heater_on.setter def heater_on(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'heater_on' field must be of type 'bool'" self._heater_on = value @property def temperature_target_met(self): """Message field 'temperature_target_met'.""" return self._temperature_target_met @temperature_target_met.setter def temperature_target_met(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'temperature_target_met' field must be of type 'bool'" self._temperature_target_met = value @property def temperature_sensor(self): """Message field 'temperature_sensor'.""" return self._temperature_sensor @temperature_sensor.setter def temperature_sensor(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'temperature_sensor' field must be of type 'float'" self._temperature_sensor = value @property def temperature_target(self): """Message field 'temperature_target'.""" return self._temperature_target @temperature_target.setter def temperature_target(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'temperature_target' field must be of type 'float'" self._temperature_target = value @property def controller_period_usec(self): """Message field 'controller_period_usec'.""" return self._controller_period_usec @controller_period_usec.setter def controller_period_usec(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'controller_period_usec' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'controller_period_usec' field must be an unsigned integer in [0, 4294967295]" self._controller_period_usec = value @property def controller_time_on_usec(self): """Message field 'controller_time_on_usec'.""" return self._controller_time_on_usec @controller_time_on_usec.setter def controller_time_on_usec(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'controller_time_on_usec' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'controller_time_on_usec' field must be an unsigned integer in [0, 4294967295]" self._controller_time_on_usec = value @property def proportional_value(self): """Message field 'proportional_value'.""" return self._proportional_value @proportional_value.setter def proportional_value(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'proportional_value' field must be of type 'float'" self._proportional_value = value @property def integrator_value(self): """Message field 'integrator_value'.""" return self._integrator_value @integrator_value.setter def integrator_value(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'integrator_value' field must be of type 'float'" self._integrator_value = value @property def feed_forward_value(self): """Message field 'feed_forward_value'.""" return self._feed_forward_value @feed_forward_value.setter def feed_forward_value(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'feed_forward_value' field must be of type 'float'" self._feed_forward_value = value @property def mode(self): """Message field 'mode'.""" return self._mode @mode.setter def mode(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'mode' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'mode' field must be an unsigned integer in [0, 255]" self._mode = value <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/manual_control_setpoint__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/ManualControlSetpoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__MANUAL_CONTROL_SETPOINT__STRUCT_HPP_ #define PX4_MSGS__MSG__MANUAL_CONTROL_SETPOINT__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__ManualControlSetpoint __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__ManualControlSetpoint __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct ManualControlSetpoint_ { using Type = ManualControlSetpoint_<ContainerAllocator>; explicit ManualControlSetpoint_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->data_source = 0; this->x = 0.0f; this->y = 0.0f; this->z = 0.0f; this->r = 0.0f; this->flaps = 0.0f; this->aux1 = 0.0f; this->aux2 = 0.0f; this->aux3 = 0.0f; this->aux4 = 0.0f; this->aux5 = 0.0f; this->aux6 = 0.0f; } } explicit ManualControlSetpoint_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->data_source = 0; this->x = 0.0f; this->y = 0.0f; this->z = 0.0f; this->r = 0.0f; this->flaps = 0.0f; this->aux1 = 0.0f; this->aux2 = 0.0f; this->aux3 = 0.0f; this->aux4 = 0.0f; this->aux5 = 0.0f; this->aux6 = 0.0f; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _timestamp_sample_type = uint64_t; _timestamp_sample_type timestamp_sample; using _data_source_type = uint8_t; _data_source_type data_source; using _x_type = float; _x_type x; using _y_type = float; _y_type y; using _z_type = float; _z_type z; using _r_type = float; _r_type r; using _flaps_type = float; _flaps_type flaps; using _aux1_type = float; _aux1_type aux1; using _aux2_type = float; _aux2_type aux2; using _aux3_type = float; _aux3_type aux3; using _aux4_type = float; _aux4_type aux4; using _aux5_type = float; _aux5_type aux5; using _aux6_type = float; _aux6_type aux6; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__timestamp_sample( const uint64_t & _arg) { this->timestamp_sample = _arg; return *this; } Type & set__data_source( const uint8_t & _arg) { this->data_source = _arg; return *this; } Type & set__x( const float & _arg) { this->x = _arg; return *this; } Type & set__y( const float & _arg) { this->y = _arg; return *this; } Type & set__z( const float & _arg) { this->z = _arg; return *this; } Type & set__r( const float & _arg) { this->r = _arg; return *this; } Type & set__flaps( const float & _arg) { this->flaps = _arg; return *this; } Type & set__aux1( const float & _arg) { this->aux1 = _arg; return *this; } Type & set__aux2( const float & _arg) { this->aux2 = _arg; return *this; } Type & set__aux3( const float & _arg) { this->aux3 = _arg; return *this; } Type & set__aux4( const float & _arg) { this->aux4 = _arg; return *this; } Type & set__aux5( const float & _arg) { this->aux5 = _arg; return *this; } Type & set__aux6( const float & _arg) { this->aux6 = _arg; return *this; } // constant declarations static constexpr uint8_t SOURCE_RC = 1u; static constexpr uint8_t SOURCE_MAVLINK_0 = 2u; static constexpr uint8_t SOURCE_MAVLINK_1 = 3u; static constexpr uint8_t SOURCE_MAVLINK_2 = 4u; static constexpr uint8_t SOURCE_MAVLINK_3 = 5u; // pointer types using RawPtr = px4_msgs::msg::ManualControlSetpoint_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::ManualControlSetpoint_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::ManualControlSetpoint_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::ManualControlSetpoint_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::ManualControlSetpoint_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::ManualControlSetpoint_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::ManualControlSetpoint_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::ManualControlSetpoint_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::ManualControlSetpoint_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::ManualControlSetpoint_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__ManualControlSetpoint std::shared_ptr<px4_msgs::msg::ManualControlSetpoint_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__ManualControlSetpoint std::shared_ptr<px4_msgs::msg::ManualControlSetpoint_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const ManualControlSetpoint_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->timestamp_sample != other.timestamp_sample) { return false; } if (this->data_source != other.data_source) { return false; } if (this->x != other.x) { return false; } if (this->y != other.y) { return false; } if (this->z != other.z) { return false; } if (this->r != other.r) { return false; } if (this->flaps != other.flaps) { return false; } if (this->aux1 != other.aux1) { return false; } if (this->aux2 != other.aux2) { return false; } if (this->aux3 != other.aux3) { return false; } if (this->aux4 != other.aux4) { return false; } if (this->aux5 != other.aux5) { return false; } if (this->aux6 != other.aux6) { return false; } return true; } bool operator!=(const ManualControlSetpoint_ & other) const { return !this->operator==(other); } }; // struct ManualControlSetpoint_ // alias to use template instance with default allocator using ManualControlSetpoint = px4_msgs::msg::ManualControlSetpoint_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t ManualControlSetpoint_<ContainerAllocator>::SOURCE_RC; template<typename ContainerAllocator> constexpr uint8_t ManualControlSetpoint_<ContainerAllocator>::SOURCE_MAVLINK_0; template<typename ContainerAllocator> constexpr uint8_t ManualControlSetpoint_<ContainerAllocator>::SOURCE_MAVLINK_1; template<typename ContainerAllocator> constexpr uint8_t ManualControlSetpoint_<ContainerAllocator>::SOURCE_MAVLINK_2; template<typename ContainerAllocator> constexpr uint8_t ManualControlSetpoint_<ContainerAllocator>::SOURCE_MAVLINK_3; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__MANUAL_CONTROL_SETPOINT__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_controls.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/ActuatorControls.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS_H_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS_H_ #include "px4_msgs/msg/actuator_controls__struct.h" #include "px4_msgs/msg/actuator_controls__functions.h" #include "px4_msgs/msg/actuator_controls__type_support.h" #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/camera_trigger.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__CAMERA_TRIGGER_HPP_ #define PX4_MSGS__MSG__CAMERA_TRIGGER_HPP_ #include "px4_msgs/msg/camera_trigger__struct.hpp" #include "px4_msgs/msg/camera_trigger__traits.hpp" #endif // PX4_MSGS__MSG__CAMERA_TRIGGER_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_gimbal_device_information.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/GimbalDeviceInformation.idl # generated code does not contain a copyright notice # Import statements for member types # Member 'vendor_name' # Member 'model_name' # Member 'custom_name' import numpy # noqa: E402, I100 import rosidl_parser.definition # noqa: E402, I100 class Metaclass_GimbalDeviceInformation(type): """Metaclass of message 'GimbalDeviceInformation'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'GIMBAL_DEVICE_CAP_FLAGS_HAS_RETRACT': 1, 'GIMBAL_DEVICE_CAP_FLAGS_HAS_NEUTRAL': 2, 'GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_AXIS': 4, 'GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_FOLLOW': 8, 'GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_LOCK': 16, 'GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_AXIS': 32, 'GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_FOLLOW': 64, 'GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_LOCK': 128, 'GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_AXIS': 256, 'GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_FOLLOW': 512, 'GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_LOCK': 1024, 'GIMBAL_DEVICE_CAP_FLAGS_SUPPORTS_INFINITE_YAW': 2048, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.GimbalDeviceInformation') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__gimbal_device_information cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__gimbal_device_information cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__gimbal_device_information cls._TYPE_SUPPORT = module.type_support_msg__msg__gimbal_device_information cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__gimbal_device_information @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'GIMBAL_DEVICE_CAP_FLAGS_HAS_RETRACT': cls.__constants['GIMBAL_DEVICE_CAP_FLAGS_HAS_RETRACT'], 'GIMBAL_DEVICE_CAP_FLAGS_HAS_NEUTRAL': cls.__constants['GIMBAL_DEVICE_CAP_FLAGS_HAS_NEUTRAL'], 'GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_AXIS': cls.__constants['GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_AXIS'], 'GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_FOLLOW': cls.__constants['GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_FOLLOW'], 'GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_LOCK': cls.__constants['GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_LOCK'], 'GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_AXIS': cls.__constants['GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_AXIS'], 'GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_FOLLOW': cls.__constants['GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_FOLLOW'], 'GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_LOCK': cls.__constants['GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_LOCK'], 'GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_AXIS': cls.__constants['GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_AXIS'], 'GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_FOLLOW': cls.__constants['GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_FOLLOW'], 'GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_LOCK': cls.__constants['GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_LOCK'], 'GIMBAL_DEVICE_CAP_FLAGS_SUPPORTS_INFINITE_YAW': cls.__constants['GIMBAL_DEVICE_CAP_FLAGS_SUPPORTS_INFINITE_YAW'], } @property def GIMBAL_DEVICE_CAP_FLAGS_HAS_RETRACT(self): """Message constant 'GIMBAL_DEVICE_CAP_FLAGS_HAS_RETRACT'.""" return Metaclass_GimbalDeviceInformation.__constants['GIMBAL_DEVICE_CAP_FLAGS_HAS_RETRACT'] @property def GIMBAL_DEVICE_CAP_FLAGS_HAS_NEUTRAL(self): """Message constant 'GIMBAL_DEVICE_CAP_FLAGS_HAS_NEUTRAL'.""" return Metaclass_GimbalDeviceInformation.__constants['GIMBAL_DEVICE_CAP_FLAGS_HAS_NEUTRAL'] @property def GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_AXIS(self): """Message constant 'GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_AXIS'.""" return Metaclass_GimbalDeviceInformation.__constants['GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_AXIS'] @property def GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_FOLLOW(self): """Message constant 'GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_FOLLOW'.""" return Metaclass_GimbalDeviceInformation.__constants['GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_FOLLOW'] @property def GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_LOCK(self): """Message constant 'GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_LOCK'.""" return Metaclass_GimbalDeviceInformation.__constants['GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_LOCK'] @property def GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_AXIS(self): """Message constant 'GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_AXIS'.""" return Metaclass_GimbalDeviceInformation.__constants['GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_AXIS'] @property def GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_FOLLOW(self): """Message constant 'GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_FOLLOW'.""" return Metaclass_GimbalDeviceInformation.__constants['GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_FOLLOW'] @property def GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_LOCK(self): """Message constant 'GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_LOCK'.""" return Metaclass_GimbalDeviceInformation.__constants['GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_LOCK'] @property def GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_AXIS(self): """Message constant 'GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_AXIS'.""" return Metaclass_GimbalDeviceInformation.__constants['GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_AXIS'] @property def GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_FOLLOW(self): """Message constant 'GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_FOLLOW'.""" return Metaclass_GimbalDeviceInformation.__constants['GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_FOLLOW'] @property def GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_LOCK(self): """Message constant 'GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_LOCK'.""" return Metaclass_GimbalDeviceInformation.__constants['GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_LOCK'] @property def GIMBAL_DEVICE_CAP_FLAGS_SUPPORTS_INFINITE_YAW(self): """Message constant 'GIMBAL_DEVICE_CAP_FLAGS_SUPPORTS_INFINITE_YAW'.""" return Metaclass_GimbalDeviceInformation.__constants['GIMBAL_DEVICE_CAP_FLAGS_SUPPORTS_INFINITE_YAW'] class GimbalDeviceInformation(metaclass=Metaclass_GimbalDeviceInformation): """ Message class 'GimbalDeviceInformation'. Constants: GIMBAL_DEVICE_CAP_FLAGS_HAS_RETRACT GIMBAL_DEVICE_CAP_FLAGS_HAS_NEUTRAL GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_AXIS GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_FOLLOW GIMBAL_DEVICE_CAP_FLAGS_HAS_ROLL_LOCK GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_AXIS GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_FOLLOW GIMBAL_DEVICE_CAP_FLAGS_HAS_PITCH_LOCK GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_AXIS GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_FOLLOW GIMBAL_DEVICE_CAP_FLAGS_HAS_YAW_LOCK GIMBAL_DEVICE_CAP_FLAGS_SUPPORTS_INFINITE_YAW """ __slots__ = [ '_timestamp', '_vendor_name', '_model_name', '_custom_name', '_firmware_version', '_hardware_version', '_uid', '_cap_flags', '_custom_cap_flags', '_roll_min', '_roll_max', '_pitch_min', '_pitch_max', '_yaw_min', '_yaw_max', '_gimbal_device_compid', ] _fields_and_field_types = { 'timestamp': 'uint64', 'vendor_name': 'uint8[32]', 'model_name': 'uint8[32]', 'custom_name': 'uint8[32]', 'firmware_version': 'uint32', 'hardware_version': 'uint32', 'uid': 'uint64', 'cap_flags': 'uint16', 'custom_cap_flags': 'uint16', 'roll_min': 'float', 'roll_max': 'float', 'pitch_min': 'float', 'pitch_max': 'float', 'yaw_min': 'float', 'yaw_max': 'float', 'gimbal_device_compid': 'uint8', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('uint8'), 32), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('uint8'), 32), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('uint8'), 32), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) if 'vendor_name' not in kwargs: self.vendor_name = numpy.zeros(32, dtype=numpy.uint8) else: self.vendor_name = numpy.array(kwargs.get('vendor_name'), dtype=numpy.uint8) assert self.vendor_name.shape == (32, ) if 'model_name' not in kwargs: self.model_name = numpy.zeros(32, dtype=numpy.uint8) else: self.model_name = numpy.array(kwargs.get('model_name'), dtype=numpy.uint8) assert self.model_name.shape == (32, ) if 'custom_name' not in kwargs: self.custom_name = numpy.zeros(32, dtype=numpy.uint8) else: self.custom_name = numpy.array(kwargs.get('custom_name'), dtype=numpy.uint8) assert self.custom_name.shape == (32, ) self.firmware_version = kwargs.get('firmware_version', int()) self.hardware_version = kwargs.get('hardware_version', int()) self.uid = kwargs.get('uid', int()) self.cap_flags = kwargs.get('cap_flags', int()) self.custom_cap_flags = kwargs.get('custom_cap_flags', int()) self.roll_min = kwargs.get('roll_min', float()) self.roll_max = kwargs.get('roll_max', float()) self.pitch_min = kwargs.get('pitch_min', float()) self.pitch_max = kwargs.get('pitch_max', float()) self.yaw_min = kwargs.get('yaw_min', float()) self.yaw_max = kwargs.get('yaw_max', float()) self.gimbal_device_compid = kwargs.get('gimbal_device_compid', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if all(self.vendor_name != other.vendor_name): return False if all(self.model_name != other.model_name): return False if all(self.custom_name != other.custom_name): return False if self.firmware_version != other.firmware_version: return False if self.hardware_version != other.hardware_version: return False if self.uid != other.uid: return False if self.cap_flags != other.cap_flags: return False if self.custom_cap_flags != other.custom_cap_flags: return False if self.roll_min != other.roll_min: return False if self.roll_max != other.roll_max: return False if self.pitch_min != other.pitch_min: return False if self.pitch_max != other.pitch_max: return False if self.yaw_min != other.yaw_min: return False if self.yaw_max != other.yaw_max: return False if self.gimbal_device_compid != other.gimbal_device_compid: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def vendor_name(self): """Message field 'vendor_name'.""" return self._vendor_name @vendor_name.setter def vendor_name(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.uint8, \ "The 'vendor_name' numpy.ndarray() must have the dtype of 'numpy.uint8'" assert value.size == 32, \ "The 'vendor_name' numpy.ndarray() must have a size of 32" self._vendor_name = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 32 and all(isinstance(v, int) for v in value) and all(val >= 0 and val < 256 for val in value)), \ "The 'vendor_name' field must be a set or sequence with length 32 and each value of type 'int' and each unsigned integer in [0, 255]" self._vendor_name = numpy.array(value, dtype=numpy.uint8) @property def model_name(self): """Message field 'model_name'.""" return self._model_name @model_name.setter def model_name(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.uint8, \ "The 'model_name' numpy.ndarray() must have the dtype of 'numpy.uint8'" assert value.size == 32, \ "The 'model_name' numpy.ndarray() must have a size of 32" self._model_name = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 32 and all(isinstance(v, int) for v in value) and all(val >= 0 and val < 256 for val in value)), \ "The 'model_name' field must be a set or sequence with length 32 and each value of type 'int' and each unsigned integer in [0, 255]" self._model_name = numpy.array(value, dtype=numpy.uint8) @property def custom_name(self): """Message field 'custom_name'.""" return self._custom_name @custom_name.setter def custom_name(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.uint8, \ "The 'custom_name' numpy.ndarray() must have the dtype of 'numpy.uint8'" assert value.size == 32, \ "The 'custom_name' numpy.ndarray() must have a size of 32" self._custom_name = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 32 and all(isinstance(v, int) for v in value) and all(val >= 0 and val < 256 for val in value)), \ "The 'custom_name' field must be a set or sequence with length 32 and each value of type 'int' and each unsigned integer in [0, 255]" self._custom_name = numpy.array(value, dtype=numpy.uint8) @property def firmware_version(self): """Message field 'firmware_version'.""" return self._firmware_version @firmware_version.setter def firmware_version(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'firmware_version' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'firmware_version' field must be an unsigned integer in [0, 4294967295]" self._firmware_version = value @property def hardware_version(self): """Message field 'hardware_version'.""" return self._hardware_version @hardware_version.setter def hardware_version(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'hardware_version' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'hardware_version' field must be an unsigned integer in [0, 4294967295]" self._hardware_version = value @property def uid(self): """Message field 'uid'.""" return self._uid @uid.setter def uid(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'uid' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'uid' field must be an unsigned integer in [0, 18446744073709551615]" self._uid = value @property def cap_flags(self): """Message field 'cap_flags'.""" return self._cap_flags @cap_flags.setter def cap_flags(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'cap_flags' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'cap_flags' field must be an unsigned integer in [0, 65535]" self._cap_flags = value @property def custom_cap_flags(self): """Message field 'custom_cap_flags'.""" return self._custom_cap_flags @custom_cap_flags.setter def custom_cap_flags(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'custom_cap_flags' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'custom_cap_flags' field must be an unsigned integer in [0, 65535]" self._custom_cap_flags = value @property def roll_min(self): """Message field 'roll_min'.""" return self._roll_min @roll_min.setter def roll_min(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'roll_min' field must be of type 'float'" self._roll_min = value @property def roll_max(self): """Message field 'roll_max'.""" return self._roll_max @roll_max.setter def roll_max(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'roll_max' field must be of type 'float'" self._roll_max = value @property def pitch_min(self): """Message field 'pitch_min'.""" return self._pitch_min @pitch_min.setter def pitch_min(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'pitch_min' field must be of type 'float'" self._pitch_min = value @property def pitch_max(self): """Message field 'pitch_max'.""" return self._pitch_max @pitch_max.setter def pitch_max(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'pitch_max' field must be of type 'float'" self._pitch_max = value @property def yaw_min(self): """Message field 'yaw_min'.""" return self._yaw_min @yaw_min.setter def yaw_min(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'yaw_min' field must be of type 'float'" self._yaw_min = value @property def yaw_max(self): """Message field 'yaw_max'.""" return self._yaw_max @yaw_max.setter def yaw_max(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'yaw_max' field must be of type 'float'" self._yaw_max = value @property def gimbal_device_compid(self): """Message field 'gimbal_device_compid'.""" return self._gimbal_device_compid @gimbal_device_compid.setter def gimbal_device_compid(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'gimbal_device_compid' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'gimbal_device_compid' field must be an unsigned integer in [0, 255]" self._gimbal_device_compid = value <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/gimbal_manager_status.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GIMBAL_MANAGER_STATUS_HPP_ #define PX4_MSGS__MSG__GIMBAL_MANAGER_STATUS_HPP_ #include "px4_msgs/msg/gimbal_manager_status__struct.hpp" #include "px4_msgs/msg/gimbal_manager_status__traits.hpp" #endif // PX4_MSGS__MSG__GIMBAL_MANAGER_STATUS_HPP_ <file_sep>/build/multi_rtd_interfaces/rosidl_typesupport_fastrtps_cpp/multi_rtd_interfaces/msg/dds_fastrtps/robot_trajectory__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from multi_rtd_interfaces:msg/RobotTrajectory.idl // generated code does not contain a copyright notice #include "multi_rtd_interfaces/msg/robot_trajectory__rosidl_typesupport_fastrtps_cpp.hpp" #include "multi_rtd_interfaces/msg/robot_trajectory__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace trajectory_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool cdr_serialize( const trajectory_msgs::msg::JointTrajectory &, eprosima::fastcdr::Cdr &); bool cdr_deserialize( eprosima::fastcdr::Cdr &, trajectory_msgs::msg::JointTrajectory &); size_t get_serialized_size( const trajectory_msgs::msg::JointTrajectory &, size_t current_alignment); size_t max_serialized_size_JointTrajectory( bool & full_bounded, size_t current_alignment); } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace trajectory_msgs namespace multi_rtd_interfaces { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_multi_rtd_interfaces cdr_serialize( const multi_rtd_interfaces::msg::RobotTrajectory & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: robot_name cdr << ros_message.robot_name; // Member: trajectory trajectory_msgs::msg::typesupport_fastrtps_cpp::cdr_serialize( ros_message.trajectory, cdr); return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_multi_rtd_interfaces cdr_deserialize( eprosima::fastcdr::Cdr & cdr, multi_rtd_interfaces::msg::RobotTrajectory & ros_message) { // Member: robot_name cdr >> ros_message.robot_name; // Member: trajectory trajectory_msgs::msg::typesupport_fastrtps_cpp::cdr_deserialize( cdr, ros_message.trajectory); return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_multi_rtd_interfaces get_serialized_size( const multi_rtd_interfaces::msg::RobotTrajectory & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: robot_name current_alignment += padding + eprosima::fastcdr::Cdr::alignment(current_alignment, padding) + (ros_message.robot_name.size() + 1); // Member: trajectory current_alignment += trajectory_msgs::msg::typesupport_fastrtps_cpp::get_serialized_size( ros_message.trajectory, current_alignment); return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_multi_rtd_interfaces max_serialized_size_RobotTrajectory( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: robot_name { size_t array_size = 1; full_bounded = false; for (size_t index = 0; index < array_size; ++index) { current_alignment += padding + eprosima::fastcdr::Cdr::alignment(current_alignment, padding) + 1; } } // Member: trajectory { size_t array_size = 1; for (size_t index = 0; index < array_size; ++index) { current_alignment += trajectory_msgs::msg::typesupport_fastrtps_cpp::max_serialized_size_JointTrajectory( full_bounded, current_alignment); } } return current_alignment - initial_alignment; } static bool _RobotTrajectory__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const multi_rtd_interfaces::msg::RobotTrajectory *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _RobotTrajectory__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<multi_rtd_interfaces::msg::RobotTrajectory *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _RobotTrajectory__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const multi_rtd_interfaces::msg::RobotTrajectory *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _RobotTrajectory__max_serialized_size(bool & full_bounded) { return max_serialized_size_RobotTrajectory(full_bounded, 0); } static message_type_support_callbacks_t _RobotTrajectory__callbacks = { "multi_rtd_interfaces::msg", "RobotTrajectory", _RobotTrajectory__cdr_serialize, _RobotTrajectory__cdr_deserialize, _RobotTrajectory__get_serialized_size, _RobotTrajectory__max_serialized_size }; static rosidl_message_type_support_t _RobotTrajectory__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_RobotTrajectory__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace multi_rtd_interfaces namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_multi_rtd_interfaces const rosidl_message_type_support_t * get_message_type_support_handle<multi_rtd_interfaces::msg::RobotTrajectory>() { return &multi_rtd_interfaces::msg::typesupport_fastrtps_cpp::_RobotTrajectory__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, multi_rtd_interfaces, msg, RobotTrajectory)() { return &multi_rtd_interfaces::msg::typesupport_fastrtps_cpp::_RobotTrajectory__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_imu_status.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleImuStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_IMU_STATUS_H_ #define PX4_MSGS__MSG__VEHICLE_IMU_STATUS_H_ #include "px4_msgs/msg/vehicle_imu_status__struct.h" #include "px4_msgs/msg/vehicle_imu_status__functions.h" #include "px4_msgs/msg/vehicle_imu_status__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_IMU_STATUS_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orbit_status__rosidl_typesupport_fastrtps_c.h // generated from rosidl_typesupport_fastrtps_c/resource/idl__rosidl_typesupport_fastrtps_c.h.em // with input from px4_msgs:msg/OrbitStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORBIT_STATUS__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #define PX4_MSGS__MSG__ORBIT_STATUS__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #include <stddef.h> #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__OrbitStatus( const void * untyped_ros_message, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__OrbitStatus( bool & full_bounded, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, OrbitStatus)(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ORBIT_STATUS__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ <file_sep>/build/multi_rtd_interfaces/CMakeFiles/multi_rtd_interfaces__rosidl_typesupport_c.dir/cmake_clean.cmake file(REMOVE_RECURSE "rosidl_typesupport_c/multi_rtd_interfaces/msg/robot_trajectory__type_support.cpp" "CMakeFiles/multi_rtd_interfaces__rosidl_typesupport_c.dir/rosidl_typesupport_c/multi_rtd_interfaces/msg/robot_trajectory__type_support.cpp.o" "libmulti_rtd_interfaces__rosidl_typesupport_c.pdb" "libmulti_rtd_interfaces__rosidl_typesupport_c.so" ) # Per-language clean rules from dependency scanning. foreach(lang CXX) include(CMakeFiles/multi_rtd_interfaces__rosidl_typesupport_c.dir/cmake_clean_${lang}.cmake OPTIONAL) endforeach() <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/rosidl_generator_c__visibility_control.h // generated from rosidl_generator_c/resource/rosidl_generator_c__visibility_control.h.in // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ROSIDL_GENERATOR_C__VISIBILITY_CONTROL_H_ #define PX4_MSGS__MSG__ROSIDL_GENERATOR_C__VISIBILITY_CONTROL_H_ #ifdef __cplusplus extern "C" { #endif // This logic was borrowed (then namespaced) from the examples on the gcc wiki: // https://gcc.gnu.org/wiki/Visibility #if defined _WIN32 || defined __CYGWIN__ #ifdef __GNUC__ #define ROSIDL_GENERATOR_C_EXPORT_px4_msgs __attribute__ ((dllexport)) #define ROSIDL_GENERATOR_C_IMPORT_px4_msgs __attribute__ ((dllimport)) #else #define ROSIDL_GENERATOR_C_EXPORT_px4_msgs __declspec(dllexport) #define ROSIDL_GENERATOR_C_IMPORT_px4_msgs __declspec(dllimport) #endif #ifdef ROSIDL_GENERATOR_C_BUILDING_DLL_px4_msgs #define ROSIDL_GENERATOR_C_PUBLIC_px4_msgs ROSIDL_GENERATOR_C_EXPORT_px4_msgs #else #define ROSIDL_GENERATOR_C_PUBLIC_px4_msgs ROSIDL_GENERATOR_C_IMPORT_px4_msgs #endif #else #define ROSIDL_GENERATOR_C_EXPORT_px4_msgs __attribute__ ((visibility("default"))) #define ROSIDL_GENERATOR_C_IMPORT_px4_msgs #if __GNUC__ >= 4 #define ROSIDL_GENERATOR_C_PUBLIC_px4_msgs __attribute__ ((visibility("default"))) #else #define ROSIDL_GENERATOR_C_PUBLIC_px4_msgs #endif #endif #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ROSIDL_GENERATOR_C__VISIBILITY_CONTROL_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_status_flags__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/VehicleStatusFlags.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/vehicle_status_flags__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/vehicle_status_flags__functions.h" #include "px4_msgs/msg/vehicle_status_flags__struct.h" #ifdef __cplusplus extern "C" { #endif void VehicleStatusFlags__rosidl_typesupport_introspection_c__VehicleStatusFlags_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__VehicleStatusFlags__init(message_memory); } void VehicleStatusFlags__rosidl_typesupport_introspection_c__VehicleStatusFlags_fini_function(void * message_memory) { px4_msgs__msg__VehicleStatusFlags__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember VehicleStatusFlags__rosidl_typesupport_introspection_c__VehicleStatusFlags_message_member_array[34] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "condition_calibration_enabled", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, condition_calibration_enabled), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "condition_system_sensors_initialized", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, condition_system_sensors_initialized), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "condition_system_hotplug_timeout", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, condition_system_hotplug_timeout), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "condition_system_returned_to_home", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, condition_system_returned_to_home), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "condition_auto_mission_available", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, condition_auto_mission_available), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "condition_angular_velocity_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, condition_angular_velocity_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "condition_attitude_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, condition_attitude_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "condition_local_altitude_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, condition_local_altitude_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "condition_local_position_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, condition_local_position_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "condition_local_velocity_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, condition_local_velocity_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "condition_global_position_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, condition_global_position_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "condition_home_position_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, condition_home_position_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "condition_power_input_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, condition_power_input_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "condition_battery_healthy", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, condition_battery_healthy), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "condition_escs_error", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, condition_escs_error), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "condition_escs_failure", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, condition_escs_failure), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "circuit_breaker_engaged_power_check", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, circuit_breaker_engaged_power_check), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "circuit_breaker_engaged_airspd_check", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, circuit_breaker_engaged_airspd_check), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "circuit_breaker_engaged_enginefailure_check", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, circuit_breaker_engaged_enginefailure_check), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "circuit_breaker_flight_termination_disabled", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, circuit_breaker_flight_termination_disabled), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "circuit_breaker_engaged_usb_check", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, circuit_breaker_engaged_usb_check), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "circuit_breaker_engaged_posfailure_check", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, circuit_breaker_engaged_posfailure_check), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "circuit_breaker_vtol_fw_arming_check", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, circuit_breaker_vtol_fw_arming_check), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "offboard_control_signal_found_once", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, offboard_control_signal_found_once), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "offboard_control_signal_lost", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, offboard_control_signal_lost), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rc_signal_found_once", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, rc_signal_found_once), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rc_input_blocked", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, rc_input_blocked), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rc_calibration_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, rc_calibration_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vtol_transition_failure", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, vtol_transition_failure), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "usb_connected", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, usb_connected), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "sd_card_detected_once", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, sd_card_detected_once), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "avoidance_system_required", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, avoidance_system_required), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "avoidance_system_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleStatusFlags, avoidance_system_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers VehicleStatusFlags__rosidl_typesupport_introspection_c__VehicleStatusFlags_message_members = { "px4_msgs__msg", // message namespace "VehicleStatusFlags", // message name 34, // number of fields sizeof(px4_msgs__msg__VehicleStatusFlags), VehicleStatusFlags__rosidl_typesupport_introspection_c__VehicleStatusFlags_message_member_array, // message members VehicleStatusFlags__rosidl_typesupport_introspection_c__VehicleStatusFlags_init_function, // function to initialize message memory (memory has to be allocated) VehicleStatusFlags__rosidl_typesupport_introspection_c__VehicleStatusFlags_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t VehicleStatusFlags__rosidl_typesupport_introspection_c__VehicleStatusFlags_message_type_support_handle = { 0, &VehicleStatusFlags__rosidl_typesupport_introspection_c__VehicleStatusFlags_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, VehicleStatusFlags)() { if (!VehicleStatusFlags__rosidl_typesupport_introspection_c__VehicleStatusFlags_message_type_support_handle.typesupport_identifier) { VehicleStatusFlags__rosidl_typesupport_introspection_c__VehicleStatusFlags_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &VehicleStatusFlags__rosidl_typesupport_introspection_c__VehicleStatusFlags_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/mission.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/Mission.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__MISSION_H_ #define PX4_MSGS__MSG__MISSION_H_ #include "px4_msgs/msg/mission__struct.h" #include "px4_msgs/msg/mission__functions.h" #include "px4_msgs/msg/mission__type_support.h" #endif // PX4_MSGS__MSG__MISSION_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_imu_status__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleImuStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_imu_status__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__VehicleImuStatus__init(px4_msgs__msg__VehicleImuStatus * msg) { if (!msg) { return false; } // timestamp // accel_device_id // gyro_device_id // accel_clipping // accel_error_count // gyro_error_count // accel_rate_hz // gyro_rate_hz // accel_raw_rate_hz // gyro_raw_rate_hz // accel_vibration_metric // gyro_vibration_metric // gyro_coning_vibration // mean_accel // mean_gyro // temperature_accel // temperature_gyro return true; } void px4_msgs__msg__VehicleImuStatus__fini(px4_msgs__msg__VehicleImuStatus * msg) { if (!msg) { return; } // timestamp // accel_device_id // gyro_device_id // accel_clipping // accel_error_count // gyro_error_count // accel_rate_hz // gyro_rate_hz // accel_raw_rate_hz // gyro_raw_rate_hz // accel_vibration_metric // gyro_vibration_metric // gyro_coning_vibration // mean_accel // mean_gyro // temperature_accel // temperature_gyro } px4_msgs__msg__VehicleImuStatus * px4_msgs__msg__VehicleImuStatus__create() { px4_msgs__msg__VehicleImuStatus * msg = (px4_msgs__msg__VehicleImuStatus *)malloc(sizeof(px4_msgs__msg__VehicleImuStatus)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleImuStatus)); bool success = px4_msgs__msg__VehicleImuStatus__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleImuStatus__destroy(px4_msgs__msg__VehicleImuStatus * msg) { if (msg) { px4_msgs__msg__VehicleImuStatus__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleImuStatus__Sequence__init(px4_msgs__msg__VehicleImuStatus__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleImuStatus * data = NULL; if (size) { data = (px4_msgs__msg__VehicleImuStatus *)calloc(size, sizeof(px4_msgs__msg__VehicleImuStatus)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleImuStatus__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleImuStatus__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleImuStatus__Sequence__fini(px4_msgs__msg__VehicleImuStatus__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleImuStatus__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleImuStatus__Sequence * px4_msgs__msg__VehicleImuStatus__Sequence__create(size_t size) { px4_msgs__msg__VehicleImuStatus__Sequence * array = (px4_msgs__msg__VehicleImuStatus__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleImuStatus__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleImuStatus__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleImuStatus__Sequence__destroy(px4_msgs__msg__VehicleImuStatus__Sequence * array) { if (array) { px4_msgs__msg__VehicleImuStatus__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger_secondary__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/CameraTriggerSecondary.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/camera_trigger_secondary__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/camera_trigger_secondary__functions.h" #include "px4_msgs/msg/camera_trigger_secondary__struct.h" #ifdef __cplusplus extern "C" { #endif void CameraTriggerSecondary__rosidl_typesupport_introspection_c__CameraTriggerSecondary_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__CameraTriggerSecondary__init(message_memory); } void CameraTriggerSecondary__rosidl_typesupport_introspection_c__CameraTriggerSecondary_fini_function(void * message_memory) { px4_msgs__msg__CameraTriggerSecondary__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember CameraTriggerSecondary__rosidl_typesupport_introspection_c__CameraTriggerSecondary_message_member_array[4] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__CameraTriggerSecondary, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_utc", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__CameraTriggerSecondary, timestamp_utc), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "seq", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__CameraTriggerSecondary, seq), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "feedback", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__CameraTriggerSecondary, feedback), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers CameraTriggerSecondary__rosidl_typesupport_introspection_c__CameraTriggerSecondary_message_members = { "px4_msgs__msg", // message namespace "CameraTriggerSecondary", // message name 4, // number of fields sizeof(px4_msgs__msg__CameraTriggerSecondary), CameraTriggerSecondary__rosidl_typesupport_introspection_c__CameraTriggerSecondary_message_member_array, // message members CameraTriggerSecondary__rosidl_typesupport_introspection_c__CameraTriggerSecondary_init_function, // function to initialize message memory (memory has to be allocated) CameraTriggerSecondary__rosidl_typesupport_introspection_c__CameraTriggerSecondary_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t CameraTriggerSecondary__rosidl_typesupport_introspection_c__CameraTriggerSecondary_message_type_support_handle = { 0, &CameraTriggerSecondary__rosidl_typesupport_introspection_c__CameraTriggerSecondary_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, CameraTriggerSecondary)() { if (!CameraTriggerSecondary__rosidl_typesupport_introspection_c__CameraTriggerSecondary_message_type_support_handle.typesupport_identifier) { CameraTriggerSecondary__rosidl_typesupport_introspection_c__CameraTriggerSecondary_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &CameraTriggerSecondary__rosidl_typesupport_introspection_c__CameraTriggerSecondary_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/multirotor_motor_limits__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/MultirotorMotorLimits.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/multirotor_motor_limits__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__MultirotorMotorLimits__init(px4_msgs__msg__MultirotorMotorLimits * msg) { if (!msg) { return false; } // timestamp // saturation_status return true; } void px4_msgs__msg__MultirotorMotorLimits__fini(px4_msgs__msg__MultirotorMotorLimits * msg) { if (!msg) { return; } // timestamp // saturation_status } px4_msgs__msg__MultirotorMotorLimits * px4_msgs__msg__MultirotorMotorLimits__create() { px4_msgs__msg__MultirotorMotorLimits * msg = (px4_msgs__msg__MultirotorMotorLimits *)malloc(sizeof(px4_msgs__msg__MultirotorMotorLimits)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__MultirotorMotorLimits)); bool success = px4_msgs__msg__MultirotorMotorLimits__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__MultirotorMotorLimits__destroy(px4_msgs__msg__MultirotorMotorLimits * msg) { if (msg) { px4_msgs__msg__MultirotorMotorLimits__fini(msg); } free(msg); } bool px4_msgs__msg__MultirotorMotorLimits__Sequence__init(px4_msgs__msg__MultirotorMotorLimits__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__MultirotorMotorLimits * data = NULL; if (size) { data = (px4_msgs__msg__MultirotorMotorLimits *)calloc(size, sizeof(px4_msgs__msg__MultirotorMotorLimits)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__MultirotorMotorLimits__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__MultirotorMotorLimits__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__MultirotorMotorLimits__Sequence__fini(px4_msgs__msg__MultirotorMotorLimits__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__MultirotorMotorLimits__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__MultirotorMotorLimits__Sequence * px4_msgs__msg__MultirotorMotorLimits__Sequence__create(size_t size) { px4_msgs__msg__MultirotorMotorLimits__Sequence * array = (px4_msgs__msg__MultirotorMotorLimits__Sequence *)malloc(sizeof(px4_msgs__msg__MultirotorMotorLimits__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__MultirotorMotorLimits__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__MultirotorMotorLimits__Sequence__destroy(px4_msgs__msg__MultirotorMotorLimits__Sequence * array) { if (array) { px4_msgs__msg__MultirotorMotorLimits__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/position_controller_landing_status.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__POSITION_CONTROLLER_LANDING_STATUS_HPP_ #define PX4_MSGS__MSG__POSITION_CONTROLLER_LANDING_STATUS_HPP_ #include "px4_msgs/msg/position_controller_landing_status__struct.hpp" #include "px4_msgs/msg/position_controller_landing_status__traits.hpp" #endif // PX4_MSGS__MSG__POSITION_CONTROLLER_LANDING_STATUS_HPP_ <file_sep>/build/multi_rtd_interfaces/rosidl_typesupport_introspection_c/multi_rtd_interfaces/msg/robot_trajectory__rosidl_typesupport_introspection_c.h // generated from rosidl_typesupport_introspection_c/resource/idl__rosidl_typesupport_introspection_c.h.em // with input from multi_rtd_interfaces:msg/RobotTrajectory.idl // generated code does not contain a copyright notice #ifndef MULTI_RTD_INTERFACES__MSG__ROBOT_TRAJECTORY__ROSIDL_TYPESUPPORT_INTROSPECTION_C_H_ #define MULTI_RTD_INTERFACES__MSG__ROBOT_TRAJECTORY__ROSIDL_TYPESUPPORT_INTROSPECTION_C_H_ #ifdef __cplusplus extern "C" { #endif #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "multi_rtd_interfaces/msg/rosidl_typesupport_introspection_c__visibility_control.h" ROSIDL_TYPESUPPORT_INTROSPECTION_C_PUBLIC_multi_rtd_interfaces const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, multi_rtd_interfaces, msg, RobotTrajectory)(); #ifdef __cplusplus } #endif #endif // MULTI_RTD_INTERFACES__MSG__ROBOT_TRAJECTORY__ROSIDL_TYPESUPPORT_INTROSPECTION_C_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/cellular_status.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__CELLULAR_STATUS_HPP_ #define PX4_MSGS__MSG__CELLULAR_STATUS_HPP_ #include "px4_msgs/msg/cellular_status__struct.hpp" #include "px4_msgs/msg/cellular_status__traits.hpp" #endif // PX4_MSGS__MSG__CELLULAR_STATUS_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_airspeed_wind.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/AirspeedWind.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_AirspeedWind(type): """Metaclass of message 'AirspeedWind'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'SOURCE_AS_BETA_ONLY': 0, 'SOURCE_AS_SENSOR_1': 1, 'SOURCE_AS_SENSOR_2': 2, 'SOURCE_AS_SENSOR_3': 3, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.AirspeedWind') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__airspeed_wind cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__airspeed_wind cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__airspeed_wind cls._TYPE_SUPPORT = module.type_support_msg__msg__airspeed_wind cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__airspeed_wind @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'SOURCE_AS_BETA_ONLY': cls.__constants['SOURCE_AS_BETA_ONLY'], 'SOURCE_AS_SENSOR_1': cls.__constants['SOURCE_AS_SENSOR_1'], 'SOURCE_AS_SENSOR_2': cls.__constants['SOURCE_AS_SENSOR_2'], 'SOURCE_AS_SENSOR_3': cls.__constants['SOURCE_AS_SENSOR_3'], } @property def SOURCE_AS_BETA_ONLY(self): """Message constant 'SOURCE_AS_BETA_ONLY'.""" return Metaclass_AirspeedWind.__constants['SOURCE_AS_BETA_ONLY'] @property def SOURCE_AS_SENSOR_1(self): """Message constant 'SOURCE_AS_SENSOR_1'.""" return Metaclass_AirspeedWind.__constants['SOURCE_AS_SENSOR_1'] @property def SOURCE_AS_SENSOR_2(self): """Message constant 'SOURCE_AS_SENSOR_2'.""" return Metaclass_AirspeedWind.__constants['SOURCE_AS_SENSOR_2'] @property def SOURCE_AS_SENSOR_3(self): """Message constant 'SOURCE_AS_SENSOR_3'.""" return Metaclass_AirspeedWind.__constants['SOURCE_AS_SENSOR_3'] class AirspeedWind(metaclass=Metaclass_AirspeedWind): """ Message class 'AirspeedWind'. Constants: SOURCE_AS_BETA_ONLY SOURCE_AS_SENSOR_1 SOURCE_AS_SENSOR_2 SOURCE_AS_SENSOR_3 """ __slots__ = [ '_timestamp', '_timestamp_sample', '_windspeed_north', '_windspeed_east', '_variance_north', '_variance_east', '_tas_innov', '_tas_innov_var', '_tas_scale', '_beta_innov', '_beta_innov_var', '_source', ] _fields_and_field_types = { 'timestamp': 'uint64', 'timestamp_sample': 'uint64', 'windspeed_north': 'float', 'windspeed_east': 'float', 'variance_north': 'float', 'variance_east': 'float', 'tas_innov': 'float', 'tas_innov_var': 'float', 'tas_scale': 'float', 'beta_innov': 'float', 'beta_innov_var': 'float', 'source': 'uint8', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.timestamp_sample = kwargs.get('timestamp_sample', int()) self.windspeed_north = kwargs.get('windspeed_north', float()) self.windspeed_east = kwargs.get('windspeed_east', float()) self.variance_north = kwargs.get('variance_north', float()) self.variance_east = kwargs.get('variance_east', float()) self.tas_innov = kwargs.get('tas_innov', float()) self.tas_innov_var = kwargs.get('tas_innov_var', float()) self.tas_scale = kwargs.get('tas_scale', float()) self.beta_innov = kwargs.get('beta_innov', float()) self.beta_innov_var = kwargs.get('beta_innov_var', float()) self.source = kwargs.get('source', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.timestamp_sample != other.timestamp_sample: return False if self.windspeed_north != other.windspeed_north: return False if self.windspeed_east != other.windspeed_east: return False if self.variance_north != other.variance_north: return False if self.variance_east != other.variance_east: return False if self.tas_innov != other.tas_innov: return False if self.tas_innov_var != other.tas_innov_var: return False if self.tas_scale != other.tas_scale: return False if self.beta_innov != other.beta_innov: return False if self.beta_innov_var != other.beta_innov_var: return False if self.source != other.source: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def timestamp_sample(self): """Message field 'timestamp_sample'.""" return self._timestamp_sample @timestamp_sample.setter def timestamp_sample(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp_sample' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp_sample' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp_sample = value @property def windspeed_north(self): """Message field 'windspeed_north'.""" return self._windspeed_north @windspeed_north.setter def windspeed_north(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'windspeed_north' field must be of type 'float'" self._windspeed_north = value @property def windspeed_east(self): """Message field 'windspeed_east'.""" return self._windspeed_east @windspeed_east.setter def windspeed_east(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'windspeed_east' field must be of type 'float'" self._windspeed_east = value @property def variance_north(self): """Message field 'variance_north'.""" return self._variance_north @variance_north.setter def variance_north(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'variance_north' field must be of type 'float'" self._variance_north = value @property def variance_east(self): """Message field 'variance_east'.""" return self._variance_east @variance_east.setter def variance_east(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'variance_east' field must be of type 'float'" self._variance_east = value @property def tas_innov(self): """Message field 'tas_innov'.""" return self._tas_innov @tas_innov.setter def tas_innov(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'tas_innov' field must be of type 'float'" self._tas_innov = value @property def tas_innov_var(self): """Message field 'tas_innov_var'.""" return self._tas_innov_var @tas_innov_var.setter def tas_innov_var(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'tas_innov_var' field must be of type 'float'" self._tas_innov_var = value @property def tas_scale(self): """Message field 'tas_scale'.""" return self._tas_scale @tas_scale.setter def tas_scale(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'tas_scale' field must be of type 'float'" self._tas_scale = value @property def beta_innov(self): """Message field 'beta_innov'.""" return self._beta_innov @beta_innov.setter def beta_innov(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'beta_innov' field must be of type 'float'" self._beta_innov = value @property def beta_innov_var(self): """Message field 'beta_innov_var'.""" return self._beta_innov_var @beta_innov_var.setter def beta_innov_var(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'beta_innov_var' field must be of type 'float'" self._beta_innov_var = value @property def source(self): """Message field 'source'.""" return self._source @source.setter def source(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'source' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'source' field must be an unsigned integer in [0, 255]" self._source = value <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/adc_report.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ADC_REPORT_HPP_ #define PX4_MSGS__MSG__ADC_REPORT_HPP_ #include "px4_msgs/msg/adc_report__struct.hpp" #include "px4_msgs/msg/adc_report__traits.hpp" #endif // PX4_MSGS__MSG__ADC_REPORT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/wind.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__WIND_HPP_ #define PX4_MSGS__MSG__WIND_HPP_ #include "px4_msgs/msg/wind__struct.hpp" #include "px4_msgs/msg/wind__traits.hpp" #endif // PX4_MSGS__MSG__WIND_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/system_power__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/SystemPower.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/system_power__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/system_power__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::SystemPower & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: voltage5v_v cdr << ros_message.voltage5v_v; // Member: sensors3v3 { cdr << ros_message.sensors3v3; } // Member: sensors3v3_valid cdr << ros_message.sensors3v3_valid; // Member: usb_connected cdr << ros_message.usb_connected; // Member: brick_valid cdr << ros_message.brick_valid; // Member: usb_valid cdr << ros_message.usb_valid; // Member: servo_valid cdr << ros_message.servo_valid; // Member: periph_5v_oc cdr << ros_message.periph_5v_oc; // Member: hipower_5v_oc cdr << ros_message.hipower_5v_oc; // Member: comp_5v_valid cdr << ros_message.comp_5v_valid; // Member: can1_gps1_5v_valid cdr << ros_message.can1_gps1_5v_valid; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::SystemPower & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: voltage5v_v cdr >> ros_message.voltage5v_v; // Member: sensors3v3 { cdr >> ros_message.sensors3v3; } // Member: sensors3v3_valid cdr >> ros_message.sensors3v3_valid; // Member: usb_connected cdr >> ros_message.usb_connected; // Member: brick_valid cdr >> ros_message.brick_valid; // Member: usb_valid cdr >> ros_message.usb_valid; // Member: servo_valid cdr >> ros_message.servo_valid; // Member: periph_5v_oc cdr >> ros_message.periph_5v_oc; // Member: hipower_5v_oc cdr >> ros_message.hipower_5v_oc; // Member: comp_5v_valid cdr >> ros_message.comp_5v_valid; // Member: can1_gps1_5v_valid cdr >> ros_message.can1_gps1_5v_valid; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::SystemPower & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: voltage5v_v { size_t item_size = sizeof(ros_message.voltage5v_v); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: sensors3v3 { size_t array_size = 4; size_t item_size = sizeof(ros_message.sensors3v3[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: sensors3v3_valid { size_t item_size = sizeof(ros_message.sensors3v3_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: usb_connected { size_t item_size = sizeof(ros_message.usb_connected); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: brick_valid { size_t item_size = sizeof(ros_message.brick_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: usb_valid { size_t item_size = sizeof(ros_message.usb_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: servo_valid { size_t item_size = sizeof(ros_message.servo_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: periph_5v_oc { size_t item_size = sizeof(ros_message.periph_5v_oc); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: hipower_5v_oc { size_t item_size = sizeof(ros_message.hipower_5v_oc); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: comp_5v_valid { size_t item_size = sizeof(ros_message.comp_5v_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: can1_gps1_5v_valid { size_t item_size = sizeof(ros_message.can1_gps1_5v_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_SystemPower( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: voltage5v_v { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: sensors3v3 { size_t array_size = 4; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: sensors3v3_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: usb_connected { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: brick_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: usb_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: servo_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: periph_5v_oc { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: hipower_5v_oc { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: comp_5v_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: can1_gps1_5v_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _SystemPower__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::SystemPower *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _SystemPower__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::SystemPower *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _SystemPower__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::SystemPower *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _SystemPower__max_serialized_size(bool & full_bounded) { return max_serialized_size_SystemPower(full_bounded, 0); } static message_type_support_callbacks_t _SystemPower__callbacks = { "px4_msgs::msg", "SystemPower", _SystemPower__cdr_serialize, _SystemPower__cdr_deserialize, _SystemPower__get_serialized_size, _SystemPower__max_serialized_size }; static rosidl_message_type_support_t _SystemPower__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_SystemPower__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::SystemPower>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_SystemPower__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, SystemPower)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_SystemPower__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gps_dump__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/GpsDump.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/gps_dump__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/gps_dump__struct.h" #include "px4_msgs/msg/gps_dump__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _GpsDump__ros_msg_type = px4_msgs__msg__GpsDump; static bool _GpsDump__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _GpsDump__ros_msg_type * ros_message = static_cast<const _GpsDump__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: instance { cdr << ros_message->instance; } // Field name: len { cdr << ros_message->len; } // Field name: data { size_t size = 79; auto array_ptr = ros_message->data; cdr.serializeArray(array_ptr, size); } return true; } static bool _GpsDump__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _GpsDump__ros_msg_type * ros_message = static_cast<_GpsDump__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: instance { cdr >> ros_message->instance; } // Field name: len { cdr >> ros_message->len; } // Field name: data { size_t size = 79; auto array_ptr = ros_message->data; cdr.deserializeArray(array_ptr, size); } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__GpsDump( const void * untyped_ros_message, size_t current_alignment) { const _GpsDump__ros_msg_type * ros_message = static_cast<const _GpsDump__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name instance { size_t item_size = sizeof(ros_message->instance); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name len { size_t item_size = sizeof(ros_message->len); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name data { size_t array_size = 79; auto array_ptr = ros_message->data; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _GpsDump__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__GpsDump( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__GpsDump( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: instance { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: len { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: data { size_t array_size = 79; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _GpsDump__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__GpsDump( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_GpsDump = { "px4_msgs::msg", "GpsDump", _GpsDump__cdr_serialize, _GpsDump__cdr_deserialize, _GpsDump__get_serialized_size, _GpsDump__max_serialized_size }; static rosidl_message_type_support_t _GpsDump__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_GpsDump, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, GpsDump)() { return &_GpsDump__type_support; } #if defined(__cplusplus) } #endif <file_sep>/install/px4_msgs/include/px4_msgs/msg/pwm_input.h /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/pwm_input.h<file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_visual_odometry__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleVisualOdometry.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_visual_odometry__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__VehicleVisualOdometry__init(px4_msgs__msg__VehicleVisualOdometry * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // local_frame // x // y // z // q // q_offset // pose_covariance // velocity_frame // vx // vy // vz // rollspeed // pitchspeed // yawspeed // velocity_covariance return true; } void px4_msgs__msg__VehicleVisualOdometry__fini(px4_msgs__msg__VehicleVisualOdometry * msg) { if (!msg) { return; } // timestamp // timestamp_sample // local_frame // x // y // z // q // q_offset // pose_covariance // velocity_frame // vx // vy // vz // rollspeed // pitchspeed // yawspeed // velocity_covariance } px4_msgs__msg__VehicleVisualOdometry * px4_msgs__msg__VehicleVisualOdometry__create() { px4_msgs__msg__VehicleVisualOdometry * msg = (px4_msgs__msg__VehicleVisualOdometry *)malloc(sizeof(px4_msgs__msg__VehicleVisualOdometry)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleVisualOdometry)); bool success = px4_msgs__msg__VehicleVisualOdometry__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleVisualOdometry__destroy(px4_msgs__msg__VehicleVisualOdometry * msg) { if (msg) { px4_msgs__msg__VehicleVisualOdometry__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleVisualOdometry__Sequence__init(px4_msgs__msg__VehicleVisualOdometry__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleVisualOdometry * data = NULL; if (size) { data = (px4_msgs__msg__VehicleVisualOdometry *)calloc(size, sizeof(px4_msgs__msg__VehicleVisualOdometry)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleVisualOdometry__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleVisualOdometry__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleVisualOdometry__Sequence__fini(px4_msgs__msg__VehicleVisualOdometry__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleVisualOdometry__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleVisualOdometry__Sequence * px4_msgs__msg__VehicleVisualOdometry__Sequence__create(size_t size) { px4_msgs__msg__VehicleVisualOdometry__Sequence * array = (px4_msgs__msg__VehicleVisualOdometry__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleVisualOdometry__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleVisualOdometry__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleVisualOdometry__Sequence__destroy(px4_msgs__msg__VehicleVisualOdometry__Sequence * array) { if (array) { px4_msgs__msg__VehicleVisualOdometry__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/iridiumsbd_status__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/IridiumsbdStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/iridiumsbd_status__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/iridiumsbd_status__struct.h" #include "px4_msgs/msg/iridiumsbd_status__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _IridiumsbdStatus__ros_msg_type = px4_msgs__msg__IridiumsbdStatus; static bool _IridiumsbdStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _IridiumsbdStatus__ros_msg_type * ros_message = static_cast<const _IridiumsbdStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: last_heartbeat { cdr << ros_message->last_heartbeat; } // Field name: tx_buf_write_index { cdr << ros_message->tx_buf_write_index; } // Field name: rx_buf_read_index { cdr << ros_message->rx_buf_read_index; } // Field name: rx_buf_end_index { cdr << ros_message->rx_buf_end_index; } // Field name: failed_sbd_sessions { cdr << ros_message->failed_sbd_sessions; } // Field name: successful_sbd_sessions { cdr << ros_message->successful_sbd_sessions; } // Field name: num_tx_buf_reset { cdr << ros_message->num_tx_buf_reset; } // Field name: signal_quality { cdr << ros_message->signal_quality; } // Field name: state { cdr << ros_message->state; } // Field name: ring_pending { cdr << (ros_message->ring_pending ? true : false); } // Field name: tx_buf_write_pending { cdr << (ros_message->tx_buf_write_pending ? true : false); } // Field name: tx_session_pending { cdr << (ros_message->tx_session_pending ? true : false); } // Field name: rx_read_pending { cdr << (ros_message->rx_read_pending ? true : false); } // Field name: rx_session_pending { cdr << (ros_message->rx_session_pending ? true : false); } return true; } static bool _IridiumsbdStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _IridiumsbdStatus__ros_msg_type * ros_message = static_cast<_IridiumsbdStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: last_heartbeat { cdr >> ros_message->last_heartbeat; } // Field name: tx_buf_write_index { cdr >> ros_message->tx_buf_write_index; } // Field name: rx_buf_read_index { cdr >> ros_message->rx_buf_read_index; } // Field name: rx_buf_end_index { cdr >> ros_message->rx_buf_end_index; } // Field name: failed_sbd_sessions { cdr >> ros_message->failed_sbd_sessions; } // Field name: successful_sbd_sessions { cdr >> ros_message->successful_sbd_sessions; } // Field name: num_tx_buf_reset { cdr >> ros_message->num_tx_buf_reset; } // Field name: signal_quality { cdr >> ros_message->signal_quality; } // Field name: state { cdr >> ros_message->state; } // Field name: ring_pending { uint8_t tmp; cdr >> tmp; ros_message->ring_pending = tmp ? true : false; } // Field name: tx_buf_write_pending { uint8_t tmp; cdr >> tmp; ros_message->tx_buf_write_pending = tmp ? true : false; } // Field name: tx_session_pending { uint8_t tmp; cdr >> tmp; ros_message->tx_session_pending = tmp ? true : false; } // Field name: rx_read_pending { uint8_t tmp; cdr >> tmp; ros_message->rx_read_pending = tmp ? true : false; } // Field name: rx_session_pending { uint8_t tmp; cdr >> tmp; ros_message->rx_session_pending = tmp ? true : false; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__IridiumsbdStatus( const void * untyped_ros_message, size_t current_alignment) { const _IridiumsbdStatus__ros_msg_type * ros_message = static_cast<const _IridiumsbdStatus__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name last_heartbeat { size_t item_size = sizeof(ros_message->last_heartbeat); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name tx_buf_write_index { size_t item_size = sizeof(ros_message->tx_buf_write_index); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rx_buf_read_index { size_t item_size = sizeof(ros_message->rx_buf_read_index); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rx_buf_end_index { size_t item_size = sizeof(ros_message->rx_buf_end_index); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name failed_sbd_sessions { size_t item_size = sizeof(ros_message->failed_sbd_sessions); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name successful_sbd_sessions { size_t item_size = sizeof(ros_message->successful_sbd_sessions); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name num_tx_buf_reset { size_t item_size = sizeof(ros_message->num_tx_buf_reset); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name signal_quality { size_t item_size = sizeof(ros_message->signal_quality); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name state { size_t item_size = sizeof(ros_message->state); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name ring_pending { size_t item_size = sizeof(ros_message->ring_pending); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name tx_buf_write_pending { size_t item_size = sizeof(ros_message->tx_buf_write_pending); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name tx_session_pending { size_t item_size = sizeof(ros_message->tx_session_pending); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rx_read_pending { size_t item_size = sizeof(ros_message->rx_read_pending); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rx_session_pending { size_t item_size = sizeof(ros_message->rx_session_pending); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _IridiumsbdStatus__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__IridiumsbdStatus( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__IridiumsbdStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: last_heartbeat { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: tx_buf_write_index { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: rx_buf_read_index { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: rx_buf_end_index { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: failed_sbd_sessions { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: successful_sbd_sessions { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: num_tx_buf_reset { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: signal_quality { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: state { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: ring_pending { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: tx_buf_write_pending { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: tx_session_pending { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: rx_read_pending { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: rx_session_pending { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _IridiumsbdStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__IridiumsbdStatus( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_IridiumsbdStatus = { "px4_msgs::msg", "IridiumsbdStatus", _IridiumsbdStatus__cdr_serialize, _IridiumsbdStatus__cdr_deserialize, _IridiumsbdStatus__get_serialized_size, _IridiumsbdStatus__max_serialized_size }; static rosidl_message_type_support_t _IridiumsbdStatus__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_IridiumsbdStatus, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, IridiumsbdStatus)() { return &_IridiumsbdStatus__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/orb_test_large__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/OrbTestLarge.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORB_TEST_LARGE__FUNCTIONS_H_ #define PX4_MSGS__MSG__ORB_TEST_LARGE__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/orb_test_large__struct.h" /// Initialize msg/OrbTestLarge message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__OrbTestLarge * )) before or use * px4_msgs__msg__OrbTestLarge__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__OrbTestLarge__init(px4_msgs__msg__OrbTestLarge * msg); /// Finalize msg/OrbTestLarge message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__OrbTestLarge__fini(px4_msgs__msg__OrbTestLarge * msg); /// Create msg/OrbTestLarge message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__OrbTestLarge__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__OrbTestLarge * px4_msgs__msg__OrbTestLarge__create(); /// Destroy msg/OrbTestLarge message. /** * It calls * px4_msgs__msg__OrbTestLarge__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__OrbTestLarge__destroy(px4_msgs__msg__OrbTestLarge * msg); /// Initialize array of msg/OrbTestLarge messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__OrbTestLarge__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__OrbTestLarge__Sequence__init(px4_msgs__msg__OrbTestLarge__Sequence * array, size_t size); /// Finalize array of msg/OrbTestLarge messages. /** * It calls * px4_msgs__msg__OrbTestLarge__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__OrbTestLarge__Sequence__fini(px4_msgs__msg__OrbTestLarge__Sequence * array); /// Create array of msg/OrbTestLarge messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__OrbTestLarge__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__OrbTestLarge__Sequence * px4_msgs__msg__OrbTestLarge__Sequence__create(size_t size); /// Destroy array of msg/OrbTestLarge messages. /** * It calls * px4_msgs__msg__OrbTestLarge__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__OrbTestLarge__Sequence__destroy(px4_msgs__msg__OrbTestLarge__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ORB_TEST_LARGE__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/camera_capture__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/CameraCapture.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__CAMERA_CAPTURE__STRUCT_HPP_ #define PX4_MSGS__MSG__CAMERA_CAPTURE__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__CameraCapture __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__CameraCapture __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct CameraCapture_ { using Type = CameraCapture_<ContainerAllocator>; explicit CameraCapture_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_utc = 0ull; this->seq = 0ul; this->lat = 0.0; this->lon = 0.0; this->alt = 0.0f; this->ground_distance = 0.0f; std::fill<typename std::array<float, 4>::iterator, float>(this->q.begin(), this->q.end(), 0.0f); this->result = 0; } } explicit CameraCapture_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : q(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_utc = 0ull; this->seq = 0ul; this->lat = 0.0; this->lon = 0.0; this->alt = 0.0f; this->ground_distance = 0.0f; std::fill<typename std::array<float, 4>::iterator, float>(this->q.begin(), this->q.end(), 0.0f); this->result = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _timestamp_utc_type = uint64_t; _timestamp_utc_type timestamp_utc; using _seq_type = uint32_t; _seq_type seq; using _lat_type = double; _lat_type lat; using _lon_type = double; _lon_type lon; using _alt_type = float; _alt_type alt; using _ground_distance_type = float; _ground_distance_type ground_distance; using _q_type = std::array<float, 4>; _q_type q; using _result_type = int8_t; _result_type result; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__timestamp_utc( const uint64_t & _arg) { this->timestamp_utc = _arg; return *this; } Type & set__seq( const uint32_t & _arg) { this->seq = _arg; return *this; } Type & set__lat( const double & _arg) { this->lat = _arg; return *this; } Type & set__lon( const double & _arg) { this->lon = _arg; return *this; } Type & set__alt( const float & _arg) { this->alt = _arg; return *this; } Type & set__ground_distance( const float & _arg) { this->ground_distance = _arg; return *this; } Type & set__q( const std::array<float, 4> & _arg) { this->q = _arg; return *this; } Type & set__result( const int8_t & _arg) { this->result = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::CameraCapture_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::CameraCapture_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::CameraCapture_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::CameraCapture_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::CameraCapture_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::CameraCapture_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::CameraCapture_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::CameraCapture_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::CameraCapture_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::CameraCapture_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__CameraCapture std::shared_ptr<px4_msgs::msg::CameraCapture_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__CameraCapture std::shared_ptr<px4_msgs::msg::CameraCapture_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const CameraCapture_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->timestamp_utc != other.timestamp_utc) { return false; } if (this->seq != other.seq) { return false; } if (this->lat != other.lat) { return false; } if (this->lon != other.lon) { return false; } if (this->alt != other.alt) { return false; } if (this->ground_distance != other.ground_distance) { return false; } if (this->q != other.q) { return false; } if (this->result != other.result) { return false; } return true; } bool operator!=(const CameraCapture_ & other) const { return !this->operator==(other); } }; // struct CameraCapture_ // alias to use template instance with default allocator using CameraCapture = px4_msgs::msg::CameraCapture_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__CAMERA_CAPTURE__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/gimbal_manager_information.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/GimbalManagerInformation.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GIMBAL_MANAGER_INFORMATION_H_ #define PX4_MSGS__MSG__GIMBAL_MANAGER_INFORMATION_H_ #include "px4_msgs/msg/gimbal_manager_information__struct.h" #include "px4_msgs/msg/gimbal_manager_information__functions.h" #include "px4_msgs/msg/gimbal_manager_information__type_support.h" #endif // PX4_MSGS__MSG__GIMBAL_MANAGER_INFORMATION_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_odometry__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleOdometry.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_odometry__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__VehicleOdometry__init(px4_msgs__msg__VehicleOdometry * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // local_frame // x // y // z // q // q_offset // pose_covariance // velocity_frame // vx // vy // vz // rollspeed // pitchspeed // yawspeed // velocity_covariance return true; } void px4_msgs__msg__VehicleOdometry__fini(px4_msgs__msg__VehicleOdometry * msg) { if (!msg) { return; } // timestamp // timestamp_sample // local_frame // x // y // z // q // q_offset // pose_covariance // velocity_frame // vx // vy // vz // rollspeed // pitchspeed // yawspeed // velocity_covariance } px4_msgs__msg__VehicleOdometry * px4_msgs__msg__VehicleOdometry__create() { px4_msgs__msg__VehicleOdometry * msg = (px4_msgs__msg__VehicleOdometry *)malloc(sizeof(px4_msgs__msg__VehicleOdometry)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleOdometry)); bool success = px4_msgs__msg__VehicleOdometry__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleOdometry__destroy(px4_msgs__msg__VehicleOdometry * msg) { if (msg) { px4_msgs__msg__VehicleOdometry__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleOdometry__Sequence__init(px4_msgs__msg__VehicleOdometry__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleOdometry * data = NULL; if (size) { data = (px4_msgs__msg__VehicleOdometry *)calloc(size, sizeof(px4_msgs__msg__VehicleOdometry)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleOdometry__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleOdometry__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleOdometry__Sequence__fini(px4_msgs__msg__VehicleOdometry__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleOdometry__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleOdometry__Sequence * px4_msgs__msg__VehicleOdometry__Sequence__create(size_t size) { px4_msgs__msg__VehicleOdometry__Sequence * array = (px4_msgs__msg__VehicleOdometry__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleOdometry__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleOdometry__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleOdometry__Sequence__destroy(px4_msgs__msg__VehicleOdometry__Sequence * array) { if (array) { px4_msgs__msg__VehicleOdometry__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/power_monitor__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/PowerMonitor.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/power_monitor__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__PowerMonitor__init(px4_msgs__msg__PowerMonitor * msg) { if (!msg) { return false; } // timestamp // voltage_v // current_a // power_w // rconf // rsv // rbv // rp // rc // rcal // me // al return true; } void px4_msgs__msg__PowerMonitor__fini(px4_msgs__msg__PowerMonitor * msg) { if (!msg) { return; } // timestamp // voltage_v // current_a // power_w // rconf // rsv // rbv // rp // rc // rcal // me // al } px4_msgs__msg__PowerMonitor * px4_msgs__msg__PowerMonitor__create() { px4_msgs__msg__PowerMonitor * msg = (px4_msgs__msg__PowerMonitor *)malloc(sizeof(px4_msgs__msg__PowerMonitor)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__PowerMonitor)); bool success = px4_msgs__msg__PowerMonitor__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__PowerMonitor__destroy(px4_msgs__msg__PowerMonitor * msg) { if (msg) { px4_msgs__msg__PowerMonitor__fini(msg); } free(msg); } bool px4_msgs__msg__PowerMonitor__Sequence__init(px4_msgs__msg__PowerMonitor__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__PowerMonitor * data = NULL; if (size) { data = (px4_msgs__msg__PowerMonitor *)calloc(size, sizeof(px4_msgs__msg__PowerMonitor)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__PowerMonitor__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__PowerMonitor__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__PowerMonitor__Sequence__fini(px4_msgs__msg__PowerMonitor__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__PowerMonitor__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__PowerMonitor__Sequence * px4_msgs__msg__PowerMonitor__Sequence__create(size_t size) { px4_msgs__msg__PowerMonitor__Sequence * array = (px4_msgs__msg__PowerMonitor__Sequence *)malloc(sizeof(px4_msgs__msg__PowerMonitor__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__PowerMonitor__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__PowerMonitor__Sequence__destroy(px4_msgs__msg__PowerMonitor__Sequence * array) { if (array) { px4_msgs__msg__PowerMonitor__Sequence__fini(array); } free(array); } <file_sep>/install/px4_msgs/include/px4_msgs/msg/mavlink_log.h /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/mavlink_log.h<file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command_ack__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/VehicleCommandAck.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_command_ack__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/vehicle_command_ack__struct.h" #include "px4_msgs/msg/vehicle_command_ack__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _VehicleCommandAck__ros_msg_type = px4_msgs__msg__VehicleCommandAck; static bool _VehicleCommandAck__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _VehicleCommandAck__ros_msg_type * ros_message = static_cast<const _VehicleCommandAck__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: command { cdr << ros_message->command; } // Field name: result { cdr << ros_message->result; } // Field name: from_external { cdr << (ros_message->from_external ? true : false); } // Field name: result_param1 { cdr << ros_message->result_param1; } // Field name: result_param2 { cdr << ros_message->result_param2; } // Field name: target_system { cdr << ros_message->target_system; } // Field name: target_component { cdr << ros_message->target_component; } return true; } static bool _VehicleCommandAck__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _VehicleCommandAck__ros_msg_type * ros_message = static_cast<_VehicleCommandAck__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: command { cdr >> ros_message->command; } // Field name: result { cdr >> ros_message->result; } // Field name: from_external { uint8_t tmp; cdr >> tmp; ros_message->from_external = tmp ? true : false; } // Field name: result_param1 { cdr >> ros_message->result_param1; } // Field name: result_param2 { cdr >> ros_message->result_param2; } // Field name: target_system { cdr >> ros_message->target_system; } // Field name: target_component { cdr >> ros_message->target_component; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__VehicleCommandAck( const void * untyped_ros_message, size_t current_alignment) { const _VehicleCommandAck__ros_msg_type * ros_message = static_cast<const _VehicleCommandAck__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name command { size_t item_size = sizeof(ros_message->command); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name result { size_t item_size = sizeof(ros_message->result); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name from_external { size_t item_size = sizeof(ros_message->from_external); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name result_param1 { size_t item_size = sizeof(ros_message->result_param1); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name result_param2 { size_t item_size = sizeof(ros_message->result_param2); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name target_system { size_t item_size = sizeof(ros_message->target_system); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name target_component { size_t item_size = sizeof(ros_message->target_component); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _VehicleCommandAck__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__VehicleCommandAck( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__VehicleCommandAck( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: command { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: result { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: from_external { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: result_param1 { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: result_param2 { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: target_system { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: target_component { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _VehicleCommandAck__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__VehicleCommandAck( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_VehicleCommandAck = { "px4_msgs::msg", "VehicleCommandAck", _VehicleCommandAck__cdr_serialize, _VehicleCommandAck__cdr_deserialize, _VehicleCommandAck__get_serialized_size, _VehicleCommandAck__max_serialized_size }; static rosidl_message_type_support_t _VehicleCommandAck__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_VehicleCommandAck, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, VehicleCommandAck)() { return &_VehicleCommandAck__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/ekf2_timestamps__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/Ekf2Timestamps.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__EKF2_TIMESTAMPS__STRUCT_HPP_ #define PX4_MSGS__MSG__EKF2_TIMESTAMPS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__Ekf2Timestamps __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__Ekf2Timestamps __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct Ekf2Timestamps_ { using Type = Ekf2Timestamps_<ContainerAllocator>; explicit Ekf2Timestamps_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->airspeed_timestamp_rel = 0; this->distance_sensor_timestamp_rel = 0; this->optical_flow_timestamp_rel = 0; this->vehicle_air_data_timestamp_rel = 0; this->vehicle_magnetometer_timestamp_rel = 0; this->visual_odometry_timestamp_rel = 0; } } explicit Ekf2Timestamps_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->airspeed_timestamp_rel = 0; this->distance_sensor_timestamp_rel = 0; this->optical_flow_timestamp_rel = 0; this->vehicle_air_data_timestamp_rel = 0; this->vehicle_magnetometer_timestamp_rel = 0; this->visual_odometry_timestamp_rel = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _airspeed_timestamp_rel_type = int16_t; _airspeed_timestamp_rel_type airspeed_timestamp_rel; using _distance_sensor_timestamp_rel_type = int16_t; _distance_sensor_timestamp_rel_type distance_sensor_timestamp_rel; using _optical_flow_timestamp_rel_type = int16_t; _optical_flow_timestamp_rel_type optical_flow_timestamp_rel; using _vehicle_air_data_timestamp_rel_type = int16_t; _vehicle_air_data_timestamp_rel_type vehicle_air_data_timestamp_rel; using _vehicle_magnetometer_timestamp_rel_type = int16_t; _vehicle_magnetometer_timestamp_rel_type vehicle_magnetometer_timestamp_rel; using _visual_odometry_timestamp_rel_type = int16_t; _visual_odometry_timestamp_rel_type visual_odometry_timestamp_rel; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__airspeed_timestamp_rel( const int16_t & _arg) { this->airspeed_timestamp_rel = _arg; return *this; } Type & set__distance_sensor_timestamp_rel( const int16_t & _arg) { this->distance_sensor_timestamp_rel = _arg; return *this; } Type & set__optical_flow_timestamp_rel( const int16_t & _arg) { this->optical_flow_timestamp_rel = _arg; return *this; } Type & set__vehicle_air_data_timestamp_rel( const int16_t & _arg) { this->vehicle_air_data_timestamp_rel = _arg; return *this; } Type & set__vehicle_magnetometer_timestamp_rel( const int16_t & _arg) { this->vehicle_magnetometer_timestamp_rel = _arg; return *this; } Type & set__visual_odometry_timestamp_rel( const int16_t & _arg) { this->visual_odometry_timestamp_rel = _arg; return *this; } // constant declarations static constexpr int16_t RELATIVE_TIMESTAMP_INVALID = 32767; // pointer types using RawPtr = px4_msgs::msg::Ekf2Timestamps_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::Ekf2Timestamps_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::Ekf2Timestamps_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::Ekf2Timestamps_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::Ekf2Timestamps_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::Ekf2Timestamps_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::Ekf2Timestamps_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::Ekf2Timestamps_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::Ekf2Timestamps_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::Ekf2Timestamps_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__Ekf2Timestamps std::shared_ptr<px4_msgs::msg::Ekf2Timestamps_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__Ekf2Timestamps std::shared_ptr<px4_msgs::msg::Ekf2Timestamps_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const Ekf2Timestamps_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->airspeed_timestamp_rel != other.airspeed_timestamp_rel) { return false; } if (this->distance_sensor_timestamp_rel != other.distance_sensor_timestamp_rel) { return false; } if (this->optical_flow_timestamp_rel != other.optical_flow_timestamp_rel) { return false; } if (this->vehicle_air_data_timestamp_rel != other.vehicle_air_data_timestamp_rel) { return false; } if (this->vehicle_magnetometer_timestamp_rel != other.vehicle_magnetometer_timestamp_rel) { return false; } if (this->visual_odometry_timestamp_rel != other.visual_odometry_timestamp_rel) { return false; } return true; } bool operator!=(const Ekf2Timestamps_ & other) const { return !this->operator==(other); } }; // struct Ekf2Timestamps_ // alias to use template instance with default allocator using Ekf2Timestamps = px4_msgs::msg::Ekf2Timestamps_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr int16_t Ekf2Timestamps_<ContainerAllocator>::RELATIVE_TIMESTAMP_INVALID; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__EKF2_TIMESTAMPS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/transponder_report__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/TransponderReport.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/transponder_report__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void TransponderReport_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::TransponderReport(_init); } void TransponderReport_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::TransponderReport *>(message_memory); typed_message->~TransponderReport(); } size_t size_function__TransponderReport__callsign(const void * untyped_member) { (void)untyped_member; return 9; } const void * get_const_function__TransponderReport__callsign(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint8_t, 9> *>(untyped_member); return &member[index]; } void * get_function__TransponderReport__callsign(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint8_t, 9> *>(untyped_member); return &member[index]; } size_t size_function__TransponderReport__uas_id(const void * untyped_member) { (void)untyped_member; return 18; } const void * get_const_function__TransponderReport__uas_id(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint8_t, 18> *>(untyped_member); return &member[index]; } void * get_function__TransponderReport__uas_id(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint8_t, 18> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember TransponderReport_message_member_array[15] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TransponderReport, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "icao_address", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TransponderReport, icao_address), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "lat", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_DOUBLE, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TransponderReport, lat), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "lon", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_DOUBLE, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TransponderReport, lon), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "altitude_type", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TransponderReport, altitude_type), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "altitude", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TransponderReport, altitude), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "heading", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TransponderReport, heading), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "hor_velocity", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TransponderReport, hor_velocity), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ver_velocity", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TransponderReport, ver_velocity), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "callsign", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 9, // array size false, // is upper bound offsetof(px4_msgs::msg::TransponderReport, callsign), // bytes offset in struct nullptr, // default value size_function__TransponderReport__callsign, // size() function pointer get_const_function__TransponderReport__callsign, // get_const(index) function pointer get_function__TransponderReport__callsign, // get(index) function pointer nullptr // resize(index) function pointer }, { "emitter_type", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TransponderReport, emitter_type), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "tslc", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TransponderReport, tslc), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "flags", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TransponderReport, flags), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "squawk", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TransponderReport, squawk), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "uas_id", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 18, // array size false, // is upper bound offsetof(px4_msgs::msg::TransponderReport, uas_id), // bytes offset in struct nullptr, // default value size_function__TransponderReport__uas_id, // size() function pointer get_const_function__TransponderReport__uas_id, // get_const(index) function pointer get_function__TransponderReport__uas_id, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers TransponderReport_message_members = { "px4_msgs::msg", // message namespace "TransponderReport", // message name 15, // number of fields sizeof(px4_msgs::msg::TransponderReport), TransponderReport_message_member_array, // message members TransponderReport_init_function, // function to initialize message memory (memory has to be allocated) TransponderReport_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t TransponderReport_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &TransponderReport_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::TransponderReport>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::TransponderReport_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, TransponderReport)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::TransponderReport_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_gyro__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/SensorGyro.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_GYRO__STRUCT_H_ #define PX4_MSGS__MSG__SENSOR_GYRO__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'ORB_QUEUE_LENGTH'. enum { px4_msgs__msg__SensorGyro__ORB_QUEUE_LENGTH = 8 }; // Struct defined in msg/SensorGyro in the package px4_msgs. typedef struct px4_msgs__msg__SensorGyro { uint64_t timestamp; uint64_t timestamp_sample; uint32_t device_id; float x; float y; float z; float temperature; uint32_t error_count; uint8_t samples; } px4_msgs__msg__SensorGyro; // Struct for a sequence of px4_msgs__msg__SensorGyro. typedef struct px4_msgs__msg__SensorGyro__Sequence { px4_msgs__msg__SensorGyro * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__SensorGyro__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__SENSOR_GYRO__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/power_button_state.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/PowerButtonState.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__POWER_BUTTON_STATE_H_ #define PX4_MSGS__MSG__POWER_BUTTON_STATE_H_ #include "px4_msgs/msg/power_button_state__struct.h" #include "px4_msgs/msg/power_button_state__functions.h" #include "px4_msgs/msg/power_button_state__type_support.h" #endif // PX4_MSGS__MSG__POWER_BUTTON_STATE_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/gimbal_manager_status__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/GimbalManagerStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/gimbal_manager_status__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/gimbal_manager_status__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::GimbalManagerStatus & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: flags cdr << ros_message.flags; // Member: gimbal_device_id cdr << ros_message.gimbal_device_id; // Member: primary_control_sysid cdr << ros_message.primary_control_sysid; // Member: primary_control_compid cdr << ros_message.primary_control_compid; // Member: secondary_control_sysid cdr << ros_message.secondary_control_sysid; // Member: secondary_control_compid cdr << ros_message.secondary_control_compid; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::GimbalManagerStatus & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: flags cdr >> ros_message.flags; // Member: gimbal_device_id cdr >> ros_message.gimbal_device_id; // Member: primary_control_sysid cdr >> ros_message.primary_control_sysid; // Member: primary_control_compid cdr >> ros_message.primary_control_compid; // Member: secondary_control_sysid cdr >> ros_message.secondary_control_sysid; // Member: secondary_control_compid cdr >> ros_message.secondary_control_compid; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::GimbalManagerStatus & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: flags { size_t item_size = sizeof(ros_message.flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: gimbal_device_id { size_t item_size = sizeof(ros_message.gimbal_device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: primary_control_sysid { size_t item_size = sizeof(ros_message.primary_control_sysid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: primary_control_compid { size_t item_size = sizeof(ros_message.primary_control_compid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: secondary_control_sysid { size_t item_size = sizeof(ros_message.secondary_control_sysid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: secondary_control_compid { size_t item_size = sizeof(ros_message.secondary_control_compid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_GimbalManagerStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: gimbal_device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: primary_control_sysid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: primary_control_compid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: secondary_control_sysid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: secondary_control_compid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _GimbalManagerStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::GimbalManagerStatus *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _GimbalManagerStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::GimbalManagerStatus *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _GimbalManagerStatus__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::GimbalManagerStatus *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _GimbalManagerStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_GimbalManagerStatus(full_bounded, 0); } static message_type_support_callbacks_t _GimbalManagerStatus__callbacks = { "px4_msgs::msg", "GimbalManagerStatus", _GimbalManagerStatus__cdr_serialize, _GimbalManagerStatus__cdr_deserialize, _GimbalManagerStatus__get_serialized_size, _GimbalManagerStatus__max_serialized_size }; static rosidl_message_type_support_t _GimbalManagerStatus__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_GimbalManagerStatus__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::GimbalManagerStatus>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_GimbalManagerStatus__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, GimbalManagerStatus)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_GimbalManagerStatus__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_command__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleCommand.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_COMMAND__STRUCT_H_ #define PX4_MSGS__MSG__VEHICLE_COMMAND__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'VEHICLE_CMD_CUSTOM_0'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_CUSTOM_0 = 0 }; /// Constant 'VEHICLE_CMD_CUSTOM_1'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_CUSTOM_1 = 1 }; /// Constant 'VEHICLE_CMD_CUSTOM_2'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_CUSTOM_2 = 2 }; /// Constant 'VEHICLE_CMD_NAV_WAYPOINT'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_NAV_WAYPOINT = 16 }; /// Constant 'VEHICLE_CMD_NAV_LOITER_UNLIM'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_NAV_LOITER_UNLIM = 17 }; /// Constant 'VEHICLE_CMD_NAV_LOITER_TURNS'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_NAV_LOITER_TURNS = 18 }; /// Constant 'VEHICLE_CMD_NAV_LOITER_TIME'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_NAV_LOITER_TIME = 19 }; /// Constant 'VEHICLE_CMD_NAV_RETURN_TO_LAUNCH'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_NAV_RETURN_TO_LAUNCH = 20 }; /// Constant 'VEHICLE_CMD_NAV_LAND'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_NAV_LAND = 21 }; /// Constant 'VEHICLE_CMD_NAV_TAKEOFF'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_NAV_TAKEOFF = 22 }; /// Constant 'VEHICLE_CMD_NAV_PRECLAND'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_NAV_PRECLAND = 23 }; /// Constant 'VEHICLE_CMD_DO_ORBIT'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_ORBIT = 34 }; /// Constant 'VEHICLE_CMD_NAV_ROI'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_NAV_ROI = 80 }; /// Constant 'VEHICLE_CMD_NAV_PATHPLANNING'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_NAV_PATHPLANNING = 81 }; /// Constant 'VEHICLE_CMD_NAV_VTOL_TAKEOFF'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_NAV_VTOL_TAKEOFF = 84 }; /// Constant 'VEHICLE_CMD_NAV_VTOL_LAND'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_NAV_VTOL_LAND = 85 }; /// Constant 'VEHICLE_CMD_NAV_GUIDED_LIMITS'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_NAV_GUIDED_LIMITS = 90 }; /// Constant 'VEHICLE_CMD_NAV_GUIDED_MASTER'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_NAV_GUIDED_MASTER = 91 }; /// Constant 'VEHICLE_CMD_NAV_DELAY'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_NAV_DELAY = 93 }; /// Constant 'VEHICLE_CMD_NAV_LAST'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_NAV_LAST = 95 }; /// Constant 'VEHICLE_CMD_CONDITION_DELAY'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_CONDITION_DELAY = 112 }; /// Constant 'VEHICLE_CMD_CONDITION_CHANGE_ALT'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_CONDITION_CHANGE_ALT = 113 }; /// Constant 'VEHICLE_CMD_CONDITION_DISTANCE'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_CONDITION_DISTANCE = 114 }; /// Constant 'VEHICLE_CMD_CONDITION_YAW'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_CONDITION_YAW = 115 }; /// Constant 'VEHICLE_CMD_CONDITION_LAST'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_CONDITION_LAST = 159 }; /// Constant 'VEHICLE_CMD_CONDITION_GATE'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_CONDITION_GATE = 4501 }; /// Constant 'VEHICLE_CMD_DO_SET_MODE'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_SET_MODE = 176 }; /// Constant 'VEHICLE_CMD_DO_JUMP'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_JUMP = 177 }; /// Constant 'VEHICLE_CMD_DO_CHANGE_SPEED'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_CHANGE_SPEED = 178 }; /// Constant 'VEHICLE_CMD_DO_SET_HOME'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_SET_HOME = 179 }; /// Constant 'VEHICLE_CMD_DO_SET_PARAMETER'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_SET_PARAMETER = 180 }; /// Constant 'VEHICLE_CMD_DO_SET_RELAY'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_SET_RELAY = 181 }; /// Constant 'VEHICLE_CMD_DO_REPEAT_RELAY'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_REPEAT_RELAY = 182 }; /// Constant 'VEHICLE_CMD_DO_SET_SERVO'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_SET_SERVO = 183 }; /// Constant 'VEHICLE_CMD_DO_REPEAT_SERVO'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_REPEAT_SERVO = 184 }; /// Constant 'VEHICLE_CMD_DO_FLIGHTTERMINATION'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_FLIGHTTERMINATION = 185 }; /// Constant 'VEHICLE_CMD_DO_LAND_START'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_LAND_START = 189 }; /// Constant 'VEHICLE_CMD_DO_GO_AROUND'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_GO_AROUND = 191 }; /// Constant 'VEHICLE_CMD_DO_REPOSITION'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_REPOSITION = 192 }; /// Constant 'VEHICLE_CMD_DO_PAUSE_CONTINUE'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_PAUSE_CONTINUE = 193 }; /// Constant 'VEHICLE_CMD_DO_SET_ROI_LOCATION'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_SET_ROI_LOCATION = 195 }; /// Constant 'VEHICLE_CMD_DO_SET_ROI_WPNEXT_OFFSET'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_SET_ROI_WPNEXT_OFFSET = 196 }; /// Constant 'VEHICLE_CMD_DO_SET_ROI_NONE'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_SET_ROI_NONE = 197 }; /// Constant 'VEHICLE_CMD_DO_CONTROL_VIDEO'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_CONTROL_VIDEO = 200 }; /// Constant 'VEHICLE_CMD_DO_SET_ROI'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_SET_ROI = 201 }; /// Constant 'VEHICLE_CMD_DO_DIGICAM_CONTROL'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_DIGICAM_CONTROL = 203 }; /// Constant 'VEHICLE_CMD_DO_MOUNT_CONFIGURE'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_MOUNT_CONFIGURE = 204 }; /// Constant 'VEHICLE_CMD_DO_MOUNT_CONTROL'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_MOUNT_CONTROL = 205 }; /// Constant 'VEHICLE_CMD_DO_SET_CAM_TRIGG_DIST'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_SET_CAM_TRIGG_DIST = 206 }; /// Constant 'VEHICLE_CMD_DO_FENCE_ENABLE'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_FENCE_ENABLE = 207 }; /// Constant 'VEHICLE_CMD_DO_PARACHUTE'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_PARACHUTE = 208 }; /// Constant 'VEHICLE_CMD_DO_MOTOR_TEST'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_MOTOR_TEST = 209 }; /// Constant 'VEHICLE_CMD_DO_INVERTED_FLIGHT'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_INVERTED_FLIGHT = 210 }; /// Constant 'VEHICLE_CMD_DO_SET_CAM_TRIGG_INTERVAL'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_SET_CAM_TRIGG_INTERVAL = 214 }; /// Constant 'VEHICLE_CMD_DO_MOUNT_CONTROL_QUAT'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_MOUNT_CONTROL_QUAT = 220 }; /// Constant 'VEHICLE_CMD_DO_GUIDED_MASTER'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_GUIDED_MASTER = 221 }; /// Constant 'VEHICLE_CMD_DO_GUIDED_LIMITS'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_GUIDED_LIMITS = 222 }; /// Constant 'VEHICLE_CMD_DO_LAST'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_LAST = 240 }; /// Constant 'VEHICLE_CMD_PREFLIGHT_CALIBRATION'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_PREFLIGHT_CALIBRATION = 241 }; /// Constant 'PREFLIGHT_CALIBRATION_TEMPERATURE_CALIBRATION'. enum { px4_msgs__msg__VehicleCommand__PREFLIGHT_CALIBRATION_TEMPERATURE_CALIBRATION = 3 }; /// Constant 'VEHICLE_CMD_PREFLIGHT_SET_SENSOR_OFFSETS'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_PREFLIGHT_SET_SENSOR_OFFSETS = 242 }; /// Constant 'VEHICLE_CMD_PREFLIGHT_UAVCAN'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_PREFLIGHT_UAVCAN = 243 }; /// Constant 'VEHICLE_CMD_PREFLIGHT_STORAGE'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_PREFLIGHT_STORAGE = 245 }; /// Constant 'VEHICLE_CMD_PREFLIGHT_REBOOT_SHUTDOWN'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_PREFLIGHT_REBOOT_SHUTDOWN = 246 }; /// Constant 'VEHICLE_CMD_OBLIQUE_SURVEY'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_OBLIQUE_SURVEY = 260 }; /// Constant 'VEHICLE_CMD_GIMBAL_DEVICE_INFORMATION'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_GIMBAL_DEVICE_INFORMATION = 283 }; /// Constant 'VEHICLE_CMD_MISSION_START'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_MISSION_START = 300 }; /// Constant 'VEHICLE_CMD_COMPONENT_ARM_DISARM'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_COMPONENT_ARM_DISARM = 400 }; /// Constant 'VEHICLE_CMD_INJECT_FAILURE'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_INJECT_FAILURE = 420 }; /// Constant 'VEHICLE_CMD_START_RX_PAIR'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_START_RX_PAIR = 500 }; /// Constant 'VEHICLE_CMD_REQUEST_MESSAGE'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_REQUEST_MESSAGE = 512 }; /// Constant 'VEHICLE_CMD_SET_CAMERA_MODE'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_SET_CAMERA_MODE = 530 }; /// Constant 'VEHICLE_CMD_SET_CAMERA_ZOOM'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_SET_CAMERA_ZOOM = 531 }; /// Constant 'VEHICLE_CMD_SET_CAMERA_FOCUS'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_SET_CAMERA_FOCUS = 532 }; /// Constant 'VEHICLE_CMD_DO_GIMBAL_MANAGER_PITCHYAW'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_GIMBAL_MANAGER_PITCHYAW = 1000 }; /// Constant 'VEHICLE_CMD_DO_GIMBAL_MANAGER_CONFIGURE'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_GIMBAL_MANAGER_CONFIGURE = 1001 }; /// Constant 'VEHICLE_CMD_DO_TRIGGER_CONTROL'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_TRIGGER_CONTROL = 2003 }; /// Constant 'VEHICLE_CMD_LOGGING_START'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_LOGGING_START = 2510 }; /// Constant 'VEHICLE_CMD_LOGGING_STOP'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_LOGGING_STOP = 2511 }; /// Constant 'VEHICLE_CMD_CONTROL_HIGH_LATENCY'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_CONTROL_HIGH_LATENCY = 2600 }; /// Constant 'VEHICLE_CMD_DO_VTOL_TRANSITION'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_DO_VTOL_TRANSITION = 3000 }; /// Constant 'VEHICLE_CMD_ARM_AUTHORIZATION_REQUEST'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_ARM_AUTHORIZATION_REQUEST = 3001 }; /// Constant 'VEHICLE_CMD_PAYLOAD_PREPARE_DEPLOY'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_PAYLOAD_PREPARE_DEPLOY = 30001 }; /// Constant 'VEHICLE_CMD_PAYLOAD_CONTROL_DEPLOY'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_PAYLOAD_CONTROL_DEPLOY = 30002 }; /// Constant 'VEHICLE_CMD_FIXED_MAG_CAL_YAW'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_FIXED_MAG_CAL_YAW = 42006 }; /// Constant 'VEHICLE_CMD_PX4_INTERNAL_START'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_PX4_INTERNAL_START = 65537ul }; /// Constant 'VEHICLE_CMD_SET_GPS_GLOBAL_ORIGIN'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_SET_GPS_GLOBAL_ORIGIN = 100000ul }; /// Constant 'VEHICLE_CMD_RESULT_ACCEPTED'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_RESULT_ACCEPTED = 0 }; /// Constant 'VEHICLE_CMD_RESULT_TEMPORARILY_REJECTED'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_RESULT_TEMPORARILY_REJECTED = 1 }; /// Constant 'VEHICLE_CMD_RESULT_DENIED'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_RESULT_DENIED = 2 }; /// Constant 'VEHICLE_CMD_RESULT_UNSUPPORTED'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_RESULT_UNSUPPORTED = 3 }; /// Constant 'VEHICLE_CMD_RESULT_FAILED'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_RESULT_FAILED = 4 }; /// Constant 'VEHICLE_CMD_RESULT_IN_PROGRESS'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_RESULT_IN_PROGRESS = 5 }; /// Constant 'VEHICLE_CMD_RESULT_ENUM_END'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CMD_RESULT_ENUM_END = 6 }; /// Constant 'VEHICLE_MOUNT_MODE_RETRACT'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_MOUNT_MODE_RETRACT = 0 }; /// Constant 'VEHICLE_MOUNT_MODE_NEUTRAL'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_MOUNT_MODE_NEUTRAL = 1 }; /// Constant 'VEHICLE_MOUNT_MODE_MAVLINK_TARGETING'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_MOUNT_MODE_MAVLINK_TARGETING = 2 }; /// Constant 'VEHICLE_MOUNT_MODE_RC_TARGETING'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_MOUNT_MODE_RC_TARGETING = 3 }; /// Constant 'VEHICLE_MOUNT_MODE_GPS_POINT'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_MOUNT_MODE_GPS_POINT = 4 }; /// Constant 'VEHICLE_MOUNT_MODE_ENUM_END'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_MOUNT_MODE_ENUM_END = 5 }; /// Constant 'VEHICLE_ROI_NONE'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_ROI_NONE = 0 }; /// Constant 'VEHICLE_ROI_WPNEXT'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_ROI_WPNEXT = 1 }; /// Constant 'VEHICLE_ROI_WPINDEX'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_ROI_WPINDEX = 2 }; /// Constant 'VEHICLE_ROI_LOCATION'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_ROI_LOCATION = 3 }; /// Constant 'VEHICLE_ROI_TARGET'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_ROI_TARGET = 4 }; /// Constant 'VEHICLE_ROI_ENUM_END'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_ROI_ENUM_END = 5 }; /// Constant 'VEHICLE_CAMERA_ZOOM_TYPE_STEP'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CAMERA_ZOOM_TYPE_STEP = 0 }; /// Constant 'VEHICLE_CAMERA_ZOOM_TYPE_CONTINUOUS'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CAMERA_ZOOM_TYPE_CONTINUOUS = 1 }; /// Constant 'VEHICLE_CAMERA_ZOOM_TYPE_RANGE'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CAMERA_ZOOM_TYPE_RANGE = 2 }; /// Constant 'VEHICLE_CAMERA_ZOOM_TYPE_FOCAL_LENGTH'. enum { px4_msgs__msg__VehicleCommand__VEHICLE_CAMERA_ZOOM_TYPE_FOCAL_LENGTH = 3 }; /// Constant 'FAILURE_UNIT_SENSOR_GYRO'. enum { px4_msgs__msg__VehicleCommand__FAILURE_UNIT_SENSOR_GYRO = 0 }; /// Constant 'FAILURE_UNIT_SENSOR_ACCEL'. enum { px4_msgs__msg__VehicleCommand__FAILURE_UNIT_SENSOR_ACCEL = 1 }; /// Constant 'FAILURE_UNIT_SENSOR_MAG'. enum { px4_msgs__msg__VehicleCommand__FAILURE_UNIT_SENSOR_MAG = 2 }; /// Constant 'FAILURE_UNIT_SENSOR_BARO'. enum { px4_msgs__msg__VehicleCommand__FAILURE_UNIT_SENSOR_BARO = 3 }; /// Constant 'FAILURE_UNIT_SENSOR_GPS'. enum { px4_msgs__msg__VehicleCommand__FAILURE_UNIT_SENSOR_GPS = 4 }; /// Constant 'FAILURE_UNIT_SENSOR_OPTICAL_FLOW'. enum { px4_msgs__msg__VehicleCommand__FAILURE_UNIT_SENSOR_OPTICAL_FLOW = 5 }; /// Constant 'FAILURE_UNIT_SENSOR_VIO'. enum { px4_msgs__msg__VehicleCommand__FAILURE_UNIT_SENSOR_VIO = 6 }; /// Constant 'FAILURE_UNIT_SENSOR_DISTANCE_SENSOR'. enum { px4_msgs__msg__VehicleCommand__FAILURE_UNIT_SENSOR_DISTANCE_SENSOR = 7 }; /// Constant 'FAILURE_UNIT_SENSOR_AIRSPEED'. enum { px4_msgs__msg__VehicleCommand__FAILURE_UNIT_SENSOR_AIRSPEED = 8 }; /// Constant 'FAILURE_UNIT_SYSTEM_BATTERY'. enum { px4_msgs__msg__VehicleCommand__FAILURE_UNIT_SYSTEM_BATTERY = 100 }; /// Constant 'FAILURE_UNIT_SYSTEM_MOTOR'. enum { px4_msgs__msg__VehicleCommand__FAILURE_UNIT_SYSTEM_MOTOR = 101 }; /// Constant 'FAILURE_UNIT_SYSTEM_SERVO'. enum { px4_msgs__msg__VehicleCommand__FAILURE_UNIT_SYSTEM_SERVO = 102 }; /// Constant 'FAILURE_UNIT_SYSTEM_AVOIDANCE'. enum { px4_msgs__msg__VehicleCommand__FAILURE_UNIT_SYSTEM_AVOIDANCE = 103 }; /// Constant 'FAILURE_UNIT_SYSTEM_RC_SIGNAL'. enum { px4_msgs__msg__VehicleCommand__FAILURE_UNIT_SYSTEM_RC_SIGNAL = 104 }; /// Constant 'FAILURE_UNIT_SYSTEM_MAVLINK_SIGNAL'. enum { px4_msgs__msg__VehicleCommand__FAILURE_UNIT_SYSTEM_MAVLINK_SIGNAL = 105 }; /// Constant 'FAILURE_TYPE_OK'. enum { px4_msgs__msg__VehicleCommand__FAILURE_TYPE_OK = 0 }; /// Constant 'FAILURE_TYPE_OFF'. enum { px4_msgs__msg__VehicleCommand__FAILURE_TYPE_OFF = 1 }; /// Constant 'FAILURE_TYPE_STUCK'. enum { px4_msgs__msg__VehicleCommand__FAILURE_TYPE_STUCK = 2 }; /// Constant 'FAILURE_TYPE_GARBAGE'. enum { px4_msgs__msg__VehicleCommand__FAILURE_TYPE_GARBAGE = 3 }; /// Constant 'FAILURE_TYPE_WRONG'. enum { px4_msgs__msg__VehicleCommand__FAILURE_TYPE_WRONG = 4 }; /// Constant 'FAILURE_TYPE_SLOW'. enum { px4_msgs__msg__VehicleCommand__FAILURE_TYPE_SLOW = 5 }; /// Constant 'FAILURE_TYPE_DELAYED'. enum { px4_msgs__msg__VehicleCommand__FAILURE_TYPE_DELAYED = 6 }; /// Constant 'FAILURE_TYPE_INTERMITTENT'. enum { px4_msgs__msg__VehicleCommand__FAILURE_TYPE_INTERMITTENT = 7 }; /// Constant 'ORB_QUEUE_LENGTH'. enum { px4_msgs__msg__VehicleCommand__ORB_QUEUE_LENGTH = 8 }; // Struct defined in msg/VehicleCommand in the package px4_msgs. typedef struct px4_msgs__msg__VehicleCommand { uint64_t timestamp; float param1; float param2; float param3; float param4; double param5; double param6; float param7; uint32_t command; uint8_t target_system; uint8_t target_component; uint8_t source_system; uint8_t source_component; uint8_t confirmation; bool from_external; } px4_msgs__msg__VehicleCommand; // Struct for a sequence of px4_msgs__msg__VehicleCommand. typedef struct px4_msgs__msg__VehicleCommand__Sequence { px4_msgs__msg__VehicleCommand * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__VehicleCommand__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_COMMAND__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_attitude__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/EstimatorAttitude.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/estimator_attitude__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/estimator_attitude__functions.h" #include "px4_msgs/msg/estimator_attitude__struct.h" #ifdef __cplusplus extern "C" { #endif void EstimatorAttitude__rosidl_typesupport_introspection_c__EstimatorAttitude_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__EstimatorAttitude__init(message_memory); } void EstimatorAttitude__rosidl_typesupport_introspection_c__EstimatorAttitude_fini_function(void * message_memory) { px4_msgs__msg__EstimatorAttitude__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember EstimatorAttitude__rosidl_typesupport_introspection_c__EstimatorAttitude_message_member_array[5] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorAttitude, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorAttitude, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "q", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorAttitude, q), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "delta_q_reset", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorAttitude, delta_q_reset), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "quat_reset_counter", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorAttitude, quat_reset_counter), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers EstimatorAttitude__rosidl_typesupport_introspection_c__EstimatorAttitude_message_members = { "px4_msgs__msg", // message namespace "EstimatorAttitude", // message name 5, // number of fields sizeof(px4_msgs__msg__EstimatorAttitude), EstimatorAttitude__rosidl_typesupport_introspection_c__EstimatorAttitude_message_member_array, // message members EstimatorAttitude__rosidl_typesupport_introspection_c__EstimatorAttitude_init_function, // function to initialize message memory (memory has to be allocated) EstimatorAttitude__rosidl_typesupport_introspection_c__EstimatorAttitude_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t EstimatorAttitude__rosidl_typesupport_introspection_c__EstimatorAttitude_message_type_support_handle = { 0, &EstimatorAttitude__rosidl_typesupport_introspection_c__EstimatorAttitude_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, EstimatorAttitude)() { if (!EstimatorAttitude__rosidl_typesupport_introspection_c__EstimatorAttitude_message_type_support_handle.typesupport_identifier) { EstimatorAttitude__rosidl_typesupport_introspection_c__EstimatorAttitude_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &EstimatorAttitude__rosidl_typesupport_introspection_c__EstimatorAttitude_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/camera_trigger_secondary__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/CameraTriggerSecondary.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/camera_trigger_secondary__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__CameraTriggerSecondary__init(px4_msgs__msg__CameraTriggerSecondary * msg) { if (!msg) { return false; } // timestamp // timestamp_utc // seq // feedback return true; } void px4_msgs__msg__CameraTriggerSecondary__fini(px4_msgs__msg__CameraTriggerSecondary * msg) { if (!msg) { return; } // timestamp // timestamp_utc // seq // feedback } px4_msgs__msg__CameraTriggerSecondary * px4_msgs__msg__CameraTriggerSecondary__create() { px4_msgs__msg__CameraTriggerSecondary * msg = (px4_msgs__msg__CameraTriggerSecondary *)malloc(sizeof(px4_msgs__msg__CameraTriggerSecondary)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__CameraTriggerSecondary)); bool success = px4_msgs__msg__CameraTriggerSecondary__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__CameraTriggerSecondary__destroy(px4_msgs__msg__CameraTriggerSecondary * msg) { if (msg) { px4_msgs__msg__CameraTriggerSecondary__fini(msg); } free(msg); } bool px4_msgs__msg__CameraTriggerSecondary__Sequence__init(px4_msgs__msg__CameraTriggerSecondary__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__CameraTriggerSecondary * data = NULL; if (size) { data = (px4_msgs__msg__CameraTriggerSecondary *)calloc(size, sizeof(px4_msgs__msg__CameraTriggerSecondary)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__CameraTriggerSecondary__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__CameraTriggerSecondary__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__CameraTriggerSecondary__Sequence__fini(px4_msgs__msg__CameraTriggerSecondary__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__CameraTriggerSecondary__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__CameraTriggerSecondary__Sequence * px4_msgs__msg__CameraTriggerSecondary__Sequence__create(size_t size) { px4_msgs__msg__CameraTriggerSecondary__Sequence * array = (px4_msgs__msg__CameraTriggerSecondary__Sequence *)malloc(sizeof(px4_msgs__msg__CameraTriggerSecondary__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__CameraTriggerSecondary__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__CameraTriggerSecondary__Sequence__destroy(px4_msgs__msg__CameraTriggerSecondary__Sequence * array) { if (array) { px4_msgs__msg__CameraTriggerSecondary__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_gyro_fifo__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/SensorGyroFifo.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/sensor_gyro_fifo__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/sensor_gyro_fifo__functions.h" #include "px4_msgs/msg/sensor_gyro_fifo__struct.h" #ifdef __cplusplus extern "C" { #endif void SensorGyroFifo__rosidl_typesupport_introspection_c__SensorGyroFifo_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__SensorGyroFifo__init(message_memory); } void SensorGyroFifo__rosidl_typesupport_introspection_c__SensorGyroFifo_fini_function(void * message_memory) { px4_msgs__msg__SensorGyroFifo__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember SensorGyroFifo__rosidl_typesupport_introspection_c__SensorGyroFifo_message_member_array[9] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGyroFifo, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGyroFifo, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "device_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGyroFifo, device_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "dt", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGyroFifo, dt), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "scale", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGyroFifo, scale), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "samples", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGyroFifo, samples), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "x", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT16, // type 0, // upper bound of string NULL, // members of sub message true, // is array 32, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGyroFifo, x), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "y", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT16, // type 0, // upper bound of string NULL, // members of sub message true, // is array 32, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGyroFifo, y), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "z", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT16, // type 0, // upper bound of string NULL, // members of sub message true, // is array 32, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorGyroFifo, z), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers SensorGyroFifo__rosidl_typesupport_introspection_c__SensorGyroFifo_message_members = { "px4_msgs__msg", // message namespace "SensorGyroFifo", // message name 9, // number of fields sizeof(px4_msgs__msg__SensorGyroFifo), SensorGyroFifo__rosidl_typesupport_introspection_c__SensorGyroFifo_message_member_array, // message members SensorGyroFifo__rosidl_typesupport_introspection_c__SensorGyroFifo_init_function, // function to initialize message memory (memory has to be allocated) SensorGyroFifo__rosidl_typesupport_introspection_c__SensorGyroFifo_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t SensorGyroFifo__rosidl_typesupport_introspection_c__SensorGyroFifo_message_type_support_handle = { 0, &SensorGyroFifo__rosidl_typesupport_introspection_c__SensorGyroFifo_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, SensorGyroFifo)() { if (!SensorGyroFifo__rosidl_typesupport_introspection_c__SensorGyroFifo_message_type_support_handle.typesupport_identifier) { SensorGyroFifo__rosidl_typesupport_introspection_c__SensorGyroFifo_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &SensorGyroFifo__rosidl_typesupport_introspection_c__SensorGyroFifo_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/gimbal_device_information.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GIMBAL_DEVICE_INFORMATION_HPP_ #define PX4_MSGS__MSG__GIMBAL_DEVICE_INFORMATION_HPP_ #include "px4_msgs/msg/gimbal_device_information__struct.hpp" #include "px4_msgs/msg/gimbal_device_information__traits.hpp" #endif // PX4_MSGS__MSG__GIMBAL_DEVICE_INFORMATION_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/ekf_gps_drift.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/EkfGpsDrift.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__EKF_GPS_DRIFT_H_ #define PX4_MSGS__MSG__EKF_GPS_DRIFT_H_ #include "px4_msgs/msg/ekf_gps_drift__struct.h" #include "px4_msgs/msg/ekf_gps_drift__functions.h" #include "px4_msgs/msg/ekf_gps_drift__type_support.h" #endif // PX4_MSGS__MSG__EKF_GPS_DRIFT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_land_detected.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_LAND_DETECTED_HPP_ #define PX4_MSGS__MSG__VEHICLE_LAND_DETECTED_HPP_ #include "px4_msgs/msg/vehicle_land_detected__struct.hpp" #include "px4_msgs/msg/vehicle_land_detected__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_LAND_DETECTED_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_generator_status.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/GeneratorStatus.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_GeneratorStatus(type): """Metaclass of message 'GeneratorStatus'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'STATUS_FLAG_OFF': 1, 'STATUS_FLAG_READY': 2, 'STATUS_FLAG_GENERATING': 4, 'STATUS_FLAG_CHARGING': 8, 'STATUS_FLAG_REDUCED_POWER': 16, 'STATUS_FLAG_MAXPOWER': 32, 'STATUS_FLAG_OVERTEMP_WARNING': 64, 'STATUS_FLAG_OVERTEMP_FAULT': 128, 'STATUS_FLAG_ELECTRONICS_OVERTEMP_WARNING': 256, 'STATUS_FLAG_ELECTRONICS_OVERTEMP_FAULT': 512, 'STATUS_FLAG_ELECTRONICS_FAULT': 1024, 'STATUS_FLAG_POWERSOURCE_FAULT': 2048, 'STATUS_FLAG_COMMUNICATION_WARNING': 4096, 'STATUS_FLAG_COOLING_WARNING': 8192, 'STATUS_FLAG_POWER_RAIL_FAULT': 16384, 'STATUS_FLAG_OVERCURRENT_FAULT': 32768, 'STATUS_FLAG_BATTERY_OVERCHARGE_CURRENT_FAULT': 65536, 'STATUS_FLAG_OVERVOLTAGE_FAULT': 131072, 'STATUS_FLAG_BATTERY_UNDERVOLT_FAULT': 262144, 'STATUS_FLAG_START_INHIBITED': 524288, 'STATUS_FLAG_MAINTENANCE_REQUIRED': 1048576, 'STATUS_FLAG_WARMING_UP': 2097152, 'STATUS_FLAG_IDLE': 4194304, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.GeneratorStatus') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__generator_status cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__generator_status cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__generator_status cls._TYPE_SUPPORT = module.type_support_msg__msg__generator_status cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__generator_status @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'STATUS_FLAG_OFF': cls.__constants['STATUS_FLAG_OFF'], 'STATUS_FLAG_READY': cls.__constants['STATUS_FLAG_READY'], 'STATUS_FLAG_GENERATING': cls.__constants['STATUS_FLAG_GENERATING'], 'STATUS_FLAG_CHARGING': cls.__constants['STATUS_FLAG_CHARGING'], 'STATUS_FLAG_REDUCED_POWER': cls.__constants['STATUS_FLAG_REDUCED_POWER'], 'STATUS_FLAG_MAXPOWER': cls.__constants['STATUS_FLAG_MAXPOWER'], 'STATUS_FLAG_OVERTEMP_WARNING': cls.__constants['STATUS_FLAG_OVERTEMP_WARNING'], 'STATUS_FLAG_OVERTEMP_FAULT': cls.__constants['STATUS_FLAG_OVERTEMP_FAULT'], 'STATUS_FLAG_ELECTRONICS_OVERTEMP_WARNING': cls.__constants['STATUS_FLAG_ELECTRONICS_OVERTEMP_WARNING'], 'STATUS_FLAG_ELECTRONICS_OVERTEMP_FAULT': cls.__constants['STATUS_FLAG_ELECTRONICS_OVERTEMP_FAULT'], 'STATUS_FLAG_ELECTRONICS_FAULT': cls.__constants['STATUS_FLAG_ELECTRONICS_FAULT'], 'STATUS_FLAG_POWERSOURCE_FAULT': cls.__constants['STATUS_FLAG_POWERSOURCE_FAULT'], 'STATUS_FLAG_COMMUNICATION_WARNING': cls.__constants['STATUS_FLAG_COMMUNICATION_WARNING'], 'STATUS_FLAG_COOLING_WARNING': cls.__constants['STATUS_FLAG_COOLING_WARNING'], 'STATUS_FLAG_POWER_RAIL_FAULT': cls.__constants['STATUS_FLAG_POWER_RAIL_FAULT'], 'STATUS_FLAG_OVERCURRENT_FAULT': cls.__constants['STATUS_FLAG_OVERCURRENT_FAULT'], 'STATUS_FLAG_BATTERY_OVERCHARGE_CURRENT_FAULT': cls.__constants['STATUS_FLAG_BATTERY_OVERCHARGE_CURRENT_FAULT'], 'STATUS_FLAG_OVERVOLTAGE_FAULT': cls.__constants['STATUS_FLAG_OVERVOLTAGE_FAULT'], 'STATUS_FLAG_BATTERY_UNDERVOLT_FAULT': cls.__constants['STATUS_FLAG_BATTERY_UNDERVOLT_FAULT'], 'STATUS_FLAG_START_INHIBITED': cls.__constants['STATUS_FLAG_START_INHIBITED'], 'STATUS_FLAG_MAINTENANCE_REQUIRED': cls.__constants['STATUS_FLAG_MAINTENANCE_REQUIRED'], 'STATUS_FLAG_WARMING_UP': cls.__constants['STATUS_FLAG_WARMING_UP'], 'STATUS_FLAG_IDLE': cls.__constants['STATUS_FLAG_IDLE'], } @property def STATUS_FLAG_OFF(self): """Message constant 'STATUS_FLAG_OFF'.""" return Metaclass_GeneratorStatus.__constants['STATUS_FLAG_OFF'] @property def STATUS_FLAG_READY(self): """Message constant 'STATUS_FLAG_READY'.""" return Metaclass_GeneratorStatus.__constants['STATUS_FLAG_READY'] @property def STATUS_FLAG_GENERATING(self): """Message constant 'STATUS_FLAG_GENERATING'.""" return Metaclass_GeneratorStatus.__constants['STATUS_FLAG_GENERATING'] @property def STATUS_FLAG_CHARGING(self): """Message constant 'STATUS_FLAG_CHARGING'.""" return Metaclass_GeneratorStatus.__constants['STATUS_FLAG_CHARGING'] @property def STATUS_FLAG_REDUCED_POWER(self): """Message constant 'STATUS_FLAG_REDUCED_POWER'.""" return Metaclass_GeneratorStatus.__constants['STATUS_FLAG_REDUCED_POWER'] @property def STATUS_FLAG_MAXPOWER(self): """Message constant 'STATUS_FLAG_MAXPOWER'.""" return Metaclass_GeneratorStatus.__constants['STATUS_FLAG_MAXPOWER'] @property def STATUS_FLAG_OVERTEMP_WARNING(self): """Message constant 'STATUS_FLAG_OVERTEMP_WARNING'.""" return Metaclass_GeneratorStatus.__constants['STATUS_FLAG_OVERTEMP_WARNING'] @property def STATUS_FLAG_OVERTEMP_FAULT(self): """Message constant 'STATUS_FLAG_OVERTEMP_FAULT'.""" return Metaclass_GeneratorStatus.__constants['STATUS_FLAG_OVERTEMP_FAULT'] @property def STATUS_FLAG_ELECTRONICS_OVERTEMP_WARNING(self): """Message constant 'STATUS_FLAG_ELECTRONICS_OVERTEMP_WARNING'.""" return Metaclass_GeneratorStatus.__constants['STATUS_FLAG_ELECTRONICS_OVERTEMP_WARNING'] @property def STATUS_FLAG_ELECTRONICS_OVERTEMP_FAULT(self): """Message constant 'STATUS_FLAG_ELECTRONICS_OVERTEMP_FAULT'.""" return Metaclass_GeneratorStatus.__constants['STATUS_FLAG_ELECTRONICS_OVERTEMP_FAULT'] @property def STATUS_FLAG_ELECTRONICS_FAULT(self): """Message constant 'STATUS_FLAG_ELECTRONICS_FAULT'.""" return Metaclass_GeneratorStatus.__constants['STATUS_FLAG_ELECTRONICS_FAULT'] @property def STATUS_FLAG_POWERSOURCE_FAULT(self): """Message constant 'STATUS_FLAG_POWERSOURCE_FAULT'.""" return Metaclass_GeneratorStatus.__constants['STATUS_FLAG_POWERSOURCE_FAULT'] @property def STATUS_FLAG_COMMUNICATION_WARNING(self): """Message constant 'STATUS_FLAG_COMMUNICATION_WARNING'.""" return Metaclass_GeneratorStatus.__constants['STATUS_FLAG_COMMUNICATION_WARNING'] @property def STATUS_FLAG_COOLING_WARNING(self): """Message constant 'STATUS_FLAG_COOLING_WARNING'.""" return Metaclass_GeneratorStatus.__constants['STATUS_FLAG_COOLING_WARNING'] @property def STATUS_FLAG_POWER_RAIL_FAULT(self): """Message constant 'STATUS_FLAG_POWER_RAIL_FAULT'.""" return Metaclass_GeneratorStatus.__constants['STATUS_FLAG_POWER_RAIL_FAULT'] @property def STATUS_FLAG_OVERCURRENT_FAULT(self): """Message constant 'STATUS_FLAG_OVERCURRENT_FAULT'.""" return Metaclass_GeneratorStatus.__constants['STATUS_FLAG_OVERCURRENT_FAULT'] @property def STATUS_FLAG_BATTERY_OVERCHARGE_CURRENT_FAULT(self): """Message constant 'STATUS_FLAG_BATTERY_OVERCHARGE_CURRENT_FAULT'.""" return Metaclass_GeneratorStatus.__constants['STATUS_FLAG_BATTERY_OVERCHARGE_CURRENT_FAULT'] @property def STATUS_FLAG_OVERVOLTAGE_FAULT(self): """Message constant 'STATUS_FLAG_OVERVOLTAGE_FAULT'.""" return Metaclass_GeneratorStatus.__constants['STATUS_FLAG_OVERVOLTAGE_FAULT'] @property def STATUS_FLAG_BATTERY_UNDERVOLT_FAULT(self): """Message constant 'STATUS_FLAG_BATTERY_UNDERVOLT_FAULT'.""" return Metaclass_GeneratorStatus.__constants['STATUS_FLAG_BATTERY_UNDERVOLT_FAULT'] @property def STATUS_FLAG_START_INHIBITED(self): """Message constant 'STATUS_FLAG_START_INHIBITED'.""" return Metaclass_GeneratorStatus.__constants['STATUS_FLAG_START_INHIBITED'] @property def STATUS_FLAG_MAINTENANCE_REQUIRED(self): """Message constant 'STATUS_FLAG_MAINTENANCE_REQUIRED'.""" return Metaclass_GeneratorStatus.__constants['STATUS_FLAG_MAINTENANCE_REQUIRED'] @property def STATUS_FLAG_WARMING_UP(self): """Message constant 'STATUS_FLAG_WARMING_UP'.""" return Metaclass_GeneratorStatus.__constants['STATUS_FLAG_WARMING_UP'] @property def STATUS_FLAG_IDLE(self): """Message constant 'STATUS_FLAG_IDLE'.""" return Metaclass_GeneratorStatus.__constants['STATUS_FLAG_IDLE'] class GeneratorStatus(metaclass=Metaclass_GeneratorStatus): """ Message class 'GeneratorStatus'. Constants: STATUS_FLAG_OFF STATUS_FLAG_READY STATUS_FLAG_GENERATING STATUS_FLAG_CHARGING STATUS_FLAG_REDUCED_POWER STATUS_FLAG_MAXPOWER STATUS_FLAG_OVERTEMP_WARNING STATUS_FLAG_OVERTEMP_FAULT STATUS_FLAG_ELECTRONICS_OVERTEMP_WARNING STATUS_FLAG_ELECTRONICS_OVERTEMP_FAULT STATUS_FLAG_ELECTRONICS_FAULT STATUS_FLAG_POWERSOURCE_FAULT STATUS_FLAG_COMMUNICATION_WARNING STATUS_FLAG_COOLING_WARNING STATUS_FLAG_POWER_RAIL_FAULT STATUS_FLAG_OVERCURRENT_FAULT STATUS_FLAG_BATTERY_OVERCHARGE_CURRENT_FAULT STATUS_FLAG_OVERVOLTAGE_FAULT STATUS_FLAG_BATTERY_UNDERVOLT_FAULT STATUS_FLAG_START_INHIBITED STATUS_FLAG_MAINTENANCE_REQUIRED STATUS_FLAG_WARMING_UP STATUS_FLAG_IDLE """ __slots__ = [ '_timestamp', '_status', '_battery_current', '_load_current', '_power_generated', '_bus_voltage', '_bat_current_setpoint', '_runtime', '_time_until_maintenance', '_generator_speed', '_rectifier_temperature', '_generator_temperature', ] _fields_and_field_types = { 'timestamp': 'uint64', 'status': 'uint64', 'battery_current': 'float', 'load_current': 'float', 'power_generated': 'float', 'bus_voltage': 'float', 'bat_current_setpoint': 'float', 'runtime': 'uint32', 'time_until_maintenance': 'int32', 'generator_speed': 'uint16', 'rectifier_temperature': 'int16', 'generator_temperature': 'int16', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('int32'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('int16'), # noqa: E501 rosidl_parser.definition.BasicType('int16'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.status = kwargs.get('status', int()) self.battery_current = kwargs.get('battery_current', float()) self.load_current = kwargs.get('load_current', float()) self.power_generated = kwargs.get('power_generated', float()) self.bus_voltage = kwargs.get('bus_voltage', float()) self.bat_current_setpoint = kwargs.get('bat_current_setpoint', float()) self.runtime = kwargs.get('runtime', int()) self.time_until_maintenance = kwargs.get('time_until_maintenance', int()) self.generator_speed = kwargs.get('generator_speed', int()) self.rectifier_temperature = kwargs.get('rectifier_temperature', int()) self.generator_temperature = kwargs.get('generator_temperature', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.status != other.status: return False if self.battery_current != other.battery_current: return False if self.load_current != other.load_current: return False if self.power_generated != other.power_generated: return False if self.bus_voltage != other.bus_voltage: return False if self.bat_current_setpoint != other.bat_current_setpoint: return False if self.runtime != other.runtime: return False if self.time_until_maintenance != other.time_until_maintenance: return False if self.generator_speed != other.generator_speed: return False if self.rectifier_temperature != other.rectifier_temperature: return False if self.generator_temperature != other.generator_temperature: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def status(self): """Message field 'status'.""" return self._status @status.setter def status(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'status' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'status' field must be an unsigned integer in [0, 18446744073709551615]" self._status = value @property def battery_current(self): """Message field 'battery_current'.""" return self._battery_current @battery_current.setter def battery_current(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'battery_current' field must be of type 'float'" self._battery_current = value @property def load_current(self): """Message field 'load_current'.""" return self._load_current @load_current.setter def load_current(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'load_current' field must be of type 'float'" self._load_current = value @property def power_generated(self): """Message field 'power_generated'.""" return self._power_generated @power_generated.setter def power_generated(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'power_generated' field must be of type 'float'" self._power_generated = value @property def bus_voltage(self): """Message field 'bus_voltage'.""" return self._bus_voltage @bus_voltage.setter def bus_voltage(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'bus_voltage' field must be of type 'float'" self._bus_voltage = value @property def bat_current_setpoint(self): """Message field 'bat_current_setpoint'.""" return self._bat_current_setpoint @bat_current_setpoint.setter def bat_current_setpoint(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'bat_current_setpoint' field must be of type 'float'" self._bat_current_setpoint = value @property def runtime(self): """Message field 'runtime'.""" return self._runtime @runtime.setter def runtime(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'runtime' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'runtime' field must be an unsigned integer in [0, 4294967295]" self._runtime = value @property def time_until_maintenance(self): """Message field 'time_until_maintenance'.""" return self._time_until_maintenance @time_until_maintenance.setter def time_until_maintenance(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'time_until_maintenance' field must be of type 'int'" assert value >= -2147483648 and value < 2147483648, \ "The 'time_until_maintenance' field must be an integer in [-2147483648, 2147483647]" self._time_until_maintenance = value @property def generator_speed(self): """Message field 'generator_speed'.""" return self._generator_speed @generator_speed.setter def generator_speed(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'generator_speed' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'generator_speed' field must be an unsigned integer in [0, 65535]" self._generator_speed = value @property def rectifier_temperature(self): """Message field 'rectifier_temperature'.""" return self._rectifier_temperature @rectifier_temperature.setter def rectifier_temperature(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'rectifier_temperature' field must be of type 'int'" assert value >= -32768 and value < 32768, \ "The 'rectifier_temperature' field must be an integer in [-32768, 32767]" self._rectifier_temperature = value @property def generator_temperature(self): """Message field 'generator_temperature'.""" return self._generator_temperature @generator_temperature.setter def generator_temperature(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'generator_temperature' field must be of type 'int'" assert value >= -32768 and value < 32768, \ "The 'generator_temperature' field must be an integer in [-32768, 32767]" self._generator_temperature = value <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_controls0__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/ActuatorControls0.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS0__STRUCT_H_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS0__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'NUM_ACTUATOR_CONTROLS'. enum { px4_msgs__msg__ActuatorControls0__NUM_ACTUATOR_CONTROLS = 8 }; /// Constant 'NUM_ACTUATOR_CONTROL_GROUPS'. enum { px4_msgs__msg__ActuatorControls0__NUM_ACTUATOR_CONTROL_GROUPS = 6 }; /// Constant 'INDEX_ROLL'. enum { px4_msgs__msg__ActuatorControls0__INDEX_ROLL = 0 }; /// Constant 'INDEX_PITCH'. enum { px4_msgs__msg__ActuatorControls0__INDEX_PITCH = 1 }; /// Constant 'INDEX_YAW'. enum { px4_msgs__msg__ActuatorControls0__INDEX_YAW = 2 }; /// Constant 'INDEX_THROTTLE'. enum { px4_msgs__msg__ActuatorControls0__INDEX_THROTTLE = 3 }; /// Constant 'INDEX_FLAPS'. enum { px4_msgs__msg__ActuatorControls0__INDEX_FLAPS = 4 }; /// Constant 'INDEX_SPOILERS'. enum { px4_msgs__msg__ActuatorControls0__INDEX_SPOILERS = 5 }; /// Constant 'INDEX_AIRBRAKES'. enum { px4_msgs__msg__ActuatorControls0__INDEX_AIRBRAKES = 6 }; /// Constant 'INDEX_LANDING_GEAR'. enum { px4_msgs__msg__ActuatorControls0__INDEX_LANDING_GEAR = 7 }; /// Constant 'INDEX_GIMBAL_SHUTTER'. enum { px4_msgs__msg__ActuatorControls0__INDEX_GIMBAL_SHUTTER = 3 }; /// Constant 'INDEX_CAMERA_ZOOM'. enum { px4_msgs__msg__ActuatorControls0__INDEX_CAMERA_ZOOM = 4 }; /// Constant 'GROUP_INDEX_ATTITUDE'. enum { px4_msgs__msg__ActuatorControls0__GROUP_INDEX_ATTITUDE = 0 }; /// Constant 'GROUP_INDEX_ATTITUDE_ALTERNATE'. enum { px4_msgs__msg__ActuatorControls0__GROUP_INDEX_ATTITUDE_ALTERNATE = 1 }; /// Constant 'GROUP_INDEX_GIMBAL'. enum { px4_msgs__msg__ActuatorControls0__GROUP_INDEX_GIMBAL = 2 }; /// Constant 'GROUP_INDEX_MANUAL_PASSTHROUGH'. enum { px4_msgs__msg__ActuatorControls0__GROUP_INDEX_MANUAL_PASSTHROUGH = 3 }; /// Constant 'GROUP_INDEX_ALLOCATED_PART1'. enum { px4_msgs__msg__ActuatorControls0__GROUP_INDEX_ALLOCATED_PART1 = 4 }; /// Constant 'GROUP_INDEX_ALLOCATED_PART2'. enum { px4_msgs__msg__ActuatorControls0__GROUP_INDEX_ALLOCATED_PART2 = 5 }; /// Constant 'GROUP_INDEX_PAYLOAD'. enum { px4_msgs__msg__ActuatorControls0__GROUP_INDEX_PAYLOAD = 6 }; // Struct defined in msg/ActuatorControls0 in the package px4_msgs. typedef struct px4_msgs__msg__ActuatorControls0 { uint64_t timestamp; uint64_t timestamp_sample; float control[8]; } px4_msgs__msg__ActuatorControls0; // Struct for a sequence of px4_msgs__msg__ActuatorControls0. typedef struct px4_msgs__msg__ActuatorControls0__Sequence { px4_msgs__msg__ActuatorControls0 * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__ActuatorControls0__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS0__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/mission_result.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/MissionResult.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__MISSION_RESULT_H_ #define PX4_MSGS__MSG__MISSION_RESULT_H_ #include "px4_msgs/msg/mission_result__struct.h" #include "px4_msgs/msg/mission_result__functions.h" #include "px4_msgs/msg/mission_result__type_support.h" #endif // PX4_MSGS__MSG__MISSION_RESULT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_combined__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/SensorCombined.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_COMBINED__STRUCT_H_ #define PX4_MSGS__MSG__SENSOR_COMBINED__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'RELATIVE_TIMESTAMP_INVALID'. enum { px4_msgs__msg__SensorCombined__RELATIVE_TIMESTAMP_INVALID = 2147483647l }; /// Constant 'CLIPPING_X'. enum { px4_msgs__msg__SensorCombined__CLIPPING_X = 1 }; /// Constant 'CLIPPING_Y'. enum { px4_msgs__msg__SensorCombined__CLIPPING_Y = 2 }; /// Constant 'CLIPPING_Z'. enum { px4_msgs__msg__SensorCombined__CLIPPING_Z = 4 }; // Struct defined in msg/SensorCombined in the package px4_msgs. typedef struct px4_msgs__msg__SensorCombined { uint64_t timestamp; float gyro_rad[3]; uint32_t gyro_integral_dt; int32_t accelerometer_timestamp_relative; float accelerometer_m_s2[3]; uint32_t accelerometer_integral_dt; uint8_t accelerometer_clipping; } px4_msgs__msg__SensorCombined; // Struct for a sequence of px4_msgs__msg__SensorCombined. typedef struct px4_msgs__msg__SensorCombined__Sequence { px4_msgs__msg__SensorCombined * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__SensorCombined__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__SENSOR_COMBINED__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/trajectory_bezier.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/TrajectoryBezier.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TRAJECTORY_BEZIER_H_ #define PX4_MSGS__MSG__TRAJECTORY_BEZIER_H_ #include "px4_msgs/msg/trajectory_bezier__struct.h" #include "px4_msgs/msg/trajectory_bezier__functions.h" #include "px4_msgs/msg/trajectory_bezier__type_support.h" #endif // PX4_MSGS__MSG__TRAJECTORY_BEZIER_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/mission_result__rosidl_typesupport_fastrtps_c.h // generated from rosidl_typesupport_fastrtps_c/resource/idl__rosidl_typesupport_fastrtps_c.h.em // with input from px4_msgs:msg/MissionResult.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__MISSION_RESULT__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #define PX4_MSGS__MSG__MISSION_RESULT__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #include <stddef.h> #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__MissionResult( const void * untyped_ros_message, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__MissionResult( bool & full_bounded, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, MissionResult)(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__MISSION_RESULT__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/mount_orientation.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__MOUNT_ORIENTATION_HPP_ #define PX4_MSGS__MSG__MOUNT_ORIENTATION_HPP_ #include "px4_msgs/msg/mount_orientation__struct.hpp" #include "px4_msgs/msg/mount_orientation__traits.hpp" #endif // PX4_MSGS__MSG__MOUNT_ORIENTATION_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/adc_report__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/AdcReport.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/adc_report__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void AdcReport_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::AdcReport(_init); } void AdcReport_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::AdcReport *>(message_memory); typed_message->~AdcReport(); } size_t size_function__AdcReport__channel_id(const void * untyped_member) { (void)untyped_member; return 12; } const void * get_const_function__AdcReport__channel_id(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<int16_t, 12> *>(untyped_member); return &member[index]; } void * get_function__AdcReport__channel_id(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<int16_t, 12> *>(untyped_member); return &member[index]; } size_t size_function__AdcReport__raw_data(const void * untyped_member) { (void)untyped_member; return 12; } const void * get_const_function__AdcReport__raw_data(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<int32_t, 12> *>(untyped_member); return &member[index]; } void * get_function__AdcReport__raw_data(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<int32_t, 12> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember AdcReport_message_member_array[6] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::AdcReport, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "device_id", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::AdcReport, device_id), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "channel_id", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT16, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 12, // array size false, // is upper bound offsetof(px4_msgs::msg::AdcReport, channel_id), // bytes offset in struct nullptr, // default value size_function__AdcReport__channel_id, // size() function pointer get_const_function__AdcReport__channel_id, // get_const(index) function pointer get_function__AdcReport__channel_id, // get(index) function pointer nullptr // resize(index) function pointer }, { "raw_data", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT32, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 12, // array size false, // is upper bound offsetof(px4_msgs::msg::AdcReport, raw_data), // bytes offset in struct nullptr, // default value size_function__AdcReport__raw_data, // size() function pointer get_const_function__AdcReport__raw_data, // get_const(index) function pointer get_function__AdcReport__raw_data, // get(index) function pointer nullptr // resize(index) function pointer }, { "resolution", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::AdcReport, resolution), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "v_ref", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::AdcReport, v_ref), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers AdcReport_message_members = { "px4_msgs::msg", // message namespace "AdcReport", // message name 6, // number of fields sizeof(px4_msgs::msg::AdcReport), AdcReport_message_member_array, // message members AdcReport_init_function, // function to initialize message memory (memory has to be allocated) AdcReport_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t AdcReport_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &AdcReport_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::AdcReport>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::AdcReport_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, AdcReport)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::AdcReport_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/orb_test_medium_multi.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORB_TEST_MEDIUM_MULTI_HPP_ #define PX4_MSGS__MSG__ORB_TEST_MEDIUM_MULTI_HPP_ #include "px4_msgs/msg/orb_test_medium_multi__struct.hpp" #include "px4_msgs/msg/orb_test_medium_multi__traits.hpp" #endif // PX4_MSGS__MSG__ORB_TEST_MEDIUM_MULTI_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/satellite_info.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SATELLITE_INFO_HPP_ #define PX4_MSGS__MSG__SATELLITE_INFO_HPP_ #include "px4_msgs/msg/satellite_info__struct.hpp" #include "px4_msgs/msg/satellite_info__traits.hpp" #endif // PX4_MSGS__MSG__SATELLITE_INFO_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_correction.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/SensorCorrection.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_CORRECTION_H_ #define PX4_MSGS__MSG__SENSOR_CORRECTION_H_ #include "px4_msgs/msg/sensor_correction__struct.h" #include "px4_msgs/msg/sensor_correction__functions.h" #include "px4_msgs/msg/sensor_correction__type_support.h" #endif // PX4_MSGS__MSG__SENSOR_CORRECTION_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/gps_dump.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/GpsDump.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GPS_DUMP_H_ #define PX4_MSGS__MSG__GPS_DUMP_H_ #include "px4_msgs/msg/gps_dump__struct.h" #include "px4_msgs/msg/gps_dump__functions.h" #include "px4_msgs/msg/gps_dump__type_support.h" #endif // PX4_MSGS__MSG__GPS_DUMP_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_combined__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/SensorCombined.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/sensor_combined__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void SensorCombined_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::SensorCombined(_init); } void SensorCombined_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::SensorCombined *>(message_memory); typed_message->~SensorCombined(); } size_t size_function__SensorCombined__gyro_rad(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__SensorCombined__gyro_rad(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__SensorCombined__gyro_rad(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } size_t size_function__SensorCombined__accelerometer_m_s2(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__SensorCombined__accelerometer_m_s2(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__SensorCombined__accelerometer_m_s2(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember SensorCombined_message_member_array[7] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorCombined, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "gyro_rad", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorCombined, gyro_rad), // bytes offset in struct nullptr, // default value size_function__SensorCombined__gyro_rad, // size() function pointer get_const_function__SensorCombined__gyro_rad, // get_const(index) function pointer get_function__SensorCombined__gyro_rad, // get(index) function pointer nullptr // resize(index) function pointer }, { "gyro_integral_dt", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorCombined, gyro_integral_dt), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "accelerometer_timestamp_relative", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorCombined, accelerometer_timestamp_relative), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "accelerometer_m_s2", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorCombined, accelerometer_m_s2), // bytes offset in struct nullptr, // default value size_function__SensorCombined__accelerometer_m_s2, // size() function pointer get_const_function__SensorCombined__accelerometer_m_s2, // get_const(index) function pointer get_function__SensorCombined__accelerometer_m_s2, // get(index) function pointer nullptr // resize(index) function pointer }, { "accelerometer_integral_dt", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorCombined, accelerometer_integral_dt), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "accelerometer_clipping", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorCombined, accelerometer_clipping), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers SensorCombined_message_members = { "px4_msgs::msg", // message namespace "SensorCombined", // message name 7, // number of fields sizeof(px4_msgs::msg::SensorCombined), SensorCombined_message_member_array, // message members SensorCombined_init_function, // function to initialize message memory (memory has to be allocated) SensorCombined_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t SensorCombined_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &SensorCombined_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::SensorCombined>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::SensorCombined_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, SensorCombined)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::SensorCombined_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/sensor_correction__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/SensorCorrection.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_CORRECTION__STRUCT_HPP_ #define PX4_MSGS__MSG__SENSOR_CORRECTION__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__SensorCorrection __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__SensorCorrection __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct SensorCorrection_ { using Type = SensorCorrection_<ContainerAllocator>; explicit SensorCorrection_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; std::fill<typename std::array<uint32_t, 4>::iterator, uint32_t>(this->gyro_device_ids.begin(), this->gyro_device_ids.end(), 0ul); std::fill<typename std::array<float, 3>::iterator, float>(this->gyro_offset_0.begin(), this->gyro_offset_0.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->gyro_offset_1.begin(), this->gyro_offset_1.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->gyro_offset_2.begin(), this->gyro_offset_2.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->gyro_offset_3.begin(), this->gyro_offset_3.end(), 0.0f); std::fill<typename std::array<uint32_t, 4>::iterator, uint32_t>(this->accel_device_ids.begin(), this->accel_device_ids.end(), 0ul); std::fill<typename std::array<float, 3>::iterator, float>(this->accel_offset_0.begin(), this->accel_offset_0.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->accel_offset_1.begin(), this->accel_offset_1.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->accel_offset_2.begin(), this->accel_offset_2.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->accel_offset_3.begin(), this->accel_offset_3.end(), 0.0f); std::fill<typename std::array<uint32_t, 4>::iterator, uint32_t>(this->baro_device_ids.begin(), this->baro_device_ids.end(), 0ul); this->baro_offset_0 = 0.0f; this->baro_offset_1 = 0.0f; this->baro_offset_2 = 0.0f; this->baro_offset_3 = 0.0f; } } explicit SensorCorrection_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : gyro_device_ids(_alloc), gyro_offset_0(_alloc), gyro_offset_1(_alloc), gyro_offset_2(_alloc), gyro_offset_3(_alloc), accel_device_ids(_alloc), accel_offset_0(_alloc), accel_offset_1(_alloc), accel_offset_2(_alloc), accel_offset_3(_alloc), baro_device_ids(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; std::fill<typename std::array<uint32_t, 4>::iterator, uint32_t>(this->gyro_device_ids.begin(), this->gyro_device_ids.end(), 0ul); std::fill<typename std::array<float, 3>::iterator, float>(this->gyro_offset_0.begin(), this->gyro_offset_0.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->gyro_offset_1.begin(), this->gyro_offset_1.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->gyro_offset_2.begin(), this->gyro_offset_2.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->gyro_offset_3.begin(), this->gyro_offset_3.end(), 0.0f); std::fill<typename std::array<uint32_t, 4>::iterator, uint32_t>(this->accel_device_ids.begin(), this->accel_device_ids.end(), 0ul); std::fill<typename std::array<float, 3>::iterator, float>(this->accel_offset_0.begin(), this->accel_offset_0.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->accel_offset_1.begin(), this->accel_offset_1.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->accel_offset_2.begin(), this->accel_offset_2.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->accel_offset_3.begin(), this->accel_offset_3.end(), 0.0f); std::fill<typename std::array<uint32_t, 4>::iterator, uint32_t>(this->baro_device_ids.begin(), this->baro_device_ids.end(), 0ul); this->baro_offset_0 = 0.0f; this->baro_offset_1 = 0.0f; this->baro_offset_2 = 0.0f; this->baro_offset_3 = 0.0f; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _gyro_device_ids_type = std::array<uint32_t, 4>; _gyro_device_ids_type gyro_device_ids; using _gyro_offset_0_type = std::array<float, 3>; _gyro_offset_0_type gyro_offset_0; using _gyro_offset_1_type = std::array<float, 3>; _gyro_offset_1_type gyro_offset_1; using _gyro_offset_2_type = std::array<float, 3>; _gyro_offset_2_type gyro_offset_2; using _gyro_offset_3_type = std::array<float, 3>; _gyro_offset_3_type gyro_offset_3; using _accel_device_ids_type = std::array<uint32_t, 4>; _accel_device_ids_type accel_device_ids; using _accel_offset_0_type = std::array<float, 3>; _accel_offset_0_type accel_offset_0; using _accel_offset_1_type = std::array<float, 3>; _accel_offset_1_type accel_offset_1; using _accel_offset_2_type = std::array<float, 3>; _accel_offset_2_type accel_offset_2; using _accel_offset_3_type = std::array<float, 3>; _accel_offset_3_type accel_offset_3; using _baro_device_ids_type = std::array<uint32_t, 4>; _baro_device_ids_type baro_device_ids; using _baro_offset_0_type = float; _baro_offset_0_type baro_offset_0; using _baro_offset_1_type = float; _baro_offset_1_type baro_offset_1; using _baro_offset_2_type = float; _baro_offset_2_type baro_offset_2; using _baro_offset_3_type = float; _baro_offset_3_type baro_offset_3; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__gyro_device_ids( const std::array<uint32_t, 4> & _arg) { this->gyro_device_ids = _arg; return *this; } Type & set__gyro_offset_0( const std::array<float, 3> & _arg) { this->gyro_offset_0 = _arg; return *this; } Type & set__gyro_offset_1( const std::array<float, 3> & _arg) { this->gyro_offset_1 = _arg; return *this; } Type & set__gyro_offset_2( const std::array<float, 3> & _arg) { this->gyro_offset_2 = _arg; return *this; } Type & set__gyro_offset_3( const std::array<float, 3> & _arg) { this->gyro_offset_3 = _arg; return *this; } Type & set__accel_device_ids( const std::array<uint32_t, 4> & _arg) { this->accel_device_ids = _arg; return *this; } Type & set__accel_offset_0( const std::array<float, 3> & _arg) { this->accel_offset_0 = _arg; return *this; } Type & set__accel_offset_1( const std::array<float, 3> & _arg) { this->accel_offset_1 = _arg; return *this; } Type & set__accel_offset_2( const std::array<float, 3> & _arg) { this->accel_offset_2 = _arg; return *this; } Type & set__accel_offset_3( const std::array<float, 3> & _arg) { this->accel_offset_3 = _arg; return *this; } Type & set__baro_device_ids( const std::array<uint32_t, 4> & _arg) { this->baro_device_ids = _arg; return *this; } Type & set__baro_offset_0( const float & _arg) { this->baro_offset_0 = _arg; return *this; } Type & set__baro_offset_1( const float & _arg) { this->baro_offset_1 = _arg; return *this; } Type & set__baro_offset_2( const float & _arg) { this->baro_offset_2 = _arg; return *this; } Type & set__baro_offset_3( const float & _arg) { this->baro_offset_3 = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::SensorCorrection_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::SensorCorrection_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::SensorCorrection_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::SensorCorrection_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::SensorCorrection_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::SensorCorrection_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::SensorCorrection_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::SensorCorrection_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::SensorCorrection_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::SensorCorrection_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__SensorCorrection std::shared_ptr<px4_msgs::msg::SensorCorrection_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__SensorCorrection std::shared_ptr<px4_msgs::msg::SensorCorrection_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const SensorCorrection_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->gyro_device_ids != other.gyro_device_ids) { return false; } if (this->gyro_offset_0 != other.gyro_offset_0) { return false; } if (this->gyro_offset_1 != other.gyro_offset_1) { return false; } if (this->gyro_offset_2 != other.gyro_offset_2) { return false; } if (this->gyro_offset_3 != other.gyro_offset_3) { return false; } if (this->accel_device_ids != other.accel_device_ids) { return false; } if (this->accel_offset_0 != other.accel_offset_0) { return false; } if (this->accel_offset_1 != other.accel_offset_1) { return false; } if (this->accel_offset_2 != other.accel_offset_2) { return false; } if (this->accel_offset_3 != other.accel_offset_3) { return false; } if (this->baro_device_ids != other.baro_device_ids) { return false; } if (this->baro_offset_0 != other.baro_offset_0) { return false; } if (this->baro_offset_1 != other.baro_offset_1) { return false; } if (this->baro_offset_2 != other.baro_offset_2) { return false; } if (this->baro_offset_3 != other.baro_offset_3) { return false; } return true; } bool operator!=(const SensorCorrection_ & other) const { return !this->operator==(other); } }; // struct SensorCorrection_ // alias to use template instance with default allocator using SensorCorrection = px4_msgs::msg::SensorCorrection_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__SENSOR_CORRECTION__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/telemetry_status.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/TelemetryStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TELEMETRY_STATUS_H_ #define PX4_MSGS__MSG__TELEMETRY_STATUS_H_ #include "px4_msgs/msg/telemetry_status__struct.h" #include "px4_msgs/msg/telemetry_status__functions.h" #include "px4_msgs/msg/telemetry_status__type_support.h" #endif // PX4_MSGS__MSG__TELEMETRY_STATUS_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/home_position__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/HomePosition.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/home_position__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/home_position__functions.h" #include "px4_msgs/msg/home_position__struct.h" #ifdef __cplusplus extern "C" { #endif void HomePosition__rosidl_typesupport_introspection_c__HomePosition_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__HomePosition__init(message_memory); } void HomePosition__rosidl_typesupport_introspection_c__HomePosition_fini_function(void * message_memory) { px4_msgs__msg__HomePosition__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember HomePosition__rosidl_typesupport_introspection_c__HomePosition_message_member_array[12] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HomePosition, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "lat", // name rosidl_typesupport_introspection_c__ROS_TYPE_DOUBLE, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HomePosition, lat), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "lon", // name rosidl_typesupport_introspection_c__ROS_TYPE_DOUBLE, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HomePosition, lon), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "alt", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HomePosition, alt), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "x", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HomePosition, x), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "y", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HomePosition, y), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "z", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HomePosition, z), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yaw", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HomePosition, yaw), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "valid_alt", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HomePosition, valid_alt), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "valid_hpos", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HomePosition, valid_hpos), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "valid_lpos", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HomePosition, valid_lpos), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "manual_home", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HomePosition, manual_home), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers HomePosition__rosidl_typesupport_introspection_c__HomePosition_message_members = { "px4_msgs__msg", // message namespace "HomePosition", // message name 12, // number of fields sizeof(px4_msgs__msg__HomePosition), HomePosition__rosidl_typesupport_introspection_c__HomePosition_message_member_array, // message members HomePosition__rosidl_typesupport_introspection_c__HomePosition_init_function, // function to initialize message memory (memory has to be allocated) HomePosition__rosidl_typesupport_introspection_c__HomePosition_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t HomePosition__rosidl_typesupport_introspection_c__HomePosition_message_type_support_handle = { 0, &HomePosition__rosidl_typesupport_introspection_c__HomePosition_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, HomePosition)() { if (!HomePosition__rosidl_typesupport_introspection_c__HomePosition_message_type_support_handle.typesupport_identifier) { HomePosition__rosidl_typesupport_introspection_c__HomePosition_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &HomePosition__rosidl_typesupport_introspection_c__HomePosition_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/power_monitor__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/PowerMonitor.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/power_monitor__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void PowerMonitor_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::PowerMonitor(_init); } void PowerMonitor_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::PowerMonitor *>(message_memory); typed_message->~PowerMonitor(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember PowerMonitor_message_member_array[12] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PowerMonitor, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "voltage_v", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PowerMonitor, voltage_v), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "current_a", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PowerMonitor, current_a), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "power_w", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PowerMonitor, power_w), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rconf", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PowerMonitor, rconf), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rsv", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PowerMonitor, rsv), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rbv", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PowerMonitor, rbv), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PowerMonitor, rp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rc", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PowerMonitor, rc), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rcal", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PowerMonitor, rcal), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "me", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PowerMonitor, me), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "al", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PowerMonitor, al), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers PowerMonitor_message_members = { "px4_msgs::msg", // message namespace "PowerMonitor", // message name 12, // number of fields sizeof(px4_msgs::msg::PowerMonitor), PowerMonitor_message_member_array, // message members PowerMonitor_init_function, // function to initialize message memory (memory has to be allocated) PowerMonitor_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t PowerMonitor_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &PowerMonitor_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::PowerMonitor>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::PowerMonitor_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, PowerMonitor)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::PowerMonitor_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/vtol_vehicle_status__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/VtolVehicleStatus.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/vtol_vehicle_status__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/vtol_vehicle_status__functions.h" #include "px4_msgs/msg/vtol_vehicle_status__struct.h" #ifdef __cplusplus extern "C" { #endif void VtolVehicleStatus__rosidl_typesupport_introspection_c__VtolVehicleStatus_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__VtolVehicleStatus__init(message_memory); } void VtolVehicleStatus__rosidl_typesupport_introspection_c__VtolVehicleStatus_fini_function(void * message_memory) { px4_msgs__msg__VtolVehicleStatus__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember VtolVehicleStatus__rosidl_typesupport_introspection_c__VtolVehicleStatus_message_member_array[6] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VtolVehicleStatus, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vtol_in_rw_mode", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VtolVehicleStatus, vtol_in_rw_mode), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vtol_in_trans_mode", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VtolVehicleStatus, vtol_in_trans_mode), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "in_transition_to_fw", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VtolVehicleStatus, in_transition_to_fw), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vtol_transition_failsafe", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VtolVehicleStatus, vtol_transition_failsafe), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "fw_permanent_stab", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VtolVehicleStatus, fw_permanent_stab), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers VtolVehicleStatus__rosidl_typesupport_introspection_c__VtolVehicleStatus_message_members = { "px4_msgs__msg", // message namespace "VtolVehicleStatus", // message name 6, // number of fields sizeof(px4_msgs__msg__VtolVehicleStatus), VtolVehicleStatus__rosidl_typesupport_introspection_c__VtolVehicleStatus_message_member_array, // message members VtolVehicleStatus__rosidl_typesupport_introspection_c__VtolVehicleStatus_init_function, // function to initialize message memory (memory has to be allocated) VtolVehicleStatus__rosidl_typesupport_introspection_c__VtolVehicleStatus_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t VtolVehicleStatus__rosidl_typesupport_introspection_c__VtolVehicleStatus_message_type_support_handle = { 0, &VtolVehicleStatus__rosidl_typesupport_introspection_c__VtolVehicleStatus_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, VtolVehicleStatus)() { if (!VtolVehicleStatus__rosidl_typesupport_introspection_c__VtolVehicleStatus_message_type_support_handle.typesupport_identifier) { VtolVehicleStatus__rosidl_typesupport_introspection_c__VtolVehicleStatus_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &VtolVehicleStatus__rosidl_typesupport_introspection_c__VtolVehicleStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/gimbal_manager_information__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/GimbalManagerInformation.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GIMBAL_MANAGER_INFORMATION__STRUCT_H_ #define PX4_MSGS__MSG__GIMBAL_MANAGER_INFORMATION__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'GIMBAL_MANAGER_CAP_FLAGS_HAS_RETRACT'. enum { px4_msgs__msg__GimbalManagerInformation__GIMBAL_MANAGER_CAP_FLAGS_HAS_RETRACT = 1ul }; /// Constant 'GIMBAL_MANAGER_CAP_FLAGS_HAS_NEUTRAL'. enum { px4_msgs__msg__GimbalManagerInformation__GIMBAL_MANAGER_CAP_FLAGS_HAS_NEUTRAL = 2ul }; /// Constant 'GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_AXIS'. enum { px4_msgs__msg__GimbalManagerInformation__GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_AXIS = 4ul }; /// Constant 'GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_FOLLOW'. enum { px4_msgs__msg__GimbalManagerInformation__GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_FOLLOW = 8ul }; /// Constant 'GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_LOCK'. enum { px4_msgs__msg__GimbalManagerInformation__GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_LOCK = 16ul }; /// Constant 'GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_AXIS'. enum { px4_msgs__msg__GimbalManagerInformation__GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_AXIS = 32ul }; /// Constant 'GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_FOLLOW'. enum { px4_msgs__msg__GimbalManagerInformation__GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_FOLLOW = 64ul }; /// Constant 'GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_LOCK'. enum { px4_msgs__msg__GimbalManagerInformation__GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_LOCK = 128ul }; /// Constant 'GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_AXIS'. enum { px4_msgs__msg__GimbalManagerInformation__GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_AXIS = 256ul }; /// Constant 'GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_FOLLOW'. enum { px4_msgs__msg__GimbalManagerInformation__GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_FOLLOW = 512ul }; /// Constant 'GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_LOCK'. enum { px4_msgs__msg__GimbalManagerInformation__GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_LOCK = 1024ul }; /// Constant 'GIMBAL_MANAGER_CAP_FLAGS_SUPPORTS_INFINITE_YAW'. enum { px4_msgs__msg__GimbalManagerInformation__GIMBAL_MANAGER_CAP_FLAGS_SUPPORTS_INFINITE_YAW = 2048ul }; /// Constant 'GIMBAL_MANAGER_CAP_FLAGS_CAN_POINT_LOCATION_LOCAL'. enum { px4_msgs__msg__GimbalManagerInformation__GIMBAL_MANAGER_CAP_FLAGS_CAN_POINT_LOCATION_LOCAL = 65536ul }; /// Constant 'GIMBAL_MANAGER_CAP_FLAGS_CAN_POINT_LOCATION_GLOBAL'. enum { px4_msgs__msg__GimbalManagerInformation__GIMBAL_MANAGER_CAP_FLAGS_CAN_POINT_LOCATION_GLOBAL = 131072ul }; // Struct defined in msg/GimbalManagerInformation in the package px4_msgs. typedef struct px4_msgs__msg__GimbalManagerInformation { uint64_t timestamp; uint32_t cap_flags; uint8_t gimbal_device_id; float roll_min; float roll_max; float pitch_min; float pitch_max; float yaw_min; float yaw_max; } px4_msgs__msg__GimbalManagerInformation; // Struct for a sequence of px4_msgs__msg__GimbalManagerInformation. typedef struct px4_msgs__msg__GimbalManagerInformation__Sequence { px4_msgs__msg__GimbalManagerInformation * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__GimbalManagerInformation__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__GIMBAL_MANAGER_INFORMATION__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/ping__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/Ping.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/ping__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/ping__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::Ping & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: ping_time cdr << ros_message.ping_time; // Member: ping_sequence cdr << ros_message.ping_sequence; // Member: dropped_packets cdr << ros_message.dropped_packets; // Member: rtt_ms cdr << ros_message.rtt_ms; // Member: system_id cdr << ros_message.system_id; // Member: component_id cdr << ros_message.component_id; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::Ping & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: ping_time cdr >> ros_message.ping_time; // Member: ping_sequence cdr >> ros_message.ping_sequence; // Member: dropped_packets cdr >> ros_message.dropped_packets; // Member: rtt_ms cdr >> ros_message.rtt_ms; // Member: system_id cdr >> ros_message.system_id; // Member: component_id cdr >> ros_message.component_id; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::Ping & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: ping_time { size_t item_size = sizeof(ros_message.ping_time); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: ping_sequence { size_t item_size = sizeof(ros_message.ping_sequence); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: dropped_packets { size_t item_size = sizeof(ros_message.dropped_packets); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rtt_ms { size_t item_size = sizeof(ros_message.rtt_ms); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: system_id { size_t item_size = sizeof(ros_message.system_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: component_id { size_t item_size = sizeof(ros_message.component_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_Ping( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: ping_time { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: ping_sequence { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: dropped_packets { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: rtt_ms { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: system_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: component_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _Ping__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::Ping *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _Ping__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::Ping *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _Ping__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::Ping *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _Ping__max_serialized_size(bool & full_bounded) { return max_serialized_size_Ping(full_bounded, 0); } static message_type_support_callbacks_t _Ping__callbacks = { "px4_msgs::msg", "Ping", _Ping__cdr_serialize, _Ping__cdr_deserialize, _Ping__get_serialized_size, _Ping__max_serialized_size }; static rosidl_message_type_support_t _Ping__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_Ping__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::Ping>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_Ping__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, Ping)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_Ping__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/estimator_status_flags__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/EstimatorStatusFlags.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_STATUS_FLAGS__STRUCT_HPP_ #define PX4_MSGS__MSG__ESTIMATOR_STATUS_FLAGS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__EstimatorStatusFlags __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__EstimatorStatusFlags __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct EstimatorStatusFlags_ { using Type = EstimatorStatusFlags_<ContainerAllocator>; explicit EstimatorStatusFlags_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->control_status_changes = 0ul; this->cs_tilt_align = false; this->cs_yaw_align = false; this->cs_gps = false; this->cs_opt_flow = false; this->cs_mag_hdg = false; this->cs_mag_3d = false; this->cs_mag_dec = false; this->cs_in_air = false; this->cs_wind = false; this->cs_baro_hgt = false; this->cs_rng_hgt = false; this->cs_gps_hgt = false; this->cs_ev_pos = false; this->cs_ev_yaw = false; this->cs_ev_hgt = false; this->cs_fuse_beta = false; this->cs_mag_field_disturbed = false; this->cs_fixed_wing = false; this->cs_mag_fault = false; this->cs_fuse_aspd = false; this->cs_gnd_effect = false; this->cs_rng_stuck = false; this->cs_gps_yaw = false; this->cs_mag_aligned_in_flight = false; this->cs_ev_vel = false; this->cs_synthetic_mag_z = false; this->cs_vehicle_at_rest = false; this->fault_status_changes = 0ul; this->fs_bad_mag_x = false; this->fs_bad_mag_y = false; this->fs_bad_mag_z = false; this->fs_bad_hdg = false; this->fs_bad_mag_decl = false; this->fs_bad_airspeed = false; this->fs_bad_sideslip = false; this->fs_bad_optflow_x = false; this->fs_bad_optflow_y = false; this->fs_bad_vel_n = false; this->fs_bad_vel_e = false; this->fs_bad_vel_d = false; this->fs_bad_pos_n = false; this->fs_bad_pos_e = false; this->fs_bad_pos_d = false; this->fs_bad_acc_bias = false; this->fs_bad_acc_vertical = false; this->fs_bad_acc_clipping = false; this->innovation_fault_status_changes = 0ul; this->reject_hor_vel = false; this->reject_ver_vel = false; this->reject_hor_pos = false; this->reject_ver_pos = false; this->reject_mag_x = false; this->reject_mag_y = false; this->reject_mag_z = false; this->reject_yaw = false; this->reject_airspeed = false; this->reject_sideslip = false; this->reject_hagl = false; this->reject_optflow_x = false; this->reject_optflow_y = false; } } explicit EstimatorStatusFlags_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->control_status_changes = 0ul; this->cs_tilt_align = false; this->cs_yaw_align = false; this->cs_gps = false; this->cs_opt_flow = false; this->cs_mag_hdg = false; this->cs_mag_3d = false; this->cs_mag_dec = false; this->cs_in_air = false; this->cs_wind = false; this->cs_baro_hgt = false; this->cs_rng_hgt = false; this->cs_gps_hgt = false; this->cs_ev_pos = false; this->cs_ev_yaw = false; this->cs_ev_hgt = false; this->cs_fuse_beta = false; this->cs_mag_field_disturbed = false; this->cs_fixed_wing = false; this->cs_mag_fault = false; this->cs_fuse_aspd = false; this->cs_gnd_effect = false; this->cs_rng_stuck = false; this->cs_gps_yaw = false; this->cs_mag_aligned_in_flight = false; this->cs_ev_vel = false; this->cs_synthetic_mag_z = false; this->cs_vehicle_at_rest = false; this->fault_status_changes = 0ul; this->fs_bad_mag_x = false; this->fs_bad_mag_y = false; this->fs_bad_mag_z = false; this->fs_bad_hdg = false; this->fs_bad_mag_decl = false; this->fs_bad_airspeed = false; this->fs_bad_sideslip = false; this->fs_bad_optflow_x = false; this->fs_bad_optflow_y = false; this->fs_bad_vel_n = false; this->fs_bad_vel_e = false; this->fs_bad_vel_d = false; this->fs_bad_pos_n = false; this->fs_bad_pos_e = false; this->fs_bad_pos_d = false; this->fs_bad_acc_bias = false; this->fs_bad_acc_vertical = false; this->fs_bad_acc_clipping = false; this->innovation_fault_status_changes = 0ul; this->reject_hor_vel = false; this->reject_ver_vel = false; this->reject_hor_pos = false; this->reject_ver_pos = false; this->reject_mag_x = false; this->reject_mag_y = false; this->reject_mag_z = false; this->reject_yaw = false; this->reject_airspeed = false; this->reject_sideslip = false; this->reject_hagl = false; this->reject_optflow_x = false; this->reject_optflow_y = false; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _timestamp_sample_type = uint64_t; _timestamp_sample_type timestamp_sample; using _control_status_changes_type = uint32_t; _control_status_changes_type control_status_changes; using _cs_tilt_align_type = bool; _cs_tilt_align_type cs_tilt_align; using _cs_yaw_align_type = bool; _cs_yaw_align_type cs_yaw_align; using _cs_gps_type = bool; _cs_gps_type cs_gps; using _cs_opt_flow_type = bool; _cs_opt_flow_type cs_opt_flow; using _cs_mag_hdg_type = bool; _cs_mag_hdg_type cs_mag_hdg; using _cs_mag_3d_type = bool; _cs_mag_3d_type cs_mag_3d; using _cs_mag_dec_type = bool; _cs_mag_dec_type cs_mag_dec; using _cs_in_air_type = bool; _cs_in_air_type cs_in_air; using _cs_wind_type = bool; _cs_wind_type cs_wind; using _cs_baro_hgt_type = bool; _cs_baro_hgt_type cs_baro_hgt; using _cs_rng_hgt_type = bool; _cs_rng_hgt_type cs_rng_hgt; using _cs_gps_hgt_type = bool; _cs_gps_hgt_type cs_gps_hgt; using _cs_ev_pos_type = bool; _cs_ev_pos_type cs_ev_pos; using _cs_ev_yaw_type = bool; _cs_ev_yaw_type cs_ev_yaw; using _cs_ev_hgt_type = bool; _cs_ev_hgt_type cs_ev_hgt; using _cs_fuse_beta_type = bool; _cs_fuse_beta_type cs_fuse_beta; using _cs_mag_field_disturbed_type = bool; _cs_mag_field_disturbed_type cs_mag_field_disturbed; using _cs_fixed_wing_type = bool; _cs_fixed_wing_type cs_fixed_wing; using _cs_mag_fault_type = bool; _cs_mag_fault_type cs_mag_fault; using _cs_fuse_aspd_type = bool; _cs_fuse_aspd_type cs_fuse_aspd; using _cs_gnd_effect_type = bool; _cs_gnd_effect_type cs_gnd_effect; using _cs_rng_stuck_type = bool; _cs_rng_stuck_type cs_rng_stuck; using _cs_gps_yaw_type = bool; _cs_gps_yaw_type cs_gps_yaw; using _cs_mag_aligned_in_flight_type = bool; _cs_mag_aligned_in_flight_type cs_mag_aligned_in_flight; using _cs_ev_vel_type = bool; _cs_ev_vel_type cs_ev_vel; using _cs_synthetic_mag_z_type = bool; _cs_synthetic_mag_z_type cs_synthetic_mag_z; using _cs_vehicle_at_rest_type = bool; _cs_vehicle_at_rest_type cs_vehicle_at_rest; using _fault_status_changes_type = uint32_t; _fault_status_changes_type fault_status_changes; using _fs_bad_mag_x_type = bool; _fs_bad_mag_x_type fs_bad_mag_x; using _fs_bad_mag_y_type = bool; _fs_bad_mag_y_type fs_bad_mag_y; using _fs_bad_mag_z_type = bool; _fs_bad_mag_z_type fs_bad_mag_z; using _fs_bad_hdg_type = bool; _fs_bad_hdg_type fs_bad_hdg; using _fs_bad_mag_decl_type = bool; _fs_bad_mag_decl_type fs_bad_mag_decl; using _fs_bad_airspeed_type = bool; _fs_bad_airspeed_type fs_bad_airspeed; using _fs_bad_sideslip_type = bool; _fs_bad_sideslip_type fs_bad_sideslip; using _fs_bad_optflow_x_type = bool; _fs_bad_optflow_x_type fs_bad_optflow_x; using _fs_bad_optflow_y_type = bool; _fs_bad_optflow_y_type fs_bad_optflow_y; using _fs_bad_vel_n_type = bool; _fs_bad_vel_n_type fs_bad_vel_n; using _fs_bad_vel_e_type = bool; _fs_bad_vel_e_type fs_bad_vel_e; using _fs_bad_vel_d_type = bool; _fs_bad_vel_d_type fs_bad_vel_d; using _fs_bad_pos_n_type = bool; _fs_bad_pos_n_type fs_bad_pos_n; using _fs_bad_pos_e_type = bool; _fs_bad_pos_e_type fs_bad_pos_e; using _fs_bad_pos_d_type = bool; _fs_bad_pos_d_type fs_bad_pos_d; using _fs_bad_acc_bias_type = bool; _fs_bad_acc_bias_type fs_bad_acc_bias; using _fs_bad_acc_vertical_type = bool; _fs_bad_acc_vertical_type fs_bad_acc_vertical; using _fs_bad_acc_clipping_type = bool; _fs_bad_acc_clipping_type fs_bad_acc_clipping; using _innovation_fault_status_changes_type = uint32_t; _innovation_fault_status_changes_type innovation_fault_status_changes; using _reject_hor_vel_type = bool; _reject_hor_vel_type reject_hor_vel; using _reject_ver_vel_type = bool; _reject_ver_vel_type reject_ver_vel; using _reject_hor_pos_type = bool; _reject_hor_pos_type reject_hor_pos; using _reject_ver_pos_type = bool; _reject_ver_pos_type reject_ver_pos; using _reject_mag_x_type = bool; _reject_mag_x_type reject_mag_x; using _reject_mag_y_type = bool; _reject_mag_y_type reject_mag_y; using _reject_mag_z_type = bool; _reject_mag_z_type reject_mag_z; using _reject_yaw_type = bool; _reject_yaw_type reject_yaw; using _reject_airspeed_type = bool; _reject_airspeed_type reject_airspeed; using _reject_sideslip_type = bool; _reject_sideslip_type reject_sideslip; using _reject_hagl_type = bool; _reject_hagl_type reject_hagl; using _reject_optflow_x_type = bool; _reject_optflow_x_type reject_optflow_x; using _reject_optflow_y_type = bool; _reject_optflow_y_type reject_optflow_y; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__timestamp_sample( const uint64_t & _arg) { this->timestamp_sample = _arg; return *this; } Type & set__control_status_changes( const uint32_t & _arg) { this->control_status_changes = _arg; return *this; } Type & set__cs_tilt_align( const bool & _arg) { this->cs_tilt_align = _arg; return *this; } Type & set__cs_yaw_align( const bool & _arg) { this->cs_yaw_align = _arg; return *this; } Type & set__cs_gps( const bool & _arg) { this->cs_gps = _arg; return *this; } Type & set__cs_opt_flow( const bool & _arg) { this->cs_opt_flow = _arg; return *this; } Type & set__cs_mag_hdg( const bool & _arg) { this->cs_mag_hdg = _arg; return *this; } Type & set__cs_mag_3d( const bool & _arg) { this->cs_mag_3d = _arg; return *this; } Type & set__cs_mag_dec( const bool & _arg) { this->cs_mag_dec = _arg; return *this; } Type & set__cs_in_air( const bool & _arg) { this->cs_in_air = _arg; return *this; } Type & set__cs_wind( const bool & _arg) { this->cs_wind = _arg; return *this; } Type & set__cs_baro_hgt( const bool & _arg) { this->cs_baro_hgt = _arg; return *this; } Type & set__cs_rng_hgt( const bool & _arg) { this->cs_rng_hgt = _arg; return *this; } Type & set__cs_gps_hgt( const bool & _arg) { this->cs_gps_hgt = _arg; return *this; } Type & set__cs_ev_pos( const bool & _arg) { this->cs_ev_pos = _arg; return *this; } Type & set__cs_ev_yaw( const bool & _arg) { this->cs_ev_yaw = _arg; return *this; } Type & set__cs_ev_hgt( const bool & _arg) { this->cs_ev_hgt = _arg; return *this; } Type & set__cs_fuse_beta( const bool & _arg) { this->cs_fuse_beta = _arg; return *this; } Type & set__cs_mag_field_disturbed( const bool & _arg) { this->cs_mag_field_disturbed = _arg; return *this; } Type & set__cs_fixed_wing( const bool & _arg) { this->cs_fixed_wing = _arg; return *this; } Type & set__cs_mag_fault( const bool & _arg) { this->cs_mag_fault = _arg; return *this; } Type & set__cs_fuse_aspd( const bool & _arg) { this->cs_fuse_aspd = _arg; return *this; } Type & set__cs_gnd_effect( const bool & _arg) { this->cs_gnd_effect = _arg; return *this; } Type & set__cs_rng_stuck( const bool & _arg) { this->cs_rng_stuck = _arg; return *this; } Type & set__cs_gps_yaw( const bool & _arg) { this->cs_gps_yaw = _arg; return *this; } Type & set__cs_mag_aligned_in_flight( const bool & _arg) { this->cs_mag_aligned_in_flight = _arg; return *this; } Type & set__cs_ev_vel( const bool & _arg) { this->cs_ev_vel = _arg; return *this; } Type & set__cs_synthetic_mag_z( const bool & _arg) { this->cs_synthetic_mag_z = _arg; return *this; } Type & set__cs_vehicle_at_rest( const bool & _arg) { this->cs_vehicle_at_rest = _arg; return *this; } Type & set__fault_status_changes( const uint32_t & _arg) { this->fault_status_changes = _arg; return *this; } Type & set__fs_bad_mag_x( const bool & _arg) { this->fs_bad_mag_x = _arg; return *this; } Type & set__fs_bad_mag_y( const bool & _arg) { this->fs_bad_mag_y = _arg; return *this; } Type & set__fs_bad_mag_z( const bool & _arg) { this->fs_bad_mag_z = _arg; return *this; } Type & set__fs_bad_hdg( const bool & _arg) { this->fs_bad_hdg = _arg; return *this; } Type & set__fs_bad_mag_decl( const bool & _arg) { this->fs_bad_mag_decl = _arg; return *this; } Type & set__fs_bad_airspeed( const bool & _arg) { this->fs_bad_airspeed = _arg; return *this; } Type & set__fs_bad_sideslip( const bool & _arg) { this->fs_bad_sideslip = _arg; return *this; } Type & set__fs_bad_optflow_x( const bool & _arg) { this->fs_bad_optflow_x = _arg; return *this; } Type & set__fs_bad_optflow_y( const bool & _arg) { this->fs_bad_optflow_y = _arg; return *this; } Type & set__fs_bad_vel_n( const bool & _arg) { this->fs_bad_vel_n = _arg; return *this; } Type & set__fs_bad_vel_e( const bool & _arg) { this->fs_bad_vel_e = _arg; return *this; } Type & set__fs_bad_vel_d( const bool & _arg) { this->fs_bad_vel_d = _arg; return *this; } Type & set__fs_bad_pos_n( const bool & _arg) { this->fs_bad_pos_n = _arg; return *this; } Type & set__fs_bad_pos_e( const bool & _arg) { this->fs_bad_pos_e = _arg; return *this; } Type & set__fs_bad_pos_d( const bool & _arg) { this->fs_bad_pos_d = _arg; return *this; } Type & set__fs_bad_acc_bias( const bool & _arg) { this->fs_bad_acc_bias = _arg; return *this; } Type & set__fs_bad_acc_vertical( const bool & _arg) { this->fs_bad_acc_vertical = _arg; return *this; } Type & set__fs_bad_acc_clipping( const bool & _arg) { this->fs_bad_acc_clipping = _arg; return *this; } Type & set__innovation_fault_status_changes( const uint32_t & _arg) { this->innovation_fault_status_changes = _arg; return *this; } Type & set__reject_hor_vel( const bool & _arg) { this->reject_hor_vel = _arg; return *this; } Type & set__reject_ver_vel( const bool & _arg) { this->reject_ver_vel = _arg; return *this; } Type & set__reject_hor_pos( const bool & _arg) { this->reject_hor_pos = _arg; return *this; } Type & set__reject_ver_pos( const bool & _arg) { this->reject_ver_pos = _arg; return *this; } Type & set__reject_mag_x( const bool & _arg) { this->reject_mag_x = _arg; return *this; } Type & set__reject_mag_y( const bool & _arg) { this->reject_mag_y = _arg; return *this; } Type & set__reject_mag_z( const bool & _arg) { this->reject_mag_z = _arg; return *this; } Type & set__reject_yaw( const bool & _arg) { this->reject_yaw = _arg; return *this; } Type & set__reject_airspeed( const bool & _arg) { this->reject_airspeed = _arg; return *this; } Type & set__reject_sideslip( const bool & _arg) { this->reject_sideslip = _arg; return *this; } Type & set__reject_hagl( const bool & _arg) { this->reject_hagl = _arg; return *this; } Type & set__reject_optflow_x( const bool & _arg) { this->reject_optflow_x = _arg; return *this; } Type & set__reject_optflow_y( const bool & _arg) { this->reject_optflow_y = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::EstimatorStatusFlags_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::EstimatorStatusFlags_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::EstimatorStatusFlags_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::EstimatorStatusFlags_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::EstimatorStatusFlags_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::EstimatorStatusFlags_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::EstimatorStatusFlags_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::EstimatorStatusFlags_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::EstimatorStatusFlags_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::EstimatorStatusFlags_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__EstimatorStatusFlags std::shared_ptr<px4_msgs::msg::EstimatorStatusFlags_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__EstimatorStatusFlags std::shared_ptr<px4_msgs::msg::EstimatorStatusFlags_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const EstimatorStatusFlags_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->timestamp_sample != other.timestamp_sample) { return false; } if (this->control_status_changes != other.control_status_changes) { return false; } if (this->cs_tilt_align != other.cs_tilt_align) { return false; } if (this->cs_yaw_align != other.cs_yaw_align) { return false; } if (this->cs_gps != other.cs_gps) { return false; } if (this->cs_opt_flow != other.cs_opt_flow) { return false; } if (this->cs_mag_hdg != other.cs_mag_hdg) { return false; } if (this->cs_mag_3d != other.cs_mag_3d) { return false; } if (this->cs_mag_dec != other.cs_mag_dec) { return false; } if (this->cs_in_air != other.cs_in_air) { return false; } if (this->cs_wind != other.cs_wind) { return false; } if (this->cs_baro_hgt != other.cs_baro_hgt) { return false; } if (this->cs_rng_hgt != other.cs_rng_hgt) { return false; } if (this->cs_gps_hgt != other.cs_gps_hgt) { return false; } if (this->cs_ev_pos != other.cs_ev_pos) { return false; } if (this->cs_ev_yaw != other.cs_ev_yaw) { return false; } if (this->cs_ev_hgt != other.cs_ev_hgt) { return false; } if (this->cs_fuse_beta != other.cs_fuse_beta) { return false; } if (this->cs_mag_field_disturbed != other.cs_mag_field_disturbed) { return false; } if (this->cs_fixed_wing != other.cs_fixed_wing) { return false; } if (this->cs_mag_fault != other.cs_mag_fault) { return false; } if (this->cs_fuse_aspd != other.cs_fuse_aspd) { return false; } if (this->cs_gnd_effect != other.cs_gnd_effect) { return false; } if (this->cs_rng_stuck != other.cs_rng_stuck) { return false; } if (this->cs_gps_yaw != other.cs_gps_yaw) { return false; } if (this->cs_mag_aligned_in_flight != other.cs_mag_aligned_in_flight) { return false; } if (this->cs_ev_vel != other.cs_ev_vel) { return false; } if (this->cs_synthetic_mag_z != other.cs_synthetic_mag_z) { return false; } if (this->cs_vehicle_at_rest != other.cs_vehicle_at_rest) { return false; } if (this->fault_status_changes != other.fault_status_changes) { return false; } if (this->fs_bad_mag_x != other.fs_bad_mag_x) { return false; } if (this->fs_bad_mag_y != other.fs_bad_mag_y) { return false; } if (this->fs_bad_mag_z != other.fs_bad_mag_z) { return false; } if (this->fs_bad_hdg != other.fs_bad_hdg) { return false; } if (this->fs_bad_mag_decl != other.fs_bad_mag_decl) { return false; } if (this->fs_bad_airspeed != other.fs_bad_airspeed) { return false; } if (this->fs_bad_sideslip != other.fs_bad_sideslip) { return false; } if (this->fs_bad_optflow_x != other.fs_bad_optflow_x) { return false; } if (this->fs_bad_optflow_y != other.fs_bad_optflow_y) { return false; } if (this->fs_bad_vel_n != other.fs_bad_vel_n) { return false; } if (this->fs_bad_vel_e != other.fs_bad_vel_e) { return false; } if (this->fs_bad_vel_d != other.fs_bad_vel_d) { return false; } if (this->fs_bad_pos_n != other.fs_bad_pos_n) { return false; } if (this->fs_bad_pos_e != other.fs_bad_pos_e) { return false; } if (this->fs_bad_pos_d != other.fs_bad_pos_d) { return false; } if (this->fs_bad_acc_bias != other.fs_bad_acc_bias) { return false; } if (this->fs_bad_acc_vertical != other.fs_bad_acc_vertical) { return false; } if (this->fs_bad_acc_clipping != other.fs_bad_acc_clipping) { return false; } if (this->innovation_fault_status_changes != other.innovation_fault_status_changes) { return false; } if (this->reject_hor_vel != other.reject_hor_vel) { return false; } if (this->reject_ver_vel != other.reject_ver_vel) { return false; } if (this->reject_hor_pos != other.reject_hor_pos) { return false; } if (this->reject_ver_pos != other.reject_ver_pos) { return false; } if (this->reject_mag_x != other.reject_mag_x) { return false; } if (this->reject_mag_y != other.reject_mag_y) { return false; } if (this->reject_mag_z != other.reject_mag_z) { return false; } if (this->reject_yaw != other.reject_yaw) { return false; } if (this->reject_airspeed != other.reject_airspeed) { return false; } if (this->reject_sideslip != other.reject_sideslip) { return false; } if (this->reject_hagl != other.reject_hagl) { return false; } if (this->reject_optflow_x != other.reject_optflow_x) { return false; } if (this->reject_optflow_y != other.reject_optflow_y) { return false; } return true; } bool operator!=(const EstimatorStatusFlags_ & other) const { return !this->operator==(other); } }; // struct EstimatorStatusFlags_ // alias to use template instance with default allocator using EstimatorStatusFlags = px4_msgs::msg::EstimatorStatusFlags_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__ESTIMATOR_STATUS_FLAGS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_gyro_fifo__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/SensorGyroFifo.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/sensor_gyro_fifo__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__SensorGyroFifo__init(px4_msgs__msg__SensorGyroFifo * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // device_id // dt // scale // samples // x // y // z return true; } void px4_msgs__msg__SensorGyroFifo__fini(px4_msgs__msg__SensorGyroFifo * msg) { if (!msg) { return; } // timestamp // timestamp_sample // device_id // dt // scale // samples // x // y // z } px4_msgs__msg__SensorGyroFifo * px4_msgs__msg__SensorGyroFifo__create() { px4_msgs__msg__SensorGyroFifo * msg = (px4_msgs__msg__SensorGyroFifo *)malloc(sizeof(px4_msgs__msg__SensorGyroFifo)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__SensorGyroFifo)); bool success = px4_msgs__msg__SensorGyroFifo__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__SensorGyroFifo__destroy(px4_msgs__msg__SensorGyroFifo * msg) { if (msg) { px4_msgs__msg__SensorGyroFifo__fini(msg); } free(msg); } bool px4_msgs__msg__SensorGyroFifo__Sequence__init(px4_msgs__msg__SensorGyroFifo__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__SensorGyroFifo * data = NULL; if (size) { data = (px4_msgs__msg__SensorGyroFifo *)calloc(size, sizeof(px4_msgs__msg__SensorGyroFifo)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__SensorGyroFifo__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__SensorGyroFifo__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__SensorGyroFifo__Sequence__fini(px4_msgs__msg__SensorGyroFifo__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__SensorGyroFifo__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__SensorGyroFifo__Sequence * px4_msgs__msg__SensorGyroFifo__Sequence__create(size_t size) { px4_msgs__msg__SensorGyroFifo__Sequence * array = (px4_msgs__msg__SensorGyroFifo__Sequence *)malloc(sizeof(px4_msgs__msg__SensorGyroFifo__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__SensorGyroFifo__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__SensorGyroFifo__Sequence__destroy(px4_msgs__msg__SensorGyroFifo__Sequence * array) { if (array) { px4_msgs__msg__SensorGyroFifo__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_global_position_groundtruth__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/VehicleGlobalPositionGroundtruth.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_global_position_groundtruth__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/vehicle_global_position_groundtruth__struct.h" #include "px4_msgs/msg/vehicle_global_position_groundtruth__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _VehicleGlobalPositionGroundtruth__ros_msg_type = px4_msgs__msg__VehicleGlobalPositionGroundtruth; static bool _VehicleGlobalPositionGroundtruth__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _VehicleGlobalPositionGroundtruth__ros_msg_type * ros_message = static_cast<const _VehicleGlobalPositionGroundtruth__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: timestamp_sample { cdr << ros_message->timestamp_sample; } // Field name: lat { cdr << ros_message->lat; } // Field name: lon { cdr << ros_message->lon; } // Field name: alt { cdr << ros_message->alt; } // Field name: alt_ellipsoid { cdr << ros_message->alt_ellipsoid; } // Field name: delta_alt { cdr << ros_message->delta_alt; } // Field name: lat_lon_reset_counter { cdr << ros_message->lat_lon_reset_counter; } // Field name: alt_reset_counter { cdr << ros_message->alt_reset_counter; } // Field name: eph { cdr << ros_message->eph; } // Field name: epv { cdr << ros_message->epv; } // Field name: terrain_alt { cdr << ros_message->terrain_alt; } // Field name: terrain_alt_valid { cdr << (ros_message->terrain_alt_valid ? true : false); } // Field name: dead_reckoning { cdr << (ros_message->dead_reckoning ? true : false); } return true; } static bool _VehicleGlobalPositionGroundtruth__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _VehicleGlobalPositionGroundtruth__ros_msg_type * ros_message = static_cast<_VehicleGlobalPositionGroundtruth__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: timestamp_sample { cdr >> ros_message->timestamp_sample; } // Field name: lat { cdr >> ros_message->lat; } // Field name: lon { cdr >> ros_message->lon; } // Field name: alt { cdr >> ros_message->alt; } // Field name: alt_ellipsoid { cdr >> ros_message->alt_ellipsoid; } // Field name: delta_alt { cdr >> ros_message->delta_alt; } // Field name: lat_lon_reset_counter { cdr >> ros_message->lat_lon_reset_counter; } // Field name: alt_reset_counter { cdr >> ros_message->alt_reset_counter; } // Field name: eph { cdr >> ros_message->eph; } // Field name: epv { cdr >> ros_message->epv; } // Field name: terrain_alt { cdr >> ros_message->terrain_alt; } // Field name: terrain_alt_valid { uint8_t tmp; cdr >> tmp; ros_message->terrain_alt_valid = tmp ? true : false; } // Field name: dead_reckoning { uint8_t tmp; cdr >> tmp; ros_message->dead_reckoning = tmp ? true : false; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__VehicleGlobalPositionGroundtruth( const void * untyped_ros_message, size_t current_alignment) { const _VehicleGlobalPositionGroundtruth__ros_msg_type * ros_message = static_cast<const _VehicleGlobalPositionGroundtruth__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name timestamp_sample { size_t item_size = sizeof(ros_message->timestamp_sample); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name lat { size_t item_size = sizeof(ros_message->lat); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name lon { size_t item_size = sizeof(ros_message->lon); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name alt { size_t item_size = sizeof(ros_message->alt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name alt_ellipsoid { size_t item_size = sizeof(ros_message->alt_ellipsoid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name delta_alt { size_t item_size = sizeof(ros_message->delta_alt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name lat_lon_reset_counter { size_t item_size = sizeof(ros_message->lat_lon_reset_counter); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name alt_reset_counter { size_t item_size = sizeof(ros_message->alt_reset_counter); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name eph { size_t item_size = sizeof(ros_message->eph); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name epv { size_t item_size = sizeof(ros_message->epv); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name terrain_alt { size_t item_size = sizeof(ros_message->terrain_alt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name terrain_alt_valid { size_t item_size = sizeof(ros_message->terrain_alt_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name dead_reckoning { size_t item_size = sizeof(ros_message->dead_reckoning); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _VehicleGlobalPositionGroundtruth__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__VehicleGlobalPositionGroundtruth( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__VehicleGlobalPositionGroundtruth( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: timestamp_sample { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: lat { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: lon { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: alt { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: alt_ellipsoid { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: delta_alt { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: lat_lon_reset_counter { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: alt_reset_counter { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: eph { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: epv { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: terrain_alt { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: terrain_alt_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: dead_reckoning { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _VehicleGlobalPositionGroundtruth__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__VehicleGlobalPositionGroundtruth( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_VehicleGlobalPositionGroundtruth = { "px4_msgs::msg", "VehicleGlobalPositionGroundtruth", _VehicleGlobalPositionGroundtruth__cdr_serialize, _VehicleGlobalPositionGroundtruth__cdr_deserialize, _VehicleGlobalPositionGroundtruth__get_serialized_size, _VehicleGlobalPositionGroundtruth__max_serialized_size }; static rosidl_message_type_support_t _VehicleGlobalPositionGroundtruth__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_VehicleGlobalPositionGroundtruth, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, VehicleGlobalPositionGroundtruth)() { return &_VehicleGlobalPositionGroundtruth__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/timesync_status__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/TimesyncStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/timesync_status__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/timesync_status__struct.h" #include "px4_msgs/msg/timesync_status__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _TimesyncStatus__ros_msg_type = px4_msgs__msg__TimesyncStatus; static bool _TimesyncStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _TimesyncStatus__ros_msg_type * ros_message = static_cast<const _TimesyncStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: remote_timestamp { cdr << ros_message->remote_timestamp; } // Field name: observed_offset { cdr << ros_message->observed_offset; } // Field name: estimated_offset { cdr << ros_message->estimated_offset; } // Field name: round_trip_time { cdr << ros_message->round_trip_time; } return true; } static bool _TimesyncStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _TimesyncStatus__ros_msg_type * ros_message = static_cast<_TimesyncStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: remote_timestamp { cdr >> ros_message->remote_timestamp; } // Field name: observed_offset { cdr >> ros_message->observed_offset; } // Field name: estimated_offset { cdr >> ros_message->estimated_offset; } // Field name: round_trip_time { cdr >> ros_message->round_trip_time; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__TimesyncStatus( const void * untyped_ros_message, size_t current_alignment) { const _TimesyncStatus__ros_msg_type * ros_message = static_cast<const _TimesyncStatus__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name remote_timestamp { size_t item_size = sizeof(ros_message->remote_timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name observed_offset { size_t item_size = sizeof(ros_message->observed_offset); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name estimated_offset { size_t item_size = sizeof(ros_message->estimated_offset); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name round_trip_time { size_t item_size = sizeof(ros_message->round_trip_time); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _TimesyncStatus__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__TimesyncStatus( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__TimesyncStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: remote_timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: observed_offset { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: estimated_offset { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: round_trip_time { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _TimesyncStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__TimesyncStatus( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_TimesyncStatus = { "px4_msgs::msg", "TimesyncStatus", _TimesyncStatus__cdr_serialize, _TimesyncStatus__cdr_deserialize, _TimesyncStatus__get_serialized_size, _TimesyncStatus__max_serialized_size }; static rosidl_message_type_support_t _TimesyncStatus__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_TimesyncStatus, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, TimesyncStatus)() { return &_TimesyncStatus__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_actuator_setpoint__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleActuatorSetpoint.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/vehicle_actuator_setpoint__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void VehicleActuatorSetpoint_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::VehicleActuatorSetpoint(_init); } void VehicleActuatorSetpoint_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::VehicleActuatorSetpoint *>(message_memory); typed_message->~VehicleActuatorSetpoint(); } size_t size_function__VehicleActuatorSetpoint__actuator(const void * untyped_member) { (void)untyped_member; return 16; } const void * get_const_function__VehicleActuatorSetpoint__actuator(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 16> *>(untyped_member); return &member[index]; } void * get_function__VehicleActuatorSetpoint__actuator(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 16> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember VehicleActuatorSetpoint_message_member_array[3] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleActuatorSetpoint, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleActuatorSetpoint, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "actuator", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 16, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleActuatorSetpoint, actuator), // bytes offset in struct nullptr, // default value size_function__VehicleActuatorSetpoint__actuator, // size() function pointer get_const_function__VehicleActuatorSetpoint__actuator, // get_const(index) function pointer get_function__VehicleActuatorSetpoint__actuator, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers VehicleActuatorSetpoint_message_members = { "px4_msgs::msg", // message namespace "VehicleActuatorSetpoint", // message name 3, // number of fields sizeof(px4_msgs::msg::VehicleActuatorSetpoint), VehicleActuatorSetpoint_message_member_array, // message members VehicleActuatorSetpoint_init_function, // function to initialize message memory (memory has to be allocated) VehicleActuatorSetpoint_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t VehicleActuatorSetpoint_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &VehicleActuatorSetpoint_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleActuatorSetpoint>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleActuatorSetpoint_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, VehicleActuatorSetpoint)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleActuatorSetpoint_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/position_controller_landing_status__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/PositionControllerLandingStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__POSITION_CONTROLLER_LANDING_STATUS__STRUCT_H_ #define PX4_MSGS__MSG__POSITION_CONTROLLER_LANDING_STATUS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/PositionControllerLandingStatus in the package px4_msgs. typedef struct px4_msgs__msg__PositionControllerLandingStatus { uint64_t timestamp; float horizontal_slope_displacement; float slope_angle_rad; float flare_length; bool abort_landing; } px4_msgs__msg__PositionControllerLandingStatus; // Struct for a sequence of px4_msgs__msg__PositionControllerLandingStatus. typedef struct px4_msgs__msg__PositionControllerLandingStatus__Sequence { px4_msgs__msg__PositionControllerLandingStatus * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__PositionControllerLandingStatus__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__POSITION_CONTROLLER_LANDING_STATUS__STRUCT_H_ <file_sep>/build/offboard_ibqr/CMakeFiles/offboard_control.dir/cmake_clean.cmake file(REMOVE_RECURSE "CMakeFiles/offboard_control.dir/src/offboard/offboard_control.cpp.o" "offboard_control.pdb" "offboard_control" ) # Per-language clean rules from dependency scanning. foreach(lang CXX) include(CMakeFiles/offboard_control.dir/cmake_clean_${lang}.cmake OPTIONAL) endforeach() <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/cpuload.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/Cpuload.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__CPULOAD_H_ #define PX4_MSGS__MSG__CPULOAD_H_ #include "px4_msgs/msg/cpuload__struct.h" #include "px4_msgs/msg/cpuload__functions.h" #include "px4_msgs/msg/cpuload__type_support.h" #endif // PX4_MSGS__MSG__CPULOAD_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/ekf_gps_drift__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/EkfGpsDrift.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/ekf_gps_drift__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__EkfGpsDrift__init(px4_msgs__msg__EkfGpsDrift * msg) { if (!msg) { return false; } // timestamp // hpos_drift_rate // vpos_drift_rate // hspd // blocked return true; } void px4_msgs__msg__EkfGpsDrift__fini(px4_msgs__msg__EkfGpsDrift * msg) { if (!msg) { return; } // timestamp // hpos_drift_rate // vpos_drift_rate // hspd // blocked } px4_msgs__msg__EkfGpsDrift * px4_msgs__msg__EkfGpsDrift__create() { px4_msgs__msg__EkfGpsDrift * msg = (px4_msgs__msg__EkfGpsDrift *)malloc(sizeof(px4_msgs__msg__EkfGpsDrift)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__EkfGpsDrift)); bool success = px4_msgs__msg__EkfGpsDrift__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__EkfGpsDrift__destroy(px4_msgs__msg__EkfGpsDrift * msg) { if (msg) { px4_msgs__msg__EkfGpsDrift__fini(msg); } free(msg); } bool px4_msgs__msg__EkfGpsDrift__Sequence__init(px4_msgs__msg__EkfGpsDrift__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__EkfGpsDrift * data = NULL; if (size) { data = (px4_msgs__msg__EkfGpsDrift *)calloc(size, sizeof(px4_msgs__msg__EkfGpsDrift)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__EkfGpsDrift__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__EkfGpsDrift__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__EkfGpsDrift__Sequence__fini(px4_msgs__msg__EkfGpsDrift__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__EkfGpsDrift__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__EkfGpsDrift__Sequence * px4_msgs__msg__EkfGpsDrift__Sequence__create(size_t size) { px4_msgs__msg__EkfGpsDrift__Sequence * array = (px4_msgs__msg__EkfGpsDrift__Sequence *)malloc(sizeof(px4_msgs__msg__EkfGpsDrift__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__EkfGpsDrift__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__EkfGpsDrift__Sequence__destroy(px4_msgs__msg__EkfGpsDrift__Sequence * array) { if (array) { px4_msgs__msg__EkfGpsDrift__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_esc_report_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/EscReport.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/esc_report__struct.h" #include "px4_msgs/msg/esc_report__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__esc_report__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[35]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._esc_report.EscReport", full_classname_dest, 34) == 0); } px4_msgs__msg__EscReport * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // esc_errorcount PyObject * field = PyObject_GetAttrString(_pymsg, "esc_errorcount"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->esc_errorcount = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // esc_rpm PyObject * field = PyObject_GetAttrString(_pymsg, "esc_rpm"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->esc_rpm = (int32_t)PyLong_AsLong(field); Py_DECREF(field); } { // esc_voltage PyObject * field = PyObject_GetAttrString(_pymsg, "esc_voltage"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->esc_voltage = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // esc_current PyObject * field = PyObject_GetAttrString(_pymsg, "esc_current"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->esc_current = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // esc_temperature PyObject * field = PyObject_GetAttrString(_pymsg, "esc_temperature"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->esc_temperature = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // esc_address PyObject * field = PyObject_GetAttrString(_pymsg, "esc_address"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->esc_address = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // esc_state PyObject * field = PyObject_GetAttrString(_pymsg, "esc_state"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->esc_state = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // failures PyObject * field = PyObject_GetAttrString(_pymsg, "failures"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->failures = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__esc_report__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of EscReport */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._esc_report"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "EscReport"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__EscReport * ros_message = (px4_msgs__msg__EscReport *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // esc_errorcount PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->esc_errorcount); { int rc = PyObject_SetAttrString(_pymessage, "esc_errorcount", field); Py_DECREF(field); if (rc) { return NULL; } } } { // esc_rpm PyObject * field = NULL; field = PyLong_FromLong(ros_message->esc_rpm); { int rc = PyObject_SetAttrString(_pymessage, "esc_rpm", field); Py_DECREF(field); if (rc) { return NULL; } } } { // esc_voltage PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->esc_voltage); { int rc = PyObject_SetAttrString(_pymessage, "esc_voltage", field); Py_DECREF(field); if (rc) { return NULL; } } } { // esc_current PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->esc_current); { int rc = PyObject_SetAttrString(_pymessage, "esc_current", field); Py_DECREF(field); if (rc) { return NULL; } } } { // esc_temperature PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->esc_temperature); { int rc = PyObject_SetAttrString(_pymessage, "esc_temperature", field); Py_DECREF(field); if (rc) { return NULL; } } } { // esc_address PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->esc_address); { int rc = PyObject_SetAttrString(_pymessage, "esc_address", field); Py_DECREF(field); if (rc) { return NULL; } } } { // esc_state PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->esc_state); { int rc = PyObject_SetAttrString(_pymessage, "esc_state", field); Py_DECREF(field); if (rc) { return NULL; } } } { // failures PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->failures); { int rc = PyObject_SetAttrString(_pymessage, "failures", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/satellite_info.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/SatelliteInfo.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SATELLITE_INFO_H_ #define PX4_MSGS__MSG__SATELLITE_INFO_H_ #include "px4_msgs/msg/satellite_info__struct.h" #include "px4_msgs/msg/satellite_info__functions.h" #include "px4_msgs/msg/satellite_info__type_support.h" #endif // PX4_MSGS__MSG__SATELLITE_INFO_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_global_position__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/EstimatorGlobalPosition.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/estimator_global_position__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void EstimatorGlobalPosition_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::EstimatorGlobalPosition(_init); } void EstimatorGlobalPosition_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::EstimatorGlobalPosition *>(message_memory); typed_message->~EstimatorGlobalPosition(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember EstimatorGlobalPosition_message_member_array[14] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorGlobalPosition, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorGlobalPosition, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "lat", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_DOUBLE, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorGlobalPosition, lat), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "lon", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_DOUBLE, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorGlobalPosition, lon), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "alt", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorGlobalPosition, alt), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "alt_ellipsoid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorGlobalPosition, alt_ellipsoid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "delta_alt", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorGlobalPosition, delta_alt), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "lat_lon_reset_counter", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorGlobalPosition, lat_lon_reset_counter), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "alt_reset_counter", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorGlobalPosition, alt_reset_counter), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "eph", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorGlobalPosition, eph), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "epv", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorGlobalPosition, epv), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "terrain_alt", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorGlobalPosition, terrain_alt), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "terrain_alt_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorGlobalPosition, terrain_alt_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "dead_reckoning", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorGlobalPosition, dead_reckoning), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers EstimatorGlobalPosition_message_members = { "px4_msgs::msg", // message namespace "EstimatorGlobalPosition", // message name 14, // number of fields sizeof(px4_msgs::msg::EstimatorGlobalPosition), EstimatorGlobalPosition_message_member_array, // message members EstimatorGlobalPosition_init_function, // function to initialize message memory (memory has to be allocated) EstimatorGlobalPosition_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t EstimatorGlobalPosition_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &EstimatorGlobalPosition_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::EstimatorGlobalPosition>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EstimatorGlobalPosition_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, EstimatorGlobalPosition)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EstimatorGlobalPosition_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_attitude__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleAttitude.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ATTITUDE__STRUCT_H_ #define PX4_MSGS__MSG__VEHICLE_ATTITUDE__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/VehicleAttitude in the package px4_msgs. typedef struct px4_msgs__msg__VehicleAttitude { uint64_t timestamp; uint64_t timestamp_sample; float q[4]; float delta_q_reset[4]; uint8_t quat_reset_counter; } px4_msgs__msg__VehicleAttitude; // Struct for a sequence of px4_msgs__msg__VehicleAttitude. typedef struct px4_msgs__msg__VehicleAttitude__Sequence { px4_msgs__msg__VehicleAttitude * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__VehicleAttitude__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_ATTITUDE__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/orb_multitest.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/OrbMultitest.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORB_MULTITEST_H_ #define PX4_MSGS__MSG__ORB_MULTITEST_H_ #include "px4_msgs/msg/orb_multitest__struct.h" #include "px4_msgs/msg/orb_multitest__functions.h" #include "px4_msgs/msg/orb_multitest__type_support.h" #endif // PX4_MSGS__MSG__ORB_MULTITEST_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/VehicleAngularAccelerationSetpoint.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_angular_acceleration_setpoint__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/vehicle_angular_acceleration_setpoint__struct.h" #include "px4_msgs/msg/vehicle_angular_acceleration_setpoint__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _VehicleAngularAccelerationSetpoint__ros_msg_type = px4_msgs__msg__VehicleAngularAccelerationSetpoint; static bool _VehicleAngularAccelerationSetpoint__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _VehicleAngularAccelerationSetpoint__ros_msg_type * ros_message = static_cast<const _VehicleAngularAccelerationSetpoint__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: timestamp_sample { cdr << ros_message->timestamp_sample; } // Field name: xyz { size_t size = 3; auto array_ptr = ros_message->xyz; cdr.serializeArray(array_ptr, size); } return true; } static bool _VehicleAngularAccelerationSetpoint__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _VehicleAngularAccelerationSetpoint__ros_msg_type * ros_message = static_cast<_VehicleAngularAccelerationSetpoint__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: timestamp_sample { cdr >> ros_message->timestamp_sample; } // Field name: xyz { size_t size = 3; auto array_ptr = ros_message->xyz; cdr.deserializeArray(array_ptr, size); } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__VehicleAngularAccelerationSetpoint( const void * untyped_ros_message, size_t current_alignment) { const _VehicleAngularAccelerationSetpoint__ros_msg_type * ros_message = static_cast<const _VehicleAngularAccelerationSetpoint__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name timestamp_sample { size_t item_size = sizeof(ros_message->timestamp_sample); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name xyz { size_t array_size = 3; auto array_ptr = ros_message->xyz; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _VehicleAngularAccelerationSetpoint__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__VehicleAngularAccelerationSetpoint( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__VehicleAngularAccelerationSetpoint( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: timestamp_sample { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: xyz { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _VehicleAngularAccelerationSetpoint__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__VehicleAngularAccelerationSetpoint( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_VehicleAngularAccelerationSetpoint = { "px4_msgs::msg", "VehicleAngularAccelerationSetpoint", _VehicleAngularAccelerationSetpoint__cdr_serialize, _VehicleAngularAccelerationSetpoint__cdr_deserialize, _VehicleAngularAccelerationSetpoint__get_serialized_size, _VehicleAngularAccelerationSetpoint__max_serialized_size }; static rosidl_message_type_support_t _VehicleAngularAccelerationSetpoint__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_VehicleAngularAccelerationSetpoint, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, VehicleAngularAccelerationSetpoint)() { return &_VehicleAngularAccelerationSetpoint__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/trajectory_bezier.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TRAJECTORY_BEZIER_HPP_ #define PX4_MSGS__MSG__TRAJECTORY_BEZIER_HPP_ #include "px4_msgs/msg/trajectory_bezier__struct.hpp" #include "px4_msgs/msg/trajectory_bezier__traits.hpp" #endif // PX4_MSGS__MSG__TRAJECTORY_BEZIER_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_distance_sensor_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/DistanceSensor.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/distance_sensor__struct.h" #include "px4_msgs/msg/distance_sensor__functions.h" #include "rosidl_generator_c/primitives_sequence.h" #include "rosidl_generator_c/primitives_sequence_functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__distance_sensor__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[45]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._distance_sensor.DistanceSensor", full_classname_dest, 44) == 0); } px4_msgs__msg__DistanceSensor * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // device_id PyObject * field = PyObject_GetAttrString(_pymsg, "device_id"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->device_id = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // min_distance PyObject * field = PyObject_GetAttrString(_pymsg, "min_distance"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->min_distance = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // max_distance PyObject * field = PyObject_GetAttrString(_pymsg, "max_distance"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->max_distance = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // current_distance PyObject * field = PyObject_GetAttrString(_pymsg, "current_distance"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->current_distance = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // variance PyObject * field = PyObject_GetAttrString(_pymsg, "variance"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->variance = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // signal_quality PyObject * field = PyObject_GetAttrString(_pymsg, "signal_quality"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->signal_quality = (int8_t)PyLong_AsLong(field); Py_DECREF(field); } { // type PyObject * field = PyObject_GetAttrString(_pymsg, "type"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->type = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // h_fov PyObject * field = PyObject_GetAttrString(_pymsg, "h_fov"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->h_fov = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // v_fov PyObject * field = PyObject_GetAttrString(_pymsg, "v_fov"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->v_fov = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // q PyObject * field = PyObject_GetAttrString(_pymsg, "q"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); Py_ssize_t size = 4; float * dest = ros_message->q; for (Py_ssize_t i = 0; i < size; ++i) { float tmp = *(npy_float32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(float)); } Py_DECREF(seq_field); Py_DECREF(field); } { // orientation PyObject * field = PyObject_GetAttrString(_pymsg, "orientation"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->orientation = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__distance_sensor__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of DistanceSensor */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._distance_sensor"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "DistanceSensor"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__DistanceSensor * ros_message = (px4_msgs__msg__DistanceSensor *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // device_id PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->device_id); { int rc = PyObject_SetAttrString(_pymessage, "device_id", field); Py_DECREF(field); if (rc) { return NULL; } } } { // min_distance PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->min_distance); { int rc = PyObject_SetAttrString(_pymessage, "min_distance", field); Py_DECREF(field); if (rc) { return NULL; } } } { // max_distance PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->max_distance); { int rc = PyObject_SetAttrString(_pymessage, "max_distance", field); Py_DECREF(field); if (rc) { return NULL; } } } { // current_distance PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->current_distance); { int rc = PyObject_SetAttrString(_pymessage, "current_distance", field); Py_DECREF(field); if (rc) { return NULL; } } } { // variance PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->variance); { int rc = PyObject_SetAttrString(_pymessage, "variance", field); Py_DECREF(field); if (rc) { return NULL; } } } { // signal_quality PyObject * field = NULL; field = PyLong_FromLong(ros_message->signal_quality); { int rc = PyObject_SetAttrString(_pymessage, "signal_quality", field); Py_DECREF(field); if (rc) { return NULL; } } } { // type PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->type); { int rc = PyObject_SetAttrString(_pymessage, "type", field); Py_DECREF(field); if (rc) { return NULL; } } } { // h_fov PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->h_fov); { int rc = PyObject_SetAttrString(_pymessage, "h_fov", field); Py_DECREF(field); if (rc) { return NULL; } } } { // v_fov PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->v_fov); { int rc = PyObject_SetAttrString(_pymessage, "v_fov", field); Py_DECREF(field); if (rc) { return NULL; } } } { // q PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "q"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); assert(sizeof(npy_float32) == sizeof(float)); npy_float32 * dst = (npy_float32 *)PyArray_GETPTR1(seq_field, 0); float * src = &(ros_message->q[0]); memcpy(dst, src, 4 * sizeof(float)); Py_DECREF(field); } { // orientation PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->orientation); { int rc = PyObject_SetAttrString(_pymessage, "orientation", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/mc_virtual_attitude_setpoint__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/McVirtualAttitudeSetpoint.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/mc_virtual_attitude_setpoint__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/mc_virtual_attitude_setpoint__functions.h" #include "px4_msgs/msg/mc_virtual_attitude_setpoint__struct.h" #ifdef __cplusplus extern "C" { #endif void McVirtualAttitudeSetpoint__rosidl_typesupport_introspection_c__McVirtualAttitudeSetpoint_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__McVirtualAttitudeSetpoint__init(message_memory); } void McVirtualAttitudeSetpoint__rosidl_typesupport_introspection_c__McVirtualAttitudeSetpoint_fini_function(void * message_memory) { px4_msgs__msg__McVirtualAttitudeSetpoint__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember McVirtualAttitudeSetpoint__rosidl_typesupport_introspection_c__McVirtualAttitudeSetpoint_message_member_array[12] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__McVirtualAttitudeSetpoint, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "roll_body", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__McVirtualAttitudeSetpoint, roll_body), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "pitch_body", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__McVirtualAttitudeSetpoint, pitch_body), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yaw_body", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__McVirtualAttitudeSetpoint, yaw_body), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yaw_sp_move_rate", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__McVirtualAttitudeSetpoint, yaw_sp_move_rate), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "q_d", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__McVirtualAttitudeSetpoint, q_d), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "thrust_body", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__McVirtualAttitudeSetpoint, thrust_body), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "roll_reset_integral", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__McVirtualAttitudeSetpoint, roll_reset_integral), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "pitch_reset_integral", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__McVirtualAttitudeSetpoint, pitch_reset_integral), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yaw_reset_integral", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__McVirtualAttitudeSetpoint, yaw_reset_integral), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "fw_control_yaw", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__McVirtualAttitudeSetpoint, fw_control_yaw), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "apply_flaps", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__McVirtualAttitudeSetpoint, apply_flaps), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers McVirtualAttitudeSetpoint__rosidl_typesupport_introspection_c__McVirtualAttitudeSetpoint_message_members = { "px4_msgs__msg", // message namespace "McVirtualAttitudeSetpoint", // message name 12, // number of fields sizeof(px4_msgs__msg__McVirtualAttitudeSetpoint), McVirtualAttitudeSetpoint__rosidl_typesupport_introspection_c__McVirtualAttitudeSetpoint_message_member_array, // message members McVirtualAttitudeSetpoint__rosidl_typesupport_introspection_c__McVirtualAttitudeSetpoint_init_function, // function to initialize message memory (memory has to be allocated) McVirtualAttitudeSetpoint__rosidl_typesupport_introspection_c__McVirtualAttitudeSetpoint_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t McVirtualAttitudeSetpoint__rosidl_typesupport_introspection_c__McVirtualAttitudeSetpoint_message_type_support_handle = { 0, &McVirtualAttitudeSetpoint__rosidl_typesupport_introspection_c__McVirtualAttitudeSetpoint_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, McVirtualAttitudeSetpoint)() { if (!McVirtualAttitudeSetpoint__rosidl_typesupport_introspection_c__McVirtualAttitudeSetpoint_message_type_support_handle.typesupport_identifier) { McVirtualAttitudeSetpoint__rosidl_typesupport_introspection_c__McVirtualAttitudeSetpoint_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &McVirtualAttitudeSetpoint__rosidl_typesupport_introspection_c__McVirtualAttitudeSetpoint_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_angular_velocity.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ANGULAR_VELOCITY_HPP_ #define PX4_MSGS__MSG__VEHICLE_ANGULAR_VELOCITY_HPP_ #include "px4_msgs/msg/vehicle_angular_velocity__struct.hpp" #include "px4_msgs/msg/vehicle_angular_velocity__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_ANGULAR_VELOCITY_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_air_data__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleAirData.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_air_data__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__VehicleAirData__init(px4_msgs__msg__VehicleAirData * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // baro_device_id // baro_alt_meter // baro_temp_celcius // baro_pressure_pa // rho return true; } void px4_msgs__msg__VehicleAirData__fini(px4_msgs__msg__VehicleAirData * msg) { if (!msg) { return; } // timestamp // timestamp_sample // baro_device_id // baro_alt_meter // baro_temp_celcius // baro_pressure_pa // rho } px4_msgs__msg__VehicleAirData * px4_msgs__msg__VehicleAirData__create() { px4_msgs__msg__VehicleAirData * msg = (px4_msgs__msg__VehicleAirData *)malloc(sizeof(px4_msgs__msg__VehicleAirData)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleAirData)); bool success = px4_msgs__msg__VehicleAirData__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleAirData__destroy(px4_msgs__msg__VehicleAirData * msg) { if (msg) { px4_msgs__msg__VehicleAirData__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleAirData__Sequence__init(px4_msgs__msg__VehicleAirData__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleAirData * data = NULL; if (size) { data = (px4_msgs__msg__VehicleAirData *)calloc(size, sizeof(px4_msgs__msg__VehicleAirData)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleAirData__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleAirData__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleAirData__Sequence__fini(px4_msgs__msg__VehicleAirData__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleAirData__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleAirData__Sequence * px4_msgs__msg__VehicleAirData__Sequence__create(size_t size) { px4_msgs__msg__VehicleAirData__Sequence * array = (px4_msgs__msg__VehicleAirData__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleAirData__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleAirData__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleAirData__Sequence__destroy(px4_msgs__msg__VehicleAirData__Sequence * array) { if (array) { px4_msgs__msg__VehicleAirData__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/camera_capture__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/CameraCapture.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/camera_capture__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__CameraCapture__init(px4_msgs__msg__CameraCapture * msg) { if (!msg) { return false; } // timestamp // timestamp_utc // seq // lat // lon // alt // ground_distance // q // result return true; } void px4_msgs__msg__CameraCapture__fini(px4_msgs__msg__CameraCapture * msg) { if (!msg) { return; } // timestamp // timestamp_utc // seq // lat // lon // alt // ground_distance // q // result } px4_msgs__msg__CameraCapture * px4_msgs__msg__CameraCapture__create() { px4_msgs__msg__CameraCapture * msg = (px4_msgs__msg__CameraCapture *)malloc(sizeof(px4_msgs__msg__CameraCapture)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__CameraCapture)); bool success = px4_msgs__msg__CameraCapture__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__CameraCapture__destroy(px4_msgs__msg__CameraCapture * msg) { if (msg) { px4_msgs__msg__CameraCapture__fini(msg); } free(msg); } bool px4_msgs__msg__CameraCapture__Sequence__init(px4_msgs__msg__CameraCapture__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__CameraCapture * data = NULL; if (size) { data = (px4_msgs__msg__CameraCapture *)calloc(size, sizeof(px4_msgs__msg__CameraCapture)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__CameraCapture__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__CameraCapture__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__CameraCapture__Sequence__fini(px4_msgs__msg__CameraCapture__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__CameraCapture__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__CameraCapture__Sequence * px4_msgs__msg__CameraCapture__Sequence__create(size_t size) { px4_msgs__msg__CameraCapture__Sequence * array = (px4_msgs__msg__CameraCapture__Sequence *)malloc(sizeof(px4_msgs__msg__CameraCapture__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__CameraCapture__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__CameraCapture__Sequence__destroy(px4_msgs__msg__CameraCapture__Sequence * array) { if (array) { px4_msgs__msg__CameraCapture__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/onboard_computer_status.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ONBOARD_COMPUTER_STATUS_HPP_ #define PX4_MSGS__MSG__ONBOARD_COMPUTER_STATUS_HPP_ #include "px4_msgs/msg/onboard_computer_status__struct.hpp" #include "px4_msgs/msg/onboard_computer_status__traits.hpp" #endif // PX4_MSGS__MSG__ONBOARD_COMPUTER_STATUS_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/obstacle_distance_fused.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/ObstacleDistanceFused.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__OBSTACLE_DISTANCE_FUSED_H_ #define PX4_MSGS__MSG__OBSTACLE_DISTANCE_FUSED_H_ #include "px4_msgs/msg/obstacle_distance_fused__struct.h" #include "px4_msgs/msg/obstacle_distance_fused__functions.h" #include "px4_msgs/msg/obstacle_distance_fused__type_support.h" #endif // PX4_MSGS__MSG__OBSTACLE_DISTANCE_FUSED_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/landing_target_pose.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__LANDING_TARGET_POSE_HPP_ #define PX4_MSGS__MSG__LANDING_TARGET_POSE_HPP_ #include "px4_msgs/msg/landing_target_pose__struct.hpp" #include "px4_msgs/msg/landing_target_pose__traits.hpp" #endif // PX4_MSGS__MSG__LANDING_TARGET_POSE_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_optical_flow_vel__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/EstimatorOpticalFlowVel.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/estimator_optical_flow_vel__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/estimator_optical_flow_vel__struct.h" #include "px4_msgs/msg/estimator_optical_flow_vel__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _EstimatorOpticalFlowVel__ros_msg_type = px4_msgs__msg__EstimatorOpticalFlowVel; static bool _EstimatorOpticalFlowVel__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _EstimatorOpticalFlowVel__ros_msg_type * ros_message = static_cast<const _EstimatorOpticalFlowVel__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: timestamp_sample { cdr << ros_message->timestamp_sample; } // Field name: vel_body { size_t size = 2; auto array_ptr = ros_message->vel_body; cdr.serializeArray(array_ptr, size); } // Field name: vel_ne { size_t size = 2; auto array_ptr = ros_message->vel_ne; cdr.serializeArray(array_ptr, size); } // Field name: flow_uncompensated_integral { size_t size = 2; auto array_ptr = ros_message->flow_uncompensated_integral; cdr.serializeArray(array_ptr, size); } // Field name: flow_compensated_integral { size_t size = 2; auto array_ptr = ros_message->flow_compensated_integral; cdr.serializeArray(array_ptr, size); } // Field name: gyro_rate_integral { size_t size = 3; auto array_ptr = ros_message->gyro_rate_integral; cdr.serializeArray(array_ptr, size); } return true; } static bool _EstimatorOpticalFlowVel__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _EstimatorOpticalFlowVel__ros_msg_type * ros_message = static_cast<_EstimatorOpticalFlowVel__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: timestamp_sample { cdr >> ros_message->timestamp_sample; } // Field name: vel_body { size_t size = 2; auto array_ptr = ros_message->vel_body; cdr.deserializeArray(array_ptr, size); } // Field name: vel_ne { size_t size = 2; auto array_ptr = ros_message->vel_ne; cdr.deserializeArray(array_ptr, size); } // Field name: flow_uncompensated_integral { size_t size = 2; auto array_ptr = ros_message->flow_uncompensated_integral; cdr.deserializeArray(array_ptr, size); } // Field name: flow_compensated_integral { size_t size = 2; auto array_ptr = ros_message->flow_compensated_integral; cdr.deserializeArray(array_ptr, size); } // Field name: gyro_rate_integral { size_t size = 3; auto array_ptr = ros_message->gyro_rate_integral; cdr.deserializeArray(array_ptr, size); } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__EstimatorOpticalFlowVel( const void * untyped_ros_message, size_t current_alignment) { const _EstimatorOpticalFlowVel__ros_msg_type * ros_message = static_cast<const _EstimatorOpticalFlowVel__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name timestamp_sample { size_t item_size = sizeof(ros_message->timestamp_sample); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vel_body { size_t array_size = 2; auto array_ptr = ros_message->vel_body; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vel_ne { size_t array_size = 2; auto array_ptr = ros_message->vel_ne; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name flow_uncompensated_integral { size_t array_size = 2; auto array_ptr = ros_message->flow_uncompensated_integral; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name flow_compensated_integral { size_t array_size = 2; auto array_ptr = ros_message->flow_compensated_integral; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gyro_rate_integral { size_t array_size = 3; auto array_ptr = ros_message->gyro_rate_integral; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _EstimatorOpticalFlowVel__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__EstimatorOpticalFlowVel( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__EstimatorOpticalFlowVel( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: timestamp_sample { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: vel_body { size_t array_size = 2; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: vel_ne { size_t array_size = 2; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: flow_uncompensated_integral { size_t array_size = 2; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: flow_compensated_integral { size_t array_size = 2; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gyro_rate_integral { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _EstimatorOpticalFlowVel__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__EstimatorOpticalFlowVel( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_EstimatorOpticalFlowVel = { "px4_msgs::msg", "EstimatorOpticalFlowVel", _EstimatorOpticalFlowVel__cdr_serialize, _EstimatorOpticalFlowVel__cdr_deserialize, _EstimatorOpticalFlowVel__get_serialized_size, _EstimatorOpticalFlowVel__max_serialized_size }; static rosidl_message_type_support_t _EstimatorOpticalFlowVel__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_EstimatorOpticalFlowVel, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, EstimatorOpticalFlowVel)() { return &_EstimatorOpticalFlowVel__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_ping_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/Ping.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/ping__struct.h" #include "px4_msgs/msg/ping__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__ping__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[24]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._ping.Ping", full_classname_dest, 23) == 0); } px4_msgs__msg__Ping * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // ping_time PyObject * field = PyObject_GetAttrString(_pymsg, "ping_time"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->ping_time = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // ping_sequence PyObject * field = PyObject_GetAttrString(_pymsg, "ping_sequence"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->ping_sequence = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // dropped_packets PyObject * field = PyObject_GetAttrString(_pymsg, "dropped_packets"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->dropped_packets = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // rtt_ms PyObject * field = PyObject_GetAttrString(_pymsg, "rtt_ms"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->rtt_ms = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // system_id PyObject * field = PyObject_GetAttrString(_pymsg, "system_id"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->system_id = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // component_id PyObject * field = PyObject_GetAttrString(_pymsg, "component_id"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->component_id = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__ping__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of Ping */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._ping"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "Ping"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__Ping * ros_message = (px4_msgs__msg__Ping *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // ping_time PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->ping_time); { int rc = PyObject_SetAttrString(_pymessage, "ping_time", field); Py_DECREF(field); if (rc) { return NULL; } } } { // ping_sequence PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->ping_sequence); { int rc = PyObject_SetAttrString(_pymessage, "ping_sequence", field); Py_DECREF(field); if (rc) { return NULL; } } } { // dropped_packets PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->dropped_packets); { int rc = PyObject_SetAttrString(_pymessage, "dropped_packets", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rtt_ms PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->rtt_ms); { int rc = PyObject_SetAttrString(_pymessage, "rtt_ms", field); Py_DECREF(field); if (rc) { return NULL; } } } { // system_id PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->system_id); { int rc = PyObject_SetAttrString(_pymessage, "system_id", field); Py_DECREF(field); if (rc) { return NULL; } } } { // component_id PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->component_id); { int rc = PyObject_SetAttrString(_pymessage, "component_id", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/pwm_input__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/PwmInput.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__PWM_INPUT__FUNCTIONS_H_ #define PX4_MSGS__MSG__PWM_INPUT__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/pwm_input__struct.h" /// Initialize msg/PwmInput message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__PwmInput * )) before or use * px4_msgs__msg__PwmInput__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__PwmInput__init(px4_msgs__msg__PwmInput * msg); /// Finalize msg/PwmInput message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__PwmInput__fini(px4_msgs__msg__PwmInput * msg); /// Create msg/PwmInput message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__PwmInput__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__PwmInput * px4_msgs__msg__PwmInput__create(); /// Destroy msg/PwmInput message. /** * It calls * px4_msgs__msg__PwmInput__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__PwmInput__destroy(px4_msgs__msg__PwmInput * msg); /// Initialize array of msg/PwmInput messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__PwmInput__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__PwmInput__Sequence__init(px4_msgs__msg__PwmInput__Sequence * array, size_t size); /// Finalize array of msg/PwmInput messages. /** * It calls * px4_msgs__msg__PwmInput__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__PwmInput__Sequence__fini(px4_msgs__msg__PwmInput__Sequence * array); /// Create array of msg/PwmInput messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__PwmInput__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__PwmInput__Sequence * px4_msgs__msg__PwmInput__Sequence__create(size_t size); /// Destroy array of msg/PwmInput messages. /** * It calls * px4_msgs__msg__PwmInput__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__PwmInput__Sequence__destroy(px4_msgs__msg__PwmInput__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__PWM_INPUT__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/manual_control_switches__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/ManualControlSwitches.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/manual_control_switches__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__ManualControlSwitches__init(px4_msgs__msg__ManualControlSwitches * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // mode_slot // arm_switch // return_switch // loiter_switch // offboard_switch // kill_switch // gear_switch // transition_switch // mode_switch // man_switch // acro_switch // stab_switch // posctl_switch // switch_changes return true; } void px4_msgs__msg__ManualControlSwitches__fini(px4_msgs__msg__ManualControlSwitches * msg) { if (!msg) { return; } // timestamp // timestamp_sample // mode_slot // arm_switch // return_switch // loiter_switch // offboard_switch // kill_switch // gear_switch // transition_switch // mode_switch // man_switch // acro_switch // stab_switch // posctl_switch // switch_changes } px4_msgs__msg__ManualControlSwitches * px4_msgs__msg__ManualControlSwitches__create() { px4_msgs__msg__ManualControlSwitches * msg = (px4_msgs__msg__ManualControlSwitches *)malloc(sizeof(px4_msgs__msg__ManualControlSwitches)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__ManualControlSwitches)); bool success = px4_msgs__msg__ManualControlSwitches__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__ManualControlSwitches__destroy(px4_msgs__msg__ManualControlSwitches * msg) { if (msg) { px4_msgs__msg__ManualControlSwitches__fini(msg); } free(msg); } bool px4_msgs__msg__ManualControlSwitches__Sequence__init(px4_msgs__msg__ManualControlSwitches__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__ManualControlSwitches * data = NULL; if (size) { data = (px4_msgs__msg__ManualControlSwitches *)calloc(size, sizeof(px4_msgs__msg__ManualControlSwitches)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__ManualControlSwitches__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__ManualControlSwitches__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__ManualControlSwitches__Sequence__fini(px4_msgs__msg__ManualControlSwitches__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__ManualControlSwitches__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__ManualControlSwitches__Sequence * px4_msgs__msg__ManualControlSwitches__Sequence__create(size_t size) { px4_msgs__msg__ManualControlSwitches__Sequence * array = (px4_msgs__msg__ManualControlSwitches__Sequence *)malloc(sizeof(px4_msgs__msg__ManualControlSwitches__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__ManualControlSwitches__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__ManualControlSwitches__Sequence__destroy(px4_msgs__msg__ManualControlSwitches__Sequence * array) { if (array) { px4_msgs__msg__ManualControlSwitches__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/position_setpoint_triplet__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/PositionSetpointTriplet.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/position_setpoint_triplet__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/position_setpoint_triplet__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool cdr_serialize( const px4_msgs::msg::PositionSetpoint &, eprosima::fastcdr::Cdr &); bool cdr_deserialize( eprosima::fastcdr::Cdr &, px4_msgs::msg::PositionSetpoint &); size_t get_serialized_size( const px4_msgs::msg::PositionSetpoint &, size_t current_alignment); size_t max_serialized_size_PositionSetpoint( bool & full_bounded, size_t current_alignment); } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool cdr_serialize( const px4_msgs::msg::PositionSetpoint &, eprosima::fastcdr::Cdr &); bool cdr_deserialize( eprosima::fastcdr::Cdr &, px4_msgs::msg::PositionSetpoint &); size_t get_serialized_size( const px4_msgs::msg::PositionSetpoint &, size_t current_alignment); size_t max_serialized_size_PositionSetpoint( bool & full_bounded, size_t current_alignment); } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool cdr_serialize( const px4_msgs::msg::PositionSetpoint &, eprosima::fastcdr::Cdr &); bool cdr_deserialize( eprosima::fastcdr::Cdr &, px4_msgs::msg::PositionSetpoint &); size_t get_serialized_size( const px4_msgs::msg::PositionSetpoint &, size_t current_alignment); size_t max_serialized_size_PositionSetpoint( bool & full_bounded, size_t current_alignment); } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::PositionSetpointTriplet & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: previous px4_msgs::msg::typesupport_fastrtps_cpp::cdr_serialize( ros_message.previous, cdr); // Member: current px4_msgs::msg::typesupport_fastrtps_cpp::cdr_serialize( ros_message.current, cdr); // Member: next px4_msgs::msg::typesupport_fastrtps_cpp::cdr_serialize( ros_message.next, cdr); return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::PositionSetpointTriplet & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: previous px4_msgs::msg::typesupport_fastrtps_cpp::cdr_deserialize( cdr, ros_message.previous); // Member: current px4_msgs::msg::typesupport_fastrtps_cpp::cdr_deserialize( cdr, ros_message.current); // Member: next px4_msgs::msg::typesupport_fastrtps_cpp::cdr_deserialize( cdr, ros_message.next); return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::PositionSetpointTriplet & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: previous current_alignment += px4_msgs::msg::typesupport_fastrtps_cpp::get_serialized_size( ros_message.previous, current_alignment); // Member: current current_alignment += px4_msgs::msg::typesupport_fastrtps_cpp::get_serialized_size( ros_message.current, current_alignment); // Member: next current_alignment += px4_msgs::msg::typesupport_fastrtps_cpp::get_serialized_size( ros_message.next, current_alignment); return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_PositionSetpointTriplet( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: previous { size_t array_size = 1; for (size_t index = 0; index < array_size; ++index) { current_alignment += px4_msgs::msg::typesupport_fastrtps_cpp::max_serialized_size_PositionSetpoint( full_bounded, current_alignment); } } // Member: current { size_t array_size = 1; for (size_t index = 0; index < array_size; ++index) { current_alignment += px4_msgs::msg::typesupport_fastrtps_cpp::max_serialized_size_PositionSetpoint( full_bounded, current_alignment); } } // Member: next { size_t array_size = 1; for (size_t index = 0; index < array_size; ++index) { current_alignment += px4_msgs::msg::typesupport_fastrtps_cpp::max_serialized_size_PositionSetpoint( full_bounded, current_alignment); } } return current_alignment - initial_alignment; } static bool _PositionSetpointTriplet__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::PositionSetpointTriplet *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _PositionSetpointTriplet__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::PositionSetpointTriplet *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _PositionSetpointTriplet__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::PositionSetpointTriplet *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _PositionSetpointTriplet__max_serialized_size(bool & full_bounded) { return max_serialized_size_PositionSetpointTriplet(full_bounded, 0); } static message_type_support_callbacks_t _PositionSetpointTriplet__callbacks = { "px4_msgs::msg", "PositionSetpointTriplet", _PositionSetpointTriplet__cdr_serialize, _PositionSetpointTriplet__cdr_deserialize, _PositionSetpointTriplet__get_serialized_size, _PositionSetpointTriplet__max_serialized_size }; static rosidl_message_type_support_t _PositionSetpointTriplet__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_PositionSetpointTriplet__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::PositionSetpointTriplet>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_PositionSetpointTriplet__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, PositionSetpointTriplet)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_PositionSetpointTriplet__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/McVirtualAttitudeSetpoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__MC_VIRTUAL_ATTITUDE_SETPOINT__STRUCT_HPP_ #define PX4_MSGS__MSG__MC_VIRTUAL_ATTITUDE_SETPOINT__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__McVirtualAttitudeSetpoint __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__McVirtualAttitudeSetpoint __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct McVirtualAttitudeSetpoint_ { using Type = McVirtualAttitudeSetpoint_<ContainerAllocator>; explicit McVirtualAttitudeSetpoint_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->roll_body = 0.0f; this->pitch_body = 0.0f; this->yaw_body = 0.0f; this->yaw_sp_move_rate = 0.0f; std::fill<typename std::array<float, 4>::iterator, float>(this->q_d.begin(), this->q_d.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->thrust_body.begin(), this->thrust_body.end(), 0.0f); this->roll_reset_integral = false; this->pitch_reset_integral = false; this->yaw_reset_integral = false; this->fw_control_yaw = false; this->apply_flaps = 0; } } explicit McVirtualAttitudeSetpoint_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : q_d(_alloc), thrust_body(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->roll_body = 0.0f; this->pitch_body = 0.0f; this->yaw_body = 0.0f; this->yaw_sp_move_rate = 0.0f; std::fill<typename std::array<float, 4>::iterator, float>(this->q_d.begin(), this->q_d.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->thrust_body.begin(), this->thrust_body.end(), 0.0f); this->roll_reset_integral = false; this->pitch_reset_integral = false; this->yaw_reset_integral = false; this->fw_control_yaw = false; this->apply_flaps = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _roll_body_type = float; _roll_body_type roll_body; using _pitch_body_type = float; _pitch_body_type pitch_body; using _yaw_body_type = float; _yaw_body_type yaw_body; using _yaw_sp_move_rate_type = float; _yaw_sp_move_rate_type yaw_sp_move_rate; using _q_d_type = std::array<float, 4>; _q_d_type q_d; using _thrust_body_type = std::array<float, 3>; _thrust_body_type thrust_body; using _roll_reset_integral_type = bool; _roll_reset_integral_type roll_reset_integral; using _pitch_reset_integral_type = bool; _pitch_reset_integral_type pitch_reset_integral; using _yaw_reset_integral_type = bool; _yaw_reset_integral_type yaw_reset_integral; using _fw_control_yaw_type = bool; _fw_control_yaw_type fw_control_yaw; using _apply_flaps_type = uint8_t; _apply_flaps_type apply_flaps; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__roll_body( const float & _arg) { this->roll_body = _arg; return *this; } Type & set__pitch_body( const float & _arg) { this->pitch_body = _arg; return *this; } Type & set__yaw_body( const float & _arg) { this->yaw_body = _arg; return *this; } Type & set__yaw_sp_move_rate( const float & _arg) { this->yaw_sp_move_rate = _arg; return *this; } Type & set__q_d( const std::array<float, 4> & _arg) { this->q_d = _arg; return *this; } Type & set__thrust_body( const std::array<float, 3> & _arg) { this->thrust_body = _arg; return *this; } Type & set__roll_reset_integral( const bool & _arg) { this->roll_reset_integral = _arg; return *this; } Type & set__pitch_reset_integral( const bool & _arg) { this->pitch_reset_integral = _arg; return *this; } Type & set__yaw_reset_integral( const bool & _arg) { this->yaw_reset_integral = _arg; return *this; } Type & set__fw_control_yaw( const bool & _arg) { this->fw_control_yaw = _arg; return *this; } Type & set__apply_flaps( const uint8_t & _arg) { this->apply_flaps = _arg; return *this; } // constant declarations static constexpr uint8_t FLAPS_OFF = 0u; static constexpr uint8_t FLAPS_LAND = 1u; static constexpr uint8_t FLAPS_TAKEOFF = 2u; // pointer types using RawPtr = px4_msgs::msg::McVirtualAttitudeSetpoint_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::McVirtualAttitudeSetpoint_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::McVirtualAttitudeSetpoint_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::McVirtualAttitudeSetpoint_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::McVirtualAttitudeSetpoint_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::McVirtualAttitudeSetpoint_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::McVirtualAttitudeSetpoint_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::McVirtualAttitudeSetpoint_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::McVirtualAttitudeSetpoint_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::McVirtualAttitudeSetpoint_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__McVirtualAttitudeSetpoint std::shared_ptr<px4_msgs::msg::McVirtualAttitudeSetpoint_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__McVirtualAttitudeSetpoint std::shared_ptr<px4_msgs::msg::McVirtualAttitudeSetpoint_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const McVirtualAttitudeSetpoint_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->roll_body != other.roll_body) { return false; } if (this->pitch_body != other.pitch_body) { return false; } if (this->yaw_body != other.yaw_body) { return false; } if (this->yaw_sp_move_rate != other.yaw_sp_move_rate) { return false; } if (this->q_d != other.q_d) { return false; } if (this->thrust_body != other.thrust_body) { return false; } if (this->roll_reset_integral != other.roll_reset_integral) { return false; } if (this->pitch_reset_integral != other.pitch_reset_integral) { return false; } if (this->yaw_reset_integral != other.yaw_reset_integral) { return false; } if (this->fw_control_yaw != other.fw_control_yaw) { return false; } if (this->apply_flaps != other.apply_flaps) { return false; } return true; } bool operator!=(const McVirtualAttitudeSetpoint_ & other) const { return !this->operator==(other); } }; // struct McVirtualAttitudeSetpoint_ // alias to use template instance with default allocator using McVirtualAttitudeSetpoint = px4_msgs::msg::McVirtualAttitudeSetpoint_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t McVirtualAttitudeSetpoint_<ContainerAllocator>::FLAPS_OFF; template<typename ContainerAllocator> constexpr uint8_t McVirtualAttitudeSetpoint_<ContainerAllocator>::FLAPS_LAND; template<typename ContainerAllocator> constexpr uint8_t McVirtualAttitudeSetpoint_<ContainerAllocator>::FLAPS_TAKEOFF; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__MC_VIRTUAL_ATTITUDE_SETPOINT__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_status__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/VehicleStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_status__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/vehicle_status__struct.h" #include "px4_msgs/msg/vehicle_status__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _VehicleStatus__ros_msg_type = px4_msgs__msg__VehicleStatus; static bool _VehicleStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _VehicleStatus__ros_msg_type * ros_message = static_cast<const _VehicleStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: nav_state { cdr << ros_message->nav_state; } // Field name: nav_state_timestamp { cdr << ros_message->nav_state_timestamp; } // Field name: arming_state { cdr << ros_message->arming_state; } // Field name: hil_state { cdr << ros_message->hil_state; } // Field name: failsafe { cdr << (ros_message->failsafe ? true : false); } // Field name: failsafe_timestamp { cdr << ros_message->failsafe_timestamp; } // Field name: system_type { cdr << ros_message->system_type; } // Field name: system_id { cdr << ros_message->system_id; } // Field name: component_id { cdr << ros_message->component_id; } // Field name: vehicle_type { cdr << ros_message->vehicle_type; } // Field name: is_vtol { cdr << (ros_message->is_vtol ? true : false); } // Field name: is_vtol_tailsitter { cdr << (ros_message->is_vtol_tailsitter ? true : false); } // Field name: vtol_fw_permanent_stab { cdr << (ros_message->vtol_fw_permanent_stab ? true : false); } // Field name: in_transition_mode { cdr << (ros_message->in_transition_mode ? true : false); } // Field name: in_transition_to_fw { cdr << (ros_message->in_transition_to_fw ? true : false); } // Field name: rc_signal_lost { cdr << (ros_message->rc_signal_lost ? true : false); } // Field name: rc_input_mode { cdr << ros_message->rc_input_mode; } // Field name: data_link_lost { cdr << (ros_message->data_link_lost ? true : false); } // Field name: data_link_lost_counter { cdr << ros_message->data_link_lost_counter; } // Field name: high_latency_data_link_lost { cdr << (ros_message->high_latency_data_link_lost ? true : false); } // Field name: engine_failure { cdr << (ros_message->engine_failure ? true : false); } // Field name: mission_failure { cdr << (ros_message->mission_failure ? true : false); } // Field name: failure_detector_status { cdr << ros_message->failure_detector_status; } // Field name: onboard_control_sensors_present { cdr << ros_message->onboard_control_sensors_present; } // Field name: onboard_control_sensors_enabled { cdr << ros_message->onboard_control_sensors_enabled; } // Field name: onboard_control_sensors_health { cdr << ros_message->onboard_control_sensors_health; } // Field name: latest_arming_reason { cdr << ros_message->latest_arming_reason; } // Field name: latest_disarming_reason { cdr << ros_message->latest_disarming_reason; } // Field name: armed_time { cdr << ros_message->armed_time; } // Field name: takeoff_time { cdr << ros_message->takeoff_time; } return true; } static bool _VehicleStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _VehicleStatus__ros_msg_type * ros_message = static_cast<_VehicleStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: nav_state { cdr >> ros_message->nav_state; } // Field name: nav_state_timestamp { cdr >> ros_message->nav_state_timestamp; } // Field name: arming_state { cdr >> ros_message->arming_state; } // Field name: hil_state { cdr >> ros_message->hil_state; } // Field name: failsafe { uint8_t tmp; cdr >> tmp; ros_message->failsafe = tmp ? true : false; } // Field name: failsafe_timestamp { cdr >> ros_message->failsafe_timestamp; } // Field name: system_type { cdr >> ros_message->system_type; } // Field name: system_id { cdr >> ros_message->system_id; } // Field name: component_id { cdr >> ros_message->component_id; } // Field name: vehicle_type { cdr >> ros_message->vehicle_type; } // Field name: is_vtol { uint8_t tmp; cdr >> tmp; ros_message->is_vtol = tmp ? true : false; } // Field name: is_vtol_tailsitter { uint8_t tmp; cdr >> tmp; ros_message->is_vtol_tailsitter = tmp ? true : false; } // Field name: vtol_fw_permanent_stab { uint8_t tmp; cdr >> tmp; ros_message->vtol_fw_permanent_stab = tmp ? true : false; } // Field name: in_transition_mode { uint8_t tmp; cdr >> tmp; ros_message->in_transition_mode = tmp ? true : false; } // Field name: in_transition_to_fw { uint8_t tmp; cdr >> tmp; ros_message->in_transition_to_fw = tmp ? true : false; } // Field name: rc_signal_lost { uint8_t tmp; cdr >> tmp; ros_message->rc_signal_lost = tmp ? true : false; } // Field name: rc_input_mode { cdr >> ros_message->rc_input_mode; } // Field name: data_link_lost { uint8_t tmp; cdr >> tmp; ros_message->data_link_lost = tmp ? true : false; } // Field name: data_link_lost_counter { cdr >> ros_message->data_link_lost_counter; } // Field name: high_latency_data_link_lost { uint8_t tmp; cdr >> tmp; ros_message->high_latency_data_link_lost = tmp ? true : false; } // Field name: engine_failure { uint8_t tmp; cdr >> tmp; ros_message->engine_failure = tmp ? true : false; } // Field name: mission_failure { uint8_t tmp; cdr >> tmp; ros_message->mission_failure = tmp ? true : false; } // Field name: failure_detector_status { cdr >> ros_message->failure_detector_status; } // Field name: onboard_control_sensors_present { cdr >> ros_message->onboard_control_sensors_present; } // Field name: onboard_control_sensors_enabled { cdr >> ros_message->onboard_control_sensors_enabled; } // Field name: onboard_control_sensors_health { cdr >> ros_message->onboard_control_sensors_health; } // Field name: latest_arming_reason { cdr >> ros_message->latest_arming_reason; } // Field name: latest_disarming_reason { cdr >> ros_message->latest_disarming_reason; } // Field name: armed_time { cdr >> ros_message->armed_time; } // Field name: takeoff_time { cdr >> ros_message->takeoff_time; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__VehicleStatus( const void * untyped_ros_message, size_t current_alignment) { const _VehicleStatus__ros_msg_type * ros_message = static_cast<const _VehicleStatus__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name nav_state { size_t item_size = sizeof(ros_message->nav_state); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name nav_state_timestamp { size_t item_size = sizeof(ros_message->nav_state_timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name arming_state { size_t item_size = sizeof(ros_message->arming_state); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name hil_state { size_t item_size = sizeof(ros_message->hil_state); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name failsafe { size_t item_size = sizeof(ros_message->failsafe); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name failsafe_timestamp { size_t item_size = sizeof(ros_message->failsafe_timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name system_type { size_t item_size = sizeof(ros_message->system_type); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name system_id { size_t item_size = sizeof(ros_message->system_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name component_id { size_t item_size = sizeof(ros_message->component_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vehicle_type { size_t item_size = sizeof(ros_message->vehicle_type); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name is_vtol { size_t item_size = sizeof(ros_message->is_vtol); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name is_vtol_tailsitter { size_t item_size = sizeof(ros_message->is_vtol_tailsitter); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vtol_fw_permanent_stab { size_t item_size = sizeof(ros_message->vtol_fw_permanent_stab); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name in_transition_mode { size_t item_size = sizeof(ros_message->in_transition_mode); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name in_transition_to_fw { size_t item_size = sizeof(ros_message->in_transition_to_fw); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rc_signal_lost { size_t item_size = sizeof(ros_message->rc_signal_lost); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rc_input_mode { size_t item_size = sizeof(ros_message->rc_input_mode); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name data_link_lost { size_t item_size = sizeof(ros_message->data_link_lost); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name data_link_lost_counter { size_t item_size = sizeof(ros_message->data_link_lost_counter); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name high_latency_data_link_lost { size_t item_size = sizeof(ros_message->high_latency_data_link_lost); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name engine_failure { size_t item_size = sizeof(ros_message->engine_failure); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name mission_failure { size_t item_size = sizeof(ros_message->mission_failure); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name failure_detector_status { size_t item_size = sizeof(ros_message->failure_detector_status); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name onboard_control_sensors_present { size_t item_size = sizeof(ros_message->onboard_control_sensors_present); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name onboard_control_sensors_enabled { size_t item_size = sizeof(ros_message->onboard_control_sensors_enabled); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name onboard_control_sensors_health { size_t item_size = sizeof(ros_message->onboard_control_sensors_health); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name latest_arming_reason { size_t item_size = sizeof(ros_message->latest_arming_reason); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name latest_disarming_reason { size_t item_size = sizeof(ros_message->latest_disarming_reason); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name armed_time { size_t item_size = sizeof(ros_message->armed_time); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name takeoff_time { size_t item_size = sizeof(ros_message->takeoff_time); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _VehicleStatus__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__VehicleStatus( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__VehicleStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: nav_state { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: nav_state_timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: arming_state { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: hil_state { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: failsafe { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: failsafe_timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: system_type { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: system_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: component_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: vehicle_type { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: is_vtol { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: is_vtol_tailsitter { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: vtol_fw_permanent_stab { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: in_transition_mode { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: in_transition_to_fw { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: rc_signal_lost { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: rc_input_mode { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: data_link_lost { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: data_link_lost_counter { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: high_latency_data_link_lost { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: engine_failure { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: mission_failure { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: failure_detector_status { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: onboard_control_sensors_present { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: onboard_control_sensors_enabled { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: onboard_control_sensors_health { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: latest_arming_reason { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: latest_disarming_reason { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: armed_time { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: takeoff_time { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } return current_alignment - initial_alignment; } static size_t _VehicleStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__VehicleStatus( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_VehicleStatus = { "px4_msgs::msg", "VehicleStatus", _VehicleStatus__cdr_serialize, _VehicleStatus__cdr_deserialize, _VehicleStatus__get_serialized_size, _VehicleStatus__max_serialized_size }; static rosidl_message_type_support_t _VehicleStatus__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_VehicleStatus, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, VehicleStatus)() { return &_VehicleStatus__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/wind__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/Wind.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__WIND__STRUCT_HPP_ #define PX4_MSGS__MSG__WIND__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__Wind __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__Wind __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct Wind_ { using Type = Wind_<ContainerAllocator>; explicit Wind_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->windspeed_north = 0.0f; this->windspeed_east = 0.0f; this->variance_north = 0.0f; this->variance_east = 0.0f; this->tas_innov = 0.0f; this->tas_innov_var = 0.0f; this->beta_innov = 0.0f; this->beta_innov_var = 0.0f; } } explicit Wind_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->windspeed_north = 0.0f; this->windspeed_east = 0.0f; this->variance_north = 0.0f; this->variance_east = 0.0f; this->tas_innov = 0.0f; this->tas_innov_var = 0.0f; this->beta_innov = 0.0f; this->beta_innov_var = 0.0f; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _timestamp_sample_type = uint64_t; _timestamp_sample_type timestamp_sample; using _windspeed_north_type = float; _windspeed_north_type windspeed_north; using _windspeed_east_type = float; _windspeed_east_type windspeed_east; using _variance_north_type = float; _variance_north_type variance_north; using _variance_east_type = float; _variance_east_type variance_east; using _tas_innov_type = float; _tas_innov_type tas_innov; using _tas_innov_var_type = float; _tas_innov_var_type tas_innov_var; using _beta_innov_type = float; _beta_innov_type beta_innov; using _beta_innov_var_type = float; _beta_innov_var_type beta_innov_var; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__timestamp_sample( const uint64_t & _arg) { this->timestamp_sample = _arg; return *this; } Type & set__windspeed_north( const float & _arg) { this->windspeed_north = _arg; return *this; } Type & set__windspeed_east( const float & _arg) { this->windspeed_east = _arg; return *this; } Type & set__variance_north( const float & _arg) { this->variance_north = _arg; return *this; } Type & set__variance_east( const float & _arg) { this->variance_east = _arg; return *this; } Type & set__tas_innov( const float & _arg) { this->tas_innov = _arg; return *this; } Type & set__tas_innov_var( const float & _arg) { this->tas_innov_var = _arg; return *this; } Type & set__beta_innov( const float & _arg) { this->beta_innov = _arg; return *this; } Type & set__beta_innov_var( const float & _arg) { this->beta_innov_var = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::Wind_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::Wind_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::Wind_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::Wind_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::Wind_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::Wind_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::Wind_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::Wind_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::Wind_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::Wind_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__Wind std::shared_ptr<px4_msgs::msg::Wind_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__Wind std::shared_ptr<px4_msgs::msg::Wind_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const Wind_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->timestamp_sample != other.timestamp_sample) { return false; } if (this->windspeed_north != other.windspeed_north) { return false; } if (this->windspeed_east != other.windspeed_east) { return false; } if (this->variance_north != other.variance_north) { return false; } if (this->variance_east != other.variance_east) { return false; } if (this->tas_innov != other.tas_innov) { return false; } if (this->tas_innov_var != other.tas_innov_var) { return false; } if (this->beta_innov != other.beta_innov) { return false; } if (this->beta_innov_var != other.beta_innov_var) { return false; } return true; } bool operator!=(const Wind_ & other) const { return !this->operator==(other); } }; // struct Wind_ // alias to use template instance with default allocator using Wind = px4_msgs::msg::Wind_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__WIND__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_attitude__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/VehicleAttitude.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/vehicle_attitude__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/vehicle_attitude__functions.h" #include "px4_msgs/msg/vehicle_attitude__struct.h" #ifdef __cplusplus extern "C" { #endif void VehicleAttitude__rosidl_typesupport_introspection_c__VehicleAttitude_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__VehicleAttitude__init(message_memory); } void VehicleAttitude__rosidl_typesupport_introspection_c__VehicleAttitude_fini_function(void * message_memory) { px4_msgs__msg__VehicleAttitude__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember VehicleAttitude__rosidl_typesupport_introspection_c__VehicleAttitude_message_member_array[5] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleAttitude, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleAttitude, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "q", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleAttitude, q), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "delta_q_reset", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleAttitude, delta_q_reset), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "quat_reset_counter", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleAttitude, quat_reset_counter), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers VehicleAttitude__rosidl_typesupport_introspection_c__VehicleAttitude_message_members = { "px4_msgs__msg", // message namespace "VehicleAttitude", // message name 5, // number of fields sizeof(px4_msgs__msg__VehicleAttitude), VehicleAttitude__rosidl_typesupport_introspection_c__VehicleAttitude_message_member_array, // message members VehicleAttitude__rosidl_typesupport_introspection_c__VehicleAttitude_init_function, // function to initialize message memory (memory has to be allocated) VehicleAttitude__rosidl_typesupport_introspection_c__VehicleAttitude_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t VehicleAttitude__rosidl_typesupport_introspection_c__VehicleAttitude_message_type_support_handle = { 0, &VehicleAttitude__rosidl_typesupport_introspection_c__VehicleAttitude_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, VehicleAttitude)() { if (!VehicleAttitude__rosidl_typesupport_introspection_c__VehicleAttitude_message_type_support_handle.typesupport_identifier) { VehicleAttitude__rosidl_typesupport_introspection_c__VehicleAttitude_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &VehicleAttitude__rosidl_typesupport_introspection_c__VehicleAttitude_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/landing_target_innovations__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/LandingTargetInnovations.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__LANDING_TARGET_INNOVATIONS__STRUCT_H_ #define PX4_MSGS__MSG__LANDING_TARGET_INNOVATIONS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/LandingTargetInnovations in the package px4_msgs. typedef struct px4_msgs__msg__LandingTargetInnovations { uint64_t timestamp; float innov_x; float innov_y; float innov_cov_x; float innov_cov_y; } px4_msgs__msg__LandingTargetInnovations; // Struct for a sequence of px4_msgs__msg__LandingTargetInnovations. typedef struct px4_msgs__msg__LandingTargetInnovations__Sequence { px4_msgs__msg__LandingTargetInnovations * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__LandingTargetInnovations__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__LANDING_TARGET_INNOVATIONS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/onboard_computer_status__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/OnboardComputerStatus.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/onboard_computer_status__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/onboard_computer_status__functions.h" #include "px4_msgs/msg/onboard_computer_status__struct.h" #ifdef __cplusplus extern "C" { #endif void OnboardComputerStatus__rosidl_typesupport_introspection_c__OnboardComputerStatus_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__OnboardComputerStatus__init(message_memory); } void OnboardComputerStatus__rosidl_typesupport_introspection_c__OnboardComputerStatus_fini_function(void * message_memory) { px4_msgs__msg__OnboardComputerStatus__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember OnboardComputerStatus__rosidl_typesupport_introspection_c__OnboardComputerStatus_message_member_array[20] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__OnboardComputerStatus, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "uptime", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__OnboardComputerStatus, uptime), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "type", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__OnboardComputerStatus, type), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cpu_cores", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message true, // is array 8, // array size false, // is upper bound offsetof(px4_msgs__msg__OnboardComputerStatus, cpu_cores), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cpu_combined", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message true, // is array 10, // array size false, // is upper bound offsetof(px4_msgs__msg__OnboardComputerStatus, cpu_combined), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gpu_cores", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__OnboardComputerStatus, gpu_cores), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gpu_combined", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message true, // is array 10, // array size false, // is upper bound offsetof(px4_msgs__msg__OnboardComputerStatus, gpu_combined), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "temperature_board", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__OnboardComputerStatus, temperature_board), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "temperature_core", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT8, // type 0, // upper bound of string NULL, // members of sub message true, // is array 8, // array size false, // is upper bound offsetof(px4_msgs__msg__OnboardComputerStatus, temperature_core), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "fan_speed", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT16, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__OnboardComputerStatus, fan_speed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ram_usage", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__OnboardComputerStatus, ram_usage), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "ram_total", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__OnboardComputerStatus, ram_total), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "storage_type", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__OnboardComputerStatus, storage_type), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "storage_usage", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__OnboardComputerStatus, storage_usage), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "storage_total", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__OnboardComputerStatus, storage_total), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "link_type", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message true, // is array 6, // array size false, // is upper bound offsetof(px4_msgs__msg__OnboardComputerStatus, link_type), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "link_tx_rate", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message true, // is array 6, // array size false, // is upper bound offsetof(px4_msgs__msg__OnboardComputerStatus, link_tx_rate), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "link_rx_rate", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message true, // is array 6, // array size false, // is upper bound offsetof(px4_msgs__msg__OnboardComputerStatus, link_rx_rate), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "link_tx_max", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message true, // is array 6, // array size false, // is upper bound offsetof(px4_msgs__msg__OnboardComputerStatus, link_tx_max), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "link_rx_max", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message true, // is array 6, // array size false, // is upper bound offsetof(px4_msgs__msg__OnboardComputerStatus, link_rx_max), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers OnboardComputerStatus__rosidl_typesupport_introspection_c__OnboardComputerStatus_message_members = { "px4_msgs__msg", // message namespace "OnboardComputerStatus", // message name 20, // number of fields sizeof(px4_msgs__msg__OnboardComputerStatus), OnboardComputerStatus__rosidl_typesupport_introspection_c__OnboardComputerStatus_message_member_array, // message members OnboardComputerStatus__rosidl_typesupport_introspection_c__OnboardComputerStatus_init_function, // function to initialize message memory (memory has to be allocated) OnboardComputerStatus__rosidl_typesupport_introspection_c__OnboardComputerStatus_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t OnboardComputerStatus__rosidl_typesupport_introspection_c__OnboardComputerStatus_message_type_support_handle = { 0, &OnboardComputerStatus__rosidl_typesupport_introspection_c__OnboardComputerStatus_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, OnboardComputerStatus)() { if (!OnboardComputerStatus__rosidl_typesupport_introspection_c__OnboardComputerStatus_message_type_support_handle.typesupport_identifier) { OnboardComputerStatus__rosidl_typesupport_introspection_c__OnboardComputerStatus_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &OnboardComputerStatus__rosidl_typesupport_introspection_c__OnboardComputerStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/takeoff_status__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/TakeoffStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TAKEOFF_STATUS__STRUCT_HPP_ #define PX4_MSGS__MSG__TAKEOFF_STATUS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__TakeoffStatus __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__TakeoffStatus __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct TakeoffStatus_ { using Type = TakeoffStatus_<ContainerAllocator>; explicit TakeoffStatus_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->takeoff_state = 0; this->tilt_limit = 0.0f; } } explicit TakeoffStatus_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->takeoff_state = 0; this->tilt_limit = 0.0f; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _takeoff_state_type = uint8_t; _takeoff_state_type takeoff_state; using _tilt_limit_type = float; _tilt_limit_type tilt_limit; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__takeoff_state( const uint8_t & _arg) { this->takeoff_state = _arg; return *this; } Type & set__tilt_limit( const float & _arg) { this->tilt_limit = _arg; return *this; } // constant declarations static constexpr uint8_t TAKEOFF_STATE_UNINITIALIZED = 0u; static constexpr uint8_t TAKEOFF_STATE_DISARMED = 1u; static constexpr uint8_t TAKEOFF_STATE_SPOOLUP = 2u; static constexpr uint8_t TAKEOFF_STATE_READY_FOR_TAKEOFF = 3u; static constexpr uint8_t TAKEOFF_STATE_RAMPUP = 4u; static constexpr uint8_t TAKEOFF_STATE_FLIGHT = 5u; // pointer types using RawPtr = px4_msgs::msg::TakeoffStatus_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::TakeoffStatus_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::TakeoffStatus_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::TakeoffStatus_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::TakeoffStatus_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::TakeoffStatus_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::TakeoffStatus_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::TakeoffStatus_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::TakeoffStatus_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::TakeoffStatus_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__TakeoffStatus std::shared_ptr<px4_msgs::msg::TakeoffStatus_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__TakeoffStatus std::shared_ptr<px4_msgs::msg::TakeoffStatus_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const TakeoffStatus_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->takeoff_state != other.takeoff_state) { return false; } if (this->tilt_limit != other.tilt_limit) { return false; } return true; } bool operator!=(const TakeoffStatus_ & other) const { return !this->operator==(other); } }; // struct TakeoffStatus_ // alias to use template instance with default allocator using TakeoffStatus = px4_msgs::msg::TakeoffStatus_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t TakeoffStatus_<ContainerAllocator>::TAKEOFF_STATE_UNINITIALIZED; template<typename ContainerAllocator> constexpr uint8_t TakeoffStatus_<ContainerAllocator>::TAKEOFF_STATE_DISARMED; template<typename ContainerAllocator> constexpr uint8_t TakeoffStatus_<ContainerAllocator>::TAKEOFF_STATE_SPOOLUP; template<typename ContainerAllocator> constexpr uint8_t TakeoffStatus_<ContainerAllocator>::TAKEOFF_STATE_READY_FOR_TAKEOFF; template<typename ContainerAllocator> constexpr uint8_t TakeoffStatus_<ContainerAllocator>::TAKEOFF_STATE_RAMPUP; template<typename ContainerAllocator> constexpr uint8_t TakeoffStatus_<ContainerAllocator>::TAKEOFF_STATE_FLIGHT; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__TAKEOFF_STATUS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_visual_odometry_aligned.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/EstimatorVisualOdometryAligned.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_VISUAL_ODOMETRY_ALIGNED_H_ #define PX4_MSGS__MSG__ESTIMATOR_VISUAL_ODOMETRY_ALIGNED_H_ #include "px4_msgs/msg/estimator_visual_odometry_aligned__struct.h" #include "px4_msgs/msg/estimator_visual_odometry_aligned__functions.h" #include "px4_msgs/msg/estimator_visual_odometry_aligned__type_support.h" #endif // PX4_MSGS__MSG__ESTIMATOR_VISUAL_ODOMETRY_ALIGNED_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/VehicleGlobalPositionGroundtruth.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_GLOBAL_POSITION_GROUNDTRUTH__STRUCT_HPP_ #define PX4_MSGS__MSG__VEHICLE_GLOBAL_POSITION_GROUNDTRUTH__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__VehicleGlobalPositionGroundtruth __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__VehicleGlobalPositionGroundtruth __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct VehicleGlobalPositionGroundtruth_ { using Type = VehicleGlobalPositionGroundtruth_<ContainerAllocator>; explicit VehicleGlobalPositionGroundtruth_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->lat = 0.0; this->lon = 0.0; this->alt = 0.0f; this->alt_ellipsoid = 0.0f; this->delta_alt = 0.0f; this->lat_lon_reset_counter = 0; this->alt_reset_counter = 0; this->eph = 0.0f; this->epv = 0.0f; this->terrain_alt = 0.0f; this->terrain_alt_valid = false; this->dead_reckoning = false; } } explicit VehicleGlobalPositionGroundtruth_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->lat = 0.0; this->lon = 0.0; this->alt = 0.0f; this->alt_ellipsoid = 0.0f; this->delta_alt = 0.0f; this->lat_lon_reset_counter = 0; this->alt_reset_counter = 0; this->eph = 0.0f; this->epv = 0.0f; this->terrain_alt = 0.0f; this->terrain_alt_valid = false; this->dead_reckoning = false; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _timestamp_sample_type = uint64_t; _timestamp_sample_type timestamp_sample; using _lat_type = double; _lat_type lat; using _lon_type = double; _lon_type lon; using _alt_type = float; _alt_type alt; using _alt_ellipsoid_type = float; _alt_ellipsoid_type alt_ellipsoid; using _delta_alt_type = float; _delta_alt_type delta_alt; using _lat_lon_reset_counter_type = uint8_t; _lat_lon_reset_counter_type lat_lon_reset_counter; using _alt_reset_counter_type = uint8_t; _alt_reset_counter_type alt_reset_counter; using _eph_type = float; _eph_type eph; using _epv_type = float; _epv_type epv; using _terrain_alt_type = float; _terrain_alt_type terrain_alt; using _terrain_alt_valid_type = bool; _terrain_alt_valid_type terrain_alt_valid; using _dead_reckoning_type = bool; _dead_reckoning_type dead_reckoning; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__timestamp_sample( const uint64_t & _arg) { this->timestamp_sample = _arg; return *this; } Type & set__lat( const double & _arg) { this->lat = _arg; return *this; } Type & set__lon( const double & _arg) { this->lon = _arg; return *this; } Type & set__alt( const float & _arg) { this->alt = _arg; return *this; } Type & set__alt_ellipsoid( const float & _arg) { this->alt_ellipsoid = _arg; return *this; } Type & set__delta_alt( const float & _arg) { this->delta_alt = _arg; return *this; } Type & set__lat_lon_reset_counter( const uint8_t & _arg) { this->lat_lon_reset_counter = _arg; return *this; } Type & set__alt_reset_counter( const uint8_t & _arg) { this->alt_reset_counter = _arg; return *this; } Type & set__eph( const float & _arg) { this->eph = _arg; return *this; } Type & set__epv( const float & _arg) { this->epv = _arg; return *this; } Type & set__terrain_alt( const float & _arg) { this->terrain_alt = _arg; return *this; } Type & set__terrain_alt_valid( const bool & _arg) { this->terrain_alt_valid = _arg; return *this; } Type & set__dead_reckoning( const bool & _arg) { this->dead_reckoning = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::VehicleGlobalPositionGroundtruth_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::VehicleGlobalPositionGroundtruth_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::VehicleGlobalPositionGroundtruth_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::VehicleGlobalPositionGroundtruth_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleGlobalPositionGroundtruth_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleGlobalPositionGroundtruth_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleGlobalPositionGroundtruth_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleGlobalPositionGroundtruth_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::VehicleGlobalPositionGroundtruth_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::VehicleGlobalPositionGroundtruth_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__VehicleGlobalPositionGroundtruth std::shared_ptr<px4_msgs::msg::VehicleGlobalPositionGroundtruth_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__VehicleGlobalPositionGroundtruth std::shared_ptr<px4_msgs::msg::VehicleGlobalPositionGroundtruth_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const VehicleGlobalPositionGroundtruth_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->timestamp_sample != other.timestamp_sample) { return false; } if (this->lat != other.lat) { return false; } if (this->lon != other.lon) { return false; } if (this->alt != other.alt) { return false; } if (this->alt_ellipsoid != other.alt_ellipsoid) { return false; } if (this->delta_alt != other.delta_alt) { return false; } if (this->lat_lon_reset_counter != other.lat_lon_reset_counter) { return false; } if (this->alt_reset_counter != other.alt_reset_counter) { return false; } if (this->eph != other.eph) { return false; } if (this->epv != other.epv) { return false; } if (this->terrain_alt != other.terrain_alt) { return false; } if (this->terrain_alt_valid != other.terrain_alt_valid) { return false; } if (this->dead_reckoning != other.dead_reckoning) { return false; } return true; } bool operator!=(const VehicleGlobalPositionGroundtruth_ & other) const { return !this->operator==(other); } }; // struct VehicleGlobalPositionGroundtruth_ // alias to use template instance with default allocator using VehicleGlobalPositionGroundtruth = px4_msgs::msg::VehicleGlobalPositionGroundtruth_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__VEHICLE_GLOBAL_POSITION_GROUNDTRUTH__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/debug_vect.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__DEBUG_VECT_HPP_ #define PX4_MSGS__MSG__DEBUG_VECT_HPP_ #include "px4_msgs/msg/debug_vect__struct.hpp" #include "px4_msgs/msg/debug_vect__traits.hpp" #endif // PX4_MSGS__MSG__DEBUG_VECT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_control_allocator_status_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/ControlAllocatorStatus.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/control_allocator_status__struct.h" #include "px4_msgs/msg/control_allocator_status__functions.h" #include "rosidl_generator_c/primitives_sequence.h" #include "rosidl_generator_c/primitives_sequence_functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__control_allocator_status__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[62]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._control_allocator_status.ControlAllocatorStatus", full_classname_dest, 61) == 0); } px4_msgs__msg__ControlAllocatorStatus * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // torque_setpoint_achieved PyObject * field = PyObject_GetAttrString(_pymsg, "torque_setpoint_achieved"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->torque_setpoint_achieved = (Py_True == field); Py_DECREF(field); } { // allocated_torque PyObject * field = PyObject_GetAttrString(_pymsg, "allocated_torque"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); Py_ssize_t size = 3; float * dest = ros_message->allocated_torque; for (Py_ssize_t i = 0; i < size; ++i) { float tmp = *(npy_float32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(float)); } Py_DECREF(seq_field); Py_DECREF(field); } { // unallocated_torque PyObject * field = PyObject_GetAttrString(_pymsg, "unallocated_torque"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); Py_ssize_t size = 3; float * dest = ros_message->unallocated_torque; for (Py_ssize_t i = 0; i < size; ++i) { float tmp = *(npy_float32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(float)); } Py_DECREF(seq_field); Py_DECREF(field); } { // thrust_setpoint_achieved PyObject * field = PyObject_GetAttrString(_pymsg, "thrust_setpoint_achieved"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->thrust_setpoint_achieved = (Py_True == field); Py_DECREF(field); } { // allocated_thrust PyObject * field = PyObject_GetAttrString(_pymsg, "allocated_thrust"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); Py_ssize_t size = 3; float * dest = ros_message->allocated_thrust; for (Py_ssize_t i = 0; i < size; ++i) { float tmp = *(npy_float32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(float)); } Py_DECREF(seq_field); Py_DECREF(field); } { // unallocated_thrust PyObject * field = PyObject_GetAttrString(_pymsg, "unallocated_thrust"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); Py_ssize_t size = 3; float * dest = ros_message->unallocated_thrust; for (Py_ssize_t i = 0; i < size; ++i) { float tmp = *(npy_float32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(float)); } Py_DECREF(seq_field); Py_DECREF(field); } { // actuator_saturation PyObject * field = PyObject_GetAttrString(_pymsg, "actuator_saturation"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_INT8); Py_ssize_t size = 16; int8_t * dest = ros_message->actuator_saturation; for (Py_ssize_t i = 0; i < size; ++i) { int8_t tmp = *(npy_int8 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(int8_t)); } Py_DECREF(seq_field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__control_allocator_status__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of ControlAllocatorStatus */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._control_allocator_status"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "ControlAllocatorStatus"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__ControlAllocatorStatus * ros_message = (px4_msgs__msg__ControlAllocatorStatus *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // torque_setpoint_achieved PyObject * field = NULL; field = PyBool_FromLong(ros_message->torque_setpoint_achieved ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "torque_setpoint_achieved", field); Py_DECREF(field); if (rc) { return NULL; } } } { // allocated_torque PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "allocated_torque"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); assert(sizeof(npy_float32) == sizeof(float)); npy_float32 * dst = (npy_float32 *)PyArray_GETPTR1(seq_field, 0); float * src = &(ros_message->allocated_torque[0]); memcpy(dst, src, 3 * sizeof(float)); Py_DECREF(field); } { // unallocated_torque PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "unallocated_torque"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); assert(sizeof(npy_float32) == sizeof(float)); npy_float32 * dst = (npy_float32 *)PyArray_GETPTR1(seq_field, 0); float * src = &(ros_message->unallocated_torque[0]); memcpy(dst, src, 3 * sizeof(float)); Py_DECREF(field); } { // thrust_setpoint_achieved PyObject * field = NULL; field = PyBool_FromLong(ros_message->thrust_setpoint_achieved ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "thrust_setpoint_achieved", field); Py_DECREF(field); if (rc) { return NULL; } } } { // allocated_thrust PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "allocated_thrust"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); assert(sizeof(npy_float32) == sizeof(float)); npy_float32 * dst = (npy_float32 *)PyArray_GETPTR1(seq_field, 0); float * src = &(ros_message->allocated_thrust[0]); memcpy(dst, src, 3 * sizeof(float)); Py_DECREF(field); } { // unallocated_thrust PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "unallocated_thrust"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); assert(sizeof(npy_float32) == sizeof(float)); npy_float32 * dst = (npy_float32 *)PyArray_GETPTR1(seq_field, 0); float * src = &(ros_message->unallocated_thrust[0]); memcpy(dst, src, 3 * sizeof(float)); Py_DECREF(field); } { // actuator_saturation PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "actuator_saturation"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_INT8); assert(sizeof(npy_int8) == sizeof(int8_t)); npy_int8 * dst = (npy_int8 *)PyArray_GETPTR1(seq_field, 0); int8_t * src = &(ros_message->actuator_saturation[0]); memcpy(dst, src, 16 * sizeof(int8_t)); Py_DECREF(field); } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_attitude_groundtruth__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleAttitudeGroundtruth.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/vehicle_attitude_groundtruth__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void VehicleAttitudeGroundtruth_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::VehicleAttitudeGroundtruth(_init); } void VehicleAttitudeGroundtruth_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::VehicleAttitudeGroundtruth *>(message_memory); typed_message->~VehicleAttitudeGroundtruth(); } size_t size_function__VehicleAttitudeGroundtruth__q(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__VehicleAttitudeGroundtruth__q(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 4> *>(untyped_member); return &member[index]; } void * get_function__VehicleAttitudeGroundtruth__q(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 4> *>(untyped_member); return &member[index]; } size_t size_function__VehicleAttitudeGroundtruth__delta_q_reset(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__VehicleAttitudeGroundtruth__delta_q_reset(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 4> *>(untyped_member); return &member[index]; } void * get_function__VehicleAttitudeGroundtruth__delta_q_reset(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 4> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember VehicleAttitudeGroundtruth_message_member_array[5] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleAttitudeGroundtruth, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleAttitudeGroundtruth, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "q", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleAttitudeGroundtruth, q), // bytes offset in struct nullptr, // default value size_function__VehicleAttitudeGroundtruth__q, // size() function pointer get_const_function__VehicleAttitudeGroundtruth__q, // get_const(index) function pointer get_function__VehicleAttitudeGroundtruth__q, // get(index) function pointer nullptr // resize(index) function pointer }, { "delta_q_reset", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleAttitudeGroundtruth, delta_q_reset), // bytes offset in struct nullptr, // default value size_function__VehicleAttitudeGroundtruth__delta_q_reset, // size() function pointer get_const_function__VehicleAttitudeGroundtruth__delta_q_reset, // get_const(index) function pointer get_function__VehicleAttitudeGroundtruth__delta_q_reset, // get(index) function pointer nullptr // resize(index) function pointer }, { "quat_reset_counter", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleAttitudeGroundtruth, quat_reset_counter), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers VehicleAttitudeGroundtruth_message_members = { "px4_msgs::msg", // message namespace "VehicleAttitudeGroundtruth", // message name 5, // number of fields sizeof(px4_msgs::msg::VehicleAttitudeGroundtruth), VehicleAttitudeGroundtruth_message_member_array, // message members VehicleAttitudeGroundtruth_init_function, // function to initialize message memory (memory has to be allocated) VehicleAttitudeGroundtruth_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t VehicleAttitudeGroundtruth_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &VehicleAttitudeGroundtruth_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleAttitudeGroundtruth>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleAttitudeGroundtruth_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, VehicleAttitudeGroundtruth)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleAttitudeGroundtruth_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/manual_control_setpoint__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/ManualControlSetpoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__MANUAL_CONTROL_SETPOINT__STRUCT_H_ #define PX4_MSGS__MSG__MANUAL_CONTROL_SETPOINT__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'SOURCE_RC'. enum { px4_msgs__msg__ManualControlSetpoint__SOURCE_RC = 1 }; /// Constant 'SOURCE_MAVLINK_0'. enum { px4_msgs__msg__ManualControlSetpoint__SOURCE_MAVLINK_0 = 2 }; /// Constant 'SOURCE_MAVLINK_1'. enum { px4_msgs__msg__ManualControlSetpoint__SOURCE_MAVLINK_1 = 3 }; /// Constant 'SOURCE_MAVLINK_2'. enum { px4_msgs__msg__ManualControlSetpoint__SOURCE_MAVLINK_2 = 4 }; /// Constant 'SOURCE_MAVLINK_3'. enum { px4_msgs__msg__ManualControlSetpoint__SOURCE_MAVLINK_3 = 5 }; // Struct defined in msg/ManualControlSetpoint in the package px4_msgs. typedef struct px4_msgs__msg__ManualControlSetpoint { uint64_t timestamp; uint64_t timestamp_sample; uint8_t data_source; float x; float y; float z; float r; float flaps; float aux1; float aux2; float aux3; float aux4; float aux5; float aux6; } px4_msgs__msg__ManualControlSetpoint; // Struct for a sequence of px4_msgs__msg__ManualControlSetpoint. typedef struct px4_msgs__msg__ManualControlSetpoint__Sequence { px4_msgs__msg__ManualControlSetpoint * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__ManualControlSetpoint__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__MANUAL_CONTROL_SETPOINT__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/led_control__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/LedControl.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/led_control__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void LedControl_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::LedControl(_init); } void LedControl_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::LedControl *>(message_memory); typed_message->~LedControl(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember LedControl_message_member_array[6] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::LedControl, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "led_mask", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::LedControl, led_mask), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "color", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::LedControl, color), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "mode", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::LedControl, mode), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "num_blinks", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::LedControl, num_blinks), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "priority", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::LedControl, priority), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers LedControl_message_members = { "px4_msgs::msg", // message namespace "LedControl", // message name 6, // number of fields sizeof(px4_msgs::msg::LedControl), LedControl_message_member_array, // message members LedControl_init_function, // function to initialize message memory (memory has to be allocated) LedControl_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t LedControl_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &LedControl_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::LedControl>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::LedControl_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, LedControl)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::LedControl_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_local_position_groundtruth__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleLocalPositionGroundtruth.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_GROUNDTRUTH__STRUCT_H_ #define PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_GROUNDTRUTH__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'DIST_BOTTOM_SENSOR_NONE'. enum { px4_msgs__msg__VehicleLocalPositionGroundtruth__DIST_BOTTOM_SENSOR_NONE = 0 }; /// Constant 'DIST_BOTTOM_SENSOR_RANGE'. enum { px4_msgs__msg__VehicleLocalPositionGroundtruth__DIST_BOTTOM_SENSOR_RANGE = 1 }; /// Constant 'DIST_BOTTOM_SENSOR_FLOW'. enum { px4_msgs__msg__VehicleLocalPositionGroundtruth__DIST_BOTTOM_SENSOR_FLOW = 2 }; // Struct defined in msg/VehicleLocalPositionGroundtruth in the package px4_msgs. typedef struct px4_msgs__msg__VehicleLocalPositionGroundtruth { uint64_t timestamp; uint64_t timestamp_sample; bool xy_valid; bool z_valid; bool v_xy_valid; bool v_z_valid; float x; float y; float z; float delta_xy[2]; uint8_t xy_reset_counter; float delta_z; uint8_t z_reset_counter; float vx; float vy; float vz; float z_deriv; float delta_vxy[2]; uint8_t vxy_reset_counter; float delta_vz; uint8_t vz_reset_counter; float ax; float ay; float az; float heading; float delta_heading; uint8_t heading_reset_counter; bool xy_global; bool z_global; uint64_t ref_timestamp; double ref_lat; double ref_lon; float ref_alt; float dist_bottom; bool dist_bottom_valid; uint8_t dist_bottom_sensor_bitfield; float eph; float epv; float evh; float evv; float vxy_max; float vz_max; float hagl_min; float hagl_max; } px4_msgs__msg__VehicleLocalPositionGroundtruth; // Struct for a sequence of px4_msgs__msg__VehicleLocalPositionGroundtruth. typedef struct px4_msgs__msg__VehicleLocalPositionGroundtruth__Sequence { px4_msgs__msg__VehicleLocalPositionGroundtruth * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__VehicleLocalPositionGroundtruth__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_GROUNDTRUTH__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_visual_odometry_aligned__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/EstimatorVisualOdometryAligned.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_VISUAL_ODOMETRY_ALIGNED__STRUCT_H_ #define PX4_MSGS__MSG__ESTIMATOR_VISUAL_ODOMETRY_ALIGNED__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'COVARIANCE_MATRIX_X_VARIANCE'. enum { px4_msgs__msg__EstimatorVisualOdometryAligned__COVARIANCE_MATRIX_X_VARIANCE = 0 }; /// Constant 'COVARIANCE_MATRIX_Y_VARIANCE'. enum { px4_msgs__msg__EstimatorVisualOdometryAligned__COVARIANCE_MATRIX_Y_VARIANCE = 6 }; /// Constant 'COVARIANCE_MATRIX_Z_VARIANCE'. enum { px4_msgs__msg__EstimatorVisualOdometryAligned__COVARIANCE_MATRIX_Z_VARIANCE = 11 }; /// Constant 'COVARIANCE_MATRIX_ROLL_VARIANCE'. enum { px4_msgs__msg__EstimatorVisualOdometryAligned__COVARIANCE_MATRIX_ROLL_VARIANCE = 15 }; /// Constant 'COVARIANCE_MATRIX_PITCH_VARIANCE'. enum { px4_msgs__msg__EstimatorVisualOdometryAligned__COVARIANCE_MATRIX_PITCH_VARIANCE = 18 }; /// Constant 'COVARIANCE_MATRIX_YAW_VARIANCE'. enum { px4_msgs__msg__EstimatorVisualOdometryAligned__COVARIANCE_MATRIX_YAW_VARIANCE = 20 }; /// Constant 'COVARIANCE_MATRIX_VX_VARIANCE'. enum { px4_msgs__msg__EstimatorVisualOdometryAligned__COVARIANCE_MATRIX_VX_VARIANCE = 0 }; /// Constant 'COVARIANCE_MATRIX_VY_VARIANCE'. enum { px4_msgs__msg__EstimatorVisualOdometryAligned__COVARIANCE_MATRIX_VY_VARIANCE = 6 }; /// Constant 'COVARIANCE_MATRIX_VZ_VARIANCE'. enum { px4_msgs__msg__EstimatorVisualOdometryAligned__COVARIANCE_MATRIX_VZ_VARIANCE = 11 }; /// Constant 'COVARIANCE_MATRIX_ROLLRATE_VARIANCE'. enum { px4_msgs__msg__EstimatorVisualOdometryAligned__COVARIANCE_MATRIX_ROLLRATE_VARIANCE = 15 }; /// Constant 'COVARIANCE_MATRIX_PITCHRATE_VARIANCE'. enum { px4_msgs__msg__EstimatorVisualOdometryAligned__COVARIANCE_MATRIX_PITCHRATE_VARIANCE = 18 }; /// Constant 'COVARIANCE_MATRIX_YAWRATE_VARIANCE'. enum { px4_msgs__msg__EstimatorVisualOdometryAligned__COVARIANCE_MATRIX_YAWRATE_VARIANCE = 20 }; /// Constant 'LOCAL_FRAME_NED'. enum { px4_msgs__msg__EstimatorVisualOdometryAligned__LOCAL_FRAME_NED = 0 }; /// Constant 'LOCAL_FRAME_FRD'. enum { px4_msgs__msg__EstimatorVisualOdometryAligned__LOCAL_FRAME_FRD = 1 }; /// Constant 'LOCAL_FRAME_OTHER'. enum { px4_msgs__msg__EstimatorVisualOdometryAligned__LOCAL_FRAME_OTHER = 2 }; /// Constant 'BODY_FRAME_FRD'. enum { px4_msgs__msg__EstimatorVisualOdometryAligned__BODY_FRAME_FRD = 3 }; // Struct defined in msg/EstimatorVisualOdometryAligned in the package px4_msgs. typedef struct px4_msgs__msg__EstimatorVisualOdometryAligned { uint64_t timestamp; uint64_t timestamp_sample; uint8_t local_frame; float x; float y; float z; float q[4]; float q_offset[4]; float pose_covariance[21]; uint8_t velocity_frame; float vx; float vy; float vz; float rollspeed; float pitchspeed; float yawspeed; float velocity_covariance[21]; } px4_msgs__msg__EstimatorVisualOdometryAligned; // Struct for a sequence of px4_msgs__msg__EstimatorVisualOdometryAligned. typedef struct px4_msgs__msg__EstimatorVisualOdometryAligned__Sequence { px4_msgs__msg__EstimatorVisualOdometryAligned * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__EstimatorVisualOdometryAligned__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ESTIMATOR_VISUAL_ODOMETRY_ALIGNED__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_attitude_status__rosidl_typesupport_fastrtps_c.h // generated from rosidl_typesupport_fastrtps_c/resource/idl__rosidl_typesupport_fastrtps_c.h.em // with input from px4_msgs:msg/GimbalDeviceAttitudeStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GIMBAL_DEVICE_ATTITUDE_STATUS__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #define PX4_MSGS__MSG__GIMBAL_DEVICE_ATTITUDE_STATUS__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #include <stddef.h> #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__GimbalDeviceAttitudeStatus( const void * untyped_ros_message, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__GimbalDeviceAttitudeStatus( bool & full_bounded, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, GimbalDeviceAttitudeStatus)(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__GIMBAL_DEVICE_ATTITUDE_STATUS__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/transponder_report__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/TransponderReport.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/transponder_report__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/transponder_report__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::TransponderReport & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: icao_address cdr << ros_message.icao_address; // Member: lat cdr << ros_message.lat; // Member: lon cdr << ros_message.lon; // Member: altitude_type cdr << ros_message.altitude_type; // Member: altitude cdr << ros_message.altitude; // Member: heading cdr << ros_message.heading; // Member: hor_velocity cdr << ros_message.hor_velocity; // Member: ver_velocity cdr << ros_message.ver_velocity; // Member: callsign { cdr << ros_message.callsign; } // Member: emitter_type cdr << ros_message.emitter_type; // Member: tslc cdr << ros_message.tslc; // Member: flags cdr << ros_message.flags; // Member: squawk cdr << ros_message.squawk; // Member: uas_id { cdr << ros_message.uas_id; } return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::TransponderReport & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: icao_address cdr >> ros_message.icao_address; // Member: lat cdr >> ros_message.lat; // Member: lon cdr >> ros_message.lon; // Member: altitude_type cdr >> ros_message.altitude_type; // Member: altitude cdr >> ros_message.altitude; // Member: heading cdr >> ros_message.heading; // Member: hor_velocity cdr >> ros_message.hor_velocity; // Member: ver_velocity cdr >> ros_message.ver_velocity; // Member: callsign { cdr >> ros_message.callsign; } // Member: emitter_type cdr >> ros_message.emitter_type; // Member: tslc cdr >> ros_message.tslc; // Member: flags cdr >> ros_message.flags; // Member: squawk cdr >> ros_message.squawk; // Member: uas_id { cdr >> ros_message.uas_id; } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::TransponderReport & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: icao_address { size_t item_size = sizeof(ros_message.icao_address); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: lat { size_t item_size = sizeof(ros_message.lat); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: lon { size_t item_size = sizeof(ros_message.lon); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: altitude_type { size_t item_size = sizeof(ros_message.altitude_type); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: altitude { size_t item_size = sizeof(ros_message.altitude); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: heading { size_t item_size = sizeof(ros_message.heading); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: hor_velocity { size_t item_size = sizeof(ros_message.hor_velocity); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: ver_velocity { size_t item_size = sizeof(ros_message.ver_velocity); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: callsign { size_t array_size = 9; size_t item_size = sizeof(ros_message.callsign[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: emitter_type { size_t item_size = sizeof(ros_message.emitter_type); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: tslc { size_t item_size = sizeof(ros_message.tslc); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: flags { size_t item_size = sizeof(ros_message.flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: squawk { size_t item_size = sizeof(ros_message.squawk); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: uas_id { size_t array_size = 18; size_t item_size = sizeof(ros_message.uas_id[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_TransponderReport( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: icao_address { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: lat { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: lon { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: altitude_type { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: altitude { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: heading { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: hor_velocity { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: ver_velocity { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: callsign { size_t array_size = 9; current_alignment += array_size * sizeof(uint8_t); } // Member: emitter_type { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: tslc { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: squawk { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: uas_id { size_t array_size = 18; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _TransponderReport__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::TransponderReport *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _TransponderReport__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::TransponderReport *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _TransponderReport__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::TransponderReport *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _TransponderReport__max_serialized_size(bool & full_bounded) { return max_serialized_size_TransponderReport(full_bounded, 0); } static message_type_support_callbacks_t _TransponderReport__callbacks = { "px4_msgs::msg", "TransponderReport", _TransponderReport__cdr_serialize, _TransponderReport__cdr_deserialize, _TransponderReport__get_serialized_size, _TransponderReport__max_serialized_size }; static rosidl_message_type_support_t _TransponderReport__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_TransponderReport__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::TransponderReport>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_TransponderReport__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, TransponderReport)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_TransponderReport__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/follow_target.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/FollowTarget.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__FOLLOW_TARGET_H_ #define PX4_MSGS__MSG__FOLLOW_TARGET_H_ #include "px4_msgs/msg/follow_target__struct.h" #include "px4_msgs/msg/follow_target__functions.h" #include "px4_msgs/msg/follow_target__type_support.h" #endif // PX4_MSGS__MSG__FOLLOW_TARGET_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_rc_channels.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/RcChannels.idl # generated code does not contain a copyright notice # Import statements for member types # Member 'channels' # Member 'function' import numpy # noqa: E402, I100 import rosidl_parser.definition # noqa: E402, I100 class Metaclass_RcChannels(type): """Metaclass of message 'RcChannels'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'FUNCTION_THROTTLE': 0, 'FUNCTION_ROLL': 1, 'FUNCTION_PITCH': 2, 'FUNCTION_YAW': 3, 'FUNCTION_MODE': 4, 'FUNCTION_RETURN': 5, 'FUNCTION_POSCTL': 6, 'FUNCTION_LOITER': 7, 'FUNCTION_OFFBOARD': 8, 'FUNCTION_ACRO': 9, 'FUNCTION_FLAPS': 10, 'FUNCTION_AUX_1': 11, 'FUNCTION_AUX_2': 12, 'FUNCTION_AUX_3': 13, 'FUNCTION_AUX_4': 14, 'FUNCTION_AUX_5': 15, 'FUNCTION_PARAM_1': 16, 'FUNCTION_PARAM_2': 17, 'FUNCTION_PARAM_3_5': 18, 'FUNCTION_KILLSWITCH': 19, 'FUNCTION_TRANSITION': 20, 'FUNCTION_GEAR': 21, 'FUNCTION_ARMSWITCH': 22, 'FUNCTION_STAB': 23, 'FUNCTION_AUX_6': 24, 'FUNCTION_MAN': 25, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.RcChannels') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__rc_channels cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__rc_channels cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__rc_channels cls._TYPE_SUPPORT = module.type_support_msg__msg__rc_channels cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__rc_channels @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'FUNCTION_THROTTLE': cls.__constants['FUNCTION_THROTTLE'], 'FUNCTION_ROLL': cls.__constants['FUNCTION_ROLL'], 'FUNCTION_PITCH': cls.__constants['FUNCTION_PITCH'], 'FUNCTION_YAW': cls.__constants['FUNCTION_YAW'], 'FUNCTION_MODE': cls.__constants['FUNCTION_MODE'], 'FUNCTION_RETURN': cls.__constants['FUNCTION_RETURN'], 'FUNCTION_POSCTL': cls.__constants['FUNCTION_POSCTL'], 'FUNCTION_LOITER': cls.__constants['FUNCTION_LOITER'], 'FUNCTION_OFFBOARD': cls.__constants['FUNCTION_OFFBOARD'], 'FUNCTION_ACRO': cls.__constants['FUNCTION_ACRO'], 'FUNCTION_FLAPS': cls.__constants['FUNCTION_FLAPS'], 'FUNCTION_AUX_1': cls.__constants['FUNCTION_AUX_1'], 'FUNCTION_AUX_2': cls.__constants['FUNCTION_AUX_2'], 'FUNCTION_AUX_3': cls.__constants['FUNCTION_AUX_3'], 'FUNCTION_AUX_4': cls.__constants['FUNCTION_AUX_4'], 'FUNCTION_AUX_5': cls.__constants['FUNCTION_AUX_5'], 'FUNCTION_PARAM_1': cls.__constants['FUNCTION_PARAM_1'], 'FUNCTION_PARAM_2': cls.__constants['FUNCTION_PARAM_2'], 'FUNCTION_PARAM_3_5': cls.__constants['FUNCTION_PARAM_3_5'], 'FUNCTION_KILLSWITCH': cls.__constants['FUNCTION_KILLSWITCH'], 'FUNCTION_TRANSITION': cls.__constants['FUNCTION_TRANSITION'], 'FUNCTION_GEAR': cls.__constants['FUNCTION_GEAR'], 'FUNCTION_ARMSWITCH': cls.__constants['FUNCTION_ARMSWITCH'], 'FUNCTION_STAB': cls.__constants['FUNCTION_STAB'], 'FUNCTION_AUX_6': cls.__constants['FUNCTION_AUX_6'], 'FUNCTION_MAN': cls.__constants['FUNCTION_MAN'], } @property def FUNCTION_THROTTLE(self): """Message constant 'FUNCTION_THROTTLE'.""" return Metaclass_RcChannels.__constants['FUNCTION_THROTTLE'] @property def FUNCTION_ROLL(self): """Message constant 'FUNCTION_ROLL'.""" return Metaclass_RcChannels.__constants['FUNCTION_ROLL'] @property def FUNCTION_PITCH(self): """Message constant 'FUNCTION_PITCH'.""" return Metaclass_RcChannels.__constants['FUNCTION_PITCH'] @property def FUNCTION_YAW(self): """Message constant 'FUNCTION_YAW'.""" return Metaclass_RcChannels.__constants['FUNCTION_YAW'] @property def FUNCTION_MODE(self): """Message constant 'FUNCTION_MODE'.""" return Metaclass_RcChannels.__constants['FUNCTION_MODE'] @property def FUNCTION_RETURN(self): """Message constant 'FUNCTION_RETURN'.""" return Metaclass_RcChannels.__constants['FUNCTION_RETURN'] @property def FUNCTION_POSCTL(self): """Message constant 'FUNCTION_POSCTL'.""" return Metaclass_RcChannels.__constants['FUNCTION_POSCTL'] @property def FUNCTION_LOITER(self): """Message constant 'FUNCTION_LOITER'.""" return Metaclass_RcChannels.__constants['FUNCTION_LOITER'] @property def FUNCTION_OFFBOARD(self): """Message constant 'FUNCTION_OFFBOARD'.""" return Metaclass_RcChannels.__constants['FUNCTION_OFFBOARD'] @property def FUNCTION_ACRO(self): """Message constant 'FUNCTION_ACRO'.""" return Metaclass_RcChannels.__constants['FUNCTION_ACRO'] @property def FUNCTION_FLAPS(self): """Message constant 'FUNCTION_FLAPS'.""" return Metaclass_RcChannels.__constants['FUNCTION_FLAPS'] @property def FUNCTION_AUX_1(self): """Message constant 'FUNCTION_AUX_1'.""" return Metaclass_RcChannels.__constants['FUNCTION_AUX_1'] @property def FUNCTION_AUX_2(self): """Message constant 'FUNCTION_AUX_2'.""" return Metaclass_RcChannels.__constants['FUNCTION_AUX_2'] @property def FUNCTION_AUX_3(self): """Message constant 'FUNCTION_AUX_3'.""" return Metaclass_RcChannels.__constants['FUNCTION_AUX_3'] @property def FUNCTION_AUX_4(self): """Message constant 'FUNCTION_AUX_4'.""" return Metaclass_RcChannels.__constants['FUNCTION_AUX_4'] @property def FUNCTION_AUX_5(self): """Message constant 'FUNCTION_AUX_5'.""" return Metaclass_RcChannels.__constants['FUNCTION_AUX_5'] @property def FUNCTION_PARAM_1(self): """Message constant 'FUNCTION_PARAM_1'.""" return Metaclass_RcChannels.__constants['FUNCTION_PARAM_1'] @property def FUNCTION_PARAM_2(self): """Message constant 'FUNCTION_PARAM_2'.""" return Metaclass_RcChannels.__constants['FUNCTION_PARAM_2'] @property def FUNCTION_PARAM_3_5(self): """Message constant 'FUNCTION_PARAM_3_5'.""" return Metaclass_RcChannels.__constants['FUNCTION_PARAM_3_5'] @property def FUNCTION_KILLSWITCH(self): """Message constant 'FUNCTION_KILLSWITCH'.""" return Metaclass_RcChannels.__constants['FUNCTION_KILLSWITCH'] @property def FUNCTION_TRANSITION(self): """Message constant 'FUNCTION_TRANSITION'.""" return Metaclass_RcChannels.__constants['FUNCTION_TRANSITION'] @property def FUNCTION_GEAR(self): """Message constant 'FUNCTION_GEAR'.""" return Metaclass_RcChannels.__constants['FUNCTION_GEAR'] @property def FUNCTION_ARMSWITCH(self): """Message constant 'FUNCTION_ARMSWITCH'.""" return Metaclass_RcChannels.__constants['FUNCTION_ARMSWITCH'] @property def FUNCTION_STAB(self): """Message constant 'FUNCTION_STAB'.""" return Metaclass_RcChannels.__constants['FUNCTION_STAB'] @property def FUNCTION_AUX_6(self): """Message constant 'FUNCTION_AUX_6'.""" return Metaclass_RcChannels.__constants['FUNCTION_AUX_6'] @property def FUNCTION_MAN(self): """Message constant 'FUNCTION_MAN'.""" return Metaclass_RcChannels.__constants['FUNCTION_MAN'] class RcChannels(metaclass=Metaclass_RcChannels): """ Message class 'RcChannels'. Constants: FUNCTION_THROTTLE FUNCTION_ROLL FUNCTION_PITCH FUNCTION_YAW FUNCTION_MODE FUNCTION_RETURN FUNCTION_POSCTL FUNCTION_LOITER FUNCTION_OFFBOARD FUNCTION_ACRO FUNCTION_FLAPS FUNCTION_AUX_1 FUNCTION_AUX_2 FUNCTION_AUX_3 FUNCTION_AUX_4 FUNCTION_AUX_5 FUNCTION_PARAM_1 FUNCTION_PARAM_2 FUNCTION_PARAM_3_5 FUNCTION_KILLSWITCH FUNCTION_TRANSITION FUNCTION_GEAR FUNCTION_ARMSWITCH FUNCTION_STAB FUNCTION_AUX_6 FUNCTION_MAN """ __slots__ = [ '_timestamp', '_timestamp_last_valid', '_channels', '_channel_count', '_function', '_rssi', '_signal_lost', '_frame_drop_count', ] _fields_and_field_types = { 'timestamp': 'uint64', 'timestamp_last_valid': 'uint64', 'channels': 'float[18]', 'channel_count': 'uint8', 'function': 'int8[26]', 'rssi': 'uint8', 'signal_lost': 'boolean', 'frame_drop_count': 'uint32', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 18), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('int8'), 26), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.timestamp_last_valid = kwargs.get('timestamp_last_valid', int()) if 'channels' not in kwargs: self.channels = numpy.zeros(18, dtype=numpy.float32) else: self.channels = numpy.array(kwargs.get('channels'), dtype=numpy.float32) assert self.channels.shape == (18, ) self.channel_count = kwargs.get('channel_count', int()) if 'function' not in kwargs: self.function = numpy.zeros(26, dtype=numpy.int8) else: self.function = numpy.array(kwargs.get('function'), dtype=numpy.int8) assert self.function.shape == (26, ) self.rssi = kwargs.get('rssi', int()) self.signal_lost = kwargs.get('signal_lost', bool()) self.frame_drop_count = kwargs.get('frame_drop_count', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.timestamp_last_valid != other.timestamp_last_valid: return False if all(self.channels != other.channels): return False if self.channel_count != other.channel_count: return False if all(self.function != other.function): return False if self.rssi != other.rssi: return False if self.signal_lost != other.signal_lost: return False if self.frame_drop_count != other.frame_drop_count: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def timestamp_last_valid(self): """Message field 'timestamp_last_valid'.""" return self._timestamp_last_valid @timestamp_last_valid.setter def timestamp_last_valid(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp_last_valid' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp_last_valid' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp_last_valid = value @property def channels(self): """Message field 'channels'.""" return self._channels @channels.setter def channels(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'channels' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 18, \ "The 'channels' numpy.ndarray() must have a size of 18" self._channels = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 18 and all(isinstance(v, float) for v in value) and True), \ "The 'channels' field must be a set or sequence with length 18 and each value of type 'float'" self._channels = numpy.array(value, dtype=numpy.float32) @property def channel_count(self): """Message field 'channel_count'.""" return self._channel_count @channel_count.setter def channel_count(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'channel_count' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'channel_count' field must be an unsigned integer in [0, 255]" self._channel_count = value @property def function(self): """Message field 'function'.""" return self._function @function.setter def function(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.int8, \ "The 'function' numpy.ndarray() must have the dtype of 'numpy.int8'" assert value.size == 26, \ "The 'function' numpy.ndarray() must have a size of 26" self._function = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 26 and all(isinstance(v, int) for v in value) and all(val >= -128 and val < 128 for val in value)), \ "The 'function' field must be a set or sequence with length 26 and each value of type 'int' and each integer in [-128, 127]" self._function = numpy.array(value, dtype=numpy.int8) @property def rssi(self): """Message field 'rssi'.""" return self._rssi @rssi.setter def rssi(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'rssi' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'rssi' field must be an unsigned integer in [0, 255]" self._rssi = value @property def signal_lost(self): """Message field 'signal_lost'.""" return self._signal_lost @signal_lost.setter def signal_lost(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'signal_lost' field must be of type 'bool'" self._signal_lost = value @property def frame_drop_count(self): """Message field 'frame_drop_count'.""" return self._frame_drop_count @frame_drop_count.setter def frame_drop_count(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'frame_drop_count' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'frame_drop_count' field must be an unsigned integer in [0, 4294967295]" self._frame_drop_count = value <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/safety__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/Safety.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/safety__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/safety__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::Safety & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: safety_switch_available cdr << (ros_message.safety_switch_available ? true : false); // Member: safety_off cdr << (ros_message.safety_off ? true : false); // Member: override_available cdr << (ros_message.override_available ? true : false); // Member: override_enabled cdr << (ros_message.override_enabled ? true : false); return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::Safety & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: safety_switch_available { uint8_t tmp; cdr >> tmp; ros_message.safety_switch_available = tmp ? true : false; } // Member: safety_off { uint8_t tmp; cdr >> tmp; ros_message.safety_off = tmp ? true : false; } // Member: override_available { uint8_t tmp; cdr >> tmp; ros_message.override_available = tmp ? true : false; } // Member: override_enabled { uint8_t tmp; cdr >> tmp; ros_message.override_enabled = tmp ? true : false; } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::Safety & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: safety_switch_available { size_t item_size = sizeof(ros_message.safety_switch_available); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: safety_off { size_t item_size = sizeof(ros_message.safety_off); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: override_available { size_t item_size = sizeof(ros_message.override_available); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: override_enabled { size_t item_size = sizeof(ros_message.override_enabled); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_Safety( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: safety_switch_available { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: safety_off { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: override_available { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: override_enabled { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _Safety__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::Safety *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _Safety__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::Safety *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _Safety__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::Safety *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _Safety__max_serialized_size(bool & full_bounded) { return max_serialized_size_Safety(full_bounded, 0); } static message_type_support_callbacks_t _Safety__callbacks = { "px4_msgs::msg", "Safety", _Safety__cdr_serialize, _Safety__cdr_deserialize, _Safety__get_serialized_size, _Safety__max_serialized_size }; static rosidl_message_type_support_t _Safety__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_Safety__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::Safety>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_Safety__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, Safety)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_Safety__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/mission_result__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/MissionResult.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__MISSION_RESULT__STRUCT_H_ #define PX4_MSGS__MSG__MISSION_RESULT__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'MISSION_EXECUTION_MODE_NORMAL'. enum { px4_msgs__msg__MissionResult__MISSION_EXECUTION_MODE_NORMAL = 0 }; /// Constant 'MISSION_EXECUTION_MODE_REVERSE'. enum { px4_msgs__msg__MissionResult__MISSION_EXECUTION_MODE_REVERSE = 1 }; /// Constant 'MISSION_EXECUTION_MODE_FAST_FORWARD'. enum { px4_msgs__msg__MissionResult__MISSION_EXECUTION_MODE_FAST_FORWARD = 2 }; // Struct defined in msg/MissionResult in the package px4_msgs. typedef struct px4_msgs__msg__MissionResult { uint64_t timestamp; uint32_t instance_count; int32_t seq_reached; uint16_t seq_current; uint16_t seq_total; bool valid; bool warning; bool finished; bool failure; bool stay_in_failsafe; bool flight_termination; bool item_do_jump_changed; uint16_t item_changed_index; uint16_t item_do_jump_remaining; uint8_t execution_mode; } px4_msgs__msg__MissionResult; // Struct for a sequence of px4_msgs__msg__MissionResult. typedef struct px4_msgs__msg__MissionResult__Sequence { px4_msgs__msg__MissionResult * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__MissionResult__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__MISSION_RESULT__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_switches__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/ManualControlSwitches.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/manual_control_switches__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/manual_control_switches__struct.h" #include "px4_msgs/msg/manual_control_switches__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _ManualControlSwitches__ros_msg_type = px4_msgs__msg__ManualControlSwitches; static bool _ManualControlSwitches__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _ManualControlSwitches__ros_msg_type * ros_message = static_cast<const _ManualControlSwitches__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: timestamp_sample { cdr << ros_message->timestamp_sample; } // Field name: mode_slot { cdr << ros_message->mode_slot; } // Field name: arm_switch { cdr << ros_message->arm_switch; } // Field name: return_switch { cdr << ros_message->return_switch; } // Field name: loiter_switch { cdr << ros_message->loiter_switch; } // Field name: offboard_switch { cdr << ros_message->offboard_switch; } // Field name: kill_switch { cdr << ros_message->kill_switch; } // Field name: gear_switch { cdr << ros_message->gear_switch; } // Field name: transition_switch { cdr << ros_message->transition_switch; } // Field name: mode_switch { cdr << ros_message->mode_switch; } // Field name: man_switch { cdr << ros_message->man_switch; } // Field name: acro_switch { cdr << ros_message->acro_switch; } // Field name: stab_switch { cdr << ros_message->stab_switch; } // Field name: posctl_switch { cdr << ros_message->posctl_switch; } // Field name: switch_changes { cdr << ros_message->switch_changes; } return true; } static bool _ManualControlSwitches__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _ManualControlSwitches__ros_msg_type * ros_message = static_cast<_ManualControlSwitches__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: timestamp_sample { cdr >> ros_message->timestamp_sample; } // Field name: mode_slot { cdr >> ros_message->mode_slot; } // Field name: arm_switch { cdr >> ros_message->arm_switch; } // Field name: return_switch { cdr >> ros_message->return_switch; } // Field name: loiter_switch { cdr >> ros_message->loiter_switch; } // Field name: offboard_switch { cdr >> ros_message->offboard_switch; } // Field name: kill_switch { cdr >> ros_message->kill_switch; } // Field name: gear_switch { cdr >> ros_message->gear_switch; } // Field name: transition_switch { cdr >> ros_message->transition_switch; } // Field name: mode_switch { cdr >> ros_message->mode_switch; } // Field name: man_switch { cdr >> ros_message->man_switch; } // Field name: acro_switch { cdr >> ros_message->acro_switch; } // Field name: stab_switch { cdr >> ros_message->stab_switch; } // Field name: posctl_switch { cdr >> ros_message->posctl_switch; } // Field name: switch_changes { cdr >> ros_message->switch_changes; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__ManualControlSwitches( const void * untyped_ros_message, size_t current_alignment) { const _ManualControlSwitches__ros_msg_type * ros_message = static_cast<const _ManualControlSwitches__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name timestamp_sample { size_t item_size = sizeof(ros_message->timestamp_sample); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name mode_slot { size_t item_size = sizeof(ros_message->mode_slot); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name arm_switch { size_t item_size = sizeof(ros_message->arm_switch); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name return_switch { size_t item_size = sizeof(ros_message->return_switch); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name loiter_switch { size_t item_size = sizeof(ros_message->loiter_switch); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name offboard_switch { size_t item_size = sizeof(ros_message->offboard_switch); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name kill_switch { size_t item_size = sizeof(ros_message->kill_switch); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gear_switch { size_t item_size = sizeof(ros_message->gear_switch); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name transition_switch { size_t item_size = sizeof(ros_message->transition_switch); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name mode_switch { size_t item_size = sizeof(ros_message->mode_switch); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name man_switch { size_t item_size = sizeof(ros_message->man_switch); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name acro_switch { size_t item_size = sizeof(ros_message->acro_switch); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name stab_switch { size_t item_size = sizeof(ros_message->stab_switch); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name posctl_switch { size_t item_size = sizeof(ros_message->posctl_switch); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name switch_changes { size_t item_size = sizeof(ros_message->switch_changes); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _ManualControlSwitches__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__ManualControlSwitches( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__ManualControlSwitches( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: timestamp_sample { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: mode_slot { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: arm_switch { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: return_switch { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: loiter_switch { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: offboard_switch { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: kill_switch { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: gear_switch { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: transition_switch { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: mode_switch { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: man_switch { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: acro_switch { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: stab_switch { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: posctl_switch { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: switch_changes { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _ManualControlSwitches__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__ManualControlSwitches( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_ManualControlSwitches = { "px4_msgs::msg", "ManualControlSwitches", _ManualControlSwitches__cdr_serialize, _ManualControlSwitches__cdr_deserialize, _ManualControlSwitches__get_serialized_size, _ManualControlSwitches__max_serialized_size }; static rosidl_message_type_support_t _ManualControlSwitches__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_ManualControlSwitches, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, ManualControlSwitches)() { return &_ManualControlSwitches__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/obstacle_distance_fused__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/ObstacleDistanceFused.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__OBSTACLE_DISTANCE_FUSED__STRUCT_H_ #define PX4_MSGS__MSG__OBSTACLE_DISTANCE_FUSED__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'MAV_FRAME_GLOBAL'. enum { px4_msgs__msg__ObstacleDistanceFused__MAV_FRAME_GLOBAL = 0 }; /// Constant 'MAV_FRAME_LOCAL_NED'. enum { px4_msgs__msg__ObstacleDistanceFused__MAV_FRAME_LOCAL_NED = 1 }; /// Constant 'MAV_FRAME_BODY_FRD'. enum { px4_msgs__msg__ObstacleDistanceFused__MAV_FRAME_BODY_FRD = 12 }; /// Constant 'MAV_DISTANCE_SENSOR_LASER'. enum { px4_msgs__msg__ObstacleDistanceFused__MAV_DISTANCE_SENSOR_LASER = 0 }; /// Constant 'MAV_DISTANCE_SENSOR_ULTRASOUND'. enum { px4_msgs__msg__ObstacleDistanceFused__MAV_DISTANCE_SENSOR_ULTRASOUND = 1 }; /// Constant 'MAV_DISTANCE_SENSOR_INFRARED'. enum { px4_msgs__msg__ObstacleDistanceFused__MAV_DISTANCE_SENSOR_INFRARED = 2 }; /// Constant 'MAV_DISTANCE_SENSOR_RADAR'. enum { px4_msgs__msg__ObstacleDistanceFused__MAV_DISTANCE_SENSOR_RADAR = 3 }; // Struct defined in msg/ObstacleDistanceFused in the package px4_msgs. typedef struct px4_msgs__msg__ObstacleDistanceFused { uint64_t timestamp; uint8_t frame; uint8_t sensor_type; uint16_t distances[72]; float increment; uint16_t min_distance; uint16_t max_distance; float angle_offset; } px4_msgs__msg__ObstacleDistanceFused; // Struct for a sequence of px4_msgs__msg__ObstacleDistanceFused. typedef struct px4_msgs__msg__ObstacleDistanceFused__Sequence { px4_msgs__msg__ObstacleDistanceFused * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__ObstacleDistanceFused__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__OBSTACLE_DISTANCE_FUSED__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_global_position_groundtruth__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleGlobalPositionGroundtruth.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/vehicle_global_position_groundtruth__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void VehicleGlobalPositionGroundtruth_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::VehicleGlobalPositionGroundtruth(_init); } void VehicleGlobalPositionGroundtruth_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::VehicleGlobalPositionGroundtruth *>(message_memory); typed_message->~VehicleGlobalPositionGroundtruth(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember VehicleGlobalPositionGroundtruth_message_member_array[14] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGlobalPositionGroundtruth, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGlobalPositionGroundtruth, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "lat", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_DOUBLE, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGlobalPositionGroundtruth, lat), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "lon", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_DOUBLE, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGlobalPositionGroundtruth, lon), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "alt", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGlobalPositionGroundtruth, alt), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "alt_ellipsoid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGlobalPositionGroundtruth, alt_ellipsoid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "delta_alt", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGlobalPositionGroundtruth, delta_alt), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "lat_lon_reset_counter", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGlobalPositionGroundtruth, lat_lon_reset_counter), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "alt_reset_counter", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGlobalPositionGroundtruth, alt_reset_counter), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "eph", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGlobalPositionGroundtruth, eph), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "epv", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGlobalPositionGroundtruth, epv), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "terrain_alt", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGlobalPositionGroundtruth, terrain_alt), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "terrain_alt_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGlobalPositionGroundtruth, terrain_alt_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "dead_reckoning", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGlobalPositionGroundtruth, dead_reckoning), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers VehicleGlobalPositionGroundtruth_message_members = { "px4_msgs::msg", // message namespace "VehicleGlobalPositionGroundtruth", // message name 14, // number of fields sizeof(px4_msgs::msg::VehicleGlobalPositionGroundtruth), VehicleGlobalPositionGroundtruth_message_member_array, // message members VehicleGlobalPositionGroundtruth_init_function, // function to initialize message memory (memory has to be allocated) VehicleGlobalPositionGroundtruth_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t VehicleGlobalPositionGroundtruth_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &VehicleGlobalPositionGroundtruth_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleGlobalPositionGroundtruth>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleGlobalPositionGroundtruth_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, VehicleGlobalPositionGroundtruth)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleGlobalPositionGroundtruth_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/uavcan_parameter_value.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/UavcanParameterValue.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__UAVCAN_PARAMETER_VALUE_H_ #define PX4_MSGS__MSG__UAVCAN_PARAMETER_VALUE_H_ #include "px4_msgs/msg/uavcan_parameter_value__struct.h" #include "px4_msgs/msg/uavcan_parameter_value__functions.h" #include "px4_msgs/msg/uavcan_parameter_value__type_support.h" #endif // PX4_MSGS__MSG__UAVCAN_PARAMETER_VALUE_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/transponder_report__rosidl_typesupport_introspection_cpp.hpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__rosidl_typesupport_introspection_cpp.h.em // with input from px4_msgs:msg/TransponderReport.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TRANSPONDER_REPORT__ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_HPP_ #define PX4_MSGS__MSG__TRANSPONDER_REPORT__ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_HPP_ #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" #ifdef __cplusplus extern "C" { #endif // TODO(dirk-thomas) these visibility macros should be message package specific ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, TransponderReport)(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__TRANSPONDER_REPORT__ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/distance_sensor__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/DistanceSensor.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/distance_sensor__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void DistanceSensor_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::DistanceSensor(_init); } void DistanceSensor_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::DistanceSensor *>(message_memory); typed_message->~DistanceSensor(); } size_t size_function__DistanceSensor__q(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__DistanceSensor__q(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 4> *>(untyped_member); return &member[index]; } void * get_function__DistanceSensor__q(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 4> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember DistanceSensor_message_member_array[12] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::DistanceSensor, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "device_id", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::DistanceSensor, device_id), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "min_distance", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::DistanceSensor, min_distance), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "max_distance", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::DistanceSensor, max_distance), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "current_distance", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::DistanceSensor, current_distance), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "variance", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::DistanceSensor, variance), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "signal_quality", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::DistanceSensor, signal_quality), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "type", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::DistanceSensor, type), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "h_fov", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::DistanceSensor, h_fov), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "v_fov", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::DistanceSensor, v_fov), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "q", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::DistanceSensor, q), // bytes offset in struct nullptr, // default value size_function__DistanceSensor__q, // size() function pointer get_const_function__DistanceSensor__q, // get_const(index) function pointer get_function__DistanceSensor__q, // get(index) function pointer nullptr // resize(index) function pointer }, { "orientation", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::DistanceSensor, orientation), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers DistanceSensor_message_members = { "px4_msgs::msg", // message namespace "DistanceSensor", // message name 12, // number of fields sizeof(px4_msgs::msg::DistanceSensor), DistanceSensor_message_member_array, // message members DistanceSensor_init_function, // function to initialize message memory (memory has to be allocated) DistanceSensor_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t DistanceSensor_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &DistanceSensor_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::DistanceSensor>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::DistanceSensor_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, DistanceSensor)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::DistanceSensor_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/ekf2_timestamps__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/Ekf2Timestamps.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__EKF2_TIMESTAMPS__STRUCT_H_ #define PX4_MSGS__MSG__EKF2_TIMESTAMPS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'RELATIVE_TIMESTAMP_INVALID'. enum { px4_msgs__msg__Ekf2Timestamps__RELATIVE_TIMESTAMP_INVALID = 32767 }; // Struct defined in msg/Ekf2Timestamps in the package px4_msgs. typedef struct px4_msgs__msg__Ekf2Timestamps { uint64_t timestamp; int16_t airspeed_timestamp_rel; int16_t distance_sensor_timestamp_rel; int16_t optical_flow_timestamp_rel; int16_t vehicle_air_data_timestamp_rel; int16_t vehicle_magnetometer_timestamp_rel; int16_t visual_odometry_timestamp_rel; } px4_msgs__msg__Ekf2Timestamps; // Struct for a sequence of px4_msgs__msg__Ekf2Timestamps. typedef struct px4_msgs__msg__Ekf2Timestamps__Sequence { px4_msgs__msg__Ekf2Timestamps * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__Ekf2Timestamps__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__EKF2_TIMESTAMPS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/trajectory_waypoint__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/TrajectoryWaypoint.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/trajectory_waypoint__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/trajectory_waypoint__functions.h" #include "px4_msgs/msg/trajectory_waypoint__struct.h" #ifdef __cplusplus extern "C" { #endif void TrajectoryWaypoint__rosidl_typesupport_introspection_c__TrajectoryWaypoint_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__TrajectoryWaypoint__init(message_memory); } void TrajectoryWaypoint__rosidl_typesupport_introspection_c__TrajectoryWaypoint_fini_function(void * message_memory) { px4_msgs__msg__TrajectoryWaypoint__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember TrajectoryWaypoint__rosidl_typesupport_introspection_c__TrajectoryWaypoint_message_member_array[8] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TrajectoryWaypoint, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "position", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__TrajectoryWaypoint, position), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "velocity", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__TrajectoryWaypoint, velocity), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "acceleration", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__TrajectoryWaypoint, acceleration), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yaw", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TrajectoryWaypoint, yaw), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yaw_speed", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TrajectoryWaypoint, yaw_speed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "point_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TrajectoryWaypoint, point_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "type", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__TrajectoryWaypoint, type), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers TrajectoryWaypoint__rosidl_typesupport_introspection_c__TrajectoryWaypoint_message_members = { "px4_msgs__msg", // message namespace "TrajectoryWaypoint", // message name 8, // number of fields sizeof(px4_msgs__msg__TrajectoryWaypoint), TrajectoryWaypoint__rosidl_typesupport_introspection_c__TrajectoryWaypoint_message_member_array, // message members TrajectoryWaypoint__rosidl_typesupport_introspection_c__TrajectoryWaypoint_init_function, // function to initialize message memory (memory has to be allocated) TrajectoryWaypoint__rosidl_typesupport_introspection_c__TrajectoryWaypoint_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t TrajectoryWaypoint__rosidl_typesupport_introspection_c__TrajectoryWaypoint_message_type_support_handle = { 0, &TrajectoryWaypoint__rosidl_typesupport_introspection_c__TrajectoryWaypoint_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, TrajectoryWaypoint)() { if (!TrajectoryWaypoint__rosidl_typesupport_introspection_c__TrajectoryWaypoint_message_type_support_handle.typesupport_identifier) { TrajectoryWaypoint__rosidl_typesupport_introspection_c__TrajectoryWaypoint_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &TrajectoryWaypoint__rosidl_typesupport_introspection_c__TrajectoryWaypoint_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_rates_setpoint.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleRatesSetpoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_RATES_SETPOINT_H_ #define PX4_MSGS__MSG__VEHICLE_RATES_SETPOINT_H_ #include "px4_msgs/msg/vehicle_rates_setpoint__struct.h" #include "px4_msgs/msg/vehicle_rates_setpoint__functions.h" #include "px4_msgs/msg/vehicle_rates_setpoint__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_RATES_SETPOINT_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_manual_control_switches_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/ManualControlSwitches.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/manual_control_switches__struct.h" #include "px4_msgs/msg/manual_control_switches__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__manual_control_switches__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[60]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._manual_control_switches.ManualControlSwitches", full_classname_dest, 59) == 0); } px4_msgs__msg__ManualControlSwitches * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // timestamp_sample PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp_sample"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp_sample = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // mode_slot PyObject * field = PyObject_GetAttrString(_pymsg, "mode_slot"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->mode_slot = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // arm_switch PyObject * field = PyObject_GetAttrString(_pymsg, "arm_switch"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->arm_switch = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // return_switch PyObject * field = PyObject_GetAttrString(_pymsg, "return_switch"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->return_switch = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // loiter_switch PyObject * field = PyObject_GetAttrString(_pymsg, "loiter_switch"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->loiter_switch = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // offboard_switch PyObject * field = PyObject_GetAttrString(_pymsg, "offboard_switch"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->offboard_switch = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // kill_switch PyObject * field = PyObject_GetAttrString(_pymsg, "kill_switch"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->kill_switch = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // gear_switch PyObject * field = PyObject_GetAttrString(_pymsg, "gear_switch"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->gear_switch = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // transition_switch PyObject * field = PyObject_GetAttrString(_pymsg, "transition_switch"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->transition_switch = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // mode_switch PyObject * field = PyObject_GetAttrString(_pymsg, "mode_switch"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->mode_switch = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // man_switch PyObject * field = PyObject_GetAttrString(_pymsg, "man_switch"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->man_switch = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // acro_switch PyObject * field = PyObject_GetAttrString(_pymsg, "acro_switch"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->acro_switch = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // stab_switch PyObject * field = PyObject_GetAttrString(_pymsg, "stab_switch"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->stab_switch = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // posctl_switch PyObject * field = PyObject_GetAttrString(_pymsg, "posctl_switch"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->posctl_switch = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // switch_changes PyObject * field = PyObject_GetAttrString(_pymsg, "switch_changes"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->switch_changes = PyLong_AsUnsignedLong(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__manual_control_switches__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of ManualControlSwitches */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._manual_control_switches"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "ManualControlSwitches"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__ManualControlSwitches * ros_message = (px4_msgs__msg__ManualControlSwitches *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // timestamp_sample PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp_sample); { int rc = PyObject_SetAttrString(_pymessage, "timestamp_sample", field); Py_DECREF(field); if (rc) { return NULL; } } } { // mode_slot PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->mode_slot); { int rc = PyObject_SetAttrString(_pymessage, "mode_slot", field); Py_DECREF(field); if (rc) { return NULL; } } } { // arm_switch PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->arm_switch); { int rc = PyObject_SetAttrString(_pymessage, "arm_switch", field); Py_DECREF(field); if (rc) { return NULL; } } } { // return_switch PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->return_switch); { int rc = PyObject_SetAttrString(_pymessage, "return_switch", field); Py_DECREF(field); if (rc) { return NULL; } } } { // loiter_switch PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->loiter_switch); { int rc = PyObject_SetAttrString(_pymessage, "loiter_switch", field); Py_DECREF(field); if (rc) { return NULL; } } } { // offboard_switch PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->offboard_switch); { int rc = PyObject_SetAttrString(_pymessage, "offboard_switch", field); Py_DECREF(field); if (rc) { return NULL; } } } { // kill_switch PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->kill_switch); { int rc = PyObject_SetAttrString(_pymessage, "kill_switch", field); Py_DECREF(field); if (rc) { return NULL; } } } { // gear_switch PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->gear_switch); { int rc = PyObject_SetAttrString(_pymessage, "gear_switch", field); Py_DECREF(field); if (rc) { return NULL; } } } { // transition_switch PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->transition_switch); { int rc = PyObject_SetAttrString(_pymessage, "transition_switch", field); Py_DECREF(field); if (rc) { return NULL; } } } { // mode_switch PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->mode_switch); { int rc = PyObject_SetAttrString(_pymessage, "mode_switch", field); Py_DECREF(field); if (rc) { return NULL; } } } { // man_switch PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->man_switch); { int rc = PyObject_SetAttrString(_pymessage, "man_switch", field); Py_DECREF(field); if (rc) { return NULL; } } } { // acro_switch PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->acro_switch); { int rc = PyObject_SetAttrString(_pymessage, "acro_switch", field); Py_DECREF(field); if (rc) { return NULL; } } } { // stab_switch PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->stab_switch); { int rc = PyObject_SetAttrString(_pymessage, "stab_switch", field); Py_DECREF(field); if (rc) { return NULL; } } } { // posctl_switch PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->posctl_switch); { int rc = PyObject_SetAttrString(_pymessage, "posctl_switch", field); Py_DECREF(field); if (rc) { return NULL; } } } { // switch_changes PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->switch_changes); { int rc = PyObject_SetAttrString(_pymessage, "switch_changes", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_typesupport_c/px4_msgs/msg/vehicle_gps_position__type_support.cpp // generated from rosidl_typesupport_c/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleGpsPosition.idl // generated code does not contain a copyright notice #include "cstddef" #include "rosidl_generator_c/message_type_support_struct.h" #include "px4_msgs/msg/rosidl_typesupport_c__visibility_control.h" #include "px4_msgs/msg/vehicle_gps_position__struct.h" #include "rosidl_typesupport_c/visibility_control.h" #include "px4_msgs/msg/vehicle_gps_position__rosidl_typesupport_fastrtps_c.h" #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_c, px4_msgs, msg, VehicleGpsPosition)() { return ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, VehicleGpsPosition)(); } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_event_flags__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/EstimatorEventFlags.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/estimator_event_flags__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void EstimatorEventFlags_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::EstimatorEventFlags(_init); } void EstimatorEventFlags_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::EstimatorEventFlags *>(message_memory); typed_message->~EstimatorEventFlags(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember EstimatorEventFlags_message_member_array[28] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorEventFlags, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorEventFlags, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "information_event_changes", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorEventFlags, information_event_changes), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "gps_checks_passed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorEventFlags, gps_checks_passed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "reset_vel_to_gps", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorEventFlags, reset_vel_to_gps), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "reset_vel_to_flow", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorEventFlags, reset_vel_to_flow), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "reset_vel_to_vision", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorEventFlags, reset_vel_to_vision), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "reset_vel_to_zero", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorEventFlags, reset_vel_to_zero), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "reset_pos_to_last_known", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorEventFlags, reset_pos_to_last_known), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "reset_pos_to_gps", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorEventFlags, reset_pos_to_gps), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "reset_pos_to_vision", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorEventFlags, reset_pos_to_vision), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "starting_gps_fusion", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorEventFlags, starting_gps_fusion), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "starting_vision_pos_fusion", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorEventFlags, starting_vision_pos_fusion), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "starting_vision_vel_fusion", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorEventFlags, starting_vision_vel_fusion), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "starting_vision_yaw_fusion", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorEventFlags, starting_vision_yaw_fusion), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "yaw_aligned_to_imu_gps", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorEventFlags, yaw_aligned_to_imu_gps), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "warning_event_changes", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorEventFlags, warning_event_changes), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "gps_quality_poor", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorEventFlags, gps_quality_poor), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "gps_fusion_timout", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorEventFlags, gps_fusion_timout), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "gps_data_stopped", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorEventFlags, gps_data_stopped), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "gps_data_stopped_using_alternate", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorEventFlags, gps_data_stopped_using_alternate), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "height_sensor_timeout", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorEventFlags, height_sensor_timeout), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "stopping_navigation", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorEventFlags, stopping_navigation), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "invalid_accel_bias_cov_reset", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorEventFlags, invalid_accel_bias_cov_reset), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "bad_yaw_using_gps_course", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorEventFlags, bad_yaw_using_gps_course), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "stopping_mag_use", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorEventFlags, stopping_mag_use), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vision_data_stopped", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorEventFlags, vision_data_stopped), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "emergency_yaw_reset_mag_stopped", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorEventFlags, emergency_yaw_reset_mag_stopped), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers EstimatorEventFlags_message_members = { "px4_msgs::msg", // message namespace "EstimatorEventFlags", // message name 28, // number of fields sizeof(px4_msgs::msg::EstimatorEventFlags), EstimatorEventFlags_message_member_array, // message members EstimatorEventFlags_init_function, // function to initialize message memory (memory has to be allocated) EstimatorEventFlags_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t EstimatorEventFlags_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &EstimatorEventFlags_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::EstimatorEventFlags>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EstimatorEventFlags_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, EstimatorEventFlags)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EstimatorEventFlags_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_manager_information__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/GimbalManagerInformation.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/gimbal_manager_information__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/gimbal_manager_information__struct.h" #include "px4_msgs/msg/gimbal_manager_information__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _GimbalManagerInformation__ros_msg_type = px4_msgs__msg__GimbalManagerInformation; static bool _GimbalManagerInformation__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _GimbalManagerInformation__ros_msg_type * ros_message = static_cast<const _GimbalManagerInformation__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: cap_flags { cdr << ros_message->cap_flags; } // Field name: gimbal_device_id { cdr << ros_message->gimbal_device_id; } // Field name: roll_min { cdr << ros_message->roll_min; } // Field name: roll_max { cdr << ros_message->roll_max; } // Field name: pitch_min { cdr << ros_message->pitch_min; } // Field name: pitch_max { cdr << ros_message->pitch_max; } // Field name: yaw_min { cdr << ros_message->yaw_min; } // Field name: yaw_max { cdr << ros_message->yaw_max; } return true; } static bool _GimbalManagerInformation__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _GimbalManagerInformation__ros_msg_type * ros_message = static_cast<_GimbalManagerInformation__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: cap_flags { cdr >> ros_message->cap_flags; } // Field name: gimbal_device_id { cdr >> ros_message->gimbal_device_id; } // Field name: roll_min { cdr >> ros_message->roll_min; } // Field name: roll_max { cdr >> ros_message->roll_max; } // Field name: pitch_min { cdr >> ros_message->pitch_min; } // Field name: pitch_max { cdr >> ros_message->pitch_max; } // Field name: yaw_min { cdr >> ros_message->yaw_min; } // Field name: yaw_max { cdr >> ros_message->yaw_max; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__GimbalManagerInformation( const void * untyped_ros_message, size_t current_alignment) { const _GimbalManagerInformation__ros_msg_type * ros_message = static_cast<const _GimbalManagerInformation__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cap_flags { size_t item_size = sizeof(ros_message->cap_flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gimbal_device_id { size_t item_size = sizeof(ros_message->gimbal_device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name roll_min { size_t item_size = sizeof(ros_message->roll_min); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name roll_max { size_t item_size = sizeof(ros_message->roll_max); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name pitch_min { size_t item_size = sizeof(ros_message->pitch_min); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name pitch_max { size_t item_size = sizeof(ros_message->pitch_max); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name yaw_min { size_t item_size = sizeof(ros_message->yaw_min); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name yaw_max { size_t item_size = sizeof(ros_message->yaw_max); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _GimbalManagerInformation__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__GimbalManagerInformation( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__GimbalManagerInformation( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: cap_flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gimbal_device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: roll_min { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: roll_max { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: pitch_min { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: pitch_max { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: yaw_min { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: yaw_max { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _GimbalManagerInformation__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__GimbalManagerInformation( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_GimbalManagerInformation = { "px4_msgs::msg", "GimbalManagerInformation", _GimbalManagerInformation__cdr_serialize, _GimbalManagerInformation__cdr_deserialize, _GimbalManagerInformation__get_serialized_size, _GimbalManagerInformation__max_serialized_size }; static rosidl_message_type_support_t _GimbalManagerInformation__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_GimbalManagerInformation, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, GimbalManagerInformation)() { return &_GimbalManagerInformation__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_visual_odometry__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleVisualOdometry.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/vehicle_visual_odometry__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void VehicleVisualOdometry_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::VehicleVisualOdometry(_init); } void VehicleVisualOdometry_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::VehicleVisualOdometry *>(message_memory); typed_message->~VehicleVisualOdometry(); } size_t size_function__VehicleVisualOdometry__q(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__VehicleVisualOdometry__q(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 4> *>(untyped_member); return &member[index]; } void * get_function__VehicleVisualOdometry__q(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 4> *>(untyped_member); return &member[index]; } size_t size_function__VehicleVisualOdometry__q_offset(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__VehicleVisualOdometry__q_offset(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 4> *>(untyped_member); return &member[index]; } void * get_function__VehicleVisualOdometry__q_offset(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 4> *>(untyped_member); return &member[index]; } size_t size_function__VehicleVisualOdometry__pose_covariance(const void * untyped_member) { (void)untyped_member; return 21; } const void * get_const_function__VehicleVisualOdometry__pose_covariance(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 21> *>(untyped_member); return &member[index]; } void * get_function__VehicleVisualOdometry__pose_covariance(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 21> *>(untyped_member); return &member[index]; } size_t size_function__VehicleVisualOdometry__velocity_covariance(const void * untyped_member) { (void)untyped_member; return 21; } const void * get_const_function__VehicleVisualOdometry__velocity_covariance(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 21> *>(untyped_member); return &member[index]; } void * get_function__VehicleVisualOdometry__velocity_covariance(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 21> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember VehicleVisualOdometry_message_member_array[17] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleVisualOdometry, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleVisualOdometry, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "local_frame", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleVisualOdometry, local_frame), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "x", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleVisualOdometry, x), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "y", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleVisualOdometry, y), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "z", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleVisualOdometry, z), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "q", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleVisualOdometry, q), // bytes offset in struct nullptr, // default value size_function__VehicleVisualOdometry__q, // size() function pointer get_const_function__VehicleVisualOdometry__q, // get_const(index) function pointer get_function__VehicleVisualOdometry__q, // get(index) function pointer nullptr // resize(index) function pointer }, { "q_offset", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleVisualOdometry, q_offset), // bytes offset in struct nullptr, // default value size_function__VehicleVisualOdometry__q_offset, // size() function pointer get_const_function__VehicleVisualOdometry__q_offset, // get_const(index) function pointer get_function__VehicleVisualOdometry__q_offset, // get(index) function pointer nullptr // resize(index) function pointer }, { "pose_covariance", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 21, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleVisualOdometry, pose_covariance), // bytes offset in struct nullptr, // default value size_function__VehicleVisualOdometry__pose_covariance, // size() function pointer get_const_function__VehicleVisualOdometry__pose_covariance, // get_const(index) function pointer get_function__VehicleVisualOdometry__pose_covariance, // get(index) function pointer nullptr // resize(index) function pointer }, { "velocity_frame", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleVisualOdometry, velocity_frame), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vx", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleVisualOdometry, vx), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vy", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleVisualOdometry, vy), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vz", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleVisualOdometry, vz), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rollspeed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleVisualOdometry, rollspeed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "pitchspeed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleVisualOdometry, pitchspeed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "yawspeed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleVisualOdometry, yawspeed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "velocity_covariance", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 21, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleVisualOdometry, velocity_covariance), // bytes offset in struct nullptr, // default value size_function__VehicleVisualOdometry__velocity_covariance, // size() function pointer get_const_function__VehicleVisualOdometry__velocity_covariance, // get_const(index) function pointer get_function__VehicleVisualOdometry__velocity_covariance, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers VehicleVisualOdometry_message_members = { "px4_msgs::msg", // message namespace "VehicleVisualOdometry", // message name 17, // number of fields sizeof(px4_msgs::msg::VehicleVisualOdometry), VehicleVisualOdometry_message_member_array, // message members VehicleVisualOdometry_init_function, // function to initialize message memory (memory has to be allocated) VehicleVisualOdometry_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t VehicleVisualOdometry_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &VehicleVisualOdometry_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleVisualOdometry>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleVisualOdometry_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, VehicleVisualOdometry)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleVisualOdometry_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_rc_parameter_map_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/RcParameterMap.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rc_parameter_map__struct.h" #include "px4_msgs/msg/rc_parameter_map__functions.h" #include "rosidl_generator_c/primitives_sequence.h" #include "rosidl_generator_c/primitives_sequence_functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__rc_parameter_map__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[46]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._rc_parameter_map.RcParameterMap", full_classname_dest, 45) == 0); } px4_msgs__msg__RcParameterMap * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // valid PyObject * field = PyObject_GetAttrString(_pymsg, "valid"); if (!field) { return false; } PyObject * seq_field = PySequence_Fast(field, "expected a sequence in 'valid'"); if (!seq_field) { Py_DECREF(field); return false; } Py_ssize_t size = 3; bool * dest = ros_message->valid; for (Py_ssize_t i = 0; i < size; ++i) { PyObject * item = PySequence_Fast_GET_ITEM(seq_field, i); if (!item) { Py_DECREF(seq_field); Py_DECREF(field); return false; } assert(PyBool_Check(item)); bool tmp = (item == Py_True); memcpy(&dest[i], &tmp, sizeof(bool)); } Py_DECREF(seq_field); Py_DECREF(field); } { // param_index PyObject * field = PyObject_GetAttrString(_pymsg, "param_index"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_INT32); Py_ssize_t size = 3; int32_t * dest = ros_message->param_index; for (Py_ssize_t i = 0; i < size; ++i) { int32_t tmp = *(npy_int32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(int32_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // param_id PyObject * field = PyObject_GetAttrString(_pymsg, "param_id"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); Py_ssize_t size = 51; uint8_t * dest = ros_message->param_id; for (Py_ssize_t i = 0; i < size; ++i) { uint8_t tmp = *(npy_uint8 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint8_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // scale PyObject * field = PyObject_GetAttrString(_pymsg, "scale"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); Py_ssize_t size = 3; float * dest = ros_message->scale; for (Py_ssize_t i = 0; i < size; ++i) { float tmp = *(npy_float32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(float)); } Py_DECREF(seq_field); Py_DECREF(field); } { // value0 PyObject * field = PyObject_GetAttrString(_pymsg, "value0"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); Py_ssize_t size = 3; float * dest = ros_message->value0; for (Py_ssize_t i = 0; i < size; ++i) { float tmp = *(npy_float32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(float)); } Py_DECREF(seq_field); Py_DECREF(field); } { // value_min PyObject * field = PyObject_GetAttrString(_pymsg, "value_min"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); Py_ssize_t size = 3; float * dest = ros_message->value_min; for (Py_ssize_t i = 0; i < size; ++i) { float tmp = *(npy_float32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(float)); } Py_DECREF(seq_field); Py_DECREF(field); } { // value_max PyObject * field = PyObject_GetAttrString(_pymsg, "value_max"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); Py_ssize_t size = 3; float * dest = ros_message->value_max; for (Py_ssize_t i = 0; i < size; ++i) { float tmp = *(npy_float32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(float)); } Py_DECREF(seq_field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__rc_parameter_map__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of RcParameterMap */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._rc_parameter_map"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "RcParameterMap"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__RcParameterMap * ros_message = (px4_msgs__msg__RcParameterMap *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // valid PyObject * field = NULL; size_t size = 3; bool * src = ros_message->valid; field = PyList_New(size); if (!field) { return NULL; } for (size_t i = 0; i < size; ++i) { int rc = PyList_SetItem(field, i, PyBool_FromLong(src[i] ? 1 : 0)); (void)rc; assert(rc == 0); } assert(PySequence_Check(field)); { int rc = PyObject_SetAttrString(_pymessage, "valid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // param_index PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "param_index"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_INT32); assert(sizeof(npy_int32) == sizeof(int32_t)); npy_int32 * dst = (npy_int32 *)PyArray_GETPTR1(seq_field, 0); int32_t * src = &(ros_message->param_index[0]); memcpy(dst, src, 3 * sizeof(int32_t)); Py_DECREF(field); } { // param_id PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "param_id"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT8); assert(sizeof(npy_uint8) == sizeof(uint8_t)); npy_uint8 * dst = (npy_uint8 *)PyArray_GETPTR1(seq_field, 0); uint8_t * src = &(ros_message->param_id[0]); memcpy(dst, src, 51 * sizeof(uint8_t)); Py_DECREF(field); } { // scale PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "scale"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); assert(sizeof(npy_float32) == sizeof(float)); npy_float32 * dst = (npy_float32 *)PyArray_GETPTR1(seq_field, 0); float * src = &(ros_message->scale[0]); memcpy(dst, src, 3 * sizeof(float)); Py_DECREF(field); } { // value0 PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "value0"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); assert(sizeof(npy_float32) == sizeof(float)); npy_float32 * dst = (npy_float32 *)PyArray_GETPTR1(seq_field, 0); float * src = &(ros_message->value0[0]); memcpy(dst, src, 3 * sizeof(float)); Py_DECREF(field); } { // value_min PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "value_min"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); assert(sizeof(npy_float32) == sizeof(float)); npy_float32 * dst = (npy_float32 *)PyArray_GETPTR1(seq_field, 0); float * src = &(ros_message->value_min[0]); memcpy(dst, src, 3 * sizeof(float)); Py_DECREF(field); } { // value_max PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "value_max"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); assert(sizeof(npy_float32) == sizeof(float)); npy_float32 * dst = (npy_float32 *)PyArray_GETPTR1(seq_field, 0); float * src = &(ros_message->value_max[0]); memcpy(dst, src, 3 * sizeof(float)); Py_DECREF(field); } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/input_rc__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/InputRc.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/input_rc__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__InputRc__init(px4_msgs__msg__InputRc * msg) { if (!msg) { return false; } // timestamp // timestamp_last_signal // channel_count // rssi // rc_failsafe // rc_lost // rc_lost_frame_count // rc_total_frame_count // rc_ppm_frame_length // input_source // values return true; } void px4_msgs__msg__InputRc__fini(px4_msgs__msg__InputRc * msg) { if (!msg) { return; } // timestamp // timestamp_last_signal // channel_count // rssi // rc_failsafe // rc_lost // rc_lost_frame_count // rc_total_frame_count // rc_ppm_frame_length // input_source // values } px4_msgs__msg__InputRc * px4_msgs__msg__InputRc__create() { px4_msgs__msg__InputRc * msg = (px4_msgs__msg__InputRc *)malloc(sizeof(px4_msgs__msg__InputRc)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__InputRc)); bool success = px4_msgs__msg__InputRc__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__InputRc__destroy(px4_msgs__msg__InputRc * msg) { if (msg) { px4_msgs__msg__InputRc__fini(msg); } free(msg); } bool px4_msgs__msg__InputRc__Sequence__init(px4_msgs__msg__InputRc__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__InputRc * data = NULL; if (size) { data = (px4_msgs__msg__InputRc *)calloc(size, sizeof(px4_msgs__msg__InputRc)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__InputRc__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__InputRc__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__InputRc__Sequence__fini(px4_msgs__msg__InputRc__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__InputRc__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__InputRc__Sequence * px4_msgs__msg__InputRc__Sequence__create(size_t size) { px4_msgs__msg__InputRc__Sequence * array = (px4_msgs__msg__InputRc__Sequence *)malloc(sizeof(px4_msgs__msg__InputRc__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__InputRc__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__InputRc__Sequence__destroy(px4_msgs__msg__InputRc__Sequence * array) { if (array) { px4_msgs__msg__InputRc__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/esc_report__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/EscReport.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESC_REPORT__STRUCT_H_ #define PX4_MSGS__MSG__ESC_REPORT__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'FAILURE_NONE'. enum { px4_msgs__msg__EscReport__FAILURE_NONE = 0 }; /// Constant 'FAILURE_OVER_CURRENT_MASK'. enum { px4_msgs__msg__EscReport__FAILURE_OVER_CURRENT_MASK = 1 }; /// Constant 'FAILURE_OVER_VOLTAGE_MASK'. enum { px4_msgs__msg__EscReport__FAILURE_OVER_VOLTAGE_MASK = 2 }; /// Constant 'FAILURE_OVER_TEMPERATURE_MASK'. enum { px4_msgs__msg__EscReport__FAILURE_OVER_TEMPERATURE_MASK = 4 }; /// Constant 'FAILURE_OVER_RPM_MASK'. enum { px4_msgs__msg__EscReport__FAILURE_OVER_RPM_MASK = 8 }; /// Constant 'FAILURE_INCONSISTENT_CMD_MASK'. enum { px4_msgs__msg__EscReport__FAILURE_INCONSISTENT_CMD_MASK = 16 }; /// Constant 'FAILURE_MOTOR_STUCK_MASK'. enum { px4_msgs__msg__EscReport__FAILURE_MOTOR_STUCK_MASK = 32 }; /// Constant 'FAILURE_GENERIC_MASK'. enum { px4_msgs__msg__EscReport__FAILURE_GENERIC_MASK = 64 }; // Struct defined in msg/EscReport in the package px4_msgs. typedef struct px4_msgs__msg__EscReport { uint64_t timestamp; uint32_t esc_errorcount; int32_t esc_rpm; float esc_voltage; float esc_current; uint8_t esc_temperature; uint8_t esc_address; uint8_t esc_state; uint8_t failures; } px4_msgs__msg__EscReport; // Struct for a sequence of px4_msgs__msg__EscReport. typedef struct px4_msgs__msg__EscReport__Sequence { px4_msgs__msg__EscReport * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__EscReport__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ESC_REPORT__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/system_power__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/SystemPower.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SYSTEM_POWER__STRUCT_H_ #define PX4_MSGS__MSG__SYSTEM_POWER__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'BRICK1_VALID_SHIFTS'. enum { px4_msgs__msg__SystemPower__BRICK1_VALID_SHIFTS = 0 }; /// Constant 'BRICK1_VALID_MASK'. enum { px4_msgs__msg__SystemPower__BRICK1_VALID_MASK = 1 }; /// Constant 'BRICK2_VALID_SHIFTS'. enum { px4_msgs__msg__SystemPower__BRICK2_VALID_SHIFTS = 1 }; /// Constant 'BRICK2_VALID_MASK'. enum { px4_msgs__msg__SystemPower__BRICK2_VALID_MASK = 2 }; /// Constant 'BRICK3_VALID_SHIFTS'. enum { px4_msgs__msg__SystemPower__BRICK3_VALID_SHIFTS = 2 }; /// Constant 'BRICK3_VALID_MASK'. enum { px4_msgs__msg__SystemPower__BRICK3_VALID_MASK = 4 }; /// Constant 'BRICK4_VALID_SHIFTS'. enum { px4_msgs__msg__SystemPower__BRICK4_VALID_SHIFTS = 3 }; /// Constant 'BRICK4_VALID_MASK'. enum { px4_msgs__msg__SystemPower__BRICK4_VALID_MASK = 8 }; // Struct defined in msg/SystemPower in the package px4_msgs. typedef struct px4_msgs__msg__SystemPower { uint64_t timestamp; float voltage5v_v; float sensors3v3[4]; uint8_t sensors3v3_valid; uint8_t usb_connected; uint8_t brick_valid; uint8_t usb_valid; uint8_t servo_valid; uint8_t periph_5v_oc; uint8_t hipower_5v_oc; uint8_t comp_5v_valid; uint8_t can1_gps1_5v_valid; } px4_msgs__msg__SystemPower; // Struct for a sequence of px4_msgs__msg__SystemPower. typedef struct px4_msgs__msg__SystemPower__Sequence { px4_msgs__msg__SystemPower * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__SystemPower__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__SYSTEM_POWER__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_event_flags__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/EstimatorEventFlags.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/estimator_event_flags__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__EstimatorEventFlags__init(px4_msgs__msg__EstimatorEventFlags * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // information_event_changes // gps_checks_passed // reset_vel_to_gps // reset_vel_to_flow // reset_vel_to_vision // reset_vel_to_zero // reset_pos_to_last_known // reset_pos_to_gps // reset_pos_to_vision // starting_gps_fusion // starting_vision_pos_fusion // starting_vision_vel_fusion // starting_vision_yaw_fusion // yaw_aligned_to_imu_gps // warning_event_changes // gps_quality_poor // gps_fusion_timout // gps_data_stopped // gps_data_stopped_using_alternate // height_sensor_timeout // stopping_navigation // invalid_accel_bias_cov_reset // bad_yaw_using_gps_course // stopping_mag_use // vision_data_stopped // emergency_yaw_reset_mag_stopped return true; } void px4_msgs__msg__EstimatorEventFlags__fini(px4_msgs__msg__EstimatorEventFlags * msg) { if (!msg) { return; } // timestamp // timestamp_sample // information_event_changes // gps_checks_passed // reset_vel_to_gps // reset_vel_to_flow // reset_vel_to_vision // reset_vel_to_zero // reset_pos_to_last_known // reset_pos_to_gps // reset_pos_to_vision // starting_gps_fusion // starting_vision_pos_fusion // starting_vision_vel_fusion // starting_vision_yaw_fusion // yaw_aligned_to_imu_gps // warning_event_changes // gps_quality_poor // gps_fusion_timout // gps_data_stopped // gps_data_stopped_using_alternate // height_sensor_timeout // stopping_navigation // invalid_accel_bias_cov_reset // bad_yaw_using_gps_course // stopping_mag_use // vision_data_stopped // emergency_yaw_reset_mag_stopped } px4_msgs__msg__EstimatorEventFlags * px4_msgs__msg__EstimatorEventFlags__create() { px4_msgs__msg__EstimatorEventFlags * msg = (px4_msgs__msg__EstimatorEventFlags *)malloc(sizeof(px4_msgs__msg__EstimatorEventFlags)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__EstimatorEventFlags)); bool success = px4_msgs__msg__EstimatorEventFlags__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__EstimatorEventFlags__destroy(px4_msgs__msg__EstimatorEventFlags * msg) { if (msg) { px4_msgs__msg__EstimatorEventFlags__fini(msg); } free(msg); } bool px4_msgs__msg__EstimatorEventFlags__Sequence__init(px4_msgs__msg__EstimatorEventFlags__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__EstimatorEventFlags * data = NULL; if (size) { data = (px4_msgs__msg__EstimatorEventFlags *)calloc(size, sizeof(px4_msgs__msg__EstimatorEventFlags)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__EstimatorEventFlags__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__EstimatorEventFlags__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__EstimatorEventFlags__Sequence__fini(px4_msgs__msg__EstimatorEventFlags__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__EstimatorEventFlags__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__EstimatorEventFlags__Sequence * px4_msgs__msg__EstimatorEventFlags__Sequence__create(size_t size) { px4_msgs__msg__EstimatorEventFlags__Sequence * array = (px4_msgs__msg__EstimatorEventFlags__Sequence *)malloc(sizeof(px4_msgs__msg__EstimatorEventFlags__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__EstimatorEventFlags__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__EstimatorEventFlags__Sequence__destroy(px4_msgs__msg__EstimatorEventFlags__Sequence * array) { if (array) { px4_msgs__msg__EstimatorEventFlags__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/battery_status__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/BatteryStatus.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/battery_status__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/battery_status__functions.h" #include "px4_msgs/msg/battery_status__struct.h" #ifdef __cplusplus extern "C" { #endif void BatteryStatus__rosidl_typesupport_introspection_c__BatteryStatus_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__BatteryStatus__init(message_memory); } void BatteryStatus__rosidl_typesupport_introspection_c__BatteryStatus_fini_function(void * message_memory) { px4_msgs__msg__BatteryStatus__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember BatteryStatus__rosidl_typesupport_introspection_c__BatteryStatus_message_member_array[35] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "voltage_v", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, voltage_v), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "voltage_filtered_v", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, voltage_filtered_v), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "current_a", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, current_a), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "current_filtered_a", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, current_filtered_a), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "average_current_a", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, average_current_a), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "discharged_mah", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, discharged_mah), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "remaining", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, remaining), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "scale", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, scale), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "temperature", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, temperature), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cell_count", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, cell_count), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "connected", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, connected), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "source", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, source), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "priority", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, priority), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "capacity", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, capacity), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cycle_count", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, cycle_count), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "run_time_to_empty", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, run_time_to_empty), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "average_time_to_empty", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, average_time_to_empty), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "serial_number", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, serial_number), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "manufacture_date", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, manufacture_date), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "state_of_health", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, state_of_health), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "max_error", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, max_error), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "interface_error", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, interface_error), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "voltage_cell_v", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 14, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, voltage_cell_v), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "max_cell_voltage_delta", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, max_cell_voltage_delta), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "is_powering_off", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, is_powering_off), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "warning", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, warning), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "average_power", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, average_power), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "available_energy", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, available_energy), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "remaining_capacity", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, remaining_capacity), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "design_capacity", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, design_capacity), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "average_time_to_full", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, average_time_to_full), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "over_discharge_count", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, over_discharge_count), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "nominal_voltage", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__BatteryStatus, nominal_voltage), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers BatteryStatus__rosidl_typesupport_introspection_c__BatteryStatus_message_members = { "px4_msgs__msg", // message namespace "BatteryStatus", // message name 35, // number of fields sizeof(px4_msgs__msg__BatteryStatus), BatteryStatus__rosidl_typesupport_introspection_c__BatteryStatus_message_member_array, // message members BatteryStatus__rosidl_typesupport_introspection_c__BatteryStatus_init_function, // function to initialize message memory (memory has to be allocated) BatteryStatus__rosidl_typesupport_introspection_c__BatteryStatus_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t BatteryStatus__rosidl_typesupport_introspection_c__BatteryStatus_message_type_support_handle = { 0, &BatteryStatus__rosidl_typesupport_introspection_c__BatteryStatus_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, BatteryStatus)() { if (!BatteryStatus__rosidl_typesupport_introspection_c__BatteryStatus_message_type_support_handle.typesupport_identifier) { BatteryStatus__rosidl_typesupport_introspection_c__BatteryStatus_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &BatteryStatus__rosidl_typesupport_introspection_c__BatteryStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_controls__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/ActuatorControls.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS__STRUCT_H_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'NUM_ACTUATOR_CONTROLS'. enum { px4_msgs__msg__ActuatorControls__NUM_ACTUATOR_CONTROLS = 8 }; /// Constant 'NUM_ACTUATOR_CONTROL_GROUPS'. enum { px4_msgs__msg__ActuatorControls__NUM_ACTUATOR_CONTROL_GROUPS = 6 }; /// Constant 'INDEX_ROLL'. enum { px4_msgs__msg__ActuatorControls__INDEX_ROLL = 0 }; /// Constant 'INDEX_PITCH'. enum { px4_msgs__msg__ActuatorControls__INDEX_PITCH = 1 }; /// Constant 'INDEX_YAW'. enum { px4_msgs__msg__ActuatorControls__INDEX_YAW = 2 }; /// Constant 'INDEX_THROTTLE'. enum { px4_msgs__msg__ActuatorControls__INDEX_THROTTLE = 3 }; /// Constant 'INDEX_FLAPS'. enum { px4_msgs__msg__ActuatorControls__INDEX_FLAPS = 4 }; /// Constant 'INDEX_SPOILERS'. enum { px4_msgs__msg__ActuatorControls__INDEX_SPOILERS = 5 }; /// Constant 'INDEX_AIRBRAKES'. enum { px4_msgs__msg__ActuatorControls__INDEX_AIRBRAKES = 6 }; /// Constant 'INDEX_LANDING_GEAR'. enum { px4_msgs__msg__ActuatorControls__INDEX_LANDING_GEAR = 7 }; /// Constant 'INDEX_GIMBAL_SHUTTER'. enum { px4_msgs__msg__ActuatorControls__INDEX_GIMBAL_SHUTTER = 3 }; /// Constant 'INDEX_CAMERA_ZOOM'. enum { px4_msgs__msg__ActuatorControls__INDEX_CAMERA_ZOOM = 4 }; /// Constant 'GROUP_INDEX_ATTITUDE'. enum { px4_msgs__msg__ActuatorControls__GROUP_INDEX_ATTITUDE = 0 }; /// Constant 'GROUP_INDEX_ATTITUDE_ALTERNATE'. enum { px4_msgs__msg__ActuatorControls__GROUP_INDEX_ATTITUDE_ALTERNATE = 1 }; /// Constant 'GROUP_INDEX_GIMBAL'. enum { px4_msgs__msg__ActuatorControls__GROUP_INDEX_GIMBAL = 2 }; /// Constant 'GROUP_INDEX_MANUAL_PASSTHROUGH'. enum { px4_msgs__msg__ActuatorControls__GROUP_INDEX_MANUAL_PASSTHROUGH = 3 }; /// Constant 'GROUP_INDEX_ALLOCATED_PART1'. enum { px4_msgs__msg__ActuatorControls__GROUP_INDEX_ALLOCATED_PART1 = 4 }; /// Constant 'GROUP_INDEX_ALLOCATED_PART2'. enum { px4_msgs__msg__ActuatorControls__GROUP_INDEX_ALLOCATED_PART2 = 5 }; /// Constant 'GROUP_INDEX_PAYLOAD'. enum { px4_msgs__msg__ActuatorControls__GROUP_INDEX_PAYLOAD = 6 }; // Struct defined in msg/ActuatorControls in the package px4_msgs. typedef struct px4_msgs__msg__ActuatorControls { uint64_t timestamp; uint64_t timestamp_sample; float control[8]; } px4_msgs__msg__ActuatorControls; // Struct for a sequence of px4_msgs__msg__ActuatorControls. typedef struct px4_msgs__msg__ActuatorControls__Sequence { px4_msgs__msg__ActuatorControls * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__ActuatorControls__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_wind__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/EstimatorWind.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/estimator_wind__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/estimator_wind__functions.h" #include "px4_msgs/msg/estimator_wind__struct.h" #ifdef __cplusplus extern "C" { #endif void EstimatorWind__rosidl_typesupport_introspection_c__EstimatorWind_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__EstimatorWind__init(message_memory); } void EstimatorWind__rosidl_typesupport_introspection_c__EstimatorWind_fini_function(void * message_memory) { px4_msgs__msg__EstimatorWind__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember EstimatorWind__rosidl_typesupport_introspection_c__EstimatorWind_message_member_array[10] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorWind, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorWind, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "windspeed_north", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorWind, windspeed_north), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "windspeed_east", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorWind, windspeed_east), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "variance_north", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorWind, variance_north), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "variance_east", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorWind, variance_east), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "tas_innov", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorWind, tas_innov), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "tas_innov_var", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorWind, tas_innov_var), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "beta_innov", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorWind, beta_innov), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "beta_innov_var", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorWind, beta_innov_var), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers EstimatorWind__rosidl_typesupport_introspection_c__EstimatorWind_message_members = { "px4_msgs__msg", // message namespace "EstimatorWind", // message name 10, // number of fields sizeof(px4_msgs__msg__EstimatorWind), EstimatorWind__rosidl_typesupport_introspection_c__EstimatorWind_message_member_array, // message members EstimatorWind__rosidl_typesupport_introspection_c__EstimatorWind_init_function, // function to initialize message memory (memory has to be allocated) EstimatorWind__rosidl_typesupport_introspection_c__EstimatorWind_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t EstimatorWind__rosidl_typesupport_introspection_c__EstimatorWind_message_type_support_handle = { 0, &EstimatorWind__rosidl_typesupport_introspection_c__EstimatorWind_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, EstimatorWind)() { if (!EstimatorWind__rosidl_typesupport_introspection_c__EstimatorWind_message_type_support_handle.typesupport_identifier) { EstimatorWind__rosidl_typesupport_introspection_c__EstimatorWind_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &EstimatorWind__rosidl_typesupport_introspection_c__EstimatorWind_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/esc_status__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/EscStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESC_STATUS__STRUCT_H_ #define PX4_MSGS__MSG__ESC_STATUS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'CONNECTED_ESC_MAX'. enum { px4_msgs__msg__EscStatus__CONNECTED_ESC_MAX = 8 }; /// Constant 'ESC_CONNECTION_TYPE_PPM'. enum { px4_msgs__msg__EscStatus__ESC_CONNECTION_TYPE_PPM = 0 }; /// Constant 'ESC_CONNECTION_TYPE_SERIAL'. enum { px4_msgs__msg__EscStatus__ESC_CONNECTION_TYPE_SERIAL = 1 }; /// Constant 'ESC_CONNECTION_TYPE_ONESHOT'. enum { px4_msgs__msg__EscStatus__ESC_CONNECTION_TYPE_ONESHOT = 2 }; /// Constant 'ESC_CONNECTION_TYPE_I2C'. enum { px4_msgs__msg__EscStatus__ESC_CONNECTION_TYPE_I2C = 3 }; /// Constant 'ESC_CONNECTION_TYPE_CAN'. enum { px4_msgs__msg__EscStatus__ESC_CONNECTION_TYPE_CAN = 4 }; /// Constant 'ESC_CONNECTION_TYPE_DSHOT'. enum { px4_msgs__msg__EscStatus__ESC_CONNECTION_TYPE_DSHOT = 5 }; // Include directives for member types // Member 'esc' #include "px4_msgs/msg/esc_report__struct.h" // Struct defined in msg/EscStatus in the package px4_msgs. typedef struct px4_msgs__msg__EscStatus { uint64_t timestamp; uint16_t counter; uint8_t esc_count; uint8_t esc_connectiontype; uint8_t esc_online_flags; uint8_t esc_armed_flags; px4_msgs__msg__EscReport esc[8]; } px4_msgs__msg__EscStatus; // Struct for a sequence of px4_msgs__msg__EscStatus. typedef struct px4_msgs__msg__EscStatus__Sequence { px4_msgs__msg__EscStatus * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__EscStatus__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ESC_STATUS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/ekf2_timestamps.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/Ekf2Timestamps.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__EKF2_TIMESTAMPS_H_ #define PX4_MSGS__MSG__EKF2_TIMESTAMPS_H_ #include "px4_msgs/msg/ekf2_timestamps__struct.h" #include "px4_msgs/msg/ekf2_timestamps__functions.h" #include "px4_msgs/msg/ekf2_timestamps__type_support.h" #endif // PX4_MSGS__MSG__EKF2_TIMESTAMPS_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_gyro_fifo__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/SensorGyroFifo.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/sensor_gyro_fifo__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/sensor_gyro_fifo__struct.h" #include "px4_msgs/msg/sensor_gyro_fifo__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _SensorGyroFifo__ros_msg_type = px4_msgs__msg__SensorGyroFifo; static bool _SensorGyroFifo__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _SensorGyroFifo__ros_msg_type * ros_message = static_cast<const _SensorGyroFifo__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: timestamp_sample { cdr << ros_message->timestamp_sample; } // Field name: device_id { cdr << ros_message->device_id; } // Field name: dt { cdr << ros_message->dt; } // Field name: scale { cdr << ros_message->scale; } // Field name: samples { cdr << ros_message->samples; } // Field name: x { size_t size = 32; auto array_ptr = ros_message->x; cdr.serializeArray(array_ptr, size); } // Field name: y { size_t size = 32; auto array_ptr = ros_message->y; cdr.serializeArray(array_ptr, size); } // Field name: z { size_t size = 32; auto array_ptr = ros_message->z; cdr.serializeArray(array_ptr, size); } return true; } static bool _SensorGyroFifo__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _SensorGyroFifo__ros_msg_type * ros_message = static_cast<_SensorGyroFifo__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: timestamp_sample { cdr >> ros_message->timestamp_sample; } // Field name: device_id { cdr >> ros_message->device_id; } // Field name: dt { cdr >> ros_message->dt; } // Field name: scale { cdr >> ros_message->scale; } // Field name: samples { cdr >> ros_message->samples; } // Field name: x { size_t size = 32; auto array_ptr = ros_message->x; cdr.deserializeArray(array_ptr, size); } // Field name: y { size_t size = 32; auto array_ptr = ros_message->y; cdr.deserializeArray(array_ptr, size); } // Field name: z { size_t size = 32; auto array_ptr = ros_message->z; cdr.deserializeArray(array_ptr, size); } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__SensorGyroFifo( const void * untyped_ros_message, size_t current_alignment) { const _SensorGyroFifo__ros_msg_type * ros_message = static_cast<const _SensorGyroFifo__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name timestamp_sample { size_t item_size = sizeof(ros_message->timestamp_sample); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name device_id { size_t item_size = sizeof(ros_message->device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name dt { size_t item_size = sizeof(ros_message->dt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name scale { size_t item_size = sizeof(ros_message->scale); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name samples { size_t item_size = sizeof(ros_message->samples); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name x { size_t array_size = 32; auto array_ptr = ros_message->x; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name y { size_t array_size = 32; auto array_ptr = ros_message->y; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name z { size_t array_size = 32; auto array_ptr = ros_message->z; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _SensorGyroFifo__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__SensorGyroFifo( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__SensorGyroFifo( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: timestamp_sample { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: dt { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: scale { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: samples { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: x { size_t array_size = 32; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: y { size_t array_size = 32; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: z { size_t array_size = 32; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } return current_alignment - initial_alignment; } static size_t _SensorGyroFifo__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__SensorGyroFifo( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_SensorGyroFifo = { "px4_msgs::msg", "SensorGyroFifo", _SensorGyroFifo__cdr_serialize, _SensorGyroFifo__cdr_deserialize, _SensorGyroFifo__get_serialized_size, _SensorGyroFifo__max_serialized_size }; static rosidl_message_type_support_t _SensorGyroFifo__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_SensorGyroFifo, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, SensorGyroFifo)() { return &_SensorGyroFifo__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/input_rc__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/InputRc.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__INPUT_RC__FUNCTIONS_H_ #define PX4_MSGS__MSG__INPUT_RC__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/input_rc__struct.h" /// Initialize msg/InputRc message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__InputRc * )) before or use * px4_msgs__msg__InputRc__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__InputRc__init(px4_msgs__msg__InputRc * msg); /// Finalize msg/InputRc message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__InputRc__fini(px4_msgs__msg__InputRc * msg); /// Create msg/InputRc message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__InputRc__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__InputRc * px4_msgs__msg__InputRc__create(); /// Destroy msg/InputRc message. /** * It calls * px4_msgs__msg__InputRc__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__InputRc__destroy(px4_msgs__msg__InputRc * msg); /// Initialize array of msg/InputRc messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__InputRc__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__InputRc__Sequence__init(px4_msgs__msg__InputRc__Sequence * array, size_t size); /// Finalize array of msg/InputRc messages. /** * It calls * px4_msgs__msg__InputRc__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__InputRc__Sequence__fini(px4_msgs__msg__InputRc__Sequence * array); /// Create array of msg/InputRc messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__InputRc__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__InputRc__Sequence * px4_msgs__msg__InputRc__Sequence__create(size_t size); /// Destroy array of msg/InputRc messages. /** * It calls * px4_msgs__msg__InputRc__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__InputRc__Sequence__destroy(px4_msgs__msg__InputRc__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__INPUT_RC__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_odometry__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleOdometry.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ODOMETRY__STRUCT_H_ #define PX4_MSGS__MSG__VEHICLE_ODOMETRY__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'COVARIANCE_MATRIX_X_VARIANCE'. enum { px4_msgs__msg__VehicleOdometry__COVARIANCE_MATRIX_X_VARIANCE = 0 }; /// Constant 'COVARIANCE_MATRIX_Y_VARIANCE'. enum { px4_msgs__msg__VehicleOdometry__COVARIANCE_MATRIX_Y_VARIANCE = 6 }; /// Constant 'COVARIANCE_MATRIX_Z_VARIANCE'. enum { px4_msgs__msg__VehicleOdometry__COVARIANCE_MATRIX_Z_VARIANCE = 11 }; /// Constant 'COVARIANCE_MATRIX_ROLL_VARIANCE'. enum { px4_msgs__msg__VehicleOdometry__COVARIANCE_MATRIX_ROLL_VARIANCE = 15 }; /// Constant 'COVARIANCE_MATRIX_PITCH_VARIANCE'. enum { px4_msgs__msg__VehicleOdometry__COVARIANCE_MATRIX_PITCH_VARIANCE = 18 }; /// Constant 'COVARIANCE_MATRIX_YAW_VARIANCE'. enum { px4_msgs__msg__VehicleOdometry__COVARIANCE_MATRIX_YAW_VARIANCE = 20 }; /// Constant 'COVARIANCE_MATRIX_VX_VARIANCE'. enum { px4_msgs__msg__VehicleOdometry__COVARIANCE_MATRIX_VX_VARIANCE = 0 }; /// Constant 'COVARIANCE_MATRIX_VY_VARIANCE'. enum { px4_msgs__msg__VehicleOdometry__COVARIANCE_MATRIX_VY_VARIANCE = 6 }; /// Constant 'COVARIANCE_MATRIX_VZ_VARIANCE'. enum { px4_msgs__msg__VehicleOdometry__COVARIANCE_MATRIX_VZ_VARIANCE = 11 }; /// Constant 'COVARIANCE_MATRIX_ROLLRATE_VARIANCE'. enum { px4_msgs__msg__VehicleOdometry__COVARIANCE_MATRIX_ROLLRATE_VARIANCE = 15 }; /// Constant 'COVARIANCE_MATRIX_PITCHRATE_VARIANCE'. enum { px4_msgs__msg__VehicleOdometry__COVARIANCE_MATRIX_PITCHRATE_VARIANCE = 18 }; /// Constant 'COVARIANCE_MATRIX_YAWRATE_VARIANCE'. enum { px4_msgs__msg__VehicleOdometry__COVARIANCE_MATRIX_YAWRATE_VARIANCE = 20 }; /// Constant 'LOCAL_FRAME_NED'. enum { px4_msgs__msg__VehicleOdometry__LOCAL_FRAME_NED = 0 }; /// Constant 'LOCAL_FRAME_FRD'. enum { px4_msgs__msg__VehicleOdometry__LOCAL_FRAME_FRD = 1 }; /// Constant 'LOCAL_FRAME_OTHER'. enum { px4_msgs__msg__VehicleOdometry__LOCAL_FRAME_OTHER = 2 }; /// Constant 'BODY_FRAME_FRD'. enum { px4_msgs__msg__VehicleOdometry__BODY_FRAME_FRD = 3 }; // Struct defined in msg/VehicleOdometry in the package px4_msgs. typedef struct px4_msgs__msg__VehicleOdometry { uint64_t timestamp; uint64_t timestamp_sample; uint8_t local_frame; float x; float y; float z; float q[4]; float q_offset[4]; float pose_covariance[21]; uint8_t velocity_frame; float vx; float vy; float vz; float rollspeed; float pitchspeed; float yawspeed; float velocity_covariance[21]; } px4_msgs__msg__VehicleOdometry; // Struct for a sequence of px4_msgs__msg__VehicleOdometry. typedef struct px4_msgs__msg__VehicleOdometry__Sequence { px4_msgs__msg__VehicleOdometry * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__VehicleOdometry__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_ODOMETRY__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_status__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_status__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/vehicle_status__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::VehicleStatus & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: nav_state cdr << ros_message.nav_state; // Member: nav_state_timestamp cdr << ros_message.nav_state_timestamp; // Member: arming_state cdr << ros_message.arming_state; // Member: hil_state cdr << ros_message.hil_state; // Member: failsafe cdr << (ros_message.failsafe ? true : false); // Member: failsafe_timestamp cdr << ros_message.failsafe_timestamp; // Member: system_type cdr << ros_message.system_type; // Member: system_id cdr << ros_message.system_id; // Member: component_id cdr << ros_message.component_id; // Member: vehicle_type cdr << ros_message.vehicle_type; // Member: is_vtol cdr << (ros_message.is_vtol ? true : false); // Member: is_vtol_tailsitter cdr << (ros_message.is_vtol_tailsitter ? true : false); // Member: vtol_fw_permanent_stab cdr << (ros_message.vtol_fw_permanent_stab ? true : false); // Member: in_transition_mode cdr << (ros_message.in_transition_mode ? true : false); // Member: in_transition_to_fw cdr << (ros_message.in_transition_to_fw ? true : false); // Member: rc_signal_lost cdr << (ros_message.rc_signal_lost ? true : false); // Member: rc_input_mode cdr << ros_message.rc_input_mode; // Member: data_link_lost cdr << (ros_message.data_link_lost ? true : false); // Member: data_link_lost_counter cdr << ros_message.data_link_lost_counter; // Member: high_latency_data_link_lost cdr << (ros_message.high_latency_data_link_lost ? true : false); // Member: engine_failure cdr << (ros_message.engine_failure ? true : false); // Member: mission_failure cdr << (ros_message.mission_failure ? true : false); // Member: failure_detector_status cdr << ros_message.failure_detector_status; // Member: onboard_control_sensors_present cdr << ros_message.onboard_control_sensors_present; // Member: onboard_control_sensors_enabled cdr << ros_message.onboard_control_sensors_enabled; // Member: onboard_control_sensors_health cdr << ros_message.onboard_control_sensors_health; // Member: latest_arming_reason cdr << ros_message.latest_arming_reason; // Member: latest_disarming_reason cdr << ros_message.latest_disarming_reason; // Member: armed_time cdr << ros_message.armed_time; // Member: takeoff_time cdr << ros_message.takeoff_time; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::VehicleStatus & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: nav_state cdr >> ros_message.nav_state; // Member: nav_state_timestamp cdr >> ros_message.nav_state_timestamp; // Member: arming_state cdr >> ros_message.arming_state; // Member: hil_state cdr >> ros_message.hil_state; // Member: failsafe { uint8_t tmp; cdr >> tmp; ros_message.failsafe = tmp ? true : false; } // Member: failsafe_timestamp cdr >> ros_message.failsafe_timestamp; // Member: system_type cdr >> ros_message.system_type; // Member: system_id cdr >> ros_message.system_id; // Member: component_id cdr >> ros_message.component_id; // Member: vehicle_type cdr >> ros_message.vehicle_type; // Member: is_vtol { uint8_t tmp; cdr >> tmp; ros_message.is_vtol = tmp ? true : false; } // Member: is_vtol_tailsitter { uint8_t tmp; cdr >> tmp; ros_message.is_vtol_tailsitter = tmp ? true : false; } // Member: vtol_fw_permanent_stab { uint8_t tmp; cdr >> tmp; ros_message.vtol_fw_permanent_stab = tmp ? true : false; } // Member: in_transition_mode { uint8_t tmp; cdr >> tmp; ros_message.in_transition_mode = tmp ? true : false; } // Member: in_transition_to_fw { uint8_t tmp; cdr >> tmp; ros_message.in_transition_to_fw = tmp ? true : false; } // Member: rc_signal_lost { uint8_t tmp; cdr >> tmp; ros_message.rc_signal_lost = tmp ? true : false; } // Member: rc_input_mode cdr >> ros_message.rc_input_mode; // Member: data_link_lost { uint8_t tmp; cdr >> tmp; ros_message.data_link_lost = tmp ? true : false; } // Member: data_link_lost_counter cdr >> ros_message.data_link_lost_counter; // Member: high_latency_data_link_lost { uint8_t tmp; cdr >> tmp; ros_message.high_latency_data_link_lost = tmp ? true : false; } // Member: engine_failure { uint8_t tmp; cdr >> tmp; ros_message.engine_failure = tmp ? true : false; } // Member: mission_failure { uint8_t tmp; cdr >> tmp; ros_message.mission_failure = tmp ? true : false; } // Member: failure_detector_status cdr >> ros_message.failure_detector_status; // Member: onboard_control_sensors_present cdr >> ros_message.onboard_control_sensors_present; // Member: onboard_control_sensors_enabled cdr >> ros_message.onboard_control_sensors_enabled; // Member: onboard_control_sensors_health cdr >> ros_message.onboard_control_sensors_health; // Member: latest_arming_reason cdr >> ros_message.latest_arming_reason; // Member: latest_disarming_reason cdr >> ros_message.latest_disarming_reason; // Member: armed_time cdr >> ros_message.armed_time; // Member: takeoff_time cdr >> ros_message.takeoff_time; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::VehicleStatus & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: nav_state { size_t item_size = sizeof(ros_message.nav_state); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: nav_state_timestamp { size_t item_size = sizeof(ros_message.nav_state_timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: arming_state { size_t item_size = sizeof(ros_message.arming_state); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: hil_state { size_t item_size = sizeof(ros_message.hil_state); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: failsafe { size_t item_size = sizeof(ros_message.failsafe); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: failsafe_timestamp { size_t item_size = sizeof(ros_message.failsafe_timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: system_type { size_t item_size = sizeof(ros_message.system_type); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: system_id { size_t item_size = sizeof(ros_message.system_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: component_id { size_t item_size = sizeof(ros_message.component_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: vehicle_type { size_t item_size = sizeof(ros_message.vehicle_type); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: is_vtol { size_t item_size = sizeof(ros_message.is_vtol); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: is_vtol_tailsitter { size_t item_size = sizeof(ros_message.is_vtol_tailsitter); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: vtol_fw_permanent_stab { size_t item_size = sizeof(ros_message.vtol_fw_permanent_stab); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: in_transition_mode { size_t item_size = sizeof(ros_message.in_transition_mode); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: in_transition_to_fw { size_t item_size = sizeof(ros_message.in_transition_to_fw); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rc_signal_lost { size_t item_size = sizeof(ros_message.rc_signal_lost); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rc_input_mode { size_t item_size = sizeof(ros_message.rc_input_mode); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: data_link_lost { size_t item_size = sizeof(ros_message.data_link_lost); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: data_link_lost_counter { size_t item_size = sizeof(ros_message.data_link_lost_counter); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: high_latency_data_link_lost { size_t item_size = sizeof(ros_message.high_latency_data_link_lost); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: engine_failure { size_t item_size = sizeof(ros_message.engine_failure); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: mission_failure { size_t item_size = sizeof(ros_message.mission_failure); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: failure_detector_status { size_t item_size = sizeof(ros_message.failure_detector_status); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: onboard_control_sensors_present { size_t item_size = sizeof(ros_message.onboard_control_sensors_present); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: onboard_control_sensors_enabled { size_t item_size = sizeof(ros_message.onboard_control_sensors_enabled); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: onboard_control_sensors_health { size_t item_size = sizeof(ros_message.onboard_control_sensors_health); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: latest_arming_reason { size_t item_size = sizeof(ros_message.latest_arming_reason); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: latest_disarming_reason { size_t item_size = sizeof(ros_message.latest_disarming_reason); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: armed_time { size_t item_size = sizeof(ros_message.armed_time); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: takeoff_time { size_t item_size = sizeof(ros_message.takeoff_time); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_VehicleStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: nav_state { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: nav_state_timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: arming_state { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: hil_state { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: failsafe { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: failsafe_timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: system_type { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: system_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: component_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: vehicle_type { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: is_vtol { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: is_vtol_tailsitter { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: vtol_fw_permanent_stab { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: in_transition_mode { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: in_transition_to_fw { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: rc_signal_lost { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: rc_input_mode { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: data_link_lost { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: data_link_lost_counter { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: high_latency_data_link_lost { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: engine_failure { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: mission_failure { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: failure_detector_status { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: onboard_control_sensors_present { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: onboard_control_sensors_enabled { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: onboard_control_sensors_health { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: latest_arming_reason { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: latest_disarming_reason { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: armed_time { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: takeoff_time { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } return current_alignment - initial_alignment; } static bool _VehicleStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::VehicleStatus *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _VehicleStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::VehicleStatus *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _VehicleStatus__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::VehicleStatus *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _VehicleStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_VehicleStatus(full_bounded, 0); } static message_type_support_callbacks_t _VehicleStatus__callbacks = { "px4_msgs::msg", "VehicleStatus", _VehicleStatus__cdr_serialize, _VehicleStatus__cdr_deserialize, _VehicleStatus__get_serialized_size, _VehicleStatus__max_serialized_size }; static rosidl_message_type_support_t _VehicleStatus__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_VehicleStatus__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleStatus>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_VehicleStatus__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, VehicleStatus)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_VehicleStatus__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed_validated__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/AirspeedValidated.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/airspeed_validated__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/airspeed_validated__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::AirspeedValidated & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: indicated_airspeed_m_s cdr << ros_message.indicated_airspeed_m_s; // Member: calibrated_airspeed_m_s cdr << ros_message.calibrated_airspeed_m_s; // Member: true_airspeed_m_s cdr << ros_message.true_airspeed_m_s; // Member: calibrated_ground_minus_wind_m_s cdr << ros_message.calibrated_ground_minus_wind_m_s; // Member: true_ground_minus_wind_m_s cdr << ros_message.true_ground_minus_wind_m_s; // Member: airspeed_sensor_measurement_valid cdr << (ros_message.airspeed_sensor_measurement_valid ? true : false); // Member: selected_airspeed_index cdr << ros_message.selected_airspeed_index; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::AirspeedValidated & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: indicated_airspeed_m_s cdr >> ros_message.indicated_airspeed_m_s; // Member: calibrated_airspeed_m_s cdr >> ros_message.calibrated_airspeed_m_s; // Member: true_airspeed_m_s cdr >> ros_message.true_airspeed_m_s; // Member: calibrated_ground_minus_wind_m_s cdr >> ros_message.calibrated_ground_minus_wind_m_s; // Member: true_ground_minus_wind_m_s cdr >> ros_message.true_ground_minus_wind_m_s; // Member: airspeed_sensor_measurement_valid { uint8_t tmp; cdr >> tmp; ros_message.airspeed_sensor_measurement_valid = tmp ? true : false; } // Member: selected_airspeed_index cdr >> ros_message.selected_airspeed_index; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::AirspeedValidated & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: indicated_airspeed_m_s { size_t item_size = sizeof(ros_message.indicated_airspeed_m_s); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: calibrated_airspeed_m_s { size_t item_size = sizeof(ros_message.calibrated_airspeed_m_s); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: true_airspeed_m_s { size_t item_size = sizeof(ros_message.true_airspeed_m_s); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: calibrated_ground_minus_wind_m_s { size_t item_size = sizeof(ros_message.calibrated_ground_minus_wind_m_s); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: true_ground_minus_wind_m_s { size_t item_size = sizeof(ros_message.true_ground_minus_wind_m_s); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: airspeed_sensor_measurement_valid { size_t item_size = sizeof(ros_message.airspeed_sensor_measurement_valid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: selected_airspeed_index { size_t item_size = sizeof(ros_message.selected_airspeed_index); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_AirspeedValidated( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: indicated_airspeed_m_s { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: calibrated_airspeed_m_s { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: true_airspeed_m_s { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: calibrated_ground_minus_wind_m_s { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: true_ground_minus_wind_m_s { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: airspeed_sensor_measurement_valid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: selected_airspeed_index { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _AirspeedValidated__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::AirspeedValidated *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _AirspeedValidated__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::AirspeedValidated *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _AirspeedValidated__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::AirspeedValidated *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _AirspeedValidated__max_serialized_size(bool & full_bounded) { return max_serialized_size_AirspeedValidated(full_bounded, 0); } static message_type_support_callbacks_t _AirspeedValidated__callbacks = { "px4_msgs::msg", "AirspeedValidated", _AirspeedValidated__cdr_serialize, _AirspeedValidated__cdr_deserialize, _AirspeedValidated__get_serialized_size, _AirspeedValidated__max_serialized_size }; static rosidl_message_type_support_t _AirspeedValidated__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_AirspeedValidated__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::AirspeedValidated>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_AirspeedValidated__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, AirspeedValidated)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_AirspeedValidated__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/debug_key_value.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__DEBUG_KEY_VALUE_HPP_ #define PX4_MSGS__MSG__DEBUG_KEY_VALUE_HPP_ #include "px4_msgs/msg/debug_key_value__struct.hpp" #include "px4_msgs/msg/debug_key_value__traits.hpp" #endif // PX4_MSGS__MSG__DEBUG_KEY_VALUE_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_status_flags.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_STATUS_FLAGS_HPP_ #define PX4_MSGS__MSG__VEHICLE_STATUS_FLAGS_HPP_ #include "px4_msgs/msg/vehicle_status_flags__struct.hpp" #include "px4_msgs/msg/vehicle_status_flags__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_STATUS_FLAGS_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/led_control.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/LedControl.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__LED_CONTROL_H_ #define PX4_MSGS__MSG__LED_CONTROL_H_ #include "px4_msgs/msg/led_control__struct.h" #include "px4_msgs/msg/led_control__functions.h" #include "px4_msgs/msg/led_control__type_support.h" #endif // PX4_MSGS__MSG__LED_CONTROL_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/airspeed_validated__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/AirspeedValidated.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__AIRSPEED_VALIDATED__FUNCTIONS_H_ #define PX4_MSGS__MSG__AIRSPEED_VALIDATED__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/airspeed_validated__struct.h" /// Initialize msg/AirspeedValidated message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__AirspeedValidated * )) before or use * px4_msgs__msg__AirspeedValidated__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__AirspeedValidated__init(px4_msgs__msg__AirspeedValidated * msg); /// Finalize msg/AirspeedValidated message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__AirspeedValidated__fini(px4_msgs__msg__AirspeedValidated * msg); /// Create msg/AirspeedValidated message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__AirspeedValidated__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__AirspeedValidated * px4_msgs__msg__AirspeedValidated__create(); /// Destroy msg/AirspeedValidated message. /** * It calls * px4_msgs__msg__AirspeedValidated__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__AirspeedValidated__destroy(px4_msgs__msg__AirspeedValidated * msg); /// Initialize array of msg/AirspeedValidated messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__AirspeedValidated__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__AirspeedValidated__Sequence__init(px4_msgs__msg__AirspeedValidated__Sequence * array, size_t size); /// Finalize array of msg/AirspeedValidated messages. /** * It calls * px4_msgs__msg__AirspeedValidated__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__AirspeedValidated__Sequence__fini(px4_msgs__msg__AirspeedValidated__Sequence * array); /// Create array of msg/AirspeedValidated messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__AirspeedValidated__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__AirspeedValidated__Sequence * px4_msgs__msg__AirspeedValidated__Sequence__create(size_t size); /// Destroy array of msg/AirspeedValidated messages. /** * It calls * px4_msgs__msg__AirspeedValidated__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__AirspeedValidated__Sequence__destroy(px4_msgs__msg__AirspeedValidated__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__AIRSPEED_VALIDATED__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/rtl_flight_time__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/RtlFlightTime.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/rtl_flight_time__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/rtl_flight_time__functions.h" #include "px4_msgs/msg/rtl_flight_time__struct.h" #ifdef __cplusplus extern "C" { #endif void RtlFlightTime__rosidl_typesupport_introspection_c__RtlFlightTime_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__RtlFlightTime__init(message_memory); } void RtlFlightTime__rosidl_typesupport_introspection_c__RtlFlightTime_fini_function(void * message_memory) { px4_msgs__msg__RtlFlightTime__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember RtlFlightTime__rosidl_typesupport_introspection_c__RtlFlightTime_message_member_array[3] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__RtlFlightTime, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rtl_time_s", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__RtlFlightTime, rtl_time_s), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rtl_limit_fraction", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__RtlFlightTime, rtl_limit_fraction), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers RtlFlightTime__rosidl_typesupport_introspection_c__RtlFlightTime_message_members = { "px4_msgs__msg", // message namespace "RtlFlightTime", // message name 3, // number of fields sizeof(px4_msgs__msg__RtlFlightTime), RtlFlightTime__rosidl_typesupport_introspection_c__RtlFlightTime_message_member_array, // message members RtlFlightTime__rosidl_typesupport_introspection_c__RtlFlightTime_init_function, // function to initialize message memory (memory has to be allocated) RtlFlightTime__rosidl_typesupport_introspection_c__RtlFlightTime_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t RtlFlightTime__rosidl_typesupport_introspection_c__RtlFlightTime_message_type_support_handle = { 0, &RtlFlightTime__rosidl_typesupport_introspection_c__RtlFlightTime_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, RtlFlightTime)() { if (!RtlFlightTime__rosidl_typesupport_introspection_c__RtlFlightTime_message_type_support_handle.typesupport_identifier) { RtlFlightTime__rosidl_typesupport_introspection_c__RtlFlightTime_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &RtlFlightTime__rosidl_typesupport_introspection_c__RtlFlightTime_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/multi_rtd_interfaces/multi_rtd_interfaces__py/CMakeFiles/multi_rtd_interfaces__py.dir/cmake_clean.cmake file(REMOVE_RECURSE "CMakeFiles/multi_rtd_interfaces__py" "../rosidl_generator_py/multi_rtd_interfaces/_multi_rtd_interfaces_s.ep.rosidl_typesupport_c.c" "../rosidl_generator_py/multi_rtd_interfaces/_multi_rtd_interfaces_s.ep.rosidl_typesupport_fastrtps_c.c" "../rosidl_generator_py/multi_rtd_interfaces/msg/_robot_trajectory.py" "../rosidl_generator_py/multi_rtd_interfaces/msg/__init__.py" "../rosidl_generator_py/multi_rtd_interfaces/msg/_robot_trajectory_s.c" ) # Per-language clean rules from dependency scanning. foreach(lang ) include(CMakeFiles/multi_rtd_interfaces__py.dir/cmake_clean_${lang}.cmake OPTIONAL) endforeach() <file_sep>/install/px4_msgs/include/px4_msgs/msg/radio_status.h /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/radio_status.h<file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/distance_sensor__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/DistanceSensor.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/distance_sensor__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/distance_sensor__functions.h" #include "px4_msgs/msg/distance_sensor__struct.h" #ifdef __cplusplus extern "C" { #endif void DistanceSensor__rosidl_typesupport_introspection_c__DistanceSensor_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__DistanceSensor__init(message_memory); } void DistanceSensor__rosidl_typesupport_introspection_c__DistanceSensor_fini_function(void * message_memory) { px4_msgs__msg__DistanceSensor__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember DistanceSensor__rosidl_typesupport_introspection_c__DistanceSensor_message_member_array[12] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__DistanceSensor, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "device_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__DistanceSensor, device_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "min_distance", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__DistanceSensor, min_distance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "max_distance", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__DistanceSensor, max_distance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "current_distance", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__DistanceSensor, current_distance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "variance", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__DistanceSensor, variance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "signal_quality", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__DistanceSensor, signal_quality), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "type", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__DistanceSensor, type), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "h_fov", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__DistanceSensor, h_fov), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "v_fov", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__DistanceSensor, v_fov), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "q", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__DistanceSensor, q), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "orientation", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__DistanceSensor, orientation), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers DistanceSensor__rosidl_typesupport_introspection_c__DistanceSensor_message_members = { "px4_msgs__msg", // message namespace "DistanceSensor", // message name 12, // number of fields sizeof(px4_msgs__msg__DistanceSensor), DistanceSensor__rosidl_typesupport_introspection_c__DistanceSensor_message_member_array, // message members DistanceSensor__rosidl_typesupport_introspection_c__DistanceSensor_init_function, // function to initialize message memory (memory has to be allocated) DistanceSensor__rosidl_typesupport_introspection_c__DistanceSensor_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t DistanceSensor__rosidl_typesupport_introspection_c__DistanceSensor_message_type_support_handle = { 0, &DistanceSensor__rosidl_typesupport_introspection_c__DistanceSensor_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, DistanceSensor)() { if (!DistanceSensor__rosidl_typesupport_introspection_c__DistanceSensor_message_type_support_handle.typesupport_identifier) { DistanceSensor__rosidl_typesupport_introspection_c__DistanceSensor_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &DistanceSensor__rosidl_typesupport_introspection_c__DistanceSensor_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_command__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/VehicleCommand.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_command__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/vehicle_command__struct.h" #include "px4_msgs/msg/vehicle_command__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _VehicleCommand__ros_msg_type = px4_msgs__msg__VehicleCommand; static bool _VehicleCommand__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _VehicleCommand__ros_msg_type * ros_message = static_cast<const _VehicleCommand__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: param1 { cdr << ros_message->param1; } // Field name: param2 { cdr << ros_message->param2; } // Field name: param3 { cdr << ros_message->param3; } // Field name: param4 { cdr << ros_message->param4; } // Field name: param5 { cdr << ros_message->param5; } // Field name: param6 { cdr << ros_message->param6; } // Field name: param7 { cdr << ros_message->param7; } // Field name: command { cdr << ros_message->command; } // Field name: target_system { cdr << ros_message->target_system; } // Field name: target_component { cdr << ros_message->target_component; } // Field name: source_system { cdr << ros_message->source_system; } // Field name: source_component { cdr << ros_message->source_component; } // Field name: confirmation { cdr << ros_message->confirmation; } // Field name: from_external { cdr << (ros_message->from_external ? true : false); } return true; } static bool _VehicleCommand__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _VehicleCommand__ros_msg_type * ros_message = static_cast<_VehicleCommand__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: param1 { cdr >> ros_message->param1; } // Field name: param2 { cdr >> ros_message->param2; } // Field name: param3 { cdr >> ros_message->param3; } // Field name: param4 { cdr >> ros_message->param4; } // Field name: param5 { cdr >> ros_message->param5; } // Field name: param6 { cdr >> ros_message->param6; } // Field name: param7 { cdr >> ros_message->param7; } // Field name: command { cdr >> ros_message->command; } // Field name: target_system { cdr >> ros_message->target_system; } // Field name: target_component { cdr >> ros_message->target_component; } // Field name: source_system { cdr >> ros_message->source_system; } // Field name: source_component { cdr >> ros_message->source_component; } // Field name: confirmation { cdr >> ros_message->confirmation; } // Field name: from_external { uint8_t tmp; cdr >> tmp; ros_message->from_external = tmp ? true : false; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__VehicleCommand( const void * untyped_ros_message, size_t current_alignment) { const _VehicleCommand__ros_msg_type * ros_message = static_cast<const _VehicleCommand__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name param1 { size_t item_size = sizeof(ros_message->param1); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name param2 { size_t item_size = sizeof(ros_message->param2); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name param3 { size_t item_size = sizeof(ros_message->param3); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name param4 { size_t item_size = sizeof(ros_message->param4); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name param5 { size_t item_size = sizeof(ros_message->param5); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name param6 { size_t item_size = sizeof(ros_message->param6); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name param7 { size_t item_size = sizeof(ros_message->param7); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name command { size_t item_size = sizeof(ros_message->command); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name target_system { size_t item_size = sizeof(ros_message->target_system); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name target_component { size_t item_size = sizeof(ros_message->target_component); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name source_system { size_t item_size = sizeof(ros_message->source_system); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name source_component { size_t item_size = sizeof(ros_message->source_component); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name confirmation { size_t item_size = sizeof(ros_message->confirmation); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name from_external { size_t item_size = sizeof(ros_message->from_external); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _VehicleCommand__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__VehicleCommand( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__VehicleCommand( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: param1 { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: param2 { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: param3 { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: param4 { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: param5 { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: param6 { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: param7 { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: command { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: target_system { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: target_component { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: source_system { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: source_component { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: confirmation { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: from_external { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _VehicleCommand__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__VehicleCommand( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_VehicleCommand = { "px4_msgs::msg", "VehicleCommand", _VehicleCommand__cdr_serialize, _VehicleCommand__cdr_deserialize, _VehicleCommand__get_serialized_size, _VehicleCommand__max_serialized_size }; static rosidl_message_type_support_t _VehicleCommand__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_VehicleCommand, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, VehicleCommand)() { return &_VehicleCommand__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/commander_state__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/CommanderState.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__COMMANDER_STATE__STRUCT_H_ #define PX4_MSGS__MSG__COMMANDER_STATE__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'MAIN_STATE_MANUAL'. enum { px4_msgs__msg__CommanderState__MAIN_STATE_MANUAL = 0 }; /// Constant 'MAIN_STATE_ALTCTL'. enum { px4_msgs__msg__CommanderState__MAIN_STATE_ALTCTL = 1 }; /// Constant 'MAIN_STATE_POSCTL'. enum { px4_msgs__msg__CommanderState__MAIN_STATE_POSCTL = 2 }; /// Constant 'MAIN_STATE_AUTO_MISSION'. enum { px4_msgs__msg__CommanderState__MAIN_STATE_AUTO_MISSION = 3 }; /// Constant 'MAIN_STATE_AUTO_LOITER'. enum { px4_msgs__msg__CommanderState__MAIN_STATE_AUTO_LOITER = 4 }; /// Constant 'MAIN_STATE_AUTO_RTL'. enum { px4_msgs__msg__CommanderState__MAIN_STATE_AUTO_RTL = 5 }; /// Constant 'MAIN_STATE_ACRO'. enum { px4_msgs__msg__CommanderState__MAIN_STATE_ACRO = 6 }; /// Constant 'MAIN_STATE_OFFBOARD'. enum { px4_msgs__msg__CommanderState__MAIN_STATE_OFFBOARD = 7 }; /// Constant 'MAIN_STATE_STAB'. enum { px4_msgs__msg__CommanderState__MAIN_STATE_STAB = 8 }; /// Constant 'MAIN_STATE_AUTO_TAKEOFF'. enum { px4_msgs__msg__CommanderState__MAIN_STATE_AUTO_TAKEOFF = 10 }; /// Constant 'MAIN_STATE_AUTO_LAND'. enum { px4_msgs__msg__CommanderState__MAIN_STATE_AUTO_LAND = 11 }; /// Constant 'MAIN_STATE_AUTO_FOLLOW_TARGET'. enum { px4_msgs__msg__CommanderState__MAIN_STATE_AUTO_FOLLOW_TARGET = 12 }; /// Constant 'MAIN_STATE_AUTO_PRECLAND'. enum { px4_msgs__msg__CommanderState__MAIN_STATE_AUTO_PRECLAND = 13 }; /// Constant 'MAIN_STATE_ORBIT'. enum { px4_msgs__msg__CommanderState__MAIN_STATE_ORBIT = 14 }; /// Constant 'MAIN_STATE_MAX'. enum { px4_msgs__msg__CommanderState__MAIN_STATE_MAX = 15 }; // Struct defined in msg/CommanderState in the package px4_msgs. typedef struct px4_msgs__msg__CommanderState { uint64_t timestamp; uint8_t main_state; uint16_t main_state_changes; } px4_msgs__msg__CommanderState; // Struct for a sequence of px4_msgs__msg__CommanderState. typedef struct px4_msgs__msg__CommanderState__Sequence { px4_msgs__msg__CommanderState * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__CommanderState__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__COMMANDER_STATE__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_status_flags.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/EstimatorStatusFlags.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_STATUS_FLAGS_H_ #define PX4_MSGS__MSG__ESTIMATOR_STATUS_FLAGS_H_ #include "px4_msgs/msg/estimator_status_flags__struct.h" #include "px4_msgs/msg/estimator_status_flags__functions.h" #include "px4_msgs/msg/estimator_status_flags__type_support.h" #endif // PX4_MSGS__MSG__ESTIMATOR_STATUS_FLAGS_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_local_position_setpoint__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/VehicleLocalPositionSetpoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_SETPOINT__STRUCT_HPP_ #define PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_SETPOINT__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__VehicleLocalPositionSetpoint __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__VehicleLocalPositionSetpoint __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct VehicleLocalPositionSetpoint_ { using Type = VehicleLocalPositionSetpoint_<ContainerAllocator>; explicit VehicleLocalPositionSetpoint_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->x = 0.0f; this->y = 0.0f; this->z = 0.0f; this->yaw = 0.0f; this->yawspeed = 0.0f; this->vx = 0.0f; this->vy = 0.0f; this->vz = 0.0f; std::fill<typename std::array<float, 3>::iterator, float>(this->acceleration.begin(), this->acceleration.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->jerk.begin(), this->jerk.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->thrust.begin(), this->thrust.end(), 0.0f); } } explicit VehicleLocalPositionSetpoint_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : acceleration(_alloc), jerk(_alloc), thrust(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->x = 0.0f; this->y = 0.0f; this->z = 0.0f; this->yaw = 0.0f; this->yawspeed = 0.0f; this->vx = 0.0f; this->vy = 0.0f; this->vz = 0.0f; std::fill<typename std::array<float, 3>::iterator, float>(this->acceleration.begin(), this->acceleration.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->jerk.begin(), this->jerk.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->thrust.begin(), this->thrust.end(), 0.0f); } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _x_type = float; _x_type x; using _y_type = float; _y_type y; using _z_type = float; _z_type z; using _yaw_type = float; _yaw_type yaw; using _yawspeed_type = float; _yawspeed_type yawspeed; using _vx_type = float; _vx_type vx; using _vy_type = float; _vy_type vy; using _vz_type = float; _vz_type vz; using _acceleration_type = std::array<float, 3>; _acceleration_type acceleration; using _jerk_type = std::array<float, 3>; _jerk_type jerk; using _thrust_type = std::array<float, 3>; _thrust_type thrust; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__x( const float & _arg) { this->x = _arg; return *this; } Type & set__y( const float & _arg) { this->y = _arg; return *this; } Type & set__z( const float & _arg) { this->z = _arg; return *this; } Type & set__yaw( const float & _arg) { this->yaw = _arg; return *this; } Type & set__yawspeed( const float & _arg) { this->yawspeed = _arg; return *this; } Type & set__vx( const float & _arg) { this->vx = _arg; return *this; } Type & set__vy( const float & _arg) { this->vy = _arg; return *this; } Type & set__vz( const float & _arg) { this->vz = _arg; return *this; } Type & set__acceleration( const std::array<float, 3> & _arg) { this->acceleration = _arg; return *this; } Type & set__jerk( const std::array<float, 3> & _arg) { this->jerk = _arg; return *this; } Type & set__thrust( const std::array<float, 3> & _arg) { this->thrust = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::VehicleLocalPositionSetpoint_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::VehicleLocalPositionSetpoint_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::VehicleLocalPositionSetpoint_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::VehicleLocalPositionSetpoint_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleLocalPositionSetpoint_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleLocalPositionSetpoint_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleLocalPositionSetpoint_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleLocalPositionSetpoint_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::VehicleLocalPositionSetpoint_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::VehicleLocalPositionSetpoint_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__VehicleLocalPositionSetpoint std::shared_ptr<px4_msgs::msg::VehicleLocalPositionSetpoint_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__VehicleLocalPositionSetpoint std::shared_ptr<px4_msgs::msg::VehicleLocalPositionSetpoint_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const VehicleLocalPositionSetpoint_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->x != other.x) { return false; } if (this->y != other.y) { return false; } if (this->z != other.z) { return false; } if (this->yaw != other.yaw) { return false; } if (this->yawspeed != other.yawspeed) { return false; } if (this->vx != other.vx) { return false; } if (this->vy != other.vy) { return false; } if (this->vz != other.vz) { return false; } if (this->acceleration != other.acceleration) { return false; } if (this->jerk != other.jerk) { return false; } if (this->thrust != other.thrust) { return false; } return true; } bool operator!=(const VehicleLocalPositionSetpoint_ & other) const { return !this->operator==(other); } }; // struct VehicleLocalPositionSetpoint_ // alias to use template instance with default allocator using VehicleLocalPositionSetpoint = px4_msgs::msg::VehicleLocalPositionSetpoint_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_SETPOINT__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/gimbal_manager_set_attitude.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GIMBAL_MANAGER_SET_ATTITUDE_HPP_ #define PX4_MSGS__MSG__GIMBAL_MANAGER_SET_ATTITUDE_HPP_ #include "px4_msgs/msg/gimbal_manager_set_attitude__struct.hpp" #include "px4_msgs/msg/gimbal_manager_set_attitude__traits.hpp" #endif // PX4_MSGS__MSG__GIMBAL_MANAGER_SET_ATTITUDE_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/iridiumsbd_status__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/IridiumsbdStatus.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/iridiumsbd_status__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void IridiumsbdStatus_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::IridiumsbdStatus(_init); } void IridiumsbdStatus_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::IridiumsbdStatus *>(message_memory); typed_message->~IridiumsbdStatus(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember IridiumsbdStatus_message_member_array[15] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::IridiumsbdStatus, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "last_heartbeat", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::IridiumsbdStatus, last_heartbeat), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "tx_buf_write_index", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::IridiumsbdStatus, tx_buf_write_index), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rx_buf_read_index", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::IridiumsbdStatus, rx_buf_read_index), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rx_buf_end_index", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::IridiumsbdStatus, rx_buf_end_index), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "failed_sbd_sessions", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::IridiumsbdStatus, failed_sbd_sessions), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "successful_sbd_sessions", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::IridiumsbdStatus, successful_sbd_sessions), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "num_tx_buf_reset", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::IridiumsbdStatus, num_tx_buf_reset), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "signal_quality", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::IridiumsbdStatus, signal_quality), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "state", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::IridiumsbdStatus, state), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ring_pending", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::IridiumsbdStatus, ring_pending), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "tx_buf_write_pending", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::IridiumsbdStatus, tx_buf_write_pending), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "tx_session_pending", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::IridiumsbdStatus, tx_session_pending), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rx_read_pending", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::IridiumsbdStatus, rx_read_pending), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rx_session_pending", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::IridiumsbdStatus, rx_session_pending), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers IridiumsbdStatus_message_members = { "px4_msgs::msg", // message namespace "IridiumsbdStatus", // message name 15, // number of fields sizeof(px4_msgs::msg::IridiumsbdStatus), IridiumsbdStatus_message_member_array, // message members IridiumsbdStatus_init_function, // function to initialize message memory (memory has to be allocated) IridiumsbdStatus_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t IridiumsbdStatus_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &IridiumsbdStatus_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::IridiumsbdStatus>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::IridiumsbdStatus_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, IridiumsbdStatus)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::IridiumsbdStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/test_motor__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/TestMotor.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/test_motor__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/test_motor__struct.h" #include "px4_msgs/msg/test_motor__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _TestMotor__ros_msg_type = px4_msgs__msg__TestMotor; static bool _TestMotor__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _TestMotor__ros_msg_type * ros_message = static_cast<const _TestMotor__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: action { cdr << ros_message->action; } // Field name: motor_number { cdr << ros_message->motor_number; } // Field name: value { cdr << ros_message->value; } // Field name: timeout_ms { cdr << ros_message->timeout_ms; } // Field name: driver_instance { cdr << ros_message->driver_instance; } return true; } static bool _TestMotor__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _TestMotor__ros_msg_type * ros_message = static_cast<_TestMotor__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: action { cdr >> ros_message->action; } // Field name: motor_number { cdr >> ros_message->motor_number; } // Field name: value { cdr >> ros_message->value; } // Field name: timeout_ms { cdr >> ros_message->timeout_ms; } // Field name: driver_instance { cdr >> ros_message->driver_instance; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__TestMotor( const void * untyped_ros_message, size_t current_alignment) { const _TestMotor__ros_msg_type * ros_message = static_cast<const _TestMotor__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name action { size_t item_size = sizeof(ros_message->action); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name motor_number { size_t item_size = sizeof(ros_message->motor_number); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name value { size_t item_size = sizeof(ros_message->value); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name timeout_ms { size_t item_size = sizeof(ros_message->timeout_ms); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name driver_instance { size_t item_size = sizeof(ros_message->driver_instance); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _TestMotor__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__TestMotor( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__TestMotor( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: action { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: motor_number { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: value { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: timeout_ms { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: driver_instance { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _TestMotor__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__TestMotor( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_TestMotor = { "px4_msgs::msg", "TestMotor", _TestMotor__cdr_serialize, _TestMotor__cdr_deserialize, _TestMotor__get_serialized_size, _TestMotor__max_serialized_size }; static rosidl_message_type_support_t _TestMotor__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_TestMotor, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, TestMotor)() { return &_TestMotor__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/satellite_info__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/SatelliteInfo.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/satellite_info__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void SatelliteInfo_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::SatelliteInfo(_init); } void SatelliteInfo_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::SatelliteInfo *>(message_memory); typed_message->~SatelliteInfo(); } size_t size_function__SatelliteInfo__svid(const void * untyped_member) { (void)untyped_member; return 20; } const void * get_const_function__SatelliteInfo__svid(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint8_t, 20> *>(untyped_member); return &member[index]; } void * get_function__SatelliteInfo__svid(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint8_t, 20> *>(untyped_member); return &member[index]; } size_t size_function__SatelliteInfo__used(const void * untyped_member) { (void)untyped_member; return 20; } const void * get_const_function__SatelliteInfo__used(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint8_t, 20> *>(untyped_member); return &member[index]; } void * get_function__SatelliteInfo__used(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint8_t, 20> *>(untyped_member); return &member[index]; } size_t size_function__SatelliteInfo__elevation(const void * untyped_member) { (void)untyped_member; return 20; } const void * get_const_function__SatelliteInfo__elevation(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint8_t, 20> *>(untyped_member); return &member[index]; } void * get_function__SatelliteInfo__elevation(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint8_t, 20> *>(untyped_member); return &member[index]; } size_t size_function__SatelliteInfo__azimuth(const void * untyped_member) { (void)untyped_member; return 20; } const void * get_const_function__SatelliteInfo__azimuth(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint8_t, 20> *>(untyped_member); return &member[index]; } void * get_function__SatelliteInfo__azimuth(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint8_t, 20> *>(untyped_member); return &member[index]; } size_t size_function__SatelliteInfo__snr(const void * untyped_member) { (void)untyped_member; return 20; } const void * get_const_function__SatelliteInfo__snr(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint8_t, 20> *>(untyped_member); return &member[index]; } void * get_function__SatelliteInfo__snr(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint8_t, 20> *>(untyped_member); return &member[index]; } size_t size_function__SatelliteInfo__prn(const void * untyped_member) { (void)untyped_member; return 20; } const void * get_const_function__SatelliteInfo__prn(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint8_t, 20> *>(untyped_member); return &member[index]; } void * get_function__SatelliteInfo__prn(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint8_t, 20> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember SatelliteInfo_message_member_array[8] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SatelliteInfo, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "count", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SatelliteInfo, count), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "svid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 20, // array size false, // is upper bound offsetof(px4_msgs::msg::SatelliteInfo, svid), // bytes offset in struct nullptr, // default value size_function__SatelliteInfo__svid, // size() function pointer get_const_function__SatelliteInfo__svid, // get_const(index) function pointer get_function__SatelliteInfo__svid, // get(index) function pointer nullptr // resize(index) function pointer }, { "used", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 20, // array size false, // is upper bound offsetof(px4_msgs::msg::SatelliteInfo, used), // bytes offset in struct nullptr, // default value size_function__SatelliteInfo__used, // size() function pointer get_const_function__SatelliteInfo__used, // get_const(index) function pointer get_function__SatelliteInfo__used, // get(index) function pointer nullptr // resize(index) function pointer }, { "elevation", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 20, // array size false, // is upper bound offsetof(px4_msgs::msg::SatelliteInfo, elevation), // bytes offset in struct nullptr, // default value size_function__SatelliteInfo__elevation, // size() function pointer get_const_function__SatelliteInfo__elevation, // get_const(index) function pointer get_function__SatelliteInfo__elevation, // get(index) function pointer nullptr // resize(index) function pointer }, { "azimuth", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 20, // array size false, // is upper bound offsetof(px4_msgs::msg::SatelliteInfo, azimuth), // bytes offset in struct nullptr, // default value size_function__SatelliteInfo__azimuth, // size() function pointer get_const_function__SatelliteInfo__azimuth, // get_const(index) function pointer get_function__SatelliteInfo__azimuth, // get(index) function pointer nullptr // resize(index) function pointer }, { "snr", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 20, // array size false, // is upper bound offsetof(px4_msgs::msg::SatelliteInfo, snr), // bytes offset in struct nullptr, // default value size_function__SatelliteInfo__snr, // size() function pointer get_const_function__SatelliteInfo__snr, // get_const(index) function pointer get_function__SatelliteInfo__snr, // get(index) function pointer nullptr // resize(index) function pointer }, { "prn", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 20, // array size false, // is upper bound offsetof(px4_msgs::msg::SatelliteInfo, prn), // bytes offset in struct nullptr, // default value size_function__SatelliteInfo__prn, // size() function pointer get_const_function__SatelliteInfo__prn, // get_const(index) function pointer get_function__SatelliteInfo__prn, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers SatelliteInfo_message_members = { "px4_msgs::msg", // message namespace "SatelliteInfo", // message name 8, // number of fields sizeof(px4_msgs::msg::SatelliteInfo), SatelliteInfo_message_member_array, // message members SatelliteInfo_init_function, // function to initialize message memory (memory has to be allocated) SatelliteInfo_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t SatelliteInfo_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &SatelliteInfo_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::SatelliteInfo>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::SatelliteInfo_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, SatelliteInfo)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::SatelliteInfo_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_accel__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/SensorAccel.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_ACCEL__FUNCTIONS_H_ #define PX4_MSGS__MSG__SENSOR_ACCEL__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/sensor_accel__struct.h" /// Initialize msg/SensorAccel message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__SensorAccel * )) before or use * px4_msgs__msg__SensorAccel__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__SensorAccel__init(px4_msgs__msg__SensorAccel * msg); /// Finalize msg/SensorAccel message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__SensorAccel__fini(px4_msgs__msg__SensorAccel * msg); /// Create msg/SensorAccel message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__SensorAccel__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__SensorAccel * px4_msgs__msg__SensorAccel__create(); /// Destroy msg/SensorAccel message. /** * It calls * px4_msgs__msg__SensorAccel__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__SensorAccel__destroy(px4_msgs__msg__SensorAccel * msg); /// Initialize array of msg/SensorAccel messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__SensorAccel__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__SensorAccel__Sequence__init(px4_msgs__msg__SensorAccel__Sequence * array, size_t size); /// Finalize array of msg/SensorAccel messages. /** * It calls * px4_msgs__msg__SensorAccel__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__SensorAccel__Sequence__fini(px4_msgs__msg__SensorAccel__Sequence * array); /// Create array of msg/SensorAccel messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__SensorAccel__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__SensorAccel__Sequence * px4_msgs__msg__SensorAccel__Sequence__create(size_t size); /// Destroy array of msg/SensorAccel messages. /** * It calls * px4_msgs__msg__SensorAccel__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__SensorAccel__Sequence__destroy(px4_msgs__msg__SensorAccel__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__SENSOR_ACCEL__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_attitude_setpoint__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleAttitudeSetpoint.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_attitude_setpoint__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/vehicle_attitude_setpoint__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::VehicleAttitudeSetpoint & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: roll_body cdr << ros_message.roll_body; // Member: pitch_body cdr << ros_message.pitch_body; // Member: yaw_body cdr << ros_message.yaw_body; // Member: yaw_sp_move_rate cdr << ros_message.yaw_sp_move_rate; // Member: q_d { cdr << ros_message.q_d; } // Member: thrust_body { cdr << ros_message.thrust_body; } // Member: roll_reset_integral cdr << (ros_message.roll_reset_integral ? true : false); // Member: pitch_reset_integral cdr << (ros_message.pitch_reset_integral ? true : false); // Member: yaw_reset_integral cdr << (ros_message.yaw_reset_integral ? true : false); // Member: fw_control_yaw cdr << (ros_message.fw_control_yaw ? true : false); // Member: apply_flaps cdr << ros_message.apply_flaps; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::VehicleAttitudeSetpoint & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: roll_body cdr >> ros_message.roll_body; // Member: pitch_body cdr >> ros_message.pitch_body; // Member: yaw_body cdr >> ros_message.yaw_body; // Member: yaw_sp_move_rate cdr >> ros_message.yaw_sp_move_rate; // Member: q_d { cdr >> ros_message.q_d; } // Member: thrust_body { cdr >> ros_message.thrust_body; } // Member: roll_reset_integral { uint8_t tmp; cdr >> tmp; ros_message.roll_reset_integral = tmp ? true : false; } // Member: pitch_reset_integral { uint8_t tmp; cdr >> tmp; ros_message.pitch_reset_integral = tmp ? true : false; } // Member: yaw_reset_integral { uint8_t tmp; cdr >> tmp; ros_message.yaw_reset_integral = tmp ? true : false; } // Member: fw_control_yaw { uint8_t tmp; cdr >> tmp; ros_message.fw_control_yaw = tmp ? true : false; } // Member: apply_flaps cdr >> ros_message.apply_flaps; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::VehicleAttitudeSetpoint & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: roll_body { size_t item_size = sizeof(ros_message.roll_body); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: pitch_body { size_t item_size = sizeof(ros_message.pitch_body); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: yaw_body { size_t item_size = sizeof(ros_message.yaw_body); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: yaw_sp_move_rate { size_t item_size = sizeof(ros_message.yaw_sp_move_rate); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: q_d { size_t array_size = 4; size_t item_size = sizeof(ros_message.q_d[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: thrust_body { size_t array_size = 3; size_t item_size = sizeof(ros_message.thrust_body[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: roll_reset_integral { size_t item_size = sizeof(ros_message.roll_reset_integral); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: pitch_reset_integral { size_t item_size = sizeof(ros_message.pitch_reset_integral); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: yaw_reset_integral { size_t item_size = sizeof(ros_message.yaw_reset_integral); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: fw_control_yaw { size_t item_size = sizeof(ros_message.fw_control_yaw); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: apply_flaps { size_t item_size = sizeof(ros_message.apply_flaps); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_VehicleAttitudeSetpoint( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: roll_body { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: pitch_body { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: yaw_body { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: yaw_sp_move_rate { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: q_d { size_t array_size = 4; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: thrust_body { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: roll_reset_integral { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: pitch_reset_integral { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: yaw_reset_integral { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: fw_control_yaw { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: apply_flaps { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _VehicleAttitudeSetpoint__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::VehicleAttitudeSetpoint *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _VehicleAttitudeSetpoint__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::VehicleAttitudeSetpoint *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _VehicleAttitudeSetpoint__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::VehicleAttitudeSetpoint *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _VehicleAttitudeSetpoint__max_serialized_size(bool & full_bounded) { return max_serialized_size_VehicleAttitudeSetpoint(full_bounded, 0); } static message_type_support_callbacks_t _VehicleAttitudeSetpoint__callbacks = { "px4_msgs::msg", "VehicleAttitudeSetpoint", _VehicleAttitudeSetpoint__cdr_serialize, _VehicleAttitudeSetpoint__cdr_deserialize, _VehicleAttitudeSetpoint__get_serialized_size, _VehicleAttitudeSetpoint__max_serialized_size }; static rosidl_message_type_support_t _VehicleAttitudeSetpoint__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_VehicleAttitudeSetpoint__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleAttitudeSetpoint>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_VehicleAttitudeSetpoint__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, VehicleAttitudeSetpoint)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_VehicleAttitudeSetpoint__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_innovation_test_ratios.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/EstimatorInnovationTestRatios.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_INNOVATION_TEST_RATIOS_H_ #define PX4_MSGS__MSG__ESTIMATOR_INNOVATION_TEST_RATIOS_H_ #include "px4_msgs/msg/estimator_innovation_test_ratios__struct.h" #include "px4_msgs/msg/estimator_innovation_test_ratios__functions.h" #include "px4_msgs/msg/estimator_innovation_test_ratios__type_support.h" #endif // PX4_MSGS__MSG__ESTIMATOR_INNOVATION_TEST_RATIOS_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_mc__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/ActuatorControlsVirtualMc.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/actuator_controls_virtual_mc__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__ActuatorControlsVirtualMc__init(px4_msgs__msg__ActuatorControlsVirtualMc * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // control return true; } void px4_msgs__msg__ActuatorControlsVirtualMc__fini(px4_msgs__msg__ActuatorControlsVirtualMc * msg) { if (!msg) { return; } // timestamp // timestamp_sample // control } px4_msgs__msg__ActuatorControlsVirtualMc * px4_msgs__msg__ActuatorControlsVirtualMc__create() { px4_msgs__msg__ActuatorControlsVirtualMc * msg = (px4_msgs__msg__ActuatorControlsVirtualMc *)malloc(sizeof(px4_msgs__msg__ActuatorControlsVirtualMc)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__ActuatorControlsVirtualMc)); bool success = px4_msgs__msg__ActuatorControlsVirtualMc__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__ActuatorControlsVirtualMc__destroy(px4_msgs__msg__ActuatorControlsVirtualMc * msg) { if (msg) { px4_msgs__msg__ActuatorControlsVirtualMc__fini(msg); } free(msg); } bool px4_msgs__msg__ActuatorControlsVirtualMc__Sequence__init(px4_msgs__msg__ActuatorControlsVirtualMc__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__ActuatorControlsVirtualMc * data = NULL; if (size) { data = (px4_msgs__msg__ActuatorControlsVirtualMc *)calloc(size, sizeof(px4_msgs__msg__ActuatorControlsVirtualMc)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__ActuatorControlsVirtualMc__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__ActuatorControlsVirtualMc__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__ActuatorControlsVirtualMc__Sequence__fini(px4_msgs__msg__ActuatorControlsVirtualMc__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__ActuatorControlsVirtualMc__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__ActuatorControlsVirtualMc__Sequence * px4_msgs__msg__ActuatorControlsVirtualMc__Sequence__create(size_t size) { px4_msgs__msg__ActuatorControlsVirtualMc__Sequence * array = (px4_msgs__msg__ActuatorControlsVirtualMc__Sequence *)malloc(sizeof(px4_msgs__msg__ActuatorControlsVirtualMc__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__ActuatorControlsVirtualMc__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__ActuatorControlsVirtualMc__Sequence__destroy(px4_msgs__msg__ActuatorControlsVirtualMc__Sequence * array) { if (array) { px4_msgs__msg__ActuatorControlsVirtualMc__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/differential_pressure__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/DifferentialPressure.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/differential_pressure__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__DifferentialPressure__init(px4_msgs__msg__DifferentialPressure * msg) { if (!msg) { return false; } // timestamp // error_count // differential_pressure_raw_pa // differential_pressure_filtered_pa // temperature // device_id return true; } void px4_msgs__msg__DifferentialPressure__fini(px4_msgs__msg__DifferentialPressure * msg) { if (!msg) { return; } // timestamp // error_count // differential_pressure_raw_pa // differential_pressure_filtered_pa // temperature // device_id } px4_msgs__msg__DifferentialPressure * px4_msgs__msg__DifferentialPressure__create() { px4_msgs__msg__DifferentialPressure * msg = (px4_msgs__msg__DifferentialPressure *)malloc(sizeof(px4_msgs__msg__DifferentialPressure)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__DifferentialPressure)); bool success = px4_msgs__msg__DifferentialPressure__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__DifferentialPressure__destroy(px4_msgs__msg__DifferentialPressure * msg) { if (msg) { px4_msgs__msg__DifferentialPressure__fini(msg); } free(msg); } bool px4_msgs__msg__DifferentialPressure__Sequence__init(px4_msgs__msg__DifferentialPressure__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__DifferentialPressure * data = NULL; if (size) { data = (px4_msgs__msg__DifferentialPressure *)calloc(size, sizeof(px4_msgs__msg__DifferentialPressure)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__DifferentialPressure__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__DifferentialPressure__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__DifferentialPressure__Sequence__fini(px4_msgs__msg__DifferentialPressure__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__DifferentialPressure__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__DifferentialPressure__Sequence * px4_msgs__msg__DifferentialPressure__Sequence__create(size_t size) { px4_msgs__msg__DifferentialPressure__Sequence * array = (px4_msgs__msg__DifferentialPressure__Sequence *)malloc(sizeof(px4_msgs__msg__DifferentialPressure__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__DifferentialPressure__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__DifferentialPressure__Sequence__destroy(px4_msgs__msg__DifferentialPressure__Sequence * array) { if (array) { px4_msgs__msg__DifferentialPressure__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/pwm_input.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__PWM_INPUT_HPP_ #define PX4_MSGS__MSG__PWM_INPUT_HPP_ #include "px4_msgs/msg/pwm_input__struct.hpp" #include "px4_msgs/msg/pwm_input__traits.hpp" #endif // PX4_MSGS__MSG__PWM_INPUT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vtol_vehicle_status.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VtolVehicleStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VTOL_VEHICLE_STATUS_H_ #define PX4_MSGS__MSG__VTOL_VEHICLE_STATUS_H_ #include "px4_msgs/msg/vtol_vehicle_status__struct.h" #include "px4_msgs/msg/vtol_vehicle_status__functions.h" #include "px4_msgs/msg/vtol_vehicle_status__type_support.h" #endif // PX4_MSGS__MSG__VTOL_VEHICLE_STATUS_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/geofence_result__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/GeofenceResult.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/geofence_result__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__GeofenceResult__init(px4_msgs__msg__GeofenceResult * msg) { if (!msg) { return false; } // timestamp // geofence_violated // geofence_action // home_required return true; } void px4_msgs__msg__GeofenceResult__fini(px4_msgs__msg__GeofenceResult * msg) { if (!msg) { return; } // timestamp // geofence_violated // geofence_action // home_required } px4_msgs__msg__GeofenceResult * px4_msgs__msg__GeofenceResult__create() { px4_msgs__msg__GeofenceResult * msg = (px4_msgs__msg__GeofenceResult *)malloc(sizeof(px4_msgs__msg__GeofenceResult)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__GeofenceResult)); bool success = px4_msgs__msg__GeofenceResult__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__GeofenceResult__destroy(px4_msgs__msg__GeofenceResult * msg) { if (msg) { px4_msgs__msg__GeofenceResult__fini(msg); } free(msg); } bool px4_msgs__msg__GeofenceResult__Sequence__init(px4_msgs__msg__GeofenceResult__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__GeofenceResult * data = NULL; if (size) { data = (px4_msgs__msg__GeofenceResult *)calloc(size, sizeof(px4_msgs__msg__GeofenceResult)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__GeofenceResult__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__GeofenceResult__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__GeofenceResult__Sequence__fini(px4_msgs__msg__GeofenceResult__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__GeofenceResult__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__GeofenceResult__Sequence * px4_msgs__msg__GeofenceResult__Sequence__create(size_t size) { px4_msgs__msg__GeofenceResult__Sequence * array = (px4_msgs__msg__GeofenceResult__Sequence *)malloc(sizeof(px4_msgs__msg__GeofenceResult__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__GeofenceResult__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__GeofenceResult__Sequence__destroy(px4_msgs__msg__GeofenceResult__Sequence * array) { if (array) { px4_msgs__msg__GeofenceResult__Sequence__fini(array); } free(array); } <file_sep>/install/px4_ros_com/share/px4_ros_com/test/pipeline_io_test.py /home/navlab-tx2-4/px4_ros_com_ros2/src/px4_ros_com/test/pipeline_io_test.py<file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_selection.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/SensorSelection.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_SELECTION_H_ #define PX4_MSGS__MSG__SENSOR_SELECTION_H_ #include "px4_msgs/msg/sensor_selection__struct.h" #include "px4_msgs/msg/sensor_selection__functions.h" #include "px4_msgs/msg/sensor_selection__type_support.h" #endif // PX4_MSGS__MSG__SENSOR_SELECTION_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_actuator_armed.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/ActuatorArmed.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_ActuatorArmed(type): """Metaclass of message 'ActuatorArmed'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.ActuatorArmed') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__actuator_armed cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__actuator_armed cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__actuator_armed cls._TYPE_SUPPORT = module.type_support_msg__msg__actuator_armed cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__actuator_armed @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class ActuatorArmed(metaclass=Metaclass_ActuatorArmed): """Message class 'ActuatorArmed'.""" __slots__ = [ '_timestamp', '_armed', '_prearmed', '_ready_to_arm', '_lockdown', '_manual_lockdown', '_force_failsafe', '_in_esc_calibration_mode', '_soft_stop', ] _fields_and_field_types = { 'timestamp': 'uint64', 'armed': 'boolean', 'prearmed': 'boolean', 'ready_to_arm': 'boolean', 'lockdown': 'boolean', 'manual_lockdown': 'boolean', 'force_failsafe': 'boolean', 'in_esc_calibration_mode': 'boolean', 'soft_stop': 'boolean', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.armed = kwargs.get('armed', bool()) self.prearmed = kwargs.get('prearmed', bool()) self.ready_to_arm = kwargs.get('ready_to_arm', bool()) self.lockdown = kwargs.get('lockdown', bool()) self.manual_lockdown = kwargs.get('manual_lockdown', bool()) self.force_failsafe = kwargs.get('force_failsafe', bool()) self.in_esc_calibration_mode = kwargs.get('in_esc_calibration_mode', bool()) self.soft_stop = kwargs.get('soft_stop', bool()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.armed != other.armed: return False if self.prearmed != other.prearmed: return False if self.ready_to_arm != other.ready_to_arm: return False if self.lockdown != other.lockdown: return False if self.manual_lockdown != other.manual_lockdown: return False if self.force_failsafe != other.force_failsafe: return False if self.in_esc_calibration_mode != other.in_esc_calibration_mode: return False if self.soft_stop != other.soft_stop: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def armed(self): """Message field 'armed'.""" return self._armed @armed.setter def armed(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'armed' field must be of type 'bool'" self._armed = value @property def prearmed(self): """Message field 'prearmed'.""" return self._prearmed @prearmed.setter def prearmed(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'prearmed' field must be of type 'bool'" self._prearmed = value @property def ready_to_arm(self): """Message field 'ready_to_arm'.""" return self._ready_to_arm @ready_to_arm.setter def ready_to_arm(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'ready_to_arm' field must be of type 'bool'" self._ready_to_arm = value @property def lockdown(self): """Message field 'lockdown'.""" return self._lockdown @lockdown.setter def lockdown(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'lockdown' field must be of type 'bool'" self._lockdown = value @property def manual_lockdown(self): """Message field 'manual_lockdown'.""" return self._manual_lockdown @manual_lockdown.setter def manual_lockdown(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'manual_lockdown' field must be of type 'bool'" self._manual_lockdown = value @property def force_failsafe(self): """Message field 'force_failsafe'.""" return self._force_failsafe @force_failsafe.setter def force_failsafe(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'force_failsafe' field must be of type 'bool'" self._force_failsafe = value @property def in_esc_calibration_mode(self): """Message field 'in_esc_calibration_mode'.""" return self._in_esc_calibration_mode @in_esc_calibration_mode.setter def in_esc_calibration_mode(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'in_esc_calibration_mode' field must be of type 'bool'" self._in_esc_calibration_mode = value @property def soft_stop(self): """Message field 'soft_stop'.""" return self._soft_stop @soft_stop.setter def soft_stop(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'soft_stop' field must be of type 'bool'" self._soft_stop = value <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/position_setpoint__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/PositionSetpoint.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/position_setpoint__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void PositionSetpoint_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::PositionSetpoint(_init); } void PositionSetpoint_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::PositionSetpoint *>(message_memory); typed_message->~PositionSetpoint(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember PositionSetpoint_message_member_array[23] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PositionSetpoint, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PositionSetpoint, valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "type", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PositionSetpoint, type), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vx", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PositionSetpoint, vx), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vy", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PositionSetpoint, vy), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vz", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PositionSetpoint, vz), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "velocity_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PositionSetpoint, velocity_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "velocity_frame", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PositionSetpoint, velocity_frame), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "alt_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PositionSetpoint, alt_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "lat", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_DOUBLE, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PositionSetpoint, lat), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "lon", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_DOUBLE, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PositionSetpoint, lon), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "alt", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PositionSetpoint, alt), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "yaw", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PositionSetpoint, yaw), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "yaw_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PositionSetpoint, yaw_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "yawspeed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PositionSetpoint, yawspeed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "yawspeed_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PositionSetpoint, yawspeed_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "landing_gear", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PositionSetpoint, landing_gear), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "loiter_radius", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PositionSetpoint, loiter_radius), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "loiter_direction", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PositionSetpoint, loiter_direction), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "acceptance_radius", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PositionSetpoint, acceptance_radius), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cruising_speed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PositionSetpoint, cruising_speed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cruising_throttle", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PositionSetpoint, cruising_throttle), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "disable_weather_vane", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PositionSetpoint, disable_weather_vane), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers PositionSetpoint_message_members = { "px4_msgs::msg", // message namespace "PositionSetpoint", // message name 23, // number of fields sizeof(px4_msgs::msg::PositionSetpoint), PositionSetpoint_message_member_array, // message members PositionSetpoint_init_function, // function to initialize message memory (memory has to be allocated) PositionSetpoint_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t PositionSetpoint_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &PositionSetpoint_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::PositionSetpoint>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::PositionSetpoint_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, PositionSetpoint)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::PositionSetpoint_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_battery_status_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/BatteryStatus.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/battery_status__struct.h" #include "px4_msgs/msg/battery_status__functions.h" #include "rosidl_generator_c/primitives_sequence.h" #include "rosidl_generator_c/primitives_sequence_functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__battery_status__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[43]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._battery_status.BatteryStatus", full_classname_dest, 42) == 0); } px4_msgs__msg__BatteryStatus * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // voltage_v PyObject * field = PyObject_GetAttrString(_pymsg, "voltage_v"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->voltage_v = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // voltage_filtered_v PyObject * field = PyObject_GetAttrString(_pymsg, "voltage_filtered_v"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->voltage_filtered_v = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // current_a PyObject * field = PyObject_GetAttrString(_pymsg, "current_a"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->current_a = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // current_filtered_a PyObject * field = PyObject_GetAttrString(_pymsg, "current_filtered_a"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->current_filtered_a = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // average_current_a PyObject * field = PyObject_GetAttrString(_pymsg, "average_current_a"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->average_current_a = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // discharged_mah PyObject * field = PyObject_GetAttrString(_pymsg, "discharged_mah"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->discharged_mah = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // remaining PyObject * field = PyObject_GetAttrString(_pymsg, "remaining"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->remaining = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // scale PyObject * field = PyObject_GetAttrString(_pymsg, "scale"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->scale = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // temperature PyObject * field = PyObject_GetAttrString(_pymsg, "temperature"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->temperature = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // cell_count PyObject * field = PyObject_GetAttrString(_pymsg, "cell_count"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->cell_count = (int32_t)PyLong_AsLong(field); Py_DECREF(field); } { // connected PyObject * field = PyObject_GetAttrString(_pymsg, "connected"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->connected = (Py_True == field); Py_DECREF(field); } { // source PyObject * field = PyObject_GetAttrString(_pymsg, "source"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->source = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // priority PyObject * field = PyObject_GetAttrString(_pymsg, "priority"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->priority = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // capacity PyObject * field = PyObject_GetAttrString(_pymsg, "capacity"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->capacity = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // cycle_count PyObject * field = PyObject_GetAttrString(_pymsg, "cycle_count"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->cycle_count = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // run_time_to_empty PyObject * field = PyObject_GetAttrString(_pymsg, "run_time_to_empty"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->run_time_to_empty = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // average_time_to_empty PyObject * field = PyObject_GetAttrString(_pymsg, "average_time_to_empty"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->average_time_to_empty = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // serial_number PyObject * field = PyObject_GetAttrString(_pymsg, "serial_number"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->serial_number = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // manufacture_date PyObject * field = PyObject_GetAttrString(_pymsg, "manufacture_date"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->manufacture_date = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // state_of_health PyObject * field = PyObject_GetAttrString(_pymsg, "state_of_health"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->state_of_health = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // max_error PyObject * field = PyObject_GetAttrString(_pymsg, "max_error"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->max_error = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // id PyObject * field = PyObject_GetAttrString(_pymsg, "id"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->id = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // interface_error PyObject * field = PyObject_GetAttrString(_pymsg, "interface_error"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->interface_error = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // voltage_cell_v PyObject * field = PyObject_GetAttrString(_pymsg, "voltage_cell_v"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); Py_ssize_t size = 14; float * dest = ros_message->voltage_cell_v; for (Py_ssize_t i = 0; i < size; ++i) { float tmp = *(npy_float32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(float)); } Py_DECREF(seq_field); Py_DECREF(field); } { // max_cell_voltage_delta PyObject * field = PyObject_GetAttrString(_pymsg, "max_cell_voltage_delta"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->max_cell_voltage_delta = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // is_powering_off PyObject * field = PyObject_GetAttrString(_pymsg, "is_powering_off"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->is_powering_off = (Py_True == field); Py_DECREF(field); } { // warning PyObject * field = PyObject_GetAttrString(_pymsg, "warning"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->warning = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // average_power PyObject * field = PyObject_GetAttrString(_pymsg, "average_power"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->average_power = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // available_energy PyObject * field = PyObject_GetAttrString(_pymsg, "available_energy"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->available_energy = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // remaining_capacity PyObject * field = PyObject_GetAttrString(_pymsg, "remaining_capacity"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->remaining_capacity = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // design_capacity PyObject * field = PyObject_GetAttrString(_pymsg, "design_capacity"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->design_capacity = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // average_time_to_full PyObject * field = PyObject_GetAttrString(_pymsg, "average_time_to_full"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->average_time_to_full = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // over_discharge_count PyObject * field = PyObject_GetAttrString(_pymsg, "over_discharge_count"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->over_discharge_count = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // nominal_voltage PyObject * field = PyObject_GetAttrString(_pymsg, "nominal_voltage"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->nominal_voltage = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__battery_status__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of BatteryStatus */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._battery_status"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "BatteryStatus"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__BatteryStatus * ros_message = (px4_msgs__msg__BatteryStatus *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // voltage_v PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->voltage_v); { int rc = PyObject_SetAttrString(_pymessage, "voltage_v", field); Py_DECREF(field); if (rc) { return NULL; } } } { // voltage_filtered_v PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->voltage_filtered_v); { int rc = PyObject_SetAttrString(_pymessage, "voltage_filtered_v", field); Py_DECREF(field); if (rc) { return NULL; } } } { // current_a PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->current_a); { int rc = PyObject_SetAttrString(_pymessage, "current_a", field); Py_DECREF(field); if (rc) { return NULL; } } } { // current_filtered_a PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->current_filtered_a); { int rc = PyObject_SetAttrString(_pymessage, "current_filtered_a", field); Py_DECREF(field); if (rc) { return NULL; } } } { // average_current_a PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->average_current_a); { int rc = PyObject_SetAttrString(_pymessage, "average_current_a", field); Py_DECREF(field); if (rc) { return NULL; } } } { // discharged_mah PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->discharged_mah); { int rc = PyObject_SetAttrString(_pymessage, "discharged_mah", field); Py_DECREF(field); if (rc) { return NULL; } } } { // remaining PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->remaining); { int rc = PyObject_SetAttrString(_pymessage, "remaining", field); Py_DECREF(field); if (rc) { return NULL; } } } { // scale PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->scale); { int rc = PyObject_SetAttrString(_pymessage, "scale", field); Py_DECREF(field); if (rc) { return NULL; } } } { // temperature PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->temperature); { int rc = PyObject_SetAttrString(_pymessage, "temperature", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cell_count PyObject * field = NULL; field = PyLong_FromLong(ros_message->cell_count); { int rc = PyObject_SetAttrString(_pymessage, "cell_count", field); Py_DECREF(field); if (rc) { return NULL; } } } { // connected PyObject * field = NULL; field = PyBool_FromLong(ros_message->connected ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "connected", field); Py_DECREF(field); if (rc) { return NULL; } } } { // source PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->source); { int rc = PyObject_SetAttrString(_pymessage, "source", field); Py_DECREF(field); if (rc) { return NULL; } } } { // priority PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->priority); { int rc = PyObject_SetAttrString(_pymessage, "priority", field); Py_DECREF(field); if (rc) { return NULL; } } } { // capacity PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->capacity); { int rc = PyObject_SetAttrString(_pymessage, "capacity", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cycle_count PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->cycle_count); { int rc = PyObject_SetAttrString(_pymessage, "cycle_count", field); Py_DECREF(field); if (rc) { return NULL; } } } { // run_time_to_empty PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->run_time_to_empty); { int rc = PyObject_SetAttrString(_pymessage, "run_time_to_empty", field); Py_DECREF(field); if (rc) { return NULL; } } } { // average_time_to_empty PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->average_time_to_empty); { int rc = PyObject_SetAttrString(_pymessage, "average_time_to_empty", field); Py_DECREF(field); if (rc) { return NULL; } } } { // serial_number PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->serial_number); { int rc = PyObject_SetAttrString(_pymessage, "serial_number", field); Py_DECREF(field); if (rc) { return NULL; } } } { // manufacture_date PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->manufacture_date); { int rc = PyObject_SetAttrString(_pymessage, "manufacture_date", field); Py_DECREF(field); if (rc) { return NULL; } } } { // state_of_health PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->state_of_health); { int rc = PyObject_SetAttrString(_pymessage, "state_of_health", field); Py_DECREF(field); if (rc) { return NULL; } } } { // max_error PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->max_error); { int rc = PyObject_SetAttrString(_pymessage, "max_error", field); Py_DECREF(field); if (rc) { return NULL; } } } { // id PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->id); { int rc = PyObject_SetAttrString(_pymessage, "id", field); Py_DECREF(field); if (rc) { return NULL; } } } { // interface_error PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->interface_error); { int rc = PyObject_SetAttrString(_pymessage, "interface_error", field); Py_DECREF(field); if (rc) { return NULL; } } } { // voltage_cell_v PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "voltage_cell_v"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); assert(sizeof(npy_float32) == sizeof(float)); npy_float32 * dst = (npy_float32 *)PyArray_GETPTR1(seq_field, 0); float * src = &(ros_message->voltage_cell_v[0]); memcpy(dst, src, 14 * sizeof(float)); Py_DECREF(field); } { // max_cell_voltage_delta PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->max_cell_voltage_delta); { int rc = PyObject_SetAttrString(_pymessage, "max_cell_voltage_delta", field); Py_DECREF(field); if (rc) { return NULL; } } } { // is_powering_off PyObject * field = NULL; field = PyBool_FromLong(ros_message->is_powering_off ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "is_powering_off", field); Py_DECREF(field); if (rc) { return NULL; } } } { // warning PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->warning); { int rc = PyObject_SetAttrString(_pymessage, "warning", field); Py_DECREF(field); if (rc) { return NULL; } } } { // average_power PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->average_power); { int rc = PyObject_SetAttrString(_pymessage, "average_power", field); Py_DECREF(field); if (rc) { return NULL; } } } { // available_energy PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->available_energy); { int rc = PyObject_SetAttrString(_pymessage, "available_energy", field); Py_DECREF(field); if (rc) { return NULL; } } } { // remaining_capacity PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->remaining_capacity); { int rc = PyObject_SetAttrString(_pymessage, "remaining_capacity", field); Py_DECREF(field); if (rc) { return NULL; } } } { // design_capacity PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->design_capacity); { int rc = PyObject_SetAttrString(_pymessage, "design_capacity", field); Py_DECREF(field); if (rc) { return NULL; } } } { // average_time_to_full PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->average_time_to_full); { int rc = PyObject_SetAttrString(_pymessage, "average_time_to_full", field); Py_DECREF(field); if (rc) { return NULL; } } } { // over_discharge_count PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->over_discharge_count); { int rc = PyObject_SetAttrString(_pymessage, "over_discharge_count", field); Py_DECREF(field); if (rc) { return NULL; } } } { // nominal_voltage PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->nominal_voltage); { int rc = PyObject_SetAttrString(_pymessage, "nominal_voltage", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_tecs_status_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/TecsStatus.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/tecs_status__struct.h" #include "px4_msgs/msg/tecs_status__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__tecs_status__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[37]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._tecs_status.TecsStatus", full_classname_dest, 36) == 0); } px4_msgs__msg__TecsStatus * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // altitude_sp PyObject * field = PyObject_GetAttrString(_pymsg, "altitude_sp"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->altitude_sp = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // altitude_filtered PyObject * field = PyObject_GetAttrString(_pymsg, "altitude_filtered"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->altitude_filtered = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // height_rate_setpoint PyObject * field = PyObject_GetAttrString(_pymsg, "height_rate_setpoint"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->height_rate_setpoint = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // height_rate PyObject * field = PyObject_GetAttrString(_pymsg, "height_rate"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->height_rate = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // equivalent_airspeed_sp PyObject * field = PyObject_GetAttrString(_pymsg, "equivalent_airspeed_sp"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->equivalent_airspeed_sp = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // true_airspeed_sp PyObject * field = PyObject_GetAttrString(_pymsg, "true_airspeed_sp"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->true_airspeed_sp = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // true_airspeed_filtered PyObject * field = PyObject_GetAttrString(_pymsg, "true_airspeed_filtered"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->true_airspeed_filtered = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // true_airspeed_derivative_sp PyObject * field = PyObject_GetAttrString(_pymsg, "true_airspeed_derivative_sp"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->true_airspeed_derivative_sp = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // true_airspeed_derivative PyObject * field = PyObject_GetAttrString(_pymsg, "true_airspeed_derivative"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->true_airspeed_derivative = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // total_energy_error PyObject * field = PyObject_GetAttrString(_pymsg, "total_energy_error"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->total_energy_error = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // energy_distribution_error PyObject * field = PyObject_GetAttrString(_pymsg, "energy_distribution_error"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->energy_distribution_error = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // total_energy_rate_error PyObject * field = PyObject_GetAttrString(_pymsg, "total_energy_rate_error"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->total_energy_rate_error = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // energy_distribution_rate_error PyObject * field = PyObject_GetAttrString(_pymsg, "energy_distribution_rate_error"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->energy_distribution_rate_error = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // total_energy PyObject * field = PyObject_GetAttrString(_pymsg, "total_energy"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->total_energy = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // total_energy_rate PyObject * field = PyObject_GetAttrString(_pymsg, "total_energy_rate"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->total_energy_rate = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // total_energy_balance PyObject * field = PyObject_GetAttrString(_pymsg, "total_energy_balance"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->total_energy_balance = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // total_energy_balance_rate PyObject * field = PyObject_GetAttrString(_pymsg, "total_energy_balance_rate"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->total_energy_balance_rate = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // total_energy_sp PyObject * field = PyObject_GetAttrString(_pymsg, "total_energy_sp"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->total_energy_sp = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // total_energy_rate_sp PyObject * field = PyObject_GetAttrString(_pymsg, "total_energy_rate_sp"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->total_energy_rate_sp = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // total_energy_balance_sp PyObject * field = PyObject_GetAttrString(_pymsg, "total_energy_balance_sp"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->total_energy_balance_sp = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // total_energy_balance_rate_sp PyObject * field = PyObject_GetAttrString(_pymsg, "total_energy_balance_rate_sp"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->total_energy_balance_rate_sp = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // throttle_integ PyObject * field = PyObject_GetAttrString(_pymsg, "throttle_integ"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->throttle_integ = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // pitch_integ PyObject * field = PyObject_GetAttrString(_pymsg, "pitch_integ"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->pitch_integ = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // throttle_sp PyObject * field = PyObject_GetAttrString(_pymsg, "throttle_sp"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->throttle_sp = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // mode PyObject * field = PyObject_GetAttrString(_pymsg, "mode"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->mode = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__tecs_status__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of TecsStatus */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._tecs_status"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "TecsStatus"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__TecsStatus * ros_message = (px4_msgs__msg__TecsStatus *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // altitude_sp PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->altitude_sp); { int rc = PyObject_SetAttrString(_pymessage, "altitude_sp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // altitude_filtered PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->altitude_filtered); { int rc = PyObject_SetAttrString(_pymessage, "altitude_filtered", field); Py_DECREF(field); if (rc) { return NULL; } } } { // height_rate_setpoint PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->height_rate_setpoint); { int rc = PyObject_SetAttrString(_pymessage, "height_rate_setpoint", field); Py_DECREF(field); if (rc) { return NULL; } } } { // height_rate PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->height_rate); { int rc = PyObject_SetAttrString(_pymessage, "height_rate", field); Py_DECREF(field); if (rc) { return NULL; } } } { // equivalent_airspeed_sp PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->equivalent_airspeed_sp); { int rc = PyObject_SetAttrString(_pymessage, "equivalent_airspeed_sp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // true_airspeed_sp PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->true_airspeed_sp); { int rc = PyObject_SetAttrString(_pymessage, "true_airspeed_sp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // true_airspeed_filtered PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->true_airspeed_filtered); { int rc = PyObject_SetAttrString(_pymessage, "true_airspeed_filtered", field); Py_DECREF(field); if (rc) { return NULL; } } } { // true_airspeed_derivative_sp PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->true_airspeed_derivative_sp); { int rc = PyObject_SetAttrString(_pymessage, "true_airspeed_derivative_sp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // true_airspeed_derivative PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->true_airspeed_derivative); { int rc = PyObject_SetAttrString(_pymessage, "true_airspeed_derivative", field); Py_DECREF(field); if (rc) { return NULL; } } } { // total_energy_error PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->total_energy_error); { int rc = PyObject_SetAttrString(_pymessage, "total_energy_error", field); Py_DECREF(field); if (rc) { return NULL; } } } { // energy_distribution_error PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->energy_distribution_error); { int rc = PyObject_SetAttrString(_pymessage, "energy_distribution_error", field); Py_DECREF(field); if (rc) { return NULL; } } } { // total_energy_rate_error PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->total_energy_rate_error); { int rc = PyObject_SetAttrString(_pymessage, "total_energy_rate_error", field); Py_DECREF(field); if (rc) { return NULL; } } } { // energy_distribution_rate_error PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->energy_distribution_rate_error); { int rc = PyObject_SetAttrString(_pymessage, "energy_distribution_rate_error", field); Py_DECREF(field); if (rc) { return NULL; } } } { // total_energy PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->total_energy); { int rc = PyObject_SetAttrString(_pymessage, "total_energy", field); Py_DECREF(field); if (rc) { return NULL; } } } { // total_energy_rate PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->total_energy_rate); { int rc = PyObject_SetAttrString(_pymessage, "total_energy_rate", field); Py_DECREF(field); if (rc) { return NULL; } } } { // total_energy_balance PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->total_energy_balance); { int rc = PyObject_SetAttrString(_pymessage, "total_energy_balance", field); Py_DECREF(field); if (rc) { return NULL; } } } { // total_energy_balance_rate PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->total_energy_balance_rate); { int rc = PyObject_SetAttrString(_pymessage, "total_energy_balance_rate", field); Py_DECREF(field); if (rc) { return NULL; } } } { // total_energy_sp PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->total_energy_sp); { int rc = PyObject_SetAttrString(_pymessage, "total_energy_sp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // total_energy_rate_sp PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->total_energy_rate_sp); { int rc = PyObject_SetAttrString(_pymessage, "total_energy_rate_sp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // total_energy_balance_sp PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->total_energy_balance_sp); { int rc = PyObject_SetAttrString(_pymessage, "total_energy_balance_sp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // total_energy_balance_rate_sp PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->total_energy_balance_rate_sp); { int rc = PyObject_SetAttrString(_pymessage, "total_energy_balance_rate_sp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // throttle_integ PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->throttle_integ); { int rc = PyObject_SetAttrString(_pymessage, "throttle_integ", field); Py_DECREF(field); if (rc) { return NULL; } } } { // pitch_integ PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->pitch_integ); { int rc = PyObject_SetAttrString(_pymessage, "pitch_integ", field); Py_DECREF(field); if (rc) { return NULL; } } } { // throttle_sp PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->throttle_sp); { int rc = PyObject_SetAttrString(_pymessage, "throttle_sp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // mode PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->mode); { int rc = PyObject_SetAttrString(_pymessage, "mode", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_local_position__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleLocalPosition.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION__STRUCT_H_ #define PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'DIST_BOTTOM_SENSOR_NONE'. enum { px4_msgs__msg__VehicleLocalPosition__DIST_BOTTOM_SENSOR_NONE = 0 }; /// Constant 'DIST_BOTTOM_SENSOR_RANGE'. enum { px4_msgs__msg__VehicleLocalPosition__DIST_BOTTOM_SENSOR_RANGE = 1 }; /// Constant 'DIST_BOTTOM_SENSOR_FLOW'. enum { px4_msgs__msg__VehicleLocalPosition__DIST_BOTTOM_SENSOR_FLOW = 2 }; // Struct defined in msg/VehicleLocalPosition in the package px4_msgs. typedef struct px4_msgs__msg__VehicleLocalPosition { uint64_t timestamp; uint64_t timestamp_sample; bool xy_valid; bool z_valid; bool v_xy_valid; bool v_z_valid; float x; float y; float z; float delta_xy[2]; uint8_t xy_reset_counter; float delta_z; uint8_t z_reset_counter; float vx; float vy; float vz; float z_deriv; float delta_vxy[2]; uint8_t vxy_reset_counter; float delta_vz; uint8_t vz_reset_counter; float ax; float ay; float az; float heading; float delta_heading; uint8_t heading_reset_counter; bool xy_global; bool z_global; uint64_t ref_timestamp; double ref_lat; double ref_lon; float ref_alt; float dist_bottom; bool dist_bottom_valid; uint8_t dist_bottom_sensor_bitfield; float eph; float epv; float evh; float evv; float vxy_max; float vz_max; float hagl_min; float hagl_max; } px4_msgs__msg__VehicleLocalPosition; // Struct for a sequence of px4_msgs__msg__VehicleLocalPosition. typedef struct px4_msgs__msg__VehicleLocalPosition__Sequence { px4_msgs__msg__VehicleLocalPosition * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__VehicleLocalPosition__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/gps_dump__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/GpsDump.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/gps_dump__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void GpsDump_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::GpsDump(_init); } void GpsDump_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::GpsDump *>(message_memory); typed_message->~GpsDump(); } size_t size_function__GpsDump__data(const void * untyped_member) { (void)untyped_member; return 79; } const void * get_const_function__GpsDump__data(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint8_t, 79> *>(untyped_member); return &member[index]; } void * get_function__GpsDump__data(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint8_t, 79> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember GpsDump_message_member_array[4] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::GpsDump, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "instance", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::GpsDump, instance), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "len", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::GpsDump, len), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "data", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 79, // array size false, // is upper bound offsetof(px4_msgs::msg::GpsDump, data), // bytes offset in struct nullptr, // default value size_function__GpsDump__data, // size() function pointer get_const_function__GpsDump__data, // get_const(index) function pointer get_function__GpsDump__data, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers GpsDump_message_members = { "px4_msgs::msg", // message namespace "GpsDump", // message name 4, // number of fields sizeof(px4_msgs::msg::GpsDump), GpsDump_message_member_array, // message members GpsDump_init_function, // function to initialize message memory (memory has to be allocated) GpsDump_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t GpsDump_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &GpsDump_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::GpsDump>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::GpsDump_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, GpsDump)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::GpsDump_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/position_setpoint__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/PositionSetpoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__POSITION_SETPOINT__STRUCT_H_ #define PX4_MSGS__MSG__POSITION_SETPOINT__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'SETPOINT_TYPE_POSITION'. enum { px4_msgs__msg__PositionSetpoint__SETPOINT_TYPE_POSITION = 0 }; /// Constant 'SETPOINT_TYPE_VELOCITY'. enum { px4_msgs__msg__PositionSetpoint__SETPOINT_TYPE_VELOCITY = 1 }; /// Constant 'SETPOINT_TYPE_LOITER'. enum { px4_msgs__msg__PositionSetpoint__SETPOINT_TYPE_LOITER = 2 }; /// Constant 'SETPOINT_TYPE_TAKEOFF'. enum { px4_msgs__msg__PositionSetpoint__SETPOINT_TYPE_TAKEOFF = 3 }; /// Constant 'SETPOINT_TYPE_LAND'. enum { px4_msgs__msg__PositionSetpoint__SETPOINT_TYPE_LAND = 4 }; /// Constant 'SETPOINT_TYPE_IDLE'. enum { px4_msgs__msg__PositionSetpoint__SETPOINT_TYPE_IDLE = 5 }; /// Constant 'SETPOINT_TYPE_FOLLOW_TARGET'. enum { px4_msgs__msg__PositionSetpoint__SETPOINT_TYPE_FOLLOW_TARGET = 6 }; /// Constant 'VELOCITY_FRAME_LOCAL_NED'. enum { px4_msgs__msg__PositionSetpoint__VELOCITY_FRAME_LOCAL_NED = 1 }; /// Constant 'VELOCITY_FRAME_BODY_NED'. enum { px4_msgs__msg__PositionSetpoint__VELOCITY_FRAME_BODY_NED = 8 }; // Struct defined in msg/PositionSetpoint in the package px4_msgs. typedef struct px4_msgs__msg__PositionSetpoint { uint64_t timestamp; bool valid; uint8_t type; float vx; float vy; float vz; bool velocity_valid; uint8_t velocity_frame; bool alt_valid; double lat; double lon; float alt; float yaw; bool yaw_valid; float yawspeed; bool yawspeed_valid; int8_t landing_gear; float loiter_radius; int8_t loiter_direction; float acceptance_radius; float cruising_speed; float cruising_throttle; bool disable_weather_vane; } px4_msgs__msg__PositionSetpoint; // Struct for a sequence of px4_msgs__msg__PositionSetpoint. typedef struct px4_msgs__msg__PositionSetpoint__Sequence { px4_msgs__msg__PositionSetpoint * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__PositionSetpoint__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__POSITION_SETPOINT__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/esc_status__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/EscStatus.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/esc_status__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/esc_status__functions.h" #include "px4_msgs/msg/esc_status__struct.h" // Include directives for member types // Member `esc` #include "px4_msgs/msg/esc_report.h" // Member `esc` #include "px4_msgs/msg/esc_report__rosidl_typesupport_introspection_c.h" #ifdef __cplusplus extern "C" { #endif void EscStatus__rosidl_typesupport_introspection_c__EscStatus_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__EscStatus__init(message_memory); } void EscStatus__rosidl_typesupport_introspection_c__EscStatus_fini_function(void * message_memory) { px4_msgs__msg__EscStatus__fini(message_memory); } size_t EscStatus__rosidl_typesupport_introspection_c__size_function__EscReport__esc( const void * untyped_member) { (void)untyped_member; return 8; } const void * EscStatus__rosidl_typesupport_introspection_c__get_const_function__EscReport__esc( const void * untyped_member, size_t index) { const px4_msgs__msg__EscReport ** member = (const px4_msgs__msg__EscReport **)(untyped_member); return &(*member)[index]; } void * EscStatus__rosidl_typesupport_introspection_c__get_function__EscReport__esc( void * untyped_member, size_t index) { px4_msgs__msg__EscReport ** member = (px4_msgs__msg__EscReport **)(untyped_member); return &(*member)[index]; } static rosidl_typesupport_introspection_c__MessageMember EscStatus__rosidl_typesupport_introspection_c__EscStatus_message_member_array[7] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EscStatus, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "counter", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EscStatus, counter), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "esc_count", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EscStatus, esc_count), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "esc_connectiontype", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EscStatus, esc_connectiontype), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "esc_online_flags", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EscStatus, esc_online_flags), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "esc_armed_flags", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EscStatus, esc_armed_flags), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "esc", // name rosidl_typesupport_introspection_c__ROS_TYPE_MESSAGE, // type 0, // upper bound of string NULL, // members of sub message (initialized later) true, // is array 8, // array size false, // is upper bound offsetof(px4_msgs__msg__EscStatus, esc), // bytes offset in struct NULL, // default value EscStatus__rosidl_typesupport_introspection_c__size_function__EscReport__esc, // size() function pointer EscStatus__rosidl_typesupport_introspection_c__get_const_function__EscReport__esc, // get_const(index) function pointer EscStatus__rosidl_typesupport_introspection_c__get_function__EscReport__esc, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers EscStatus__rosidl_typesupport_introspection_c__EscStatus_message_members = { "px4_msgs__msg", // message namespace "EscStatus", // message name 7, // number of fields sizeof(px4_msgs__msg__EscStatus), EscStatus__rosidl_typesupport_introspection_c__EscStatus_message_member_array, // message members EscStatus__rosidl_typesupport_introspection_c__EscStatus_init_function, // function to initialize message memory (memory has to be allocated) EscStatus__rosidl_typesupport_introspection_c__EscStatus_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t EscStatus__rosidl_typesupport_introspection_c__EscStatus_message_type_support_handle = { 0, &EscStatus__rosidl_typesupport_introspection_c__EscStatus_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, EscStatus)() { EscStatus__rosidl_typesupport_introspection_c__EscStatus_message_member_array[6].members_ = ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, EscReport)(); if (!EscStatus__rosidl_typesupport_introspection_c__EscStatus_message_type_support_handle.typesupport_identifier) { EscStatus__rosidl_typesupport_introspection_c__EscStatus_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &EscStatus__rosidl_typesupport_introspection_c__EscStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/vehicle_command__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleCommand.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_command__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/vehicle_command__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::VehicleCommand & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: param1 cdr << ros_message.param1; // Member: param2 cdr << ros_message.param2; // Member: param3 cdr << ros_message.param3; // Member: param4 cdr << ros_message.param4; // Member: param5 cdr << ros_message.param5; // Member: param6 cdr << ros_message.param6; // Member: param7 cdr << ros_message.param7; // Member: command cdr << ros_message.command; // Member: target_system cdr << ros_message.target_system; // Member: target_component cdr << ros_message.target_component; // Member: source_system cdr << ros_message.source_system; // Member: source_component cdr << ros_message.source_component; // Member: confirmation cdr << ros_message.confirmation; // Member: from_external cdr << (ros_message.from_external ? true : false); return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::VehicleCommand & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: param1 cdr >> ros_message.param1; // Member: param2 cdr >> ros_message.param2; // Member: param3 cdr >> ros_message.param3; // Member: param4 cdr >> ros_message.param4; // Member: param5 cdr >> ros_message.param5; // Member: param6 cdr >> ros_message.param6; // Member: param7 cdr >> ros_message.param7; // Member: command cdr >> ros_message.command; // Member: target_system cdr >> ros_message.target_system; // Member: target_component cdr >> ros_message.target_component; // Member: source_system cdr >> ros_message.source_system; // Member: source_component cdr >> ros_message.source_component; // Member: confirmation cdr >> ros_message.confirmation; // Member: from_external { uint8_t tmp; cdr >> tmp; ros_message.from_external = tmp ? true : false; } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::VehicleCommand & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: param1 { size_t item_size = sizeof(ros_message.param1); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: param2 { size_t item_size = sizeof(ros_message.param2); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: param3 { size_t item_size = sizeof(ros_message.param3); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: param4 { size_t item_size = sizeof(ros_message.param4); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: param5 { size_t item_size = sizeof(ros_message.param5); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: param6 { size_t item_size = sizeof(ros_message.param6); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: param7 { size_t item_size = sizeof(ros_message.param7); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: command { size_t item_size = sizeof(ros_message.command); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: target_system { size_t item_size = sizeof(ros_message.target_system); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: target_component { size_t item_size = sizeof(ros_message.target_component); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: source_system { size_t item_size = sizeof(ros_message.source_system); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: source_component { size_t item_size = sizeof(ros_message.source_component); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: confirmation { size_t item_size = sizeof(ros_message.confirmation); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: from_external { size_t item_size = sizeof(ros_message.from_external); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_VehicleCommand( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: param1 { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: param2 { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: param3 { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: param4 { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: param5 { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: param6 { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: param7 { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: command { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: target_system { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: target_component { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: source_system { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: source_component { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: confirmation { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: from_external { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _VehicleCommand__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::VehicleCommand *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _VehicleCommand__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::VehicleCommand *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _VehicleCommand__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::VehicleCommand *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _VehicleCommand__max_serialized_size(bool & full_bounded) { return max_serialized_size_VehicleCommand(full_bounded, 0); } static message_type_support_callbacks_t _VehicleCommand__callbacks = { "px4_msgs::msg", "VehicleCommand", _VehicleCommand__cdr_serialize, _VehicleCommand__cdr_deserialize, _VehicleCommand__get_serialized_size, _VehicleCommand__max_serialized_size }; static rosidl_message_type_support_t _VehicleCommand__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_VehicleCommand__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleCommand>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_VehicleCommand__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, VehicleCommand)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_VehicleCommand__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/tune_control__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/TuneControl.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/tune_control__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/tune_control__struct.h" #include "px4_msgs/msg/tune_control__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _TuneControl__ros_msg_type = px4_msgs__msg__TuneControl; static bool _TuneControl__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _TuneControl__ros_msg_type * ros_message = static_cast<const _TuneControl__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: tune_id { cdr << ros_message->tune_id; } // Field name: tune_override { cdr << (ros_message->tune_override ? true : false); } // Field name: frequency { cdr << ros_message->frequency; } // Field name: duration { cdr << ros_message->duration; } // Field name: silence { cdr << ros_message->silence; } // Field name: volume { cdr << ros_message->volume; } return true; } static bool _TuneControl__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _TuneControl__ros_msg_type * ros_message = static_cast<_TuneControl__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: tune_id { cdr >> ros_message->tune_id; } // Field name: tune_override { uint8_t tmp; cdr >> tmp; ros_message->tune_override = tmp ? true : false; } // Field name: frequency { cdr >> ros_message->frequency; } // Field name: duration { cdr >> ros_message->duration; } // Field name: silence { cdr >> ros_message->silence; } // Field name: volume { cdr >> ros_message->volume; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__TuneControl( const void * untyped_ros_message, size_t current_alignment) { const _TuneControl__ros_msg_type * ros_message = static_cast<const _TuneControl__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name tune_id { size_t item_size = sizeof(ros_message->tune_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name tune_override { size_t item_size = sizeof(ros_message->tune_override); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name frequency { size_t item_size = sizeof(ros_message->frequency); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name duration { size_t item_size = sizeof(ros_message->duration); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name silence { size_t item_size = sizeof(ros_message->silence); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name volume { size_t item_size = sizeof(ros_message->volume); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _TuneControl__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__TuneControl( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__TuneControl( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: tune_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: tune_override { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: frequency { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: duration { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: silence { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: volume { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _TuneControl__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__TuneControl( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_TuneControl = { "px4_msgs::msg", "TuneControl", _TuneControl__cdr_serialize, _TuneControl__cdr_deserialize, _TuneControl__get_serialized_size, _TuneControl__max_serialized_size }; static rosidl_message_type_support_t _TuneControl__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_TuneControl, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, TuneControl)() { return &_TuneControl__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_landing_status__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/PositionControllerLandingStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/position_controller_landing_status__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/position_controller_landing_status__struct.h" #include "px4_msgs/msg/position_controller_landing_status__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _PositionControllerLandingStatus__ros_msg_type = px4_msgs__msg__PositionControllerLandingStatus; static bool _PositionControllerLandingStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _PositionControllerLandingStatus__ros_msg_type * ros_message = static_cast<const _PositionControllerLandingStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: horizontal_slope_displacement { cdr << ros_message->horizontal_slope_displacement; } // Field name: slope_angle_rad { cdr << ros_message->slope_angle_rad; } // Field name: flare_length { cdr << ros_message->flare_length; } // Field name: abort_landing { cdr << (ros_message->abort_landing ? true : false); } return true; } static bool _PositionControllerLandingStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _PositionControllerLandingStatus__ros_msg_type * ros_message = static_cast<_PositionControllerLandingStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: horizontal_slope_displacement { cdr >> ros_message->horizontal_slope_displacement; } // Field name: slope_angle_rad { cdr >> ros_message->slope_angle_rad; } // Field name: flare_length { cdr >> ros_message->flare_length; } // Field name: abort_landing { uint8_t tmp; cdr >> tmp; ros_message->abort_landing = tmp ? true : false; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__PositionControllerLandingStatus( const void * untyped_ros_message, size_t current_alignment) { const _PositionControllerLandingStatus__ros_msg_type * ros_message = static_cast<const _PositionControllerLandingStatus__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name horizontal_slope_displacement { size_t item_size = sizeof(ros_message->horizontal_slope_displacement); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name slope_angle_rad { size_t item_size = sizeof(ros_message->slope_angle_rad); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name flare_length { size_t item_size = sizeof(ros_message->flare_length); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name abort_landing { size_t item_size = sizeof(ros_message->abort_landing); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _PositionControllerLandingStatus__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__PositionControllerLandingStatus( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__PositionControllerLandingStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: horizontal_slope_displacement { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: slope_angle_rad { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: flare_length { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: abort_landing { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _PositionControllerLandingStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__PositionControllerLandingStatus( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_PositionControllerLandingStatus = { "px4_msgs::msg", "PositionControllerLandingStatus", _PositionControllerLandingStatus__cdr_serialize, _PositionControllerLandingStatus__cdr_deserialize, _PositionControllerLandingStatus__get_serialized_size, _PositionControllerLandingStatus__max_serialized_size }; static rosidl_message_type_support_t _PositionControllerLandingStatus__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_PositionControllerLandingStatus, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, PositionControllerLandingStatus)() { return &_PositionControllerLandingStatus__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_innovations__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/EstimatorInnovations.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/estimator_innovations__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/estimator_innovations__struct.h" #include "px4_msgs/msg/estimator_innovations__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _EstimatorInnovations__ros_msg_type = px4_msgs__msg__EstimatorInnovations; static bool _EstimatorInnovations__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _EstimatorInnovations__ros_msg_type * ros_message = static_cast<const _EstimatorInnovations__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: timestamp_sample { cdr << ros_message->timestamp_sample; } // Field name: gps_hvel { size_t size = 2; auto array_ptr = ros_message->gps_hvel; cdr.serializeArray(array_ptr, size); } // Field name: gps_vvel { cdr << ros_message->gps_vvel; } // Field name: gps_hpos { size_t size = 2; auto array_ptr = ros_message->gps_hpos; cdr.serializeArray(array_ptr, size); } // Field name: gps_vpos { cdr << ros_message->gps_vpos; } // Field name: ev_hvel { size_t size = 2; auto array_ptr = ros_message->ev_hvel; cdr.serializeArray(array_ptr, size); } // Field name: ev_vvel { cdr << ros_message->ev_vvel; } // Field name: ev_hpos { size_t size = 2; auto array_ptr = ros_message->ev_hpos; cdr.serializeArray(array_ptr, size); } // Field name: ev_vpos { cdr << ros_message->ev_vpos; } // Field name: rng_vpos { cdr << ros_message->rng_vpos; } // Field name: baro_vpos { cdr << ros_message->baro_vpos; } // Field name: aux_hvel { size_t size = 2; auto array_ptr = ros_message->aux_hvel; cdr.serializeArray(array_ptr, size); } // Field name: aux_vvel { cdr << ros_message->aux_vvel; } // Field name: flow { size_t size = 2; auto array_ptr = ros_message->flow; cdr.serializeArray(array_ptr, size); } // Field name: heading { cdr << ros_message->heading; } // Field name: mag_field { size_t size = 3; auto array_ptr = ros_message->mag_field; cdr.serializeArray(array_ptr, size); } // Field name: drag { size_t size = 2; auto array_ptr = ros_message->drag; cdr.serializeArray(array_ptr, size); } // Field name: airspeed { cdr << ros_message->airspeed; } // Field name: beta { cdr << ros_message->beta; } // Field name: hagl { cdr << ros_message->hagl; } return true; } static bool _EstimatorInnovations__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _EstimatorInnovations__ros_msg_type * ros_message = static_cast<_EstimatorInnovations__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: timestamp_sample { cdr >> ros_message->timestamp_sample; } // Field name: gps_hvel { size_t size = 2; auto array_ptr = ros_message->gps_hvel; cdr.deserializeArray(array_ptr, size); } // Field name: gps_vvel { cdr >> ros_message->gps_vvel; } // Field name: gps_hpos { size_t size = 2; auto array_ptr = ros_message->gps_hpos; cdr.deserializeArray(array_ptr, size); } // Field name: gps_vpos { cdr >> ros_message->gps_vpos; } // Field name: ev_hvel { size_t size = 2; auto array_ptr = ros_message->ev_hvel; cdr.deserializeArray(array_ptr, size); } // Field name: ev_vvel { cdr >> ros_message->ev_vvel; } // Field name: ev_hpos { size_t size = 2; auto array_ptr = ros_message->ev_hpos; cdr.deserializeArray(array_ptr, size); } // Field name: ev_vpos { cdr >> ros_message->ev_vpos; } // Field name: rng_vpos { cdr >> ros_message->rng_vpos; } // Field name: baro_vpos { cdr >> ros_message->baro_vpos; } // Field name: aux_hvel { size_t size = 2; auto array_ptr = ros_message->aux_hvel; cdr.deserializeArray(array_ptr, size); } // Field name: aux_vvel { cdr >> ros_message->aux_vvel; } // Field name: flow { size_t size = 2; auto array_ptr = ros_message->flow; cdr.deserializeArray(array_ptr, size); } // Field name: heading { cdr >> ros_message->heading; } // Field name: mag_field { size_t size = 3; auto array_ptr = ros_message->mag_field; cdr.deserializeArray(array_ptr, size); } // Field name: drag { size_t size = 2; auto array_ptr = ros_message->drag; cdr.deserializeArray(array_ptr, size); } // Field name: airspeed { cdr >> ros_message->airspeed; } // Field name: beta { cdr >> ros_message->beta; } // Field name: hagl { cdr >> ros_message->hagl; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__EstimatorInnovations( const void * untyped_ros_message, size_t current_alignment) { const _EstimatorInnovations__ros_msg_type * ros_message = static_cast<const _EstimatorInnovations__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name timestamp_sample { size_t item_size = sizeof(ros_message->timestamp_sample); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gps_hvel { size_t array_size = 2; auto array_ptr = ros_message->gps_hvel; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gps_vvel { size_t item_size = sizeof(ros_message->gps_vvel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gps_hpos { size_t array_size = 2; auto array_ptr = ros_message->gps_hpos; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gps_vpos { size_t item_size = sizeof(ros_message->gps_vpos); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name ev_hvel { size_t array_size = 2; auto array_ptr = ros_message->ev_hvel; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name ev_vvel { size_t item_size = sizeof(ros_message->ev_vvel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name ev_hpos { size_t array_size = 2; auto array_ptr = ros_message->ev_hpos; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name ev_vpos { size_t item_size = sizeof(ros_message->ev_vpos); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rng_vpos { size_t item_size = sizeof(ros_message->rng_vpos); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name baro_vpos { size_t item_size = sizeof(ros_message->baro_vpos); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name aux_hvel { size_t array_size = 2; auto array_ptr = ros_message->aux_hvel; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name aux_vvel { size_t item_size = sizeof(ros_message->aux_vvel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name flow { size_t array_size = 2; auto array_ptr = ros_message->flow; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name heading { size_t item_size = sizeof(ros_message->heading); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name mag_field { size_t array_size = 3; auto array_ptr = ros_message->mag_field; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name drag { size_t array_size = 2; auto array_ptr = ros_message->drag; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name airspeed { size_t item_size = sizeof(ros_message->airspeed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name beta { size_t item_size = sizeof(ros_message->beta); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name hagl { size_t item_size = sizeof(ros_message->hagl); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _EstimatorInnovations__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__EstimatorInnovations( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__EstimatorInnovations( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: timestamp_sample { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: gps_hvel { size_t array_size = 2; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gps_vvel { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gps_hpos { size_t array_size = 2; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gps_vpos { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: ev_hvel { size_t array_size = 2; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: ev_vvel { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: ev_hpos { size_t array_size = 2; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: ev_vpos { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: rng_vpos { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: baro_vpos { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: aux_hvel { size_t array_size = 2; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: aux_vvel { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: flow { size_t array_size = 2; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: heading { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: mag_field { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: drag { size_t array_size = 2; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: airspeed { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: beta { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: hagl { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _EstimatorInnovations__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__EstimatorInnovations( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_EstimatorInnovations = { "px4_msgs::msg", "EstimatorInnovations", _EstimatorInnovations__cdr_serialize, _EstimatorInnovations__cdr_deserialize, _EstimatorInnovations__get_serialized_size, _EstimatorInnovations__max_serialized_size }; static rosidl_message_type_support_t _EstimatorInnovations__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_EstimatorInnovations, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, EstimatorInnovations)() { return &_EstimatorInnovations__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/parameter_update__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/ParameterUpdate.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/parameter_update__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/parameter_update__functions.h" #include "px4_msgs/msg/parameter_update__struct.h" #ifdef __cplusplus extern "C" { #endif void ParameterUpdate__rosidl_typesupport_introspection_c__ParameterUpdate_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__ParameterUpdate__init(message_memory); } void ParameterUpdate__rosidl_typesupport_introspection_c__ParameterUpdate_fini_function(void * message_memory) { px4_msgs__msg__ParameterUpdate__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember ParameterUpdate__rosidl_typesupport_introspection_c__ParameterUpdate_message_member_array[9] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ParameterUpdate, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "instance", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ParameterUpdate, instance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "get_count", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ParameterUpdate, get_count), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "set_count", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ParameterUpdate, set_count), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "find_count", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ParameterUpdate, find_count), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "export_count", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ParameterUpdate, export_count), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "active", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ParameterUpdate, active), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "changed", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ParameterUpdate, changed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "custom_default", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ParameterUpdate, custom_default), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers ParameterUpdate__rosidl_typesupport_introspection_c__ParameterUpdate_message_members = { "px4_msgs__msg", // message namespace "ParameterUpdate", // message name 9, // number of fields sizeof(px4_msgs__msg__ParameterUpdate), ParameterUpdate__rosidl_typesupport_introspection_c__ParameterUpdate_message_member_array, // message members ParameterUpdate__rosidl_typesupport_introspection_c__ParameterUpdate_init_function, // function to initialize message memory (memory has to be allocated) ParameterUpdate__rosidl_typesupport_introspection_c__ParameterUpdate_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t ParameterUpdate__rosidl_typesupport_introspection_c__ParameterUpdate_message_type_support_handle = { 0, &ParameterUpdate__rosidl_typesupport_introspection_c__ParameterUpdate_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, ParameterUpdate)() { if (!ParameterUpdate__rosidl_typesupport_introspection_c__ParameterUpdate_message_type_support_handle.typesupport_identifier) { ParameterUpdate__rosidl_typesupport_introspection_c__ParameterUpdate_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &ParameterUpdate__rosidl_typesupport_introspection_c__ParameterUpdate_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/iridiumsbd_status__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/IridiumsbdStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/iridiumsbd_status__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/iridiumsbd_status__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::IridiumsbdStatus & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: last_heartbeat cdr << ros_message.last_heartbeat; // Member: tx_buf_write_index cdr << ros_message.tx_buf_write_index; // Member: rx_buf_read_index cdr << ros_message.rx_buf_read_index; // Member: rx_buf_end_index cdr << ros_message.rx_buf_end_index; // Member: failed_sbd_sessions cdr << ros_message.failed_sbd_sessions; // Member: successful_sbd_sessions cdr << ros_message.successful_sbd_sessions; // Member: num_tx_buf_reset cdr << ros_message.num_tx_buf_reset; // Member: signal_quality cdr << ros_message.signal_quality; // Member: state cdr << ros_message.state; // Member: ring_pending cdr << (ros_message.ring_pending ? true : false); // Member: tx_buf_write_pending cdr << (ros_message.tx_buf_write_pending ? true : false); // Member: tx_session_pending cdr << (ros_message.tx_session_pending ? true : false); // Member: rx_read_pending cdr << (ros_message.rx_read_pending ? true : false); // Member: rx_session_pending cdr << (ros_message.rx_session_pending ? true : false); return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::IridiumsbdStatus & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: last_heartbeat cdr >> ros_message.last_heartbeat; // Member: tx_buf_write_index cdr >> ros_message.tx_buf_write_index; // Member: rx_buf_read_index cdr >> ros_message.rx_buf_read_index; // Member: rx_buf_end_index cdr >> ros_message.rx_buf_end_index; // Member: failed_sbd_sessions cdr >> ros_message.failed_sbd_sessions; // Member: successful_sbd_sessions cdr >> ros_message.successful_sbd_sessions; // Member: num_tx_buf_reset cdr >> ros_message.num_tx_buf_reset; // Member: signal_quality cdr >> ros_message.signal_quality; // Member: state cdr >> ros_message.state; // Member: ring_pending { uint8_t tmp; cdr >> tmp; ros_message.ring_pending = tmp ? true : false; } // Member: tx_buf_write_pending { uint8_t tmp; cdr >> tmp; ros_message.tx_buf_write_pending = tmp ? true : false; } // Member: tx_session_pending { uint8_t tmp; cdr >> tmp; ros_message.tx_session_pending = tmp ? true : false; } // Member: rx_read_pending { uint8_t tmp; cdr >> tmp; ros_message.rx_read_pending = tmp ? true : false; } // Member: rx_session_pending { uint8_t tmp; cdr >> tmp; ros_message.rx_session_pending = tmp ? true : false; } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::IridiumsbdStatus & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: last_heartbeat { size_t item_size = sizeof(ros_message.last_heartbeat); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: tx_buf_write_index { size_t item_size = sizeof(ros_message.tx_buf_write_index); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rx_buf_read_index { size_t item_size = sizeof(ros_message.rx_buf_read_index); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rx_buf_end_index { size_t item_size = sizeof(ros_message.rx_buf_end_index); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: failed_sbd_sessions { size_t item_size = sizeof(ros_message.failed_sbd_sessions); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: successful_sbd_sessions { size_t item_size = sizeof(ros_message.successful_sbd_sessions); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: num_tx_buf_reset { size_t item_size = sizeof(ros_message.num_tx_buf_reset); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: signal_quality { size_t item_size = sizeof(ros_message.signal_quality); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: state { size_t item_size = sizeof(ros_message.state); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: ring_pending { size_t item_size = sizeof(ros_message.ring_pending); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: tx_buf_write_pending { size_t item_size = sizeof(ros_message.tx_buf_write_pending); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: tx_session_pending { size_t item_size = sizeof(ros_message.tx_session_pending); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rx_read_pending { size_t item_size = sizeof(ros_message.rx_read_pending); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rx_session_pending { size_t item_size = sizeof(ros_message.rx_session_pending); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_IridiumsbdStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: last_heartbeat { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: tx_buf_write_index { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: rx_buf_read_index { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: rx_buf_end_index { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: failed_sbd_sessions { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: successful_sbd_sessions { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: num_tx_buf_reset { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: signal_quality { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: state { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: ring_pending { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: tx_buf_write_pending { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: tx_session_pending { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: rx_read_pending { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: rx_session_pending { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _IridiumsbdStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::IridiumsbdStatus *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _IridiumsbdStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::IridiumsbdStatus *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _IridiumsbdStatus__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::IridiumsbdStatus *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _IridiumsbdStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_IridiumsbdStatus(full_bounded, 0); } static message_type_support_callbacks_t _IridiumsbdStatus__callbacks = { "px4_msgs::msg", "IridiumsbdStatus", _IridiumsbdStatus__cdr_serialize, _IridiumsbdStatus__cdr_deserialize, _IridiumsbdStatus__get_serialized_size, _IridiumsbdStatus__max_serialized_size }; static rosidl_message_type_support_t _IridiumsbdStatus__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_IridiumsbdStatus__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::IridiumsbdStatus>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_IridiumsbdStatus__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, IridiumsbdStatus)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_IridiumsbdStatus__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/gimbal_device_attitude_status__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/GimbalDeviceAttitudeStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GIMBAL_DEVICE_ATTITUDE_STATUS__STRUCT_H_ #define PX4_MSGS__MSG__GIMBAL_DEVICE_ATTITUDE_STATUS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'DEVICE_FLAGS_RETRACT'. enum { px4_msgs__msg__GimbalDeviceAttitudeStatus__DEVICE_FLAGS_RETRACT = 1 }; /// Constant 'DEVICE_FLAGS_NEUTRAL'. enum { px4_msgs__msg__GimbalDeviceAttitudeStatus__DEVICE_FLAGS_NEUTRAL = 2 }; /// Constant 'DEVICE_FLAGS_ROLL_LOCK'. enum { px4_msgs__msg__GimbalDeviceAttitudeStatus__DEVICE_FLAGS_ROLL_LOCK = 4 }; /// Constant 'DEVICE_FLAGS_PITCH_LOCK'. enum { px4_msgs__msg__GimbalDeviceAttitudeStatus__DEVICE_FLAGS_PITCH_LOCK = 8 }; /// Constant 'DEVICE_FLAGS_YAW_LOCK'. enum { px4_msgs__msg__GimbalDeviceAttitudeStatus__DEVICE_FLAGS_YAW_LOCK = 16 }; // Struct defined in msg/GimbalDeviceAttitudeStatus in the package px4_msgs. typedef struct px4_msgs__msg__GimbalDeviceAttitudeStatus { uint64_t timestamp; uint8_t target_system; uint8_t target_component; uint16_t device_flags; float q[4]; float angular_velocity_x; float angular_velocity_y; float angular_velocity_z; uint32_t failure_flags; } px4_msgs__msg__GimbalDeviceAttitudeStatus; // Struct for a sequence of px4_msgs__msg__GimbalDeviceAttitudeStatus. typedef struct px4_msgs__msg__GimbalDeviceAttitudeStatus__Sequence { px4_msgs__msg__GimbalDeviceAttitudeStatus * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__GimbalDeviceAttitudeStatus__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__GIMBAL_DEVICE_ATTITUDE_STATUS__STRUCT_H_ <file_sep>/build/offboard_ibqr/ament_cmake_core/package.cmake set(_AMENT_PACKAGE_NAME "offboard_ibqr") set(offboard_ibqr_VERSION "0.1.0") set(offboard_ibqr_MAINTAINER "<NAME> <<EMAIL>>") set(offboard_ibqr_BUILD_DEPENDS "eigen" "fastrtps" "fastcdr" "ros_environment" "builtin_interfaces" "rclcpp" "px4_msgs" "geometry_msgs" "trajectory_msgs" "launch" "launch_testing" "launch_testing_ros") set(offboard_ibqr_BUILDTOOL_DEPENDS "ament_cmake" "eigen3_cmake_module") set(offboard_ibqr_BUILD_EXPORT_DEPENDS "eigen" "builtin_interfaces" "rclcpp" "px4_msgs" "geometry_msgs" "trajectory_msgs" "launch" "launch_testing" "launch_testing_ros") set(offboard_ibqr_BUILDTOOL_EXPORT_DEPENDS "eigen3_cmake_module") set(offboard_ibqr_EXEC_DEPENDS "rosidl_default_runtime" "builtin_interfaces" "rclcpp" "px4_msgs" "geometry_msgs" "trajectory_msgs" "launch" "launch_testing" "launch_testing_ros") set(offboard_ibqr_TEST_DEPENDS ) set(offboard_ibqr_GROUP_DEPENDS ) set(offboard_ibqr_MEMBER_OF_GROUPS ) set(offboard_ibqr_DEPRECATED "") set(offboard_ibqr_EXPORT_TAGS) list(APPEND offboard_ibqr_EXPORT_TAGS "<build_type>ament_cmake</build_type>") <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_heater_status_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/HeaterStatus.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/heater_status__struct.h" #include "px4_msgs/msg/heater_status__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__heater_status__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[41]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._heater_status.HeaterStatus", full_classname_dest, 40) == 0); } px4_msgs__msg__HeaterStatus * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // device_id PyObject * field = PyObject_GetAttrString(_pymsg, "device_id"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->device_id = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // heater_on PyObject * field = PyObject_GetAttrString(_pymsg, "heater_on"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->heater_on = (Py_True == field); Py_DECREF(field); } { // temperature_target_met PyObject * field = PyObject_GetAttrString(_pymsg, "temperature_target_met"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->temperature_target_met = (Py_True == field); Py_DECREF(field); } { // temperature_sensor PyObject * field = PyObject_GetAttrString(_pymsg, "temperature_sensor"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->temperature_sensor = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // temperature_target PyObject * field = PyObject_GetAttrString(_pymsg, "temperature_target"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->temperature_target = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // controller_period_usec PyObject * field = PyObject_GetAttrString(_pymsg, "controller_period_usec"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->controller_period_usec = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // controller_time_on_usec PyObject * field = PyObject_GetAttrString(_pymsg, "controller_time_on_usec"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->controller_time_on_usec = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // proportional_value PyObject * field = PyObject_GetAttrString(_pymsg, "proportional_value"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->proportional_value = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // integrator_value PyObject * field = PyObject_GetAttrString(_pymsg, "integrator_value"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->integrator_value = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // feed_forward_value PyObject * field = PyObject_GetAttrString(_pymsg, "feed_forward_value"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->feed_forward_value = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // mode PyObject * field = PyObject_GetAttrString(_pymsg, "mode"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->mode = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__heater_status__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of HeaterStatus */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._heater_status"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "HeaterStatus"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__HeaterStatus * ros_message = (px4_msgs__msg__HeaterStatus *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // device_id PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->device_id); { int rc = PyObject_SetAttrString(_pymessage, "device_id", field); Py_DECREF(field); if (rc) { return NULL; } } } { // heater_on PyObject * field = NULL; field = PyBool_FromLong(ros_message->heater_on ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "heater_on", field); Py_DECREF(field); if (rc) { return NULL; } } } { // temperature_target_met PyObject * field = NULL; field = PyBool_FromLong(ros_message->temperature_target_met ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "temperature_target_met", field); Py_DECREF(field); if (rc) { return NULL; } } } { // temperature_sensor PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->temperature_sensor); { int rc = PyObject_SetAttrString(_pymessage, "temperature_sensor", field); Py_DECREF(field); if (rc) { return NULL; } } } { // temperature_target PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->temperature_target); { int rc = PyObject_SetAttrString(_pymessage, "temperature_target", field); Py_DECREF(field); if (rc) { return NULL; } } } { // controller_period_usec PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->controller_period_usec); { int rc = PyObject_SetAttrString(_pymessage, "controller_period_usec", field); Py_DECREF(field); if (rc) { return NULL; } } } { // controller_time_on_usec PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->controller_time_on_usec); { int rc = PyObject_SetAttrString(_pymessage, "controller_time_on_usec", field); Py_DECREF(field); if (rc) { return NULL; } } } { // proportional_value PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->proportional_value); { int rc = PyObject_SetAttrString(_pymessage, "proportional_value", field); Py_DECREF(field); if (rc) { return NULL; } } } { // integrator_value PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->integrator_value); { int rc = PyObject_SetAttrString(_pymessage, "integrator_value", field); Py_DECREF(field); if (rc) { return NULL; } } } { // feed_forward_value PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->feed_forward_value); { int rc = PyObject_SetAttrString(_pymessage, "feed_forward_value", field); Py_DECREF(field); if (rc) { return NULL; } } } { // mode PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->mode); { int rc = PyObject_SetAttrString(_pymessage, "mode", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/home_position__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/HomePosition.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__HOME_POSITION__STRUCT_H_ #define PX4_MSGS__MSG__HOME_POSITION__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/HomePosition in the package px4_msgs. typedef struct px4_msgs__msg__HomePosition { uint64_t timestamp; double lat; double lon; float alt; float x; float y; float z; float yaw; bool valid_alt; bool valid_hpos; bool valid_lpos; bool manual_home; } px4_msgs__msg__HomePosition; // Struct for a sequence of px4_msgs__msg__HomePosition. typedef struct px4_msgs__msg__HomePosition__Sequence { px4_msgs__msg__HomePosition * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__HomePosition__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__HOME_POSITION__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/gimbal_device_set_attitude.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GIMBAL_DEVICE_SET_ATTITUDE_HPP_ #define PX4_MSGS__MSG__GIMBAL_DEVICE_SET_ATTITUDE_HPP_ #include "px4_msgs/msg/gimbal_device_set_attitude__struct.hpp" #include "px4_msgs/msg/gimbal_device_set_attitude__traits.hpp" #endif // PX4_MSGS__MSG__GIMBAL_DEVICE_SET_ATTITUDE_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensors_status_imu__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/SensorsStatusImu.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/sensors_status_imu__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void SensorsStatusImu_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::SensorsStatusImu(_init); } void SensorsStatusImu_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::SensorsStatusImu *>(message_memory); typed_message->~SensorsStatusImu(); } size_t size_function__SensorsStatusImu__accel_device_ids(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__SensorsStatusImu__accel_device_ids(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint32_t, 4> *>(untyped_member); return &member[index]; } void * get_function__SensorsStatusImu__accel_device_ids(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint32_t, 4> *>(untyped_member); return &member[index]; } size_t size_function__SensorsStatusImu__accel_inconsistency_m_s_s(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__SensorsStatusImu__accel_inconsistency_m_s_s(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 4> *>(untyped_member); return &member[index]; } void * get_function__SensorsStatusImu__accel_inconsistency_m_s_s(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 4> *>(untyped_member); return &member[index]; } size_t size_function__SensorsStatusImu__accel_healthy(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__SensorsStatusImu__accel_healthy(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<bool, 4> *>(untyped_member); return &member[index]; } void * get_function__SensorsStatusImu__accel_healthy(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<bool, 4> *>(untyped_member); return &member[index]; } size_t size_function__SensorsStatusImu__gyro_device_ids(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__SensorsStatusImu__gyro_device_ids(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint32_t, 4> *>(untyped_member); return &member[index]; } void * get_function__SensorsStatusImu__gyro_device_ids(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint32_t, 4> *>(untyped_member); return &member[index]; } size_t size_function__SensorsStatusImu__gyro_inconsistency_rad_s(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__SensorsStatusImu__gyro_inconsistency_rad_s(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 4> *>(untyped_member); return &member[index]; } void * get_function__SensorsStatusImu__gyro_inconsistency_rad_s(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 4> *>(untyped_member); return &member[index]; } size_t size_function__SensorsStatusImu__gyro_healthy(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__SensorsStatusImu__gyro_healthy(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<bool, 4> *>(untyped_member); return &member[index]; } void * get_function__SensorsStatusImu__gyro_healthy(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<bool, 4> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember SensorsStatusImu_message_member_array[9] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorsStatusImu, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "accel_device_id_primary", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorsStatusImu, accel_device_id_primary), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "accel_device_ids", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorsStatusImu, accel_device_ids), // bytes offset in struct nullptr, // default value size_function__SensorsStatusImu__accel_device_ids, // size() function pointer get_const_function__SensorsStatusImu__accel_device_ids, // get_const(index) function pointer get_function__SensorsStatusImu__accel_device_ids, // get(index) function pointer nullptr // resize(index) function pointer }, { "accel_inconsistency_m_s_s", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorsStatusImu, accel_inconsistency_m_s_s), // bytes offset in struct nullptr, // default value size_function__SensorsStatusImu__accel_inconsistency_m_s_s, // size() function pointer get_const_function__SensorsStatusImu__accel_inconsistency_m_s_s, // get_const(index) function pointer get_function__SensorsStatusImu__accel_inconsistency_m_s_s, // get(index) function pointer nullptr // resize(index) function pointer }, { "accel_healthy", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorsStatusImu, accel_healthy), // bytes offset in struct nullptr, // default value size_function__SensorsStatusImu__accel_healthy, // size() function pointer get_const_function__SensorsStatusImu__accel_healthy, // get_const(index) function pointer get_function__SensorsStatusImu__accel_healthy, // get(index) function pointer nullptr // resize(index) function pointer }, { "gyro_device_id_primary", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorsStatusImu, gyro_device_id_primary), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "gyro_device_ids", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorsStatusImu, gyro_device_ids), // bytes offset in struct nullptr, // default value size_function__SensorsStatusImu__gyro_device_ids, // size() function pointer get_const_function__SensorsStatusImu__gyro_device_ids, // get_const(index) function pointer get_function__SensorsStatusImu__gyro_device_ids, // get(index) function pointer nullptr // resize(index) function pointer }, { "gyro_inconsistency_rad_s", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorsStatusImu, gyro_inconsistency_rad_s), // bytes offset in struct nullptr, // default value size_function__SensorsStatusImu__gyro_inconsistency_rad_s, // size() function pointer get_const_function__SensorsStatusImu__gyro_inconsistency_rad_s, // get_const(index) function pointer get_function__SensorsStatusImu__gyro_inconsistency_rad_s, // get(index) function pointer nullptr // resize(index) function pointer }, { "gyro_healthy", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorsStatusImu, gyro_healthy), // bytes offset in struct nullptr, // default value size_function__SensorsStatusImu__gyro_healthy, // size() function pointer get_const_function__SensorsStatusImu__gyro_healthy, // get_const(index) function pointer get_function__SensorsStatusImu__gyro_healthy, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers SensorsStatusImu_message_members = { "px4_msgs::msg", // message namespace "SensorsStatusImu", // message name 9, // number of fields sizeof(px4_msgs::msg::SensorsStatusImu), SensorsStatusImu_message_member_array, // message members SensorsStatusImu_init_function, // function to initialize message memory (memory has to be allocated) SensorsStatusImu_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t SensorsStatusImu_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &SensorsStatusImu_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::SensorsStatusImu>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::SensorsStatusImu_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, SensorsStatusImu)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::SensorsStatusImu_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/esc_status.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/EscStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESC_STATUS_H_ #define PX4_MSGS__MSG__ESC_STATUS_H_ #include "px4_msgs/msg/esc_status__struct.h" #include "px4_msgs/msg/esc_status__functions.h" #include "px4_msgs/msg/esc_status__type_support.h" #endif // PX4_MSGS__MSG__ESC_STATUS_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/manual_control_switches__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/ManualControlSwitches.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/manual_control_switches__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void ManualControlSwitches_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::ManualControlSwitches(_init); } void ManualControlSwitches_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::ManualControlSwitches *>(message_memory); typed_message->~ManualControlSwitches(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember ManualControlSwitches_message_member_array[16] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ManualControlSwitches, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ManualControlSwitches, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "mode_slot", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ManualControlSwitches, mode_slot), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "arm_switch", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ManualControlSwitches, arm_switch), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "return_switch", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ManualControlSwitches, return_switch), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "loiter_switch", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ManualControlSwitches, loiter_switch), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "offboard_switch", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ManualControlSwitches, offboard_switch), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "kill_switch", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ManualControlSwitches, kill_switch), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "gear_switch", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ManualControlSwitches, gear_switch), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "transition_switch", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ManualControlSwitches, transition_switch), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "mode_switch", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ManualControlSwitches, mode_switch), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "man_switch", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ManualControlSwitches, man_switch), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "acro_switch", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ManualControlSwitches, acro_switch), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "stab_switch", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ManualControlSwitches, stab_switch), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "posctl_switch", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ManualControlSwitches, posctl_switch), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "switch_changes", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ManualControlSwitches, switch_changes), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers ManualControlSwitches_message_members = { "px4_msgs::msg", // message namespace "ManualControlSwitches", // message name 16, // number of fields sizeof(px4_msgs::msg::ManualControlSwitches), ManualControlSwitches_message_member_array, // message members ManualControlSwitches_init_function, // function to initialize message memory (memory has to be allocated) ManualControlSwitches_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t ManualControlSwitches_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &ManualControlSwitches_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::ManualControlSwitches>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::ManualControlSwitches_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, ManualControlSwitches)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::ManualControlSwitches_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/adc_report.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/AdcReport.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ADC_REPORT_H_ #define PX4_MSGS__MSG__ADC_REPORT_H_ #include "px4_msgs/msg/adc_report__struct.h" #include "px4_msgs/msg/adc_report__functions.h" #include "px4_msgs/msg/adc_report__type_support.h" #endif // PX4_MSGS__MSG__ADC_REPORT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/airspeed__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/Airspeed.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/airspeed__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/airspeed__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::Airspeed & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: indicated_airspeed_m_s cdr << ros_message.indicated_airspeed_m_s; // Member: true_airspeed_m_s cdr << ros_message.true_airspeed_m_s; // Member: air_temperature_celsius cdr << ros_message.air_temperature_celsius; // Member: confidence cdr << ros_message.confidence; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::Airspeed & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: indicated_airspeed_m_s cdr >> ros_message.indicated_airspeed_m_s; // Member: true_airspeed_m_s cdr >> ros_message.true_airspeed_m_s; // Member: air_temperature_celsius cdr >> ros_message.air_temperature_celsius; // Member: confidence cdr >> ros_message.confidence; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::Airspeed & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: indicated_airspeed_m_s { size_t item_size = sizeof(ros_message.indicated_airspeed_m_s); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: true_airspeed_m_s { size_t item_size = sizeof(ros_message.true_airspeed_m_s); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: air_temperature_celsius { size_t item_size = sizeof(ros_message.air_temperature_celsius); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: confidence { size_t item_size = sizeof(ros_message.confidence); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_Airspeed( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: indicated_airspeed_m_s { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: true_airspeed_m_s { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: air_temperature_celsius { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: confidence { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static bool _Airspeed__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::Airspeed *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _Airspeed__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::Airspeed *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _Airspeed__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::Airspeed *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _Airspeed__max_serialized_size(bool & full_bounded) { return max_serialized_size_Airspeed(full_bounded, 0); } static message_type_support_callbacks_t _Airspeed__callbacks = { "px4_msgs::msg", "Airspeed", _Airspeed__cdr_serialize, _Airspeed__cdr_deserialize, _Airspeed__get_serialized_size, _Airspeed__max_serialized_size }; static rosidl_message_type_support_t _Airspeed__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_Airspeed__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::Airspeed>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_Airspeed__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, Airspeed)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_Airspeed__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/OrbTestMediumQueue.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/orb_test_medium_queue__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__OrbTestMediumQueue__init(px4_msgs__msg__OrbTestMediumQueue * msg) { if (!msg) { return false; } // timestamp // val // junk return true; } void px4_msgs__msg__OrbTestMediumQueue__fini(px4_msgs__msg__OrbTestMediumQueue * msg) { if (!msg) { return; } // timestamp // val // junk } px4_msgs__msg__OrbTestMediumQueue * px4_msgs__msg__OrbTestMediumQueue__create() { px4_msgs__msg__OrbTestMediumQueue * msg = (px4_msgs__msg__OrbTestMediumQueue *)malloc(sizeof(px4_msgs__msg__OrbTestMediumQueue)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__OrbTestMediumQueue)); bool success = px4_msgs__msg__OrbTestMediumQueue__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__OrbTestMediumQueue__destroy(px4_msgs__msg__OrbTestMediumQueue * msg) { if (msg) { px4_msgs__msg__OrbTestMediumQueue__fini(msg); } free(msg); } bool px4_msgs__msg__OrbTestMediumQueue__Sequence__init(px4_msgs__msg__OrbTestMediumQueue__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__OrbTestMediumQueue * data = NULL; if (size) { data = (px4_msgs__msg__OrbTestMediumQueue *)calloc(size, sizeof(px4_msgs__msg__OrbTestMediumQueue)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__OrbTestMediumQueue__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__OrbTestMediumQueue__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__OrbTestMediumQueue__Sequence__fini(px4_msgs__msg__OrbTestMediumQueue__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__OrbTestMediumQueue__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__OrbTestMediumQueue__Sequence * px4_msgs__msg__OrbTestMediumQueue__Sequence__create(size_t size) { px4_msgs__msg__OrbTestMediumQueue__Sequence * array = (px4_msgs__msg__OrbTestMediumQueue__Sequence *)malloc(sizeof(px4_msgs__msg__OrbTestMediumQueue__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__OrbTestMediumQueue__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__OrbTestMediumQueue__Sequence__destroy(px4_msgs__msg__OrbTestMediumQueue__Sequence * array) { if (array) { px4_msgs__msg__OrbTestMediumQueue__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/ping.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__PING_HPP_ #define PX4_MSGS__MSG__PING_HPP_ #include "px4_msgs/msg/ping__struct.hpp" #include "px4_msgs/msg/ping__traits.hpp" #endif // PX4_MSGS__MSG__PING_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/manual_control_setpoint__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/ManualControlSetpoint.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/manual_control_setpoint__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/manual_control_setpoint__struct.h" #include "px4_msgs/msg/manual_control_setpoint__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _ManualControlSetpoint__ros_msg_type = px4_msgs__msg__ManualControlSetpoint; static bool _ManualControlSetpoint__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _ManualControlSetpoint__ros_msg_type * ros_message = static_cast<const _ManualControlSetpoint__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: timestamp_sample { cdr << ros_message->timestamp_sample; } // Field name: data_source { cdr << ros_message->data_source; } // Field name: x { cdr << ros_message->x; } // Field name: y { cdr << ros_message->y; } // Field name: z { cdr << ros_message->z; } // Field name: r { cdr << ros_message->r; } // Field name: flaps { cdr << ros_message->flaps; } // Field name: aux1 { cdr << ros_message->aux1; } // Field name: aux2 { cdr << ros_message->aux2; } // Field name: aux3 { cdr << ros_message->aux3; } // Field name: aux4 { cdr << ros_message->aux4; } // Field name: aux5 { cdr << ros_message->aux5; } // Field name: aux6 { cdr << ros_message->aux6; } return true; } static bool _ManualControlSetpoint__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _ManualControlSetpoint__ros_msg_type * ros_message = static_cast<_ManualControlSetpoint__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: timestamp_sample { cdr >> ros_message->timestamp_sample; } // Field name: data_source { cdr >> ros_message->data_source; } // Field name: x { cdr >> ros_message->x; } // Field name: y { cdr >> ros_message->y; } // Field name: z { cdr >> ros_message->z; } // Field name: r { cdr >> ros_message->r; } // Field name: flaps { cdr >> ros_message->flaps; } // Field name: aux1 { cdr >> ros_message->aux1; } // Field name: aux2 { cdr >> ros_message->aux2; } // Field name: aux3 { cdr >> ros_message->aux3; } // Field name: aux4 { cdr >> ros_message->aux4; } // Field name: aux5 { cdr >> ros_message->aux5; } // Field name: aux6 { cdr >> ros_message->aux6; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__ManualControlSetpoint( const void * untyped_ros_message, size_t current_alignment) { const _ManualControlSetpoint__ros_msg_type * ros_message = static_cast<const _ManualControlSetpoint__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name timestamp_sample { size_t item_size = sizeof(ros_message->timestamp_sample); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name data_source { size_t item_size = sizeof(ros_message->data_source); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name x { size_t item_size = sizeof(ros_message->x); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name y { size_t item_size = sizeof(ros_message->y); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name z { size_t item_size = sizeof(ros_message->z); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name r { size_t item_size = sizeof(ros_message->r); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name flaps { size_t item_size = sizeof(ros_message->flaps); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name aux1 { size_t item_size = sizeof(ros_message->aux1); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name aux2 { size_t item_size = sizeof(ros_message->aux2); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name aux3 { size_t item_size = sizeof(ros_message->aux3); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name aux4 { size_t item_size = sizeof(ros_message->aux4); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name aux5 { size_t item_size = sizeof(ros_message->aux5); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name aux6 { size_t item_size = sizeof(ros_message->aux6); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _ManualControlSetpoint__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__ManualControlSetpoint( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__ManualControlSetpoint( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: timestamp_sample { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: data_source { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: x { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: y { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: z { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: r { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: flaps { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: aux1 { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: aux2 { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: aux3 { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: aux4 { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: aux5 { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: aux6 { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _ManualControlSetpoint__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__ManualControlSetpoint( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_ManualControlSetpoint = { "px4_msgs::msg", "ManualControlSetpoint", _ManualControlSetpoint__cdr_serialize, _ManualControlSetpoint__cdr_deserialize, _ManualControlSetpoint__get_serialized_size, _ManualControlSetpoint__max_serialized_size }; static rosidl_message_type_support_t _ManualControlSetpoint__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_ManualControlSetpoint, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, ManualControlSetpoint)() { return &_ManualControlSetpoint__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_attitude_setpoint__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleAttitudeSetpoint.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_attitude_setpoint__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__VehicleAttitudeSetpoint__init(px4_msgs__msg__VehicleAttitudeSetpoint * msg) { if (!msg) { return false; } // timestamp // roll_body // pitch_body // yaw_body // yaw_sp_move_rate // q_d // thrust_body // roll_reset_integral // pitch_reset_integral // yaw_reset_integral // fw_control_yaw // apply_flaps return true; } void px4_msgs__msg__VehicleAttitudeSetpoint__fini(px4_msgs__msg__VehicleAttitudeSetpoint * msg) { if (!msg) { return; } // timestamp // roll_body // pitch_body // yaw_body // yaw_sp_move_rate // q_d // thrust_body // roll_reset_integral // pitch_reset_integral // yaw_reset_integral // fw_control_yaw // apply_flaps } px4_msgs__msg__VehicleAttitudeSetpoint * px4_msgs__msg__VehicleAttitudeSetpoint__create() { px4_msgs__msg__VehicleAttitudeSetpoint * msg = (px4_msgs__msg__VehicleAttitudeSetpoint *)malloc(sizeof(px4_msgs__msg__VehicleAttitudeSetpoint)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleAttitudeSetpoint)); bool success = px4_msgs__msg__VehicleAttitudeSetpoint__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleAttitudeSetpoint__destroy(px4_msgs__msg__VehicleAttitudeSetpoint * msg) { if (msg) { px4_msgs__msg__VehicleAttitudeSetpoint__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleAttitudeSetpoint__Sequence__init(px4_msgs__msg__VehicleAttitudeSetpoint__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleAttitudeSetpoint * data = NULL; if (size) { data = (px4_msgs__msg__VehicleAttitudeSetpoint *)calloc(size, sizeof(px4_msgs__msg__VehicleAttitudeSetpoint)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleAttitudeSetpoint__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleAttitudeSetpoint__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleAttitudeSetpoint__Sequence__fini(px4_msgs__msg__VehicleAttitudeSetpoint__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleAttitudeSetpoint__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleAttitudeSetpoint__Sequence * px4_msgs__msg__VehicleAttitudeSetpoint__Sequence__create(size_t size) { px4_msgs__msg__VehicleAttitudeSetpoint__Sequence * array = (px4_msgs__msg__VehicleAttitudeSetpoint__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleAttitudeSetpoint__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleAttitudeSetpoint__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleAttitudeSetpoint__Sequence__destroy(px4_msgs__msg__VehicleAttitudeSetpoint__Sequence * array) { if (array) { px4_msgs__msg__VehicleAttitudeSetpoint__Sequence__fini(array); } free(array); } <file_sep>/build/px4_ros_com/ament_cmake_core/package.cmake set(_AMENT_PACKAGE_NAME "px4_ros_com") set(px4_ros_com_VERSION "0.1.0") set(px4_ros_com_MAINTAINER "<NAME> <<EMAIL>>") set(px4_ros_com_BUILD_DEPENDS "eigen" "builtin_interfaces" "rclcpp" "ros_environment" "px4_msgs" "geometry_msgs" "sensor_msgs" "launch" "launch_testing" "launch_testing_ros") set(px4_ros_com_BUILDTOOL_DEPENDS "ament_cmake" "eigen3_cmake_module") set(px4_ros_com_BUILD_EXPORT_DEPENDS "eigen" "builtin_interfaces" "rclcpp" "ros_environment" "px4_msgs" "geometry_msgs" "sensor_msgs" "launch" "launch_testing" "launch_testing_ros") set(px4_ros_com_BUILDTOOL_EXPORT_DEPENDS "eigen3_cmake_module") set(px4_ros_com_EXEC_DEPENDS "rosidl_default_runtime" "builtin_interfaces" "rclcpp" "ros_environment" "px4_msgs" "geometry_msgs" "sensor_msgs" "launch" "launch_testing" "launch_testing_ros") set(px4_ros_com_TEST_DEPENDS ) set(px4_ros_com_GROUP_DEPENDS ) set(px4_ros_com_MEMBER_OF_GROUPS ) set(px4_ros_com_DEPRECATED "") set(px4_ros_com_EXPORT_TAGS) list(APPEND px4_ros_com_EXPORT_TAGS "<build_type>ament_cmake</build_type>") <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_vehicle_command_ack.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/VehicleCommandAck.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_VehicleCommandAck(type): """Metaclass of message 'VehicleCommandAck'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'VEHICLE_RESULT_ACCEPTED': 0, 'VEHICLE_RESULT_TEMPORARILY_REJECTED': 1, 'VEHICLE_RESULT_DENIED': 2, 'VEHICLE_RESULT_UNSUPPORTED': 3, 'VEHICLE_RESULT_FAILED': 4, 'VEHICLE_RESULT_IN_PROGRESS': 5, 'ARM_AUTH_DENIED_REASON_GENERIC': 0, 'ARM_AUTH_DENIED_REASON_NONE': 1, 'ARM_AUTH_DENIED_REASON_INVALID_WAYPOINT': 2, 'ARM_AUTH_DENIED_REASON_TIMEOUT': 3, 'ARM_AUTH_DENIED_REASON_AIRSPACE_IN_USE': 4, 'ARM_AUTH_DENIED_REASON_BAD_WEATHER': 5, 'ORB_QUEUE_LENGTH': 4, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.VehicleCommandAck') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__vehicle_command_ack cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__vehicle_command_ack cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__vehicle_command_ack cls._TYPE_SUPPORT = module.type_support_msg__msg__vehicle_command_ack cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__vehicle_command_ack @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'VEHICLE_RESULT_ACCEPTED': cls.__constants['VEHICLE_RESULT_ACCEPTED'], 'VEHICLE_RESULT_TEMPORARILY_REJECTED': cls.__constants['VEHICLE_RESULT_TEMPORARILY_REJECTED'], 'VEHICLE_RESULT_DENIED': cls.__constants['VEHICLE_RESULT_DENIED'], 'VEHICLE_RESULT_UNSUPPORTED': cls.__constants['VEHICLE_RESULT_UNSUPPORTED'], 'VEHICLE_RESULT_FAILED': cls.__constants['VEHICLE_RESULT_FAILED'], 'VEHICLE_RESULT_IN_PROGRESS': cls.__constants['VEHICLE_RESULT_IN_PROGRESS'], 'ARM_AUTH_DENIED_REASON_GENERIC': cls.__constants['ARM_AUTH_DENIED_REASON_GENERIC'], 'ARM_AUTH_DENIED_REASON_NONE': cls.__constants['ARM_AUTH_DENIED_REASON_NONE'], 'ARM_AUTH_DENIED_REASON_INVALID_WAYPOINT': cls.__constants['ARM_AUTH_DENIED_REASON_INVALID_WAYPOINT'], 'ARM_AUTH_DENIED_REASON_TIMEOUT': cls.__constants['ARM_AUTH_DENIED_REASON_TIMEOUT'], 'ARM_AUTH_DENIED_REASON_AIRSPACE_IN_USE': cls.__constants['ARM_AUTH_DENIED_REASON_AIRSPACE_IN_USE'], 'ARM_AUTH_DENIED_REASON_BAD_WEATHER': cls.__constants['ARM_AUTH_DENIED_REASON_BAD_WEATHER'], 'ORB_QUEUE_LENGTH': cls.__constants['ORB_QUEUE_LENGTH'], } @property def VEHICLE_RESULT_ACCEPTED(self): """Message constant 'VEHICLE_RESULT_ACCEPTED'.""" return Metaclass_VehicleCommandAck.__constants['VEHICLE_RESULT_ACCEPTED'] @property def VEHICLE_RESULT_TEMPORARILY_REJECTED(self): """Message constant 'VEHICLE_RESULT_TEMPORARILY_REJECTED'.""" return Metaclass_VehicleCommandAck.__constants['VEHICLE_RESULT_TEMPORARILY_REJECTED'] @property def VEHICLE_RESULT_DENIED(self): """Message constant 'VEHICLE_RESULT_DENIED'.""" return Metaclass_VehicleCommandAck.__constants['VEHICLE_RESULT_DENIED'] @property def VEHICLE_RESULT_UNSUPPORTED(self): """Message constant 'VEHICLE_RESULT_UNSUPPORTED'.""" return Metaclass_VehicleCommandAck.__constants['VEHICLE_RESULT_UNSUPPORTED'] @property def VEHICLE_RESULT_FAILED(self): """Message constant 'VEHICLE_RESULT_FAILED'.""" return Metaclass_VehicleCommandAck.__constants['VEHICLE_RESULT_FAILED'] @property def VEHICLE_RESULT_IN_PROGRESS(self): """Message constant 'VEHICLE_RESULT_IN_PROGRESS'.""" return Metaclass_VehicleCommandAck.__constants['VEHICLE_RESULT_IN_PROGRESS'] @property def ARM_AUTH_DENIED_REASON_GENERIC(self): """Message constant 'ARM_AUTH_DENIED_REASON_GENERIC'.""" return Metaclass_VehicleCommandAck.__constants['ARM_AUTH_DENIED_REASON_GENERIC'] @property def ARM_AUTH_DENIED_REASON_NONE(self): """Message constant 'ARM_AUTH_DENIED_REASON_NONE'.""" return Metaclass_VehicleCommandAck.__constants['ARM_AUTH_DENIED_REASON_NONE'] @property def ARM_AUTH_DENIED_REASON_INVALID_WAYPOINT(self): """Message constant 'ARM_AUTH_DENIED_REASON_INVALID_WAYPOINT'.""" return Metaclass_VehicleCommandAck.__constants['ARM_AUTH_DENIED_REASON_INVALID_WAYPOINT'] @property def ARM_AUTH_DENIED_REASON_TIMEOUT(self): """Message constant 'ARM_AUTH_DENIED_REASON_TIMEOUT'.""" return Metaclass_VehicleCommandAck.__constants['ARM_AUTH_DENIED_REASON_TIMEOUT'] @property def ARM_AUTH_DENIED_REASON_AIRSPACE_IN_USE(self): """Message constant 'ARM_AUTH_DENIED_REASON_AIRSPACE_IN_USE'.""" return Metaclass_VehicleCommandAck.__constants['ARM_AUTH_DENIED_REASON_AIRSPACE_IN_USE'] @property def ARM_AUTH_DENIED_REASON_BAD_WEATHER(self): """Message constant 'ARM_AUTH_DENIED_REASON_BAD_WEATHER'.""" return Metaclass_VehicleCommandAck.__constants['ARM_AUTH_DENIED_REASON_BAD_WEATHER'] @property def ORB_QUEUE_LENGTH(self): """Message constant 'ORB_QUEUE_LENGTH'.""" return Metaclass_VehicleCommandAck.__constants['ORB_QUEUE_LENGTH'] class VehicleCommandAck(metaclass=Metaclass_VehicleCommandAck): """ Message class 'VehicleCommandAck'. Constants: VEHICLE_RESULT_ACCEPTED VEHICLE_RESULT_TEMPORARILY_REJECTED VEHICLE_RESULT_DENIED VEHICLE_RESULT_UNSUPPORTED VEHICLE_RESULT_FAILED VEHICLE_RESULT_IN_PROGRESS ARM_AUTH_DENIED_REASON_GENERIC ARM_AUTH_DENIED_REASON_NONE ARM_AUTH_DENIED_REASON_INVALID_WAYPOINT ARM_AUTH_DENIED_REASON_TIMEOUT ARM_AUTH_DENIED_REASON_AIRSPACE_IN_USE ARM_AUTH_DENIED_REASON_BAD_WEATHER ORB_QUEUE_LENGTH """ __slots__ = [ '_timestamp', '_command', '_result', '_from_external', '_result_param1', '_result_param2', '_target_system', '_target_component', ] _fields_and_field_types = { 'timestamp': 'uint64', 'command': 'uint32', 'result': 'uint8', 'from_external': 'boolean', 'result_param1': 'uint8', 'result_param2': 'int32', 'target_system': 'uint8', 'target_component': 'uint8', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('int32'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.command = kwargs.get('command', int()) self.result = kwargs.get('result', int()) self.from_external = kwargs.get('from_external', bool()) self.result_param1 = kwargs.get('result_param1', int()) self.result_param2 = kwargs.get('result_param2', int()) self.target_system = kwargs.get('target_system', int()) self.target_component = kwargs.get('target_component', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.command != other.command: return False if self.result != other.result: return False if self.from_external != other.from_external: return False if self.result_param1 != other.result_param1: return False if self.result_param2 != other.result_param2: return False if self.target_system != other.target_system: return False if self.target_component != other.target_component: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def command(self): """Message field 'command'.""" return self._command @command.setter def command(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'command' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'command' field must be an unsigned integer in [0, 4294967295]" self._command = value @property def result(self): """Message field 'result'.""" return self._result @result.setter def result(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'result' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'result' field must be an unsigned integer in [0, 255]" self._result = value @property def from_external(self): """Message field 'from_external'.""" return self._from_external @from_external.setter def from_external(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'from_external' field must be of type 'bool'" self._from_external = value @property def result_param1(self): """Message field 'result_param1'.""" return self._result_param1 @result_param1.setter def result_param1(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'result_param1' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'result_param1' field must be an unsigned integer in [0, 255]" self._result_param1 = value @property def result_param2(self): """Message field 'result_param2'.""" return self._result_param2 @result_param2.setter def result_param2(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'result_param2' field must be of type 'int'" assert value >= -2147483648 and value < 2147483648, \ "The 'result_param2' field must be an integer in [-2147483648, 2147483647]" self._result_param2 = value @property def target_system(self): """Message field 'target_system'.""" return self._target_system @target_system.setter def target_system(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'target_system' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'target_system' field must be an unsigned integer in [0, 255]" self._target_system = value @property def target_component(self): """Message field 'target_component'.""" return self._target_component @target_component.setter def target_component(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'target_component' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'target_component' field must be an unsigned integer in [0, 255]" self._target_component = value <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/fw_virtual_attitude_setpoint__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/FwVirtualAttitudeSetpoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__FW_VIRTUAL_ATTITUDE_SETPOINT__STRUCT_H_ #define PX4_MSGS__MSG__FW_VIRTUAL_ATTITUDE_SETPOINT__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'FLAPS_OFF'. enum { px4_msgs__msg__FwVirtualAttitudeSetpoint__FLAPS_OFF = 0 }; /// Constant 'FLAPS_LAND'. enum { px4_msgs__msg__FwVirtualAttitudeSetpoint__FLAPS_LAND = 1 }; /// Constant 'FLAPS_TAKEOFF'. enum { px4_msgs__msg__FwVirtualAttitudeSetpoint__FLAPS_TAKEOFF = 2 }; // Struct defined in msg/FwVirtualAttitudeSetpoint in the package px4_msgs. typedef struct px4_msgs__msg__FwVirtualAttitudeSetpoint { uint64_t timestamp; float roll_body; float pitch_body; float yaw_body; float yaw_sp_move_rate; float q_d[4]; float thrust_body[3]; bool roll_reset_integral; bool pitch_reset_integral; bool yaw_reset_integral; bool fw_control_yaw; uint8_t apply_flaps; } px4_msgs__msg__FwVirtualAttitudeSetpoint; // Struct for a sequence of px4_msgs__msg__FwVirtualAttitudeSetpoint. typedef struct px4_msgs__msg__FwVirtualAttitudeSetpoint__Sequence { px4_msgs__msg__FwVirtualAttitudeSetpoint * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__FwVirtualAttitudeSetpoint__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__FW_VIRTUAL_ATTITUDE_SETPOINT__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/orb_test_medium_wrap_around.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/OrbTestMediumWrapAround.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORB_TEST_MEDIUM_WRAP_AROUND_H_ #define PX4_MSGS__MSG__ORB_TEST_MEDIUM_WRAP_AROUND_H_ #include "px4_msgs/msg/orb_test_medium_wrap_around__struct.h" #include "px4_msgs/msg/orb_test_medium_wrap_around__functions.h" #include "px4_msgs/msg/orb_test_medium_wrap_around__type_support.h" #endif // PX4_MSGS__MSG__ORB_TEST_MEDIUM_WRAP_AROUND_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_armed__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/ActuatorArmed.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/actuator_armed__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void ActuatorArmed_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::ActuatorArmed(_init); } void ActuatorArmed_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::ActuatorArmed *>(message_memory); typed_message->~ActuatorArmed(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember ActuatorArmed_message_member_array[9] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ActuatorArmed, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "armed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ActuatorArmed, armed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "prearmed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ActuatorArmed, prearmed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ready_to_arm", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ActuatorArmed, ready_to_arm), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "lockdown", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ActuatorArmed, lockdown), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "manual_lockdown", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ActuatorArmed, manual_lockdown), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "force_failsafe", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ActuatorArmed, force_failsafe), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "in_esc_calibration_mode", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ActuatorArmed, in_esc_calibration_mode), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "soft_stop", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ActuatorArmed, soft_stop), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers ActuatorArmed_message_members = { "px4_msgs::msg", // message namespace "ActuatorArmed", // message name 9, // number of fields sizeof(px4_msgs::msg::ActuatorArmed), ActuatorArmed_message_member_array, // message members ActuatorArmed_init_function, // function to initialize message memory (memory has to be allocated) ActuatorArmed_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t ActuatorArmed_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &ActuatorArmed_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::ActuatorArmed>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::ActuatorArmed_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, ActuatorArmed)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::ActuatorArmed_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/offboard_control_mode__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/OffboardControlMode.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__OFFBOARD_CONTROL_MODE__STRUCT_H_ #define PX4_MSGS__MSG__OFFBOARD_CONTROL_MODE__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/OffboardControlMode in the package px4_msgs. typedef struct px4_msgs__msg__OffboardControlMode { uint64_t timestamp; bool position; bool velocity; bool acceleration; bool attitude; bool body_rate; } px4_msgs__msg__OffboardControlMode; // Struct for a sequence of px4_msgs__msg__OffboardControlMode. typedef struct px4_msgs__msg__OffboardControlMode__Sequence { px4_msgs__msg__OffboardControlMode * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__OffboardControlMode__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__OFFBOARD_CONTROL_MODE__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_status_flags.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleStatusFlags.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_STATUS_FLAGS_H_ #define PX4_MSGS__MSG__VEHICLE_STATUS_FLAGS_H_ #include "px4_msgs/msg/vehicle_status_flags__struct.h" #include "px4_msgs/msg/vehicle_status_flags__functions.h" #include "px4_msgs/msg/vehicle_status_flags__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_STATUS_FLAGS_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_vehicle_trajectory_waypoint_desired.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/VehicleTrajectoryWaypointDesired.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_VehicleTrajectoryWaypointDesired(type): """Metaclass of message 'VehicleTrajectoryWaypointDesired'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'MAV_TRAJECTORY_REPRESENTATION_WAYPOINTS': 0, 'POINT_0': 0, 'POINT_1': 1, 'POINT_2': 2, 'POINT_3': 3, 'POINT_4': 4, 'NUMBER_POINTS': 5, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.VehicleTrajectoryWaypointDesired') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__vehicle_trajectory_waypoint_desired cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__vehicle_trajectory_waypoint_desired cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__vehicle_trajectory_waypoint_desired cls._TYPE_SUPPORT = module.type_support_msg__msg__vehicle_trajectory_waypoint_desired cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__vehicle_trajectory_waypoint_desired from px4_msgs.msg import TrajectoryWaypoint if TrajectoryWaypoint.__class__._TYPE_SUPPORT is None: TrajectoryWaypoint.__class__.__import_type_support__() @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'MAV_TRAJECTORY_REPRESENTATION_WAYPOINTS': cls.__constants['MAV_TRAJECTORY_REPRESENTATION_WAYPOINTS'], 'POINT_0': cls.__constants['POINT_0'], 'POINT_1': cls.__constants['POINT_1'], 'POINT_2': cls.__constants['POINT_2'], 'POINT_3': cls.__constants['POINT_3'], 'POINT_4': cls.__constants['POINT_4'], 'NUMBER_POINTS': cls.__constants['NUMBER_POINTS'], } @property def MAV_TRAJECTORY_REPRESENTATION_WAYPOINTS(self): """Message constant 'MAV_TRAJECTORY_REPRESENTATION_WAYPOINTS'.""" return Metaclass_VehicleTrajectoryWaypointDesired.__constants['MAV_TRAJECTORY_REPRESENTATION_WAYPOINTS'] @property def POINT_0(self): """Message constant 'POINT_0'.""" return Metaclass_VehicleTrajectoryWaypointDesired.__constants['POINT_0'] @property def POINT_1(self): """Message constant 'POINT_1'.""" return Metaclass_VehicleTrajectoryWaypointDesired.__constants['POINT_1'] @property def POINT_2(self): """Message constant 'POINT_2'.""" return Metaclass_VehicleTrajectoryWaypointDesired.__constants['POINT_2'] @property def POINT_3(self): """Message constant 'POINT_3'.""" return Metaclass_VehicleTrajectoryWaypointDesired.__constants['POINT_3'] @property def POINT_4(self): """Message constant 'POINT_4'.""" return Metaclass_VehicleTrajectoryWaypointDesired.__constants['POINT_4'] @property def NUMBER_POINTS(self): """Message constant 'NUMBER_POINTS'.""" return Metaclass_VehicleTrajectoryWaypointDesired.__constants['NUMBER_POINTS'] class VehicleTrajectoryWaypointDesired(metaclass=Metaclass_VehicleTrajectoryWaypointDesired): """ Message class 'VehicleTrajectoryWaypointDesired'. Constants: MAV_TRAJECTORY_REPRESENTATION_WAYPOINTS POINT_0 POINT_1 POINT_2 POINT_3 POINT_4 NUMBER_POINTS """ __slots__ = [ '_timestamp', '_type', '_waypoints', ] _fields_and_field_types = { 'timestamp': 'uint64', 'type': 'uint8', 'waypoints': 'px4_msgs/TrajectoryWaypoint[5]', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.NamespacedType(['px4_msgs', 'msg'], 'TrajectoryWaypoint'), 5), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.type = kwargs.get('type', int()) from px4_msgs.msg import TrajectoryWaypoint self.waypoints = kwargs.get( 'waypoints', [TrajectoryWaypoint() for x in range(5)] ) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.type != other.type: return False if self.waypoints != other.waypoints: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property # noqa: A003 def type(self): """Message field 'type'.""" return self._type @type.setter # noqa: A003 def type(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'type' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'type' field must be an unsigned integer in [0, 255]" self._type = value @property def waypoints(self): """Message field 'waypoints'.""" return self._waypoints @waypoints.setter def waypoints(self, value): if __debug__: from px4_msgs.msg import TrajectoryWaypoint from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 5 and all(isinstance(v, TrajectoryWaypoint) for v in value) and True), \ "The 'waypoints' field must be a set or sequence with length 5 and each value of type 'TrajectoryWaypoint'" self._waypoints = value <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_local_position_groundtruth__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleLocalPositionGroundtruth.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_GROUNDTRUTH__FUNCTIONS_H_ #define PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_GROUNDTRUTH__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/vehicle_local_position_groundtruth__struct.h" /// Initialize msg/VehicleLocalPositionGroundtruth message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__VehicleLocalPositionGroundtruth * )) before or use * px4_msgs__msg__VehicleLocalPositionGroundtruth__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__VehicleLocalPositionGroundtruth__init(px4_msgs__msg__VehicleLocalPositionGroundtruth * msg); /// Finalize msg/VehicleLocalPositionGroundtruth message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleLocalPositionGroundtruth__fini(px4_msgs__msg__VehicleLocalPositionGroundtruth * msg); /// Create msg/VehicleLocalPositionGroundtruth message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__VehicleLocalPositionGroundtruth__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__VehicleLocalPositionGroundtruth * px4_msgs__msg__VehicleLocalPositionGroundtruth__create(); /// Destroy msg/VehicleLocalPositionGroundtruth message. /** * It calls * px4_msgs__msg__VehicleLocalPositionGroundtruth__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleLocalPositionGroundtruth__destroy(px4_msgs__msg__VehicleLocalPositionGroundtruth * msg); /// Initialize array of msg/VehicleLocalPositionGroundtruth messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__VehicleLocalPositionGroundtruth__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__VehicleLocalPositionGroundtruth__Sequence__init(px4_msgs__msg__VehicleLocalPositionGroundtruth__Sequence * array, size_t size); /// Finalize array of msg/VehicleLocalPositionGroundtruth messages. /** * It calls * px4_msgs__msg__VehicleLocalPositionGroundtruth__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleLocalPositionGroundtruth__Sequence__fini(px4_msgs__msg__VehicleLocalPositionGroundtruth__Sequence * array); /// Create array of msg/VehicleLocalPositionGroundtruth messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__VehicleLocalPositionGroundtruth__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__VehicleLocalPositionGroundtruth__Sequence * px4_msgs__msg__VehicleLocalPositionGroundtruth__Sequence__create(size_t size); /// Destroy array of msg/VehicleLocalPositionGroundtruth messages. /** * It calls * px4_msgs__msg__VehicleLocalPositionGroundtruth__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleLocalPositionGroundtruth__Sequence__destroy(px4_msgs__msg__VehicleLocalPositionGroundtruth__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_GROUNDTRUTH__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/iridiumsbd_status__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/IridiumsbdStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/iridiumsbd_status__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__IridiumsbdStatus__init(px4_msgs__msg__IridiumsbdStatus * msg) { if (!msg) { return false; } // timestamp // last_heartbeat // tx_buf_write_index // rx_buf_read_index // rx_buf_end_index // failed_sbd_sessions // successful_sbd_sessions // num_tx_buf_reset // signal_quality // state // ring_pending // tx_buf_write_pending // tx_session_pending // rx_read_pending // rx_session_pending return true; } void px4_msgs__msg__IridiumsbdStatus__fini(px4_msgs__msg__IridiumsbdStatus * msg) { if (!msg) { return; } // timestamp // last_heartbeat // tx_buf_write_index // rx_buf_read_index // rx_buf_end_index // failed_sbd_sessions // successful_sbd_sessions // num_tx_buf_reset // signal_quality // state // ring_pending // tx_buf_write_pending // tx_session_pending // rx_read_pending // rx_session_pending } px4_msgs__msg__IridiumsbdStatus * px4_msgs__msg__IridiumsbdStatus__create() { px4_msgs__msg__IridiumsbdStatus * msg = (px4_msgs__msg__IridiumsbdStatus *)malloc(sizeof(px4_msgs__msg__IridiumsbdStatus)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__IridiumsbdStatus)); bool success = px4_msgs__msg__IridiumsbdStatus__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__IridiumsbdStatus__destroy(px4_msgs__msg__IridiumsbdStatus * msg) { if (msg) { px4_msgs__msg__IridiumsbdStatus__fini(msg); } free(msg); } bool px4_msgs__msg__IridiumsbdStatus__Sequence__init(px4_msgs__msg__IridiumsbdStatus__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__IridiumsbdStatus * data = NULL; if (size) { data = (px4_msgs__msg__IridiumsbdStatus *)calloc(size, sizeof(px4_msgs__msg__IridiumsbdStatus)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__IridiumsbdStatus__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__IridiumsbdStatus__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__IridiumsbdStatus__Sequence__fini(px4_msgs__msg__IridiumsbdStatus__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__IridiumsbdStatus__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__IridiumsbdStatus__Sequence * px4_msgs__msg__IridiumsbdStatus__Sequence__create(size_t size) { px4_msgs__msg__IridiumsbdStatus__Sequence * array = (px4_msgs__msg__IridiumsbdStatus__Sequence *)malloc(sizeof(px4_msgs__msg__IridiumsbdStatus__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__IridiumsbdStatus__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__IridiumsbdStatus__Sequence__destroy(px4_msgs__msg__IridiumsbdStatus__Sequence * array) { if (array) { px4_msgs__msg__IridiumsbdStatus__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/power_button_state__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/PowerButtonState.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__POWER_BUTTON_STATE__STRUCT_HPP_ #define PX4_MSGS__MSG__POWER_BUTTON_STATE__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__PowerButtonState __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__PowerButtonState __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct PowerButtonState_ { using Type = PowerButtonState_<ContainerAllocator>; explicit PowerButtonState_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->event = 0; } } explicit PowerButtonState_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->event = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _event_type = uint8_t; _event_type event; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__event( const uint8_t & _arg) { this->event = _arg; return *this; } // constant declarations static constexpr uint8_t PWR_BUTTON_STATE_IDEL = 0u; static constexpr uint8_t PWR_BUTTON_STATE_DOWN = 1u; static constexpr uint8_t PWR_BUTTON_STATE_UP = 2u; static constexpr uint8_t PWR_BUTTON_STATE_REQUEST_SHUTDOWN = 3u; // pointer types using RawPtr = px4_msgs::msg::PowerButtonState_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::PowerButtonState_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::PowerButtonState_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::PowerButtonState_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::PowerButtonState_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::PowerButtonState_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::PowerButtonState_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::PowerButtonState_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::PowerButtonState_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::PowerButtonState_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__PowerButtonState std::shared_ptr<px4_msgs::msg::PowerButtonState_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__PowerButtonState std::shared_ptr<px4_msgs::msg::PowerButtonState_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const PowerButtonState_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->event != other.event) { return false; } return true; } bool operator!=(const PowerButtonState_ & other) const { return !this->operator==(other); } }; // struct PowerButtonState_ // alias to use template instance with default allocator using PowerButtonState = px4_msgs::msg::PowerButtonState_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t PowerButtonState_<ContainerAllocator>::PWR_BUTTON_STATE_IDEL; template<typename ContainerAllocator> constexpr uint8_t PowerButtonState_<ContainerAllocator>::PWR_BUTTON_STATE_DOWN; template<typename ContainerAllocator> constexpr uint8_t PowerButtonState_<ContainerAllocator>::PWR_BUTTON_STATE_UP; template<typename ContainerAllocator> constexpr uint8_t PowerButtonState_<ContainerAllocator>::PWR_BUTTON_STATE_REQUEST_SHUTDOWN; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__POWER_BUTTON_STATE__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/SensorGyro.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/sensor_gyro__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void SensorGyro_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::SensorGyro(_init); } void SensorGyro_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::SensorGyro *>(message_memory); typed_message->~SensorGyro(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember SensorGyro_message_member_array[9] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGyro, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGyro, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "device_id", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGyro, device_id), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "x", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGyro, x), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "y", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGyro, y), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "z", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGyro, z), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "temperature", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGyro, temperature), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "error_count", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGyro, error_count), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "samples", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGyro, samples), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers SensorGyro_message_members = { "px4_msgs::msg", // message namespace "SensorGyro", // message name 9, // number of fields sizeof(px4_msgs::msg::SensorGyro), SensorGyro_message_member_array, // message members SensorGyro_init_function, // function to initialize message memory (memory has to be allocated) SensorGyro_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t SensorGyro_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &SensorGyro_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::SensorGyro>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::SensorGyro_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, SensorGyro)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::SensorGyro_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status_flags__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/EstimatorStatusFlags.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/estimator_status_flags__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/estimator_status_flags__struct.h" #include "px4_msgs/msg/estimator_status_flags__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _EstimatorStatusFlags__ros_msg_type = px4_msgs__msg__EstimatorStatusFlags; static bool _EstimatorStatusFlags__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _EstimatorStatusFlags__ros_msg_type * ros_message = static_cast<const _EstimatorStatusFlags__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: timestamp_sample { cdr << ros_message->timestamp_sample; } // Field name: control_status_changes { cdr << ros_message->control_status_changes; } // Field name: cs_tilt_align { cdr << (ros_message->cs_tilt_align ? true : false); } // Field name: cs_yaw_align { cdr << (ros_message->cs_yaw_align ? true : false); } // Field name: cs_gps { cdr << (ros_message->cs_gps ? true : false); } // Field name: cs_opt_flow { cdr << (ros_message->cs_opt_flow ? true : false); } // Field name: cs_mag_hdg { cdr << (ros_message->cs_mag_hdg ? true : false); } // Field name: cs_mag_3d { cdr << (ros_message->cs_mag_3d ? true : false); } // Field name: cs_mag_dec { cdr << (ros_message->cs_mag_dec ? true : false); } // Field name: cs_in_air { cdr << (ros_message->cs_in_air ? true : false); } // Field name: cs_wind { cdr << (ros_message->cs_wind ? true : false); } // Field name: cs_baro_hgt { cdr << (ros_message->cs_baro_hgt ? true : false); } // Field name: cs_rng_hgt { cdr << (ros_message->cs_rng_hgt ? true : false); } // Field name: cs_gps_hgt { cdr << (ros_message->cs_gps_hgt ? true : false); } // Field name: cs_ev_pos { cdr << (ros_message->cs_ev_pos ? true : false); } // Field name: cs_ev_yaw { cdr << (ros_message->cs_ev_yaw ? true : false); } // Field name: cs_ev_hgt { cdr << (ros_message->cs_ev_hgt ? true : false); } // Field name: cs_fuse_beta { cdr << (ros_message->cs_fuse_beta ? true : false); } // Field name: cs_mag_field_disturbed { cdr << (ros_message->cs_mag_field_disturbed ? true : false); } // Field name: cs_fixed_wing { cdr << (ros_message->cs_fixed_wing ? true : false); } // Field name: cs_mag_fault { cdr << (ros_message->cs_mag_fault ? true : false); } // Field name: cs_fuse_aspd { cdr << (ros_message->cs_fuse_aspd ? true : false); } // Field name: cs_gnd_effect { cdr << (ros_message->cs_gnd_effect ? true : false); } // Field name: cs_rng_stuck { cdr << (ros_message->cs_rng_stuck ? true : false); } // Field name: cs_gps_yaw { cdr << (ros_message->cs_gps_yaw ? true : false); } // Field name: cs_mag_aligned_in_flight { cdr << (ros_message->cs_mag_aligned_in_flight ? true : false); } // Field name: cs_ev_vel { cdr << (ros_message->cs_ev_vel ? true : false); } // Field name: cs_synthetic_mag_z { cdr << (ros_message->cs_synthetic_mag_z ? true : false); } // Field name: cs_vehicle_at_rest { cdr << (ros_message->cs_vehicle_at_rest ? true : false); } // Field name: fault_status_changes { cdr << ros_message->fault_status_changes; } // Field name: fs_bad_mag_x { cdr << (ros_message->fs_bad_mag_x ? true : false); } // Field name: fs_bad_mag_y { cdr << (ros_message->fs_bad_mag_y ? true : false); } // Field name: fs_bad_mag_z { cdr << (ros_message->fs_bad_mag_z ? true : false); } // Field name: fs_bad_hdg { cdr << (ros_message->fs_bad_hdg ? true : false); } // Field name: fs_bad_mag_decl { cdr << (ros_message->fs_bad_mag_decl ? true : false); } // Field name: fs_bad_airspeed { cdr << (ros_message->fs_bad_airspeed ? true : false); } // Field name: fs_bad_sideslip { cdr << (ros_message->fs_bad_sideslip ? true : false); } // Field name: fs_bad_optflow_x { cdr << (ros_message->fs_bad_optflow_x ? true : false); } // Field name: fs_bad_optflow_y { cdr << (ros_message->fs_bad_optflow_y ? true : false); } // Field name: fs_bad_vel_n { cdr << (ros_message->fs_bad_vel_n ? true : false); } // Field name: fs_bad_vel_e { cdr << (ros_message->fs_bad_vel_e ? true : false); } // Field name: fs_bad_vel_d { cdr << (ros_message->fs_bad_vel_d ? true : false); } // Field name: fs_bad_pos_n { cdr << (ros_message->fs_bad_pos_n ? true : false); } // Field name: fs_bad_pos_e { cdr << (ros_message->fs_bad_pos_e ? true : false); } // Field name: fs_bad_pos_d { cdr << (ros_message->fs_bad_pos_d ? true : false); } // Field name: fs_bad_acc_bias { cdr << (ros_message->fs_bad_acc_bias ? true : false); } // Field name: fs_bad_acc_vertical { cdr << (ros_message->fs_bad_acc_vertical ? true : false); } // Field name: fs_bad_acc_clipping { cdr << (ros_message->fs_bad_acc_clipping ? true : false); } // Field name: innovation_fault_status_changes { cdr << ros_message->innovation_fault_status_changes; } // Field name: reject_hor_vel { cdr << (ros_message->reject_hor_vel ? true : false); } // Field name: reject_ver_vel { cdr << (ros_message->reject_ver_vel ? true : false); } // Field name: reject_hor_pos { cdr << (ros_message->reject_hor_pos ? true : false); } // Field name: reject_ver_pos { cdr << (ros_message->reject_ver_pos ? true : false); } // Field name: reject_mag_x { cdr << (ros_message->reject_mag_x ? true : false); } // Field name: reject_mag_y { cdr << (ros_message->reject_mag_y ? true : false); } // Field name: reject_mag_z { cdr << (ros_message->reject_mag_z ? true : false); } // Field name: reject_yaw { cdr << (ros_message->reject_yaw ? true : false); } // Field name: reject_airspeed { cdr << (ros_message->reject_airspeed ? true : false); } // Field name: reject_sideslip { cdr << (ros_message->reject_sideslip ? true : false); } // Field name: reject_hagl { cdr << (ros_message->reject_hagl ? true : false); } // Field name: reject_optflow_x { cdr << (ros_message->reject_optflow_x ? true : false); } // Field name: reject_optflow_y { cdr << (ros_message->reject_optflow_y ? true : false); } return true; } static bool _EstimatorStatusFlags__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _EstimatorStatusFlags__ros_msg_type * ros_message = static_cast<_EstimatorStatusFlags__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: timestamp_sample { cdr >> ros_message->timestamp_sample; } // Field name: control_status_changes { cdr >> ros_message->control_status_changes; } // Field name: cs_tilt_align { uint8_t tmp; cdr >> tmp; ros_message->cs_tilt_align = tmp ? true : false; } // Field name: cs_yaw_align { uint8_t tmp; cdr >> tmp; ros_message->cs_yaw_align = tmp ? true : false; } // Field name: cs_gps { uint8_t tmp; cdr >> tmp; ros_message->cs_gps = tmp ? true : false; } // Field name: cs_opt_flow { uint8_t tmp; cdr >> tmp; ros_message->cs_opt_flow = tmp ? true : false; } // Field name: cs_mag_hdg { uint8_t tmp; cdr >> tmp; ros_message->cs_mag_hdg = tmp ? true : false; } // Field name: cs_mag_3d { uint8_t tmp; cdr >> tmp; ros_message->cs_mag_3d = tmp ? true : false; } // Field name: cs_mag_dec { uint8_t tmp; cdr >> tmp; ros_message->cs_mag_dec = tmp ? true : false; } // Field name: cs_in_air { uint8_t tmp; cdr >> tmp; ros_message->cs_in_air = tmp ? true : false; } // Field name: cs_wind { uint8_t tmp; cdr >> tmp; ros_message->cs_wind = tmp ? true : false; } // Field name: cs_baro_hgt { uint8_t tmp; cdr >> tmp; ros_message->cs_baro_hgt = tmp ? true : false; } // Field name: cs_rng_hgt { uint8_t tmp; cdr >> tmp; ros_message->cs_rng_hgt = tmp ? true : false; } // Field name: cs_gps_hgt { uint8_t tmp; cdr >> tmp; ros_message->cs_gps_hgt = tmp ? true : false; } // Field name: cs_ev_pos { uint8_t tmp; cdr >> tmp; ros_message->cs_ev_pos = tmp ? true : false; } // Field name: cs_ev_yaw { uint8_t tmp; cdr >> tmp; ros_message->cs_ev_yaw = tmp ? true : false; } // Field name: cs_ev_hgt { uint8_t tmp; cdr >> tmp; ros_message->cs_ev_hgt = tmp ? true : false; } // Field name: cs_fuse_beta { uint8_t tmp; cdr >> tmp; ros_message->cs_fuse_beta = tmp ? true : false; } // Field name: cs_mag_field_disturbed { uint8_t tmp; cdr >> tmp; ros_message->cs_mag_field_disturbed = tmp ? true : false; } // Field name: cs_fixed_wing { uint8_t tmp; cdr >> tmp; ros_message->cs_fixed_wing = tmp ? true : false; } // Field name: cs_mag_fault { uint8_t tmp; cdr >> tmp; ros_message->cs_mag_fault = tmp ? true : false; } // Field name: cs_fuse_aspd { uint8_t tmp; cdr >> tmp; ros_message->cs_fuse_aspd = tmp ? true : false; } // Field name: cs_gnd_effect { uint8_t tmp; cdr >> tmp; ros_message->cs_gnd_effect = tmp ? true : false; } // Field name: cs_rng_stuck { uint8_t tmp; cdr >> tmp; ros_message->cs_rng_stuck = tmp ? true : false; } // Field name: cs_gps_yaw { uint8_t tmp; cdr >> tmp; ros_message->cs_gps_yaw = tmp ? true : false; } // Field name: cs_mag_aligned_in_flight { uint8_t tmp; cdr >> tmp; ros_message->cs_mag_aligned_in_flight = tmp ? true : false; } // Field name: cs_ev_vel { uint8_t tmp; cdr >> tmp; ros_message->cs_ev_vel = tmp ? true : false; } // Field name: cs_synthetic_mag_z { uint8_t tmp; cdr >> tmp; ros_message->cs_synthetic_mag_z = tmp ? true : false; } // Field name: cs_vehicle_at_rest { uint8_t tmp; cdr >> tmp; ros_message->cs_vehicle_at_rest = tmp ? true : false; } // Field name: fault_status_changes { cdr >> ros_message->fault_status_changes; } // Field name: fs_bad_mag_x { uint8_t tmp; cdr >> tmp; ros_message->fs_bad_mag_x = tmp ? true : false; } // Field name: fs_bad_mag_y { uint8_t tmp; cdr >> tmp; ros_message->fs_bad_mag_y = tmp ? true : false; } // Field name: fs_bad_mag_z { uint8_t tmp; cdr >> tmp; ros_message->fs_bad_mag_z = tmp ? true : false; } // Field name: fs_bad_hdg { uint8_t tmp; cdr >> tmp; ros_message->fs_bad_hdg = tmp ? true : false; } // Field name: fs_bad_mag_decl { uint8_t tmp; cdr >> tmp; ros_message->fs_bad_mag_decl = tmp ? true : false; } // Field name: fs_bad_airspeed { uint8_t tmp; cdr >> tmp; ros_message->fs_bad_airspeed = tmp ? true : false; } // Field name: fs_bad_sideslip { uint8_t tmp; cdr >> tmp; ros_message->fs_bad_sideslip = tmp ? true : false; } // Field name: fs_bad_optflow_x { uint8_t tmp; cdr >> tmp; ros_message->fs_bad_optflow_x = tmp ? true : false; } // Field name: fs_bad_optflow_y { uint8_t tmp; cdr >> tmp; ros_message->fs_bad_optflow_y = tmp ? true : false; } // Field name: fs_bad_vel_n { uint8_t tmp; cdr >> tmp; ros_message->fs_bad_vel_n = tmp ? true : false; } // Field name: fs_bad_vel_e { uint8_t tmp; cdr >> tmp; ros_message->fs_bad_vel_e = tmp ? true : false; } // Field name: fs_bad_vel_d { uint8_t tmp; cdr >> tmp; ros_message->fs_bad_vel_d = tmp ? true : false; } // Field name: fs_bad_pos_n { uint8_t tmp; cdr >> tmp; ros_message->fs_bad_pos_n = tmp ? true : false; } // Field name: fs_bad_pos_e { uint8_t tmp; cdr >> tmp; ros_message->fs_bad_pos_e = tmp ? true : false; } // Field name: fs_bad_pos_d { uint8_t tmp; cdr >> tmp; ros_message->fs_bad_pos_d = tmp ? true : false; } // Field name: fs_bad_acc_bias { uint8_t tmp; cdr >> tmp; ros_message->fs_bad_acc_bias = tmp ? true : false; } // Field name: fs_bad_acc_vertical { uint8_t tmp; cdr >> tmp; ros_message->fs_bad_acc_vertical = tmp ? true : false; } // Field name: fs_bad_acc_clipping { uint8_t tmp; cdr >> tmp; ros_message->fs_bad_acc_clipping = tmp ? true : false; } // Field name: innovation_fault_status_changes { cdr >> ros_message->innovation_fault_status_changes; } // Field name: reject_hor_vel { uint8_t tmp; cdr >> tmp; ros_message->reject_hor_vel = tmp ? true : false; } // Field name: reject_ver_vel { uint8_t tmp; cdr >> tmp; ros_message->reject_ver_vel = tmp ? true : false; } // Field name: reject_hor_pos { uint8_t tmp; cdr >> tmp; ros_message->reject_hor_pos = tmp ? true : false; } // Field name: reject_ver_pos { uint8_t tmp; cdr >> tmp; ros_message->reject_ver_pos = tmp ? true : false; } // Field name: reject_mag_x { uint8_t tmp; cdr >> tmp; ros_message->reject_mag_x = tmp ? true : false; } // Field name: reject_mag_y { uint8_t tmp; cdr >> tmp; ros_message->reject_mag_y = tmp ? true : false; } // Field name: reject_mag_z { uint8_t tmp; cdr >> tmp; ros_message->reject_mag_z = tmp ? true : false; } // Field name: reject_yaw { uint8_t tmp; cdr >> tmp; ros_message->reject_yaw = tmp ? true : false; } // Field name: reject_airspeed { uint8_t tmp; cdr >> tmp; ros_message->reject_airspeed = tmp ? true : false; } // Field name: reject_sideslip { uint8_t tmp; cdr >> tmp; ros_message->reject_sideslip = tmp ? true : false; } // Field name: reject_hagl { uint8_t tmp; cdr >> tmp; ros_message->reject_hagl = tmp ? true : false; } // Field name: reject_optflow_x { uint8_t tmp; cdr >> tmp; ros_message->reject_optflow_x = tmp ? true : false; } // Field name: reject_optflow_y { uint8_t tmp; cdr >> tmp; ros_message->reject_optflow_y = tmp ? true : false; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__EstimatorStatusFlags( const void * untyped_ros_message, size_t current_alignment) { const _EstimatorStatusFlags__ros_msg_type * ros_message = static_cast<const _EstimatorStatusFlags__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name timestamp_sample { size_t item_size = sizeof(ros_message->timestamp_sample); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name control_status_changes { size_t item_size = sizeof(ros_message->control_status_changes); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cs_tilt_align { size_t item_size = sizeof(ros_message->cs_tilt_align); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cs_yaw_align { size_t item_size = sizeof(ros_message->cs_yaw_align); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cs_gps { size_t item_size = sizeof(ros_message->cs_gps); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cs_opt_flow { size_t item_size = sizeof(ros_message->cs_opt_flow); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cs_mag_hdg { size_t item_size = sizeof(ros_message->cs_mag_hdg); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cs_mag_3d { size_t item_size = sizeof(ros_message->cs_mag_3d); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cs_mag_dec { size_t item_size = sizeof(ros_message->cs_mag_dec); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cs_in_air { size_t item_size = sizeof(ros_message->cs_in_air); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cs_wind { size_t item_size = sizeof(ros_message->cs_wind); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cs_baro_hgt { size_t item_size = sizeof(ros_message->cs_baro_hgt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cs_rng_hgt { size_t item_size = sizeof(ros_message->cs_rng_hgt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cs_gps_hgt { size_t item_size = sizeof(ros_message->cs_gps_hgt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cs_ev_pos { size_t item_size = sizeof(ros_message->cs_ev_pos); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cs_ev_yaw { size_t item_size = sizeof(ros_message->cs_ev_yaw); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cs_ev_hgt { size_t item_size = sizeof(ros_message->cs_ev_hgt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cs_fuse_beta { size_t item_size = sizeof(ros_message->cs_fuse_beta); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cs_mag_field_disturbed { size_t item_size = sizeof(ros_message->cs_mag_field_disturbed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cs_fixed_wing { size_t item_size = sizeof(ros_message->cs_fixed_wing); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cs_mag_fault { size_t item_size = sizeof(ros_message->cs_mag_fault); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cs_fuse_aspd { size_t item_size = sizeof(ros_message->cs_fuse_aspd); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cs_gnd_effect { size_t item_size = sizeof(ros_message->cs_gnd_effect); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cs_rng_stuck { size_t item_size = sizeof(ros_message->cs_rng_stuck); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cs_gps_yaw { size_t item_size = sizeof(ros_message->cs_gps_yaw); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cs_mag_aligned_in_flight { size_t item_size = sizeof(ros_message->cs_mag_aligned_in_flight); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cs_ev_vel { size_t item_size = sizeof(ros_message->cs_ev_vel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cs_synthetic_mag_z { size_t item_size = sizeof(ros_message->cs_synthetic_mag_z); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cs_vehicle_at_rest { size_t item_size = sizeof(ros_message->cs_vehicle_at_rest); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name fault_status_changes { size_t item_size = sizeof(ros_message->fault_status_changes); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name fs_bad_mag_x { size_t item_size = sizeof(ros_message->fs_bad_mag_x); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name fs_bad_mag_y { size_t item_size = sizeof(ros_message->fs_bad_mag_y); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name fs_bad_mag_z { size_t item_size = sizeof(ros_message->fs_bad_mag_z); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name fs_bad_hdg { size_t item_size = sizeof(ros_message->fs_bad_hdg); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name fs_bad_mag_decl { size_t item_size = sizeof(ros_message->fs_bad_mag_decl); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name fs_bad_airspeed { size_t item_size = sizeof(ros_message->fs_bad_airspeed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name fs_bad_sideslip { size_t item_size = sizeof(ros_message->fs_bad_sideslip); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name fs_bad_optflow_x { size_t item_size = sizeof(ros_message->fs_bad_optflow_x); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name fs_bad_optflow_y { size_t item_size = sizeof(ros_message->fs_bad_optflow_y); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name fs_bad_vel_n { size_t item_size = sizeof(ros_message->fs_bad_vel_n); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name fs_bad_vel_e { size_t item_size = sizeof(ros_message->fs_bad_vel_e); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name fs_bad_vel_d { size_t item_size = sizeof(ros_message->fs_bad_vel_d); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name fs_bad_pos_n { size_t item_size = sizeof(ros_message->fs_bad_pos_n); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name fs_bad_pos_e { size_t item_size = sizeof(ros_message->fs_bad_pos_e); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name fs_bad_pos_d { size_t item_size = sizeof(ros_message->fs_bad_pos_d); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name fs_bad_acc_bias { size_t item_size = sizeof(ros_message->fs_bad_acc_bias); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name fs_bad_acc_vertical { size_t item_size = sizeof(ros_message->fs_bad_acc_vertical); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name fs_bad_acc_clipping { size_t item_size = sizeof(ros_message->fs_bad_acc_clipping); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name innovation_fault_status_changes { size_t item_size = sizeof(ros_message->innovation_fault_status_changes); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name reject_hor_vel { size_t item_size = sizeof(ros_message->reject_hor_vel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name reject_ver_vel { size_t item_size = sizeof(ros_message->reject_ver_vel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name reject_hor_pos { size_t item_size = sizeof(ros_message->reject_hor_pos); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name reject_ver_pos { size_t item_size = sizeof(ros_message->reject_ver_pos); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name reject_mag_x { size_t item_size = sizeof(ros_message->reject_mag_x); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name reject_mag_y { size_t item_size = sizeof(ros_message->reject_mag_y); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name reject_mag_z { size_t item_size = sizeof(ros_message->reject_mag_z); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name reject_yaw { size_t item_size = sizeof(ros_message->reject_yaw); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name reject_airspeed { size_t item_size = sizeof(ros_message->reject_airspeed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name reject_sideslip { size_t item_size = sizeof(ros_message->reject_sideslip); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name reject_hagl { size_t item_size = sizeof(ros_message->reject_hagl); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name reject_optflow_x { size_t item_size = sizeof(ros_message->reject_optflow_x); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name reject_optflow_y { size_t item_size = sizeof(ros_message->reject_optflow_y); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _EstimatorStatusFlags__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__EstimatorStatusFlags( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__EstimatorStatusFlags( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: timestamp_sample { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: control_status_changes { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: cs_tilt_align { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: cs_yaw_align { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: cs_gps { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: cs_opt_flow { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: cs_mag_hdg { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: cs_mag_3d { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: cs_mag_dec { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: cs_in_air { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: cs_wind { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: cs_baro_hgt { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: cs_rng_hgt { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: cs_gps_hgt { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: cs_ev_pos { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: cs_ev_yaw { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: cs_ev_hgt { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: cs_fuse_beta { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: cs_mag_field_disturbed { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: cs_fixed_wing { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: cs_mag_fault { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: cs_fuse_aspd { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: cs_gnd_effect { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: cs_rng_stuck { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: cs_gps_yaw { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: cs_mag_aligned_in_flight { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: cs_ev_vel { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: cs_synthetic_mag_z { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: cs_vehicle_at_rest { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: fault_status_changes { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: fs_bad_mag_x { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: fs_bad_mag_y { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: fs_bad_mag_z { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: fs_bad_hdg { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: fs_bad_mag_decl { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: fs_bad_airspeed { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: fs_bad_sideslip { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: fs_bad_optflow_x { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: fs_bad_optflow_y { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: fs_bad_vel_n { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: fs_bad_vel_e { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: fs_bad_vel_d { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: fs_bad_pos_n { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: fs_bad_pos_e { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: fs_bad_pos_d { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: fs_bad_acc_bias { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: fs_bad_acc_vertical { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: fs_bad_acc_clipping { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: innovation_fault_status_changes { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: reject_hor_vel { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: reject_ver_vel { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: reject_hor_pos { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: reject_ver_pos { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: reject_mag_x { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: reject_mag_y { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: reject_mag_z { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: reject_yaw { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: reject_airspeed { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: reject_sideslip { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: reject_hagl { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: reject_optflow_x { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: reject_optflow_y { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _EstimatorStatusFlags__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__EstimatorStatusFlags( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_EstimatorStatusFlags = { "px4_msgs::msg", "EstimatorStatusFlags", _EstimatorStatusFlags__cdr_serialize, _EstimatorStatusFlags__cdr_deserialize, _EstimatorStatusFlags__get_serialized_size, _EstimatorStatusFlags__max_serialized_size }; static rosidl_message_type_support_t _EstimatorStatusFlags__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_EstimatorStatusFlags, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, EstimatorStatusFlags)() { return &_EstimatorStatusFlags__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/generator_status__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/GeneratorStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/generator_status__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__GeneratorStatus__init(px4_msgs__msg__GeneratorStatus * msg) { if (!msg) { return false; } // timestamp // status // battery_current // load_current // power_generated // bus_voltage // bat_current_setpoint // runtime // time_until_maintenance // generator_speed // rectifier_temperature // generator_temperature return true; } void px4_msgs__msg__GeneratorStatus__fini(px4_msgs__msg__GeneratorStatus * msg) { if (!msg) { return; } // timestamp // status // battery_current // load_current // power_generated // bus_voltage // bat_current_setpoint // runtime // time_until_maintenance // generator_speed // rectifier_temperature // generator_temperature } px4_msgs__msg__GeneratorStatus * px4_msgs__msg__GeneratorStatus__create() { px4_msgs__msg__GeneratorStatus * msg = (px4_msgs__msg__GeneratorStatus *)malloc(sizeof(px4_msgs__msg__GeneratorStatus)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__GeneratorStatus)); bool success = px4_msgs__msg__GeneratorStatus__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__GeneratorStatus__destroy(px4_msgs__msg__GeneratorStatus * msg) { if (msg) { px4_msgs__msg__GeneratorStatus__fini(msg); } free(msg); } bool px4_msgs__msg__GeneratorStatus__Sequence__init(px4_msgs__msg__GeneratorStatus__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__GeneratorStatus * data = NULL; if (size) { data = (px4_msgs__msg__GeneratorStatus *)calloc(size, sizeof(px4_msgs__msg__GeneratorStatus)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__GeneratorStatus__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__GeneratorStatus__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__GeneratorStatus__Sequence__fini(px4_msgs__msg__GeneratorStatus__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__GeneratorStatus__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__GeneratorStatus__Sequence * px4_msgs__msg__GeneratorStatus__Sequence__create(size_t size) { px4_msgs__msg__GeneratorStatus__Sequence * array = (px4_msgs__msg__GeneratorStatus__Sequence *)malloc(sizeof(px4_msgs__msg__GeneratorStatus__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__GeneratorStatus__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__GeneratorStatus__Sequence__destroy(px4_msgs__msg__GeneratorStatus__Sequence * array) { if (array) { px4_msgs__msg__GeneratorStatus__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/logger_status__traits.hpp // generated from rosidl_generator_cpp/resource/idl__traits.hpp.em // with input from px4_msgs:msg/LoggerStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__LOGGER_STATUS__TRAITS_HPP_ #define PX4_MSGS__MSG__LOGGER_STATUS__TRAITS_HPP_ #include "px4_msgs/msg/logger_status__struct.hpp" #include <rosidl_generator_cpp/traits.hpp> #include <stdint.h> #include <type_traits> namespace rosidl_generator_traits { template<> inline const char * data_type<px4_msgs::msg::LoggerStatus>() { return "px4_msgs::msg::LoggerStatus"; } template<> struct has_fixed_size<px4_msgs::msg::LoggerStatus> : std::integral_constant<bool, true> {}; template<> struct has_bounded_size<px4_msgs::msg::LoggerStatus> : std::integral_constant<bool, true> {}; template<> struct is_message<px4_msgs::msg::LoggerStatus> : std::true_type {}; } // namespace rosidl_generator_traits #endif // PX4_MSGS__MSG__LOGGER_STATUS__TRAITS_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/orb_test.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/OrbTest.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORB_TEST_H_ #define PX4_MSGS__MSG__ORB_TEST_H_ #include "px4_msgs/msg/orb_test__struct.h" #include "px4_msgs/msg/orb_test__functions.h" #include "px4_msgs/msg/orb_test__type_support.h" #endif // PX4_MSGS__MSG__ORB_TEST_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_outputs__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/ActuatorOutputs.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_OUTPUTS__STRUCT_H_ #define PX4_MSGS__MSG__ACTUATOR_OUTPUTS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'NUM_ACTUATOR_OUTPUTS'. enum { px4_msgs__msg__ActuatorOutputs__NUM_ACTUATOR_OUTPUTS = 16 }; /// Constant 'NUM_ACTUATOR_OUTPUT_GROUPS'. enum { px4_msgs__msg__ActuatorOutputs__NUM_ACTUATOR_OUTPUT_GROUPS = 4 }; // Struct defined in msg/ActuatorOutputs in the package px4_msgs. typedef struct px4_msgs__msg__ActuatorOutputs { uint64_t timestamp; uint32_t noutputs; float output[16]; } px4_msgs__msg__ActuatorOutputs; // Struct for a sequence of px4_msgs__msg__ActuatorOutputs. typedef struct px4_msgs__msg__ActuatorOutputs__Sequence { px4_msgs__msg__ActuatorOutputs * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__ActuatorOutputs__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ACTUATOR_OUTPUTS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/uavcan_parameter_value__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/UavcanParameterValue.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/uavcan_parameter_value__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__UavcanParameterValue__init(px4_msgs__msg__UavcanParameterValue * msg) { if (!msg) { return false; } // timestamp // node_id // param_id // param_index // param_count // param_type // int_value // real_value return true; } void px4_msgs__msg__UavcanParameterValue__fini(px4_msgs__msg__UavcanParameterValue * msg) { if (!msg) { return; } // timestamp // node_id // param_id // param_index // param_count // param_type // int_value // real_value } px4_msgs__msg__UavcanParameterValue * px4_msgs__msg__UavcanParameterValue__create() { px4_msgs__msg__UavcanParameterValue * msg = (px4_msgs__msg__UavcanParameterValue *)malloc(sizeof(px4_msgs__msg__UavcanParameterValue)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__UavcanParameterValue)); bool success = px4_msgs__msg__UavcanParameterValue__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__UavcanParameterValue__destroy(px4_msgs__msg__UavcanParameterValue * msg) { if (msg) { px4_msgs__msg__UavcanParameterValue__fini(msg); } free(msg); } bool px4_msgs__msg__UavcanParameterValue__Sequence__init(px4_msgs__msg__UavcanParameterValue__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__UavcanParameterValue * data = NULL; if (size) { data = (px4_msgs__msg__UavcanParameterValue *)calloc(size, sizeof(px4_msgs__msg__UavcanParameterValue)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__UavcanParameterValue__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__UavcanParameterValue__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__UavcanParameterValue__Sequence__fini(px4_msgs__msg__UavcanParameterValue__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__UavcanParameterValue__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__UavcanParameterValue__Sequence * px4_msgs__msg__UavcanParameterValue__Sequence__create(size_t size) { px4_msgs__msg__UavcanParameterValue__Sequence * array = (px4_msgs__msg__UavcanParameterValue__Sequence *)malloc(sizeof(px4_msgs__msg__UavcanParameterValue__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__UavcanParameterValue__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__UavcanParameterValue__Sequence__destroy(px4_msgs__msg__UavcanParameterValue__Sequence * array) { if (array) { px4_msgs__msg__UavcanParameterValue__Sequence__fini(array); } free(array); } <file_sep>/build/multi_rtd_interfaces/rosidl_generator_cpp/multi_rtd_interfaces/msg/robot_trajectory__traits.hpp // generated from rosidl_generator_cpp/resource/idl__traits.hpp.em // with input from multi_rtd_interfaces:msg/RobotTrajectory.idl // generated code does not contain a copyright notice #ifndef MULTI_RTD_INTERFACES__MSG__ROBOT_TRAJECTORY__TRAITS_HPP_ #define MULTI_RTD_INTERFACES__MSG__ROBOT_TRAJECTORY__TRAITS_HPP_ #include "multi_rtd_interfaces/msg/robot_trajectory__struct.hpp" #include <rosidl_generator_cpp/traits.hpp> #include <stdint.h> #include <type_traits> // Include directives for member types // Member 'trajectory' #include "trajectory_msgs/msg/joint_trajectory__traits.hpp" namespace rosidl_generator_traits { template<> inline const char * data_type<multi_rtd_interfaces::msg::RobotTrajectory>() { return "multi_rtd_interfaces::msg::RobotTrajectory"; } template<> struct has_fixed_size<multi_rtd_interfaces::msg::RobotTrajectory> : std::integral_constant<bool, false> {}; template<> struct has_bounded_size<multi_rtd_interfaces::msg::RobotTrajectory> : std::integral_constant<bool, false> {}; template<> struct is_message<multi_rtd_interfaces::msg::RobotTrajectory> : std::true_type {}; } // namespace rosidl_generator_traits #endif // MULTI_RTD_INTERFACES__MSG__ROBOT_TRAJECTORY__TRAITS_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/battery_status__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/BatteryStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__BATTERY_STATUS__STRUCT_H_ #define PX4_MSGS__MSG__BATTERY_STATUS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'BATTERY_SOURCE_POWER_MODULE'. enum { px4_msgs__msg__BatteryStatus__BATTERY_SOURCE_POWER_MODULE = 0 }; /// Constant 'BATTERY_SOURCE_EXTERNAL'. enum { px4_msgs__msg__BatteryStatus__BATTERY_SOURCE_EXTERNAL = 1 }; /// Constant 'BATTERY_SOURCE_ESCS'. enum { px4_msgs__msg__BatteryStatus__BATTERY_SOURCE_ESCS = 2 }; /// Constant 'BATTERY_WARNING_NONE'. enum { px4_msgs__msg__BatteryStatus__BATTERY_WARNING_NONE = 0 }; /// Constant 'BATTERY_WARNING_LOW'. enum { px4_msgs__msg__BatteryStatus__BATTERY_WARNING_LOW = 1 }; /// Constant 'BATTERY_WARNING_CRITICAL'. enum { px4_msgs__msg__BatteryStatus__BATTERY_WARNING_CRITICAL = 2 }; /// Constant 'BATTERY_WARNING_EMERGENCY'. enum { px4_msgs__msg__BatteryStatus__BATTERY_WARNING_EMERGENCY = 3 }; /// Constant 'BATTERY_WARNING_FAILED'. enum { px4_msgs__msg__BatteryStatus__BATTERY_WARNING_FAILED = 4 }; /// Constant 'MAX_INSTANCES'. enum { px4_msgs__msg__BatteryStatus__MAX_INSTANCES = 4 }; // Struct defined in msg/BatteryStatus in the package px4_msgs. typedef struct px4_msgs__msg__BatteryStatus { uint64_t timestamp; float voltage_v; float voltage_filtered_v; float current_a; float current_filtered_a; float average_current_a; float discharged_mah; float remaining; float scale; float temperature; int32_t cell_count; bool connected; uint8_t source; uint8_t priority; uint16_t capacity; uint16_t cycle_count; uint16_t run_time_to_empty; uint16_t average_time_to_empty; uint16_t serial_number; uint16_t manufacture_date; uint16_t state_of_health; uint16_t max_error; uint8_t id; uint16_t interface_error; float voltage_cell_v[14]; float max_cell_voltage_delta; bool is_powering_off; uint8_t warning; float average_power; float available_energy; float remaining_capacity; float design_capacity; uint16_t average_time_to_full; uint16_t over_discharge_count; float nominal_voltage; } px4_msgs__msg__BatteryStatus; // Struct for a sequence of px4_msgs__msg__BatteryStatus. typedef struct px4_msgs__msg__BatteryStatus__Sequence { px4_msgs__msg__BatteryStatus * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__BatteryStatus__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__BATTERY_STATUS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/airspeed_wind.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__AIRSPEED_WIND_HPP_ #define PX4_MSGS__MSG__AIRSPEED_WIND_HPP_ #include "px4_msgs/msg/airspeed_wind__struct.hpp" #include "px4_msgs/msg/airspeed_wind__traits.hpp" #endif // PX4_MSGS__MSG__AIRSPEED_WIND_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/actuator_armed__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/ActuatorArmed.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_ARMED__STRUCT_HPP_ #define PX4_MSGS__MSG__ACTUATOR_ARMED__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__ActuatorArmed __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__ActuatorArmed __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct ActuatorArmed_ { using Type = ActuatorArmed_<ContainerAllocator>; explicit ActuatorArmed_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->armed = false; this->prearmed = false; this->ready_to_arm = false; this->lockdown = false; this->manual_lockdown = false; this->force_failsafe = false; this->in_esc_calibration_mode = false; this->soft_stop = false; } } explicit ActuatorArmed_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->armed = false; this->prearmed = false; this->ready_to_arm = false; this->lockdown = false; this->manual_lockdown = false; this->force_failsafe = false; this->in_esc_calibration_mode = false; this->soft_stop = false; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _armed_type = bool; _armed_type armed; using _prearmed_type = bool; _prearmed_type prearmed; using _ready_to_arm_type = bool; _ready_to_arm_type ready_to_arm; using _lockdown_type = bool; _lockdown_type lockdown; using _manual_lockdown_type = bool; _manual_lockdown_type manual_lockdown; using _force_failsafe_type = bool; _force_failsafe_type force_failsafe; using _in_esc_calibration_mode_type = bool; _in_esc_calibration_mode_type in_esc_calibration_mode; using _soft_stop_type = bool; _soft_stop_type soft_stop; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__armed( const bool & _arg) { this->armed = _arg; return *this; } Type & set__prearmed( const bool & _arg) { this->prearmed = _arg; return *this; } Type & set__ready_to_arm( const bool & _arg) { this->ready_to_arm = _arg; return *this; } Type & set__lockdown( const bool & _arg) { this->lockdown = _arg; return *this; } Type & set__manual_lockdown( const bool & _arg) { this->manual_lockdown = _arg; return *this; } Type & set__force_failsafe( const bool & _arg) { this->force_failsafe = _arg; return *this; } Type & set__in_esc_calibration_mode( const bool & _arg) { this->in_esc_calibration_mode = _arg; return *this; } Type & set__soft_stop( const bool & _arg) { this->soft_stop = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::ActuatorArmed_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::ActuatorArmed_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::ActuatorArmed_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::ActuatorArmed_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::ActuatorArmed_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::ActuatorArmed_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::ActuatorArmed_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::ActuatorArmed_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::ActuatorArmed_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::ActuatorArmed_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__ActuatorArmed std::shared_ptr<px4_msgs::msg::ActuatorArmed_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__ActuatorArmed std::shared_ptr<px4_msgs::msg::ActuatorArmed_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const ActuatorArmed_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->armed != other.armed) { return false; } if (this->prearmed != other.prearmed) { return false; } if (this->ready_to_arm != other.ready_to_arm) { return false; } if (this->lockdown != other.lockdown) { return false; } if (this->manual_lockdown != other.manual_lockdown) { return false; } if (this->force_failsafe != other.force_failsafe) { return false; } if (this->in_esc_calibration_mode != other.in_esc_calibration_mode) { return false; } if (this->soft_stop != other.soft_stop) { return false; } return true; } bool operator!=(const ActuatorArmed_ & other) const { return !this->operator==(other); } }; // struct ActuatorArmed_ // alias to use template instance with default allocator using ActuatorArmed = px4_msgs::msg::ActuatorArmed_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__ACTUATOR_ARMED__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_global_position__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/EstimatorGlobalPosition.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_GLOBAL_POSITION__STRUCT_H_ #define PX4_MSGS__MSG__ESTIMATOR_GLOBAL_POSITION__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/EstimatorGlobalPosition in the package px4_msgs. typedef struct px4_msgs__msg__EstimatorGlobalPosition { uint64_t timestamp; uint64_t timestamp_sample; double lat; double lon; float alt; float alt_ellipsoid; float delta_alt; uint8_t lat_lon_reset_counter; uint8_t alt_reset_counter; float eph; float epv; float terrain_alt; bool terrain_alt_valid; bool dead_reckoning; } px4_msgs__msg__EstimatorGlobalPosition; // Struct for a sequence of px4_msgs__msg__EstimatorGlobalPosition. typedef struct px4_msgs__msg__EstimatorGlobalPosition__Sequence { px4_msgs__msg__EstimatorGlobalPosition * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__EstimatorGlobalPosition__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ESTIMATOR_GLOBAL_POSITION__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/geofence_result__rosidl_typesupport_introspection_cpp.hpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__rosidl_typesupport_introspection_cpp.h.em // with input from px4_msgs:msg/GeofenceResult.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GEOFENCE_RESULT__ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_HPP_ #define PX4_MSGS__MSG__GEOFENCE_RESULT__ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_HPP_ #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" #ifdef __cplusplus extern "C" { #endif // TODO(dirk-thomas) these visibility macros should be message package specific ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, GeofenceResult)(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__GEOFENCE_RESULT__ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleStatus.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/vehicle_status__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void VehicleStatus_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::VehicleStatus(_init); } void VehicleStatus_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::VehicleStatus *>(message_memory); typed_message->~VehicleStatus(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember VehicleStatus_message_member_array[31] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "nav_state", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, nav_state), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "nav_state_timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, nav_state_timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "arming_state", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, arming_state), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "hil_state", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, hil_state), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "failsafe", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, failsafe), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "failsafe_timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, failsafe_timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "system_type", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, system_type), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "system_id", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, system_id), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "component_id", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, component_id), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vehicle_type", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, vehicle_type), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "is_vtol", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, is_vtol), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "is_vtol_tailsitter", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, is_vtol_tailsitter), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vtol_fw_permanent_stab", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, vtol_fw_permanent_stab), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "in_transition_mode", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, in_transition_mode), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "in_transition_to_fw", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, in_transition_to_fw), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rc_signal_lost", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, rc_signal_lost), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rc_input_mode", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, rc_input_mode), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "data_link_lost", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, data_link_lost), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "data_link_lost_counter", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, data_link_lost_counter), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "high_latency_data_link_lost", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, high_latency_data_link_lost), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "engine_failure", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, engine_failure), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "mission_failure", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, mission_failure), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "failure_detector_status", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, failure_detector_status), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "onboard_control_sensors_present", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, onboard_control_sensors_present), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "onboard_control_sensors_enabled", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, onboard_control_sensors_enabled), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "onboard_control_sensors_health", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, onboard_control_sensors_health), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "latest_arming_reason", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, latest_arming_reason), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "latest_disarming_reason", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, latest_disarming_reason), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "armed_time", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, armed_time), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "takeoff_time", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatus, takeoff_time), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers VehicleStatus_message_members = { "px4_msgs::msg", // message namespace "VehicleStatus", // message name 31, // number of fields sizeof(px4_msgs::msg::VehicleStatus), VehicleStatus_message_member_array, // message members VehicleStatus_init_function, // function to initialize message memory (memory has to be allocated) VehicleStatus_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t VehicleStatus_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &VehicleStatus_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleStatus>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleStatus_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, VehicleStatus)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_local_position_groundtruth.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleLocalPositionGroundtruth.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_GROUNDTRUTH_H_ #define PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_GROUNDTRUTH_H_ #include "px4_msgs/msg/vehicle_local_position_groundtruth__struct.h" #include "px4_msgs/msg/vehicle_local_position_groundtruth__functions.h" #include "px4_msgs/msg/vehicle_local_position_groundtruth__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_GROUNDTRUTH_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_system_power.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/SystemPower.idl # generated code does not contain a copyright notice # Import statements for member types # Member 'sensors3v3' import numpy # noqa: E402, I100 import rosidl_parser.definition # noqa: E402, I100 class Metaclass_SystemPower(type): """Metaclass of message 'SystemPower'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'BRICK1_VALID_SHIFTS': 0, 'BRICK1_VALID_MASK': 1, 'BRICK2_VALID_SHIFTS': 1, 'BRICK2_VALID_MASK': 2, 'BRICK3_VALID_SHIFTS': 2, 'BRICK3_VALID_MASK': 4, 'BRICK4_VALID_SHIFTS': 3, 'BRICK4_VALID_MASK': 8, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.SystemPower') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__system_power cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__system_power cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__system_power cls._TYPE_SUPPORT = module.type_support_msg__msg__system_power cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__system_power @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'BRICK1_VALID_SHIFTS': cls.__constants['BRICK1_VALID_SHIFTS'], 'BRICK1_VALID_MASK': cls.__constants['BRICK1_VALID_MASK'], 'BRICK2_VALID_SHIFTS': cls.__constants['BRICK2_VALID_SHIFTS'], 'BRICK2_VALID_MASK': cls.__constants['BRICK2_VALID_MASK'], 'BRICK3_VALID_SHIFTS': cls.__constants['BRICK3_VALID_SHIFTS'], 'BRICK3_VALID_MASK': cls.__constants['BRICK3_VALID_MASK'], 'BRICK4_VALID_SHIFTS': cls.__constants['BRICK4_VALID_SHIFTS'], 'BRICK4_VALID_MASK': cls.__constants['BRICK4_VALID_MASK'], } @property def BRICK1_VALID_SHIFTS(self): """Message constant 'BRICK1_VALID_SHIFTS'.""" return Metaclass_SystemPower.__constants['BRICK1_VALID_SHIFTS'] @property def BRICK1_VALID_MASK(self): """Message constant 'BRICK1_VALID_MASK'.""" return Metaclass_SystemPower.__constants['BRICK1_VALID_MASK'] @property def BRICK2_VALID_SHIFTS(self): """Message constant 'BRICK2_VALID_SHIFTS'.""" return Metaclass_SystemPower.__constants['BRICK2_VALID_SHIFTS'] @property def BRICK2_VALID_MASK(self): """Message constant 'BRICK2_VALID_MASK'.""" return Metaclass_SystemPower.__constants['BRICK2_VALID_MASK'] @property def BRICK3_VALID_SHIFTS(self): """Message constant 'BRICK3_VALID_SHIFTS'.""" return Metaclass_SystemPower.__constants['BRICK3_VALID_SHIFTS'] @property def BRICK3_VALID_MASK(self): """Message constant 'BRICK3_VALID_MASK'.""" return Metaclass_SystemPower.__constants['BRICK3_VALID_MASK'] @property def BRICK4_VALID_SHIFTS(self): """Message constant 'BRICK4_VALID_SHIFTS'.""" return Metaclass_SystemPower.__constants['BRICK4_VALID_SHIFTS'] @property def BRICK4_VALID_MASK(self): """Message constant 'BRICK4_VALID_MASK'.""" return Metaclass_SystemPower.__constants['BRICK4_VALID_MASK'] class SystemPower(metaclass=Metaclass_SystemPower): """ Message class 'SystemPower'. Constants: BRICK1_VALID_SHIFTS BRICK1_VALID_MASK BRICK2_VALID_SHIFTS BRICK2_VALID_MASK BRICK3_VALID_SHIFTS BRICK3_VALID_MASK BRICK4_VALID_SHIFTS BRICK4_VALID_MASK """ __slots__ = [ '_timestamp', '_voltage5v_v', '_sensors3v3', '_sensors3v3_valid', '_usb_connected', '_brick_valid', '_usb_valid', '_servo_valid', '_periph_5v_oc', '_hipower_5v_oc', '_comp_5v_valid', '_can1_gps1_5v_valid', ] _fields_and_field_types = { 'timestamp': 'uint64', 'voltage5v_v': 'float', 'sensors3v3': 'float[4]', 'sensors3v3_valid': 'uint8', 'usb_connected': 'uint8', 'brick_valid': 'uint8', 'usb_valid': 'uint8', 'servo_valid': 'uint8', 'periph_5v_oc': 'uint8', 'hipower_5v_oc': 'uint8', 'comp_5v_valid': 'uint8', 'can1_gps1_5v_valid': 'uint8', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 4), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.voltage5v_v = kwargs.get('voltage5v_v', float()) if 'sensors3v3' not in kwargs: self.sensors3v3 = numpy.zeros(4, dtype=numpy.float32) else: self.sensors3v3 = numpy.array(kwargs.get('sensors3v3'), dtype=numpy.float32) assert self.sensors3v3.shape == (4, ) self.sensors3v3_valid = kwargs.get('sensors3v3_valid', int()) self.usb_connected = kwargs.get('usb_connected', int()) self.brick_valid = kwargs.get('brick_valid', int()) self.usb_valid = kwargs.get('usb_valid', int()) self.servo_valid = kwargs.get('servo_valid', int()) self.periph_5v_oc = kwargs.get('periph_5v_oc', int()) self.hipower_5v_oc = kwargs.get('hipower_5v_oc', int()) self.comp_5v_valid = kwargs.get('comp_5v_valid', int()) self.can1_gps1_5v_valid = kwargs.get('can1_gps1_5v_valid', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.voltage5v_v != other.voltage5v_v: return False if all(self.sensors3v3 != other.sensors3v3): return False if self.sensors3v3_valid != other.sensors3v3_valid: return False if self.usb_connected != other.usb_connected: return False if self.brick_valid != other.brick_valid: return False if self.usb_valid != other.usb_valid: return False if self.servo_valid != other.servo_valid: return False if self.periph_5v_oc != other.periph_5v_oc: return False if self.hipower_5v_oc != other.hipower_5v_oc: return False if self.comp_5v_valid != other.comp_5v_valid: return False if self.can1_gps1_5v_valid != other.can1_gps1_5v_valid: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def voltage5v_v(self): """Message field 'voltage5v_v'.""" return self._voltage5v_v @voltage5v_v.setter def voltage5v_v(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'voltage5v_v' field must be of type 'float'" self._voltage5v_v = value @property def sensors3v3(self): """Message field 'sensors3v3'.""" return self._sensors3v3 @sensors3v3.setter def sensors3v3(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'sensors3v3' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 4, \ "The 'sensors3v3' numpy.ndarray() must have a size of 4" self._sensors3v3 = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 4 and all(isinstance(v, float) for v in value) and True), \ "The 'sensors3v3' field must be a set or sequence with length 4 and each value of type 'float'" self._sensors3v3 = numpy.array(value, dtype=numpy.float32) @property def sensors3v3_valid(self): """Message field 'sensors3v3_valid'.""" return self._sensors3v3_valid @sensors3v3_valid.setter def sensors3v3_valid(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'sensors3v3_valid' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'sensors3v3_valid' field must be an unsigned integer in [0, 255]" self._sensors3v3_valid = value @property def usb_connected(self): """Message field 'usb_connected'.""" return self._usb_connected @usb_connected.setter def usb_connected(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'usb_connected' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'usb_connected' field must be an unsigned integer in [0, 255]" self._usb_connected = value @property def brick_valid(self): """Message field 'brick_valid'.""" return self._brick_valid @brick_valid.setter def brick_valid(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'brick_valid' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'brick_valid' field must be an unsigned integer in [0, 255]" self._brick_valid = value @property def usb_valid(self): """Message field 'usb_valid'.""" return self._usb_valid @usb_valid.setter def usb_valid(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'usb_valid' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'usb_valid' field must be an unsigned integer in [0, 255]" self._usb_valid = value @property def servo_valid(self): """Message field 'servo_valid'.""" return self._servo_valid @servo_valid.setter def servo_valid(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'servo_valid' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'servo_valid' field must be an unsigned integer in [0, 255]" self._servo_valid = value @property def periph_5v_oc(self): """Message field 'periph_5v_oc'.""" return self._periph_5v_oc @periph_5v_oc.setter def periph_5v_oc(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'periph_5v_oc' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'periph_5v_oc' field must be an unsigned integer in [0, 255]" self._periph_5v_oc = value @property def hipower_5v_oc(self): """Message field 'hipower_5v_oc'.""" return self._hipower_5v_oc @hipower_5v_oc.setter def hipower_5v_oc(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'hipower_5v_oc' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'hipower_5v_oc' field must be an unsigned integer in [0, 255]" self._hipower_5v_oc = value @property def comp_5v_valid(self): """Message field 'comp_5v_valid'.""" return self._comp_5v_valid @comp_5v_valid.setter def comp_5v_valid(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'comp_5v_valid' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'comp_5v_valid' field must be an unsigned integer in [0, 255]" self._comp_5v_valid = value @property def can1_gps1_5v_valid(self): """Message field 'can1_gps1_5v_valid'.""" return self._can1_gps1_5v_valid @can1_gps1_5v_valid.setter def can1_gps1_5v_valid(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'can1_gps1_5v_valid' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'can1_gps1_5v_valid' field must be an unsigned integer in [0, 255]" self._can1_gps1_5v_valid = value <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_gimbal_device_set_attitude.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/GimbalDeviceSetAttitude.idl # generated code does not contain a copyright notice # Import statements for member types # Member 'q' import numpy # noqa: E402, I100 import rosidl_parser.definition # noqa: E402, I100 class Metaclass_GimbalDeviceSetAttitude(type): """Metaclass of message 'GimbalDeviceSetAttitude'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'GIMBAL_DEVICE_FLAGS_RETRACT': 1, 'GIMBAL_DEVICE_FLAGS_NEUTRAL': 2, 'GIMBAL_DEVICE_FLAGS_ROLL_LOCK': 4, 'GIMBAL_DEVICE_FLAGS_PITCH_LOCK': 8, 'GIMBAL_DEVICE_FLAGS_YAW_LOCK': 16, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.GimbalDeviceSetAttitude') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__gimbal_device_set_attitude cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__gimbal_device_set_attitude cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__gimbal_device_set_attitude cls._TYPE_SUPPORT = module.type_support_msg__msg__gimbal_device_set_attitude cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__gimbal_device_set_attitude @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'GIMBAL_DEVICE_FLAGS_RETRACT': cls.__constants['GIMBAL_DEVICE_FLAGS_RETRACT'], 'GIMBAL_DEVICE_FLAGS_NEUTRAL': cls.__constants['GIMBAL_DEVICE_FLAGS_NEUTRAL'], 'GIMBAL_DEVICE_FLAGS_ROLL_LOCK': cls.__constants['GIMBAL_DEVICE_FLAGS_ROLL_LOCK'], 'GIMBAL_DEVICE_FLAGS_PITCH_LOCK': cls.__constants['GIMBAL_DEVICE_FLAGS_PITCH_LOCK'], 'GIMBAL_DEVICE_FLAGS_YAW_LOCK': cls.__constants['GIMBAL_DEVICE_FLAGS_YAW_LOCK'], } @property def GIMBAL_DEVICE_FLAGS_RETRACT(self): """Message constant 'GIMBAL_DEVICE_FLAGS_RETRACT'.""" return Metaclass_GimbalDeviceSetAttitude.__constants['GIMBAL_DEVICE_FLAGS_RETRACT'] @property def GIMBAL_DEVICE_FLAGS_NEUTRAL(self): """Message constant 'GIMBAL_DEVICE_FLAGS_NEUTRAL'.""" return Metaclass_GimbalDeviceSetAttitude.__constants['GIMBAL_DEVICE_FLAGS_NEUTRAL'] @property def GIMBAL_DEVICE_FLAGS_ROLL_LOCK(self): """Message constant 'GIMBAL_DEVICE_FLAGS_ROLL_LOCK'.""" return Metaclass_GimbalDeviceSetAttitude.__constants['GIMBAL_DEVICE_FLAGS_ROLL_LOCK'] @property def GIMBAL_DEVICE_FLAGS_PITCH_LOCK(self): """Message constant 'GIMBAL_DEVICE_FLAGS_PITCH_LOCK'.""" return Metaclass_GimbalDeviceSetAttitude.__constants['GIMBAL_DEVICE_FLAGS_PITCH_LOCK'] @property def GIMBAL_DEVICE_FLAGS_YAW_LOCK(self): """Message constant 'GIMBAL_DEVICE_FLAGS_YAW_LOCK'.""" return Metaclass_GimbalDeviceSetAttitude.__constants['GIMBAL_DEVICE_FLAGS_YAW_LOCK'] class GimbalDeviceSetAttitude(metaclass=Metaclass_GimbalDeviceSetAttitude): """ Message class 'GimbalDeviceSetAttitude'. Constants: GIMBAL_DEVICE_FLAGS_RETRACT GIMBAL_DEVICE_FLAGS_NEUTRAL GIMBAL_DEVICE_FLAGS_ROLL_LOCK GIMBAL_DEVICE_FLAGS_PITCH_LOCK GIMBAL_DEVICE_FLAGS_YAW_LOCK """ __slots__ = [ '_timestamp', '_target_system', '_target_component', '_flags', '_q', '_angular_velocity_x', '_angular_velocity_y', '_angular_velocity_z', ] _fields_and_field_types = { 'timestamp': 'uint64', 'target_system': 'uint8', 'target_component': 'uint8', 'flags': 'uint16', 'q': 'float[4]', 'angular_velocity_x': 'float', 'angular_velocity_y': 'float', 'angular_velocity_z': 'float', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 4), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.target_system = kwargs.get('target_system', int()) self.target_component = kwargs.get('target_component', int()) self.flags = kwargs.get('flags', int()) if 'q' not in kwargs: self.q = numpy.zeros(4, dtype=numpy.float32) else: self.q = numpy.array(kwargs.get('q'), dtype=numpy.float32) assert self.q.shape == (4, ) self.angular_velocity_x = kwargs.get('angular_velocity_x', float()) self.angular_velocity_y = kwargs.get('angular_velocity_y', float()) self.angular_velocity_z = kwargs.get('angular_velocity_z', float()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.target_system != other.target_system: return False if self.target_component != other.target_component: return False if self.flags != other.flags: return False if all(self.q != other.q): return False if self.angular_velocity_x != other.angular_velocity_x: return False if self.angular_velocity_y != other.angular_velocity_y: return False if self.angular_velocity_z != other.angular_velocity_z: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def target_system(self): """Message field 'target_system'.""" return self._target_system @target_system.setter def target_system(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'target_system' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'target_system' field must be an unsigned integer in [0, 255]" self._target_system = value @property def target_component(self): """Message field 'target_component'.""" return self._target_component @target_component.setter def target_component(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'target_component' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'target_component' field must be an unsigned integer in [0, 255]" self._target_component = value @property def flags(self): """Message field 'flags'.""" return self._flags @flags.setter def flags(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'flags' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'flags' field must be an unsigned integer in [0, 65535]" self._flags = value @property def q(self): """Message field 'q'.""" return self._q @q.setter def q(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'q' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 4, \ "The 'q' numpy.ndarray() must have a size of 4" self._q = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 4 and all(isinstance(v, float) for v in value) and True), \ "The 'q' field must be a set or sequence with length 4 and each value of type 'float'" self._q = numpy.array(value, dtype=numpy.float32) @property def angular_velocity_x(self): """Message field 'angular_velocity_x'.""" return self._angular_velocity_x @angular_velocity_x.setter def angular_velocity_x(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'angular_velocity_x' field must be of type 'float'" self._angular_velocity_x = value @property def angular_velocity_y(self): """Message field 'angular_velocity_y'.""" return self._angular_velocity_y @angular_velocity_y.setter def angular_velocity_y(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'angular_velocity_y' field must be of type 'float'" self._angular_velocity_y = value @property def angular_velocity_z(self): """Message field 'angular_velocity_z'.""" return self._angular_velocity_z @angular_velocity_z.setter def angular_velocity_z(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'angular_velocity_z' field must be of type 'float'" self._angular_velocity_z = value <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/gimbal_manager_information__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/GimbalManagerInformation.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GIMBAL_MANAGER_INFORMATION__STRUCT_HPP_ #define PX4_MSGS__MSG__GIMBAL_MANAGER_INFORMATION__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__GimbalManagerInformation __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__GimbalManagerInformation __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct GimbalManagerInformation_ { using Type = GimbalManagerInformation_<ContainerAllocator>; explicit GimbalManagerInformation_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->cap_flags = 0ul; this->gimbal_device_id = 0; this->roll_min = 0.0f; this->roll_max = 0.0f; this->pitch_min = 0.0f; this->pitch_max = 0.0f; this->yaw_min = 0.0f; this->yaw_max = 0.0f; } } explicit GimbalManagerInformation_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->cap_flags = 0ul; this->gimbal_device_id = 0; this->roll_min = 0.0f; this->roll_max = 0.0f; this->pitch_min = 0.0f; this->pitch_max = 0.0f; this->yaw_min = 0.0f; this->yaw_max = 0.0f; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _cap_flags_type = uint32_t; _cap_flags_type cap_flags; using _gimbal_device_id_type = uint8_t; _gimbal_device_id_type gimbal_device_id; using _roll_min_type = float; _roll_min_type roll_min; using _roll_max_type = float; _roll_max_type roll_max; using _pitch_min_type = float; _pitch_min_type pitch_min; using _pitch_max_type = float; _pitch_max_type pitch_max; using _yaw_min_type = float; _yaw_min_type yaw_min; using _yaw_max_type = float; _yaw_max_type yaw_max; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__cap_flags( const uint32_t & _arg) { this->cap_flags = _arg; return *this; } Type & set__gimbal_device_id( const uint8_t & _arg) { this->gimbal_device_id = _arg; return *this; } Type & set__roll_min( const float & _arg) { this->roll_min = _arg; return *this; } Type & set__roll_max( const float & _arg) { this->roll_max = _arg; return *this; } Type & set__pitch_min( const float & _arg) { this->pitch_min = _arg; return *this; } Type & set__pitch_max( const float & _arg) { this->pitch_max = _arg; return *this; } Type & set__yaw_min( const float & _arg) { this->yaw_min = _arg; return *this; } Type & set__yaw_max( const float & _arg) { this->yaw_max = _arg; return *this; } // constant declarations static constexpr uint32_t GIMBAL_MANAGER_CAP_FLAGS_HAS_RETRACT = 1u; static constexpr uint32_t GIMBAL_MANAGER_CAP_FLAGS_HAS_NEUTRAL = 2u; static constexpr uint32_t GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_AXIS = 4u; static constexpr uint32_t GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_FOLLOW = 8u; static constexpr uint32_t GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_LOCK = 16u; static constexpr uint32_t GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_AXIS = 32u; static constexpr uint32_t GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_FOLLOW = 64u; static constexpr uint32_t GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_LOCK = 128u; static constexpr uint32_t GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_AXIS = 256u; static constexpr uint32_t GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_FOLLOW = 512u; static constexpr uint32_t GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_LOCK = 1024u; static constexpr uint32_t GIMBAL_MANAGER_CAP_FLAGS_SUPPORTS_INFINITE_YAW = 2048u; static constexpr uint32_t GIMBAL_MANAGER_CAP_FLAGS_CAN_POINT_LOCATION_LOCAL = 65536u; static constexpr uint32_t GIMBAL_MANAGER_CAP_FLAGS_CAN_POINT_LOCATION_GLOBAL = 131072u; // pointer types using RawPtr = px4_msgs::msg::GimbalManagerInformation_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::GimbalManagerInformation_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::GimbalManagerInformation_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::GimbalManagerInformation_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::GimbalManagerInformation_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::GimbalManagerInformation_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::GimbalManagerInformation_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::GimbalManagerInformation_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::GimbalManagerInformation_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::GimbalManagerInformation_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__GimbalManagerInformation std::shared_ptr<px4_msgs::msg::GimbalManagerInformation_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__GimbalManagerInformation std::shared_ptr<px4_msgs::msg::GimbalManagerInformation_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const GimbalManagerInformation_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->cap_flags != other.cap_flags) { return false; } if (this->gimbal_device_id != other.gimbal_device_id) { return false; } if (this->roll_min != other.roll_min) { return false; } if (this->roll_max != other.roll_max) { return false; } if (this->pitch_min != other.pitch_min) { return false; } if (this->pitch_max != other.pitch_max) { return false; } if (this->yaw_min != other.yaw_min) { return false; } if (this->yaw_max != other.yaw_max) { return false; } return true; } bool operator!=(const GimbalManagerInformation_ & other) const { return !this->operator==(other); } }; // struct GimbalManagerInformation_ // alias to use template instance with default allocator using GimbalManagerInformation = px4_msgs::msg::GimbalManagerInformation_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint32_t GimbalManagerInformation_<ContainerAllocator>::GIMBAL_MANAGER_CAP_FLAGS_HAS_RETRACT; template<typename ContainerAllocator> constexpr uint32_t GimbalManagerInformation_<ContainerAllocator>::GIMBAL_MANAGER_CAP_FLAGS_HAS_NEUTRAL; template<typename ContainerAllocator> constexpr uint32_t GimbalManagerInformation_<ContainerAllocator>::GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_AXIS; template<typename ContainerAllocator> constexpr uint32_t GimbalManagerInformation_<ContainerAllocator>::GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_FOLLOW; template<typename ContainerAllocator> constexpr uint32_t GimbalManagerInformation_<ContainerAllocator>::GIMBAL_MANAGER_CAP_FLAGS_HAS_ROLL_LOCK; template<typename ContainerAllocator> constexpr uint32_t GimbalManagerInformation_<ContainerAllocator>::GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_AXIS; template<typename ContainerAllocator> constexpr uint32_t GimbalManagerInformation_<ContainerAllocator>::GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_FOLLOW; template<typename ContainerAllocator> constexpr uint32_t GimbalManagerInformation_<ContainerAllocator>::GIMBAL_MANAGER_CAP_FLAGS_HAS_PITCH_LOCK; template<typename ContainerAllocator> constexpr uint32_t GimbalManagerInformation_<ContainerAllocator>::GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_AXIS; template<typename ContainerAllocator> constexpr uint32_t GimbalManagerInformation_<ContainerAllocator>::GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_FOLLOW; template<typename ContainerAllocator> constexpr uint32_t GimbalManagerInformation_<ContainerAllocator>::GIMBAL_MANAGER_CAP_FLAGS_HAS_YAW_LOCK; template<typename ContainerAllocator> constexpr uint32_t GimbalManagerInformation_<ContainerAllocator>::GIMBAL_MANAGER_CAP_FLAGS_SUPPORTS_INFINITE_YAW; template<typename ContainerAllocator> constexpr uint32_t GimbalManagerInformation_<ContainerAllocator>::GIMBAL_MANAGER_CAP_FLAGS_CAN_POINT_LOCATION_LOCAL; template<typename ContainerAllocator> constexpr uint32_t GimbalManagerInformation_<ContainerAllocator>::GIMBAL_MANAGER_CAP_FLAGS_CAN_POINT_LOCATION_GLOBAL; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__GIMBAL_MANAGER_INFORMATION__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/ekf2_timestamps__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/Ekf2Timestamps.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/ekf2_timestamps__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/ekf2_timestamps__functions.h" #include "px4_msgs/msg/ekf2_timestamps__struct.h" #ifdef __cplusplus extern "C" { #endif void Ekf2Timestamps__rosidl_typesupport_introspection_c__Ekf2Timestamps_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__Ekf2Timestamps__init(message_memory); } void Ekf2Timestamps__rosidl_typesupport_introspection_c__Ekf2Timestamps_fini_function(void * message_memory) { px4_msgs__msg__Ekf2Timestamps__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember Ekf2Timestamps__rosidl_typesupport_introspection_c__Ekf2Timestamps_message_member_array[7] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Ekf2Timestamps, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "airspeed_timestamp_rel", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Ekf2Timestamps, airspeed_timestamp_rel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "distance_sensor_timestamp_rel", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Ekf2Timestamps, distance_sensor_timestamp_rel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "optical_flow_timestamp_rel", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Ekf2Timestamps, optical_flow_timestamp_rel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vehicle_air_data_timestamp_rel", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Ekf2Timestamps, vehicle_air_data_timestamp_rel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vehicle_magnetometer_timestamp_rel", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Ekf2Timestamps, vehicle_magnetometer_timestamp_rel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "visual_odometry_timestamp_rel", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__Ekf2Timestamps, visual_odometry_timestamp_rel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers Ekf2Timestamps__rosidl_typesupport_introspection_c__Ekf2Timestamps_message_members = { "px4_msgs__msg", // message namespace "Ekf2Timestamps", // message name 7, // number of fields sizeof(px4_msgs__msg__Ekf2Timestamps), Ekf2Timestamps__rosidl_typesupport_introspection_c__Ekf2Timestamps_message_member_array, // message members Ekf2Timestamps__rosidl_typesupport_introspection_c__Ekf2Timestamps_init_function, // function to initialize message memory (memory has to be allocated) Ekf2Timestamps__rosidl_typesupport_introspection_c__Ekf2Timestamps_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t Ekf2Timestamps__rosidl_typesupport_introspection_c__Ekf2Timestamps_message_type_support_handle = { 0, &Ekf2Timestamps__rosidl_typesupport_introspection_c__Ekf2Timestamps_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, Ekf2Timestamps)() { if (!Ekf2Timestamps__rosidl_typesupport_introspection_c__Ekf2Timestamps_message_type_support_handle.typesupport_identifier) { Ekf2Timestamps__rosidl_typesupport_introspection_c__Ekf2Timestamps_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &Ekf2Timestamps__rosidl_typesupport_introspection_c__Ekf2Timestamps_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/manual_control_setpoint__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/ManualControlSetpoint.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/manual_control_setpoint__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__ManualControlSetpoint__init(px4_msgs__msg__ManualControlSetpoint * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // data_source // x // y // z // r // flaps // aux1 // aux2 // aux3 // aux4 // aux5 // aux6 return true; } void px4_msgs__msg__ManualControlSetpoint__fini(px4_msgs__msg__ManualControlSetpoint * msg) { if (!msg) { return; } // timestamp // timestamp_sample // data_source // x // y // z // r // flaps // aux1 // aux2 // aux3 // aux4 // aux5 // aux6 } px4_msgs__msg__ManualControlSetpoint * px4_msgs__msg__ManualControlSetpoint__create() { px4_msgs__msg__ManualControlSetpoint * msg = (px4_msgs__msg__ManualControlSetpoint *)malloc(sizeof(px4_msgs__msg__ManualControlSetpoint)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__ManualControlSetpoint)); bool success = px4_msgs__msg__ManualControlSetpoint__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__ManualControlSetpoint__destroy(px4_msgs__msg__ManualControlSetpoint * msg) { if (msg) { px4_msgs__msg__ManualControlSetpoint__fini(msg); } free(msg); } bool px4_msgs__msg__ManualControlSetpoint__Sequence__init(px4_msgs__msg__ManualControlSetpoint__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__ManualControlSetpoint * data = NULL; if (size) { data = (px4_msgs__msg__ManualControlSetpoint *)calloc(size, sizeof(px4_msgs__msg__ManualControlSetpoint)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__ManualControlSetpoint__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__ManualControlSetpoint__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__ManualControlSetpoint__Sequence__fini(px4_msgs__msg__ManualControlSetpoint__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__ManualControlSetpoint__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__ManualControlSetpoint__Sequence * px4_msgs__msg__ManualControlSetpoint__Sequence__create(size_t size) { px4_msgs__msg__ManualControlSetpoint__Sequence * array = (px4_msgs__msg__ManualControlSetpoint__Sequence *)malloc(sizeof(px4_msgs__msg__ManualControlSetpoint__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__ManualControlSetpoint__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__ManualControlSetpoint__Sequence__destroy(px4_msgs__msg__ManualControlSetpoint__Sequence * array) { if (array) { px4_msgs__msg__ManualControlSetpoint__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/safety__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/Safety.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/safety__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/safety__struct.h" #include "px4_msgs/msg/safety__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _Safety__ros_msg_type = px4_msgs__msg__Safety; static bool _Safety__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _Safety__ros_msg_type * ros_message = static_cast<const _Safety__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: safety_switch_available { cdr << (ros_message->safety_switch_available ? true : false); } // Field name: safety_off { cdr << (ros_message->safety_off ? true : false); } // Field name: override_available { cdr << (ros_message->override_available ? true : false); } // Field name: override_enabled { cdr << (ros_message->override_enabled ? true : false); } return true; } static bool _Safety__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _Safety__ros_msg_type * ros_message = static_cast<_Safety__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: safety_switch_available { uint8_t tmp; cdr >> tmp; ros_message->safety_switch_available = tmp ? true : false; } // Field name: safety_off { uint8_t tmp; cdr >> tmp; ros_message->safety_off = tmp ? true : false; } // Field name: override_available { uint8_t tmp; cdr >> tmp; ros_message->override_available = tmp ? true : false; } // Field name: override_enabled { uint8_t tmp; cdr >> tmp; ros_message->override_enabled = tmp ? true : false; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__Safety( const void * untyped_ros_message, size_t current_alignment) { const _Safety__ros_msg_type * ros_message = static_cast<const _Safety__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name safety_switch_available { size_t item_size = sizeof(ros_message->safety_switch_available); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name safety_off { size_t item_size = sizeof(ros_message->safety_off); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name override_available { size_t item_size = sizeof(ros_message->override_available); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name override_enabled { size_t item_size = sizeof(ros_message->override_enabled); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _Safety__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__Safety( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__Safety( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: safety_switch_available { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: safety_off { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: override_available { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: override_enabled { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _Safety__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__Safety( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_Safety = { "px4_msgs::msg", "Safety", _Safety__cdr_serialize, _Safety__cdr_deserialize, _Safety__get_serialized_size, _Safety__max_serialized_size }; static rosidl_message_type_support_t _Safety__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_Safety, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, Safety)() { return &_Safety__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/mc_virtual_attitude_setpoint__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/McVirtualAttitudeSetpoint.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/mc_virtual_attitude_setpoint__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__McVirtualAttitudeSetpoint__init(px4_msgs__msg__McVirtualAttitudeSetpoint * msg) { if (!msg) { return false; } // timestamp // roll_body // pitch_body // yaw_body // yaw_sp_move_rate // q_d // thrust_body // roll_reset_integral // pitch_reset_integral // yaw_reset_integral // fw_control_yaw // apply_flaps return true; } void px4_msgs__msg__McVirtualAttitudeSetpoint__fini(px4_msgs__msg__McVirtualAttitudeSetpoint * msg) { if (!msg) { return; } // timestamp // roll_body // pitch_body // yaw_body // yaw_sp_move_rate // q_d // thrust_body // roll_reset_integral // pitch_reset_integral // yaw_reset_integral // fw_control_yaw // apply_flaps } px4_msgs__msg__McVirtualAttitudeSetpoint * px4_msgs__msg__McVirtualAttitudeSetpoint__create() { px4_msgs__msg__McVirtualAttitudeSetpoint * msg = (px4_msgs__msg__McVirtualAttitudeSetpoint *)malloc(sizeof(px4_msgs__msg__McVirtualAttitudeSetpoint)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__McVirtualAttitudeSetpoint)); bool success = px4_msgs__msg__McVirtualAttitudeSetpoint__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__McVirtualAttitudeSetpoint__destroy(px4_msgs__msg__McVirtualAttitudeSetpoint * msg) { if (msg) { px4_msgs__msg__McVirtualAttitudeSetpoint__fini(msg); } free(msg); } bool px4_msgs__msg__McVirtualAttitudeSetpoint__Sequence__init(px4_msgs__msg__McVirtualAttitudeSetpoint__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__McVirtualAttitudeSetpoint * data = NULL; if (size) { data = (px4_msgs__msg__McVirtualAttitudeSetpoint *)calloc(size, sizeof(px4_msgs__msg__McVirtualAttitudeSetpoint)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__McVirtualAttitudeSetpoint__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__McVirtualAttitudeSetpoint__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__McVirtualAttitudeSetpoint__Sequence__fini(px4_msgs__msg__McVirtualAttitudeSetpoint__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__McVirtualAttitudeSetpoint__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__McVirtualAttitudeSetpoint__Sequence * px4_msgs__msg__McVirtualAttitudeSetpoint__Sequence__create(size_t size) { px4_msgs__msg__McVirtualAttitudeSetpoint__Sequence * array = (px4_msgs__msg__McVirtualAttitudeSetpoint__Sequence *)malloc(sizeof(px4_msgs__msg__McVirtualAttitudeSetpoint__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__McVirtualAttitudeSetpoint__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__McVirtualAttitudeSetpoint__Sequence__destroy(px4_msgs__msg__McVirtualAttitudeSetpoint__Sequence * array) { if (array) { px4_msgs__msg__McVirtualAttitudeSetpoint__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_ekf_gps_drift_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/EkfGpsDrift.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/ekf_gps_drift__struct.h" #include "px4_msgs/msg/ekf_gps_drift__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__ekf_gps_drift__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[40]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._ekf_gps_drift.EkfGpsDrift", full_classname_dest, 39) == 0); } px4_msgs__msg__EkfGpsDrift * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // hpos_drift_rate PyObject * field = PyObject_GetAttrString(_pymsg, "hpos_drift_rate"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->hpos_drift_rate = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // vpos_drift_rate PyObject * field = PyObject_GetAttrString(_pymsg, "vpos_drift_rate"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->vpos_drift_rate = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // hspd PyObject * field = PyObject_GetAttrString(_pymsg, "hspd"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->hspd = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // blocked PyObject * field = PyObject_GetAttrString(_pymsg, "blocked"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->blocked = (Py_True == field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__ekf_gps_drift__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of EkfGpsDrift */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._ekf_gps_drift"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "EkfGpsDrift"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__EkfGpsDrift * ros_message = (px4_msgs__msg__EkfGpsDrift *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // hpos_drift_rate PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->hpos_drift_rate); { int rc = PyObject_SetAttrString(_pymessage, "hpos_drift_rate", field); Py_DECREF(field); if (rc) { return NULL; } } } { // vpos_drift_rate PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->vpos_drift_rate); { int rc = PyObject_SetAttrString(_pymessage, "vpos_drift_rate", field); Py_DECREF(field); if (rc) { return NULL; } } } { // hspd PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->hspd); { int rc = PyObject_SetAttrString(_pymessage, "hspd", field); Py_DECREF(field); if (rc) { return NULL; } } } { // blocked PyObject * field = NULL; field = PyBool_FromLong(ros_message->blocked ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "blocked", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/actuator_controls__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/ActuatorControls.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/actuator_controls__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void ActuatorControls_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::ActuatorControls(_init); } void ActuatorControls_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::ActuatorControls *>(message_memory); typed_message->~ActuatorControls(); } size_t size_function__ActuatorControls__control(const void * untyped_member) { (void)untyped_member; return 8; } const void * get_const_function__ActuatorControls__control(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 8> *>(untyped_member); return &member[index]; } void * get_function__ActuatorControls__control(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 8> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember ActuatorControls_message_member_array[3] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ActuatorControls, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::ActuatorControls, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "control", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 8, // array size false, // is upper bound offsetof(px4_msgs::msg::ActuatorControls, control), // bytes offset in struct nullptr, // default value size_function__ActuatorControls__control, // size() function pointer get_const_function__ActuatorControls__control, // get_const(index) function pointer get_function__ActuatorControls__control, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers ActuatorControls_message_members = { "px4_msgs::msg", // message namespace "ActuatorControls", // message name 3, // number of fields sizeof(px4_msgs::msg::ActuatorControls), ActuatorControls_message_member_array, // message members ActuatorControls_init_function, // function to initialize message memory (memory has to be allocated) ActuatorControls_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t ActuatorControls_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &ActuatorControls_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::ActuatorControls>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::ActuatorControls_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, ActuatorControls)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::ActuatorControls_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_imu__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleImu.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_IMU__FUNCTIONS_H_ #define PX4_MSGS__MSG__VEHICLE_IMU__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/vehicle_imu__struct.h" /// Initialize msg/VehicleImu message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__VehicleImu * )) before or use * px4_msgs__msg__VehicleImu__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__VehicleImu__init(px4_msgs__msg__VehicleImu * msg); /// Finalize msg/VehicleImu message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleImu__fini(px4_msgs__msg__VehicleImu * msg); /// Create msg/VehicleImu message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__VehicleImu__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__VehicleImu * px4_msgs__msg__VehicleImu__create(); /// Destroy msg/VehicleImu message. /** * It calls * px4_msgs__msg__VehicleImu__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleImu__destroy(px4_msgs__msg__VehicleImu * msg); /// Initialize array of msg/VehicleImu messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__VehicleImu__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__VehicleImu__Sequence__init(px4_msgs__msg__VehicleImu__Sequence * array, size_t size); /// Finalize array of msg/VehicleImu messages. /** * It calls * px4_msgs__msg__VehicleImu__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleImu__Sequence__fini(px4_msgs__msg__VehicleImu__Sequence * array); /// Create array of msg/VehicleImu messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__VehicleImu__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__VehicleImu__Sequence * px4_msgs__msg__VehicleImu__Sequence__create(size_t size); /// Destroy array of msg/VehicleImu messages. /** * It calls * px4_msgs__msg__VehicleImu__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleImu__Sequence__destroy(px4_msgs__msg__VehicleImu__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_IMU__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/gps_dump__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/GpsDump.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/gps_dump__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/gps_dump__functions.h" #include "px4_msgs/msg/gps_dump__struct.h" #ifdef __cplusplus extern "C" { #endif void GpsDump__rosidl_typesupport_introspection_c__GpsDump_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__GpsDump__init(message_memory); } void GpsDump__rosidl_typesupport_introspection_c__GpsDump_fini_function(void * message_memory) { px4_msgs__msg__GpsDump__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember GpsDump__rosidl_typesupport_introspection_c__GpsDump_message_member_array[4] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GpsDump, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "instance", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GpsDump, instance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "len", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GpsDump, len), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "data", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message true, // is array 79, // array size false, // is upper bound offsetof(px4_msgs__msg__GpsDump, data), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers GpsDump__rosidl_typesupport_introspection_c__GpsDump_message_members = { "px4_msgs__msg", // message namespace "GpsDump", // message name 4, // number of fields sizeof(px4_msgs__msg__GpsDump), GpsDump__rosidl_typesupport_introspection_c__GpsDump_message_member_array, // message members GpsDump__rosidl_typesupport_introspection_c__GpsDump_init_function, // function to initialize message memory (memory has to be allocated) GpsDump__rosidl_typesupport_introspection_c__GpsDump_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t GpsDump__rosidl_typesupport_introspection_c__GpsDump_message_type_support_handle = { 0, &GpsDump__rosidl_typesupport_introspection_c__GpsDump_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, GpsDump)() { if (!GpsDump__rosidl_typesupport_introspection_c__GpsDump_message_type_support_handle.typesupport_identifier) { GpsDump__rosidl_typesupport_introspection_c__GpsDump_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &GpsDump__rosidl_typesupport_introspection_c__GpsDump_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/offboard_ibqr/cmake_install.cmake # Install script for directory: /home/navlab-tx2-4/px4_ros_com_ros2/src/px4_multi_agent_planning/offboard_ibqr # Set the install prefix if(NOT DEFINED CMAKE_INSTALL_PREFIX) set(CMAKE_INSTALL_PREFIX "/home/navlab-tx2-4/px4_ros_com_ros2/install/offboard_ibqr") endif() string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") # Set the install configuration name. if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) if(BUILD_TYPE) string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") else() set(CMAKE_INSTALL_CONFIG_NAME "") endif() message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") endif() # Set the component getting installed. if(NOT CMAKE_INSTALL_COMPONENT) if(COMPONENT) message(STATUS "Install component: \"${COMPONENT}\"") set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") else() set(CMAKE_INSTALL_COMPONENT) endif() endif() # Install shared libraries without execute permission? if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) set(CMAKE_INSTALL_SO_NO_EXE "1") endif() # Is this installation the result of a crosscompile? if(NOT DEFINED CMAKE_CROSSCOMPILING) set(CMAKE_CROSSCOMPILING "FALSE") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/offboard_ibqr/offboard_control" AND NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/offboard_ibqr/offboard_control") file(RPATH_CHECK FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/offboard_ibqr/offboard_control" RPATH "") endif() file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/offboard_ibqr" TYPE EXECUTABLE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/offboard_ibqr/offboard_control") if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/offboard_ibqr/offboard_control" AND NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/offboard_ibqr/offboard_control") file(RPATH_CHANGE FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/offboard_ibqr/offboard_control" OLD_RPATH "/opt/ros/eloquent/lib:/home/navlab-tx2-4/px4_ros_com_ros2/install/px4_msgs/lib:" NEW_RPATH "") if(CMAKE_INSTALL_DO_STRIP) execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/offboard_ibqr/offboard_control") endif() endif() endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/offboard_ibqr/trajectory_logger" AND NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/offboard_ibqr/trajectory_logger") file(RPATH_CHECK FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/offboard_ibqr/trajectory_logger" RPATH "") endif() file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/offboard_ibqr" TYPE EXECUTABLE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/offboard_ibqr/trajectory_logger") if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/offboard_ibqr/trajectory_logger" AND NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/offboard_ibqr/trajectory_logger") file(RPATH_CHANGE FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/offboard_ibqr/trajectory_logger" OLD_RPATH "/opt/ros/eloquent/lib:/home/navlab-tx2-4/px4_ros_com_ros2/install/px4_msgs/lib:" NEW_RPATH "") if(CMAKE_INSTALL_DO_STRIP) execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/offboard_ibqr/trajectory_logger") endif() endif() endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/offboard_ibqr" TYPE DIRECTORY FILES "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_multi_agent_planning/offboard_ibqr/cmake") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/ament_index/resource_index/package_run_dependencies" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/offboard_ibqr/ament_cmake_index/share/ament_index/resource_index/package_run_dependencies/offboard_ibqr") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/ament_index/resource_index/parent_prefix_path" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/offboard_ibqr/ament_cmake_index/share/ament_index/resource_index/parent_prefix_path/offboard_ibqr") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/offboard_ibqr/environment" TYPE FILE FILES "/opt/ros/eloquent/share/ament_cmake_core/cmake/environment_hooks/environment/ament_prefix_path.sh") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/offboard_ibqr/environment" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/offboard_ibqr/ament_cmake_environment_hooks/ament_prefix_path.dsv") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/offboard_ibqr/environment" TYPE FILE FILES "/opt/ros/eloquent/share/ament_cmake_core/cmake/environment_hooks/environment/path.sh") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/offboard_ibqr/environment" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/offboard_ibqr/ament_cmake_environment_hooks/path.dsv") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/offboard_ibqr" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/offboard_ibqr/ament_cmake_environment_hooks/local_setup.bash") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/offboard_ibqr" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/offboard_ibqr/ament_cmake_environment_hooks/local_setup.sh") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/offboard_ibqr" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/offboard_ibqr/ament_cmake_environment_hooks/local_setup.zsh") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/offboard_ibqr" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/offboard_ibqr/ament_cmake_environment_hooks/local_setup.dsv") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/offboard_ibqr" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/offboard_ibqr/ament_cmake_environment_hooks/package.dsv") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/ament_index/resource_index/packages" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/offboard_ibqr/ament_cmake_index/share/ament_index/resource_index/packages/offboard_ibqr") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/offboard_ibqr/cmake" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/offboard_ibqr/ament_cmake_export_dependencies/ament_cmake_export_dependencies-extras.cmake") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/offboard_ibqr/cmake" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/offboard_ibqr/ament_cmake_export_include_directories/ament_cmake_export_include_directories-extras.cmake") endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/offboard_ibqr/cmake" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/build/offboard_ibqr/ament_cmake_core/offboard_ibqrConfig.cmake" "/home/navlab-tx2-4/px4_ros_com_ros2/build/offboard_ibqr/ament_cmake_core/offboard_ibqrConfig-version.cmake" ) endif() if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/offboard_ibqr" TYPE FILE FILES "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_multi_agent_planning/offboard_ibqr/package.xml") endif() if(CMAKE_INSTALL_COMPONENT) set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") else() set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") endif() string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT "${CMAKE_INSTALL_MANIFEST_FILES}") file(WRITE "/home/navlab-tx2-4/px4_ros_com_ros2/build/offboard_ibqr/${CMAKE_INSTALL_MANIFEST}" "${CMAKE_INSTALL_MANIFEST_CONTENT}") <file_sep>/install/multi_rtd_interfaces/include/multi_rtd_interfaces/msg/robot_trajectory.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef MULTI_RTD_INTERFACES__MSG__ROBOT_TRAJECTORY_HPP_ #define MULTI_RTD_INTERFACES__MSG__ROBOT_TRAJECTORY_HPP_ #include "multi_rtd_interfaces/msg/robot_trajectory__struct.hpp" #include "multi_rtd_interfaces/msg/robot_trajectory__traits.hpp" #endif // MULTI_RTD_INTERFACES__MSG__ROBOT_TRAJECTORY_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_odometry__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleOdometry.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/vehicle_odometry__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void VehicleOdometry_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::VehicleOdometry(_init); } void VehicleOdometry_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::VehicleOdometry *>(message_memory); typed_message->~VehicleOdometry(); } size_t size_function__VehicleOdometry__q(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__VehicleOdometry__q(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 4> *>(untyped_member); return &member[index]; } void * get_function__VehicleOdometry__q(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 4> *>(untyped_member); return &member[index]; } size_t size_function__VehicleOdometry__q_offset(const void * untyped_member) { (void)untyped_member; return 4; } const void * get_const_function__VehicleOdometry__q_offset(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 4> *>(untyped_member); return &member[index]; } void * get_function__VehicleOdometry__q_offset(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 4> *>(untyped_member); return &member[index]; } size_t size_function__VehicleOdometry__pose_covariance(const void * untyped_member) { (void)untyped_member; return 21; } const void * get_const_function__VehicleOdometry__pose_covariance(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 21> *>(untyped_member); return &member[index]; } void * get_function__VehicleOdometry__pose_covariance(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 21> *>(untyped_member); return &member[index]; } size_t size_function__VehicleOdometry__velocity_covariance(const void * untyped_member) { (void)untyped_member; return 21; } const void * get_const_function__VehicleOdometry__velocity_covariance(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 21> *>(untyped_member); return &member[index]; } void * get_function__VehicleOdometry__velocity_covariance(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 21> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember VehicleOdometry_message_member_array[17] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleOdometry, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleOdometry, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "local_frame", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleOdometry, local_frame), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "x", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleOdometry, x), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "y", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleOdometry, y), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "z", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleOdometry, z), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "q", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleOdometry, q), // bytes offset in struct nullptr, // default value size_function__VehicleOdometry__q, // size() function pointer get_const_function__VehicleOdometry__q, // get_const(index) function pointer get_function__VehicleOdometry__q, // get(index) function pointer nullptr // resize(index) function pointer }, { "q_offset", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleOdometry, q_offset), // bytes offset in struct nullptr, // default value size_function__VehicleOdometry__q_offset, // size() function pointer get_const_function__VehicleOdometry__q_offset, // get_const(index) function pointer get_function__VehicleOdometry__q_offset, // get(index) function pointer nullptr // resize(index) function pointer }, { "pose_covariance", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 21, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleOdometry, pose_covariance), // bytes offset in struct nullptr, // default value size_function__VehicleOdometry__pose_covariance, // size() function pointer get_const_function__VehicleOdometry__pose_covariance, // get_const(index) function pointer get_function__VehicleOdometry__pose_covariance, // get(index) function pointer nullptr // resize(index) function pointer }, { "velocity_frame", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleOdometry, velocity_frame), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vx", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleOdometry, vx), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vy", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleOdometry, vy), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vz", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleOdometry, vz), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rollspeed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleOdometry, rollspeed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "pitchspeed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleOdometry, pitchspeed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "yawspeed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleOdometry, yawspeed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "velocity_covariance", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 21, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleOdometry, velocity_covariance), // bytes offset in struct nullptr, // default value size_function__VehicleOdometry__velocity_covariance, // size() function pointer get_const_function__VehicleOdometry__velocity_covariance, // get_const(index) function pointer get_function__VehicleOdometry__velocity_covariance, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers VehicleOdometry_message_members = { "px4_msgs::msg", // message namespace "VehicleOdometry", // message name 17, // number of fields sizeof(px4_msgs::msg::VehicleOdometry), VehicleOdometry_message_member_array, // message members VehicleOdometry_init_function, // function to initialize message memory (memory has to be allocated) VehicleOdometry_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t VehicleOdometry_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &VehicleOdometry_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleOdometry>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleOdometry_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, VehicleOdometry)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleOdometry_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_innovation_variances__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/EstimatorInnovationVariances.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/estimator_innovation_variances__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void EstimatorInnovationVariances_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::EstimatorInnovationVariances(_init); } void EstimatorInnovationVariances_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::EstimatorInnovationVariances *>(message_memory); typed_message->~EstimatorInnovationVariances(); } size_t size_function__EstimatorInnovationVariances__gps_hvel(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__EstimatorInnovationVariances__gps_hvel(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__EstimatorInnovationVariances__gps_hvel(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorInnovationVariances__gps_hpos(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__EstimatorInnovationVariances__gps_hpos(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__EstimatorInnovationVariances__gps_hpos(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorInnovationVariances__ev_hvel(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__EstimatorInnovationVariances__ev_hvel(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__EstimatorInnovationVariances__ev_hvel(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorInnovationVariances__ev_hpos(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__EstimatorInnovationVariances__ev_hpos(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__EstimatorInnovationVariances__ev_hpos(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorInnovationVariances__aux_hvel(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__EstimatorInnovationVariances__aux_hvel(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__EstimatorInnovationVariances__aux_hvel(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorInnovationVariances__flow(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__EstimatorInnovationVariances__flow(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__EstimatorInnovationVariances__flow(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorInnovationVariances__mag_field(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__EstimatorInnovationVariances__mag_field(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__EstimatorInnovationVariances__mag_field(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } size_t size_function__EstimatorInnovationVariances__drag(const void * untyped_member) { (void)untyped_member; return 2; } const void * get_const_function__EstimatorInnovationVariances__drag(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 2> *>(untyped_member); return &member[index]; } void * get_function__EstimatorInnovationVariances__drag(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 2> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember EstimatorInnovationVariances_message_member_array[21] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationVariances, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationVariances, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "gps_hvel", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationVariances, gps_hvel), // bytes offset in struct nullptr, // default value size_function__EstimatorInnovationVariances__gps_hvel, // size() function pointer get_const_function__EstimatorInnovationVariances__gps_hvel, // get_const(index) function pointer get_function__EstimatorInnovationVariances__gps_hvel, // get(index) function pointer nullptr // resize(index) function pointer }, { "gps_vvel", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationVariances, gps_vvel), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "gps_hpos", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationVariances, gps_hpos), // bytes offset in struct nullptr, // default value size_function__EstimatorInnovationVariances__gps_hpos, // size() function pointer get_const_function__EstimatorInnovationVariances__gps_hpos, // get_const(index) function pointer get_function__EstimatorInnovationVariances__gps_hpos, // get(index) function pointer nullptr // resize(index) function pointer }, { "gps_vpos", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationVariances, gps_vpos), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ev_hvel", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationVariances, ev_hvel), // bytes offset in struct nullptr, // default value size_function__EstimatorInnovationVariances__ev_hvel, // size() function pointer get_const_function__EstimatorInnovationVariances__ev_hvel, // get_const(index) function pointer get_function__EstimatorInnovationVariances__ev_hvel, // get(index) function pointer nullptr // resize(index) function pointer }, { "ev_vvel", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationVariances, ev_vvel), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ev_hpos", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationVariances, ev_hpos), // bytes offset in struct nullptr, // default value size_function__EstimatorInnovationVariances__ev_hpos, // size() function pointer get_const_function__EstimatorInnovationVariances__ev_hpos, // get_const(index) function pointer get_function__EstimatorInnovationVariances__ev_hpos, // get(index) function pointer nullptr // resize(index) function pointer }, { "ev_vpos", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationVariances, ev_vpos), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rng_vpos", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationVariances, rng_vpos), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "baro_vpos", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationVariances, baro_vpos), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "aux_hvel", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationVariances, aux_hvel), // bytes offset in struct nullptr, // default value size_function__EstimatorInnovationVariances__aux_hvel, // size() function pointer get_const_function__EstimatorInnovationVariances__aux_hvel, // get_const(index) function pointer get_function__EstimatorInnovationVariances__aux_hvel, // get(index) function pointer nullptr // resize(index) function pointer }, { "aux_vvel", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationVariances, aux_vvel), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "flow", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationVariances, flow), // bytes offset in struct nullptr, // default value size_function__EstimatorInnovationVariances__flow, // size() function pointer get_const_function__EstimatorInnovationVariances__flow, // get_const(index) function pointer get_function__EstimatorInnovationVariances__flow, // get(index) function pointer nullptr // resize(index) function pointer }, { "heading", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationVariances, heading), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "mag_field", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationVariances, mag_field), // bytes offset in struct nullptr, // default value size_function__EstimatorInnovationVariances__mag_field, // size() function pointer get_const_function__EstimatorInnovationVariances__mag_field, // get_const(index) function pointer get_function__EstimatorInnovationVariances__mag_field, // get(index) function pointer nullptr // resize(index) function pointer }, { "drag", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationVariances, drag), // bytes offset in struct nullptr, // default value size_function__EstimatorInnovationVariances__drag, // size() function pointer get_const_function__EstimatorInnovationVariances__drag, // get_const(index) function pointer get_function__EstimatorInnovationVariances__drag, // get(index) function pointer nullptr // resize(index) function pointer }, { "airspeed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationVariances, airspeed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "beta", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationVariances, beta), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "hagl", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorInnovationVariances, hagl), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers EstimatorInnovationVariances_message_members = { "px4_msgs::msg", // message namespace "EstimatorInnovationVariances", // message name 21, // number of fields sizeof(px4_msgs::msg::EstimatorInnovationVariances), EstimatorInnovationVariances_message_member_array, // message members EstimatorInnovationVariances_init_function, // function to initialize message memory (memory has to be allocated) EstimatorInnovationVariances_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t EstimatorInnovationVariances_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &EstimatorInnovationVariances_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::EstimatorInnovationVariances>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EstimatorInnovationVariances_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, EstimatorInnovationVariances)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EstimatorInnovationVariances_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_angular_velocity__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleAngularVelocity.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ANGULAR_VELOCITY__FUNCTIONS_H_ #define PX4_MSGS__MSG__VEHICLE_ANGULAR_VELOCITY__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/vehicle_angular_velocity__struct.h" /// Initialize msg/VehicleAngularVelocity message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__VehicleAngularVelocity * )) before or use * px4_msgs__msg__VehicleAngularVelocity__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__VehicleAngularVelocity__init(px4_msgs__msg__VehicleAngularVelocity * msg); /// Finalize msg/VehicleAngularVelocity message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleAngularVelocity__fini(px4_msgs__msg__VehicleAngularVelocity * msg); /// Create msg/VehicleAngularVelocity message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__VehicleAngularVelocity__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__VehicleAngularVelocity * px4_msgs__msg__VehicleAngularVelocity__create(); /// Destroy msg/VehicleAngularVelocity message. /** * It calls * px4_msgs__msg__VehicleAngularVelocity__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleAngularVelocity__destroy(px4_msgs__msg__VehicleAngularVelocity * msg); /// Initialize array of msg/VehicleAngularVelocity messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__VehicleAngularVelocity__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__VehicleAngularVelocity__Sequence__init(px4_msgs__msg__VehicleAngularVelocity__Sequence * array, size_t size); /// Finalize array of msg/VehicleAngularVelocity messages. /** * It calls * px4_msgs__msg__VehicleAngularVelocity__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleAngularVelocity__Sequence__fini(px4_msgs__msg__VehicleAngularVelocity__Sequence * array); /// Create array of msg/VehicleAngularVelocity messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__VehicleAngularVelocity__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__VehicleAngularVelocity__Sequence * px4_msgs__msg__VehicleAngularVelocity__Sequence__create(size_t size); /// Destroy array of msg/VehicleAngularVelocity messages. /** * It calls * px4_msgs__msg__VehicleAngularVelocity__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleAngularVelocity__Sequence__destroy(px4_msgs__msg__VehicleAngularVelocity__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_ANGULAR_VELOCITY__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/obstacle_distance_fused__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/ObstacleDistanceFused.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/obstacle_distance_fused__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__ObstacleDistanceFused__init(px4_msgs__msg__ObstacleDistanceFused * msg) { if (!msg) { return false; } // timestamp // frame // sensor_type // distances // increment // min_distance // max_distance // angle_offset return true; } void px4_msgs__msg__ObstacleDistanceFused__fini(px4_msgs__msg__ObstacleDistanceFused * msg) { if (!msg) { return; } // timestamp // frame // sensor_type // distances // increment // min_distance // max_distance // angle_offset } px4_msgs__msg__ObstacleDistanceFused * px4_msgs__msg__ObstacleDistanceFused__create() { px4_msgs__msg__ObstacleDistanceFused * msg = (px4_msgs__msg__ObstacleDistanceFused *)malloc(sizeof(px4_msgs__msg__ObstacleDistanceFused)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__ObstacleDistanceFused)); bool success = px4_msgs__msg__ObstacleDistanceFused__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__ObstacleDistanceFused__destroy(px4_msgs__msg__ObstacleDistanceFused * msg) { if (msg) { px4_msgs__msg__ObstacleDistanceFused__fini(msg); } free(msg); } bool px4_msgs__msg__ObstacleDistanceFused__Sequence__init(px4_msgs__msg__ObstacleDistanceFused__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__ObstacleDistanceFused * data = NULL; if (size) { data = (px4_msgs__msg__ObstacleDistanceFused *)calloc(size, sizeof(px4_msgs__msg__ObstacleDistanceFused)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__ObstacleDistanceFused__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__ObstacleDistanceFused__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__ObstacleDistanceFused__Sequence__fini(px4_msgs__msg__ObstacleDistanceFused__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__ObstacleDistanceFused__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__ObstacleDistanceFused__Sequence * px4_msgs__msg__ObstacleDistanceFused__Sequence__create(size_t size) { px4_msgs__msg__ObstacleDistanceFused__Sequence * array = (px4_msgs__msg__ObstacleDistanceFused__Sequence *)malloc(sizeof(px4_msgs__msg__ObstacleDistanceFused__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__ObstacleDistanceFused__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__ObstacleDistanceFused__Sequence__destroy(px4_msgs__msg__ObstacleDistanceFused__Sequence * array) { if (array) { px4_msgs__msg__ObstacleDistanceFused__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf2_timestamps__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/Ekf2Timestamps.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/ekf2_timestamps__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/ekf2_timestamps__struct.h" #include "px4_msgs/msg/ekf2_timestamps__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _Ekf2Timestamps__ros_msg_type = px4_msgs__msg__Ekf2Timestamps; static bool _Ekf2Timestamps__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _Ekf2Timestamps__ros_msg_type * ros_message = static_cast<const _Ekf2Timestamps__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: airspeed_timestamp_rel { cdr << ros_message->airspeed_timestamp_rel; } // Field name: distance_sensor_timestamp_rel { cdr << ros_message->distance_sensor_timestamp_rel; } // Field name: optical_flow_timestamp_rel { cdr << ros_message->optical_flow_timestamp_rel; } // Field name: vehicle_air_data_timestamp_rel { cdr << ros_message->vehicle_air_data_timestamp_rel; } // Field name: vehicle_magnetometer_timestamp_rel { cdr << ros_message->vehicle_magnetometer_timestamp_rel; } // Field name: visual_odometry_timestamp_rel { cdr << ros_message->visual_odometry_timestamp_rel; } return true; } static bool _Ekf2Timestamps__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _Ekf2Timestamps__ros_msg_type * ros_message = static_cast<_Ekf2Timestamps__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: airspeed_timestamp_rel { cdr >> ros_message->airspeed_timestamp_rel; } // Field name: distance_sensor_timestamp_rel { cdr >> ros_message->distance_sensor_timestamp_rel; } // Field name: optical_flow_timestamp_rel { cdr >> ros_message->optical_flow_timestamp_rel; } // Field name: vehicle_air_data_timestamp_rel { cdr >> ros_message->vehicle_air_data_timestamp_rel; } // Field name: vehicle_magnetometer_timestamp_rel { cdr >> ros_message->vehicle_magnetometer_timestamp_rel; } // Field name: visual_odometry_timestamp_rel { cdr >> ros_message->visual_odometry_timestamp_rel; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__Ekf2Timestamps( const void * untyped_ros_message, size_t current_alignment) { const _Ekf2Timestamps__ros_msg_type * ros_message = static_cast<const _Ekf2Timestamps__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name airspeed_timestamp_rel { size_t item_size = sizeof(ros_message->airspeed_timestamp_rel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name distance_sensor_timestamp_rel { size_t item_size = sizeof(ros_message->distance_sensor_timestamp_rel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name optical_flow_timestamp_rel { size_t item_size = sizeof(ros_message->optical_flow_timestamp_rel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vehicle_air_data_timestamp_rel { size_t item_size = sizeof(ros_message->vehicle_air_data_timestamp_rel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vehicle_magnetometer_timestamp_rel { size_t item_size = sizeof(ros_message->vehicle_magnetometer_timestamp_rel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name visual_odometry_timestamp_rel { size_t item_size = sizeof(ros_message->visual_odometry_timestamp_rel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _Ekf2Timestamps__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__Ekf2Timestamps( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__Ekf2Timestamps( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: airspeed_timestamp_rel { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: distance_sensor_timestamp_rel { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: optical_flow_timestamp_rel { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: vehicle_air_data_timestamp_rel { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: vehicle_magnetometer_timestamp_rel { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: visual_odometry_timestamp_rel { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } return current_alignment - initial_alignment; } static size_t _Ekf2Timestamps__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__Ekf2Timestamps( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_Ekf2Timestamps = { "px4_msgs::msg", "Ekf2Timestamps", _Ekf2Timestamps__cdr_serialize, _Ekf2Timestamps__cdr_deserialize, _Ekf2Timestamps__get_serialized_size, _Ekf2Timestamps__max_serialized_size }; static rosidl_message_type_support_t _Ekf2Timestamps__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_Ekf2Timestamps, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, Ekf2Timestamps)() { return &_Ekf2Timestamps__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/hover_thrust_estimate.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/HoverThrustEstimate.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__HOVER_THRUST_ESTIMATE_H_ #define PX4_MSGS__MSG__HOVER_THRUST_ESTIMATE_H_ #include "px4_msgs/msg/hover_thrust_estimate__struct.h" #include "px4_msgs/msg/hover_thrust_estimate__functions.h" #include "px4_msgs/msg/hover_thrust_estimate__type_support.h" #endif // PX4_MSGS__MSG__HOVER_THRUST_ESTIMATE_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/pwm_input__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/PwmInput.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__PWM_INPUT__STRUCT_H_ #define PX4_MSGS__MSG__PWM_INPUT__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/PwmInput in the package px4_msgs. typedef struct px4_msgs__msg__PwmInput { uint64_t timestamp; uint64_t error_count; uint32_t pulse_width; uint32_t period; } px4_msgs__msg__PwmInput; // Struct for a sequence of px4_msgs__msg__PwmInput. typedef struct px4_msgs__msg__PwmInput__Sequence { px4_msgs__msg__PwmInput * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__PwmInput__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__PWM_INPUT__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_odometry.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ODOMETRY_HPP_ #define PX4_MSGS__MSG__VEHICLE_ODOMETRY_HPP_ #include "px4_msgs/msg/vehicle_odometry__struct.hpp" #include "px4_msgs/msg/vehicle_odometry__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_ODOMETRY_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/airspeed__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/Airspeed.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__AIRSPEED__FUNCTIONS_H_ #define PX4_MSGS__MSG__AIRSPEED__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/airspeed__struct.h" /// Initialize msg/Airspeed message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__Airspeed * )) before or use * px4_msgs__msg__Airspeed__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__Airspeed__init(px4_msgs__msg__Airspeed * msg); /// Finalize msg/Airspeed message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__Airspeed__fini(px4_msgs__msg__Airspeed * msg); /// Create msg/Airspeed message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__Airspeed__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__Airspeed * px4_msgs__msg__Airspeed__create(); /// Destroy msg/Airspeed message. /** * It calls * px4_msgs__msg__Airspeed__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__Airspeed__destroy(px4_msgs__msg__Airspeed * msg); /// Initialize array of msg/Airspeed messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__Airspeed__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__Airspeed__Sequence__init(px4_msgs__msg__Airspeed__Sequence * array, size_t size); /// Finalize array of msg/Airspeed messages. /** * It calls * px4_msgs__msg__Airspeed__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__Airspeed__Sequence__fini(px4_msgs__msg__Airspeed__Sequence * array); /// Create array of msg/Airspeed messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__Airspeed__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__Airspeed__Sequence * px4_msgs__msg__Airspeed__Sequence__create(size_t size); /// Destroy array of msg/Airspeed messages. /** * It calls * px4_msgs__msg__Airspeed__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__Airspeed__Sequence__destroy(px4_msgs__msg__Airspeed__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__AIRSPEED__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/mission.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__MISSION_HPP_ #define PX4_MSGS__MSG__MISSION_HPP_ #include "px4_msgs/msg/mission__struct.hpp" #include "px4_msgs/msg/mission__traits.hpp" #endif // PX4_MSGS__MSG__MISSION_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/sensor_gyro_fft__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/SensorGyroFft.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_GYRO_FFT__STRUCT_HPP_ #define PX4_MSGS__MSG__SENSOR_GYRO_FFT__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__SensorGyroFft __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__SensorGyroFft __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct SensorGyroFft_ { using Type = SensorGyroFft_<ContainerAllocator>; explicit SensorGyroFft_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->device_id = 0ul; this->sensor_sample_rate_hz = 0.0f; this->resolution_hz = 0.0f; std::fill<typename std::array<float, 6>::iterator, float>(this->peak_frequencies_x.begin(), this->peak_frequencies_x.end(), 0.0f); std::fill<typename std::array<float, 6>::iterator, float>(this->peak_frequencies_y.begin(), this->peak_frequencies_y.end(), 0.0f); std::fill<typename std::array<float, 6>::iterator, float>(this->peak_frequencies_z.begin(), this->peak_frequencies_z.end(), 0.0f); std::fill<typename std::array<uint32_t, 6>::iterator, uint32_t>(this->peak_magnitude_x.begin(), this->peak_magnitude_x.end(), 0ul); std::fill<typename std::array<uint32_t, 6>::iterator, uint32_t>(this->peak_magnitude_y.begin(), this->peak_magnitude_y.end(), 0ul); std::fill<typename std::array<uint32_t, 6>::iterator, uint32_t>(this->peak_magnitude_z.begin(), this->peak_magnitude_z.end(), 0ul); } } explicit SensorGyroFft_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : peak_frequencies_x(_alloc), peak_frequencies_y(_alloc), peak_frequencies_z(_alloc), peak_magnitude_x(_alloc), peak_magnitude_y(_alloc), peak_magnitude_z(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->device_id = 0ul; this->sensor_sample_rate_hz = 0.0f; this->resolution_hz = 0.0f; std::fill<typename std::array<float, 6>::iterator, float>(this->peak_frequencies_x.begin(), this->peak_frequencies_x.end(), 0.0f); std::fill<typename std::array<float, 6>::iterator, float>(this->peak_frequencies_y.begin(), this->peak_frequencies_y.end(), 0.0f); std::fill<typename std::array<float, 6>::iterator, float>(this->peak_frequencies_z.begin(), this->peak_frequencies_z.end(), 0.0f); std::fill<typename std::array<uint32_t, 6>::iterator, uint32_t>(this->peak_magnitude_x.begin(), this->peak_magnitude_x.end(), 0ul); std::fill<typename std::array<uint32_t, 6>::iterator, uint32_t>(this->peak_magnitude_y.begin(), this->peak_magnitude_y.end(), 0ul); std::fill<typename std::array<uint32_t, 6>::iterator, uint32_t>(this->peak_magnitude_z.begin(), this->peak_magnitude_z.end(), 0ul); } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _timestamp_sample_type = uint64_t; _timestamp_sample_type timestamp_sample; using _device_id_type = uint32_t; _device_id_type device_id; using _sensor_sample_rate_hz_type = float; _sensor_sample_rate_hz_type sensor_sample_rate_hz; using _resolution_hz_type = float; _resolution_hz_type resolution_hz; using _peak_frequencies_x_type = std::array<float, 6>; _peak_frequencies_x_type peak_frequencies_x; using _peak_frequencies_y_type = std::array<float, 6>; _peak_frequencies_y_type peak_frequencies_y; using _peak_frequencies_z_type = std::array<float, 6>; _peak_frequencies_z_type peak_frequencies_z; using _peak_magnitude_x_type = std::array<uint32_t, 6>; _peak_magnitude_x_type peak_magnitude_x; using _peak_magnitude_y_type = std::array<uint32_t, 6>; _peak_magnitude_y_type peak_magnitude_y; using _peak_magnitude_z_type = std::array<uint32_t, 6>; _peak_magnitude_z_type peak_magnitude_z; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__timestamp_sample( const uint64_t & _arg) { this->timestamp_sample = _arg; return *this; } Type & set__device_id( const uint32_t & _arg) { this->device_id = _arg; return *this; } Type & set__sensor_sample_rate_hz( const float & _arg) { this->sensor_sample_rate_hz = _arg; return *this; } Type & set__resolution_hz( const float & _arg) { this->resolution_hz = _arg; return *this; } Type & set__peak_frequencies_x( const std::array<float, 6> & _arg) { this->peak_frequencies_x = _arg; return *this; } Type & set__peak_frequencies_y( const std::array<float, 6> & _arg) { this->peak_frequencies_y = _arg; return *this; } Type & set__peak_frequencies_z( const std::array<float, 6> & _arg) { this->peak_frequencies_z = _arg; return *this; } Type & set__peak_magnitude_x( const std::array<uint32_t, 6> & _arg) { this->peak_magnitude_x = _arg; return *this; } Type & set__peak_magnitude_y( const std::array<uint32_t, 6> & _arg) { this->peak_magnitude_y = _arg; return *this; } Type & set__peak_magnitude_z( const std::array<uint32_t, 6> & _arg) { this->peak_magnitude_z = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::SensorGyroFft_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::SensorGyroFft_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::SensorGyroFft_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::SensorGyroFft_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::SensorGyroFft_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::SensorGyroFft_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::SensorGyroFft_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::SensorGyroFft_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::SensorGyroFft_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::SensorGyroFft_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__SensorGyroFft std::shared_ptr<px4_msgs::msg::SensorGyroFft_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__SensorGyroFft std::shared_ptr<px4_msgs::msg::SensorGyroFft_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const SensorGyroFft_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->timestamp_sample != other.timestamp_sample) { return false; } if (this->device_id != other.device_id) { return false; } if (this->sensor_sample_rate_hz != other.sensor_sample_rate_hz) { return false; } if (this->resolution_hz != other.resolution_hz) { return false; } if (this->peak_frequencies_x != other.peak_frequencies_x) { return false; } if (this->peak_frequencies_y != other.peak_frequencies_y) { return false; } if (this->peak_frequencies_z != other.peak_frequencies_z) { return false; } if (this->peak_magnitude_x != other.peak_magnitude_x) { return false; } if (this->peak_magnitude_y != other.peak_magnitude_y) { return false; } if (this->peak_magnitude_z != other.peak_magnitude_z) { return false; } return true; } bool operator!=(const SensorGyroFft_ & other) const { return !this->operator==(other); } }; // struct SensorGyroFft_ // alias to use template instance with default allocator using SensorGyroFft = px4_msgs::msg::SensorGyroFft_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__SENSOR_GYRO_FFT__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_sensor_bias.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/EstimatorSensorBias.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_SENSOR_BIAS_H_ #define PX4_MSGS__MSG__ESTIMATOR_SENSOR_BIAS_H_ #include "px4_msgs/msg/estimator_sensor_bias__struct.h" #include "px4_msgs/msg/estimator_sensor_bias__functions.h" #include "px4_msgs/msg/estimator_sensor_bias__type_support.h" #endif // PX4_MSGS__MSG__ESTIMATOR_SENSOR_BIAS_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_trajectory_waypoint__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/VehicleTrajectoryWaypoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_TRAJECTORY_WAYPOINT__STRUCT_HPP_ #define PX4_MSGS__MSG__VEHICLE_TRAJECTORY_WAYPOINT__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> // Include directives for member types // Member 'waypoints' #include "px4_msgs/msg/trajectory_waypoint__struct.hpp" #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__VehicleTrajectoryWaypoint __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__VehicleTrajectoryWaypoint __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct VehicleTrajectoryWaypoint_ { using Type = VehicleTrajectoryWaypoint_<ContainerAllocator>; explicit VehicleTrajectoryWaypoint_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->type = 0; this->waypoints.fill(px4_msgs::msg::TrajectoryWaypoint_<ContainerAllocator>{_init}); } } explicit VehicleTrajectoryWaypoint_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : waypoints(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->type = 0; this->waypoints.fill(px4_msgs::msg::TrajectoryWaypoint_<ContainerAllocator>{_alloc, _init}); } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _type_type = uint8_t; _type_type type; using _waypoints_type = std::array<px4_msgs::msg::TrajectoryWaypoint_<ContainerAllocator>, 5>; _waypoints_type waypoints; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__type( const uint8_t & _arg) { this->type = _arg; return *this; } Type & set__waypoints( const std::array<px4_msgs::msg::TrajectoryWaypoint_<ContainerAllocator>, 5> & _arg) { this->waypoints = _arg; return *this; } // constant declarations static constexpr uint8_t MAV_TRAJECTORY_REPRESENTATION_WAYPOINTS = 0u; static constexpr uint8_t POINT_0 = 0u; static constexpr uint8_t POINT_1 = 1u; static constexpr uint8_t POINT_2 = 2u; static constexpr uint8_t POINT_3 = 3u; static constexpr uint8_t POINT_4 = 4u; static constexpr uint8_t NUMBER_POINTS = 5u; // pointer types using RawPtr = px4_msgs::msg::VehicleTrajectoryWaypoint_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::VehicleTrajectoryWaypoint_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::VehicleTrajectoryWaypoint_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::VehicleTrajectoryWaypoint_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleTrajectoryWaypoint_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleTrajectoryWaypoint_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleTrajectoryWaypoint_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleTrajectoryWaypoint_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::VehicleTrajectoryWaypoint_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::VehicleTrajectoryWaypoint_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__VehicleTrajectoryWaypoint std::shared_ptr<px4_msgs::msg::VehicleTrajectoryWaypoint_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__VehicleTrajectoryWaypoint std::shared_ptr<px4_msgs::msg::VehicleTrajectoryWaypoint_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const VehicleTrajectoryWaypoint_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->type != other.type) { return false; } if (this->waypoints != other.waypoints) { return false; } return true; } bool operator!=(const VehicleTrajectoryWaypoint_ & other) const { return !this->operator==(other); } }; // struct VehicleTrajectoryWaypoint_ // alias to use template instance with default allocator using VehicleTrajectoryWaypoint = px4_msgs::msg::VehicleTrajectoryWaypoint_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t VehicleTrajectoryWaypoint_<ContainerAllocator>::MAV_TRAJECTORY_REPRESENTATION_WAYPOINTS; template<typename ContainerAllocator> constexpr uint8_t VehicleTrajectoryWaypoint_<ContainerAllocator>::POINT_0; template<typename ContainerAllocator> constexpr uint8_t VehicleTrajectoryWaypoint_<ContainerAllocator>::POINT_1; template<typename ContainerAllocator> constexpr uint8_t VehicleTrajectoryWaypoint_<ContainerAllocator>::POINT_2; template<typename ContainerAllocator> constexpr uint8_t VehicleTrajectoryWaypoint_<ContainerAllocator>::POINT_3; template<typename ContainerAllocator> constexpr uint8_t VehicleTrajectoryWaypoint_<ContainerAllocator>::POINT_4; template<typename ContainerAllocator> constexpr uint8_t VehicleTrajectoryWaypoint_<ContainerAllocator>::NUMBER_POINTS; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__VEHICLE_TRAJECTORY_WAYPOINT__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/obstacle_distance.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/ObstacleDistance.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__OBSTACLE_DISTANCE_H_ #define PX4_MSGS__MSG__OBSTACLE_DISTANCE_H_ #include "px4_msgs/msg/obstacle_distance__struct.h" #include "px4_msgs/msg/obstacle_distance__functions.h" #include "px4_msgs/msg/obstacle_distance__type_support.h" #endif // PX4_MSGS__MSG__OBSTACLE_DISTANCE_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/gps_dump.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GPS_DUMP_HPP_ #define PX4_MSGS__MSG__GPS_DUMP_HPP_ #include "px4_msgs/msg/gps_dump__struct.hpp" #include "px4_msgs/msg/gps_dump__traits.hpp" #endif // PX4_MSGS__MSG__GPS_DUMP_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_command_ack.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_COMMAND_ACK_HPP_ #define PX4_MSGS__MSG__VEHICLE_COMMAND_ACK_HPP_ #include "px4_msgs/msg/vehicle_command_ack__struct.hpp" #include "px4_msgs/msg/vehicle_command_ack__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_COMMAND_ACK_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/ulog_stream.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ULOG_STREAM_HPP_ #define PX4_MSGS__MSG__ULOG_STREAM_HPP_ #include "px4_msgs/msg/ulog_stream__struct.hpp" #include "px4_msgs/msg/ulog_stream__traits.hpp" #endif // PX4_MSGS__MSG__ULOG_STREAM_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/generator_status__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/GeneratorStatus.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/generator_status__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/generator_status__functions.h" #include "px4_msgs/msg/generator_status__struct.h" #ifdef __cplusplus extern "C" { #endif void GeneratorStatus__rosidl_typesupport_introspection_c__GeneratorStatus_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__GeneratorStatus__init(message_memory); } void GeneratorStatus__rosidl_typesupport_introspection_c__GeneratorStatus_fini_function(void * message_memory) { px4_msgs__msg__GeneratorStatus__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember GeneratorStatus__rosidl_typesupport_introspection_c__GeneratorStatus_message_member_array[12] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GeneratorStatus, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "status", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GeneratorStatus, status), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "battery_current", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GeneratorStatus, battery_current), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "load_current", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GeneratorStatus, load_current), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "power_generated", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GeneratorStatus, power_generated), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "bus_voltage", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GeneratorStatus, bus_voltage), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "bat_current_setpoint", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GeneratorStatus, bat_current_setpoint), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "runtime", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GeneratorStatus, runtime), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "time_until_maintenance", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GeneratorStatus, time_until_maintenance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "generator_speed", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GeneratorStatus, generator_speed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rectifier_temperature", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GeneratorStatus, rectifier_temperature), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "generator_temperature", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GeneratorStatus, generator_temperature), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers GeneratorStatus__rosidl_typesupport_introspection_c__GeneratorStatus_message_members = { "px4_msgs__msg", // message namespace "GeneratorStatus", // message name 12, // number of fields sizeof(px4_msgs__msg__GeneratorStatus), GeneratorStatus__rosidl_typesupport_introspection_c__GeneratorStatus_message_member_array, // message members GeneratorStatus__rosidl_typesupport_introspection_c__GeneratorStatus_init_function, // function to initialize message memory (memory has to be allocated) GeneratorStatus__rosidl_typesupport_introspection_c__GeneratorStatus_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t GeneratorStatus__rosidl_typesupport_introspection_c__GeneratorStatus_message_type_support_handle = { 0, &GeneratorStatus__rosidl_typesupport_introspection_c__GeneratorStatus_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, GeneratorStatus)() { if (!GeneratorStatus__rosidl_typesupport_introspection_c__GeneratorStatus_message_type_support_handle.typesupport_identifier) { GeneratorStatus__rosidl_typesupport_introspection_c__GeneratorStatus_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &GeneratorStatus__rosidl_typesupport_introspection_c__GeneratorStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/landing_target_pose__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/LandingTargetPose.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__LANDING_TARGET_POSE__STRUCT_HPP_ #define PX4_MSGS__MSG__LANDING_TARGET_POSE__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__LandingTargetPose __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__LandingTargetPose __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct LandingTargetPose_ { using Type = LandingTargetPose_<ContainerAllocator>; explicit LandingTargetPose_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->is_static = false; this->rel_pos_valid = false; this->rel_vel_valid = false; this->x_rel = 0.0f; this->y_rel = 0.0f; this->z_rel = 0.0f; this->vx_rel = 0.0f; this->vy_rel = 0.0f; this->cov_x_rel = 0.0f; this->cov_y_rel = 0.0f; this->cov_vx_rel = 0.0f; this->cov_vy_rel = 0.0f; this->abs_pos_valid = false; this->x_abs = 0.0f; this->y_abs = 0.0f; this->z_abs = 0.0f; } } explicit LandingTargetPose_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->is_static = false; this->rel_pos_valid = false; this->rel_vel_valid = false; this->x_rel = 0.0f; this->y_rel = 0.0f; this->z_rel = 0.0f; this->vx_rel = 0.0f; this->vy_rel = 0.0f; this->cov_x_rel = 0.0f; this->cov_y_rel = 0.0f; this->cov_vx_rel = 0.0f; this->cov_vy_rel = 0.0f; this->abs_pos_valid = false; this->x_abs = 0.0f; this->y_abs = 0.0f; this->z_abs = 0.0f; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _is_static_type = bool; _is_static_type is_static; using _rel_pos_valid_type = bool; _rel_pos_valid_type rel_pos_valid; using _rel_vel_valid_type = bool; _rel_vel_valid_type rel_vel_valid; using _x_rel_type = float; _x_rel_type x_rel; using _y_rel_type = float; _y_rel_type y_rel; using _z_rel_type = float; _z_rel_type z_rel; using _vx_rel_type = float; _vx_rel_type vx_rel; using _vy_rel_type = float; _vy_rel_type vy_rel; using _cov_x_rel_type = float; _cov_x_rel_type cov_x_rel; using _cov_y_rel_type = float; _cov_y_rel_type cov_y_rel; using _cov_vx_rel_type = float; _cov_vx_rel_type cov_vx_rel; using _cov_vy_rel_type = float; _cov_vy_rel_type cov_vy_rel; using _abs_pos_valid_type = bool; _abs_pos_valid_type abs_pos_valid; using _x_abs_type = float; _x_abs_type x_abs; using _y_abs_type = float; _y_abs_type y_abs; using _z_abs_type = float; _z_abs_type z_abs; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__is_static( const bool & _arg) { this->is_static = _arg; return *this; } Type & set__rel_pos_valid( const bool & _arg) { this->rel_pos_valid = _arg; return *this; } Type & set__rel_vel_valid( const bool & _arg) { this->rel_vel_valid = _arg; return *this; } Type & set__x_rel( const float & _arg) { this->x_rel = _arg; return *this; } Type & set__y_rel( const float & _arg) { this->y_rel = _arg; return *this; } Type & set__z_rel( const float & _arg) { this->z_rel = _arg; return *this; } Type & set__vx_rel( const float & _arg) { this->vx_rel = _arg; return *this; } Type & set__vy_rel( const float & _arg) { this->vy_rel = _arg; return *this; } Type & set__cov_x_rel( const float & _arg) { this->cov_x_rel = _arg; return *this; } Type & set__cov_y_rel( const float & _arg) { this->cov_y_rel = _arg; return *this; } Type & set__cov_vx_rel( const float & _arg) { this->cov_vx_rel = _arg; return *this; } Type & set__cov_vy_rel( const float & _arg) { this->cov_vy_rel = _arg; return *this; } Type & set__abs_pos_valid( const bool & _arg) { this->abs_pos_valid = _arg; return *this; } Type & set__x_abs( const float & _arg) { this->x_abs = _arg; return *this; } Type & set__y_abs( const float & _arg) { this->y_abs = _arg; return *this; } Type & set__z_abs( const float & _arg) { this->z_abs = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::LandingTargetPose_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::LandingTargetPose_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::LandingTargetPose_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::LandingTargetPose_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::LandingTargetPose_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::LandingTargetPose_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::LandingTargetPose_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::LandingTargetPose_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::LandingTargetPose_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::LandingTargetPose_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__LandingTargetPose std::shared_ptr<px4_msgs::msg::LandingTargetPose_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__LandingTargetPose std::shared_ptr<px4_msgs::msg::LandingTargetPose_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const LandingTargetPose_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->is_static != other.is_static) { return false; } if (this->rel_pos_valid != other.rel_pos_valid) { return false; } if (this->rel_vel_valid != other.rel_vel_valid) { return false; } if (this->x_rel != other.x_rel) { return false; } if (this->y_rel != other.y_rel) { return false; } if (this->z_rel != other.z_rel) { return false; } if (this->vx_rel != other.vx_rel) { return false; } if (this->vy_rel != other.vy_rel) { return false; } if (this->cov_x_rel != other.cov_x_rel) { return false; } if (this->cov_y_rel != other.cov_y_rel) { return false; } if (this->cov_vx_rel != other.cov_vx_rel) { return false; } if (this->cov_vy_rel != other.cov_vy_rel) { return false; } if (this->abs_pos_valid != other.abs_pos_valid) { return false; } if (this->x_abs != other.x_abs) { return false; } if (this->y_abs != other.y_abs) { return false; } if (this->z_abs != other.z_abs) { return false; } return true; } bool operator!=(const LandingTargetPose_ & other) const { return !this->operator==(other); } }; // struct LandingTargetPose_ // alias to use template instance with default allocator using LandingTargetPose = px4_msgs::msg::LandingTargetPose_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__LANDING_TARGET_POSE__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/manual_control_switches__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/ManualControlSwitches.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/manual_control_switches__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/manual_control_switches__functions.h" #include "px4_msgs/msg/manual_control_switches__struct.h" #ifdef __cplusplus extern "C" { #endif void ManualControlSwitches__rosidl_typesupport_introspection_c__ManualControlSwitches_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__ManualControlSwitches__init(message_memory); } void ManualControlSwitches__rosidl_typesupport_introspection_c__ManualControlSwitches_fini_function(void * message_memory) { px4_msgs__msg__ManualControlSwitches__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember ManualControlSwitches__rosidl_typesupport_introspection_c__ManualControlSwitches_message_member_array[16] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSwitches, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSwitches, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "mode_slot", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSwitches, mode_slot), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "arm_switch", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSwitches, arm_switch), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "return_switch", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSwitches, return_switch), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "loiter_switch", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSwitches, loiter_switch), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "offboard_switch", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSwitches, offboard_switch), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "kill_switch", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSwitches, kill_switch), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gear_switch", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSwitches, gear_switch), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "transition_switch", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSwitches, transition_switch), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "mode_switch", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSwitches, mode_switch), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "man_switch", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSwitches, man_switch), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "acro_switch", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSwitches, acro_switch), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "stab_switch", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSwitches, stab_switch), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "posctl_switch", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSwitches, posctl_switch), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "switch_changes", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ManualControlSwitches, switch_changes), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers ManualControlSwitches__rosidl_typesupport_introspection_c__ManualControlSwitches_message_members = { "px4_msgs__msg", // message namespace "ManualControlSwitches", // message name 16, // number of fields sizeof(px4_msgs__msg__ManualControlSwitches), ManualControlSwitches__rosidl_typesupport_introspection_c__ManualControlSwitches_message_member_array, // message members ManualControlSwitches__rosidl_typesupport_introspection_c__ManualControlSwitches_init_function, // function to initialize message memory (memory has to be allocated) ManualControlSwitches__rosidl_typesupport_introspection_c__ManualControlSwitches_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t ManualControlSwitches__rosidl_typesupport_introspection_c__ManualControlSwitches_message_type_support_handle = { 0, &ManualControlSwitches__rosidl_typesupport_introspection_c__ManualControlSwitches_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, ManualControlSwitches)() { if (!ManualControlSwitches__rosidl_typesupport_introspection_c__ManualControlSwitches_message_type_support_handle.typesupport_identifier) { ManualControlSwitches__rosidl_typesupport_introspection_c__ManualControlSwitches_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &ManualControlSwitches__rosidl_typesupport_introspection_c__ManualControlSwitches_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_fw.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/ActuatorControlsVirtualFw.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS_VIRTUAL_FW_H_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS_VIRTUAL_FW_H_ #include "px4_msgs/msg/actuator_controls_virtual_fw__struct.h" #include "px4_msgs/msg/actuator_controls_virtual_fw__functions.h" #include "px4_msgs/msg/actuator_controls_virtual_fw__type_support.h" #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS_VIRTUAL_FW_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/heater_status__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/HeaterStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__HEATER_STATUS__STRUCT_HPP_ #define PX4_MSGS__MSG__HEATER_STATUS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__HeaterStatus __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__HeaterStatus __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct HeaterStatus_ { using Type = HeaterStatus_<ContainerAllocator>; explicit HeaterStatus_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->device_id = 0ul; this->heater_on = false; this->temperature_target_met = false; this->temperature_sensor = 0.0f; this->temperature_target = 0.0f; this->controller_period_usec = 0ul; this->controller_time_on_usec = 0ul; this->proportional_value = 0.0f; this->integrator_value = 0.0f; this->feed_forward_value = 0.0f; this->mode = 0; } } explicit HeaterStatus_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->device_id = 0ul; this->heater_on = false; this->temperature_target_met = false; this->temperature_sensor = 0.0f; this->temperature_target = 0.0f; this->controller_period_usec = 0ul; this->controller_time_on_usec = 0ul; this->proportional_value = 0.0f; this->integrator_value = 0.0f; this->feed_forward_value = 0.0f; this->mode = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _device_id_type = uint32_t; _device_id_type device_id; using _heater_on_type = bool; _heater_on_type heater_on; using _temperature_target_met_type = bool; _temperature_target_met_type temperature_target_met; using _temperature_sensor_type = float; _temperature_sensor_type temperature_sensor; using _temperature_target_type = float; _temperature_target_type temperature_target; using _controller_period_usec_type = uint32_t; _controller_period_usec_type controller_period_usec; using _controller_time_on_usec_type = uint32_t; _controller_time_on_usec_type controller_time_on_usec; using _proportional_value_type = float; _proportional_value_type proportional_value; using _integrator_value_type = float; _integrator_value_type integrator_value; using _feed_forward_value_type = float; _feed_forward_value_type feed_forward_value; using _mode_type = uint8_t; _mode_type mode; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__device_id( const uint32_t & _arg) { this->device_id = _arg; return *this; } Type & set__heater_on( const bool & _arg) { this->heater_on = _arg; return *this; } Type & set__temperature_target_met( const bool & _arg) { this->temperature_target_met = _arg; return *this; } Type & set__temperature_sensor( const float & _arg) { this->temperature_sensor = _arg; return *this; } Type & set__temperature_target( const float & _arg) { this->temperature_target = _arg; return *this; } Type & set__controller_period_usec( const uint32_t & _arg) { this->controller_period_usec = _arg; return *this; } Type & set__controller_time_on_usec( const uint32_t & _arg) { this->controller_time_on_usec = _arg; return *this; } Type & set__proportional_value( const float & _arg) { this->proportional_value = _arg; return *this; } Type & set__integrator_value( const float & _arg) { this->integrator_value = _arg; return *this; } Type & set__feed_forward_value( const float & _arg) { this->feed_forward_value = _arg; return *this; } Type & set__mode( const uint8_t & _arg) { this->mode = _arg; return *this; } // constant declarations static constexpr uint8_t MODE_GPIO = 1u; static constexpr uint8_t MODE_PX4IO = 2u; // pointer types using RawPtr = px4_msgs::msg::HeaterStatus_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::HeaterStatus_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::HeaterStatus_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::HeaterStatus_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::HeaterStatus_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::HeaterStatus_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::HeaterStatus_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::HeaterStatus_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::HeaterStatus_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::HeaterStatus_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__HeaterStatus std::shared_ptr<px4_msgs::msg::HeaterStatus_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__HeaterStatus std::shared_ptr<px4_msgs::msg::HeaterStatus_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const HeaterStatus_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->device_id != other.device_id) { return false; } if (this->heater_on != other.heater_on) { return false; } if (this->temperature_target_met != other.temperature_target_met) { return false; } if (this->temperature_sensor != other.temperature_sensor) { return false; } if (this->temperature_target != other.temperature_target) { return false; } if (this->controller_period_usec != other.controller_period_usec) { return false; } if (this->controller_time_on_usec != other.controller_time_on_usec) { return false; } if (this->proportional_value != other.proportional_value) { return false; } if (this->integrator_value != other.integrator_value) { return false; } if (this->feed_forward_value != other.feed_forward_value) { return false; } if (this->mode != other.mode) { return false; } return true; } bool operator!=(const HeaterStatus_ & other) const { return !this->operator==(other); } }; // struct HeaterStatus_ // alias to use template instance with default allocator using HeaterStatus = px4_msgs::msg::HeaterStatus_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t HeaterStatus_<ContainerAllocator>::MODE_GPIO; template<typename ContainerAllocator> constexpr uint8_t HeaterStatus_<ContainerAllocator>::MODE_PX4IO; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__HEATER_STATUS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/optical_flow__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/OpticalFlow.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__OPTICAL_FLOW__STRUCT_HPP_ #define PX4_MSGS__MSG__OPTICAL_FLOW__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__OpticalFlow __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__OpticalFlow __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct OpticalFlow_ { using Type = OpticalFlow_<ContainerAllocator>; explicit OpticalFlow_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->sensor_id = 0; this->pixel_flow_x_integral = 0.0f; this->pixel_flow_y_integral = 0.0f; this->gyro_x_rate_integral = 0.0f; this->gyro_y_rate_integral = 0.0f; this->gyro_z_rate_integral = 0.0f; this->ground_distance_m = 0.0f; this->integration_timespan = 0ul; this->time_since_last_sonar_update = 0ul; this->frame_count_since_last_readout = 0; this->gyro_temperature = 0; this->quality = 0; this->max_flow_rate = 0.0f; this->min_ground_distance = 0.0f; this->max_ground_distance = 0.0f; this->mode = 0; } } explicit OpticalFlow_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->sensor_id = 0; this->pixel_flow_x_integral = 0.0f; this->pixel_flow_y_integral = 0.0f; this->gyro_x_rate_integral = 0.0f; this->gyro_y_rate_integral = 0.0f; this->gyro_z_rate_integral = 0.0f; this->ground_distance_m = 0.0f; this->integration_timespan = 0ul; this->time_since_last_sonar_update = 0ul; this->frame_count_since_last_readout = 0; this->gyro_temperature = 0; this->quality = 0; this->max_flow_rate = 0.0f; this->min_ground_distance = 0.0f; this->max_ground_distance = 0.0f; this->mode = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _sensor_id_type = uint8_t; _sensor_id_type sensor_id; using _pixel_flow_x_integral_type = float; _pixel_flow_x_integral_type pixel_flow_x_integral; using _pixel_flow_y_integral_type = float; _pixel_flow_y_integral_type pixel_flow_y_integral; using _gyro_x_rate_integral_type = float; _gyro_x_rate_integral_type gyro_x_rate_integral; using _gyro_y_rate_integral_type = float; _gyro_y_rate_integral_type gyro_y_rate_integral; using _gyro_z_rate_integral_type = float; _gyro_z_rate_integral_type gyro_z_rate_integral; using _ground_distance_m_type = float; _ground_distance_m_type ground_distance_m; using _integration_timespan_type = uint32_t; _integration_timespan_type integration_timespan; using _time_since_last_sonar_update_type = uint32_t; _time_since_last_sonar_update_type time_since_last_sonar_update; using _frame_count_since_last_readout_type = uint16_t; _frame_count_since_last_readout_type frame_count_since_last_readout; using _gyro_temperature_type = int16_t; _gyro_temperature_type gyro_temperature; using _quality_type = uint8_t; _quality_type quality; using _max_flow_rate_type = float; _max_flow_rate_type max_flow_rate; using _min_ground_distance_type = float; _min_ground_distance_type min_ground_distance; using _max_ground_distance_type = float; _max_ground_distance_type max_ground_distance; using _mode_type = uint8_t; _mode_type mode; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__sensor_id( const uint8_t & _arg) { this->sensor_id = _arg; return *this; } Type & set__pixel_flow_x_integral( const float & _arg) { this->pixel_flow_x_integral = _arg; return *this; } Type & set__pixel_flow_y_integral( const float & _arg) { this->pixel_flow_y_integral = _arg; return *this; } Type & set__gyro_x_rate_integral( const float & _arg) { this->gyro_x_rate_integral = _arg; return *this; } Type & set__gyro_y_rate_integral( const float & _arg) { this->gyro_y_rate_integral = _arg; return *this; } Type & set__gyro_z_rate_integral( const float & _arg) { this->gyro_z_rate_integral = _arg; return *this; } Type & set__ground_distance_m( const float & _arg) { this->ground_distance_m = _arg; return *this; } Type & set__integration_timespan( const uint32_t & _arg) { this->integration_timespan = _arg; return *this; } Type & set__time_since_last_sonar_update( const uint32_t & _arg) { this->time_since_last_sonar_update = _arg; return *this; } Type & set__frame_count_since_last_readout( const uint16_t & _arg) { this->frame_count_since_last_readout = _arg; return *this; } Type & set__gyro_temperature( const int16_t & _arg) { this->gyro_temperature = _arg; return *this; } Type & set__quality( const uint8_t & _arg) { this->quality = _arg; return *this; } Type & set__max_flow_rate( const float & _arg) { this->max_flow_rate = _arg; return *this; } Type & set__min_ground_distance( const float & _arg) { this->min_ground_distance = _arg; return *this; } Type & set__max_ground_distance( const float & _arg) { this->max_ground_distance = _arg; return *this; } Type & set__mode( const uint8_t & _arg) { this->mode = _arg; return *this; } // constant declarations static constexpr uint8_t MODE_UNKNOWN = 0u; static constexpr uint8_t MODE_BRIGHT = 1u; static constexpr uint8_t MODE_LOWLIGHT = 2u; static constexpr uint8_t MODE_SUPER_LOWLIGHT = 3u; // pointer types using RawPtr = px4_msgs::msg::OpticalFlow_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::OpticalFlow_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::OpticalFlow_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::OpticalFlow_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::OpticalFlow_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::OpticalFlow_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::OpticalFlow_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::OpticalFlow_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::OpticalFlow_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::OpticalFlow_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__OpticalFlow std::shared_ptr<px4_msgs::msg::OpticalFlow_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__OpticalFlow std::shared_ptr<px4_msgs::msg::OpticalFlow_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const OpticalFlow_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->sensor_id != other.sensor_id) { return false; } if (this->pixel_flow_x_integral != other.pixel_flow_x_integral) { return false; } if (this->pixel_flow_y_integral != other.pixel_flow_y_integral) { return false; } if (this->gyro_x_rate_integral != other.gyro_x_rate_integral) { return false; } if (this->gyro_y_rate_integral != other.gyro_y_rate_integral) { return false; } if (this->gyro_z_rate_integral != other.gyro_z_rate_integral) { return false; } if (this->ground_distance_m != other.ground_distance_m) { return false; } if (this->integration_timespan != other.integration_timespan) { return false; } if (this->time_since_last_sonar_update != other.time_since_last_sonar_update) { return false; } if (this->frame_count_since_last_readout != other.frame_count_since_last_readout) { return false; } if (this->gyro_temperature != other.gyro_temperature) { return false; } if (this->quality != other.quality) { return false; } if (this->max_flow_rate != other.max_flow_rate) { return false; } if (this->min_ground_distance != other.min_ground_distance) { return false; } if (this->max_ground_distance != other.max_ground_distance) { return false; } if (this->mode != other.mode) { return false; } return true; } bool operator!=(const OpticalFlow_ & other) const { return !this->operator==(other); } }; // struct OpticalFlow_ // alias to use template instance with default allocator using OpticalFlow = px4_msgs::msg::OpticalFlow_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t OpticalFlow_<ContainerAllocator>::MODE_UNKNOWN; template<typename ContainerAllocator> constexpr uint8_t OpticalFlow_<ContainerAllocator>::MODE_BRIGHT; template<typename ContainerAllocator> constexpr uint8_t OpticalFlow_<ContainerAllocator>::MODE_LOWLIGHT; template<typename ContainerAllocator> constexpr uint8_t OpticalFlow_<ContainerAllocator>::MODE_SUPER_LOWLIGHT; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__OPTICAL_FLOW__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/gimbal_manager_status__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/GimbalManagerStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GIMBAL_MANAGER_STATUS__STRUCT_HPP_ #define PX4_MSGS__MSG__GIMBAL_MANAGER_STATUS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__GimbalManagerStatus __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__GimbalManagerStatus __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct GimbalManagerStatus_ { using Type = GimbalManagerStatus_<ContainerAllocator>; explicit GimbalManagerStatus_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->flags = 0ul; this->gimbal_device_id = 0; this->primary_control_sysid = 0; this->primary_control_compid = 0; this->secondary_control_sysid = 0; this->secondary_control_compid = 0; } } explicit GimbalManagerStatus_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->flags = 0ul; this->gimbal_device_id = 0; this->primary_control_sysid = 0; this->primary_control_compid = 0; this->secondary_control_sysid = 0; this->secondary_control_compid = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _flags_type = uint32_t; _flags_type flags; using _gimbal_device_id_type = uint8_t; _gimbal_device_id_type gimbal_device_id; using _primary_control_sysid_type = uint8_t; _primary_control_sysid_type primary_control_sysid; using _primary_control_compid_type = uint8_t; _primary_control_compid_type primary_control_compid; using _secondary_control_sysid_type = uint8_t; _secondary_control_sysid_type secondary_control_sysid; using _secondary_control_compid_type = uint8_t; _secondary_control_compid_type secondary_control_compid; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__flags( const uint32_t & _arg) { this->flags = _arg; return *this; } Type & set__gimbal_device_id( const uint8_t & _arg) { this->gimbal_device_id = _arg; return *this; } Type & set__primary_control_sysid( const uint8_t & _arg) { this->primary_control_sysid = _arg; return *this; } Type & set__primary_control_compid( const uint8_t & _arg) { this->primary_control_compid = _arg; return *this; } Type & set__secondary_control_sysid( const uint8_t & _arg) { this->secondary_control_sysid = _arg; return *this; } Type & set__secondary_control_compid( const uint8_t & _arg) { this->secondary_control_compid = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::GimbalManagerStatus_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::GimbalManagerStatus_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::GimbalManagerStatus_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::GimbalManagerStatus_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::GimbalManagerStatus_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::GimbalManagerStatus_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::GimbalManagerStatus_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::GimbalManagerStatus_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::GimbalManagerStatus_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::GimbalManagerStatus_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__GimbalManagerStatus std::shared_ptr<px4_msgs::msg::GimbalManagerStatus_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__GimbalManagerStatus std::shared_ptr<px4_msgs::msg::GimbalManagerStatus_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const GimbalManagerStatus_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->flags != other.flags) { return false; } if (this->gimbal_device_id != other.gimbal_device_id) { return false; } if (this->primary_control_sysid != other.primary_control_sysid) { return false; } if (this->primary_control_compid != other.primary_control_compid) { return false; } if (this->secondary_control_sysid != other.secondary_control_sysid) { return false; } if (this->secondary_control_compid != other.secondary_control_compid) { return false; } return true; } bool operator!=(const GimbalManagerStatus_ & other) const { return !this->operator==(other); } }; // struct GimbalManagerStatus_ // alias to use template instance with default allocator using GimbalManagerStatus = px4_msgs::msg::GimbalManagerStatus_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__GIMBAL_MANAGER_STATUS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/telemetry_status__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/TelemetryStatus.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/telemetry_status__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void TelemetryStatus_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::TelemetryStatus(_init); } void TelemetryStatus_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::TelemetryStatus *>(message_memory); typed_message->~TelemetryStatus(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember TelemetryStatus_message_member_array[37] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "type", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, type), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "mode", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, mode), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "flow_control", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, flow_control), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "forwarding", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, forwarding), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "mavlink_v2", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, mavlink_v2), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "ftp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, ftp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "streams", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, streams), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "data_rate", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, data_rate), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rate_multiplier", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, rate_multiplier), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "tx_rate_avg", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, tx_rate_avg), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "tx_error_rate_avg", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, tx_error_rate_avg), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "tx_message_count", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, tx_message_count), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "tx_buffer_overruns", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, tx_buffer_overruns), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rx_rate_avg", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, rx_rate_avg), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rx_message_count", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, rx_message_count), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rx_message_count_supported", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, rx_message_count_supported), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rx_message_lost_count", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, rx_message_lost_count), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rx_buffer_overruns", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, rx_buffer_overruns), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rx_parse_errors", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, rx_parse_errors), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rx_packet_drop_count", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, rx_packet_drop_count), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rx_message_lost_rate", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, rx_message_lost_rate), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "heartbeat_type_antenna_tracker", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, heartbeat_type_antenna_tracker), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "heartbeat_type_gcs", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, heartbeat_type_gcs), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "heartbeat_type_onboard_controller", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, heartbeat_type_onboard_controller), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "heartbeat_type_gimbal", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, heartbeat_type_gimbal), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "heartbeat_type_adsb", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, heartbeat_type_adsb), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "heartbeat_type_camera", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, heartbeat_type_camera), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "heartbeat_component_telemetry_radio", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, heartbeat_component_telemetry_radio), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "heartbeat_component_log", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, heartbeat_component_log), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "heartbeat_component_osd", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, heartbeat_component_osd), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "heartbeat_component_obstacle_avoidance", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, heartbeat_component_obstacle_avoidance), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "heartbeat_component_vio", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, heartbeat_component_vio), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "heartbeat_component_pairing_manager", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, heartbeat_component_pairing_manager), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "heartbeat_component_udp_bridge", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, heartbeat_component_udp_bridge), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "heartbeat_component_uart_bridge", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, heartbeat_component_uart_bridge), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "avoidance_system_healthy", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TelemetryStatus, avoidance_system_healthy), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers TelemetryStatus_message_members = { "px4_msgs::msg", // message namespace "TelemetryStatus", // message name 37, // number of fields sizeof(px4_msgs::msg::TelemetryStatus), TelemetryStatus_message_member_array, // message members TelemetryStatus_init_function, // function to initialize message memory (memory has to be allocated) TelemetryStatus_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t TelemetryStatus_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &TelemetryStatus_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::TelemetryStatus>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::TelemetryStatus_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, TelemetryStatus)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::TelemetryStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/orb_test_medium_queue__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/OrbTestMediumQueue.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/orb_test_medium_queue__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/orb_test_medium_queue__functions.h" #include "px4_msgs/msg/orb_test_medium_queue__struct.h" #ifdef __cplusplus extern "C" { #endif void OrbTestMediumQueue__rosidl_typesupport_introspection_c__OrbTestMediumQueue_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__OrbTestMediumQueue__init(message_memory); } void OrbTestMediumQueue__rosidl_typesupport_introspection_c__OrbTestMediumQueue_fini_function(void * message_memory) { px4_msgs__msg__OrbTestMediumQueue__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember OrbTestMediumQueue__rosidl_typesupport_introspection_c__OrbTestMediumQueue_message_member_array[3] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__OrbTestMediumQueue, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "val", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__OrbTestMediumQueue, val), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "junk", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message true, // is array 64, // array size false, // is upper bound offsetof(px4_msgs__msg__OrbTestMediumQueue, junk), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers OrbTestMediumQueue__rosidl_typesupport_introspection_c__OrbTestMediumQueue_message_members = { "px4_msgs__msg", // message namespace "OrbTestMediumQueue", // message name 3, // number of fields sizeof(px4_msgs__msg__OrbTestMediumQueue), OrbTestMediumQueue__rosidl_typesupport_introspection_c__OrbTestMediumQueue_message_member_array, // message members OrbTestMediumQueue__rosidl_typesupport_introspection_c__OrbTestMediumQueue_init_function, // function to initialize message memory (memory has to be allocated) OrbTestMediumQueue__rosidl_typesupport_introspection_c__OrbTestMediumQueue_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t OrbTestMediumQueue__rosidl_typesupport_introspection_c__OrbTestMediumQueue_message_type_support_handle = { 0, &OrbTestMediumQueue__rosidl_typesupport_introspection_c__OrbTestMediumQueue_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, OrbTestMediumQueue)() { if (!OrbTestMediumQueue__rosidl_typesupport_introspection_c__OrbTestMediumQueue_message_type_support_handle.typesupport_identifier) { OrbTestMediumQueue__rosidl_typesupport_introspection_c__OrbTestMediumQueue_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &OrbTestMediumQueue__rosidl_typesupport_introspection_c__OrbTestMediumQueue_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/battery_status.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/BatteryStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__BATTERY_STATUS_H_ #define PX4_MSGS__MSG__BATTERY_STATUS_H_ #include "px4_msgs/msg/battery_status__struct.h" #include "px4_msgs/msg/battery_status__functions.h" #include "px4_msgs/msg/battery_status__type_support.h" #endif // PX4_MSGS__MSG__BATTERY_STATUS_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/transponder_report.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TRANSPONDER_REPORT_HPP_ #define PX4_MSGS__MSG__TRANSPONDER_REPORT_HPP_ #include "px4_msgs/msg/transponder_report__struct.hpp" #include "px4_msgs/msg/transponder_report__traits.hpp" #endif // PX4_MSGS__MSG__TRANSPONDER_REPORT_HPP_ <file_sep>/install/multi_rtd/lib/python3.6/site-packages/multi_rtd/compute_FRS.py import numpy as np from zonotope import Zonotope def compute_FRS(agent): """ Compute forward stochastic reachable set of an n-dimensional LQG system for a space of trajectory paramters Leverages (slightly modified) linear reachability math from <NAME> 2019 Parameters ---------- param1 : int The first parameter. param2 : str The second parameter. Returns ------- bool True if successful, False otherwise. """ # trajectory parameter space pass if __name__ == '__main__': pass<file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_actuator_setpoint__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleActuatorSetpoint.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_actuator_setpoint__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__VehicleActuatorSetpoint__init(px4_msgs__msg__VehicleActuatorSetpoint * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // actuator return true; } void px4_msgs__msg__VehicleActuatorSetpoint__fini(px4_msgs__msg__VehicleActuatorSetpoint * msg) { if (!msg) { return; } // timestamp // timestamp_sample // actuator } px4_msgs__msg__VehicleActuatorSetpoint * px4_msgs__msg__VehicleActuatorSetpoint__create() { px4_msgs__msg__VehicleActuatorSetpoint * msg = (px4_msgs__msg__VehicleActuatorSetpoint *)malloc(sizeof(px4_msgs__msg__VehicleActuatorSetpoint)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleActuatorSetpoint)); bool success = px4_msgs__msg__VehicleActuatorSetpoint__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleActuatorSetpoint__destroy(px4_msgs__msg__VehicleActuatorSetpoint * msg) { if (msg) { px4_msgs__msg__VehicleActuatorSetpoint__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleActuatorSetpoint__Sequence__init(px4_msgs__msg__VehicleActuatorSetpoint__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleActuatorSetpoint * data = NULL; if (size) { data = (px4_msgs__msg__VehicleActuatorSetpoint *)calloc(size, sizeof(px4_msgs__msg__VehicleActuatorSetpoint)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleActuatorSetpoint__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleActuatorSetpoint__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleActuatorSetpoint__Sequence__fini(px4_msgs__msg__VehicleActuatorSetpoint__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleActuatorSetpoint__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleActuatorSetpoint__Sequence * px4_msgs__msg__VehicleActuatorSetpoint__Sequence__create(size_t size) { px4_msgs__msg__VehicleActuatorSetpoint__Sequence * array = (px4_msgs__msg__VehicleActuatorSetpoint__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleActuatorSetpoint__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleActuatorSetpoint__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleActuatorSetpoint__Sequence__destroy(px4_msgs__msg__VehicleActuatorSetpoint__Sequence * array) { if (array) { px4_msgs__msg__VehicleActuatorSetpoint__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/qshell_req__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/QshellReq.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/qshell_req__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__QshellReq__init(px4_msgs__msg__QshellReq * msg) { if (!msg) { return false; } // timestamp // cmd // strlen // request_sequence return true; } void px4_msgs__msg__QshellReq__fini(px4_msgs__msg__QshellReq * msg) { if (!msg) { return; } // timestamp // cmd // strlen // request_sequence } px4_msgs__msg__QshellReq * px4_msgs__msg__QshellReq__create() { px4_msgs__msg__QshellReq * msg = (px4_msgs__msg__QshellReq *)malloc(sizeof(px4_msgs__msg__QshellReq)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__QshellReq)); bool success = px4_msgs__msg__QshellReq__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__QshellReq__destroy(px4_msgs__msg__QshellReq * msg) { if (msg) { px4_msgs__msg__QshellReq__fini(msg); } free(msg); } bool px4_msgs__msg__QshellReq__Sequence__init(px4_msgs__msg__QshellReq__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__QshellReq * data = NULL; if (size) { data = (px4_msgs__msg__QshellReq *)calloc(size, sizeof(px4_msgs__msg__QshellReq)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__QshellReq__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__QshellReq__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__QshellReq__Sequence__fini(px4_msgs__msg__QshellReq__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__QshellReq__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__QshellReq__Sequence * px4_msgs__msg__QshellReq__Sequence__create(size_t size) { px4_msgs__msg__QshellReq__Sequence * array = (px4_msgs__msg__QshellReq__Sequence *)malloc(sizeof(px4_msgs__msg__QshellReq__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__QshellReq__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__QshellReq__Sequence__destroy(px4_msgs__msg__QshellReq__Sequence * array) { if (array) { px4_msgs__msg__QshellReq__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_gps_position.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleGpsPosition.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_GPS_POSITION_H_ #define PX4_MSGS__MSG__VEHICLE_GPS_POSITION_H_ #include "px4_msgs/msg/vehicle_gps_position__struct.h" #include "px4_msgs/msg/vehicle_gps_position__functions.h" #include "px4_msgs/msg/vehicle_gps_position__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_GPS_POSITION_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_status_flags__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/EstimatorStatusFlags.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/estimator_status_flags__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/estimator_status_flags__functions.h" #include "px4_msgs/msg/estimator_status_flags__struct.h" #ifdef __cplusplus extern "C" { #endif void EstimatorStatusFlags__rosidl_typesupport_introspection_c__EstimatorStatusFlags_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__EstimatorStatusFlags__init(message_memory); } void EstimatorStatusFlags__rosidl_typesupport_introspection_c__EstimatorStatusFlags_fini_function(void * message_memory) { px4_msgs__msg__EstimatorStatusFlags__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember EstimatorStatusFlags__rosidl_typesupport_introspection_c__EstimatorStatusFlags_message_member_array[63] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "control_status_changes", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, control_status_changes), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cs_tilt_align", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, cs_tilt_align), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cs_yaw_align", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, cs_yaw_align), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cs_gps", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, cs_gps), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cs_opt_flow", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, cs_opt_flow), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cs_mag_hdg", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, cs_mag_hdg), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cs_mag_3d", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, cs_mag_3d), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cs_mag_dec", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, cs_mag_dec), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cs_in_air", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, cs_in_air), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cs_wind", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, cs_wind), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cs_baro_hgt", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, cs_baro_hgt), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cs_rng_hgt", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, cs_rng_hgt), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cs_gps_hgt", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, cs_gps_hgt), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cs_ev_pos", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, cs_ev_pos), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cs_ev_yaw", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, cs_ev_yaw), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cs_ev_hgt", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, cs_ev_hgt), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cs_fuse_beta", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, cs_fuse_beta), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cs_mag_field_disturbed", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, cs_mag_field_disturbed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cs_fixed_wing", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, cs_fixed_wing), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cs_mag_fault", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, cs_mag_fault), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cs_fuse_aspd", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, cs_fuse_aspd), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cs_gnd_effect", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, cs_gnd_effect), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cs_rng_stuck", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, cs_rng_stuck), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cs_gps_yaw", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, cs_gps_yaw), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cs_mag_aligned_in_flight", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, cs_mag_aligned_in_flight), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cs_ev_vel", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, cs_ev_vel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cs_synthetic_mag_z", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, cs_synthetic_mag_z), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cs_vehicle_at_rest", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, cs_vehicle_at_rest), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "fault_status_changes", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, fault_status_changes), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "fs_bad_mag_x", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, fs_bad_mag_x), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "fs_bad_mag_y", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, fs_bad_mag_y), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "fs_bad_mag_z", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, fs_bad_mag_z), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "fs_bad_hdg", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, fs_bad_hdg), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "fs_bad_mag_decl", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, fs_bad_mag_decl), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "fs_bad_airspeed", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, fs_bad_airspeed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "fs_bad_sideslip", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, fs_bad_sideslip), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "fs_bad_optflow_x", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, fs_bad_optflow_x), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "fs_bad_optflow_y", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, fs_bad_optflow_y), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "fs_bad_vel_n", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, fs_bad_vel_n), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "fs_bad_vel_e", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, fs_bad_vel_e), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "fs_bad_vel_d", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, fs_bad_vel_d), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "fs_bad_pos_n", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, fs_bad_pos_n), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "fs_bad_pos_e", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, fs_bad_pos_e), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "fs_bad_pos_d", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, fs_bad_pos_d), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "fs_bad_acc_bias", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, fs_bad_acc_bias), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "fs_bad_acc_vertical", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, fs_bad_acc_vertical), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "fs_bad_acc_clipping", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, fs_bad_acc_clipping), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "innovation_fault_status_changes", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, innovation_fault_status_changes), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "reject_hor_vel", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, reject_hor_vel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "reject_ver_vel", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, reject_ver_vel), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "reject_hor_pos", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, reject_hor_pos), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "reject_ver_pos", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, reject_ver_pos), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "reject_mag_x", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, reject_mag_x), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "reject_mag_y", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, reject_mag_y), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "reject_mag_z", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, reject_mag_z), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "reject_yaw", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, reject_yaw), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "reject_airspeed", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, reject_airspeed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "reject_sideslip", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, reject_sideslip), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "reject_hagl", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, reject_hagl), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "reject_optflow_x", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, reject_optflow_x), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "reject_optflow_y", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorStatusFlags, reject_optflow_y), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers EstimatorStatusFlags__rosidl_typesupport_introspection_c__EstimatorStatusFlags_message_members = { "px4_msgs__msg", // message namespace "EstimatorStatusFlags", // message name 63, // number of fields sizeof(px4_msgs__msg__EstimatorStatusFlags), EstimatorStatusFlags__rosidl_typesupport_introspection_c__EstimatorStatusFlags_message_member_array, // message members EstimatorStatusFlags__rosidl_typesupport_introspection_c__EstimatorStatusFlags_init_function, // function to initialize message memory (memory has to be allocated) EstimatorStatusFlags__rosidl_typesupport_introspection_c__EstimatorStatusFlags_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t EstimatorStatusFlags__rosidl_typesupport_introspection_c__EstimatorStatusFlags_message_type_support_handle = { 0, &EstimatorStatusFlags__rosidl_typesupport_introspection_c__EstimatorStatusFlags_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, EstimatorStatusFlags)() { if (!EstimatorStatusFlags__rosidl_typesupport_introspection_c__EstimatorStatusFlags_message_type_support_handle.typesupport_identifier) { EstimatorStatusFlags__rosidl_typesupport_introspection_c__EstimatorStatusFlags_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &EstimatorStatusFlags__rosidl_typesupport_introspection_c__EstimatorStatusFlags_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_global_position.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleGlobalPosition.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_GLOBAL_POSITION_H_ #define PX4_MSGS__MSG__VEHICLE_GLOBAL_POSITION_H_ #include "px4_msgs/msg/vehicle_global_position__struct.h" #include "px4_msgs/msg/vehicle_global_position__functions.h" #include "px4_msgs/msg/vehicle_global_position__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_GLOBAL_POSITION_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/manual_control_setpoint.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/ManualControlSetpoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__MANUAL_CONTROL_SETPOINT_H_ #define PX4_MSGS__MSG__MANUAL_CONTROL_SETPOINT_H_ #include "px4_msgs/msg/manual_control_setpoint__struct.h" #include "px4_msgs/msg/manual_control_setpoint__functions.h" #include "px4_msgs/msg/manual_control_setpoint__type_support.h" #endif // PX4_MSGS__MSG__MANUAL_CONTROL_SETPOINT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/airspeed_validated__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/AirspeedValidated.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/airspeed_validated__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__AirspeedValidated__init(px4_msgs__msg__AirspeedValidated * msg) { if (!msg) { return false; } // timestamp // indicated_airspeed_m_s // calibrated_airspeed_m_s // true_airspeed_m_s // calibrated_ground_minus_wind_m_s // true_ground_minus_wind_m_s // airspeed_sensor_measurement_valid // selected_airspeed_index return true; } void px4_msgs__msg__AirspeedValidated__fini(px4_msgs__msg__AirspeedValidated * msg) { if (!msg) { return; } // timestamp // indicated_airspeed_m_s // calibrated_airspeed_m_s // true_airspeed_m_s // calibrated_ground_minus_wind_m_s // true_ground_minus_wind_m_s // airspeed_sensor_measurement_valid // selected_airspeed_index } px4_msgs__msg__AirspeedValidated * px4_msgs__msg__AirspeedValidated__create() { px4_msgs__msg__AirspeedValidated * msg = (px4_msgs__msg__AirspeedValidated *)malloc(sizeof(px4_msgs__msg__AirspeedValidated)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__AirspeedValidated)); bool success = px4_msgs__msg__AirspeedValidated__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__AirspeedValidated__destroy(px4_msgs__msg__AirspeedValidated * msg) { if (msg) { px4_msgs__msg__AirspeedValidated__fini(msg); } free(msg); } bool px4_msgs__msg__AirspeedValidated__Sequence__init(px4_msgs__msg__AirspeedValidated__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__AirspeedValidated * data = NULL; if (size) { data = (px4_msgs__msg__AirspeedValidated *)calloc(size, sizeof(px4_msgs__msg__AirspeedValidated)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__AirspeedValidated__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__AirspeedValidated__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__AirspeedValidated__Sequence__fini(px4_msgs__msg__AirspeedValidated__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__AirspeedValidated__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__AirspeedValidated__Sequence * px4_msgs__msg__AirspeedValidated__Sequence__create(size_t size) { px4_msgs__msg__AirspeedValidated__Sequence * array = (px4_msgs__msg__AirspeedValidated__Sequence *)malloc(sizeof(px4_msgs__msg__AirspeedValidated__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__AirspeedValidated__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__AirspeedValidated__Sequence__destroy(px4_msgs__msg__AirspeedValidated__Sequence * array) { if (array) { px4_msgs__msg__AirspeedValidated__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_baro.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/SensorBaro.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_BARO_H_ #define PX4_MSGS__MSG__SENSOR_BARO_H_ #include "px4_msgs/msg/sensor_baro__struct.h" #include "px4_msgs/msg/sensor_baro__functions.h" #include "px4_msgs/msg/sensor_baro__type_support.h" #endif // PX4_MSGS__MSG__SENSOR_BARO_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/Airspeed.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/airspeed__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/airspeed__struct.h" #include "px4_msgs/msg/airspeed__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _Airspeed__ros_msg_type = px4_msgs__msg__Airspeed; static bool _Airspeed__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _Airspeed__ros_msg_type * ros_message = static_cast<const _Airspeed__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: indicated_airspeed_m_s { cdr << ros_message->indicated_airspeed_m_s; } // Field name: true_airspeed_m_s { cdr << ros_message->true_airspeed_m_s; } // Field name: air_temperature_celsius { cdr << ros_message->air_temperature_celsius; } // Field name: confidence { cdr << ros_message->confidence; } return true; } static bool _Airspeed__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _Airspeed__ros_msg_type * ros_message = static_cast<_Airspeed__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: indicated_airspeed_m_s { cdr >> ros_message->indicated_airspeed_m_s; } // Field name: true_airspeed_m_s { cdr >> ros_message->true_airspeed_m_s; } // Field name: air_temperature_celsius { cdr >> ros_message->air_temperature_celsius; } // Field name: confidence { cdr >> ros_message->confidence; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__Airspeed( const void * untyped_ros_message, size_t current_alignment) { const _Airspeed__ros_msg_type * ros_message = static_cast<const _Airspeed__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name indicated_airspeed_m_s { size_t item_size = sizeof(ros_message->indicated_airspeed_m_s); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name true_airspeed_m_s { size_t item_size = sizeof(ros_message->true_airspeed_m_s); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name air_temperature_celsius { size_t item_size = sizeof(ros_message->air_temperature_celsius); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name confidence { size_t item_size = sizeof(ros_message->confidence); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _Airspeed__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__Airspeed( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__Airspeed( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: indicated_airspeed_m_s { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: true_airspeed_m_s { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: air_temperature_celsius { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: confidence { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _Airspeed__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__Airspeed( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_Airspeed = { "px4_msgs::msg", "Airspeed", _Airspeed__cdr_serialize, _Airspeed__cdr_deserialize, _Airspeed__get_serialized_size, _Airspeed__max_serialized_size }; static rosidl_message_type_support_t _Airspeed__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_Airspeed, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, Airspeed)() { return &_Airspeed__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/pwm_input__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/PwmInput.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/pwm_input__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__PwmInput__init(px4_msgs__msg__PwmInput * msg) { if (!msg) { return false; } // timestamp // error_count // pulse_width // period return true; } void px4_msgs__msg__PwmInput__fini(px4_msgs__msg__PwmInput * msg) { if (!msg) { return; } // timestamp // error_count // pulse_width // period } px4_msgs__msg__PwmInput * px4_msgs__msg__PwmInput__create() { px4_msgs__msg__PwmInput * msg = (px4_msgs__msg__PwmInput *)malloc(sizeof(px4_msgs__msg__PwmInput)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__PwmInput)); bool success = px4_msgs__msg__PwmInput__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__PwmInput__destroy(px4_msgs__msg__PwmInput * msg) { if (msg) { px4_msgs__msg__PwmInput__fini(msg); } free(msg); } bool px4_msgs__msg__PwmInput__Sequence__init(px4_msgs__msg__PwmInput__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__PwmInput * data = NULL; if (size) { data = (px4_msgs__msg__PwmInput *)calloc(size, sizeof(px4_msgs__msg__PwmInput)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__PwmInput__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__PwmInput__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__PwmInput__Sequence__fini(px4_msgs__msg__PwmInput__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__PwmInput__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__PwmInput__Sequence * px4_msgs__msg__PwmInput__Sequence__create(size_t size) { px4_msgs__msg__PwmInput__Sequence * array = (px4_msgs__msg__PwmInput__Sequence *)malloc(sizeof(px4_msgs__msg__PwmInput__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__PwmInput__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__PwmInput__Sequence__destroy(px4_msgs__msg__PwmInput__Sequence * array) { if (array) { px4_msgs__msg__PwmInput__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/mission_result__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/MissionResult.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__MISSION_RESULT__STRUCT_HPP_ #define PX4_MSGS__MSG__MISSION_RESULT__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__MissionResult __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__MissionResult __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct MissionResult_ { using Type = MissionResult_<ContainerAllocator>; explicit MissionResult_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->instance_count = 0ul; this->seq_reached = 0l; this->seq_current = 0; this->seq_total = 0; this->valid = false; this->warning = false; this->finished = false; this->failure = false; this->stay_in_failsafe = false; this->flight_termination = false; this->item_do_jump_changed = false; this->item_changed_index = 0; this->item_do_jump_remaining = 0; this->execution_mode = 0; } } explicit MissionResult_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->instance_count = 0ul; this->seq_reached = 0l; this->seq_current = 0; this->seq_total = 0; this->valid = false; this->warning = false; this->finished = false; this->failure = false; this->stay_in_failsafe = false; this->flight_termination = false; this->item_do_jump_changed = false; this->item_changed_index = 0; this->item_do_jump_remaining = 0; this->execution_mode = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _instance_count_type = uint32_t; _instance_count_type instance_count; using _seq_reached_type = int32_t; _seq_reached_type seq_reached; using _seq_current_type = uint16_t; _seq_current_type seq_current; using _seq_total_type = uint16_t; _seq_total_type seq_total; using _valid_type = bool; _valid_type valid; using _warning_type = bool; _warning_type warning; using _finished_type = bool; _finished_type finished; using _failure_type = bool; _failure_type failure; using _stay_in_failsafe_type = bool; _stay_in_failsafe_type stay_in_failsafe; using _flight_termination_type = bool; _flight_termination_type flight_termination; using _item_do_jump_changed_type = bool; _item_do_jump_changed_type item_do_jump_changed; using _item_changed_index_type = uint16_t; _item_changed_index_type item_changed_index; using _item_do_jump_remaining_type = uint16_t; _item_do_jump_remaining_type item_do_jump_remaining; using _execution_mode_type = uint8_t; _execution_mode_type execution_mode; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__instance_count( const uint32_t & _arg) { this->instance_count = _arg; return *this; } Type & set__seq_reached( const int32_t & _arg) { this->seq_reached = _arg; return *this; } Type & set__seq_current( const uint16_t & _arg) { this->seq_current = _arg; return *this; } Type & set__seq_total( const uint16_t & _arg) { this->seq_total = _arg; return *this; } Type & set__valid( const bool & _arg) { this->valid = _arg; return *this; } Type & set__warning( const bool & _arg) { this->warning = _arg; return *this; } Type & set__finished( const bool & _arg) { this->finished = _arg; return *this; } Type & set__failure( const bool & _arg) { this->failure = _arg; return *this; } Type & set__stay_in_failsafe( const bool & _arg) { this->stay_in_failsafe = _arg; return *this; } Type & set__flight_termination( const bool & _arg) { this->flight_termination = _arg; return *this; } Type & set__item_do_jump_changed( const bool & _arg) { this->item_do_jump_changed = _arg; return *this; } Type & set__item_changed_index( const uint16_t & _arg) { this->item_changed_index = _arg; return *this; } Type & set__item_do_jump_remaining( const uint16_t & _arg) { this->item_do_jump_remaining = _arg; return *this; } Type & set__execution_mode( const uint8_t & _arg) { this->execution_mode = _arg; return *this; } // constant declarations static constexpr uint8_t MISSION_EXECUTION_MODE_NORMAL = 0u; static constexpr uint8_t MISSION_EXECUTION_MODE_REVERSE = 1u; static constexpr uint8_t MISSION_EXECUTION_MODE_FAST_FORWARD = 2u; // pointer types using RawPtr = px4_msgs::msg::MissionResult_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::MissionResult_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::MissionResult_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::MissionResult_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::MissionResult_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::MissionResult_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::MissionResult_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::MissionResult_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::MissionResult_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::MissionResult_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__MissionResult std::shared_ptr<px4_msgs::msg::MissionResult_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__MissionResult std::shared_ptr<px4_msgs::msg::MissionResult_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const MissionResult_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->instance_count != other.instance_count) { return false; } if (this->seq_reached != other.seq_reached) { return false; } if (this->seq_current != other.seq_current) { return false; } if (this->seq_total != other.seq_total) { return false; } if (this->valid != other.valid) { return false; } if (this->warning != other.warning) { return false; } if (this->finished != other.finished) { return false; } if (this->failure != other.failure) { return false; } if (this->stay_in_failsafe != other.stay_in_failsafe) { return false; } if (this->flight_termination != other.flight_termination) { return false; } if (this->item_do_jump_changed != other.item_do_jump_changed) { return false; } if (this->item_changed_index != other.item_changed_index) { return false; } if (this->item_do_jump_remaining != other.item_do_jump_remaining) { return false; } if (this->execution_mode != other.execution_mode) { return false; } return true; } bool operator!=(const MissionResult_ & other) const { return !this->operator==(other); } }; // struct MissionResult_ // alias to use template instance with default allocator using MissionResult = px4_msgs::msg::MissionResult_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t MissionResult_<ContainerAllocator>::MISSION_EXECUTION_MODE_NORMAL; template<typename ContainerAllocator> constexpr uint8_t MissionResult_<ContainerAllocator>::MISSION_EXECUTION_MODE_REVERSE; template<typename ContainerAllocator> constexpr uint8_t MissionResult_<ContainerAllocator>::MISSION_EXECUTION_MODE_FAST_FORWARD; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__MISSION_RESULT__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/orb_test_medium_wrap_around__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/OrbTestMediumWrapAround.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORB_TEST_MEDIUM_WRAP_AROUND__FUNCTIONS_H_ #define PX4_MSGS__MSG__ORB_TEST_MEDIUM_WRAP_AROUND__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/orb_test_medium_wrap_around__struct.h" /// Initialize msg/OrbTestMediumWrapAround message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__OrbTestMediumWrapAround * )) before or use * px4_msgs__msg__OrbTestMediumWrapAround__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__OrbTestMediumWrapAround__init(px4_msgs__msg__OrbTestMediumWrapAround * msg); /// Finalize msg/OrbTestMediumWrapAround message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__OrbTestMediumWrapAround__fini(px4_msgs__msg__OrbTestMediumWrapAround * msg); /// Create msg/OrbTestMediumWrapAround message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__OrbTestMediumWrapAround__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__OrbTestMediumWrapAround * px4_msgs__msg__OrbTestMediumWrapAround__create(); /// Destroy msg/OrbTestMediumWrapAround message. /** * It calls * px4_msgs__msg__OrbTestMediumWrapAround__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__OrbTestMediumWrapAround__destroy(px4_msgs__msg__OrbTestMediumWrapAround * msg); /// Initialize array of msg/OrbTestMediumWrapAround messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__OrbTestMediumWrapAround__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__OrbTestMediumWrapAround__Sequence__init(px4_msgs__msg__OrbTestMediumWrapAround__Sequence * array, size_t size); /// Finalize array of msg/OrbTestMediumWrapAround messages. /** * It calls * px4_msgs__msg__OrbTestMediumWrapAround__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__OrbTestMediumWrapAround__Sequence__fini(px4_msgs__msg__OrbTestMediumWrapAround__Sequence * array); /// Create array of msg/OrbTestMediumWrapAround messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__OrbTestMediumWrapAround__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__OrbTestMediumWrapAround__Sequence * px4_msgs__msg__OrbTestMediumWrapAround__Sequence__create(size_t size); /// Destroy array of msg/OrbTestMediumWrapAround messages. /** * It calls * px4_msgs__msg__OrbTestMediumWrapAround__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__OrbTestMediumWrapAround__Sequence__destroy(px4_msgs__msg__OrbTestMediumWrapAround__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ORB_TEST_MEDIUM_WRAP_AROUND__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_roi.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ROI_HPP_ #define PX4_MSGS__MSG__VEHICLE_ROI_HPP_ #include "px4_msgs/msg/vehicle_roi__struct.hpp" #include "px4_msgs/msg/vehicle_roi__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_ROI_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/tune_control.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TUNE_CONTROL_HPP_ #define PX4_MSGS__MSG__TUNE_CONTROL_HPP_ #include "px4_msgs/msg/tune_control__struct.hpp" #include "px4_msgs/msg/tune_control__traits.hpp" #endif // PX4_MSGS__MSG__TUNE_CONTROL_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/esc_report__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/EscReport.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/esc_report__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/esc_report__functions.h" #include "px4_msgs/msg/esc_report__struct.h" #ifdef __cplusplus extern "C" { #endif void EscReport__rosidl_typesupport_introspection_c__EscReport_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__EscReport__init(message_memory); } void EscReport__rosidl_typesupport_introspection_c__EscReport_fini_function(void * message_memory) { px4_msgs__msg__EscReport__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember EscReport__rosidl_typesupport_introspection_c__EscReport_message_member_array[9] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EscReport, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "esc_errorcount", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EscReport, esc_errorcount), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "esc_rpm", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EscReport, esc_rpm), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "esc_voltage", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EscReport, esc_voltage), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "esc_current", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EscReport, esc_current), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "esc_temperature", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EscReport, esc_temperature), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "esc_address", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EscReport, esc_address), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "esc_state", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EscReport, esc_state), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "failures", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EscReport, failures), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers EscReport__rosidl_typesupport_introspection_c__EscReport_message_members = { "px4_msgs__msg", // message namespace "EscReport", // message name 9, // number of fields sizeof(px4_msgs__msg__EscReport), EscReport__rosidl_typesupport_introspection_c__EscReport_message_member_array, // message members EscReport__rosidl_typesupport_introspection_c__EscReport_init_function, // function to initialize message memory (memory has to be allocated) EscReport__rosidl_typesupport_introspection_c__EscReport_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t EscReport__rosidl_typesupport_introspection_c__EscReport_message_type_support_handle = { 0, &EscReport__rosidl_typesupport_introspection_c__EscReport_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, EscReport)() { if (!EscReport__rosidl_typesupport_introspection_c__EscReport_message_type_support_handle.typesupport_identifier) { EscReport__rosidl_typesupport_introspection_c__EscReport_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &EscReport__rosidl_typesupport_introspection_c__EscReport_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/install/multi_rtd_interfaces/include/multi_rtd_interfaces/msg/robot_trajectory__rosidl_typesupport_fastrtps_cpp.hpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__rosidl_typesupport_fastrtps_cpp.hpp.em // with input from multi_rtd_interfaces:msg/RobotTrajectory.idl // generated code does not contain a copyright notice #ifndef MULTI_RTD_INTERFACES__MSG__ROBOT_TRAJECTORY__ROSIDL_TYPESUPPORT_FASTRTPS_CPP_HPP_ #define MULTI_RTD_INTERFACES__MSG__ROBOT_TRAJECTORY__ROSIDL_TYPESUPPORT_FASTRTPS_CPP_HPP_ #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "multi_rtd_interfaces/msg/rosidl_typesupport_fastrtps_cpp__visibility_control.h" #include "multi_rtd_interfaces/msg/robot_trajectory__struct.hpp" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "fastcdr/Cdr.h" namespace multi_rtd_interfaces { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_multi_rtd_interfaces cdr_serialize( const multi_rtd_interfaces::msg::RobotTrajectory & ros_message, eprosima::fastcdr::Cdr & cdr); bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_multi_rtd_interfaces cdr_deserialize( eprosima::fastcdr::Cdr & cdr, multi_rtd_interfaces::msg::RobotTrajectory & ros_message); size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_multi_rtd_interfaces get_serialized_size( const multi_rtd_interfaces::msg::RobotTrajectory & ros_message, size_t current_alignment); size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_multi_rtd_interfaces max_serialized_size_RobotTrajectory( bool & full_bounded, size_t current_alignment); } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace multi_rtd_interfaces #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_multi_rtd_interfaces const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, multi_rtd_interfaces, msg, RobotTrajectory)(); #ifdef __cplusplus } #endif #endif // MULTI_RTD_INTERFACES__MSG__ROBOT_TRAJECTORY__ROSIDL_TYPESUPPORT_FASTRTPS_CPP_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/obstacle_distance__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/ObstacleDistance.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/obstacle_distance__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/obstacle_distance__functions.h" #include "px4_msgs/msg/obstacle_distance__struct.h" #ifdef __cplusplus extern "C" { #endif void ObstacleDistance__rosidl_typesupport_introspection_c__ObstacleDistance_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__ObstacleDistance__init(message_memory); } void ObstacleDistance__rosidl_typesupport_introspection_c__ObstacleDistance_fini_function(void * message_memory) { px4_msgs__msg__ObstacleDistance__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember ObstacleDistance__rosidl_typesupport_introspection_c__ObstacleDistance_message_member_array[8] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ObstacleDistance, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "frame", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ObstacleDistance, frame), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "sensor_type", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ObstacleDistance, sensor_type), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "distances", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message true, // is array 72, // array size false, // is upper bound offsetof(px4_msgs__msg__ObstacleDistance, distances), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "increment", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ObstacleDistance, increment), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "min_distance", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ObstacleDistance, min_distance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "max_distance", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ObstacleDistance, max_distance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "angle_offset", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__ObstacleDistance, angle_offset), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers ObstacleDistance__rosidl_typesupport_introspection_c__ObstacleDistance_message_members = { "px4_msgs__msg", // message namespace "ObstacleDistance", // message name 8, // number of fields sizeof(px4_msgs__msg__ObstacleDistance), ObstacleDistance__rosidl_typesupport_introspection_c__ObstacleDistance_message_member_array, // message members ObstacleDistance__rosidl_typesupport_introspection_c__ObstacleDistance_init_function, // function to initialize message memory (memory has to be allocated) ObstacleDistance__rosidl_typesupport_introspection_c__ObstacleDistance_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t ObstacleDistance__rosidl_typesupport_introspection_c__ObstacleDistance_message_type_support_handle = { 0, &ObstacleDistance__rosidl_typesupport_introspection_c__ObstacleDistance_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, ObstacleDistance)() { if (!ObstacleDistance__rosidl_typesupport_introspection_c__ObstacleDistance_message_type_support_handle.typesupport_identifier) { ObstacleDistance__rosidl_typesupport_introspection_c__ObstacleDistance_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &ObstacleDistance__rosidl_typesupport_introspection_c__ObstacleDistance_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_estimator_optical_flow_vel.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/EstimatorOpticalFlowVel.idl # generated code does not contain a copyright notice # Import statements for member types # Member 'vel_body' # Member 'vel_ne' # Member 'flow_uncompensated_integral' # Member 'flow_compensated_integral' # Member 'gyro_rate_integral' import numpy # noqa: E402, I100 import rosidl_parser.definition # noqa: E402, I100 class Metaclass_EstimatorOpticalFlowVel(type): """Metaclass of message 'EstimatorOpticalFlowVel'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.EstimatorOpticalFlowVel') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__estimator_optical_flow_vel cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__estimator_optical_flow_vel cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__estimator_optical_flow_vel cls._TYPE_SUPPORT = module.type_support_msg__msg__estimator_optical_flow_vel cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__estimator_optical_flow_vel @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class EstimatorOpticalFlowVel(metaclass=Metaclass_EstimatorOpticalFlowVel): """Message class 'EstimatorOpticalFlowVel'.""" __slots__ = [ '_timestamp', '_timestamp_sample', '_vel_body', '_vel_ne', '_flow_uncompensated_integral', '_flow_compensated_integral', '_gyro_rate_integral', ] _fields_and_field_types = { 'timestamp': 'uint64', 'timestamp_sample': 'uint64', 'vel_body': 'float[2]', 'vel_ne': 'float[2]', 'flow_uncompensated_integral': 'float[2]', 'flow_compensated_integral': 'float[2]', 'gyro_rate_integral': 'float[3]', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 2), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 2), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 2), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 2), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.timestamp_sample = kwargs.get('timestamp_sample', int()) if 'vel_body' not in kwargs: self.vel_body = numpy.zeros(2, dtype=numpy.float32) else: self.vel_body = numpy.array(kwargs.get('vel_body'), dtype=numpy.float32) assert self.vel_body.shape == (2, ) if 'vel_ne' not in kwargs: self.vel_ne = numpy.zeros(2, dtype=numpy.float32) else: self.vel_ne = numpy.array(kwargs.get('vel_ne'), dtype=numpy.float32) assert self.vel_ne.shape == (2, ) if 'flow_uncompensated_integral' not in kwargs: self.flow_uncompensated_integral = numpy.zeros(2, dtype=numpy.float32) else: self.flow_uncompensated_integral = numpy.array(kwargs.get('flow_uncompensated_integral'), dtype=numpy.float32) assert self.flow_uncompensated_integral.shape == (2, ) if 'flow_compensated_integral' not in kwargs: self.flow_compensated_integral = numpy.zeros(2, dtype=numpy.float32) else: self.flow_compensated_integral = numpy.array(kwargs.get('flow_compensated_integral'), dtype=numpy.float32) assert self.flow_compensated_integral.shape == (2, ) if 'gyro_rate_integral' not in kwargs: self.gyro_rate_integral = numpy.zeros(3, dtype=numpy.float32) else: self.gyro_rate_integral = numpy.array(kwargs.get('gyro_rate_integral'), dtype=numpy.float32) assert self.gyro_rate_integral.shape == (3, ) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.timestamp_sample != other.timestamp_sample: return False if all(self.vel_body != other.vel_body): return False if all(self.vel_ne != other.vel_ne): return False if all(self.flow_uncompensated_integral != other.flow_uncompensated_integral): return False if all(self.flow_compensated_integral != other.flow_compensated_integral): return False if all(self.gyro_rate_integral != other.gyro_rate_integral): return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def timestamp_sample(self): """Message field 'timestamp_sample'.""" return self._timestamp_sample @timestamp_sample.setter def timestamp_sample(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp_sample' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp_sample' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp_sample = value @property def vel_body(self): """Message field 'vel_body'.""" return self._vel_body @vel_body.setter def vel_body(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'vel_body' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 2, \ "The 'vel_body' numpy.ndarray() must have a size of 2" self._vel_body = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 2 and all(isinstance(v, float) for v in value) and True), \ "The 'vel_body' field must be a set or sequence with length 2 and each value of type 'float'" self._vel_body = numpy.array(value, dtype=numpy.float32) @property def vel_ne(self): """Message field 'vel_ne'.""" return self._vel_ne @vel_ne.setter def vel_ne(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'vel_ne' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 2, \ "The 'vel_ne' numpy.ndarray() must have a size of 2" self._vel_ne = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 2 and all(isinstance(v, float) for v in value) and True), \ "The 'vel_ne' field must be a set or sequence with length 2 and each value of type 'float'" self._vel_ne = numpy.array(value, dtype=numpy.float32) @property def flow_uncompensated_integral(self): """Message field 'flow_uncompensated_integral'.""" return self._flow_uncompensated_integral @flow_uncompensated_integral.setter def flow_uncompensated_integral(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'flow_uncompensated_integral' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 2, \ "The 'flow_uncompensated_integral' numpy.ndarray() must have a size of 2" self._flow_uncompensated_integral = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 2 and all(isinstance(v, float) for v in value) and True), \ "The 'flow_uncompensated_integral' field must be a set or sequence with length 2 and each value of type 'float'" self._flow_uncompensated_integral = numpy.array(value, dtype=numpy.float32) @property def flow_compensated_integral(self): """Message field 'flow_compensated_integral'.""" return self._flow_compensated_integral @flow_compensated_integral.setter def flow_compensated_integral(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'flow_compensated_integral' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 2, \ "The 'flow_compensated_integral' numpy.ndarray() must have a size of 2" self._flow_compensated_integral = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 2 and all(isinstance(v, float) for v in value) and True), \ "The 'flow_compensated_integral' field must be a set or sequence with length 2 and each value of type 'float'" self._flow_compensated_integral = numpy.array(value, dtype=numpy.float32) @property def gyro_rate_integral(self): """Message field 'gyro_rate_integral'.""" return self._gyro_rate_integral @gyro_rate_integral.setter def gyro_rate_integral(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'gyro_rate_integral' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'gyro_rate_integral' numpy.ndarray() must have a size of 3" self._gyro_rate_integral = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'gyro_rate_integral' field must be a set or sequence with length 3 and each value of type 'float'" self._gyro_rate_integral = numpy.array(value, dtype=numpy.float32) <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/airspeed_wind__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/AirspeedWind.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/airspeed_wind__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void AirspeedWind_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::AirspeedWind(_init); } void AirspeedWind_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::AirspeedWind *>(message_memory); typed_message->~AirspeedWind(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember AirspeedWind_message_member_array[12] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::AirspeedWind, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::AirspeedWind, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "windspeed_north", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::AirspeedWind, windspeed_north), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "windspeed_east", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::AirspeedWind, windspeed_east), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "variance_north", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::AirspeedWind, variance_north), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "variance_east", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::AirspeedWind, variance_east), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "tas_innov", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::AirspeedWind, tas_innov), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "tas_innov_var", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::AirspeedWind, tas_innov_var), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "tas_scale", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::AirspeedWind, tas_scale), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "beta_innov", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::AirspeedWind, beta_innov), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "beta_innov_var", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::AirspeedWind, beta_innov_var), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "source", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::AirspeedWind, source), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers AirspeedWind_message_members = { "px4_msgs::msg", // message namespace "AirspeedWind", // message name 12, // number of fields sizeof(px4_msgs::msg::AirspeedWind), AirspeedWind_message_member_array, // message members AirspeedWind_init_function, // function to initialize message memory (memory has to be allocated) AirspeedWind_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t AirspeedWind_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &AirspeedWind_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::AirspeedWind>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::AirspeedWind_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, AirspeedWind)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::AirspeedWind_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_local_position_setpoint__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleLocalPositionSetpoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_SETPOINT__FUNCTIONS_H_ #define PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_SETPOINT__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/vehicle_local_position_setpoint__struct.h" /// Initialize msg/VehicleLocalPositionSetpoint message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__VehicleLocalPositionSetpoint * )) before or use * px4_msgs__msg__VehicleLocalPositionSetpoint__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__VehicleLocalPositionSetpoint__init(px4_msgs__msg__VehicleLocalPositionSetpoint * msg); /// Finalize msg/VehicleLocalPositionSetpoint message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleLocalPositionSetpoint__fini(px4_msgs__msg__VehicleLocalPositionSetpoint * msg); /// Create msg/VehicleLocalPositionSetpoint message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__VehicleLocalPositionSetpoint__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__VehicleLocalPositionSetpoint * px4_msgs__msg__VehicleLocalPositionSetpoint__create(); /// Destroy msg/VehicleLocalPositionSetpoint message. /** * It calls * px4_msgs__msg__VehicleLocalPositionSetpoint__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleLocalPositionSetpoint__destroy(px4_msgs__msg__VehicleLocalPositionSetpoint * msg); /// Initialize array of msg/VehicleLocalPositionSetpoint messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__VehicleLocalPositionSetpoint__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__VehicleLocalPositionSetpoint__Sequence__init(px4_msgs__msg__VehicleLocalPositionSetpoint__Sequence * array, size_t size); /// Finalize array of msg/VehicleLocalPositionSetpoint messages. /** * It calls * px4_msgs__msg__VehicleLocalPositionSetpoint__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleLocalPositionSetpoint__Sequence__fini(px4_msgs__msg__VehicleLocalPositionSetpoint__Sequence * array); /// Create array of msg/VehicleLocalPositionSetpoint messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__VehicleLocalPositionSetpoint__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__VehicleLocalPositionSetpoint__Sequence * px4_msgs__msg__VehicleLocalPositionSetpoint__Sequence__create(size_t size); /// Destroy array of msg/VehicleLocalPositionSetpoint messages. /** * It calls * px4_msgs__msg__VehicleLocalPositionSetpoint__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleLocalPositionSetpoint__Sequence__destroy(px4_msgs__msg__VehicleLocalPositionSetpoint__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_SETPOINT__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/esc_status__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/EscStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/esc_status__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/esc_status__struct.h" #include "px4_msgs/msg/esc_status__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif #include "px4_msgs/msg/esc_report__functions.h" // esc // forward declare type support functions size_t get_serialized_size_px4_msgs__msg__EscReport( const void * untyped_ros_message, size_t current_alignment); size_t max_serialized_size_px4_msgs__msg__EscReport( bool & full_bounded, size_t current_alignment); const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, EscReport)(); using _EscStatus__ros_msg_type = px4_msgs__msg__EscStatus; static bool _EscStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _EscStatus__ros_msg_type * ros_message = static_cast<const _EscStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: counter { cdr << ros_message->counter; } // Field name: esc_count { cdr << ros_message->esc_count; } // Field name: esc_connectiontype { cdr << ros_message->esc_connectiontype; } // Field name: esc_online_flags { cdr << ros_message->esc_online_flags; } // Field name: esc_armed_flags { cdr << ros_message->esc_armed_flags; } // Field name: esc { const message_type_support_callbacks_t * callbacks = static_cast<const message_type_support_callbacks_t *>( ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, EscReport )()->data); size_t size = 8; auto array_ptr = ros_message->esc; for (size_t i = 0; i < size; ++i) { if (!callbacks->cdr_serialize( &array_ptr[i], cdr)) { return false; } } } return true; } static bool _EscStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _EscStatus__ros_msg_type * ros_message = static_cast<_EscStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: counter { cdr >> ros_message->counter; } // Field name: esc_count { cdr >> ros_message->esc_count; } // Field name: esc_connectiontype { cdr >> ros_message->esc_connectiontype; } // Field name: esc_online_flags { cdr >> ros_message->esc_online_flags; } // Field name: esc_armed_flags { cdr >> ros_message->esc_armed_flags; } // Field name: esc { const message_type_support_callbacks_t * callbacks = static_cast<const message_type_support_callbacks_t *>( ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, EscReport )()->data); size_t size = 8; auto array_ptr = ros_message->esc; for (size_t i = 0; i < size; ++i) { if (!callbacks->cdr_deserialize( cdr, &array_ptr[i])) { return false; } } } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__EscStatus( const void * untyped_ros_message, size_t current_alignment) { const _EscStatus__ros_msg_type * ros_message = static_cast<const _EscStatus__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name counter { size_t item_size = sizeof(ros_message->counter); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name esc_count { size_t item_size = sizeof(ros_message->esc_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name esc_connectiontype { size_t item_size = sizeof(ros_message->esc_connectiontype); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name esc_online_flags { size_t item_size = sizeof(ros_message->esc_online_flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name esc_armed_flags { size_t item_size = sizeof(ros_message->esc_armed_flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name esc { size_t array_size = 8; auto array_ptr = ros_message->esc; for (size_t index = 0; index < array_size; ++index) { current_alignment += get_serialized_size_px4_msgs__msg__EscReport( &array_ptr[index], current_alignment); } } return current_alignment - initial_alignment; } static uint32_t _EscStatus__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__EscStatus( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__EscStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: counter { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: esc_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: esc_connectiontype { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: esc_online_flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: esc_armed_flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: esc { size_t array_size = 8; for (size_t index = 0; index < array_size; ++index) { current_alignment += max_serialized_size_px4_msgs__msg__EscReport( full_bounded, current_alignment); } } return current_alignment - initial_alignment; } static size_t _EscStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__EscStatus( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_EscStatus = { "px4_msgs::msg", "EscStatus", _EscStatus__cdr_serialize, _EscStatus__cdr_deserialize, _EscStatus__get_serialized_size, _EscStatus__max_serialized_size }; static rosidl_message_type_support_t _EscStatus__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_EscStatus, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, EscStatus)() { return &_EscStatus__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/trajectory_setpoint.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TRAJECTORY_SETPOINT_HPP_ #define PX4_MSGS__MSG__TRAJECTORY_SETPOINT_HPP_ #include "px4_msgs/msg/trajectory_setpoint__struct.hpp" #include "px4_msgs/msg/trajectory_setpoint__traits.hpp" #endif // PX4_MSGS__MSG__TRAJECTORY_SETPOINT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_constraints.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleConstraints.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_CONSTRAINTS_H_ #define PX4_MSGS__MSG__VEHICLE_CONSTRAINTS_H_ #include "px4_msgs/msg/vehicle_constraints__struct.h" #include "px4_msgs/msg/vehicle_constraints__functions.h" #include "px4_msgs/msg/vehicle_constraints__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_CONSTRAINTS_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_status_flags__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleStatusFlags.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/vehicle_status_flags__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void VehicleStatusFlags_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::VehicleStatusFlags(_init); } void VehicleStatusFlags_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::VehicleStatusFlags *>(message_memory); typed_message->~VehicleStatusFlags(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember VehicleStatusFlags_message_member_array[34] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "condition_calibration_enabled", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, condition_calibration_enabled), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "condition_system_sensors_initialized", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, condition_system_sensors_initialized), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "condition_system_hotplug_timeout", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, condition_system_hotplug_timeout), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "condition_system_returned_to_home", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, condition_system_returned_to_home), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "condition_auto_mission_available", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, condition_auto_mission_available), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "condition_angular_velocity_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, condition_angular_velocity_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "condition_attitude_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, condition_attitude_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "condition_local_altitude_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, condition_local_altitude_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "condition_local_position_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, condition_local_position_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "condition_local_velocity_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, condition_local_velocity_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "condition_global_position_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, condition_global_position_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "condition_home_position_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, condition_home_position_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "condition_power_input_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, condition_power_input_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "condition_battery_healthy", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, condition_battery_healthy), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "condition_escs_error", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, condition_escs_error), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "condition_escs_failure", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, condition_escs_failure), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "circuit_breaker_engaged_power_check", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, circuit_breaker_engaged_power_check), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "circuit_breaker_engaged_airspd_check", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, circuit_breaker_engaged_airspd_check), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "circuit_breaker_engaged_enginefailure_check", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, circuit_breaker_engaged_enginefailure_check), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "circuit_breaker_flight_termination_disabled", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, circuit_breaker_flight_termination_disabled), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "circuit_breaker_engaged_usb_check", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, circuit_breaker_engaged_usb_check), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "circuit_breaker_engaged_posfailure_check", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, circuit_breaker_engaged_posfailure_check), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "circuit_breaker_vtol_fw_arming_check", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, circuit_breaker_vtol_fw_arming_check), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "offboard_control_signal_found_once", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, offboard_control_signal_found_once), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "offboard_control_signal_lost", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, offboard_control_signal_lost), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rc_signal_found_once", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, rc_signal_found_once), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rc_input_blocked", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, rc_input_blocked), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "rc_calibration_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, rc_calibration_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vtol_transition_failure", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, vtol_transition_failure), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "usb_connected", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, usb_connected), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "sd_card_detected_once", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, sd_card_detected_once), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "avoidance_system_required", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, avoidance_system_required), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "avoidance_system_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleStatusFlags, avoidance_system_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers VehicleStatusFlags_message_members = { "px4_msgs::msg", // message namespace "VehicleStatusFlags", // message name 34, // number of fields sizeof(px4_msgs::msg::VehicleStatusFlags), VehicleStatusFlags_message_member_array, // message members VehicleStatusFlags_init_function, // function to initialize message memory (memory has to be allocated) VehicleStatusFlags_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t VehicleStatusFlags_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &VehicleStatusFlags_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleStatusFlags>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleStatusFlags_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, VehicleStatusFlags)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleStatusFlags_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/px4_io_status.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__PX4_IO_STATUS_HPP_ #define PX4_MSGS__MSG__PX4_IO_STATUS_HPP_ #include "px4_msgs/msg/px4_io_status__struct.hpp" #include "px4_msgs/msg/px4_io_status__traits.hpp" #endif // PX4_MSGS__MSG__PX4_IO_STATUS_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/satellite_info__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/SatelliteInfo.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SATELLITE_INFO__STRUCT_H_ #define PX4_MSGS__MSG__SATELLITE_INFO__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'SAT_INFO_MAX_SATELLITES'. enum { px4_msgs__msg__SatelliteInfo__SAT_INFO_MAX_SATELLITES = 20 }; // Struct defined in msg/SatelliteInfo in the package px4_msgs. typedef struct px4_msgs__msg__SatelliteInfo { uint64_t timestamp; uint8_t count; uint8_t svid[20]; uint8_t used[20]; uint8_t elevation[20]; uint8_t azimuth[20]; uint8_t snr[20]; uint8_t prn[20]; } px4_msgs__msg__SatelliteInfo; // Struct for a sequence of px4_msgs__msg__SatelliteInfo. typedef struct px4_msgs__msg__SatelliteInfo__Sequence { px4_msgs__msg__SatelliteInfo * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__SatelliteInfo__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__SATELLITE_INFO__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/sensor_correction__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/SensorCorrection.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/sensor_correction__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/sensor_correction__struct.h" #include "px4_msgs/msg/sensor_correction__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _SensorCorrection__ros_msg_type = px4_msgs__msg__SensorCorrection; static bool _SensorCorrection__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _SensorCorrection__ros_msg_type * ros_message = static_cast<const _SensorCorrection__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: gyro_device_ids { size_t size = 4; auto array_ptr = ros_message->gyro_device_ids; cdr.serializeArray(array_ptr, size); } // Field name: gyro_offset_0 { size_t size = 3; auto array_ptr = ros_message->gyro_offset_0; cdr.serializeArray(array_ptr, size); } // Field name: gyro_offset_1 { size_t size = 3; auto array_ptr = ros_message->gyro_offset_1; cdr.serializeArray(array_ptr, size); } // Field name: gyro_offset_2 { size_t size = 3; auto array_ptr = ros_message->gyro_offset_2; cdr.serializeArray(array_ptr, size); } // Field name: gyro_offset_3 { size_t size = 3; auto array_ptr = ros_message->gyro_offset_3; cdr.serializeArray(array_ptr, size); } // Field name: accel_device_ids { size_t size = 4; auto array_ptr = ros_message->accel_device_ids; cdr.serializeArray(array_ptr, size); } // Field name: accel_offset_0 { size_t size = 3; auto array_ptr = ros_message->accel_offset_0; cdr.serializeArray(array_ptr, size); } // Field name: accel_offset_1 { size_t size = 3; auto array_ptr = ros_message->accel_offset_1; cdr.serializeArray(array_ptr, size); } // Field name: accel_offset_2 { size_t size = 3; auto array_ptr = ros_message->accel_offset_2; cdr.serializeArray(array_ptr, size); } // Field name: accel_offset_3 { size_t size = 3; auto array_ptr = ros_message->accel_offset_3; cdr.serializeArray(array_ptr, size); } // Field name: baro_device_ids { size_t size = 4; auto array_ptr = ros_message->baro_device_ids; cdr.serializeArray(array_ptr, size); } // Field name: baro_offset_0 { cdr << ros_message->baro_offset_0; } // Field name: baro_offset_1 { cdr << ros_message->baro_offset_1; } // Field name: baro_offset_2 { cdr << ros_message->baro_offset_2; } // Field name: baro_offset_3 { cdr << ros_message->baro_offset_3; } return true; } static bool _SensorCorrection__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _SensorCorrection__ros_msg_type * ros_message = static_cast<_SensorCorrection__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: gyro_device_ids { size_t size = 4; auto array_ptr = ros_message->gyro_device_ids; cdr.deserializeArray(array_ptr, size); } // Field name: gyro_offset_0 { size_t size = 3; auto array_ptr = ros_message->gyro_offset_0; cdr.deserializeArray(array_ptr, size); } // Field name: gyro_offset_1 { size_t size = 3; auto array_ptr = ros_message->gyro_offset_1; cdr.deserializeArray(array_ptr, size); } // Field name: gyro_offset_2 { size_t size = 3; auto array_ptr = ros_message->gyro_offset_2; cdr.deserializeArray(array_ptr, size); } // Field name: gyro_offset_3 { size_t size = 3; auto array_ptr = ros_message->gyro_offset_3; cdr.deserializeArray(array_ptr, size); } // Field name: accel_device_ids { size_t size = 4; auto array_ptr = ros_message->accel_device_ids; cdr.deserializeArray(array_ptr, size); } // Field name: accel_offset_0 { size_t size = 3; auto array_ptr = ros_message->accel_offset_0; cdr.deserializeArray(array_ptr, size); } // Field name: accel_offset_1 { size_t size = 3; auto array_ptr = ros_message->accel_offset_1; cdr.deserializeArray(array_ptr, size); } // Field name: accel_offset_2 { size_t size = 3; auto array_ptr = ros_message->accel_offset_2; cdr.deserializeArray(array_ptr, size); } // Field name: accel_offset_3 { size_t size = 3; auto array_ptr = ros_message->accel_offset_3; cdr.deserializeArray(array_ptr, size); } // Field name: baro_device_ids { size_t size = 4; auto array_ptr = ros_message->baro_device_ids; cdr.deserializeArray(array_ptr, size); } // Field name: baro_offset_0 { cdr >> ros_message->baro_offset_0; } // Field name: baro_offset_1 { cdr >> ros_message->baro_offset_1; } // Field name: baro_offset_2 { cdr >> ros_message->baro_offset_2; } // Field name: baro_offset_3 { cdr >> ros_message->baro_offset_3; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__SensorCorrection( const void * untyped_ros_message, size_t current_alignment) { const _SensorCorrection__ros_msg_type * ros_message = static_cast<const _SensorCorrection__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gyro_device_ids { size_t array_size = 4; auto array_ptr = ros_message->gyro_device_ids; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gyro_offset_0 { size_t array_size = 3; auto array_ptr = ros_message->gyro_offset_0; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gyro_offset_1 { size_t array_size = 3; auto array_ptr = ros_message->gyro_offset_1; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gyro_offset_2 { size_t array_size = 3; auto array_ptr = ros_message->gyro_offset_2; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gyro_offset_3 { size_t array_size = 3; auto array_ptr = ros_message->gyro_offset_3; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name accel_device_ids { size_t array_size = 4; auto array_ptr = ros_message->accel_device_ids; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name accel_offset_0 { size_t array_size = 3; auto array_ptr = ros_message->accel_offset_0; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name accel_offset_1 { size_t array_size = 3; auto array_ptr = ros_message->accel_offset_1; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name accel_offset_2 { size_t array_size = 3; auto array_ptr = ros_message->accel_offset_2; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name accel_offset_3 { size_t array_size = 3; auto array_ptr = ros_message->accel_offset_3; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name baro_device_ids { size_t array_size = 4; auto array_ptr = ros_message->baro_device_ids; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name baro_offset_0 { size_t item_size = sizeof(ros_message->baro_offset_0); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name baro_offset_1 { size_t item_size = sizeof(ros_message->baro_offset_1); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name baro_offset_2 { size_t item_size = sizeof(ros_message->baro_offset_2); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name baro_offset_3 { size_t item_size = sizeof(ros_message->baro_offset_3); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _SensorCorrection__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__SensorCorrection( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__SensorCorrection( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: gyro_device_ids { size_t array_size = 4; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gyro_offset_0 { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gyro_offset_1 { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gyro_offset_2 { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gyro_offset_3 { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: accel_device_ids { size_t array_size = 4; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: accel_offset_0 { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: accel_offset_1 { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: accel_offset_2 { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: accel_offset_3 { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: baro_device_ids { size_t array_size = 4; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: baro_offset_0 { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: baro_offset_1 { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: baro_offset_2 { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: baro_offset_3 { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _SensorCorrection__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__SensorCorrection( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_SensorCorrection = { "px4_msgs::msg", "SensorCorrection", _SensorCorrection__cdr_serialize, _SensorCorrection__cdr_deserialize, _SensorCorrection__get_serialized_size, _SensorCorrection__max_serialized_size }; static rosidl_message_type_support_t _SensorCorrection__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_SensorCorrection, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, SensorCorrection)() { return &_SensorCorrection__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_wind__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/EstimatorWind.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_WIND__STRUCT_H_ #define PX4_MSGS__MSG__ESTIMATOR_WIND__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/EstimatorWind in the package px4_msgs. typedef struct px4_msgs__msg__EstimatorWind { uint64_t timestamp; uint64_t timestamp_sample; float windspeed_north; float windspeed_east; float variance_north; float variance_east; float tas_innov; float tas_innov_var; float beta_innov; float beta_innov_var; } px4_msgs__msg__EstimatorWind; // Struct for a sequence of px4_msgs__msg__EstimatorWind. typedef struct px4_msgs__msg__EstimatorWind__Sequence { px4_msgs__msg__EstimatorWind * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__EstimatorWind__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ESTIMATOR_WIND__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/logger_status__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/LoggerStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__LOGGER_STATUS__STRUCT_H_ #define PX4_MSGS__MSG__LOGGER_STATUS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'LOGGER_TYPE_FULL'. enum { px4_msgs__msg__LoggerStatus__LOGGER_TYPE_FULL = 0 }; /// Constant 'LOGGER_TYPE_MISSION'. enum { px4_msgs__msg__LoggerStatus__LOGGER_TYPE_MISSION = 1 }; /// Constant 'BACKEND_FILE'. enum { px4_msgs__msg__LoggerStatus__BACKEND_FILE = 1 }; /// Constant 'BACKEND_MAVLINK'. enum { px4_msgs__msg__LoggerStatus__BACKEND_MAVLINK = 2 }; /// Constant 'BACKEND_ALL'. enum { px4_msgs__msg__LoggerStatus__BACKEND_ALL = 3 }; // Struct defined in msg/LoggerStatus in the package px4_msgs. typedef struct px4_msgs__msg__LoggerStatus { uint64_t timestamp; uint8_t type; uint8_t backend; float total_written_kb; float write_rate_kb_s; uint32_t dropouts; uint32_t message_gaps; uint32_t buffer_used_bytes; uint32_t buffer_size_bytes; uint8_t num_messages; } px4_msgs__msg__LoggerStatus; // Struct for a sequence of px4_msgs__msg__LoggerStatus. typedef struct px4_msgs__msg__LoggerStatus__Sequence { px4_msgs__msg__LoggerStatus * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__LoggerStatus__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__LOGGER_STATUS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_command_ack__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/VehicleCommandAck.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_COMMAND_ACK__STRUCT_HPP_ #define PX4_MSGS__MSG__VEHICLE_COMMAND_ACK__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__VehicleCommandAck __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__VehicleCommandAck __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct VehicleCommandAck_ { using Type = VehicleCommandAck_<ContainerAllocator>; explicit VehicleCommandAck_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->command = 0ul; this->result = 0; this->from_external = false; this->result_param1 = 0; this->result_param2 = 0l; this->target_system = 0; this->target_component = 0; } } explicit VehicleCommandAck_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->command = 0ul; this->result = 0; this->from_external = false; this->result_param1 = 0; this->result_param2 = 0l; this->target_system = 0; this->target_component = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _command_type = uint32_t; _command_type command; using _result_type = uint8_t; _result_type result; using _from_external_type = bool; _from_external_type from_external; using _result_param1_type = uint8_t; _result_param1_type result_param1; using _result_param2_type = int32_t; _result_param2_type result_param2; using _target_system_type = uint8_t; _target_system_type target_system; using _target_component_type = uint8_t; _target_component_type target_component; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__command( const uint32_t & _arg) { this->command = _arg; return *this; } Type & set__result( const uint8_t & _arg) { this->result = _arg; return *this; } Type & set__from_external( const bool & _arg) { this->from_external = _arg; return *this; } Type & set__result_param1( const uint8_t & _arg) { this->result_param1 = _arg; return *this; } Type & set__result_param2( const int32_t & _arg) { this->result_param2 = _arg; return *this; } Type & set__target_system( const uint8_t & _arg) { this->target_system = _arg; return *this; } Type & set__target_component( const uint8_t & _arg) { this->target_component = _arg; return *this; } // constant declarations static constexpr uint8_t VEHICLE_RESULT_ACCEPTED = 0u; static constexpr uint8_t VEHICLE_RESULT_TEMPORARILY_REJECTED = 1u; static constexpr uint8_t VEHICLE_RESULT_DENIED = 2u; static constexpr uint8_t VEHICLE_RESULT_UNSUPPORTED = 3u; static constexpr uint8_t VEHICLE_RESULT_FAILED = 4u; static constexpr uint8_t VEHICLE_RESULT_IN_PROGRESS = 5u; static constexpr uint16_t ARM_AUTH_DENIED_REASON_GENERIC = 0u; static constexpr uint16_t ARM_AUTH_DENIED_REASON_NONE = 1u; static constexpr uint16_t ARM_AUTH_DENIED_REASON_INVALID_WAYPOINT = 2u; static constexpr uint16_t ARM_AUTH_DENIED_REASON_TIMEOUT = 3u; static constexpr uint16_t ARM_AUTH_DENIED_REASON_AIRSPACE_IN_USE = 4u; static constexpr uint16_t ARM_AUTH_DENIED_REASON_BAD_WEATHER = 5u; static constexpr uint8_t ORB_QUEUE_LENGTH = 4u; // pointer types using RawPtr = px4_msgs::msg::VehicleCommandAck_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::VehicleCommandAck_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::VehicleCommandAck_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::VehicleCommandAck_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleCommandAck_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleCommandAck_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleCommandAck_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleCommandAck_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::VehicleCommandAck_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::VehicleCommandAck_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__VehicleCommandAck std::shared_ptr<px4_msgs::msg::VehicleCommandAck_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__VehicleCommandAck std::shared_ptr<px4_msgs::msg::VehicleCommandAck_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const VehicleCommandAck_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->command != other.command) { return false; } if (this->result != other.result) { return false; } if (this->from_external != other.from_external) { return false; } if (this->result_param1 != other.result_param1) { return false; } if (this->result_param2 != other.result_param2) { return false; } if (this->target_system != other.target_system) { return false; } if (this->target_component != other.target_component) { return false; } return true; } bool operator!=(const VehicleCommandAck_ & other) const { return !this->operator==(other); } }; // struct VehicleCommandAck_ // alias to use template instance with default allocator using VehicleCommandAck = px4_msgs::msg::VehicleCommandAck_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t VehicleCommandAck_<ContainerAllocator>::VEHICLE_RESULT_ACCEPTED; template<typename ContainerAllocator> constexpr uint8_t VehicleCommandAck_<ContainerAllocator>::VEHICLE_RESULT_TEMPORARILY_REJECTED; template<typename ContainerAllocator> constexpr uint8_t VehicleCommandAck_<ContainerAllocator>::VEHICLE_RESULT_DENIED; template<typename ContainerAllocator> constexpr uint8_t VehicleCommandAck_<ContainerAllocator>::VEHICLE_RESULT_UNSUPPORTED; template<typename ContainerAllocator> constexpr uint8_t VehicleCommandAck_<ContainerAllocator>::VEHICLE_RESULT_FAILED; template<typename ContainerAllocator> constexpr uint8_t VehicleCommandAck_<ContainerAllocator>::VEHICLE_RESULT_IN_PROGRESS; template<typename ContainerAllocator> constexpr uint16_t VehicleCommandAck_<ContainerAllocator>::ARM_AUTH_DENIED_REASON_GENERIC; template<typename ContainerAllocator> constexpr uint16_t VehicleCommandAck_<ContainerAllocator>::ARM_AUTH_DENIED_REASON_NONE; template<typename ContainerAllocator> constexpr uint16_t VehicleCommandAck_<ContainerAllocator>::ARM_AUTH_DENIED_REASON_INVALID_WAYPOINT; template<typename ContainerAllocator> constexpr uint16_t VehicleCommandAck_<ContainerAllocator>::ARM_AUTH_DENIED_REASON_TIMEOUT; template<typename ContainerAllocator> constexpr uint16_t VehicleCommandAck_<ContainerAllocator>::ARM_AUTH_DENIED_REASON_AIRSPACE_IN_USE; template<typename ContainerAllocator> constexpr uint16_t VehicleCommandAck_<ContainerAllocator>::ARM_AUTH_DENIED_REASON_BAD_WEATHER; template<typename ContainerAllocator> constexpr uint8_t VehicleCommandAck_<ContainerAllocator>::ORB_QUEUE_LENGTH; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__VEHICLE_COMMAND_ACK__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/rc_parameter_map__rosidl_typesupport_introspection_cpp.hpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__rosidl_typesupport_introspection_cpp.h.em // with input from px4_msgs:msg/RcParameterMap.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__RC_PARAMETER_MAP__ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_HPP_ #define PX4_MSGS__MSG__RC_PARAMETER_MAP__ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_HPP_ #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" #ifdef __cplusplus extern "C" { #endif // TODO(dirk-thomas) these visibility macros should be message package specific ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, RcParameterMap)(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__RC_PARAMETER_MAP__ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_iridiumsbd_status_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/IridiumsbdStatus.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/iridiumsbd_status__struct.h" #include "px4_msgs/msg/iridiumsbd_status__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__iridiumsbd_status__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[49]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._iridiumsbd_status.IridiumsbdStatus", full_classname_dest, 48) == 0); } px4_msgs__msg__IridiumsbdStatus * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // last_heartbeat PyObject * field = PyObject_GetAttrString(_pymsg, "last_heartbeat"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->last_heartbeat = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // tx_buf_write_index PyObject * field = PyObject_GetAttrString(_pymsg, "tx_buf_write_index"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->tx_buf_write_index = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // rx_buf_read_index PyObject * field = PyObject_GetAttrString(_pymsg, "rx_buf_read_index"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->rx_buf_read_index = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // rx_buf_end_index PyObject * field = PyObject_GetAttrString(_pymsg, "rx_buf_end_index"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->rx_buf_end_index = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // failed_sbd_sessions PyObject * field = PyObject_GetAttrString(_pymsg, "failed_sbd_sessions"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->failed_sbd_sessions = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // successful_sbd_sessions PyObject * field = PyObject_GetAttrString(_pymsg, "successful_sbd_sessions"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->successful_sbd_sessions = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // num_tx_buf_reset PyObject * field = PyObject_GetAttrString(_pymsg, "num_tx_buf_reset"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->num_tx_buf_reset = (uint16_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // signal_quality PyObject * field = PyObject_GetAttrString(_pymsg, "signal_quality"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->signal_quality = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // state PyObject * field = PyObject_GetAttrString(_pymsg, "state"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->state = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // ring_pending PyObject * field = PyObject_GetAttrString(_pymsg, "ring_pending"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->ring_pending = (Py_True == field); Py_DECREF(field); } { // tx_buf_write_pending PyObject * field = PyObject_GetAttrString(_pymsg, "tx_buf_write_pending"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->tx_buf_write_pending = (Py_True == field); Py_DECREF(field); } { // tx_session_pending PyObject * field = PyObject_GetAttrString(_pymsg, "tx_session_pending"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->tx_session_pending = (Py_True == field); Py_DECREF(field); } { // rx_read_pending PyObject * field = PyObject_GetAttrString(_pymsg, "rx_read_pending"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->rx_read_pending = (Py_True == field); Py_DECREF(field); } { // rx_session_pending PyObject * field = PyObject_GetAttrString(_pymsg, "rx_session_pending"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->rx_session_pending = (Py_True == field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__iridiumsbd_status__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of IridiumsbdStatus */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._iridiumsbd_status"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "IridiumsbdStatus"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__IridiumsbdStatus * ros_message = (px4_msgs__msg__IridiumsbdStatus *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // last_heartbeat PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->last_heartbeat); { int rc = PyObject_SetAttrString(_pymessage, "last_heartbeat", field); Py_DECREF(field); if (rc) { return NULL; } } } { // tx_buf_write_index PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->tx_buf_write_index); { int rc = PyObject_SetAttrString(_pymessage, "tx_buf_write_index", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rx_buf_read_index PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->rx_buf_read_index); { int rc = PyObject_SetAttrString(_pymessage, "rx_buf_read_index", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rx_buf_end_index PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->rx_buf_end_index); { int rc = PyObject_SetAttrString(_pymessage, "rx_buf_end_index", field); Py_DECREF(field); if (rc) { return NULL; } } } { // failed_sbd_sessions PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->failed_sbd_sessions); { int rc = PyObject_SetAttrString(_pymessage, "failed_sbd_sessions", field); Py_DECREF(field); if (rc) { return NULL; } } } { // successful_sbd_sessions PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->successful_sbd_sessions); { int rc = PyObject_SetAttrString(_pymessage, "successful_sbd_sessions", field); Py_DECREF(field); if (rc) { return NULL; } } } { // num_tx_buf_reset PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->num_tx_buf_reset); { int rc = PyObject_SetAttrString(_pymessage, "num_tx_buf_reset", field); Py_DECREF(field); if (rc) { return NULL; } } } { // signal_quality PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->signal_quality); { int rc = PyObject_SetAttrString(_pymessage, "signal_quality", field); Py_DECREF(field); if (rc) { return NULL; } } } { // state PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->state); { int rc = PyObject_SetAttrString(_pymessage, "state", field); Py_DECREF(field); if (rc) { return NULL; } } } { // ring_pending PyObject * field = NULL; field = PyBool_FromLong(ros_message->ring_pending ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "ring_pending", field); Py_DECREF(field); if (rc) { return NULL; } } } { // tx_buf_write_pending PyObject * field = NULL; field = PyBool_FromLong(ros_message->tx_buf_write_pending ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "tx_buf_write_pending", field); Py_DECREF(field); if (rc) { return NULL; } } } { // tx_session_pending PyObject * field = NULL; field = PyBool_FromLong(ros_message->tx_session_pending ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "tx_session_pending", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rx_read_pending PyObject * field = NULL; field = PyBool_FromLong(ros_message->rx_read_pending ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "rx_read_pending", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rx_session_pending PyObject * field = NULL; field = PyBool_FromLong(ros_message->rx_session_pending ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "rx_session_pending", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/onboard_computer_status__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/OnboardComputerStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ONBOARD_COMPUTER_STATUS__STRUCT_H_ #define PX4_MSGS__MSG__ONBOARD_COMPUTER_STATUS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/OnboardComputerStatus in the package px4_msgs. typedef struct px4_msgs__msg__OnboardComputerStatus { uint64_t timestamp; uint32_t uptime; uint8_t type; uint8_t cpu_cores[8]; uint8_t cpu_combined[10]; uint8_t gpu_cores[4]; uint8_t gpu_combined[10]; int8_t temperature_board; int8_t temperature_core[8]; int16_t fan_speed[4]; uint32_t ram_usage; uint32_t ram_total; uint32_t storage_type[4]; uint32_t storage_usage[4]; uint32_t storage_total[4]; uint32_t link_type[6]; uint32_t link_tx_rate[6]; uint32_t link_rx_rate[6]; uint32_t link_tx_max[6]; uint32_t link_rx_max[6]; } px4_msgs__msg__OnboardComputerStatus; // Struct for a sequence of px4_msgs__msg__OnboardComputerStatus. typedef struct px4_msgs__msg__OnboardComputerStatus__Sequence { px4_msgs__msg__OnboardComputerStatus * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__OnboardComputerStatus__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ONBOARD_COMPUTER_STATUS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/timesync.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TIMESYNC_HPP_ #define PX4_MSGS__MSG__TIMESYNC_HPP_ #include "px4_msgs/msg/timesync__struct.hpp" #include "px4_msgs/msg/timesync__traits.hpp" #endif // PX4_MSGS__MSG__TIMESYNC_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/input_rc__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/InputRc.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__INPUT_RC__STRUCT_H_ #define PX4_MSGS__MSG__INPUT_RC__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'RC_INPUT_SOURCE_UNKNOWN'. enum { px4_msgs__msg__InputRc__RC_INPUT_SOURCE_UNKNOWN = 0 }; /// Constant 'RC_INPUT_SOURCE_PX4FMU_PPM'. enum { px4_msgs__msg__InputRc__RC_INPUT_SOURCE_PX4FMU_PPM = 1 }; /// Constant 'RC_INPUT_SOURCE_PX4IO_PPM'. enum { px4_msgs__msg__InputRc__RC_INPUT_SOURCE_PX4IO_PPM = 2 }; /// Constant 'RC_INPUT_SOURCE_PX4IO_SPEKTRUM'. enum { px4_msgs__msg__InputRc__RC_INPUT_SOURCE_PX4IO_SPEKTRUM = 3 }; /// Constant 'RC_INPUT_SOURCE_PX4IO_SBUS'. enum { px4_msgs__msg__InputRc__RC_INPUT_SOURCE_PX4IO_SBUS = 4 }; /// Constant 'RC_INPUT_SOURCE_PX4IO_ST24'. enum { px4_msgs__msg__InputRc__RC_INPUT_SOURCE_PX4IO_ST24 = 5 }; /// Constant 'RC_INPUT_SOURCE_MAVLINK'. enum { px4_msgs__msg__InputRc__RC_INPUT_SOURCE_MAVLINK = 6 }; /// Constant 'RC_INPUT_SOURCE_QURT'. enum { px4_msgs__msg__InputRc__RC_INPUT_SOURCE_QURT = 7 }; /// Constant 'RC_INPUT_SOURCE_PX4FMU_SPEKTRUM'. enum { px4_msgs__msg__InputRc__RC_INPUT_SOURCE_PX4FMU_SPEKTRUM = 8 }; /// Constant 'RC_INPUT_SOURCE_PX4FMU_SBUS'. enum { px4_msgs__msg__InputRc__RC_INPUT_SOURCE_PX4FMU_SBUS = 9 }; /// Constant 'RC_INPUT_SOURCE_PX4FMU_ST24'. enum { px4_msgs__msg__InputRc__RC_INPUT_SOURCE_PX4FMU_ST24 = 10 }; /// Constant 'RC_INPUT_SOURCE_PX4FMU_SUMD'. enum { px4_msgs__msg__InputRc__RC_INPUT_SOURCE_PX4FMU_SUMD = 11 }; /// Constant 'RC_INPUT_SOURCE_PX4FMU_DSM'. enum { px4_msgs__msg__InputRc__RC_INPUT_SOURCE_PX4FMU_DSM = 12 }; /// Constant 'RC_INPUT_SOURCE_PX4IO_SUMD'. enum { px4_msgs__msg__InputRc__RC_INPUT_SOURCE_PX4IO_SUMD = 13 }; /// Constant 'RC_INPUT_SOURCE_PX4FMU_CRSF'. enum { px4_msgs__msg__InputRc__RC_INPUT_SOURCE_PX4FMU_CRSF = 14 }; /// Constant 'RC_INPUT_SOURCE_PX4FMU_GHST'. enum { px4_msgs__msg__InputRc__RC_INPUT_SOURCE_PX4FMU_GHST = 15 }; /// Constant 'RC_INPUT_MAX_CHANNELS'. enum { px4_msgs__msg__InputRc__RC_INPUT_MAX_CHANNELS = 18 }; // Struct defined in msg/InputRc in the package px4_msgs. typedef struct px4_msgs__msg__InputRc { uint64_t timestamp; uint64_t timestamp_last_signal; uint8_t channel_count; int32_t rssi; bool rc_failsafe; bool rc_lost; uint16_t rc_lost_frame_count; uint16_t rc_total_frame_count; uint16_t rc_ppm_frame_length; uint8_t input_source; uint16_t values[18]; } px4_msgs__msg__InputRc; // Struct for a sequence of px4_msgs__msg__InputRc. typedef struct px4_msgs__msg__InputRc__Sequence { px4_msgs__msg__InputRc * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__InputRc__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__INPUT_RC__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/position_controller_landing_status__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/PositionControllerLandingStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/position_controller_landing_status__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__PositionControllerLandingStatus__init(px4_msgs__msg__PositionControllerLandingStatus * msg) { if (!msg) { return false; } // timestamp // horizontal_slope_displacement // slope_angle_rad // flare_length // abort_landing return true; } void px4_msgs__msg__PositionControllerLandingStatus__fini(px4_msgs__msg__PositionControllerLandingStatus * msg) { if (!msg) { return; } // timestamp // horizontal_slope_displacement // slope_angle_rad // flare_length // abort_landing } px4_msgs__msg__PositionControllerLandingStatus * px4_msgs__msg__PositionControllerLandingStatus__create() { px4_msgs__msg__PositionControllerLandingStatus * msg = (px4_msgs__msg__PositionControllerLandingStatus *)malloc(sizeof(px4_msgs__msg__PositionControllerLandingStatus)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__PositionControllerLandingStatus)); bool success = px4_msgs__msg__PositionControllerLandingStatus__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__PositionControllerLandingStatus__destroy(px4_msgs__msg__PositionControllerLandingStatus * msg) { if (msg) { px4_msgs__msg__PositionControllerLandingStatus__fini(msg); } free(msg); } bool px4_msgs__msg__PositionControllerLandingStatus__Sequence__init(px4_msgs__msg__PositionControllerLandingStatus__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__PositionControllerLandingStatus * data = NULL; if (size) { data = (px4_msgs__msg__PositionControllerLandingStatus *)calloc(size, sizeof(px4_msgs__msg__PositionControllerLandingStatus)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__PositionControllerLandingStatus__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__PositionControllerLandingStatus__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__PositionControllerLandingStatus__Sequence__fini(px4_msgs__msg__PositionControllerLandingStatus__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__PositionControllerLandingStatus__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__PositionControllerLandingStatus__Sequence * px4_msgs__msg__PositionControllerLandingStatus__Sequence__create(size_t size) { px4_msgs__msg__PositionControllerLandingStatus__Sequence * array = (px4_msgs__msg__PositionControllerLandingStatus__Sequence *)malloc(sizeof(px4_msgs__msg__PositionControllerLandingStatus__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__PositionControllerLandingStatus__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__PositionControllerLandingStatus__Sequence__destroy(px4_msgs__msg__PositionControllerLandingStatus__Sequence * array) { if (array) { px4_msgs__msg__PositionControllerLandingStatus__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_camera_capture.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/CameraCapture.idl # generated code does not contain a copyright notice # Import statements for member types # Member 'q' import numpy # noqa: E402, I100 import rosidl_parser.definition # noqa: E402, I100 class Metaclass_CameraCapture(type): """Metaclass of message 'CameraCapture'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.CameraCapture') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__camera_capture cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__camera_capture cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__camera_capture cls._TYPE_SUPPORT = module.type_support_msg__msg__camera_capture cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__camera_capture @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class CameraCapture(metaclass=Metaclass_CameraCapture): """Message class 'CameraCapture'.""" __slots__ = [ '_timestamp', '_timestamp_utc', '_seq', '_lat', '_lon', '_alt', '_ground_distance', '_q', '_result', ] _fields_and_field_types = { 'timestamp': 'uint64', 'timestamp_utc': 'uint64', 'seq': 'uint32', 'lat': 'double', 'lon': 'double', 'alt': 'float', 'ground_distance': 'float', 'q': 'float[4]', 'result': 'int8', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('double'), # noqa: E501 rosidl_parser.definition.BasicType('double'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 4), # noqa: E501 rosidl_parser.definition.BasicType('int8'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.timestamp_utc = kwargs.get('timestamp_utc', int()) self.seq = kwargs.get('seq', int()) self.lat = kwargs.get('lat', float()) self.lon = kwargs.get('lon', float()) self.alt = kwargs.get('alt', float()) self.ground_distance = kwargs.get('ground_distance', float()) if 'q' not in kwargs: self.q = numpy.zeros(4, dtype=numpy.float32) else: self.q = numpy.array(kwargs.get('q'), dtype=numpy.float32) assert self.q.shape == (4, ) self.result = kwargs.get('result', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.timestamp_utc != other.timestamp_utc: return False if self.seq != other.seq: return False if self.lat != other.lat: return False if self.lon != other.lon: return False if self.alt != other.alt: return False if self.ground_distance != other.ground_distance: return False if all(self.q != other.q): return False if self.result != other.result: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def timestamp_utc(self): """Message field 'timestamp_utc'.""" return self._timestamp_utc @timestamp_utc.setter def timestamp_utc(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp_utc' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp_utc' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp_utc = value @property def seq(self): """Message field 'seq'.""" return self._seq @seq.setter def seq(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'seq' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'seq' field must be an unsigned integer in [0, 4294967295]" self._seq = value @property def lat(self): """Message field 'lat'.""" return self._lat @lat.setter def lat(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'lat' field must be of type 'float'" self._lat = value @property def lon(self): """Message field 'lon'.""" return self._lon @lon.setter def lon(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'lon' field must be of type 'float'" self._lon = value @property def alt(self): """Message field 'alt'.""" return self._alt @alt.setter def alt(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'alt' field must be of type 'float'" self._alt = value @property def ground_distance(self): """Message field 'ground_distance'.""" return self._ground_distance @ground_distance.setter def ground_distance(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'ground_distance' field must be of type 'float'" self._ground_distance = value @property def q(self): """Message field 'q'.""" return self._q @q.setter def q(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'q' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 4, \ "The 'q' numpy.ndarray() must have a size of 4" self._q = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 4 and all(isinstance(v, float) for v in value) and True), \ "The 'q' field must be a set or sequence with length 4 and each value of type 'float'" self._q = numpy.array(value, dtype=numpy.float32) @property def result(self): """Message field 'result'.""" return self._result @result.setter def result(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'result' field must be of type 'int'" assert value >= -128 and value < 128, \ "The 'result' field must be an integer in [-128, 127]" self._result = value <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_attitude_setpoint__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleAttitudeSetpoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ATTITUDE_SETPOINT__STRUCT_H_ #define PX4_MSGS__MSG__VEHICLE_ATTITUDE_SETPOINT__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'FLAPS_OFF'. enum { px4_msgs__msg__VehicleAttitudeSetpoint__FLAPS_OFF = 0 }; /// Constant 'FLAPS_LAND'. enum { px4_msgs__msg__VehicleAttitudeSetpoint__FLAPS_LAND = 1 }; /// Constant 'FLAPS_TAKEOFF'. enum { px4_msgs__msg__VehicleAttitudeSetpoint__FLAPS_TAKEOFF = 2 }; // Struct defined in msg/VehicleAttitudeSetpoint in the package px4_msgs. typedef struct px4_msgs__msg__VehicleAttitudeSetpoint { uint64_t timestamp; float roll_body; float pitch_body; float yaw_body; float yaw_sp_move_rate; float q_d[4]; float thrust_body[3]; bool roll_reset_integral; bool pitch_reset_integral; bool yaw_reset_integral; bool fw_control_yaw; uint8_t apply_flaps; } px4_msgs__msg__VehicleAttitudeSetpoint; // Struct for a sequence of px4_msgs__msg__VehicleAttitudeSetpoint. typedef struct px4_msgs__msg__VehicleAttitudeSetpoint__Sequence { px4_msgs__msg__VehicleAttitudeSetpoint * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__VehicleAttitudeSetpoint__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_ATTITUDE_SETPOINT__STRUCT_H_ <file_sep>/install/px4_msgs/include/px4_msgs/msg/vehicle_command.h /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_command.h<file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_actuator_setpoint.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ACTUATOR_SETPOINT_HPP_ #define PX4_MSGS__MSG__VEHICLE_ACTUATOR_SETPOINT_HPP_ #include "px4_msgs/msg/vehicle_actuator_setpoint__struct.hpp" #include "px4_msgs/msg/vehicle_actuator_setpoint__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_ACTUATOR_SETPOINT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/tune_control__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/TuneControl.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TUNE_CONTROL__STRUCT_HPP_ #define PX4_MSGS__MSG__TUNE_CONTROL__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__TuneControl __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__TuneControl __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct TuneControl_ { using Type = TuneControl_<ContainerAllocator>; explicit TuneControl_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->tune_id = 0; this->tune_override = false; this->frequency = 0; this->duration = 0ul; this->silence = 0ul; this->volume = 0; } } explicit TuneControl_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->tune_id = 0; this->tune_override = false; this->frequency = 0; this->duration = 0ul; this->silence = 0ul; this->volume = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _tune_id_type = uint8_t; _tune_id_type tune_id; using _tune_override_type = bool; _tune_override_type tune_override; using _frequency_type = uint16_t; _frequency_type frequency; using _duration_type = uint32_t; _duration_type duration; using _silence_type = uint32_t; _silence_type silence; using _volume_type = uint8_t; _volume_type volume; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__tune_id( const uint8_t & _arg) { this->tune_id = _arg; return *this; } Type & set__tune_override( const bool & _arg) { this->tune_override = _arg; return *this; } Type & set__frequency( const uint16_t & _arg) { this->frequency = _arg; return *this; } Type & set__duration( const uint32_t & _arg) { this->duration = _arg; return *this; } Type & set__silence( const uint32_t & _arg) { this->silence = _arg; return *this; } Type & set__volume( const uint8_t & _arg) { this->volume = _arg; return *this; } // constant declarations static constexpr uint8_t TUNE_ID_STOP = 0u; static constexpr uint8_t TUNE_ID_STARTUP = 1u; static constexpr uint8_t TUNE_ID_ERROR = 2u; static constexpr uint8_t TUNE_ID_NOTIFY_POSITIVE = 3u; static constexpr uint8_t TUNE_ID_NOTIFY_NEUTRAL = 4u; static constexpr uint8_t TUNE_ID_NOTIFY_NEGATIVE = 5u; static constexpr uint8_t TUNE_ID_ARMING_WARNING = 6u; static constexpr uint8_t TUNE_ID_BATTERY_WARNING_SLOW = 7u; static constexpr uint8_t TUNE_ID_BATTERY_WARNING_FAST = 8u; static constexpr uint8_t TUNE_ID_GPS_WARNING = 9u; static constexpr uint8_t TUNE_ID_ARMING_FAILURE = 10u; static constexpr uint8_t TUNE_ID_PARACHUTE_RELEASE = 11u; static constexpr uint8_t TUNE_ID_SINGLE_BEEP = 12u; static constexpr uint8_t TUNE_ID_HOME_SET = 13u; static constexpr uint8_t TUNE_ID_SD_INIT = 14u; static constexpr uint8_t TUNE_ID_SD_ERROR = 15u; static constexpr uint8_t TUNE_ID_PROG_PX4IO = 16u; static constexpr uint8_t TUNE_ID_PROG_PX4IO_OK = 17u; static constexpr uint8_t TUNE_ID_PROG_PX4IO_ERR = 18u; static constexpr uint8_t NUMBER_OF_TUNES = 19u; static constexpr uint8_t VOLUME_LEVEL_MIN = 0u; static constexpr uint8_t VOLUME_LEVEL_DEFAULT = 40u; static constexpr uint8_t VOLUME_LEVEL_MAX = 100u; static constexpr uint8_t ORB_QUEUE_LENGTH = 4u; // pointer types using RawPtr = px4_msgs::msg::TuneControl_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::TuneControl_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::TuneControl_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::TuneControl_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::TuneControl_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::TuneControl_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::TuneControl_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::TuneControl_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::TuneControl_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::TuneControl_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__TuneControl std::shared_ptr<px4_msgs::msg::TuneControl_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__TuneControl std::shared_ptr<px4_msgs::msg::TuneControl_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const TuneControl_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->tune_id != other.tune_id) { return false; } if (this->tune_override != other.tune_override) { return false; } if (this->frequency != other.frequency) { return false; } if (this->duration != other.duration) { return false; } if (this->silence != other.silence) { return false; } if (this->volume != other.volume) { return false; } return true; } bool operator!=(const TuneControl_ & other) const { return !this->operator==(other); } }; // struct TuneControl_ // alias to use template instance with default allocator using TuneControl = px4_msgs::msg::TuneControl_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t TuneControl_<ContainerAllocator>::TUNE_ID_STOP; template<typename ContainerAllocator> constexpr uint8_t TuneControl_<ContainerAllocator>::TUNE_ID_STARTUP; template<typename ContainerAllocator> constexpr uint8_t TuneControl_<ContainerAllocator>::TUNE_ID_ERROR; template<typename ContainerAllocator> constexpr uint8_t TuneControl_<ContainerAllocator>::TUNE_ID_NOTIFY_POSITIVE; template<typename ContainerAllocator> constexpr uint8_t TuneControl_<ContainerAllocator>::TUNE_ID_NOTIFY_NEUTRAL; template<typename ContainerAllocator> constexpr uint8_t TuneControl_<ContainerAllocator>::TUNE_ID_NOTIFY_NEGATIVE; template<typename ContainerAllocator> constexpr uint8_t TuneControl_<ContainerAllocator>::TUNE_ID_ARMING_WARNING; template<typename ContainerAllocator> constexpr uint8_t TuneControl_<ContainerAllocator>::TUNE_ID_BATTERY_WARNING_SLOW; template<typename ContainerAllocator> constexpr uint8_t TuneControl_<ContainerAllocator>::TUNE_ID_BATTERY_WARNING_FAST; template<typename ContainerAllocator> constexpr uint8_t TuneControl_<ContainerAllocator>::TUNE_ID_GPS_WARNING; template<typename ContainerAllocator> constexpr uint8_t TuneControl_<ContainerAllocator>::TUNE_ID_ARMING_FAILURE; template<typename ContainerAllocator> constexpr uint8_t TuneControl_<ContainerAllocator>::TUNE_ID_PARACHUTE_RELEASE; template<typename ContainerAllocator> constexpr uint8_t TuneControl_<ContainerAllocator>::TUNE_ID_SINGLE_BEEP; template<typename ContainerAllocator> constexpr uint8_t TuneControl_<ContainerAllocator>::TUNE_ID_HOME_SET; template<typename ContainerAllocator> constexpr uint8_t TuneControl_<ContainerAllocator>::TUNE_ID_SD_INIT; template<typename ContainerAllocator> constexpr uint8_t TuneControl_<ContainerAllocator>::TUNE_ID_SD_ERROR; template<typename ContainerAllocator> constexpr uint8_t TuneControl_<ContainerAllocator>::TUNE_ID_PROG_PX4IO; template<typename ContainerAllocator> constexpr uint8_t TuneControl_<ContainerAllocator>::TUNE_ID_PROG_PX4IO_OK; template<typename ContainerAllocator> constexpr uint8_t TuneControl_<ContainerAllocator>::TUNE_ID_PROG_PX4IO_ERR; template<typename ContainerAllocator> constexpr uint8_t TuneControl_<ContainerAllocator>::NUMBER_OF_TUNES; template<typename ContainerAllocator> constexpr uint8_t TuneControl_<ContainerAllocator>::VOLUME_LEVEL_MIN; template<typename ContainerAllocator> constexpr uint8_t TuneControl_<ContainerAllocator>::VOLUME_LEVEL_DEFAULT; template<typename ContainerAllocator> constexpr uint8_t TuneControl_<ContainerAllocator>::VOLUME_LEVEL_MAX; template<typename ContainerAllocator> constexpr uint8_t TuneControl_<ContainerAllocator>::ORB_QUEUE_LENGTH; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__TUNE_CONTROL__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/control_allocator_status__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/ControlAllocatorStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/control_allocator_status__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/control_allocator_status__struct.h" #include "px4_msgs/msg/control_allocator_status__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _ControlAllocatorStatus__ros_msg_type = px4_msgs__msg__ControlAllocatorStatus; static bool _ControlAllocatorStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _ControlAllocatorStatus__ros_msg_type * ros_message = static_cast<const _ControlAllocatorStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: torque_setpoint_achieved { cdr << (ros_message->torque_setpoint_achieved ? true : false); } // Field name: allocated_torque { size_t size = 3; auto array_ptr = ros_message->allocated_torque; cdr.serializeArray(array_ptr, size); } // Field name: unallocated_torque { size_t size = 3; auto array_ptr = ros_message->unallocated_torque; cdr.serializeArray(array_ptr, size); } // Field name: thrust_setpoint_achieved { cdr << (ros_message->thrust_setpoint_achieved ? true : false); } // Field name: allocated_thrust { size_t size = 3; auto array_ptr = ros_message->allocated_thrust; cdr.serializeArray(array_ptr, size); } // Field name: unallocated_thrust { size_t size = 3; auto array_ptr = ros_message->unallocated_thrust; cdr.serializeArray(array_ptr, size); } // Field name: actuator_saturation { size_t size = 16; auto array_ptr = ros_message->actuator_saturation; cdr.serializeArray(array_ptr, size); } return true; } static bool _ControlAllocatorStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _ControlAllocatorStatus__ros_msg_type * ros_message = static_cast<_ControlAllocatorStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: torque_setpoint_achieved { uint8_t tmp; cdr >> tmp; ros_message->torque_setpoint_achieved = tmp ? true : false; } // Field name: allocated_torque { size_t size = 3; auto array_ptr = ros_message->allocated_torque; cdr.deserializeArray(array_ptr, size); } // Field name: unallocated_torque { size_t size = 3; auto array_ptr = ros_message->unallocated_torque; cdr.deserializeArray(array_ptr, size); } // Field name: thrust_setpoint_achieved { uint8_t tmp; cdr >> tmp; ros_message->thrust_setpoint_achieved = tmp ? true : false; } // Field name: allocated_thrust { size_t size = 3; auto array_ptr = ros_message->allocated_thrust; cdr.deserializeArray(array_ptr, size); } // Field name: unallocated_thrust { size_t size = 3; auto array_ptr = ros_message->unallocated_thrust; cdr.deserializeArray(array_ptr, size); } // Field name: actuator_saturation { size_t size = 16; auto array_ptr = ros_message->actuator_saturation; cdr.deserializeArray(array_ptr, size); } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__ControlAllocatorStatus( const void * untyped_ros_message, size_t current_alignment) { const _ControlAllocatorStatus__ros_msg_type * ros_message = static_cast<const _ControlAllocatorStatus__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name torque_setpoint_achieved { size_t item_size = sizeof(ros_message->torque_setpoint_achieved); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name allocated_torque { size_t array_size = 3; auto array_ptr = ros_message->allocated_torque; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name unallocated_torque { size_t array_size = 3; auto array_ptr = ros_message->unallocated_torque; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name thrust_setpoint_achieved { size_t item_size = sizeof(ros_message->thrust_setpoint_achieved); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name allocated_thrust { size_t array_size = 3; auto array_ptr = ros_message->allocated_thrust; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name unallocated_thrust { size_t array_size = 3; auto array_ptr = ros_message->unallocated_thrust; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name actuator_saturation { size_t array_size = 16; auto array_ptr = ros_message->actuator_saturation; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _ControlAllocatorStatus__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__ControlAllocatorStatus( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__ControlAllocatorStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: torque_setpoint_achieved { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: allocated_torque { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: unallocated_torque { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: thrust_setpoint_achieved { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: allocated_thrust { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: unallocated_thrust { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: actuator_saturation { size_t array_size = 16; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _ControlAllocatorStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__ControlAllocatorStatus( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_ControlAllocatorStatus = { "px4_msgs::msg", "ControlAllocatorStatus", _ControlAllocatorStatus__cdr_serialize, _ControlAllocatorStatus__cdr_deserialize, _ControlAllocatorStatus__get_serialized_size, _ControlAllocatorStatus__max_serialized_size }; static rosidl_message_type_support_t _ControlAllocatorStatus__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_ControlAllocatorStatus, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, ControlAllocatorStatus)() { return &_ControlAllocatorStatus__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/multi_rtd_interfaces/CMakeFiles/multi_rtd_interfaces__python.dir/cmake_clean.cmake file(REMOVE_RECURSE "CMakeFiles/multi_rtd_interfaces__python.dir/rosidl_generator_py/multi_rtd_interfaces/msg/_robot_trajectory_s.c.o" "rosidl_generator_py/multi_rtd_interfaces/libmulti_rtd_interfaces__python.pdb" "rosidl_generator_py/multi_rtd_interfaces/libmulti_rtd_interfaces__python.so" ) # Per-language clean rules from dependency scanning. foreach(lang C) include(CMakeFiles/multi_rtd_interfaces__python.dir/cmake_clean_${lang}.cmake OPTIONAL) endforeach() <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/pwm_input__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/PwmInput.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/pwm_input__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/pwm_input__functions.h" #include "px4_msgs/msg/pwm_input__struct.h" #ifdef __cplusplus extern "C" { #endif void PwmInput__rosidl_typesupport_introspection_c__PwmInput_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__PwmInput__init(message_memory); } void PwmInput__rosidl_typesupport_introspection_c__PwmInput_fini_function(void * message_memory) { px4_msgs__msg__PwmInput__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember PwmInput__rosidl_typesupport_introspection_c__PwmInput_message_member_array[4] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PwmInput, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "error_count", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PwmInput, error_count), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "pulse_width", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PwmInput, pulse_width), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "period", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__PwmInput, period), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers PwmInput__rosidl_typesupport_introspection_c__PwmInput_message_members = { "px4_msgs__msg", // message namespace "PwmInput", // message name 4, // number of fields sizeof(px4_msgs__msg__PwmInput), PwmInput__rosidl_typesupport_introspection_c__PwmInput_message_member_array, // message members PwmInput__rosidl_typesupport_introspection_c__PwmInput_init_function, // function to initialize message memory (memory has to be allocated) PwmInput__rosidl_typesupport_introspection_c__PwmInput_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t PwmInput__rosidl_typesupport_introspection_c__PwmInput_message_type_support_handle = { 0, &PwmInput__rosidl_typesupport_introspection_c__PwmInput_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, PwmInput)() { if (!PwmInput__rosidl_typesupport_introspection_c__PwmInput_message_type_support_handle.typesupport_identifier) { PwmInput__rosidl_typesupport_introspection_c__PwmInput_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &PwmInput__rosidl_typesupport_introspection_c__PwmInput_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/orbit_status.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/OrbitStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORBIT_STATUS_H_ #define PX4_MSGS__MSG__ORBIT_STATUS_H_ #include "px4_msgs/msg/orbit_status__struct.h" #include "px4_msgs/msg/orbit_status__functions.h" #include "px4_msgs/msg/orbit_status__type_support.h" #endif // PX4_MSGS__MSG__ORBIT_STATUS_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/ping__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/Ping.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/ping__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__Ping__init(px4_msgs__msg__Ping * msg) { if (!msg) { return false; } // timestamp // ping_time // ping_sequence // dropped_packets // rtt_ms // system_id // component_id return true; } void px4_msgs__msg__Ping__fini(px4_msgs__msg__Ping * msg) { if (!msg) { return; } // timestamp // ping_time // ping_sequence // dropped_packets // rtt_ms // system_id // component_id } px4_msgs__msg__Ping * px4_msgs__msg__Ping__create() { px4_msgs__msg__Ping * msg = (px4_msgs__msg__Ping *)malloc(sizeof(px4_msgs__msg__Ping)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__Ping)); bool success = px4_msgs__msg__Ping__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__Ping__destroy(px4_msgs__msg__Ping * msg) { if (msg) { px4_msgs__msg__Ping__fini(msg); } free(msg); } bool px4_msgs__msg__Ping__Sequence__init(px4_msgs__msg__Ping__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__Ping * data = NULL; if (size) { data = (px4_msgs__msg__Ping *)calloc(size, sizeof(px4_msgs__msg__Ping)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__Ping__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__Ping__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__Ping__Sequence__fini(px4_msgs__msg__Ping__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__Ping__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__Ping__Sequence * px4_msgs__msg__Ping__Sequence__create(size_t size) { px4_msgs__msg__Ping__Sequence * array = (px4_msgs__msg__Ping__Sequence *)malloc(sizeof(px4_msgs__msg__Ping__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__Ping__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__Ping__Sequence__destroy(px4_msgs__msg__Ping__Sequence * array) { if (array) { px4_msgs__msg__Ping__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/yaw_estimator_status__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/YawEstimatorStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__YAW_ESTIMATOR_STATUS__STRUCT_H_ #define PX4_MSGS__MSG__YAW_ESTIMATOR_STATUS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/YawEstimatorStatus in the package px4_msgs. typedef struct px4_msgs__msg__YawEstimatorStatus { uint64_t timestamp; uint64_t timestamp_sample; float yaw_composite; float yaw_variance; float yaw[5]; float innov_vn[5]; float innov_ve[5]; float weight[5]; } px4_msgs__msg__YawEstimatorStatus; // Struct for a sequence of px4_msgs__msg__YawEstimatorStatus. typedef struct px4_msgs__msg__YawEstimatorStatus__Sequence { px4_msgs__msg__YawEstimatorStatus * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__YawEstimatorStatus__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__YAW_ESTIMATOR_STATUS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_controls__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/ActuatorControls.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS__FUNCTIONS_H_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/actuator_controls__struct.h" /// Initialize msg/ActuatorControls message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__ActuatorControls * )) before or use * px4_msgs__msg__ActuatorControls__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__ActuatorControls__init(px4_msgs__msg__ActuatorControls * msg); /// Finalize msg/ActuatorControls message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__ActuatorControls__fini(px4_msgs__msg__ActuatorControls * msg); /// Create msg/ActuatorControls message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__ActuatorControls__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__ActuatorControls * px4_msgs__msg__ActuatorControls__create(); /// Destroy msg/ActuatorControls message. /** * It calls * px4_msgs__msg__ActuatorControls__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__ActuatorControls__destroy(px4_msgs__msg__ActuatorControls * msg); /// Initialize array of msg/ActuatorControls messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__ActuatorControls__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__ActuatorControls__Sequence__init(px4_msgs__msg__ActuatorControls__Sequence * array, size_t size); /// Finalize array of msg/ActuatorControls messages. /** * It calls * px4_msgs__msg__ActuatorControls__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__ActuatorControls__Sequence__fini(px4_msgs__msg__ActuatorControls__Sequence * array); /// Create array of msg/ActuatorControls messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__ActuatorControls__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__ActuatorControls__Sequence * px4_msgs__msg__ActuatorControls__Sequence__create(size_t size); /// Destroy array of msg/ActuatorControls messages. /** * It calls * px4_msgs__msg__ActuatorControls__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__ActuatorControls__Sequence__destroy(px4_msgs__msg__ActuatorControls__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/differential_pressure__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/DifferentialPressure.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__DIFFERENTIAL_PRESSURE__STRUCT_HPP_ #define PX4_MSGS__MSG__DIFFERENTIAL_PRESSURE__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__DifferentialPressure __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__DifferentialPressure __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct DifferentialPressure_ { using Type = DifferentialPressure_<ContainerAllocator>; explicit DifferentialPressure_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->error_count = 0ull; this->differential_pressure_raw_pa = 0.0f; this->differential_pressure_filtered_pa = 0.0f; this->temperature = 0.0f; this->device_id = 0ul; } } explicit DifferentialPressure_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->error_count = 0ull; this->differential_pressure_raw_pa = 0.0f; this->differential_pressure_filtered_pa = 0.0f; this->temperature = 0.0f; this->device_id = 0ul; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _error_count_type = uint64_t; _error_count_type error_count; using _differential_pressure_raw_pa_type = float; _differential_pressure_raw_pa_type differential_pressure_raw_pa; using _differential_pressure_filtered_pa_type = float; _differential_pressure_filtered_pa_type differential_pressure_filtered_pa; using _temperature_type = float; _temperature_type temperature; using _device_id_type = uint32_t; _device_id_type device_id; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__error_count( const uint64_t & _arg) { this->error_count = _arg; return *this; } Type & set__differential_pressure_raw_pa( const float & _arg) { this->differential_pressure_raw_pa = _arg; return *this; } Type & set__differential_pressure_filtered_pa( const float & _arg) { this->differential_pressure_filtered_pa = _arg; return *this; } Type & set__temperature( const float & _arg) { this->temperature = _arg; return *this; } Type & set__device_id( const uint32_t & _arg) { this->device_id = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::DifferentialPressure_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::DifferentialPressure_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::DifferentialPressure_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::DifferentialPressure_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::DifferentialPressure_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::DifferentialPressure_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::DifferentialPressure_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::DifferentialPressure_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::DifferentialPressure_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::DifferentialPressure_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__DifferentialPressure std::shared_ptr<px4_msgs::msg::DifferentialPressure_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__DifferentialPressure std::shared_ptr<px4_msgs::msg::DifferentialPressure_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const DifferentialPressure_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->error_count != other.error_count) { return false; } if (this->differential_pressure_raw_pa != other.differential_pressure_raw_pa) { return false; } if (this->differential_pressure_filtered_pa != other.differential_pressure_filtered_pa) { return false; } if (this->temperature != other.temperature) { return false; } if (this->device_id != other.device_id) { return false; } return true; } bool operator!=(const DifferentialPressure_ & other) const { return !this->operator==(other); } }; // struct DifferentialPressure_ // alias to use template instance with default allocator using DifferentialPressure = px4_msgs::msg::DifferentialPressure_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__DIFFERENTIAL_PRESSURE__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_roi.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleRoi.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ROI_H_ #define PX4_MSGS__MSG__VEHICLE_ROI_H_ #include "px4_msgs/msg/vehicle_roi__struct.h" #include "px4_msgs/msg/vehicle_roi__functions.h" #include "px4_msgs/msg/vehicle_roi__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_ROI_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_bezier__rosidl_typesupport_fastrtps_c.h // generated from rosidl_typesupport_fastrtps_c/resource/idl__rosidl_typesupport_fastrtps_c.h.em // with input from px4_msgs:msg/VehicleTrajectoryBezier.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_TRAJECTORY_BEZIER__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #define PX4_MSGS__MSG__VEHICLE_TRAJECTORY_BEZIER__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #include <stddef.h> #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__VehicleTrajectoryBezier( const void * untyped_ros_message, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__VehicleTrajectoryBezier( bool & full_bounded, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, VehicleTrajectoryBezier)(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_TRAJECTORY_BEZIER__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_attitude_groundtruth.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ATTITUDE_GROUNDTRUTH_HPP_ #define PX4_MSGS__MSG__VEHICLE_ATTITUDE_GROUNDTRUTH_HPP_ #include "px4_msgs/msg/vehicle_attitude_groundtruth__struct.hpp" #include "px4_msgs/msg/vehicle_attitude_groundtruth__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_ATTITUDE_GROUNDTRUTH_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_manual_control__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/GimbalManagerSetManualControl.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GIMBAL_MANAGER_SET_MANUAL_CONTROL__STRUCT_H_ #define PX4_MSGS__MSG__GIMBAL_MANAGER_SET_MANUAL_CONTROL__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'GIMBAL_MANAGER_FLAGS_RETRACT'. enum { px4_msgs__msg__GimbalManagerSetManualControl__GIMBAL_MANAGER_FLAGS_RETRACT = 1ul }; /// Constant 'GIMBAL_MANAGER_FLAGS_NEUTRAL'. enum { px4_msgs__msg__GimbalManagerSetManualControl__GIMBAL_MANAGER_FLAGS_NEUTRAL = 2ul }; /// Constant 'GIMBAL_MANAGER_FLAGS_ROLL_LOCK'. enum { px4_msgs__msg__GimbalManagerSetManualControl__GIMBAL_MANAGER_FLAGS_ROLL_LOCK = 4ul }; /// Constant 'GIMBAL_MANAGER_FLAGS_PITCH_LOCK'. enum { px4_msgs__msg__GimbalManagerSetManualControl__GIMBAL_MANAGER_FLAGS_PITCH_LOCK = 8ul }; /// Constant 'GIMBAL_MANAGER_FLAGS_YAW_LOCK'. enum { px4_msgs__msg__GimbalManagerSetManualControl__GIMBAL_MANAGER_FLAGS_YAW_LOCK = 16ul }; // Struct defined in msg/GimbalManagerSetManualControl in the package px4_msgs. typedef struct px4_msgs__msg__GimbalManagerSetManualControl { uint64_t timestamp; uint8_t origin_sysid; uint8_t origin_compid; uint8_t target_system; uint8_t target_component; uint32_t flags; uint8_t gimbal_device_id; float pitch; float yaw; float pitch_rate; float yaw_rate; } px4_msgs__msg__GimbalManagerSetManualControl; // Struct for a sequence of px4_msgs__msg__GimbalManagerSetManualControl. typedef struct px4_msgs__msg__GimbalManagerSetManualControl__Sequence { px4_msgs__msg__GimbalManagerSetManualControl * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__GimbalManagerSetManualControl__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__GIMBAL_MANAGER_SET_MANUAL_CONTROL__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_states.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/EstimatorStates.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_STATES_H_ #define PX4_MSGS__MSG__ESTIMATOR_STATES_H_ #include "px4_msgs/msg/estimator_states__struct.h" #include "px4_msgs/msg/estimator_states__functions.h" #include "px4_msgs/msg/estimator_states__type_support.h" #endif // PX4_MSGS__MSG__ESTIMATOR_STATES_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_controls2__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/ActuatorControls2.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/actuator_controls2__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__ActuatorControls2__init(px4_msgs__msg__ActuatorControls2 * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // control return true; } void px4_msgs__msg__ActuatorControls2__fini(px4_msgs__msg__ActuatorControls2 * msg) { if (!msg) { return; } // timestamp // timestamp_sample // control } px4_msgs__msg__ActuatorControls2 * px4_msgs__msg__ActuatorControls2__create() { px4_msgs__msg__ActuatorControls2 * msg = (px4_msgs__msg__ActuatorControls2 *)malloc(sizeof(px4_msgs__msg__ActuatorControls2)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__ActuatorControls2)); bool success = px4_msgs__msg__ActuatorControls2__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__ActuatorControls2__destroy(px4_msgs__msg__ActuatorControls2 * msg) { if (msg) { px4_msgs__msg__ActuatorControls2__fini(msg); } free(msg); } bool px4_msgs__msg__ActuatorControls2__Sequence__init(px4_msgs__msg__ActuatorControls2__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__ActuatorControls2 * data = NULL; if (size) { data = (px4_msgs__msg__ActuatorControls2 *)calloc(size, sizeof(px4_msgs__msg__ActuatorControls2)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__ActuatorControls2__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__ActuatorControls2__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__ActuatorControls2__Sequence__fini(px4_msgs__msg__ActuatorControls2__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__ActuatorControls2__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__ActuatorControls2__Sequence * px4_msgs__msg__ActuatorControls2__Sequence__create(size_t size) { px4_msgs__msg__ActuatorControls2__Sequence * array = (px4_msgs__msg__ActuatorControls2__Sequence *)malloc(sizeof(px4_msgs__msg__ActuatorControls2__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__ActuatorControls2__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__ActuatorControls2__Sequence__destroy(px4_msgs__msg__ActuatorControls2__Sequence * array) { if (array) { px4_msgs__msg__ActuatorControls2__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/airspeed__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/Airspeed.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__AIRSPEED__STRUCT_H_ #define PX4_MSGS__MSG__AIRSPEED__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/Airspeed in the package px4_msgs. typedef struct px4_msgs__msg__Airspeed { uint64_t timestamp; float indicated_airspeed_m_s; float true_airspeed_m_s; float air_temperature_celsius; float confidence; } px4_msgs__msg__Airspeed; // Struct for a sequence of px4_msgs__msg__Airspeed. typedef struct px4_msgs__msg__Airspeed__Sequence { px4_msgs__msg__Airspeed * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__Airspeed__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__AIRSPEED__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/actuator_controls0.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS0_HPP_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS0_HPP_ #include "px4_msgs/msg/actuator_controls0__struct.hpp" #include "px4_msgs/msg/actuator_controls0__traits.hpp" #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS0_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/test_motor.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/TestMotor.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TEST_MOTOR_H_ #define PX4_MSGS__MSG__TEST_MOTOR_H_ #include "px4_msgs/msg/test_motor__struct.h" #include "px4_msgs/msg/test_motor__functions.h" #include "px4_msgs/msg/test_motor__type_support.h" #endif // PX4_MSGS__MSG__TEST_MOTOR_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_states__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/EstimatorStates.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_STATES__FUNCTIONS_H_ #define PX4_MSGS__MSG__ESTIMATOR_STATES__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/estimator_states__struct.h" /// Initialize msg/EstimatorStates message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__EstimatorStates * )) before or use * px4_msgs__msg__EstimatorStates__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__EstimatorStates__init(px4_msgs__msg__EstimatorStates * msg); /// Finalize msg/EstimatorStates message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__EstimatorStates__fini(px4_msgs__msg__EstimatorStates * msg); /// Create msg/EstimatorStates message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__EstimatorStates__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__EstimatorStates * px4_msgs__msg__EstimatorStates__create(); /// Destroy msg/EstimatorStates message. /** * It calls * px4_msgs__msg__EstimatorStates__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__EstimatorStates__destroy(px4_msgs__msg__EstimatorStates * msg); /// Initialize array of msg/EstimatorStates messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__EstimatorStates__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__EstimatorStates__Sequence__init(px4_msgs__msg__EstimatorStates__Sequence * array, size_t size); /// Finalize array of msg/EstimatorStates messages. /** * It calls * px4_msgs__msg__EstimatorStates__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__EstimatorStates__Sequence__fini(px4_msgs__msg__EstimatorStates__Sequence * array); /// Create array of msg/EstimatorStates messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__EstimatorStates__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__EstimatorStates__Sequence * px4_msgs__msg__EstimatorStates__Sequence__create(size_t size); /// Destroy array of msg/EstimatorStates messages. /** * It calls * px4_msgs__msg__EstimatorStates__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__EstimatorStates__Sequence__destroy(px4_msgs__msg__EstimatorStates__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ESTIMATOR_STATES__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/gimbal_device_information__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/GimbalDeviceInformation.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/gimbal_device_information__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void GimbalDeviceInformation_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::GimbalDeviceInformation(_init); } void GimbalDeviceInformation_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::GimbalDeviceInformation *>(message_memory); typed_message->~GimbalDeviceInformation(); } size_t size_function__GimbalDeviceInformation__vendor_name(const void * untyped_member) { (void)untyped_member; return 32; } const void * get_const_function__GimbalDeviceInformation__vendor_name(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint8_t, 32> *>(untyped_member); return &member[index]; } void * get_function__GimbalDeviceInformation__vendor_name(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint8_t, 32> *>(untyped_member); return &member[index]; } size_t size_function__GimbalDeviceInformation__model_name(const void * untyped_member) { (void)untyped_member; return 32; } const void * get_const_function__GimbalDeviceInformation__model_name(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint8_t, 32> *>(untyped_member); return &member[index]; } void * get_function__GimbalDeviceInformation__model_name(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint8_t, 32> *>(untyped_member); return &member[index]; } size_t size_function__GimbalDeviceInformation__custom_name(const void * untyped_member) { (void)untyped_member; return 32; } const void * get_const_function__GimbalDeviceInformation__custom_name(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<uint8_t, 32> *>(untyped_member); return &member[index]; } void * get_function__GimbalDeviceInformation__custom_name(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<uint8_t, 32> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember GimbalDeviceInformation_message_member_array[16] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::GimbalDeviceInformation, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vendor_name", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 32, // array size false, // is upper bound offsetof(px4_msgs::msg::GimbalDeviceInformation, vendor_name), // bytes offset in struct nullptr, // default value size_function__GimbalDeviceInformation__vendor_name, // size() function pointer get_const_function__GimbalDeviceInformation__vendor_name, // get_const(index) function pointer get_function__GimbalDeviceInformation__vendor_name, // get(index) function pointer nullptr // resize(index) function pointer }, { "model_name", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 32, // array size false, // is upper bound offsetof(px4_msgs::msg::GimbalDeviceInformation, model_name), // bytes offset in struct nullptr, // default value size_function__GimbalDeviceInformation__model_name, // size() function pointer get_const_function__GimbalDeviceInformation__model_name, // get_const(index) function pointer get_function__GimbalDeviceInformation__model_name, // get(index) function pointer nullptr // resize(index) function pointer }, { "custom_name", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 32, // array size false, // is upper bound offsetof(px4_msgs::msg::GimbalDeviceInformation, custom_name), // bytes offset in struct nullptr, // default value size_function__GimbalDeviceInformation__custom_name, // size() function pointer get_const_function__GimbalDeviceInformation__custom_name, // get_const(index) function pointer get_function__GimbalDeviceInformation__custom_name, // get(index) function pointer nullptr // resize(index) function pointer }, { "firmware_version", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::GimbalDeviceInformation, firmware_version), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "hardware_version", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::GimbalDeviceInformation, hardware_version), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "uid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::GimbalDeviceInformation, uid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cap_flags", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::GimbalDeviceInformation, cap_flags), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "custom_cap_flags", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT16, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::GimbalDeviceInformation, custom_cap_flags), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "roll_min", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::GimbalDeviceInformation, roll_min), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "roll_max", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::GimbalDeviceInformation, roll_max), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "pitch_min", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::GimbalDeviceInformation, pitch_min), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "pitch_max", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::GimbalDeviceInformation, pitch_max), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "yaw_min", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::GimbalDeviceInformation, yaw_min), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "yaw_max", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::GimbalDeviceInformation, yaw_max), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "gimbal_device_compid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::GimbalDeviceInformation, gimbal_device_compid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers GimbalDeviceInformation_message_members = { "px4_msgs::msg", // message namespace "GimbalDeviceInformation", // message name 16, // number of fields sizeof(px4_msgs::msg::GimbalDeviceInformation), GimbalDeviceInformation_message_member_array, // message members GimbalDeviceInformation_init_function, // function to initialize message memory (memory has to be allocated) GimbalDeviceInformation_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t GimbalDeviceInformation_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &GimbalDeviceInformation_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::GimbalDeviceInformation>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::GimbalDeviceInformation_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, GimbalDeviceInformation)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::GimbalDeviceInformation_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_optical_flow_vel__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/EstimatorOpticalFlowVel.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/estimator_optical_flow_vel__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/estimator_optical_flow_vel__functions.h" #include "px4_msgs/msg/estimator_optical_flow_vel__struct.h" #ifdef __cplusplus extern "C" { #endif void EstimatorOpticalFlowVel__rosidl_typesupport_introspection_c__EstimatorOpticalFlowVel_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__EstimatorOpticalFlowVel__init(message_memory); } void EstimatorOpticalFlowVel__rosidl_typesupport_introspection_c__EstimatorOpticalFlowVel_fini_function(void * message_memory) { px4_msgs__msg__EstimatorOpticalFlowVel__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember EstimatorOpticalFlowVel__rosidl_typesupport_introspection_c__EstimatorOpticalFlowVel_message_member_array[7] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorOpticalFlowVel, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorOpticalFlowVel, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vel_body", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorOpticalFlowVel, vel_body), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vel_ne", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorOpticalFlowVel, vel_ne), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "flow_uncompensated_integral", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorOpticalFlowVel, flow_uncompensated_integral), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "flow_compensated_integral", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 2, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorOpticalFlowVel, flow_compensated_integral), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gyro_rate_integral", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorOpticalFlowVel, gyro_rate_integral), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers EstimatorOpticalFlowVel__rosidl_typesupport_introspection_c__EstimatorOpticalFlowVel_message_members = { "px4_msgs__msg", // message namespace "EstimatorOpticalFlowVel", // message name 7, // number of fields sizeof(px4_msgs__msg__EstimatorOpticalFlowVel), EstimatorOpticalFlowVel__rosidl_typesupport_introspection_c__EstimatorOpticalFlowVel_message_member_array, // message members EstimatorOpticalFlowVel__rosidl_typesupport_introspection_c__EstimatorOpticalFlowVel_init_function, // function to initialize message memory (memory has to be allocated) EstimatorOpticalFlowVel__rosidl_typesupport_introspection_c__EstimatorOpticalFlowVel_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t EstimatorOpticalFlowVel__rosidl_typesupport_introspection_c__EstimatorOpticalFlowVel_message_type_support_handle = { 0, &EstimatorOpticalFlowVel__rosidl_typesupport_introspection_c__EstimatorOpticalFlowVel_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, EstimatorOpticalFlowVel)() { if (!EstimatorOpticalFlowVel__rosidl_typesupport_introspection_c__EstimatorOpticalFlowVel_message_type_support_handle.typesupport_identifier) { EstimatorOpticalFlowVel__rosidl_typesupport_introspection_c__EstimatorOpticalFlowVel_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &EstimatorOpticalFlowVel__rosidl_typesupport_introspection_c__EstimatorOpticalFlowVel_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/timesync__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/Timesync.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TIMESYNC__STRUCT_H_ #define PX4_MSGS__MSG__TIMESYNC__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/Timesync in the package px4_msgs. typedef struct px4_msgs__msg__Timesync { uint64_t timestamp; uint8_t sys_id; uint8_t seq; int64_t tc1; int64_t ts1; } px4_msgs__msg__Timesync; // Struct for a sequence of px4_msgs__msg__Timesync. typedef struct px4_msgs__msg__Timesync__Sequence { px4_msgs__msg__Timesync * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__Timesync__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__TIMESYNC__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_transponder_report.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/TransponderReport.idl # generated code does not contain a copyright notice # Import statements for member types # Member 'callsign' # Member 'uas_id' import numpy # noqa: E402, I100 import rosidl_parser.definition # noqa: E402, I100 class Metaclass_TransponderReport(type): """Metaclass of message 'TransponderReport'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'PX4_ADSB_FLAGS_VALID_COORDS': 1, 'PX4_ADSB_FLAGS_VALID_ALTITUDE': 2, 'PX4_ADSB_FLAGS_VALID_HEADING': 4, 'PX4_ADSB_FLAGS_VALID_VELOCITY': 8, 'PX4_ADSB_FLAGS_VALID_CALLSIGN': 16, 'PX4_ADSB_FLAGS_VALID_SQUAWK': 32, 'PX4_ADSB_FLAGS_RETRANSLATE': 256, 'ADSB_EMITTER_TYPE_NO_INFO': 0, 'ADSB_EMITTER_TYPE_LIGHT': 1, 'ADSB_EMITTER_TYPE_SMALL': 2, 'ADSB_EMITTER_TYPE_LARGE': 3, 'ADSB_EMITTER_TYPE_HIGH_VORTEX_LARGE': 4, 'ADSB_EMITTER_TYPE_HEAVY': 5, 'ADSB_EMITTER_TYPE_HIGHLY_MANUV': 6, 'ADSB_EMITTER_TYPE_ROTOCRAFT': 7, 'ADSB_EMITTER_TYPE_UNASSIGNED': 8, 'ADSB_EMITTER_TYPE_GLIDER': 9, 'ADSB_EMITTER_TYPE_LIGHTER_AIR': 10, 'ADSB_EMITTER_TYPE_PARACHUTE': 11, 'ADSB_EMITTER_TYPE_ULTRA_LIGHT': 12, 'ADSB_EMITTER_TYPE_UNASSIGNED2': 13, 'ADSB_EMITTER_TYPE_UAV': 14, 'ADSB_EMITTER_TYPE_SPACE': 15, 'ADSB_EMITTER_TYPE_UNASSGINED3': 16, 'ADSB_EMITTER_TYPE_EMERGENCY_SURFACE': 17, 'ADSB_EMITTER_TYPE_SERVICE_SURFACE': 18, 'ADSB_EMITTER_TYPE_POINT_OBSTACLE': 19, 'ADSB_EMITTER_TYPE_ENUM_END': 20, 'ORB_QUEUE_LENGTH': 8, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.TransponderReport') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__transponder_report cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__transponder_report cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__transponder_report cls._TYPE_SUPPORT = module.type_support_msg__msg__transponder_report cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__transponder_report @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'PX4_ADSB_FLAGS_VALID_COORDS': cls.__constants['PX4_ADSB_FLAGS_VALID_COORDS'], 'PX4_ADSB_FLAGS_VALID_ALTITUDE': cls.__constants['PX4_ADSB_FLAGS_VALID_ALTITUDE'], 'PX4_ADSB_FLAGS_VALID_HEADING': cls.__constants['PX4_ADSB_FLAGS_VALID_HEADING'], 'PX4_ADSB_FLAGS_VALID_VELOCITY': cls.__constants['PX4_ADSB_FLAGS_VALID_VELOCITY'], 'PX4_ADSB_FLAGS_VALID_CALLSIGN': cls.__constants['PX4_ADSB_FLAGS_VALID_CALLSIGN'], 'PX4_ADSB_FLAGS_VALID_SQUAWK': cls.__constants['PX4_ADSB_FLAGS_VALID_SQUAWK'], 'PX4_ADSB_FLAGS_RETRANSLATE': cls.__constants['PX4_ADSB_FLAGS_RETRANSLATE'], 'ADSB_EMITTER_TYPE_NO_INFO': cls.__constants['ADSB_EMITTER_TYPE_NO_INFO'], 'ADSB_EMITTER_TYPE_LIGHT': cls.__constants['ADSB_EMITTER_TYPE_LIGHT'], 'ADSB_EMITTER_TYPE_SMALL': cls.__constants['ADSB_EMITTER_TYPE_SMALL'], 'ADSB_EMITTER_TYPE_LARGE': cls.__constants['ADSB_EMITTER_TYPE_LARGE'], 'ADSB_EMITTER_TYPE_HIGH_VORTEX_LARGE': cls.__constants['ADSB_EMITTER_TYPE_HIGH_VORTEX_LARGE'], 'ADSB_EMITTER_TYPE_HEAVY': cls.__constants['ADSB_EMITTER_TYPE_HEAVY'], 'ADSB_EMITTER_TYPE_HIGHLY_MANUV': cls.__constants['ADSB_EMITTER_TYPE_HIGHLY_MANUV'], 'ADSB_EMITTER_TYPE_ROTOCRAFT': cls.__constants['ADSB_EMITTER_TYPE_ROTOCRAFT'], 'ADSB_EMITTER_TYPE_UNASSIGNED': cls.__constants['ADSB_EMITTER_TYPE_UNASSIGNED'], 'ADSB_EMITTER_TYPE_GLIDER': cls.__constants['ADSB_EMITTER_TYPE_GLIDER'], 'ADSB_EMITTER_TYPE_LIGHTER_AIR': cls.__constants['ADSB_EMITTER_TYPE_LIGHTER_AIR'], 'ADSB_EMITTER_TYPE_PARACHUTE': cls.__constants['ADSB_EMITTER_TYPE_PARACHUTE'], 'ADSB_EMITTER_TYPE_ULTRA_LIGHT': cls.__constants['ADSB_EMITTER_TYPE_ULTRA_LIGHT'], 'ADSB_EMITTER_TYPE_UNASSIGNED2': cls.__constants['ADSB_EMITTER_TYPE_UNASSIGNED2'], 'ADSB_EMITTER_TYPE_UAV': cls.__constants['ADSB_EMITTER_TYPE_UAV'], 'ADSB_EMITTER_TYPE_SPACE': cls.__constants['ADSB_EMITTER_TYPE_SPACE'], 'ADSB_EMITTER_TYPE_UNASSGINED3': cls.__constants['ADSB_EMITTER_TYPE_UNASSGINED3'], 'ADSB_EMITTER_TYPE_EMERGENCY_SURFACE': cls.__constants['ADSB_EMITTER_TYPE_EMERGENCY_SURFACE'], 'ADSB_EMITTER_TYPE_SERVICE_SURFACE': cls.__constants['ADSB_EMITTER_TYPE_SERVICE_SURFACE'], 'ADSB_EMITTER_TYPE_POINT_OBSTACLE': cls.__constants['ADSB_EMITTER_TYPE_POINT_OBSTACLE'], 'ADSB_EMITTER_TYPE_ENUM_END': cls.__constants['ADSB_EMITTER_TYPE_ENUM_END'], 'ORB_QUEUE_LENGTH': cls.__constants['ORB_QUEUE_LENGTH'], } @property def PX4_ADSB_FLAGS_VALID_COORDS(self): """Message constant 'PX4_ADSB_FLAGS_VALID_COORDS'.""" return Metaclass_TransponderReport.__constants['PX4_ADSB_FLAGS_VALID_COORDS'] @property def PX4_ADSB_FLAGS_VALID_ALTITUDE(self): """Message constant 'PX4_ADSB_FLAGS_VALID_ALTITUDE'.""" return Metaclass_TransponderReport.__constants['PX4_ADSB_FLAGS_VALID_ALTITUDE'] @property def PX4_ADSB_FLAGS_VALID_HEADING(self): """Message constant 'PX4_ADSB_FLAGS_VALID_HEADING'.""" return Metaclass_TransponderReport.__constants['PX4_ADSB_FLAGS_VALID_HEADING'] @property def PX4_ADSB_FLAGS_VALID_VELOCITY(self): """Message constant 'PX4_ADSB_FLAGS_VALID_VELOCITY'.""" return Metaclass_TransponderReport.__constants['PX4_ADSB_FLAGS_VALID_VELOCITY'] @property def PX4_ADSB_FLAGS_VALID_CALLSIGN(self): """Message constant 'PX4_ADSB_FLAGS_VALID_CALLSIGN'.""" return Metaclass_TransponderReport.__constants['PX4_ADSB_FLAGS_VALID_CALLSIGN'] @property def PX4_ADSB_FLAGS_VALID_SQUAWK(self): """Message constant 'PX4_ADSB_FLAGS_VALID_SQUAWK'.""" return Metaclass_TransponderReport.__constants['PX4_ADSB_FLAGS_VALID_SQUAWK'] @property def PX4_ADSB_FLAGS_RETRANSLATE(self): """Message constant 'PX4_ADSB_FLAGS_RETRANSLATE'.""" return Metaclass_TransponderReport.__constants['PX4_ADSB_FLAGS_RETRANSLATE'] @property def ADSB_EMITTER_TYPE_NO_INFO(self): """Message constant 'ADSB_EMITTER_TYPE_NO_INFO'.""" return Metaclass_TransponderReport.__constants['ADSB_EMITTER_TYPE_NO_INFO'] @property def ADSB_EMITTER_TYPE_LIGHT(self): """Message constant 'ADSB_EMITTER_TYPE_LIGHT'.""" return Metaclass_TransponderReport.__constants['ADSB_EMITTER_TYPE_LIGHT'] @property def ADSB_EMITTER_TYPE_SMALL(self): """Message constant 'ADSB_EMITTER_TYPE_SMALL'.""" return Metaclass_TransponderReport.__constants['ADSB_EMITTER_TYPE_SMALL'] @property def ADSB_EMITTER_TYPE_LARGE(self): """Message constant 'ADSB_EMITTER_TYPE_LARGE'.""" return Metaclass_TransponderReport.__constants['ADSB_EMITTER_TYPE_LARGE'] @property def ADSB_EMITTER_TYPE_HIGH_VORTEX_LARGE(self): """Message constant 'ADSB_EMITTER_TYPE_HIGH_VORTEX_LARGE'.""" return Metaclass_TransponderReport.__constants['ADSB_EMITTER_TYPE_HIGH_VORTEX_LARGE'] @property def ADSB_EMITTER_TYPE_HEAVY(self): """Message constant 'ADSB_EMITTER_TYPE_HEAVY'.""" return Metaclass_TransponderReport.__constants['ADSB_EMITTER_TYPE_HEAVY'] @property def ADSB_EMITTER_TYPE_HIGHLY_MANUV(self): """Message constant 'ADSB_EMITTER_TYPE_HIGHLY_MANUV'.""" return Metaclass_TransponderReport.__constants['ADSB_EMITTER_TYPE_HIGHLY_MANUV'] @property def ADSB_EMITTER_TYPE_ROTOCRAFT(self): """Message constant 'ADSB_EMITTER_TYPE_ROTOCRAFT'.""" return Metaclass_TransponderReport.__constants['ADSB_EMITTER_TYPE_ROTOCRAFT'] @property def ADSB_EMITTER_TYPE_UNASSIGNED(self): """Message constant 'ADSB_EMITTER_TYPE_UNASSIGNED'.""" return Metaclass_TransponderReport.__constants['ADSB_EMITTER_TYPE_UNASSIGNED'] @property def ADSB_EMITTER_TYPE_GLIDER(self): """Message constant 'ADSB_EMITTER_TYPE_GLIDER'.""" return Metaclass_TransponderReport.__constants['ADSB_EMITTER_TYPE_GLIDER'] @property def ADSB_EMITTER_TYPE_LIGHTER_AIR(self): """Message constant 'ADSB_EMITTER_TYPE_LIGHTER_AIR'.""" return Metaclass_TransponderReport.__constants['ADSB_EMITTER_TYPE_LIGHTER_AIR'] @property def ADSB_EMITTER_TYPE_PARACHUTE(self): """Message constant 'ADSB_EMITTER_TYPE_PARACHUTE'.""" return Metaclass_TransponderReport.__constants['ADSB_EMITTER_TYPE_PARACHUTE'] @property def ADSB_EMITTER_TYPE_ULTRA_LIGHT(self): """Message constant 'ADSB_EMITTER_TYPE_ULTRA_LIGHT'.""" return Metaclass_TransponderReport.__constants['ADSB_EMITTER_TYPE_ULTRA_LIGHT'] @property def ADSB_EMITTER_TYPE_UNASSIGNED2(self): """Message constant 'ADSB_EMITTER_TYPE_UNASSIGNED2'.""" return Metaclass_TransponderReport.__constants['ADSB_EMITTER_TYPE_UNASSIGNED2'] @property def ADSB_EMITTER_TYPE_UAV(self): """Message constant 'ADSB_EMITTER_TYPE_UAV'.""" return Metaclass_TransponderReport.__constants['ADSB_EMITTER_TYPE_UAV'] @property def ADSB_EMITTER_TYPE_SPACE(self): """Message constant 'ADSB_EMITTER_TYPE_SPACE'.""" return Metaclass_TransponderReport.__constants['ADSB_EMITTER_TYPE_SPACE'] @property def ADSB_EMITTER_TYPE_UNASSGINED3(self): """Message constant 'ADSB_EMITTER_TYPE_UNASSGINED3'.""" return Metaclass_TransponderReport.__constants['ADSB_EMITTER_TYPE_UNASSGINED3'] @property def ADSB_EMITTER_TYPE_EMERGENCY_SURFACE(self): """Message constant 'ADSB_EMITTER_TYPE_EMERGENCY_SURFACE'.""" return Metaclass_TransponderReport.__constants['ADSB_EMITTER_TYPE_EMERGENCY_SURFACE'] @property def ADSB_EMITTER_TYPE_SERVICE_SURFACE(self): """Message constant 'ADSB_EMITTER_TYPE_SERVICE_SURFACE'.""" return Metaclass_TransponderReport.__constants['ADSB_EMITTER_TYPE_SERVICE_SURFACE'] @property def ADSB_EMITTER_TYPE_POINT_OBSTACLE(self): """Message constant 'ADSB_EMITTER_TYPE_POINT_OBSTACLE'.""" return Metaclass_TransponderReport.__constants['ADSB_EMITTER_TYPE_POINT_OBSTACLE'] @property def ADSB_EMITTER_TYPE_ENUM_END(self): """Message constant 'ADSB_EMITTER_TYPE_ENUM_END'.""" return Metaclass_TransponderReport.__constants['ADSB_EMITTER_TYPE_ENUM_END'] @property def ORB_QUEUE_LENGTH(self): """Message constant 'ORB_QUEUE_LENGTH'.""" return Metaclass_TransponderReport.__constants['ORB_QUEUE_LENGTH'] class TransponderReport(metaclass=Metaclass_TransponderReport): """ Message class 'TransponderReport'. Constants: PX4_ADSB_FLAGS_VALID_COORDS PX4_ADSB_FLAGS_VALID_ALTITUDE PX4_ADSB_FLAGS_VALID_HEADING PX4_ADSB_FLAGS_VALID_VELOCITY PX4_ADSB_FLAGS_VALID_CALLSIGN PX4_ADSB_FLAGS_VALID_SQUAWK PX4_ADSB_FLAGS_RETRANSLATE ADSB_EMITTER_TYPE_NO_INFO ADSB_EMITTER_TYPE_LIGHT ADSB_EMITTER_TYPE_SMALL ADSB_EMITTER_TYPE_LARGE ADSB_EMITTER_TYPE_HIGH_VORTEX_LARGE ADSB_EMITTER_TYPE_HEAVY ADSB_EMITTER_TYPE_HIGHLY_MANUV ADSB_EMITTER_TYPE_ROTOCRAFT ADSB_EMITTER_TYPE_UNASSIGNED ADSB_EMITTER_TYPE_GLIDER ADSB_EMITTER_TYPE_LIGHTER_AIR ADSB_EMITTER_TYPE_PARACHUTE ADSB_EMITTER_TYPE_ULTRA_LIGHT ADSB_EMITTER_TYPE_UNASSIGNED2 ADSB_EMITTER_TYPE_UAV ADSB_EMITTER_TYPE_SPACE ADSB_EMITTER_TYPE_UNASSGINED3 ADSB_EMITTER_TYPE_EMERGENCY_SURFACE ADSB_EMITTER_TYPE_SERVICE_SURFACE ADSB_EMITTER_TYPE_POINT_OBSTACLE ADSB_EMITTER_TYPE_ENUM_END ORB_QUEUE_LENGTH """ __slots__ = [ '_timestamp', '_icao_address', '_lat', '_lon', '_altitude_type', '_altitude', '_heading', '_hor_velocity', '_ver_velocity', '_callsign', '_emitter_type', '_tslc', '_flags', '_squawk', '_uas_id', ] _fields_and_field_types = { 'timestamp': 'uint64', 'icao_address': 'uint32', 'lat': 'double', 'lon': 'double', 'altitude_type': 'uint8', 'altitude': 'float', 'heading': 'float', 'hor_velocity': 'float', 'ver_velocity': 'float', 'callsign': 'uint8[9]', 'emitter_type': 'uint8', 'tslc': 'uint8', 'flags': 'uint16', 'squawk': 'uint16', 'uas_id': 'uint8[18]', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('double'), # noqa: E501 rosidl_parser.definition.BasicType('double'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('uint8'), 9), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('uint8'), 18), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.icao_address = kwargs.get('icao_address', int()) self.lat = kwargs.get('lat', float()) self.lon = kwargs.get('lon', float()) self.altitude_type = kwargs.get('altitude_type', int()) self.altitude = kwargs.get('altitude', float()) self.heading = kwargs.get('heading', float()) self.hor_velocity = kwargs.get('hor_velocity', float()) self.ver_velocity = kwargs.get('ver_velocity', float()) if 'callsign' not in kwargs: self.callsign = numpy.zeros(9, dtype=numpy.uint8) else: self.callsign = numpy.array(kwargs.get('callsign'), dtype=numpy.uint8) assert self.callsign.shape == (9, ) self.emitter_type = kwargs.get('emitter_type', int()) self.tslc = kwargs.get('tslc', int()) self.flags = kwargs.get('flags', int()) self.squawk = kwargs.get('squawk', int()) if 'uas_id' not in kwargs: self.uas_id = numpy.zeros(18, dtype=numpy.uint8) else: self.uas_id = numpy.array(kwargs.get('uas_id'), dtype=numpy.uint8) assert self.uas_id.shape == (18, ) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.icao_address != other.icao_address: return False if self.lat != other.lat: return False if self.lon != other.lon: return False if self.altitude_type != other.altitude_type: return False if self.altitude != other.altitude: return False if self.heading != other.heading: return False if self.hor_velocity != other.hor_velocity: return False if self.ver_velocity != other.ver_velocity: return False if all(self.callsign != other.callsign): return False if self.emitter_type != other.emitter_type: return False if self.tslc != other.tslc: return False if self.flags != other.flags: return False if self.squawk != other.squawk: return False if all(self.uas_id != other.uas_id): return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def icao_address(self): """Message field 'icao_address'.""" return self._icao_address @icao_address.setter def icao_address(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'icao_address' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'icao_address' field must be an unsigned integer in [0, 4294967295]" self._icao_address = value @property def lat(self): """Message field 'lat'.""" return self._lat @lat.setter def lat(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'lat' field must be of type 'float'" self._lat = value @property def lon(self): """Message field 'lon'.""" return self._lon @lon.setter def lon(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'lon' field must be of type 'float'" self._lon = value @property def altitude_type(self): """Message field 'altitude_type'.""" return self._altitude_type @altitude_type.setter def altitude_type(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'altitude_type' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'altitude_type' field must be an unsigned integer in [0, 255]" self._altitude_type = value @property def altitude(self): """Message field 'altitude'.""" return self._altitude @altitude.setter def altitude(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'altitude' field must be of type 'float'" self._altitude = value @property def heading(self): """Message field 'heading'.""" return self._heading @heading.setter def heading(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'heading' field must be of type 'float'" self._heading = value @property def hor_velocity(self): """Message field 'hor_velocity'.""" return self._hor_velocity @hor_velocity.setter def hor_velocity(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'hor_velocity' field must be of type 'float'" self._hor_velocity = value @property def ver_velocity(self): """Message field 'ver_velocity'.""" return self._ver_velocity @ver_velocity.setter def ver_velocity(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'ver_velocity' field must be of type 'float'" self._ver_velocity = value @property def callsign(self): """Message field 'callsign'.""" return self._callsign @callsign.setter def callsign(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.uint8, \ "The 'callsign' numpy.ndarray() must have the dtype of 'numpy.uint8'" assert value.size == 9, \ "The 'callsign' numpy.ndarray() must have a size of 9" self._callsign = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 9 and all(isinstance(v, int) for v in value) and all(val >= 0 and val < 256 for val in value)), \ "The 'callsign' field must be a set or sequence with length 9 and each value of type 'int' and each unsigned integer in [0, 255]" self._callsign = numpy.array(value, dtype=numpy.uint8) @property def emitter_type(self): """Message field 'emitter_type'.""" return self._emitter_type @emitter_type.setter def emitter_type(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'emitter_type' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'emitter_type' field must be an unsigned integer in [0, 255]" self._emitter_type = value @property def tslc(self): """Message field 'tslc'.""" return self._tslc @tslc.setter def tslc(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'tslc' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'tslc' field must be an unsigned integer in [0, 255]" self._tslc = value @property def flags(self): """Message field 'flags'.""" return self._flags @flags.setter def flags(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'flags' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'flags' field must be an unsigned integer in [0, 65535]" self._flags = value @property def squawk(self): """Message field 'squawk'.""" return self._squawk @squawk.setter def squawk(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'squawk' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'squawk' field must be an unsigned integer in [0, 65535]" self._squawk = value @property def uas_id(self): """Message field 'uas_id'.""" return self._uas_id @uas_id.setter def uas_id(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.uint8, \ "The 'uas_id' numpy.ndarray() must have the dtype of 'numpy.uint8'" assert value.size == 18, \ "The 'uas_id' numpy.ndarray() must have a size of 18" self._uas_id = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 18 and all(isinstance(v, int) for v in value) and all(val >= 0 and val < 256 for val in value)), \ "The 'uas_id' field must be a set or sequence with length 18 and each value of type 'int' and each unsigned integer in [0, 255]" self._uas_id = numpy.array(value, dtype=numpy.uint8) <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_rates_setpoint.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_RATES_SETPOINT_HPP_ #define PX4_MSGS__MSG__VEHICLE_RATES_SETPOINT_HPP_ #include "px4_msgs/msg/vehicle_rates_setpoint__struct.hpp" #include "px4_msgs/msg/vehicle_rates_setpoint__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_RATES_SETPOINT_HPP_ <file_sep>/build/multi_rtd_interfaces/CMakeFiles/multi_rtd_interfaces__rosidl_typesupport_fastrtps_c__pyext.dir/cmake_clean.cmake file(REMOVE_RECURSE "CMakeFiles/multi_rtd_interfaces__rosidl_typesupport_fastrtps_c__pyext.dir/rosidl_generator_py/multi_rtd_interfaces/_multi_rtd_interfaces_s.ep.rosidl_typesupport_fastrtps_c.c.o" "rosidl_generator_py/multi_rtd_interfaces/multi_rtd_interfaces_s__rosidl_typesupport_fastrtps_c.cpython-36m-aarch64-linux-gnu.pdb" "rosidl_generator_py/multi_rtd_interfaces/multi_rtd_interfaces_s__rosidl_typesupport_fastrtps_c.cpython-36m-aarch64-linux-gnu.so" ) # Per-language clean rules from dependency scanning. foreach(lang C) include(CMakeFiles/multi_rtd_interfaces__rosidl_typesupport_fastrtps_c__pyext.dir/cmake_clean_${lang}.cmake OPTIONAL) endforeach() <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_global_position_groundtruth.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_GLOBAL_POSITION_GROUNDTRUTH_HPP_ #define PX4_MSGS__MSG__VEHICLE_GLOBAL_POSITION_GROUNDTRUTH_HPP_ #include "px4_msgs/msg/vehicle_global_position_groundtruth__struct.hpp" #include "px4_msgs/msg/vehicle_global_position_groundtruth__traits.hpp" #endif // PX4_MSGS__MSG__VEHICLE_GLOBAL_POSITION_GROUNDTRUTH_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/log_message__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/LogMessage.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__LOG_MESSAGE__STRUCT_H_ #define PX4_MSGS__MSG__LOG_MESSAGE__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'ORB_QUEUE_LENGTH'. enum { px4_msgs__msg__LogMessage__ORB_QUEUE_LENGTH = 4 }; // Struct defined in msg/LogMessage in the package px4_msgs. typedef struct px4_msgs__msg__LogMessage { uint64_t timestamp; uint8_t severity; uint8_t text[127]; } px4_msgs__msg__LogMessage; // Struct for a sequence of px4_msgs__msg__LogMessage. typedef struct px4_msgs__msg__LogMessage__Sequence { px4_msgs__msg__LogMessage * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__LogMessage__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__LOG_MESSAGE__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration_setpoint__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleAngularAccelerationSetpoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ANGULAR_ACCELERATION_SETPOINT__FUNCTIONS_H_ #define PX4_MSGS__MSG__VEHICLE_ANGULAR_ACCELERATION_SETPOINT__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/vehicle_angular_acceleration_setpoint__struct.h" /// Initialize msg/VehicleAngularAccelerationSetpoint message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__VehicleAngularAccelerationSetpoint * )) before or use * px4_msgs__msg__VehicleAngularAccelerationSetpoint__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__VehicleAngularAccelerationSetpoint__init(px4_msgs__msg__VehicleAngularAccelerationSetpoint * msg); /// Finalize msg/VehicleAngularAccelerationSetpoint message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleAngularAccelerationSetpoint__fini(px4_msgs__msg__VehicleAngularAccelerationSetpoint * msg); /// Create msg/VehicleAngularAccelerationSetpoint message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__VehicleAngularAccelerationSetpoint__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__VehicleAngularAccelerationSetpoint * px4_msgs__msg__VehicleAngularAccelerationSetpoint__create(); /// Destroy msg/VehicleAngularAccelerationSetpoint message. /** * It calls * px4_msgs__msg__VehicleAngularAccelerationSetpoint__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleAngularAccelerationSetpoint__destroy(px4_msgs__msg__VehicleAngularAccelerationSetpoint * msg); /// Initialize array of msg/VehicleAngularAccelerationSetpoint messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__VehicleAngularAccelerationSetpoint__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__VehicleAngularAccelerationSetpoint__Sequence__init(px4_msgs__msg__VehicleAngularAccelerationSetpoint__Sequence * array, size_t size); /// Finalize array of msg/VehicleAngularAccelerationSetpoint messages. /** * It calls * px4_msgs__msg__VehicleAngularAccelerationSetpoint__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleAngularAccelerationSetpoint__Sequence__fini(px4_msgs__msg__VehicleAngularAccelerationSetpoint__Sequence * array); /// Create array of msg/VehicleAngularAccelerationSetpoint messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__VehicleAngularAccelerationSetpoint__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__VehicleAngularAccelerationSetpoint__Sequence * px4_msgs__msg__VehicleAngularAccelerationSetpoint__Sequence__create(size_t size); /// Destroy array of msg/VehicleAngularAccelerationSetpoint messages. /** * It calls * px4_msgs__msg__VehicleAngularAccelerationSetpoint__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__VehicleAngularAccelerationSetpoint__Sequence__destroy(px4_msgs__msg__VehicleAngularAccelerationSetpoint__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_ANGULAR_ACCELERATION_SETPOINT__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_sensor_bias__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/EstimatorSensorBias.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/estimator_sensor_bias__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__EstimatorSensorBias__init(px4_msgs__msg__EstimatorSensorBias * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // gyro_device_id // gyro_bias // gyro_bias_limit // gyro_bias_variance // gyro_bias_valid // accel_device_id // accel_bias // accel_bias_limit // accel_bias_variance // accel_bias_valid // mag_device_id // mag_bias // mag_bias_limit // mag_bias_variance // mag_bias_valid return true; } void px4_msgs__msg__EstimatorSensorBias__fini(px4_msgs__msg__EstimatorSensorBias * msg) { if (!msg) { return; } // timestamp // timestamp_sample // gyro_device_id // gyro_bias // gyro_bias_limit // gyro_bias_variance // gyro_bias_valid // accel_device_id // accel_bias // accel_bias_limit // accel_bias_variance // accel_bias_valid // mag_device_id // mag_bias // mag_bias_limit // mag_bias_variance // mag_bias_valid } px4_msgs__msg__EstimatorSensorBias * px4_msgs__msg__EstimatorSensorBias__create() { px4_msgs__msg__EstimatorSensorBias * msg = (px4_msgs__msg__EstimatorSensorBias *)malloc(sizeof(px4_msgs__msg__EstimatorSensorBias)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__EstimatorSensorBias)); bool success = px4_msgs__msg__EstimatorSensorBias__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__EstimatorSensorBias__destroy(px4_msgs__msg__EstimatorSensorBias * msg) { if (msg) { px4_msgs__msg__EstimatorSensorBias__fini(msg); } free(msg); } bool px4_msgs__msg__EstimatorSensorBias__Sequence__init(px4_msgs__msg__EstimatorSensorBias__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__EstimatorSensorBias * data = NULL; if (size) { data = (px4_msgs__msg__EstimatorSensorBias *)calloc(size, sizeof(px4_msgs__msg__EstimatorSensorBias)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__EstimatorSensorBias__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__EstimatorSensorBias__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__EstimatorSensorBias__Sequence__fini(px4_msgs__msg__EstimatorSensorBias__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__EstimatorSensorBias__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__EstimatorSensorBias__Sequence * px4_msgs__msg__EstimatorSensorBias__Sequence__create(size_t size) { px4_msgs__msg__EstimatorSensorBias__Sequence * array = (px4_msgs__msg__EstimatorSensorBias__Sequence *)malloc(sizeof(px4_msgs__msg__EstimatorSensorBias__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__EstimatorSensorBias__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__EstimatorSensorBias__Sequence__destroy(px4_msgs__msg__EstimatorSensorBias__Sequence * array) { if (array) { px4_msgs__msg__EstimatorSensorBias__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/CMakeFiles/Makefile.cmake # CMAKE generated file: DO NOT EDIT! # Generated by "Unix Makefiles" Generator, CMake Version 3.10 # The generator used is: set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") # The top level Makefile was generated from the following files: set(CMAKE_MAKEFILE_DEPENDS "CMakeCache.txt" "CMakeFiles/3.10.2/CMakeCCompiler.cmake" "CMakeFiles/3.10.2/CMakeCXXCompiler.cmake" "CMakeFiles/3.10.2/CMakeSystem.cmake" "ament_cmake_core/package.cmake" "ament_cmake_export_dependencies/ament_cmake_export_dependencies-extras.cmake" "ament_cmake_export_include_directories/ament_cmake_export_include_directories-extras.cmake" "ament_cmake_export_libraries/ament_cmake_export_libraries-extras.cmake" "ament_cmake_package_templates/templates.cmake" "call_for_each_rmw_implementation.cmake" "px4_msgs__py/CMakeLists.txt" "rosidl_cmake/rosidl_cmake-extras.cmake" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/CMakeLists.txt" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/cmake/EnableC++XX.cmake" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/ActuatorArmed.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/ActuatorControls.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/ActuatorControls0.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/ActuatorControls1.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/ActuatorControls2.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/ActuatorControls3.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/ActuatorControls4.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/ActuatorControls5.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/ActuatorControlsVirtualFw.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/ActuatorControlsVirtualMc.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/ActuatorOutputs.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/AdcReport.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/Airspeed.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/AirspeedValidated.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/AirspeedWind.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/BatteryStatus.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/CameraCapture.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/CameraTrigger.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/CameraTriggerSecondary.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/CellularStatus.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/CollisionConstraints.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/CollisionReport.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/CommanderState.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/ControlAllocatorStatus.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/Cpuload.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/DebugArray.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/DebugKeyValue.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/DebugValue.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/DebugVect.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/DifferentialPressure.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/DistanceSensor.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/Ekf2Timestamps.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/EkfGpsDrift.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/EscReport.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/EscStatus.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/EstimatorAttitude.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/EstimatorEventFlags.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/EstimatorGlobalPosition.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/EstimatorInnovationTestRatios.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/EstimatorInnovationVariances.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/EstimatorInnovations.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/EstimatorLocalPosition.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/EstimatorOdometry.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/EstimatorOpticalFlowVel.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/EstimatorSelectorStatus.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/EstimatorSensorBias.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/EstimatorStates.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/EstimatorStatus.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/EstimatorStatusFlags.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/EstimatorVisualOdometryAligned.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/EstimatorWind.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/FollowTarget.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/FwVirtualAttitudeSetpoint.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/GeneratorStatus.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/GeofenceResult.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/GimbalDeviceAttitudeStatus.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/GimbalDeviceInformation.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/GimbalDeviceSetAttitude.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/GimbalManagerInformation.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/GimbalManagerSetAttitude.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/GimbalManagerSetManualControl.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/GimbalManagerStatus.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/GpsDump.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/GpsInjectData.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/HeaterStatus.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/HomePosition.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/HoverThrustEstimate.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/InputRc.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/IridiumsbdStatus.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/IrlockReport.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/LandingGear.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/LandingTargetInnovations.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/LandingTargetPose.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/LedControl.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/LogMessage.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/LoggerStatus.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/MagWorkerData.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/ManualControlSetpoint.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/ManualControlSwitches.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/MavlinkLog.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/McVirtualAttitudeSetpoint.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/Mission.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/MissionResult.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/MountOrientation.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/MultirotorMotorLimits.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/NavigatorMissionItem.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/ObstacleDistance.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/ObstacleDistanceFused.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/OffboardControlMode.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/OnboardComputerStatus.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/OpticalFlow.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/OrbMultitest.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/OrbTest.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/OrbTestLarge.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/OrbTestMedium.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/OrbTestMediumMulti.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/OrbTestMediumQueue.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/OrbTestMediumQueuePoll.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/OrbTestMediumWrapAround.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/OrbitStatus.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/ParameterUpdate.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/Ping.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/PositionControllerLandingStatus.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/PositionControllerStatus.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/PositionSetpoint.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/PositionSetpointTriplet.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/PowerButtonState.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/PowerMonitor.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/PwmInput.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/Px4IoStatus.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/QshellReq.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/QshellRetval.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/RadioStatus.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/RateCtrlStatus.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/RcChannels.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/RcParameterMap.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/Rpm.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/RtlFlightTime.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/Safety.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/SatelliteInfo.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/SensorAccel.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/SensorAccelFifo.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/SensorBaro.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/SensorCombined.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/SensorCorrection.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/SensorGps.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/SensorGyro.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/SensorGyroFft.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/SensorGyroFifo.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/SensorMag.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/SensorPreflightMag.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/SensorSelection.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/SensorsStatusImu.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/SystemPower.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/TakeoffStatus.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/TaskStackInfo.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/TecsStatus.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/TelemetryStatus.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/TestMotor.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/Timesync.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/TimesyncStatus.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/TrajectoryBezier.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/TrajectorySetpoint.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/TrajectoryWaypoint.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/TransponderReport.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/TuneControl.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/UavcanParameterRequest.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/UavcanParameterValue.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/UlogStream.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/UlogStreamAck.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleAcceleration.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleActuatorSetpoint.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleAirData.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleAngularAcceleration.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleAngularAccelerationSetpoint.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleAngularVelocity.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleAngularVelocityGroundtruth.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleAttitude.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleAttitudeGroundtruth.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleAttitudeSetpoint.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleCommand.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleCommandAck.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleConstraints.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleControlMode.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleGlobalPosition.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleGlobalPositionGroundtruth.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleGpsPosition.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleImu.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleImuStatus.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleLandDetected.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleLocalPosition.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleLocalPositionGroundtruth.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleLocalPositionSetpoint.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleMagnetometer.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleMocapOdometry.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleOdometry.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleRatesSetpoint.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleRoi.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleStatus.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleStatusFlags.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleThrustSetpoint.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleTorqueSetpoint.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleTrajectoryBezier.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleTrajectoryWaypoint.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleTrajectoryWaypointDesired.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleVisionAttitude.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VehicleVisualOdometry.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/VtolVehicleStatus.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/WheelEncoders.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/Wind.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/msg/YawEstimatorStatus.msg" "/home/navlab-tx2-4/px4_ros_com_ros2/src/px4_msgs/package.xml" "/opt/ros/eloquent/lib/foonathan_memory/cmake/foonathan_memory-config-none.cmake" "/opt/ros/eloquent/lib/foonathan_memory/cmake/foonathan_memory-config-version.cmake" "/opt/ros/eloquent/lib/foonathan_memory/cmake/foonathan_memory-config.cmake" "/opt/ros/eloquent/lib/python3.6/site-packages/ament_package/template/environment_hook/library_path.sh" "/opt/ros/eloquent/lib/python3.6/site-packages/ament_package/template/environment_hook/pythonpath.sh.in" "/opt/ros/eloquent/lib/python3.6/site-packages/ament_package/template/package_level/local_setup.bash.in" "/opt/ros/eloquent/lib/python3.6/site-packages/ament_package/template/package_level/local_setup.sh.in" "/opt/ros/eloquent/lib/python3.6/site-packages/ament_package/template/package_level/local_setup.zsh.in" "/opt/ros/eloquent/share/ament_cmake/cmake/ament_cmakeConfig-version.cmake" "/opt/ros/eloquent/share/ament_cmake/cmake/ament_cmakeConfig.cmake" "/opt/ros/eloquent/share/ament_cmake/cmake/ament_cmake_export_dependencies-extras.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/ament_cmake_core-extras.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/ament_cmake_coreConfig-version.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/ament_cmake_coreConfig.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/ament_cmake_environment-extras.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/ament_cmake_environment_hooks-extras.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/ament_cmake_index-extras.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/ament_cmake_package_templates-extras.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/ament_cmake_symlink_install-extras.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/ament_cmake_uninstall_target-extras.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/core/all.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/core/ament_execute_extensions.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/core/ament_package.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/core/ament_package_xml.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/core/ament_register_extension.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/core/assert_file_exists.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/core/list_append_unique.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/core/normalize_path.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/core/package_xml_2_cmake.py" "/opt/ros/eloquent/share/ament_cmake_core/cmake/core/python.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/core/stamp.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/core/string_ends_with.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/core/templates/nameConfig-version.cmake.in" "/opt/ros/eloquent/share/ament_cmake_core/cmake/core/templates/nameConfig.cmake.in" "/opt/ros/eloquent/share/ament_cmake_core/cmake/environment/ament_cmake_environment_package_hook.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/environment/ament_generate_environment.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/environment_hooks/ament_cmake_environment_hooks_package_hook.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/environment_hooks/ament_environment_hooks.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/environment_hooks/ament_generate_package_environment.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/environment_hooks/environment/ament_prefix_path.sh" "/opt/ros/eloquent/share/ament_cmake_core/cmake/environment_hooks/environment/path.sh" "/opt/ros/eloquent/share/ament_cmake_core/cmake/index/ament_cmake_index_package_hook.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/index/ament_index_get_prefix_path.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/index/ament_index_get_resource.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/index/ament_index_get_resources.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/index/ament_index_has_resource.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/index/ament_index_register_package.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/index/ament_index_register_resource.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/package_templates/templates_2_cmake.py" "/opt/ros/eloquent/share/ament_cmake_core/cmake/symlink_install/ament_cmake_symlink_install.cmake.in" "/opt/ros/eloquent/share/ament_cmake_core/cmake/symlink_install/ament_cmake_symlink_install_append_install_code.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/symlink_install/ament_cmake_symlink_install_directory.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/symlink_install/ament_cmake_symlink_install_files.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/symlink_install/ament_cmake_symlink_install_programs.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/symlink_install/ament_cmake_symlink_install_targets.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/symlink_install/ament_cmake_symlink_install_uninstall_script.cmake.in" "/opt/ros/eloquent/share/ament_cmake_core/cmake/symlink_install/install.cmake" "/opt/ros/eloquent/share/ament_cmake_core/cmake/uninstall_target/ament_cmake_uninstall_target.cmake.in" "/opt/ros/eloquent/share/ament_cmake_core/cmake/uninstall_target/ament_cmake_uninstall_target_append_uninstall_code.cmake" "/opt/ros/eloquent/share/ament_cmake_cppcheck/cmake/ament_cmake_cppcheck-extras.cmake" "/opt/ros/eloquent/share/ament_cmake_cppcheck/cmake/ament_cmake_cppcheckConfig-version.cmake" "/opt/ros/eloquent/share/ament_cmake_cppcheck/cmake/ament_cmake_cppcheckConfig.cmake" "/opt/ros/eloquent/share/ament_cmake_cppcheck/cmake/ament_cppcheck.cmake" "/opt/ros/eloquent/share/ament_cmake_cpplint/cmake/ament_cmake_cpplint-extras.cmake" "/opt/ros/eloquent/share/ament_cmake_cpplint/cmake/ament_cmake_cpplintConfig-version.cmake" "/opt/ros/eloquent/share/ament_cmake_cpplint/cmake/ament_cmake_cpplintConfig.cmake" "/opt/ros/eloquent/share/ament_cmake_cpplint/cmake/ament_cpplint.cmake" "/opt/ros/eloquent/share/ament_cmake_export_definitions/cmake/ament_cmake_export_definitions-extras.cmake" "/opt/ros/eloquent/share/ament_cmake_export_definitions/cmake/ament_cmake_export_definitionsConfig-version.cmake" "/opt/ros/eloquent/share/ament_cmake_export_definitions/cmake/ament_cmake_export_definitionsConfig.cmake" "/opt/ros/eloquent/share/ament_cmake_export_definitions/cmake/ament_export_definitions.cmake" "/opt/ros/eloquent/share/ament_cmake_export_dependencies/cmake/ament_cmake_export_dependencies-extras.cmake" "/opt/ros/eloquent/share/ament_cmake_export_dependencies/cmake/ament_cmake_export_dependencies-extras.cmake.in" "/opt/ros/eloquent/share/ament_cmake_export_dependencies/cmake/ament_cmake_export_dependenciesConfig-version.cmake" "/opt/ros/eloquent/share/ament_cmake_export_dependencies/cmake/ament_cmake_export_dependenciesConfig.cmake" "/opt/ros/eloquent/share/ament_cmake_export_dependencies/cmake/ament_cmake_export_dependencies_package_hook.cmake" "/opt/ros/eloquent/share/ament_cmake_export_dependencies/cmake/ament_export_dependencies.cmake" "/opt/ros/eloquent/share/ament_cmake_export_include_directories/cmake/ament_cmake_export_include_directories-extras.cmake" "/opt/ros/eloquent/share/ament_cmake_export_include_directories/cmake/ament_cmake_export_include_directories-extras.cmake.in" "/opt/ros/eloquent/share/ament_cmake_export_include_directories/cmake/ament_cmake_export_include_directoriesConfig-version.cmake" "/opt/ros/eloquent/share/ament_cmake_export_include_directories/cmake/ament_cmake_export_include_directoriesConfig.cmake" "/opt/ros/eloquent/share/ament_cmake_export_include_directories/cmake/ament_cmake_export_include_directories_package_hook.cmake" "/opt/ros/eloquent/share/ament_cmake_export_include_directories/cmake/ament_export_include_directories.cmake" "/opt/ros/eloquent/share/ament_cmake_export_interfaces/cmake/ament_cmake_export_interfaces-extras.cmake" "/opt/ros/eloquent/share/ament_cmake_export_interfaces/cmake/ament_cmake_export_interfacesConfig-version.cmake" "/opt/ros/eloquent/share/ament_cmake_export_interfaces/cmake/ament_cmake_export_interfacesConfig.cmake" "/opt/ros/eloquent/share/ament_cmake_export_interfaces/cmake/ament_export_interfaces.cmake" "/opt/ros/eloquent/share/ament_cmake_export_libraries/cmake/ament_cmake_export_libraries-extras.cmake" "/opt/ros/eloquent/share/ament_cmake_export_libraries/cmake/ament_cmake_export_libraries-extras.cmake.in" "/opt/ros/eloquent/share/ament_cmake_export_libraries/cmake/ament_cmake_export_librariesConfig-version.cmake" "/opt/ros/eloquent/share/ament_cmake_export_libraries/cmake/ament_cmake_export_librariesConfig.cmake" "/opt/ros/eloquent/share/ament_cmake_export_libraries/cmake/ament_cmake_export_libraries_package_hook.cmake" "/opt/ros/eloquent/share/ament_cmake_export_libraries/cmake/ament_export_libraries.cmake" "/opt/ros/eloquent/share/ament_cmake_export_libraries/cmake/ament_export_library_names.cmake" "/opt/ros/eloquent/share/ament_cmake_export_link_flags/cmake/ament_cmake_export_link_flags-extras.cmake" "/opt/ros/eloquent/share/ament_cmake_export_link_flags/cmake/ament_cmake_export_link_flagsConfig-version.cmake" "/opt/ros/eloquent/share/ament_cmake_export_link_flags/cmake/ament_cmake_export_link_flagsConfig.cmake" "/opt/ros/eloquent/share/ament_cmake_export_link_flags/cmake/ament_export_link_flags.cmake" "/opt/ros/eloquent/share/ament_cmake_flake8/cmake/ament_cmake_flake8-extras.cmake" "/opt/ros/eloquent/share/ament_cmake_flake8/cmake/ament_cmake_flake8Config-version.cmake" "/opt/ros/eloquent/share/ament_cmake_flake8/cmake/ament_cmake_flake8Config.cmake" "/opt/ros/eloquent/share/ament_cmake_flake8/cmake/ament_flake8.cmake" "/opt/ros/eloquent/share/ament_cmake_include_directories/cmake/ament_cmake_include_directories-extras.cmake" "/opt/ros/eloquent/share/ament_cmake_include_directories/cmake/ament_cmake_include_directoriesConfig-version.cmake" "/opt/ros/eloquent/share/ament_cmake_include_directories/cmake/ament_cmake_include_directoriesConfig.cmake" "/opt/ros/eloquent/share/ament_cmake_include_directories/cmake/ament_include_directories_order.cmake" "/opt/ros/eloquent/share/ament_cmake_libraries/cmake/ament_cmake_libraries-extras.cmake" "/opt/ros/eloquent/share/ament_cmake_libraries/cmake/ament_cmake_librariesConfig-version.cmake" "/opt/ros/eloquent/share/ament_cmake_libraries/cmake/ament_cmake_librariesConfig.cmake" "/opt/ros/eloquent/share/ament_cmake_libraries/cmake/ament_libraries_deduplicate.cmake" "/opt/ros/eloquent/share/ament_cmake_libraries/cmake/ament_libraries_pack_build_configuration.cmake" "/opt/ros/eloquent/share/ament_cmake_libraries/cmake/ament_libraries_unpack_build_configuration.cmake" "/opt/ros/eloquent/share/ament_cmake_pep257/cmake/ament_cmake_pep257-extras.cmake" "/opt/ros/eloquent/share/ament_cmake_pep257/cmake/ament_cmake_pep257Config-version.cmake" "/opt/ros/eloquent/share/ament_cmake_pep257/cmake/ament_cmake_pep257Config.cmake" "/opt/ros/eloquent/share/ament_cmake_pep257/cmake/ament_pep257.cmake" "/opt/ros/eloquent/share/ament_cmake_python/cmake/ament_cmake_python-extras.cmake" "/opt/ros/eloquent/share/ament_cmake_python/cmake/ament_cmake_pythonConfig-version.cmake" "/opt/ros/eloquent/share/ament_cmake_python/cmake/ament_cmake_pythonConfig.cmake" "/opt/ros/eloquent/share/ament_cmake_python/cmake/ament_python_install_module.cmake" "/opt/ros/eloquent/share/ament_cmake_python/cmake/ament_python_install_package.cmake" "/opt/ros/eloquent/share/ament_cmake_target_dependencies/cmake/ament_cmake_target_dependencies-extras.cmake" "/opt/ros/eloquent/share/ament_cmake_target_dependencies/cmake/ament_cmake_target_dependenciesConfig-version.cmake" "/opt/ros/eloquent/share/ament_cmake_target_dependencies/cmake/ament_cmake_target_dependenciesConfig.cmake" "/opt/ros/eloquent/share/ament_cmake_target_dependencies/cmake/ament_target_dependencies.cmake" "/opt/ros/eloquent/share/ament_cmake_test/cmake/ament_add_test.cmake" "/opt/ros/eloquent/share/ament_cmake_test/cmake/ament_cmake_test-extras.cmake" "/opt/ros/eloquent/share/ament_cmake_test/cmake/ament_cmake_testConfig-version.cmake" "/opt/ros/eloquent/share/ament_cmake_test/cmake/ament_cmake_testConfig.cmake" "/opt/ros/eloquent/share/ament_cmake_uncrustify/cmake/ament_cmake_uncrustify-extras.cmake" "/opt/ros/eloquent/share/ament_cmake_uncrustify/cmake/ament_cmake_uncrustifyConfig-version.cmake" "/opt/ros/eloquent/share/ament_cmake_uncrustify/cmake/ament_cmake_uncrustifyConfig.cmake" "/opt/ros/eloquent/share/ament_cmake_uncrustify/cmake/ament_uncrustify.cmake" "/opt/ros/eloquent/share/ament_cmake_version/cmake/ament_cmake_version-extras.cmake" "/opt/ros/eloquent/share/ament_cmake_version/cmake/ament_cmake_versionConfig-version.cmake" "/opt/ros/eloquent/share/ament_cmake_version/cmake/ament_cmake_versionConfig.cmake" "/opt/ros/eloquent/share/ament_cmake_version/cmake/ament_export_development_version_if_higher_than_manifest.cmake" "/opt/ros/eloquent/share/builtin_interfaces/cmake/ament_cmake_export_dependencies-extras.cmake" "/opt/ros/eloquent/share/builtin_interfaces/cmake/ament_cmake_export_include_directories-extras.cmake" "/opt/ros/eloquent/share/builtin_interfaces/cmake/ament_cmake_export_libraries-extras.cmake" "/opt/ros/eloquent/share/builtin_interfaces/cmake/builtin_interfacesConfig-version.cmake" "/opt/ros/eloquent/share/builtin_interfaces/cmake/builtin_interfacesConfig.cmake" "/opt/ros/eloquent/share/builtin_interfaces/cmake/rosidl_cmake-extras.cmake" "/opt/ros/eloquent/share/builtin_interfaces/cmake/rosidl_cmake_export_typesupport_libraries-extras.cmake" "/opt/ros/eloquent/share/fastcdr/cmake/fastcdr-config-version.cmake" "/opt/ros/eloquent/share/fastcdr/cmake/fastcdr-config.cmake" "/opt/ros/eloquent/share/fastcdr/cmake/fastcdr-targets-none.cmake" "/opt/ros/eloquent/share/fastcdr/cmake/fastcdr-targets.cmake" "/opt/ros/eloquent/share/fastrtps/cmake/fastrtps-config-version.cmake" "/opt/ros/eloquent/share/fastrtps/cmake/fastrtps-config.cmake" "/opt/ros/eloquent/share/fastrtps/cmake/fastrtps-targets-none.cmake" "/opt/ros/eloquent/share/fastrtps/cmake/fastrtps-targets.cmake" "/opt/ros/eloquent/share/fastrtps_cmake_module/cmake/Modules/FindFastRTPS.cmake" "/opt/ros/eloquent/share/fastrtps_cmake_module/cmake/fastrtps_cmake_module-extras.cmake" "/opt/ros/eloquent/share/fastrtps_cmake_module/cmake/fastrtps_cmake_moduleConfig-version.cmake" "/opt/ros/eloquent/share/fastrtps_cmake_module/cmake/fastrtps_cmake_moduleConfig.cmake" "/opt/ros/eloquent/share/python_cmake_module/cmake/Modules/FindPythonExtra.cmake" "/opt/ros/eloquent/share/python_cmake_module/cmake/python_cmake_module-extras.cmake" "/opt/ros/eloquent/share/python_cmake_module/cmake/python_cmake_moduleConfig-version.cmake" "/opt/ros/eloquent/share/python_cmake_module/cmake/python_cmake_moduleConfig.cmake" "/opt/ros/eloquent/share/rcpputils/cmake/ament_cmake_export_include_directories-extras.cmake" "/opt/ros/eloquent/share/rcpputils/cmake/ament_cmake_export_libraries-extras.cmake" "/opt/ros/eloquent/share/rcpputils/cmake/rcpputilsConfig-version.cmake" "/opt/ros/eloquent/share/rcpputils/cmake/rcpputilsConfig.cmake" "/opt/ros/eloquent/share/rcutils/cmake/ament_cmake_export_dependencies-extras.cmake" "/opt/ros/eloquent/share/rcutils/cmake/ament_cmake_export_include_directories-extras.cmake" "/opt/ros/eloquent/share/rcutils/cmake/ament_cmake_export_libraries-extras.cmake" "/opt/ros/eloquent/share/rcutils/cmake/ament_cmake_export_link_flags-extras.cmake" "/opt/ros/eloquent/share/rcutils/cmake/rcutilsConfig-version.cmake" "/opt/ros/eloquent/share/rcutils/cmake/rcutilsConfig.cmake" "/opt/ros/eloquent/share/rmw/cmake/ament_cmake_export_dependencies-extras.cmake" "/opt/ros/eloquent/share/rmw/cmake/ament_cmake_export_include_directories-extras.cmake" "/opt/ros/eloquent/share/rmw/cmake/ament_cmake_export_libraries-extras.cmake" "/opt/ros/eloquent/share/rmw/cmake/configure_rmw_library.cmake" "/opt/ros/eloquent/share/rmw/cmake/get_rmw_typesupport.cmake" "/opt/ros/eloquent/share/rmw/cmake/register_rmw_implementation.cmake" "/opt/ros/eloquent/share/rmw/cmake/rmw-extras.cmake" "/opt/ros/eloquent/share/rmw/cmake/rmwConfig-version.cmake" "/opt/ros/eloquent/share/rmw/cmake/rmwConfig.cmake" "/opt/ros/eloquent/share/rmw_fastrtps_cpp/cmake/ament_cmake_export_dependencies-extras.cmake" "/opt/ros/eloquent/share/rmw_fastrtps_cpp/cmake/ament_cmake_export_include_directories-extras.cmake" "/opt/ros/eloquent/share/rmw_fastrtps_cpp/cmake/ament_cmake_export_libraries-extras.cmake" "/opt/ros/eloquent/share/rmw_fastrtps_cpp/cmake/rmw_fastrtps_cpp-extras.cmake" "/opt/ros/eloquent/share/rmw_fastrtps_cpp/cmake/rmw_fastrtps_cppConfig-version.cmake" "/opt/ros/eloquent/share/rmw_fastrtps_cpp/cmake/rmw_fastrtps_cppConfig.cmake" "/opt/ros/eloquent/share/rmw_fastrtps_shared_cpp/cmake/ament_cmake_export_dependencies-extras.cmake" "/opt/ros/eloquent/share/rmw_fastrtps_shared_cpp/cmake/ament_cmake_export_include_directories-extras.cmake" "/opt/ros/eloquent/share/rmw_fastrtps_shared_cpp/cmake/ament_cmake_export_libraries-extras.cmake" "/opt/ros/eloquent/share/rmw_fastrtps_shared_cpp/cmake/rmw_fastrtps_shared_cpp-extras.cmake" "/opt/ros/eloquent/share/rmw_fastrtps_shared_cpp/cmake/rmw_fastrtps_shared_cppConfig-version.cmake" "/opt/ros/eloquent/share/rmw_fastrtps_shared_cpp/cmake/rmw_fastrtps_shared_cppConfig.cmake" "/opt/ros/eloquent/share/rmw_implementation_cmake/cmake/ament_cmake_export_dependencies-extras.cmake" "/opt/ros/eloquent/share/rmw_implementation_cmake/cmake/call_for_each_rmw_implementation.cmake" "/opt/ros/eloquent/share/rmw_implementation_cmake/cmake/get_available_rmw_implementations.cmake" "/opt/ros/eloquent/share/rmw_implementation_cmake/cmake/get_default_rmw_implementation.cmake" "/opt/ros/eloquent/share/rmw_implementation_cmake/cmake/rmw_implementation_cmake-extras.cmake" "/opt/ros/eloquent/share/rmw_implementation_cmake/cmake/rmw_implementation_cmakeConfig-version.cmake" "/opt/ros/eloquent/share/rmw_implementation_cmake/cmake/rmw_implementation_cmakeConfig.cmake" "/opt/ros/eloquent/share/rosidl_adapter/cmake/rosidl_adapt_interfaces.cmake" "/opt/ros/eloquent/share/rosidl_adapter/cmake/rosidl_adapter-extras.cmake" "/opt/ros/eloquent/share/rosidl_adapter/cmake/rosidl_adapterConfig-version.cmake" "/opt/ros/eloquent/share/rosidl_adapter/cmake/rosidl_adapterConfig.cmake" "/opt/ros/eloquent/share/rosidl_cmake/cmake/rosidl_cmake-extras.cmake" "/opt/ros/eloquent/share/rosidl_cmake/cmake/rosidl_cmake-extras.cmake.in" "/opt/ros/eloquent/share/rosidl_cmake/cmake/rosidl_cmakeConfig-version.cmake" "/opt/ros/eloquent/share/rosidl_cmake/cmake/rosidl_cmakeConfig.cmake" "/opt/ros/eloquent/share/rosidl_cmake/cmake/rosidl_cmake_package_hook.cmake" "/opt/ros/eloquent/share/rosidl_cmake/cmake/rosidl_export_typesupport_libraries.cmake" "/opt/ros/eloquent/share/rosidl_cmake/cmake/rosidl_generate_interfaces.cmake" "/opt/ros/eloquent/share/rosidl_cmake/cmake/rosidl_target_interfaces.cmake" "/opt/ros/eloquent/share/rosidl_cmake/cmake/rosidl_write_generator_arguments.cmake" "/opt/ros/eloquent/share/rosidl_cmake/cmake/string_camel_case_to_lower_case_underscore.cmake" "/opt/ros/eloquent/share/rosidl_default_generators/cmake/ament_cmake_export_dependencies-extras.cmake" "/opt/ros/eloquent/share/rosidl_default_generators/cmake/rosidl_default_generators-extras.cmake" "/opt/ros/eloquent/share/rosidl_default_generators/cmake/rosidl_default_generatorsConfig-version.cmake" "/opt/ros/eloquent/share/rosidl_default_generators/cmake/rosidl_default_generatorsConfig.cmake" "/opt/ros/eloquent/share/rosidl_default_runtime/cmake/rosidl_default_runtime-extras.cmake" "/opt/ros/eloquent/share/rosidl_default_runtime/cmake/rosidl_default_runtimeConfig-version.cmake" "/opt/ros/eloquent/share/rosidl_default_runtime/cmake/rosidl_default_runtimeConfig.cmake" "/opt/ros/eloquent/share/rosidl_generator_c/cmake/../resource/rosidl_generator_c__visibility_control.h.in" "/opt/ros/eloquent/share/rosidl_generator_c/cmake/ament_cmake_export_dependencies-extras.cmake" "/opt/ros/eloquent/share/rosidl_generator_c/cmake/ament_cmake_export_include_directories-extras.cmake" "/opt/ros/eloquent/share/rosidl_generator_c/cmake/ament_cmake_export_libraries-extras.cmake" "/opt/ros/eloquent/share/rosidl_generator_c/cmake/register_c.cmake" "/opt/ros/eloquent/share/rosidl_generator_c/cmake/rosidl_cmake-extras.cmake" "/opt/ros/eloquent/share/rosidl_generator_c/cmake/rosidl_generator_c-extras.cmake" "/opt/ros/eloquent/share/rosidl_generator_c/cmake/rosidl_generator_cConfig-version.cmake" "/opt/ros/eloquent/share/rosidl_generator_c/cmake/rosidl_generator_cConfig.cmake" "/opt/ros/eloquent/share/rosidl_generator_c/cmake/rosidl_generator_c_generate_interfaces.cmake" "/opt/ros/eloquent/share/rosidl_generator_cpp/cmake/ament_cmake_export_dependencies-extras.cmake" "/opt/ros/eloquent/share/rosidl_generator_cpp/cmake/ament_cmake_export_include_directories-extras.cmake" "/opt/ros/eloquent/share/rosidl_generator_cpp/cmake/register_cpp.cmake" "/opt/ros/eloquent/share/rosidl_generator_cpp/cmake/rosidl_cmake-extras.cmake" "/opt/ros/eloquent/share/rosidl_generator_cpp/cmake/rosidl_generator_cpp-extras.cmake" "/opt/ros/eloquent/share/rosidl_generator_cpp/cmake/rosidl_generator_cppConfig-version.cmake" "/opt/ros/eloquent/share/rosidl_generator_cpp/cmake/rosidl_generator_cppConfig.cmake" "/opt/ros/eloquent/share/rosidl_generator_cpp/cmake/rosidl_generator_cpp_generate_interfaces.cmake" "/opt/ros/eloquent/share/rosidl_generator_py/cmake/ament_cmake_export_dependencies-extras.cmake" "/opt/ros/eloquent/share/rosidl_generator_py/cmake/register_py.cmake" "/opt/ros/eloquent/share/rosidl_generator_py/cmake/rosidl_cmake-extras.cmake" "/opt/ros/eloquent/share/rosidl_generator_py/cmake/rosidl_generator_py-extras.cmake" "/opt/ros/eloquent/share/rosidl_generator_py/cmake/rosidl_generator_pyConfig-version.cmake" "/opt/ros/eloquent/share/rosidl_generator_py/cmake/rosidl_generator_pyConfig.cmake" "/opt/ros/eloquent/share/rosidl_generator_py/cmake/rosidl_generator_py_generate_interfaces.cmake" "/opt/ros/eloquent/share/rosidl_generator_py/cmake/rosidl_generator_py_get_typesupports.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_c/cmake/ament_cmake_export_dependencies-extras.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_c/cmake/ament_cmake_export_include_directories-extras.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_c/cmake/ament_cmake_export_libraries-extras.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_c/cmake/get_used_typesupports.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_c/cmake/rosidl_typesupport_c-extras.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_c/cmake/rosidl_typesupport_cConfig-version.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_c/cmake/rosidl_typesupport_cConfig.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_c/cmake/rosidl_typesupport_c_generate_interfaces.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_c/resource/rosidl_typesupport_c__visibility_control.h.in" "/opt/ros/eloquent/share/rosidl_typesupport_cpp/cmake/ament_cmake_export_dependencies-extras.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_cpp/cmake/ament_cmake_export_include_directories-extras.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_cpp/cmake/ament_cmake_export_libraries-extras.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_cpp/cmake/rosidl_typesupport_cpp-extras.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_cpp/cmake/rosidl_typesupport_cppConfig-version.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_cpp/cmake/rosidl_typesupport_cppConfig.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_cpp/cmake/rosidl_typesupport_cpp_generate_interfaces.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_fastrtps_c/cmake/ament_cmake_export_dependencies-extras.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_fastrtps_c/cmake/ament_cmake_export_include_directories-extras.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_fastrtps_c/cmake/ament_cmake_export_libraries-extras.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_fastrtps_c/cmake/rosidl_typesupport_fastrtps_c-extras.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_fastrtps_c/cmake/rosidl_typesupport_fastrtps_cConfig-version.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_fastrtps_c/cmake/rosidl_typesupport_fastrtps_cConfig.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_fastrtps_c/cmake/rosidl_typesupport_fastrtps_c_generate_interfaces.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_fastrtps_c/resource/rosidl_typesupport_fastrtps_c__visibility_control.h.in" "/opt/ros/eloquent/share/rosidl_typesupport_fastrtps_cpp/cmake/ament_cmake_export_dependencies-extras.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_fastrtps_cpp/cmake/ament_cmake_export_include_directories-extras.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_fastrtps_cpp/cmake/ament_cmake_export_libraries-extras.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_fastrtps_cpp/cmake/rosidl_typesupport_fastrtps_cpp-extras.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_fastrtps_cpp/cmake/rosidl_typesupport_fastrtps_cppConfig-version.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_fastrtps_cpp/cmake/rosidl_typesupport_fastrtps_cppConfig.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_fastrtps_cpp/cmake/rosidl_typesupport_fastrtps_cpp_generate_interfaces.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_fastrtps_cpp/resource/rosidl_typesupport_fastrtps_cpp__visibility_control.h.in" "/opt/ros/eloquent/share/rosidl_typesupport_interface/cmake/ament_cmake_export_include_directories-extras.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_interface/cmake/rosidl_typesupport_interfaceConfig-version.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_interface/cmake/rosidl_typesupport_interfaceConfig.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_introspection_c/cmake/ament_cmake_export_dependencies-extras.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_introspection_c/cmake/ament_cmake_export_include_directories-extras.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_introspection_c/cmake/ament_cmake_export_libraries-extras.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_introspection_c/cmake/rosidl_typesupport_introspection_c-extras.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_introspection_c/cmake/rosidl_typesupport_introspection_cConfig-version.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_introspection_c/cmake/rosidl_typesupport_introspection_cConfig.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_introspection_c/cmake/rosidl_typesupport_introspection_c_generate_interfaces.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_introspection_c/resource/rosidl_typesupport_introspection_c__visibility_control.h.in" "/opt/ros/eloquent/share/rosidl_typesupport_introspection_cpp/cmake/ament_cmake_export_dependencies-extras.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_introspection_cpp/cmake/ament_cmake_export_include_directories-extras.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_introspection_cpp/cmake/ament_cmake_export_libraries-extras.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_introspection_cpp/cmake/rosidl_typesupport_introspection_cpp-extras.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_introspection_cpp/cmake/rosidl_typesupport_introspection_cppConfig-version.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_introspection_cpp/cmake/rosidl_typesupport_introspection_cppConfig.cmake" "/opt/ros/eloquent/share/rosidl_typesupport_introspection_cpp/cmake/rosidl_typesupport_introspection_cpp_generate_interfaces.cmake" "/usr/share/cmake-3.10/Modules/CMakeCInformation.cmake" "/usr/share/cmake-3.10/Modules/CMakeCXXInformation.cmake" "/usr/share/cmake-3.10/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" "/usr/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake" "/usr/share/cmake-3.10/Modules/CMakeFindFrameworks.cmake" "/usr/share/cmake-3.10/Modules/CMakeGenericSystem.cmake" "/usr/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake" "/usr/share/cmake-3.10/Modules/CMakeSystemSpecificInformation.cmake" "/usr/share/cmake-3.10/Modules/CMakeSystemSpecificInitialize.cmake" "/usr/share/cmake-3.10/Modules/CheckCXXCompilerFlag.cmake" "/usr/share/cmake-3.10/Modules/CheckCXXSourceCompiles.cmake" "/usr/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake" "/usr/share/cmake-3.10/Modules/Compiler/GNU-C.cmake" "/usr/share/cmake-3.10/Modules/Compiler/GNU-CXX.cmake" "/usr/share/cmake-3.10/Modules/Compiler/GNU.cmake" "/usr/share/cmake-3.10/Modules/DartConfiguration.tcl.in" "/usr/share/cmake-3.10/Modules/FindOpenSSL.cmake" "/usr/share/cmake-3.10/Modules/FindPackageHandleStandardArgs.cmake" "/usr/share/cmake-3.10/Modules/FindPackageMessage.cmake" "/usr/share/cmake-3.10/Modules/FindPkgConfig.cmake" "/usr/share/cmake-3.10/Modules/FindPythonInterp.cmake" "/usr/share/cmake-3.10/Modules/FindPythonLibs.cmake" "/usr/share/cmake-3.10/Modules/Platform/Linux-GNU-C.cmake" "/usr/share/cmake-3.10/Modules/Platform/Linux-GNU-CXX.cmake" "/usr/share/cmake-3.10/Modules/Platform/Linux-GNU.cmake" "/usr/share/cmake-3.10/Modules/Platform/Linux.cmake" "/usr/share/cmake-3.10/Modules/Platform/UnixPaths.cmake" "/usr/share/cmake-3.10/Modules/SelectLibraryConfigurations.cmake" ) # The corresponding makefile is: set(CMAKE_MAKEFILE_OUTPUTS "Makefile" "CMakeFiles/cmake.check_cache" ) # Byproducts of CMake generate step: set(CMAKE_MAKEFILE_PRODUCTS "ament_cmake_core/stamps/templates_2_cmake.py.stamp" "ament_cmake_uninstall_target/ament_cmake_uninstall_target.cmake" "ament_cmake_symlink_install/ament_cmake_symlink_install.cmake" "ament_cmake_symlink_install/ament_cmake_symlink_install_uninstall_script.cmake" "CTestConfiguration.ini" "ament_cmake_core/stamps/ActuatorArmed.msg.stamp" "ament_cmake_core/stamps/ActuatorControls.msg.stamp" "ament_cmake_core/stamps/ActuatorControls0.msg.stamp" "ament_cmake_core/stamps/ActuatorControls1.msg.stamp" "ament_cmake_core/stamps/ActuatorControls2.msg.stamp" "ament_cmake_core/stamps/ActuatorControls3.msg.stamp" "ament_cmake_core/stamps/ActuatorControls4.msg.stamp" "ament_cmake_core/stamps/ActuatorControls5.msg.stamp" "ament_cmake_core/stamps/ActuatorControlsVirtualFw.msg.stamp" "ament_cmake_core/stamps/ActuatorControlsVirtualMc.msg.stamp" "ament_cmake_core/stamps/ActuatorOutputs.msg.stamp" "ament_cmake_core/stamps/AdcReport.msg.stamp" "ament_cmake_core/stamps/Airspeed.msg.stamp" "ament_cmake_core/stamps/AirspeedValidated.msg.stamp" "ament_cmake_core/stamps/AirspeedWind.msg.stamp" "ament_cmake_core/stamps/BatteryStatus.msg.stamp" "ament_cmake_core/stamps/CameraCapture.msg.stamp" "ament_cmake_core/stamps/CameraTrigger.msg.stamp" "ament_cmake_core/stamps/CameraTriggerSecondary.msg.stamp" "ament_cmake_core/stamps/CellularStatus.msg.stamp" "ament_cmake_core/stamps/CollisionConstraints.msg.stamp" "ament_cmake_core/stamps/CollisionReport.msg.stamp" "ament_cmake_core/stamps/CommanderState.msg.stamp" "ament_cmake_core/stamps/ControlAllocatorStatus.msg.stamp" "ament_cmake_core/stamps/Cpuload.msg.stamp" "ament_cmake_core/stamps/DebugArray.msg.stamp" "ament_cmake_core/stamps/DebugKeyValue.msg.stamp" "ament_cmake_core/stamps/DebugValue.msg.stamp" "ament_cmake_core/stamps/DebugVect.msg.stamp" "ament_cmake_core/stamps/DifferentialPressure.msg.stamp" "ament_cmake_core/stamps/DistanceSensor.msg.stamp" "ament_cmake_core/stamps/Ekf2Timestamps.msg.stamp" "ament_cmake_core/stamps/EkfGpsDrift.msg.stamp" "ament_cmake_core/stamps/EscReport.msg.stamp" "ament_cmake_core/stamps/EscStatus.msg.stamp" "ament_cmake_core/stamps/EstimatorAttitude.msg.stamp" "ament_cmake_core/stamps/EstimatorEventFlags.msg.stamp" "ament_cmake_core/stamps/EstimatorGlobalPosition.msg.stamp" "ament_cmake_core/stamps/EstimatorInnovationTestRatios.msg.stamp" "ament_cmake_core/stamps/EstimatorInnovationVariances.msg.stamp" "ament_cmake_core/stamps/EstimatorInnovations.msg.stamp" "ament_cmake_core/stamps/EstimatorLocalPosition.msg.stamp" "ament_cmake_core/stamps/EstimatorOdometry.msg.stamp" "ament_cmake_core/stamps/EstimatorOpticalFlowVel.msg.stamp" "ament_cmake_core/stamps/EstimatorSelectorStatus.msg.stamp" "ament_cmake_core/stamps/EstimatorSensorBias.msg.stamp" "ament_cmake_core/stamps/EstimatorStates.msg.stamp" "ament_cmake_core/stamps/EstimatorStatus.msg.stamp" "ament_cmake_core/stamps/EstimatorStatusFlags.msg.stamp" "ament_cmake_core/stamps/EstimatorVisualOdometryAligned.msg.stamp" "ament_cmake_core/stamps/EstimatorWind.msg.stamp" "ament_cmake_core/stamps/FollowTarget.msg.stamp" "ament_cmake_core/stamps/FwVirtualAttitudeSetpoint.msg.stamp" "ament_cmake_core/stamps/GeneratorStatus.msg.stamp" "ament_cmake_core/stamps/GeofenceResult.msg.stamp" "ament_cmake_core/stamps/GimbalDeviceAttitudeStatus.msg.stamp" "ament_cmake_core/stamps/GimbalDeviceInformation.msg.stamp" "ament_cmake_core/stamps/GimbalDeviceSetAttitude.msg.stamp" "ament_cmake_core/stamps/GimbalManagerInformation.msg.stamp" "ament_cmake_core/stamps/GimbalManagerSetAttitude.msg.stamp" "ament_cmake_core/stamps/GimbalManagerSetManualControl.msg.stamp" "ament_cmake_core/stamps/GimbalManagerStatus.msg.stamp" "ament_cmake_core/stamps/GpsDump.msg.stamp" "ament_cmake_core/stamps/GpsInjectData.msg.stamp" "ament_cmake_core/stamps/HeaterStatus.msg.stamp" "ament_cmake_core/stamps/HomePosition.msg.stamp" "ament_cmake_core/stamps/HoverThrustEstimate.msg.stamp" "ament_cmake_core/stamps/InputRc.msg.stamp" "ament_cmake_core/stamps/IridiumsbdStatus.msg.stamp" "ament_cmake_core/stamps/IrlockReport.msg.stamp" "ament_cmake_core/stamps/LandingGear.msg.stamp" "ament_cmake_core/stamps/LandingTargetInnovations.msg.stamp" "ament_cmake_core/stamps/LandingTargetPose.msg.stamp" "ament_cmake_core/stamps/LedControl.msg.stamp" "ament_cmake_core/stamps/LogMessage.msg.stamp" "ament_cmake_core/stamps/LoggerStatus.msg.stamp" "ament_cmake_core/stamps/MagWorkerData.msg.stamp" "ament_cmake_core/stamps/ManualControlSetpoint.msg.stamp" "ament_cmake_core/stamps/ManualControlSwitches.msg.stamp" "ament_cmake_core/stamps/MavlinkLog.msg.stamp" "ament_cmake_core/stamps/McVirtualAttitudeSetpoint.msg.stamp" "ament_cmake_core/stamps/Mission.msg.stamp" "ament_cmake_core/stamps/MissionResult.msg.stamp" "ament_cmake_core/stamps/MountOrientation.msg.stamp" "ament_cmake_core/stamps/MultirotorMotorLimits.msg.stamp" "ament_cmake_core/stamps/NavigatorMissionItem.msg.stamp" "ament_cmake_core/stamps/ObstacleDistance.msg.stamp" "ament_cmake_core/stamps/ObstacleDistanceFused.msg.stamp" "ament_cmake_core/stamps/OffboardControlMode.msg.stamp" "ament_cmake_core/stamps/OnboardComputerStatus.msg.stamp" "ament_cmake_core/stamps/OpticalFlow.msg.stamp" "ament_cmake_core/stamps/OrbMultitest.msg.stamp" "ament_cmake_core/stamps/OrbTest.msg.stamp" "ament_cmake_core/stamps/OrbTestLarge.msg.stamp" "ament_cmake_core/stamps/OrbTestMedium.msg.stamp" "ament_cmake_core/stamps/OrbTestMediumMulti.msg.stamp" "ament_cmake_core/stamps/OrbTestMediumQueue.msg.stamp" "ament_cmake_core/stamps/OrbTestMediumQueuePoll.msg.stamp" "ament_cmake_core/stamps/OrbTestMediumWrapAround.msg.stamp" "ament_cmake_core/stamps/OrbitStatus.msg.stamp" "ament_cmake_core/stamps/ParameterUpdate.msg.stamp" "ament_cmake_core/stamps/Ping.msg.stamp" "ament_cmake_core/stamps/PositionControllerLandingStatus.msg.stamp" "ament_cmake_core/stamps/PositionControllerStatus.msg.stamp" "ament_cmake_core/stamps/PositionSetpoint.msg.stamp" "ament_cmake_core/stamps/PositionSetpointTriplet.msg.stamp" "ament_cmake_core/stamps/PowerButtonState.msg.stamp" "ament_cmake_core/stamps/PowerMonitor.msg.stamp" "ament_cmake_core/stamps/PwmInput.msg.stamp" "ament_cmake_core/stamps/Px4IoStatus.msg.stamp" "ament_cmake_core/stamps/QshellReq.msg.stamp" "ament_cmake_core/stamps/QshellRetval.msg.stamp" "ament_cmake_core/stamps/RadioStatus.msg.stamp" "ament_cmake_core/stamps/RateCtrlStatus.msg.stamp" "ament_cmake_core/stamps/RcChannels.msg.stamp" "ament_cmake_core/stamps/RcParameterMap.msg.stamp" "ament_cmake_core/stamps/Rpm.msg.stamp" "ament_cmake_core/stamps/RtlFlightTime.msg.stamp" "ament_cmake_core/stamps/Safety.msg.stamp" "ament_cmake_core/stamps/SatelliteInfo.msg.stamp" "ament_cmake_core/stamps/SensorAccel.msg.stamp" "ament_cmake_core/stamps/SensorAccelFifo.msg.stamp" "ament_cmake_core/stamps/SensorBaro.msg.stamp" "ament_cmake_core/stamps/SensorCombined.msg.stamp" "ament_cmake_core/stamps/SensorCorrection.msg.stamp" "ament_cmake_core/stamps/SensorGps.msg.stamp" "ament_cmake_core/stamps/SensorGyro.msg.stamp" "ament_cmake_core/stamps/SensorGyroFft.msg.stamp" "ament_cmake_core/stamps/SensorGyroFifo.msg.stamp" "ament_cmake_core/stamps/SensorMag.msg.stamp" "ament_cmake_core/stamps/SensorPreflightMag.msg.stamp" "ament_cmake_core/stamps/SensorSelection.msg.stamp" "ament_cmake_core/stamps/SensorsStatusImu.msg.stamp" "ament_cmake_core/stamps/SystemPower.msg.stamp" "ament_cmake_core/stamps/TakeoffStatus.msg.stamp" "ament_cmake_core/stamps/TaskStackInfo.msg.stamp" "ament_cmake_core/stamps/TecsStatus.msg.stamp" "ament_cmake_core/stamps/TelemetryStatus.msg.stamp" "ament_cmake_core/stamps/TestMotor.msg.stamp" "ament_cmake_core/stamps/Timesync.msg.stamp" "ament_cmake_core/stamps/TimesyncStatus.msg.stamp" "ament_cmake_core/stamps/TrajectoryBezier.msg.stamp" "ament_cmake_core/stamps/TrajectorySetpoint.msg.stamp" "ament_cmake_core/stamps/TrajectoryWaypoint.msg.stamp" "ament_cmake_core/stamps/TransponderReport.msg.stamp" "ament_cmake_core/stamps/TuneControl.msg.stamp" "ament_cmake_core/stamps/UavcanParameterRequest.msg.stamp" "ament_cmake_core/stamps/UavcanParameterValue.msg.stamp" "ament_cmake_core/stamps/UlogStream.msg.stamp" "ament_cmake_core/stamps/UlogStreamAck.msg.stamp" "ament_cmake_core/stamps/VehicleAcceleration.msg.stamp" "ament_cmake_core/stamps/VehicleActuatorSetpoint.msg.stamp" "ament_cmake_core/stamps/VehicleAirData.msg.stamp" "ament_cmake_core/stamps/VehicleAngularAcceleration.msg.stamp" "ament_cmake_core/stamps/VehicleAngularAccelerationSetpoint.msg.stamp" "ament_cmake_core/stamps/VehicleAngularVelocity.msg.stamp" "ament_cmake_core/stamps/VehicleAngularVelocityGroundtruth.msg.stamp" "ament_cmake_core/stamps/VehicleAttitude.msg.stamp" "ament_cmake_core/stamps/VehicleAttitudeGroundtruth.msg.stamp" "ament_cmake_core/stamps/VehicleAttitudeSetpoint.msg.stamp" "ament_cmake_core/stamps/VehicleCommand.msg.stamp" "ament_cmake_core/stamps/VehicleCommandAck.msg.stamp" "ament_cmake_core/stamps/VehicleConstraints.msg.stamp" "ament_cmake_core/stamps/VehicleControlMode.msg.stamp" "ament_cmake_core/stamps/VehicleGlobalPosition.msg.stamp" "ament_cmake_core/stamps/VehicleGlobalPositionGroundtruth.msg.stamp" "ament_cmake_core/stamps/VehicleGpsPosition.msg.stamp" "ament_cmake_core/stamps/VehicleImu.msg.stamp" "ament_cmake_core/stamps/VehicleImuStatus.msg.stamp" "ament_cmake_core/stamps/VehicleLandDetected.msg.stamp" "ament_cmake_core/stamps/VehicleLocalPosition.msg.stamp" "ament_cmake_core/stamps/VehicleLocalPositionGroundtruth.msg.stamp" "ament_cmake_core/stamps/VehicleLocalPositionSetpoint.msg.stamp" "ament_cmake_core/stamps/VehicleMagnetometer.msg.stamp" "ament_cmake_core/stamps/VehicleMocapOdometry.msg.stamp" "ament_cmake_core/stamps/VehicleOdometry.msg.stamp" "ament_cmake_core/stamps/VehicleRatesSetpoint.msg.stamp" "ament_cmake_core/stamps/VehicleRoi.msg.stamp" "ament_cmake_core/stamps/VehicleStatus.msg.stamp" "ament_cmake_core/stamps/VehicleStatusFlags.msg.stamp" "ament_cmake_core/stamps/VehicleThrustSetpoint.msg.stamp" "ament_cmake_core/stamps/VehicleTorqueSetpoint.msg.stamp" "ament_cmake_core/stamps/VehicleTrajectoryBezier.msg.stamp" "ament_cmake_core/stamps/VehicleTrajectoryWaypoint.msg.stamp" "ament_cmake_core/stamps/VehicleTrajectoryWaypointDesired.msg.stamp" "ament_cmake_core/stamps/VehicleVisionAttitude.msg.stamp" "ament_cmake_core/stamps/VehicleVisualOdometry.msg.stamp" "ament_cmake_core/stamps/VtolVehicleStatus.msg.stamp" "ament_cmake_core/stamps/WheelEncoders.msg.stamp" "ament_cmake_core/stamps/Wind.msg.stamp" "ament_cmake_core/stamps/YawEstimatorStatus.msg.stamp" "ament_cmake_core/stamps/package.xml.stamp" "ament_cmake_core/stamps/package_xml_2_cmake.py.stamp" "rosidl_generator_c/px4_msgs/msg/rosidl_generator_c__visibility_control.h" "ament_cmake_core/stamps/library_path.sh.stamp" "rosidl_typesupport_c/px4_msgs/msg/rosidl_typesupport_c__visibility_control.h" "rosidl_typesupport_introspection_c/px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" "rosidl_typesupport_fastrtps_c/px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" "rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/rosidl_typesupport_fastrtps_cpp__visibility_control.h" "ament_cmake_core/stamps/pythonpath.sh.in.stamp" "ament_cmake_environment_hooks/pythonpath.sh" "ament_cmake_core/stamps/ament_prefix_path.sh.stamp" "ament_cmake_core/stamps/path.sh.stamp" "ament_cmake_environment_hooks/local_setup.bash" "ament_cmake_environment_hooks/local_setup.sh" "ament_cmake_environment_hooks/local_setup.zsh" "rosidl_cmake/rosidl_cmake-extras.cmake" "ament_cmake_export_dependencies/ament_cmake_export_dependencies-extras.cmake" "ament_cmake_export_include_directories/ament_cmake_export_include_directories-extras.cmake" "ament_cmake_export_libraries/ament_cmake_export_libraries-extras.cmake" "ament_cmake_core/stamps/rosidl_cmake-extras.cmake.stamp" "ament_cmake_core/stamps/ament_cmake_export_dependencies-extras.cmake.stamp" "ament_cmake_core/stamps/ament_cmake_export_include_directories-extras.cmake.stamp" "ament_cmake_core/stamps/ament_cmake_export_libraries-extras.cmake.stamp" "ament_cmake_core/stamps/nameConfig.cmake.in.stamp" "ament_cmake_core/px4_msgsConfig.cmake" "ament_cmake_core/stamps/nameConfig-version.cmake.in.stamp" "ament_cmake_core/px4_msgsConfig-version.cmake" "ament_cmake_index/share/ament_index/resource_index/rosidl_interfaces/px4_msgs" "ament_cmake_symlink_install_targets_0_RELWITHDEBINFO.cmake" "ament_cmake_symlink_install_targets_1_RELWITHDEBINFO.cmake" "ament_cmake_symlink_install_targets_2_RELWITHDEBINFO.cmake" "ament_cmake_symlink_install_targets_3_RELWITHDEBINFO.cmake" "ament_cmake_symlink_install_targets_4_RELWITHDEBINFO.cmake" "ament_cmake_symlink_install_targets_5_RELWITHDEBINFO.cmake" "ament_cmake_symlink_install_targets_6_RELWITHDEBINFO.cmake" "ament_cmake_symlink_install_targets_7_RELWITHDEBINFO.cmake" "ament_cmake_symlink_install_targets_8_RELWITHDEBINFO.cmake" "ament_cmake_symlink_install_targets_9_RELWITHDEBINFO.cmake" "ament_cmake_index/share/ament_index/resource_index/package_run_dependencies/px4_msgs" "ament_cmake_index/share/ament_index/resource_index/parent_prefix_path/px4_msgs" "ament_cmake_index/share/ament_index/resource_index/packages/px4_msgs" "CMakeFiles/CMakeDirectoryInformation.cmake" "px4_msgs__py/CMakeFiles/CMakeDirectoryInformation.cmake" ) # Dependency information for all targets: set(CMAKE_DEPEND_INFO_FILES "CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_cpp.dir/DependInfo.cmake" "CMakeFiles/px4_msgs__cpp.dir/DependInfo.cmake" "CMakeFiles/uninstall.dir/DependInfo.cmake" "CMakeFiles/px4_msgs__rosidl_typesupport_c.dir/DependInfo.cmake" "CMakeFiles/px4_msgs.dir/DependInfo.cmake" "CMakeFiles/px4_msgs_uninstall.dir/DependInfo.cmake" "CMakeFiles/px4_msgs__rosidl_generator_c.dir/DependInfo.cmake" "CMakeFiles/px4_msgs__rosidl_typesupport_c__pyext.dir/DependInfo.cmake" "CMakeFiles/px4_msgs__rosidl_typesupport_introspection_c.dir/DependInfo.cmake" "CMakeFiles/px4_msgs__python.dir/DependInfo.cmake" "CMakeFiles/px4_msgs__rosidl_typesupport_introspection_cpp.dir/DependInfo.cmake" "CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c.dir/DependInfo.cmake" "CMakeFiles/px4_msgs__rosidl_typesupport_fastrtps_c__pyext.dir/DependInfo.cmake" "CMakeFiles/px4_msgs__rosidl_typesupport_cpp.dir/DependInfo.cmake" "px4_msgs__py/CMakeFiles/px4_msgs__py.dir/DependInfo.cmake" ) <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/navigator_mission_item.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/NavigatorMissionItem.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__NAVIGATOR_MISSION_ITEM_H_ #define PX4_MSGS__MSG__NAVIGATOR_MISSION_ITEM_H_ #include "px4_msgs/msg/navigator_mission_item__struct.h" #include "px4_msgs/msg/navigator_mission_item__functions.h" #include "px4_msgs/msg/navigator_mission_item__type_support.h" #endif // PX4_MSGS__MSG__NAVIGATOR_MISSION_ITEM_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/qshell_req__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/QshellReq.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__QSHELL_REQ__STRUCT_H_ #define PX4_MSGS__MSG__QSHELL_REQ__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'MAX_STRLEN'. enum { px4_msgs__msg__QshellReq__MAX_STRLEN = 100ul }; // Struct defined in msg/QshellReq in the package px4_msgs. typedef struct px4_msgs__msg__QshellReq { uint64_t timestamp; uint8_t cmd[100]; uint32_t strlen; uint32_t request_sequence; } px4_msgs__msg__QshellReq; // Struct for a sequence of px4_msgs__msg__QshellReq. typedef struct px4_msgs__msg__QshellReq__Sequence { px4_msgs__msg__QshellReq * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__QshellReq__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__QSHELL_REQ__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/input_rc.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/InputRc.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__INPUT_RC_H_ #define PX4_MSGS__MSG__INPUT_RC_H_ #include "px4_msgs/msg/input_rc__struct.h" #include "px4_msgs/msg/input_rc__functions.h" #include "px4_msgs/msg/input_rc__type_support.h" #endif // PX4_MSGS__MSG__INPUT_RC_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_gps_position__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleGpsPosition.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/vehicle_gps_position__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void VehicleGpsPosition_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::VehicleGpsPosition(_init); } void VehicleGpsPosition_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::VehicleGpsPosition *>(message_memory); typed_message->~VehicleGpsPosition(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember VehicleGpsPosition_message_member_array[27] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGpsPosition, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "lat", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGpsPosition, lat), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "lon", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGpsPosition, lon), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "alt", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGpsPosition, alt), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "alt_ellipsoid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGpsPosition, alt_ellipsoid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "s_variance_m_s", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGpsPosition, s_variance_m_s), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "c_variance_rad", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGpsPosition, c_variance_rad), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "fix_type", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGpsPosition, fix_type), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "eph", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGpsPosition, eph), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "epv", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGpsPosition, epv), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "hdop", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGpsPosition, hdop), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vdop", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGpsPosition, vdop), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "noise_per_ms", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGpsPosition, noise_per_ms), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "jamming_indicator", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGpsPosition, jamming_indicator), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "jamming_state", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGpsPosition, jamming_state), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vel_m_s", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGpsPosition, vel_m_s), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vel_n_m_s", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGpsPosition, vel_n_m_s), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vel_e_m_s", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGpsPosition, vel_e_m_s), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vel_d_m_s", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGpsPosition, vel_d_m_s), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cog_rad", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGpsPosition, cog_rad), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vel_ned_valid", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGpsPosition, vel_ned_valid), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_time_relative", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGpsPosition, timestamp_time_relative), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "time_utc_usec", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGpsPosition, time_utc_usec), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "satellites_used", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGpsPosition, satellites_used), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "heading", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGpsPosition, heading), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "heading_offset", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGpsPosition, heading_offset), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "selected", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleGpsPosition, selected), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers VehicleGpsPosition_message_members = { "px4_msgs::msg", // message namespace "VehicleGpsPosition", // message name 27, // number of fields sizeof(px4_msgs::msg::VehicleGpsPosition), VehicleGpsPosition_message_member_array, // message members VehicleGpsPosition_init_function, // function to initialize message memory (memory has to be allocated) VehicleGpsPosition_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t VehicleGpsPosition_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &VehicleGpsPosition_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleGpsPosition>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleGpsPosition_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, VehicleGpsPosition)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleGpsPosition_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_innovation_variances__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/EstimatorInnovationVariances.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_INNOVATION_VARIANCES__STRUCT_H_ #define PX4_MSGS__MSG__ESTIMATOR_INNOVATION_VARIANCES__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/EstimatorInnovationVariances in the package px4_msgs. typedef struct px4_msgs__msg__EstimatorInnovationVariances { uint64_t timestamp; uint64_t timestamp_sample; float gps_hvel[2]; float gps_vvel; float gps_hpos[2]; float gps_vpos; float ev_hvel[2]; float ev_vvel; float ev_hpos[2]; float ev_vpos; float rng_vpos; float baro_vpos; float aux_hvel[2]; float aux_vvel; float flow[2]; float heading; float mag_field[3]; float drag[2]; float airspeed; float beta; float hagl; } px4_msgs__msg__EstimatorInnovationVariances; // Struct for a sequence of px4_msgs__msg__EstimatorInnovationVariances. typedef struct px4_msgs__msg__EstimatorInnovationVariances__Sequence { px4_msgs__msg__EstimatorInnovationVariances * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__EstimatorInnovationVariances__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ESTIMATOR_INNOVATION_VARIANCES__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/geofence_result__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/GeofenceResult.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GEOFENCE_RESULT__FUNCTIONS_H_ #define PX4_MSGS__MSG__GEOFENCE_RESULT__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/geofence_result__struct.h" /// Initialize msg/GeofenceResult message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__GeofenceResult * )) before or use * px4_msgs__msg__GeofenceResult__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__GeofenceResult__init(px4_msgs__msg__GeofenceResult * msg); /// Finalize msg/GeofenceResult message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__GeofenceResult__fini(px4_msgs__msg__GeofenceResult * msg); /// Create msg/GeofenceResult message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__GeofenceResult__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__GeofenceResult * px4_msgs__msg__GeofenceResult__create(); /// Destroy msg/GeofenceResult message. /** * It calls * px4_msgs__msg__GeofenceResult__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__GeofenceResult__destroy(px4_msgs__msg__GeofenceResult * msg); /// Initialize array of msg/GeofenceResult messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__GeofenceResult__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__GeofenceResult__Sequence__init(px4_msgs__msg__GeofenceResult__Sequence * array, size_t size); /// Finalize array of msg/GeofenceResult messages. /** * It calls * px4_msgs__msg__GeofenceResult__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__GeofenceResult__Sequence__fini(px4_msgs__msg__GeofenceResult__Sequence * array); /// Create array of msg/GeofenceResult messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__GeofenceResult__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__GeofenceResult__Sequence * px4_msgs__msg__GeofenceResult__Sequence__create(size_t size); /// Destroy array of msg/GeofenceResult messages. /** * It calls * px4_msgs__msg__GeofenceResult__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__GeofenceResult__Sequence__destroy(px4_msgs__msg__GeofenceResult__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__GEOFENCE_RESULT__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_roi__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleRoi.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ROI__STRUCT_H_ #define PX4_MSGS__MSG__VEHICLE_ROI__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'ROI_NONE'. enum { px4_msgs__msg__VehicleRoi__ROI_NONE = 0 }; /// Constant 'ROI_WPNEXT'. enum { px4_msgs__msg__VehicleRoi__ROI_WPNEXT = 1 }; /// Constant 'ROI_WPINDEX'. enum { px4_msgs__msg__VehicleRoi__ROI_WPINDEX = 2 }; /// Constant 'ROI_LOCATION'. enum { px4_msgs__msg__VehicleRoi__ROI_LOCATION = 3 }; /// Constant 'ROI_TARGET'. enum { px4_msgs__msg__VehicleRoi__ROI_TARGET = 4 }; /// Constant 'ROI_ENUM_END'. enum { px4_msgs__msg__VehicleRoi__ROI_ENUM_END = 5 }; // Struct defined in msg/VehicleRoi in the package px4_msgs. typedef struct px4_msgs__msg__VehicleRoi { uint64_t timestamp; uint8_t mode; double lat; double lon; float alt; float roll_offset; float pitch_offset; float yaw_offset; } px4_msgs__msg__VehicleRoi; // Struct for a sequence of px4_msgs__msg__VehicleRoi. typedef struct px4_msgs__msg__VehicleRoi__Sequence { px4_msgs__msg__VehicleRoi * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__VehicleRoi__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_ROI__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_controls5__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/ActuatorControls5.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS5__STRUCT_H_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS5__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'NUM_ACTUATOR_CONTROLS'. enum { px4_msgs__msg__ActuatorControls5__NUM_ACTUATOR_CONTROLS = 8 }; /// Constant 'NUM_ACTUATOR_CONTROL_GROUPS'. enum { px4_msgs__msg__ActuatorControls5__NUM_ACTUATOR_CONTROL_GROUPS = 6 }; /// Constant 'INDEX_ROLL'. enum { px4_msgs__msg__ActuatorControls5__INDEX_ROLL = 0 }; /// Constant 'INDEX_PITCH'. enum { px4_msgs__msg__ActuatorControls5__INDEX_PITCH = 1 }; /// Constant 'INDEX_YAW'. enum { px4_msgs__msg__ActuatorControls5__INDEX_YAW = 2 }; /// Constant 'INDEX_THROTTLE'. enum { px4_msgs__msg__ActuatorControls5__INDEX_THROTTLE = 3 }; /// Constant 'INDEX_FLAPS'. enum { px4_msgs__msg__ActuatorControls5__INDEX_FLAPS = 4 }; /// Constant 'INDEX_SPOILERS'. enum { px4_msgs__msg__ActuatorControls5__INDEX_SPOILERS = 5 }; /// Constant 'INDEX_AIRBRAKES'. enum { px4_msgs__msg__ActuatorControls5__INDEX_AIRBRAKES = 6 }; /// Constant 'INDEX_LANDING_GEAR'. enum { px4_msgs__msg__ActuatorControls5__INDEX_LANDING_GEAR = 7 }; /// Constant 'INDEX_GIMBAL_SHUTTER'. enum { px4_msgs__msg__ActuatorControls5__INDEX_GIMBAL_SHUTTER = 3 }; /// Constant 'INDEX_CAMERA_ZOOM'. enum { px4_msgs__msg__ActuatorControls5__INDEX_CAMERA_ZOOM = 4 }; /// Constant 'GROUP_INDEX_ATTITUDE'. enum { px4_msgs__msg__ActuatorControls5__GROUP_INDEX_ATTITUDE = 0 }; /// Constant 'GROUP_INDEX_ATTITUDE_ALTERNATE'. enum { px4_msgs__msg__ActuatorControls5__GROUP_INDEX_ATTITUDE_ALTERNATE = 1 }; /// Constant 'GROUP_INDEX_GIMBAL'. enum { px4_msgs__msg__ActuatorControls5__GROUP_INDEX_GIMBAL = 2 }; /// Constant 'GROUP_INDEX_MANUAL_PASSTHROUGH'. enum { px4_msgs__msg__ActuatorControls5__GROUP_INDEX_MANUAL_PASSTHROUGH = 3 }; /// Constant 'GROUP_INDEX_ALLOCATED_PART1'. enum { px4_msgs__msg__ActuatorControls5__GROUP_INDEX_ALLOCATED_PART1 = 4 }; /// Constant 'GROUP_INDEX_ALLOCATED_PART2'. enum { px4_msgs__msg__ActuatorControls5__GROUP_INDEX_ALLOCATED_PART2 = 5 }; /// Constant 'GROUP_INDEX_PAYLOAD'. enum { px4_msgs__msg__ActuatorControls5__GROUP_INDEX_PAYLOAD = 6 }; // Struct defined in msg/ActuatorControls5 in the package px4_msgs. typedef struct px4_msgs__msg__ActuatorControls5 { uint64_t timestamp; uint64_t timestamp_sample; float control[8]; } px4_msgs__msg__ActuatorControls5; // Struct for a sequence of px4_msgs__msg__ActuatorControls5. typedef struct px4_msgs__msg__ActuatorControls5__Sequence { px4_msgs__msg__ActuatorControls5 * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__ActuatorControls5__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS5__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/obstacle_distance__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/ObstacleDistance.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/obstacle_distance__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__ObstacleDistance__init(px4_msgs__msg__ObstacleDistance * msg) { if (!msg) { return false; } // timestamp // frame // sensor_type // distances // increment // min_distance // max_distance // angle_offset return true; } void px4_msgs__msg__ObstacleDistance__fini(px4_msgs__msg__ObstacleDistance * msg) { if (!msg) { return; } // timestamp // frame // sensor_type // distances // increment // min_distance // max_distance // angle_offset } px4_msgs__msg__ObstacleDistance * px4_msgs__msg__ObstacleDistance__create() { px4_msgs__msg__ObstacleDistance * msg = (px4_msgs__msg__ObstacleDistance *)malloc(sizeof(px4_msgs__msg__ObstacleDistance)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__ObstacleDistance)); bool success = px4_msgs__msg__ObstacleDistance__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__ObstacleDistance__destroy(px4_msgs__msg__ObstacleDistance * msg) { if (msg) { px4_msgs__msg__ObstacleDistance__fini(msg); } free(msg); } bool px4_msgs__msg__ObstacleDistance__Sequence__init(px4_msgs__msg__ObstacleDistance__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__ObstacleDistance * data = NULL; if (size) { data = (px4_msgs__msg__ObstacleDistance *)calloc(size, sizeof(px4_msgs__msg__ObstacleDistance)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__ObstacleDistance__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__ObstacleDistance__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__ObstacleDistance__Sequence__fini(px4_msgs__msg__ObstacleDistance__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__ObstacleDistance__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__ObstacleDistance__Sequence * px4_msgs__msg__ObstacleDistance__Sequence__create(size_t size) { px4_msgs__msg__ObstacleDistance__Sequence * array = (px4_msgs__msg__ObstacleDistance__Sequence *)malloc(sizeof(px4_msgs__msg__ObstacleDistance__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__ObstacleDistance__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__ObstacleDistance__Sequence__destroy(px4_msgs__msg__ObstacleDistance__Sequence * array) { if (array) { px4_msgs__msg__ObstacleDistance__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/rpm__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/Rpm.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__RPM__FUNCTIONS_H_ #define PX4_MSGS__MSG__RPM__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/rpm__struct.h" /// Initialize msg/Rpm message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__Rpm * )) before or use * px4_msgs__msg__Rpm__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__Rpm__init(px4_msgs__msg__Rpm * msg); /// Finalize msg/Rpm message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__Rpm__fini(px4_msgs__msg__Rpm * msg); /// Create msg/Rpm message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__Rpm__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__Rpm * px4_msgs__msg__Rpm__create(); /// Destroy msg/Rpm message. /** * It calls * px4_msgs__msg__Rpm__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__Rpm__destroy(px4_msgs__msg__Rpm * msg); /// Initialize array of msg/Rpm messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__Rpm__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__Rpm__Sequence__init(px4_msgs__msg__Rpm__Sequence * array, size_t size); /// Finalize array of msg/Rpm messages. /** * It calls * px4_msgs__msg__Rpm__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__Rpm__Sequence__fini(px4_msgs__msg__Rpm__Sequence * array); /// Create array of msg/Rpm messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__Rpm__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__Rpm__Sequence * px4_msgs__msg__Rpm__Sequence__create(size_t size); /// Destroy array of msg/Rpm messages. /** * It calls * px4_msgs__msg__Rpm__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__Rpm__Sequence__destroy(px4_msgs__msg__Rpm__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__RPM__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint_desired__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleTrajectoryWaypointDesired.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_TRAJECTORY_WAYPOINT_DESIRED__STRUCT_H_ #define PX4_MSGS__MSG__VEHICLE_TRAJECTORY_WAYPOINT_DESIRED__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'MAV_TRAJECTORY_REPRESENTATION_WAYPOINTS'. enum { px4_msgs__msg__VehicleTrajectoryWaypointDesired__MAV_TRAJECTORY_REPRESENTATION_WAYPOINTS = 0 }; /// Constant 'POINT_0'. enum { px4_msgs__msg__VehicleTrajectoryWaypointDesired__POINT_0 = 0 }; /// Constant 'POINT_1'. enum { px4_msgs__msg__VehicleTrajectoryWaypointDesired__POINT_1 = 1 }; /// Constant 'POINT_2'. enum { px4_msgs__msg__VehicleTrajectoryWaypointDesired__POINT_2 = 2 }; /// Constant 'POINT_3'. enum { px4_msgs__msg__VehicleTrajectoryWaypointDesired__POINT_3 = 3 }; /// Constant 'POINT_4'. enum { px4_msgs__msg__VehicleTrajectoryWaypointDesired__POINT_4 = 4 }; /// Constant 'NUMBER_POINTS'. enum { px4_msgs__msg__VehicleTrajectoryWaypointDesired__NUMBER_POINTS = 5 }; // Include directives for member types // Member 'waypoints' #include "px4_msgs/msg/trajectory_waypoint__struct.h" // Struct defined in msg/VehicleTrajectoryWaypointDesired in the package px4_msgs. typedef struct px4_msgs__msg__VehicleTrajectoryWaypointDesired { uint64_t timestamp; uint8_t type; px4_msgs__msg__TrajectoryWaypoint waypoints[5]; } px4_msgs__msg__VehicleTrajectoryWaypointDesired; // Struct for a sequence of px4_msgs__msg__VehicleTrajectoryWaypointDesired. typedef struct px4_msgs__msg__VehicleTrajectoryWaypointDesired__Sequence { px4_msgs__msg__VehicleTrajectoryWaypointDesired * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__VehicleTrajectoryWaypointDesired__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_TRAJECTORY_WAYPOINT_DESIRED__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_trajectory_waypoint__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/VehicleTrajectoryWaypoint.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_trajectory_waypoint__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/vehicle_trajectory_waypoint__struct.h" #include "px4_msgs/msg/vehicle_trajectory_waypoint__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif #include "px4_msgs/msg/trajectory_waypoint__functions.h" // waypoints // forward declare type support functions size_t get_serialized_size_px4_msgs__msg__TrajectoryWaypoint( const void * untyped_ros_message, size_t current_alignment); size_t max_serialized_size_px4_msgs__msg__TrajectoryWaypoint( bool & full_bounded, size_t current_alignment); const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, TrajectoryWaypoint)(); using _VehicleTrajectoryWaypoint__ros_msg_type = px4_msgs__msg__VehicleTrajectoryWaypoint; static bool _VehicleTrajectoryWaypoint__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _VehicleTrajectoryWaypoint__ros_msg_type * ros_message = static_cast<const _VehicleTrajectoryWaypoint__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: type { cdr << ros_message->type; } // Field name: waypoints { const message_type_support_callbacks_t * callbacks = static_cast<const message_type_support_callbacks_t *>( ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, TrajectoryWaypoint )()->data); size_t size = 5; auto array_ptr = ros_message->waypoints; for (size_t i = 0; i < size; ++i) { if (!callbacks->cdr_serialize( &array_ptr[i], cdr)) { return false; } } } return true; } static bool _VehicleTrajectoryWaypoint__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _VehicleTrajectoryWaypoint__ros_msg_type * ros_message = static_cast<_VehicleTrajectoryWaypoint__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: type { cdr >> ros_message->type; } // Field name: waypoints { const message_type_support_callbacks_t * callbacks = static_cast<const message_type_support_callbacks_t *>( ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, TrajectoryWaypoint )()->data); size_t size = 5; auto array_ptr = ros_message->waypoints; for (size_t i = 0; i < size; ++i) { if (!callbacks->cdr_deserialize( cdr, &array_ptr[i])) { return false; } } } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__VehicleTrajectoryWaypoint( const void * untyped_ros_message, size_t current_alignment) { const _VehicleTrajectoryWaypoint__ros_msg_type * ros_message = static_cast<const _VehicleTrajectoryWaypoint__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name type { size_t item_size = sizeof(ros_message->type); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name waypoints { size_t array_size = 5; auto array_ptr = ros_message->waypoints; for (size_t index = 0; index < array_size; ++index) { current_alignment += get_serialized_size_px4_msgs__msg__TrajectoryWaypoint( &array_ptr[index], current_alignment); } } return current_alignment - initial_alignment; } static uint32_t _VehicleTrajectoryWaypoint__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__VehicleTrajectoryWaypoint( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__VehicleTrajectoryWaypoint( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: type { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: waypoints { size_t array_size = 5; for (size_t index = 0; index < array_size; ++index) { current_alignment += max_serialized_size_px4_msgs__msg__TrajectoryWaypoint( full_bounded, current_alignment); } } return current_alignment - initial_alignment; } static size_t _VehicleTrajectoryWaypoint__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__VehicleTrajectoryWaypoint( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_VehicleTrajectoryWaypoint = { "px4_msgs::msg", "VehicleTrajectoryWaypoint", _VehicleTrajectoryWaypoint__cdr_serialize, _VehicleTrajectoryWaypoint__cdr_deserialize, _VehicleTrajectoryWaypoint__get_serialized_size, _VehicleTrajectoryWaypoint__max_serialized_size }; static rosidl_message_type_support_t _VehicleTrajectoryWaypoint__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_VehicleTrajectoryWaypoint, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, VehicleTrajectoryWaypoint)() { return &_VehicleTrajectoryWaypoint__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/system_power__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/SystemPower.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/system_power__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__SystemPower__init(px4_msgs__msg__SystemPower * msg) { if (!msg) { return false; } // timestamp // voltage5v_v // sensors3v3 // sensors3v3_valid // usb_connected // brick_valid // usb_valid // servo_valid // periph_5v_oc // hipower_5v_oc // comp_5v_valid // can1_gps1_5v_valid return true; } void px4_msgs__msg__SystemPower__fini(px4_msgs__msg__SystemPower * msg) { if (!msg) { return; } // timestamp // voltage5v_v // sensors3v3 // sensors3v3_valid // usb_connected // brick_valid // usb_valid // servo_valid // periph_5v_oc // hipower_5v_oc // comp_5v_valid // can1_gps1_5v_valid } px4_msgs__msg__SystemPower * px4_msgs__msg__SystemPower__create() { px4_msgs__msg__SystemPower * msg = (px4_msgs__msg__SystemPower *)malloc(sizeof(px4_msgs__msg__SystemPower)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__SystemPower)); bool success = px4_msgs__msg__SystemPower__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__SystemPower__destroy(px4_msgs__msg__SystemPower * msg) { if (msg) { px4_msgs__msg__SystemPower__fini(msg); } free(msg); } bool px4_msgs__msg__SystemPower__Sequence__init(px4_msgs__msg__SystemPower__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__SystemPower * data = NULL; if (size) { data = (px4_msgs__msg__SystemPower *)calloc(size, sizeof(px4_msgs__msg__SystemPower)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__SystemPower__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__SystemPower__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__SystemPower__Sequence__fini(px4_msgs__msg__SystemPower__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__SystemPower__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__SystemPower__Sequence * px4_msgs__msg__SystemPower__Sequence__create(size_t size) { px4_msgs__msg__SystemPower__Sequence * array = (px4_msgs__msg__SystemPower__Sequence *)malloc(sizeof(px4_msgs__msg__SystemPower__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__SystemPower__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__SystemPower__Sequence__destroy(px4_msgs__msg__SystemPower__Sequence * array) { if (array) { px4_msgs__msg__SystemPower__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_sensor_correction_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/SensorCorrection.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/sensor_correction__struct.h" #include "px4_msgs/msg/sensor_correction__functions.h" #include "rosidl_generator_c/primitives_sequence.h" #include "rosidl_generator_c/primitives_sequence_functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__sensor_correction__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[49]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._sensor_correction.SensorCorrection", full_classname_dest, 48) == 0); } px4_msgs__msg__SensorCorrection * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // gyro_device_ids PyObject * field = PyObject_GetAttrString(_pymsg, "gyro_device_ids"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT32); Py_ssize_t size = 4; uint32_t * dest = ros_message->gyro_device_ids; for (Py_ssize_t i = 0; i < size; ++i) { uint32_t tmp = *(npy_uint32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint32_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // gyro_offset_0 PyObject * field = PyObject_GetAttrString(_pymsg, "gyro_offset_0"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); Py_ssize_t size = 3; float * dest = ros_message->gyro_offset_0; for (Py_ssize_t i = 0; i < size; ++i) { float tmp = *(npy_float32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(float)); } Py_DECREF(seq_field); Py_DECREF(field); } { // gyro_offset_1 PyObject * field = PyObject_GetAttrString(_pymsg, "gyro_offset_1"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); Py_ssize_t size = 3; float * dest = ros_message->gyro_offset_1; for (Py_ssize_t i = 0; i < size; ++i) { float tmp = *(npy_float32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(float)); } Py_DECREF(seq_field); Py_DECREF(field); } { // gyro_offset_2 PyObject * field = PyObject_GetAttrString(_pymsg, "gyro_offset_2"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); Py_ssize_t size = 3; float * dest = ros_message->gyro_offset_2; for (Py_ssize_t i = 0; i < size; ++i) { float tmp = *(npy_float32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(float)); } Py_DECREF(seq_field); Py_DECREF(field); } { // gyro_offset_3 PyObject * field = PyObject_GetAttrString(_pymsg, "gyro_offset_3"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); Py_ssize_t size = 3; float * dest = ros_message->gyro_offset_3; for (Py_ssize_t i = 0; i < size; ++i) { float tmp = *(npy_float32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(float)); } Py_DECREF(seq_field); Py_DECREF(field); } { // accel_device_ids PyObject * field = PyObject_GetAttrString(_pymsg, "accel_device_ids"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT32); Py_ssize_t size = 4; uint32_t * dest = ros_message->accel_device_ids; for (Py_ssize_t i = 0; i < size; ++i) { uint32_t tmp = *(npy_uint32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint32_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // accel_offset_0 PyObject * field = PyObject_GetAttrString(_pymsg, "accel_offset_0"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); Py_ssize_t size = 3; float * dest = ros_message->accel_offset_0; for (Py_ssize_t i = 0; i < size; ++i) { float tmp = *(npy_float32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(float)); } Py_DECREF(seq_field); Py_DECREF(field); } { // accel_offset_1 PyObject * field = PyObject_GetAttrString(_pymsg, "accel_offset_1"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); Py_ssize_t size = 3; float * dest = ros_message->accel_offset_1; for (Py_ssize_t i = 0; i < size; ++i) { float tmp = *(npy_float32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(float)); } Py_DECREF(seq_field); Py_DECREF(field); } { // accel_offset_2 PyObject * field = PyObject_GetAttrString(_pymsg, "accel_offset_2"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); Py_ssize_t size = 3; float * dest = ros_message->accel_offset_2; for (Py_ssize_t i = 0; i < size; ++i) { float tmp = *(npy_float32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(float)); } Py_DECREF(seq_field); Py_DECREF(field); } { // accel_offset_3 PyObject * field = PyObject_GetAttrString(_pymsg, "accel_offset_3"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); Py_ssize_t size = 3; float * dest = ros_message->accel_offset_3; for (Py_ssize_t i = 0; i < size; ++i) { float tmp = *(npy_float32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(float)); } Py_DECREF(seq_field); Py_DECREF(field); } { // baro_device_ids PyObject * field = PyObject_GetAttrString(_pymsg, "baro_device_ids"); if (!field) { return false; } // TODO(dirk-thomas) use a better way to check the type before casting assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; Py_INCREF(seq_field); assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT32); Py_ssize_t size = 4; uint32_t * dest = ros_message->baro_device_ids; for (Py_ssize_t i = 0; i < size; ++i) { uint32_t tmp = *(npy_uint32 *)PyArray_GETPTR1(seq_field, i); memcpy(&dest[i], &tmp, sizeof(uint32_t)); } Py_DECREF(seq_field); Py_DECREF(field); } { // baro_offset_0 PyObject * field = PyObject_GetAttrString(_pymsg, "baro_offset_0"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->baro_offset_0 = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // baro_offset_1 PyObject * field = PyObject_GetAttrString(_pymsg, "baro_offset_1"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->baro_offset_1 = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // baro_offset_2 PyObject * field = PyObject_GetAttrString(_pymsg, "baro_offset_2"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->baro_offset_2 = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // baro_offset_3 PyObject * field = PyObject_GetAttrString(_pymsg, "baro_offset_3"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->baro_offset_3 = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__sensor_correction__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of SensorCorrection */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._sensor_correction"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "SensorCorrection"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__SensorCorrection * ros_message = (px4_msgs__msg__SensorCorrection *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // gyro_device_ids PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "gyro_device_ids"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT32); assert(sizeof(npy_uint32) == sizeof(uint32_t)); npy_uint32 * dst = (npy_uint32 *)PyArray_GETPTR1(seq_field, 0); uint32_t * src = &(ros_message->gyro_device_ids[0]); memcpy(dst, src, 4 * sizeof(uint32_t)); Py_DECREF(field); } { // gyro_offset_0 PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "gyro_offset_0"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); assert(sizeof(npy_float32) == sizeof(float)); npy_float32 * dst = (npy_float32 *)PyArray_GETPTR1(seq_field, 0); float * src = &(ros_message->gyro_offset_0[0]); memcpy(dst, src, 3 * sizeof(float)); Py_DECREF(field); } { // gyro_offset_1 PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "gyro_offset_1"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); assert(sizeof(npy_float32) == sizeof(float)); npy_float32 * dst = (npy_float32 *)PyArray_GETPTR1(seq_field, 0); float * src = &(ros_message->gyro_offset_1[0]); memcpy(dst, src, 3 * sizeof(float)); Py_DECREF(field); } { // gyro_offset_2 PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "gyro_offset_2"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); assert(sizeof(npy_float32) == sizeof(float)); npy_float32 * dst = (npy_float32 *)PyArray_GETPTR1(seq_field, 0); float * src = &(ros_message->gyro_offset_2[0]); memcpy(dst, src, 3 * sizeof(float)); Py_DECREF(field); } { // gyro_offset_3 PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "gyro_offset_3"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); assert(sizeof(npy_float32) == sizeof(float)); npy_float32 * dst = (npy_float32 *)PyArray_GETPTR1(seq_field, 0); float * src = &(ros_message->gyro_offset_3[0]); memcpy(dst, src, 3 * sizeof(float)); Py_DECREF(field); } { // accel_device_ids PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "accel_device_ids"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT32); assert(sizeof(npy_uint32) == sizeof(uint32_t)); npy_uint32 * dst = (npy_uint32 *)PyArray_GETPTR1(seq_field, 0); uint32_t * src = &(ros_message->accel_device_ids[0]); memcpy(dst, src, 4 * sizeof(uint32_t)); Py_DECREF(field); } { // accel_offset_0 PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "accel_offset_0"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); assert(sizeof(npy_float32) == sizeof(float)); npy_float32 * dst = (npy_float32 *)PyArray_GETPTR1(seq_field, 0); float * src = &(ros_message->accel_offset_0[0]); memcpy(dst, src, 3 * sizeof(float)); Py_DECREF(field); } { // accel_offset_1 PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "accel_offset_1"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); assert(sizeof(npy_float32) == sizeof(float)); npy_float32 * dst = (npy_float32 *)PyArray_GETPTR1(seq_field, 0); float * src = &(ros_message->accel_offset_1[0]); memcpy(dst, src, 3 * sizeof(float)); Py_DECREF(field); } { // accel_offset_2 PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "accel_offset_2"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); assert(sizeof(npy_float32) == sizeof(float)); npy_float32 * dst = (npy_float32 *)PyArray_GETPTR1(seq_field, 0); float * src = &(ros_message->accel_offset_2[0]); memcpy(dst, src, 3 * sizeof(float)); Py_DECREF(field); } { // accel_offset_3 PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "accel_offset_3"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_FLOAT32); assert(sizeof(npy_float32) == sizeof(float)); npy_float32 * dst = (npy_float32 *)PyArray_GETPTR1(seq_field, 0); float * src = &(ros_message->accel_offset_3[0]); memcpy(dst, src, 3 * sizeof(float)); Py_DECREF(field); } { // baro_device_ids PyObject * field = NULL; field = PyObject_GetAttrString(_pymessage, "baro_device_ids"); if (!field) { return NULL; } assert(field->ob_type != NULL); assert(field->ob_type->tp_name != NULL); assert(strcmp(field->ob_type->tp_name, "numpy.ndarray") == 0); PyArrayObject * seq_field = (PyArrayObject *)field; assert(PyArray_NDIM(seq_field) == 1); assert(PyArray_TYPE(seq_field) == NPY_UINT32); assert(sizeof(npy_uint32) == sizeof(uint32_t)); npy_uint32 * dst = (npy_uint32 *)PyArray_GETPTR1(seq_field, 0); uint32_t * src = &(ros_message->baro_device_ids[0]); memcpy(dst, src, 4 * sizeof(uint32_t)); Py_DECREF(field); } { // baro_offset_0 PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->baro_offset_0); { int rc = PyObject_SetAttrString(_pymessage, "baro_offset_0", field); Py_DECREF(field); if (rc) { return NULL; } } } { // baro_offset_1 PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->baro_offset_1); { int rc = PyObject_SetAttrString(_pymessage, "baro_offset_1", field); Py_DECREF(field); if (rc) { return NULL; } } } { // baro_offset_2 PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->baro_offset_2); { int rc = PyObject_SetAttrString(_pymessage, "baro_offset_2", field); Py_DECREF(field); if (rc) { return NULL; } } } { // baro_offset_3 PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->baro_offset_3); { int rc = PyObject_SetAttrString(_pymessage, "baro_offset_3", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/input_rc__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/InputRc.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__INPUT_RC__STRUCT_HPP_ #define PX4_MSGS__MSG__INPUT_RC__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__InputRc __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__InputRc __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct InputRc_ { using Type = InputRc_<ContainerAllocator>; explicit InputRc_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_last_signal = 0ull; this->channel_count = 0; this->rssi = 0l; this->rc_failsafe = false; this->rc_lost = false; this->rc_lost_frame_count = 0; this->rc_total_frame_count = 0; this->rc_ppm_frame_length = 0; this->input_source = 0; std::fill<typename std::array<uint16_t, 18>::iterator, uint16_t>(this->values.begin(), this->values.end(), 0); } } explicit InputRc_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : values(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_last_signal = 0ull; this->channel_count = 0; this->rssi = 0l; this->rc_failsafe = false; this->rc_lost = false; this->rc_lost_frame_count = 0; this->rc_total_frame_count = 0; this->rc_ppm_frame_length = 0; this->input_source = 0; std::fill<typename std::array<uint16_t, 18>::iterator, uint16_t>(this->values.begin(), this->values.end(), 0); } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _timestamp_last_signal_type = uint64_t; _timestamp_last_signal_type timestamp_last_signal; using _channel_count_type = uint8_t; _channel_count_type channel_count; using _rssi_type = int32_t; _rssi_type rssi; using _rc_failsafe_type = bool; _rc_failsafe_type rc_failsafe; using _rc_lost_type = bool; _rc_lost_type rc_lost; using _rc_lost_frame_count_type = uint16_t; _rc_lost_frame_count_type rc_lost_frame_count; using _rc_total_frame_count_type = uint16_t; _rc_total_frame_count_type rc_total_frame_count; using _rc_ppm_frame_length_type = uint16_t; _rc_ppm_frame_length_type rc_ppm_frame_length; using _input_source_type = uint8_t; _input_source_type input_source; using _values_type = std::array<uint16_t, 18>; _values_type values; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__timestamp_last_signal( const uint64_t & _arg) { this->timestamp_last_signal = _arg; return *this; } Type & set__channel_count( const uint8_t & _arg) { this->channel_count = _arg; return *this; } Type & set__rssi( const int32_t & _arg) { this->rssi = _arg; return *this; } Type & set__rc_failsafe( const bool & _arg) { this->rc_failsafe = _arg; return *this; } Type & set__rc_lost( const bool & _arg) { this->rc_lost = _arg; return *this; } Type & set__rc_lost_frame_count( const uint16_t & _arg) { this->rc_lost_frame_count = _arg; return *this; } Type & set__rc_total_frame_count( const uint16_t & _arg) { this->rc_total_frame_count = _arg; return *this; } Type & set__rc_ppm_frame_length( const uint16_t & _arg) { this->rc_ppm_frame_length = _arg; return *this; } Type & set__input_source( const uint8_t & _arg) { this->input_source = _arg; return *this; } Type & set__values( const std::array<uint16_t, 18> & _arg) { this->values = _arg; return *this; } // constant declarations static constexpr uint8_t RC_INPUT_SOURCE_UNKNOWN = 0u; static constexpr uint8_t RC_INPUT_SOURCE_PX4FMU_PPM = 1u; static constexpr uint8_t RC_INPUT_SOURCE_PX4IO_PPM = 2u; static constexpr uint8_t RC_INPUT_SOURCE_PX4IO_SPEKTRUM = 3u; static constexpr uint8_t RC_INPUT_SOURCE_PX4IO_SBUS = 4u; static constexpr uint8_t RC_INPUT_SOURCE_PX4IO_ST24 = 5u; static constexpr uint8_t RC_INPUT_SOURCE_MAVLINK = 6u; static constexpr uint8_t RC_INPUT_SOURCE_QURT = 7u; static constexpr uint8_t RC_INPUT_SOURCE_PX4FMU_SPEKTRUM = 8u; static constexpr uint8_t RC_INPUT_SOURCE_PX4FMU_SBUS = 9u; static constexpr uint8_t RC_INPUT_SOURCE_PX4FMU_ST24 = 10u; static constexpr uint8_t RC_INPUT_SOURCE_PX4FMU_SUMD = 11u; static constexpr uint8_t RC_INPUT_SOURCE_PX4FMU_DSM = 12u; static constexpr uint8_t RC_INPUT_SOURCE_PX4IO_SUMD = 13u; static constexpr uint8_t RC_INPUT_SOURCE_PX4FMU_CRSF = 14u; static constexpr uint8_t RC_INPUT_SOURCE_PX4FMU_GHST = 15u; static constexpr uint8_t RC_INPUT_MAX_CHANNELS = 18u; // pointer types using RawPtr = px4_msgs::msg::InputRc_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::InputRc_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::InputRc_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::InputRc_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::InputRc_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::InputRc_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::InputRc_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::InputRc_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::InputRc_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::InputRc_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__InputRc std::shared_ptr<px4_msgs::msg::InputRc_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__InputRc std::shared_ptr<px4_msgs::msg::InputRc_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const InputRc_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->timestamp_last_signal != other.timestamp_last_signal) { return false; } if (this->channel_count != other.channel_count) { return false; } if (this->rssi != other.rssi) { return false; } if (this->rc_failsafe != other.rc_failsafe) { return false; } if (this->rc_lost != other.rc_lost) { return false; } if (this->rc_lost_frame_count != other.rc_lost_frame_count) { return false; } if (this->rc_total_frame_count != other.rc_total_frame_count) { return false; } if (this->rc_ppm_frame_length != other.rc_ppm_frame_length) { return false; } if (this->input_source != other.input_source) { return false; } if (this->values != other.values) { return false; } return true; } bool operator!=(const InputRc_ & other) const { return !this->operator==(other); } }; // struct InputRc_ // alias to use template instance with default allocator using InputRc = px4_msgs::msg::InputRc_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t InputRc_<ContainerAllocator>::RC_INPUT_SOURCE_UNKNOWN; template<typename ContainerAllocator> constexpr uint8_t InputRc_<ContainerAllocator>::RC_INPUT_SOURCE_PX4FMU_PPM; template<typename ContainerAllocator> constexpr uint8_t InputRc_<ContainerAllocator>::RC_INPUT_SOURCE_PX4IO_PPM; template<typename ContainerAllocator> constexpr uint8_t InputRc_<ContainerAllocator>::RC_INPUT_SOURCE_PX4IO_SPEKTRUM; template<typename ContainerAllocator> constexpr uint8_t InputRc_<ContainerAllocator>::RC_INPUT_SOURCE_PX4IO_SBUS; template<typename ContainerAllocator> constexpr uint8_t InputRc_<ContainerAllocator>::RC_INPUT_SOURCE_PX4IO_ST24; template<typename ContainerAllocator> constexpr uint8_t InputRc_<ContainerAllocator>::RC_INPUT_SOURCE_MAVLINK; template<typename ContainerAllocator> constexpr uint8_t InputRc_<ContainerAllocator>::RC_INPUT_SOURCE_QURT; template<typename ContainerAllocator> constexpr uint8_t InputRc_<ContainerAllocator>::RC_INPUT_SOURCE_PX4FMU_SPEKTRUM; template<typename ContainerAllocator> constexpr uint8_t InputRc_<ContainerAllocator>::RC_INPUT_SOURCE_PX4FMU_SBUS; template<typename ContainerAllocator> constexpr uint8_t InputRc_<ContainerAllocator>::RC_INPUT_SOURCE_PX4FMU_ST24; template<typename ContainerAllocator> constexpr uint8_t InputRc_<ContainerAllocator>::RC_INPUT_SOURCE_PX4FMU_SUMD; template<typename ContainerAllocator> constexpr uint8_t InputRc_<ContainerAllocator>::RC_INPUT_SOURCE_PX4FMU_DSM; template<typename ContainerAllocator> constexpr uint8_t InputRc_<ContainerAllocator>::RC_INPUT_SOURCE_PX4IO_SUMD; template<typename ContainerAllocator> constexpr uint8_t InputRc_<ContainerAllocator>::RC_INPUT_SOURCE_PX4FMU_CRSF; template<typename ContainerAllocator> constexpr uint8_t InputRc_<ContainerAllocator>::RC_INPUT_SOURCE_PX4FMU_GHST; template<typename ContainerAllocator> constexpr uint8_t InputRc_<ContainerAllocator>::RC_INPUT_MAX_CHANNELS; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__INPUT_RC__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_actuator_armed_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/ActuatorArmed.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/actuator_armed__struct.h" #include "px4_msgs/msg/actuator_armed__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__actuator_armed__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[43]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._actuator_armed.ActuatorArmed", full_classname_dest, 42) == 0); } px4_msgs__msg__ActuatorArmed * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // armed PyObject * field = PyObject_GetAttrString(_pymsg, "armed"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->armed = (Py_True == field); Py_DECREF(field); } { // prearmed PyObject * field = PyObject_GetAttrString(_pymsg, "prearmed"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->prearmed = (Py_True == field); Py_DECREF(field); } { // ready_to_arm PyObject * field = PyObject_GetAttrString(_pymsg, "ready_to_arm"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->ready_to_arm = (Py_True == field); Py_DECREF(field); } { // lockdown PyObject * field = PyObject_GetAttrString(_pymsg, "lockdown"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->lockdown = (Py_True == field); Py_DECREF(field); } { // manual_lockdown PyObject * field = PyObject_GetAttrString(_pymsg, "manual_lockdown"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->manual_lockdown = (Py_True == field); Py_DECREF(field); } { // force_failsafe PyObject * field = PyObject_GetAttrString(_pymsg, "force_failsafe"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->force_failsafe = (Py_True == field); Py_DECREF(field); } { // in_esc_calibration_mode PyObject * field = PyObject_GetAttrString(_pymsg, "in_esc_calibration_mode"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->in_esc_calibration_mode = (Py_True == field); Py_DECREF(field); } { // soft_stop PyObject * field = PyObject_GetAttrString(_pymsg, "soft_stop"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->soft_stop = (Py_True == field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__actuator_armed__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of ActuatorArmed */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._actuator_armed"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "ActuatorArmed"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__ActuatorArmed * ros_message = (px4_msgs__msg__ActuatorArmed *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // armed PyObject * field = NULL; field = PyBool_FromLong(ros_message->armed ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "armed", field); Py_DECREF(field); if (rc) { return NULL; } } } { // prearmed PyObject * field = NULL; field = PyBool_FromLong(ros_message->prearmed ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "prearmed", field); Py_DECREF(field); if (rc) { return NULL; } } } { // ready_to_arm PyObject * field = NULL; field = PyBool_FromLong(ros_message->ready_to_arm ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "ready_to_arm", field); Py_DECREF(field); if (rc) { return NULL; } } } { // lockdown PyObject * field = NULL; field = PyBool_FromLong(ros_message->lockdown ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "lockdown", field); Py_DECREF(field); if (rc) { return NULL; } } } { // manual_lockdown PyObject * field = NULL; field = PyBool_FromLong(ros_message->manual_lockdown ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "manual_lockdown", field); Py_DECREF(field); if (rc) { return NULL; } } } { // force_failsafe PyObject * field = NULL; field = PyBool_FromLong(ros_message->force_failsafe ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "force_failsafe", field); Py_DECREF(field); if (rc) { return NULL; } } } { // in_esc_calibration_mode PyObject * field = NULL; field = PyBool_FromLong(ros_message->in_esc_calibration_mode ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "in_esc_calibration_mode", field); Py_DECREF(field); if (rc) { return NULL; } } } { // soft_stop PyObject * field = NULL; field = PyBool_FromLong(ros_message->soft_stop ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "soft_stop", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/follow_target__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/FollowTarget.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/follow_target__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void FollowTarget_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::FollowTarget(_init); } void FollowTarget_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::FollowTarget *>(message_memory); typed_message->~FollowTarget(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember FollowTarget_message_member_array[8] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::FollowTarget, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "lat", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_DOUBLE, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::FollowTarget, lat), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "lon", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_DOUBLE, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::FollowTarget, lon), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "alt", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::FollowTarget, alt), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vy", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::FollowTarget, vy), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vx", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::FollowTarget, vx), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "vz", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::FollowTarget, vz), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "est_cap", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::FollowTarget, est_cap), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers FollowTarget_message_members = { "px4_msgs::msg", // message namespace "FollowTarget", // message name 8, // number of fields sizeof(px4_msgs::msg::FollowTarget), FollowTarget_message_member_array, // message members FollowTarget_init_function, // function to initialize message memory (memory has to be allocated) FollowTarget_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t FollowTarget_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &FollowTarget_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::FollowTarget>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::FollowTarget_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, FollowTarget)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::FollowTarget_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/install/px4_msgs/include/px4_msgs/msg/rpm__traits.hpp /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/rpm__traits.hpp<file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/heater_status__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/HeaterStatus.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/heater_status__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/heater_status__functions.h" #include "px4_msgs/msg/heater_status__struct.h" #ifdef __cplusplus extern "C" { #endif void HeaterStatus__rosidl_typesupport_introspection_c__HeaterStatus_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__HeaterStatus__init(message_memory); } void HeaterStatus__rosidl_typesupport_introspection_c__HeaterStatus_fini_function(void * message_memory) { px4_msgs__msg__HeaterStatus__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember HeaterStatus__rosidl_typesupport_introspection_c__HeaterStatus_message_member_array[12] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HeaterStatus, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "device_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HeaterStatus, device_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "heater_on", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HeaterStatus, heater_on), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "temperature_target_met", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HeaterStatus, temperature_target_met), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "temperature_sensor", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HeaterStatus, temperature_sensor), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "temperature_target", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HeaterStatus, temperature_target), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "controller_period_usec", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HeaterStatus, controller_period_usec), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "controller_time_on_usec", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HeaterStatus, controller_time_on_usec), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "proportional_value", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HeaterStatus, proportional_value), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "integrator_value", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HeaterStatus, integrator_value), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "feed_forward_value", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HeaterStatus, feed_forward_value), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "mode", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__HeaterStatus, mode), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers HeaterStatus__rosidl_typesupport_introspection_c__HeaterStatus_message_members = { "px4_msgs__msg", // message namespace "HeaterStatus", // message name 12, // number of fields sizeof(px4_msgs__msg__HeaterStatus), HeaterStatus__rosidl_typesupport_introspection_c__HeaterStatus_message_member_array, // message members HeaterStatus__rosidl_typesupport_introspection_c__HeaterStatus_init_function, // function to initialize message memory (memory has to be allocated) HeaterStatus__rosidl_typesupport_introspection_c__HeaterStatus_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t HeaterStatus__rosidl_typesupport_introspection_c__HeaterStatus_message_type_support_handle = { 0, &HeaterStatus__rosidl_typesupport_introspection_c__HeaterStatus_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, HeaterStatus)() { if (!HeaterStatus__rosidl_typesupport_introspection_c__HeaterStatus_message_type_support_handle.typesupport_identifier) { HeaterStatus__rosidl_typesupport_introspection_c__HeaterStatus_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &HeaterStatus__rosidl_typesupport_introspection_c__HeaterStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/commander_state.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__COMMANDER_STATE_HPP_ #define PX4_MSGS__MSG__COMMANDER_STATE_HPP_ #include "px4_msgs/msg/commander_state__struct.hpp" #include "px4_msgs/msg/commander_state__traits.hpp" #endif // PX4_MSGS__MSG__COMMANDER_STATE_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_accel_fifo__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/SensorAccelFifo.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/sensor_accel_fifo__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__SensorAccelFifo__init(px4_msgs__msg__SensorAccelFifo * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // device_id // dt // scale // samples // x // y // z return true; } void px4_msgs__msg__SensorAccelFifo__fini(px4_msgs__msg__SensorAccelFifo * msg) { if (!msg) { return; } // timestamp // timestamp_sample // device_id // dt // scale // samples // x // y // z } px4_msgs__msg__SensorAccelFifo * px4_msgs__msg__SensorAccelFifo__create() { px4_msgs__msg__SensorAccelFifo * msg = (px4_msgs__msg__SensorAccelFifo *)malloc(sizeof(px4_msgs__msg__SensorAccelFifo)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__SensorAccelFifo)); bool success = px4_msgs__msg__SensorAccelFifo__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__SensorAccelFifo__destroy(px4_msgs__msg__SensorAccelFifo * msg) { if (msg) { px4_msgs__msg__SensorAccelFifo__fini(msg); } free(msg); } bool px4_msgs__msg__SensorAccelFifo__Sequence__init(px4_msgs__msg__SensorAccelFifo__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__SensorAccelFifo * data = NULL; if (size) { data = (px4_msgs__msg__SensorAccelFifo *)calloc(size, sizeof(px4_msgs__msg__SensorAccelFifo)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__SensorAccelFifo__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__SensorAccelFifo__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__SensorAccelFifo__Sequence__fini(px4_msgs__msg__SensorAccelFifo__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__SensorAccelFifo__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__SensorAccelFifo__Sequence * px4_msgs__msg__SensorAccelFifo__Sequence__create(size_t size) { px4_msgs__msg__SensorAccelFifo__Sequence * array = (px4_msgs__msg__SensorAccelFifo__Sequence *)malloc(sizeof(px4_msgs__msg__SensorAccelFifo__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__SensorAccelFifo__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__SensorAccelFifo__Sequence__destroy(px4_msgs__msg__SensorAccelFifo__Sequence * array) { if (array) { px4_msgs__msg__SensorAccelFifo__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/airspeed_validated__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/AirspeedValidated.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__AIRSPEED_VALIDATED__STRUCT_HPP_ #define PX4_MSGS__MSG__AIRSPEED_VALIDATED__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__AirspeedValidated __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__AirspeedValidated __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct AirspeedValidated_ { using Type = AirspeedValidated_<ContainerAllocator>; explicit AirspeedValidated_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->indicated_airspeed_m_s = 0.0f; this->calibrated_airspeed_m_s = 0.0f; this->true_airspeed_m_s = 0.0f; this->calibrated_ground_minus_wind_m_s = 0.0f; this->true_ground_minus_wind_m_s = 0.0f; this->airspeed_sensor_measurement_valid = false; this->selected_airspeed_index = 0; } } explicit AirspeedValidated_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->indicated_airspeed_m_s = 0.0f; this->calibrated_airspeed_m_s = 0.0f; this->true_airspeed_m_s = 0.0f; this->calibrated_ground_minus_wind_m_s = 0.0f; this->true_ground_minus_wind_m_s = 0.0f; this->airspeed_sensor_measurement_valid = false; this->selected_airspeed_index = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _indicated_airspeed_m_s_type = float; _indicated_airspeed_m_s_type indicated_airspeed_m_s; using _calibrated_airspeed_m_s_type = float; _calibrated_airspeed_m_s_type calibrated_airspeed_m_s; using _true_airspeed_m_s_type = float; _true_airspeed_m_s_type true_airspeed_m_s; using _calibrated_ground_minus_wind_m_s_type = float; _calibrated_ground_minus_wind_m_s_type calibrated_ground_minus_wind_m_s; using _true_ground_minus_wind_m_s_type = float; _true_ground_minus_wind_m_s_type true_ground_minus_wind_m_s; using _airspeed_sensor_measurement_valid_type = bool; _airspeed_sensor_measurement_valid_type airspeed_sensor_measurement_valid; using _selected_airspeed_index_type = int8_t; _selected_airspeed_index_type selected_airspeed_index; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__indicated_airspeed_m_s( const float & _arg) { this->indicated_airspeed_m_s = _arg; return *this; } Type & set__calibrated_airspeed_m_s( const float & _arg) { this->calibrated_airspeed_m_s = _arg; return *this; } Type & set__true_airspeed_m_s( const float & _arg) { this->true_airspeed_m_s = _arg; return *this; } Type & set__calibrated_ground_minus_wind_m_s( const float & _arg) { this->calibrated_ground_minus_wind_m_s = _arg; return *this; } Type & set__true_ground_minus_wind_m_s( const float & _arg) { this->true_ground_minus_wind_m_s = _arg; return *this; } Type & set__airspeed_sensor_measurement_valid( const bool & _arg) { this->airspeed_sensor_measurement_valid = _arg; return *this; } Type & set__selected_airspeed_index( const int8_t & _arg) { this->selected_airspeed_index = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::AirspeedValidated_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::AirspeedValidated_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::AirspeedValidated_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::AirspeedValidated_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::AirspeedValidated_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::AirspeedValidated_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::AirspeedValidated_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::AirspeedValidated_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::AirspeedValidated_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::AirspeedValidated_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__AirspeedValidated std::shared_ptr<px4_msgs::msg::AirspeedValidated_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__AirspeedValidated std::shared_ptr<px4_msgs::msg::AirspeedValidated_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const AirspeedValidated_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->indicated_airspeed_m_s != other.indicated_airspeed_m_s) { return false; } if (this->calibrated_airspeed_m_s != other.calibrated_airspeed_m_s) { return false; } if (this->true_airspeed_m_s != other.true_airspeed_m_s) { return false; } if (this->calibrated_ground_minus_wind_m_s != other.calibrated_ground_minus_wind_m_s) { return false; } if (this->true_ground_minus_wind_m_s != other.true_ground_minus_wind_m_s) { return false; } if (this->airspeed_sensor_measurement_valid != other.airspeed_sensor_measurement_valid) { return false; } if (this->selected_airspeed_index != other.selected_airspeed_index) { return false; } return true; } bool operator!=(const AirspeedValidated_ & other) const { return !this->operator==(other); } }; // struct AirspeedValidated_ // alias to use template instance with default allocator using AirspeedValidated = px4_msgs::msg::AirspeedValidated_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__AIRSPEED_VALIDATED__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_vehicle_land_detected.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/VehicleLandDetected.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_VehicleLandDetected(type): """Metaclass of message 'VehicleLandDetected'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.VehicleLandDetected') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__vehicle_land_detected cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__vehicle_land_detected cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__vehicle_land_detected cls._TYPE_SUPPORT = module.type_support_msg__msg__vehicle_land_detected cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__vehicle_land_detected @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class VehicleLandDetected(metaclass=Metaclass_VehicleLandDetected): """Message class 'VehicleLandDetected'.""" __slots__ = [ '_timestamp', '_alt_max', '_freefall', '_ground_contact', '_maybe_landed', '_landed', '_in_ground_effect', ] _fields_and_field_types = { 'timestamp': 'uint64', 'alt_max': 'float', 'freefall': 'boolean', 'ground_contact': 'boolean', 'maybe_landed': 'boolean', 'landed': 'boolean', 'in_ground_effect': 'boolean', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.alt_max = kwargs.get('alt_max', float()) self.freefall = kwargs.get('freefall', bool()) self.ground_contact = kwargs.get('ground_contact', bool()) self.maybe_landed = kwargs.get('maybe_landed', bool()) self.landed = kwargs.get('landed', bool()) self.in_ground_effect = kwargs.get('in_ground_effect', bool()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.alt_max != other.alt_max: return False if self.freefall != other.freefall: return False if self.ground_contact != other.ground_contact: return False if self.maybe_landed != other.maybe_landed: return False if self.landed != other.landed: return False if self.in_ground_effect != other.in_ground_effect: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def alt_max(self): """Message field 'alt_max'.""" return self._alt_max @alt_max.setter def alt_max(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'alt_max' field must be of type 'float'" self._alt_max = value @property def freefall(self): """Message field 'freefall'.""" return self._freefall @freefall.setter def freefall(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'freefall' field must be of type 'bool'" self._freefall = value @property def ground_contact(self): """Message field 'ground_contact'.""" return self._ground_contact @ground_contact.setter def ground_contact(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'ground_contact' field must be of type 'bool'" self._ground_contact = value @property def maybe_landed(self): """Message field 'maybe_landed'.""" return self._maybe_landed @maybe_landed.setter def maybe_landed(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'maybe_landed' field must be of type 'bool'" self._maybe_landed = value @property def landed(self): """Message field 'landed'.""" return self._landed @landed.setter def landed(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'landed' field must be of type 'bool'" self._landed = value @property def in_ground_effect(self): """Message field 'in_ground_effect'.""" return self._in_ground_effect @in_ground_effect.setter def in_ground_effect(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'in_ground_effect' field must be of type 'bool'" self._in_ground_effect = value <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_air_data.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleAirData.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_AIR_DATA_H_ #define PX4_MSGS__MSG__VEHICLE_AIR_DATA_H_ #include "px4_msgs/msg/vehicle_air_data__struct.h" #include "px4_msgs/msg/vehicle_air_data__functions.h" #include "px4_msgs/msg/vehicle_air_data__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_AIR_DATA_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_telemetry_status_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/TelemetryStatus.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/telemetry_status__struct.h" #include "px4_msgs/msg/telemetry_status__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__telemetry_status__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[47]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._telemetry_status.TelemetryStatus", full_classname_dest, 46) == 0); } px4_msgs__msg__TelemetryStatus * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // type PyObject * field = PyObject_GetAttrString(_pymsg, "type"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->type = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // mode PyObject * field = PyObject_GetAttrString(_pymsg, "mode"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->mode = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // flow_control PyObject * field = PyObject_GetAttrString(_pymsg, "flow_control"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->flow_control = (Py_True == field); Py_DECREF(field); } { // forwarding PyObject * field = PyObject_GetAttrString(_pymsg, "forwarding"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->forwarding = (Py_True == field); Py_DECREF(field); } { // mavlink_v2 PyObject * field = PyObject_GetAttrString(_pymsg, "mavlink_v2"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->mavlink_v2 = (Py_True == field); Py_DECREF(field); } { // ftp PyObject * field = PyObject_GetAttrString(_pymsg, "ftp"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->ftp = (Py_True == field); Py_DECREF(field); } { // streams PyObject * field = PyObject_GetAttrString(_pymsg, "streams"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->streams = (uint8_t)PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // data_rate PyObject * field = PyObject_GetAttrString(_pymsg, "data_rate"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->data_rate = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // rate_multiplier PyObject * field = PyObject_GetAttrString(_pymsg, "rate_multiplier"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->rate_multiplier = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // tx_rate_avg PyObject * field = PyObject_GetAttrString(_pymsg, "tx_rate_avg"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->tx_rate_avg = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // tx_error_rate_avg PyObject * field = PyObject_GetAttrString(_pymsg, "tx_error_rate_avg"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->tx_error_rate_avg = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // tx_message_count PyObject * field = PyObject_GetAttrString(_pymsg, "tx_message_count"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->tx_message_count = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // tx_buffer_overruns PyObject * field = PyObject_GetAttrString(_pymsg, "tx_buffer_overruns"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->tx_buffer_overruns = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // rx_rate_avg PyObject * field = PyObject_GetAttrString(_pymsg, "rx_rate_avg"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->rx_rate_avg = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // rx_message_count PyObject * field = PyObject_GetAttrString(_pymsg, "rx_message_count"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->rx_message_count = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // rx_message_count_supported PyObject * field = PyObject_GetAttrString(_pymsg, "rx_message_count_supported"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->rx_message_count_supported = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // rx_message_lost_count PyObject * field = PyObject_GetAttrString(_pymsg, "rx_message_lost_count"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->rx_message_lost_count = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // rx_buffer_overruns PyObject * field = PyObject_GetAttrString(_pymsg, "rx_buffer_overruns"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->rx_buffer_overruns = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // rx_parse_errors PyObject * field = PyObject_GetAttrString(_pymsg, "rx_parse_errors"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->rx_parse_errors = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // rx_packet_drop_count PyObject * field = PyObject_GetAttrString(_pymsg, "rx_packet_drop_count"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->rx_packet_drop_count = PyLong_AsUnsignedLong(field); Py_DECREF(field); } { // rx_message_lost_rate PyObject * field = PyObject_GetAttrString(_pymsg, "rx_message_lost_rate"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->rx_message_lost_rate = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // heartbeat_type_antenna_tracker PyObject * field = PyObject_GetAttrString(_pymsg, "heartbeat_type_antenna_tracker"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->heartbeat_type_antenna_tracker = (Py_True == field); Py_DECREF(field); } { // heartbeat_type_gcs PyObject * field = PyObject_GetAttrString(_pymsg, "heartbeat_type_gcs"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->heartbeat_type_gcs = (Py_True == field); Py_DECREF(field); } { // heartbeat_type_onboard_controller PyObject * field = PyObject_GetAttrString(_pymsg, "heartbeat_type_onboard_controller"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->heartbeat_type_onboard_controller = (Py_True == field); Py_DECREF(field); } { // heartbeat_type_gimbal PyObject * field = PyObject_GetAttrString(_pymsg, "heartbeat_type_gimbal"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->heartbeat_type_gimbal = (Py_True == field); Py_DECREF(field); } { // heartbeat_type_adsb PyObject * field = PyObject_GetAttrString(_pymsg, "heartbeat_type_adsb"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->heartbeat_type_adsb = (Py_True == field); Py_DECREF(field); } { // heartbeat_type_camera PyObject * field = PyObject_GetAttrString(_pymsg, "heartbeat_type_camera"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->heartbeat_type_camera = (Py_True == field); Py_DECREF(field); } { // heartbeat_component_telemetry_radio PyObject * field = PyObject_GetAttrString(_pymsg, "heartbeat_component_telemetry_radio"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->heartbeat_component_telemetry_radio = (Py_True == field); Py_DECREF(field); } { // heartbeat_component_log PyObject * field = PyObject_GetAttrString(_pymsg, "heartbeat_component_log"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->heartbeat_component_log = (Py_True == field); Py_DECREF(field); } { // heartbeat_component_osd PyObject * field = PyObject_GetAttrString(_pymsg, "heartbeat_component_osd"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->heartbeat_component_osd = (Py_True == field); Py_DECREF(field); } { // heartbeat_component_obstacle_avoidance PyObject * field = PyObject_GetAttrString(_pymsg, "heartbeat_component_obstacle_avoidance"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->heartbeat_component_obstacle_avoidance = (Py_True == field); Py_DECREF(field); } { // heartbeat_component_vio PyObject * field = PyObject_GetAttrString(_pymsg, "heartbeat_component_vio"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->heartbeat_component_vio = (Py_True == field); Py_DECREF(field); } { // heartbeat_component_pairing_manager PyObject * field = PyObject_GetAttrString(_pymsg, "heartbeat_component_pairing_manager"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->heartbeat_component_pairing_manager = (Py_True == field); Py_DECREF(field); } { // heartbeat_component_udp_bridge PyObject * field = PyObject_GetAttrString(_pymsg, "heartbeat_component_udp_bridge"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->heartbeat_component_udp_bridge = (Py_True == field); Py_DECREF(field); } { // heartbeat_component_uart_bridge PyObject * field = PyObject_GetAttrString(_pymsg, "heartbeat_component_uart_bridge"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->heartbeat_component_uart_bridge = (Py_True == field); Py_DECREF(field); } { // avoidance_system_healthy PyObject * field = PyObject_GetAttrString(_pymsg, "avoidance_system_healthy"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->avoidance_system_healthy = (Py_True == field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__telemetry_status__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of TelemetryStatus */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._telemetry_status"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "TelemetryStatus"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__TelemetryStatus * ros_message = (px4_msgs__msg__TelemetryStatus *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // type PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->type); { int rc = PyObject_SetAttrString(_pymessage, "type", field); Py_DECREF(field); if (rc) { return NULL; } } } { // mode PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->mode); { int rc = PyObject_SetAttrString(_pymessage, "mode", field); Py_DECREF(field); if (rc) { return NULL; } } } { // flow_control PyObject * field = NULL; field = PyBool_FromLong(ros_message->flow_control ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "flow_control", field); Py_DECREF(field); if (rc) { return NULL; } } } { // forwarding PyObject * field = NULL; field = PyBool_FromLong(ros_message->forwarding ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "forwarding", field); Py_DECREF(field); if (rc) { return NULL; } } } { // mavlink_v2 PyObject * field = NULL; field = PyBool_FromLong(ros_message->mavlink_v2 ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "mavlink_v2", field); Py_DECREF(field); if (rc) { return NULL; } } } { // ftp PyObject * field = NULL; field = PyBool_FromLong(ros_message->ftp ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "ftp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // streams PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->streams); { int rc = PyObject_SetAttrString(_pymessage, "streams", field); Py_DECREF(field); if (rc) { return NULL; } } } { // data_rate PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->data_rate); { int rc = PyObject_SetAttrString(_pymessage, "data_rate", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rate_multiplier PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->rate_multiplier); { int rc = PyObject_SetAttrString(_pymessage, "rate_multiplier", field); Py_DECREF(field); if (rc) { return NULL; } } } { // tx_rate_avg PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->tx_rate_avg); { int rc = PyObject_SetAttrString(_pymessage, "tx_rate_avg", field); Py_DECREF(field); if (rc) { return NULL; } } } { // tx_error_rate_avg PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->tx_error_rate_avg); { int rc = PyObject_SetAttrString(_pymessage, "tx_error_rate_avg", field); Py_DECREF(field); if (rc) { return NULL; } } } { // tx_message_count PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->tx_message_count); { int rc = PyObject_SetAttrString(_pymessage, "tx_message_count", field); Py_DECREF(field); if (rc) { return NULL; } } } { // tx_buffer_overruns PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->tx_buffer_overruns); { int rc = PyObject_SetAttrString(_pymessage, "tx_buffer_overruns", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rx_rate_avg PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->rx_rate_avg); { int rc = PyObject_SetAttrString(_pymessage, "rx_rate_avg", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rx_message_count PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->rx_message_count); { int rc = PyObject_SetAttrString(_pymessage, "rx_message_count", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rx_message_count_supported PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->rx_message_count_supported); { int rc = PyObject_SetAttrString(_pymessage, "rx_message_count_supported", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rx_message_lost_count PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->rx_message_lost_count); { int rc = PyObject_SetAttrString(_pymessage, "rx_message_lost_count", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rx_buffer_overruns PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->rx_buffer_overruns); { int rc = PyObject_SetAttrString(_pymessage, "rx_buffer_overruns", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rx_parse_errors PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->rx_parse_errors); { int rc = PyObject_SetAttrString(_pymessage, "rx_parse_errors", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rx_packet_drop_count PyObject * field = NULL; field = PyLong_FromUnsignedLong(ros_message->rx_packet_drop_count); { int rc = PyObject_SetAttrString(_pymessage, "rx_packet_drop_count", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rx_message_lost_rate PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->rx_message_lost_rate); { int rc = PyObject_SetAttrString(_pymessage, "rx_message_lost_rate", field); Py_DECREF(field); if (rc) { return NULL; } } } { // heartbeat_type_antenna_tracker PyObject * field = NULL; field = PyBool_FromLong(ros_message->heartbeat_type_antenna_tracker ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "heartbeat_type_antenna_tracker", field); Py_DECREF(field); if (rc) { return NULL; } } } { // heartbeat_type_gcs PyObject * field = NULL; field = PyBool_FromLong(ros_message->heartbeat_type_gcs ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "heartbeat_type_gcs", field); Py_DECREF(field); if (rc) { return NULL; } } } { // heartbeat_type_onboard_controller PyObject * field = NULL; field = PyBool_FromLong(ros_message->heartbeat_type_onboard_controller ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "heartbeat_type_onboard_controller", field); Py_DECREF(field); if (rc) { return NULL; } } } { // heartbeat_type_gimbal PyObject * field = NULL; field = PyBool_FromLong(ros_message->heartbeat_type_gimbal ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "heartbeat_type_gimbal", field); Py_DECREF(field); if (rc) { return NULL; } } } { // heartbeat_type_adsb PyObject * field = NULL; field = PyBool_FromLong(ros_message->heartbeat_type_adsb ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "heartbeat_type_adsb", field); Py_DECREF(field); if (rc) { return NULL; } } } { // heartbeat_type_camera PyObject * field = NULL; field = PyBool_FromLong(ros_message->heartbeat_type_camera ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "heartbeat_type_camera", field); Py_DECREF(field); if (rc) { return NULL; } } } { // heartbeat_component_telemetry_radio PyObject * field = NULL; field = PyBool_FromLong(ros_message->heartbeat_component_telemetry_radio ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "heartbeat_component_telemetry_radio", field); Py_DECREF(field); if (rc) { return NULL; } } } { // heartbeat_component_log PyObject * field = NULL; field = PyBool_FromLong(ros_message->heartbeat_component_log ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "heartbeat_component_log", field); Py_DECREF(field); if (rc) { return NULL; } } } { // heartbeat_component_osd PyObject * field = NULL; field = PyBool_FromLong(ros_message->heartbeat_component_osd ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "heartbeat_component_osd", field); Py_DECREF(field); if (rc) { return NULL; } } } { // heartbeat_component_obstacle_avoidance PyObject * field = NULL; field = PyBool_FromLong(ros_message->heartbeat_component_obstacle_avoidance ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "heartbeat_component_obstacle_avoidance", field); Py_DECREF(field); if (rc) { return NULL; } } } { // heartbeat_component_vio PyObject * field = NULL; field = PyBool_FromLong(ros_message->heartbeat_component_vio ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "heartbeat_component_vio", field); Py_DECREF(field); if (rc) { return NULL; } } } { // heartbeat_component_pairing_manager PyObject * field = NULL; field = PyBool_FromLong(ros_message->heartbeat_component_pairing_manager ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "heartbeat_component_pairing_manager", field); Py_DECREF(field); if (rc) { return NULL; } } } { // heartbeat_component_udp_bridge PyObject * field = NULL; field = PyBool_FromLong(ros_message->heartbeat_component_udp_bridge ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "heartbeat_component_udp_bridge", field); Py_DECREF(field); if (rc) { return NULL; } } } { // heartbeat_component_uart_bridge PyObject * field = NULL; field = PyBool_FromLong(ros_message->heartbeat_component_uart_bridge ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "heartbeat_component_uart_bridge", field); Py_DECREF(field); if (rc) { return NULL; } } } { // avoidance_system_healthy PyObject * field = NULL; field = PyBool_FromLong(ros_message->avoidance_system_healthy ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "avoidance_system_healthy", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/radio_status.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__RADIO_STATUS_HPP_ #define PX4_MSGS__MSG__RADIO_STATUS_HPP_ #include "px4_msgs/msg/radio_status__struct.hpp" #include "px4_msgs/msg/radio_status__traits.hpp" #endif // PX4_MSGS__MSG__RADIO_STATUS_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_landing_target_pose_s.c // generated from rosidl_generator_py/resource/_idl_support.c.em // with input from px4_msgs:msg/LandingTargetPose.idl // generated code does not contain a copyright notice #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION #include <Python.h> #include <stdbool.h> #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-function" #endif #include "numpy/ndarrayobject.h" #ifndef _WIN32 # pragma GCC diagnostic pop #endif #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/landing_target_pose__struct.h" #include "px4_msgs/msg/landing_target_pose__functions.h" ROSIDL_GENERATOR_C_EXPORT bool px4_msgs__msg__landing_target_pose__convert_from_py(PyObject * _pymsg, void * _ros_message) { // check that the passed message is of the expected Python class { char full_classname_dest[52]; { char * class_name = NULL; char * module_name = NULL; { PyObject * class_attr = PyObject_GetAttrString(_pymsg, "__class__"); if (class_attr) { PyObject * name_attr = PyObject_GetAttrString(class_attr, "__name__"); if (name_attr) { class_name = (char *)PyUnicode_1BYTE_DATA(name_attr); Py_DECREF(name_attr); } PyObject * module_attr = PyObject_GetAttrString(class_attr, "__module__"); if (module_attr) { module_name = (char *)PyUnicode_1BYTE_DATA(module_attr); Py_DECREF(module_attr); } Py_DECREF(class_attr); } } if (!class_name || !module_name) { return false; } snprintf(full_classname_dest, sizeof(full_classname_dest), "%s.%s", module_name, class_name); } assert(strncmp( "px4_msgs.msg._landing_target_pose.LandingTargetPose", full_classname_dest, 51) == 0); } px4_msgs__msg__LandingTargetPose * ros_message = _ros_message; { // timestamp PyObject * field = PyObject_GetAttrString(_pymsg, "timestamp"); if (!field) { return false; } assert(PyLong_Check(field)); ros_message->timestamp = PyLong_AsUnsignedLongLong(field); Py_DECREF(field); } { // is_static PyObject * field = PyObject_GetAttrString(_pymsg, "is_static"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->is_static = (Py_True == field); Py_DECREF(field); } { // rel_pos_valid PyObject * field = PyObject_GetAttrString(_pymsg, "rel_pos_valid"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->rel_pos_valid = (Py_True == field); Py_DECREF(field); } { // rel_vel_valid PyObject * field = PyObject_GetAttrString(_pymsg, "rel_vel_valid"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->rel_vel_valid = (Py_True == field); Py_DECREF(field); } { // x_rel PyObject * field = PyObject_GetAttrString(_pymsg, "x_rel"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->x_rel = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // y_rel PyObject * field = PyObject_GetAttrString(_pymsg, "y_rel"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->y_rel = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // z_rel PyObject * field = PyObject_GetAttrString(_pymsg, "z_rel"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->z_rel = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // vx_rel PyObject * field = PyObject_GetAttrString(_pymsg, "vx_rel"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->vx_rel = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // vy_rel PyObject * field = PyObject_GetAttrString(_pymsg, "vy_rel"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->vy_rel = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // cov_x_rel PyObject * field = PyObject_GetAttrString(_pymsg, "cov_x_rel"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->cov_x_rel = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // cov_y_rel PyObject * field = PyObject_GetAttrString(_pymsg, "cov_y_rel"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->cov_y_rel = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // cov_vx_rel PyObject * field = PyObject_GetAttrString(_pymsg, "cov_vx_rel"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->cov_vx_rel = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // cov_vy_rel PyObject * field = PyObject_GetAttrString(_pymsg, "cov_vy_rel"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->cov_vy_rel = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // abs_pos_valid PyObject * field = PyObject_GetAttrString(_pymsg, "abs_pos_valid"); if (!field) { return false; } assert(PyBool_Check(field)); ros_message->abs_pos_valid = (Py_True == field); Py_DECREF(field); } { // x_abs PyObject * field = PyObject_GetAttrString(_pymsg, "x_abs"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->x_abs = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // y_abs PyObject * field = PyObject_GetAttrString(_pymsg, "y_abs"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->y_abs = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } { // z_abs PyObject * field = PyObject_GetAttrString(_pymsg, "z_abs"); if (!field) { return false; } assert(PyFloat_Check(field)); ros_message->z_abs = (float)PyFloat_AS_DOUBLE(field); Py_DECREF(field); } return true; } ROSIDL_GENERATOR_C_EXPORT PyObject * px4_msgs__msg__landing_target_pose__convert_to_py(void * raw_ros_message) { /* NOTE(esteve): Call constructor of LandingTargetPose */ PyObject * _pymessage = NULL; { PyObject * pymessage_module = PyImport_ImportModule("px4_msgs.msg._landing_target_pose"); assert(pymessage_module); PyObject * pymessage_class = PyObject_GetAttrString(pymessage_module, "LandingTargetPose"); assert(pymessage_class); Py_DECREF(pymessage_module); _pymessage = PyObject_CallObject(pymessage_class, NULL); Py_DECREF(pymessage_class); if (!_pymessage) { return NULL; } } px4_msgs__msg__LandingTargetPose * ros_message = (px4_msgs__msg__LandingTargetPose *)raw_ros_message; { // timestamp PyObject * field = NULL; field = PyLong_FromUnsignedLongLong(ros_message->timestamp); { int rc = PyObject_SetAttrString(_pymessage, "timestamp", field); Py_DECREF(field); if (rc) { return NULL; } } } { // is_static PyObject * field = NULL; field = PyBool_FromLong(ros_message->is_static ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "is_static", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rel_pos_valid PyObject * field = NULL; field = PyBool_FromLong(ros_message->rel_pos_valid ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "rel_pos_valid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // rel_vel_valid PyObject * field = NULL; field = PyBool_FromLong(ros_message->rel_vel_valid ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "rel_vel_valid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // x_rel PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->x_rel); { int rc = PyObject_SetAttrString(_pymessage, "x_rel", field); Py_DECREF(field); if (rc) { return NULL; } } } { // y_rel PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->y_rel); { int rc = PyObject_SetAttrString(_pymessage, "y_rel", field); Py_DECREF(field); if (rc) { return NULL; } } } { // z_rel PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->z_rel); { int rc = PyObject_SetAttrString(_pymessage, "z_rel", field); Py_DECREF(field); if (rc) { return NULL; } } } { // vx_rel PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->vx_rel); { int rc = PyObject_SetAttrString(_pymessage, "vx_rel", field); Py_DECREF(field); if (rc) { return NULL; } } } { // vy_rel PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->vy_rel); { int rc = PyObject_SetAttrString(_pymessage, "vy_rel", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cov_x_rel PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->cov_x_rel); { int rc = PyObject_SetAttrString(_pymessage, "cov_x_rel", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cov_y_rel PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->cov_y_rel); { int rc = PyObject_SetAttrString(_pymessage, "cov_y_rel", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cov_vx_rel PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->cov_vx_rel); { int rc = PyObject_SetAttrString(_pymessage, "cov_vx_rel", field); Py_DECREF(field); if (rc) { return NULL; } } } { // cov_vy_rel PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->cov_vy_rel); { int rc = PyObject_SetAttrString(_pymessage, "cov_vy_rel", field); Py_DECREF(field); if (rc) { return NULL; } } } { // abs_pos_valid PyObject * field = NULL; field = PyBool_FromLong(ros_message->abs_pos_valid ? 1 : 0); { int rc = PyObject_SetAttrString(_pymessage, "abs_pos_valid", field); Py_DECREF(field); if (rc) { return NULL; } } } { // x_abs PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->x_abs); { int rc = PyObject_SetAttrString(_pymessage, "x_abs", field); Py_DECREF(field); if (rc) { return NULL; } } } { // y_abs PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->y_abs); { int rc = PyObject_SetAttrString(_pymessage, "y_abs", field); Py_DECREF(field); if (rc) { return NULL; } } } { // z_abs PyObject * field = NULL; field = PyFloat_FromDouble(ros_message->z_abs); { int rc = PyObject_SetAttrString(_pymessage, "z_abs", field); Py_DECREF(field); if (rc) { return NULL; } } } // ownership of _pymessage is transferred to the caller return _pymessage; } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/parameter_update.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__PARAMETER_UPDATE_HPP_ #define PX4_MSGS__MSG__PARAMETER_UPDATE_HPP_ #include "px4_msgs/msg/parameter_update__struct.hpp" #include "px4_msgs/msg/parameter_update__traits.hpp" #endif // PX4_MSGS__MSG__PARAMETER_UPDATE_HPP_ <file_sep>/build/multi_rtd_interfaces/ament_cmake_core/package.cmake set(_AMENT_PACKAGE_NAME "multi_rtd_interfaces") set(multi_rtd_interfaces_VERSION "0.0.0") set(multi_rtd_interfaces_MAINTAINER "talbot330-red <<EMAIL>>") set(multi_rtd_interfaces_BUILD_DEPENDS "rosidl_default_generators" "std_msgs" "trajectory_msgs") set(multi_rtd_interfaces_BUILDTOOL_DEPENDS "ament_cmake") set(multi_rtd_interfaces_BUILD_EXPORT_DEPENDS "std_msgs" "trajectory_msgs") set(multi_rtd_interfaces_BUILDTOOL_EXPORT_DEPENDS ) set(multi_rtd_interfaces_EXEC_DEPENDS "rosidl_default_runtime" "std_msgs" "trajectory_msgs") set(multi_rtd_interfaces_TEST_DEPENDS "ament_lint_auto" "ament_lint_common") set(multi_rtd_interfaces_GROUP_DEPENDS ) set(multi_rtd_interfaces_MEMBER_OF_GROUPS "rosidl_interface_packages") set(multi_rtd_interfaces_DEPRECATED "") set(multi_rtd_interfaces_EXPORT_TAGS) list(APPEND multi_rtd_interfaces_EXPORT_TAGS "<build_type>ament_cmake</build_type>") <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_command_ack__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleCommandAck.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_COMMAND_ACK__STRUCT_H_ #define PX4_MSGS__MSG__VEHICLE_COMMAND_ACK__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'VEHICLE_RESULT_ACCEPTED'. enum { px4_msgs__msg__VehicleCommandAck__VEHICLE_RESULT_ACCEPTED = 0 }; /// Constant 'VEHICLE_RESULT_TEMPORARILY_REJECTED'. enum { px4_msgs__msg__VehicleCommandAck__VEHICLE_RESULT_TEMPORARILY_REJECTED = 1 }; /// Constant 'VEHICLE_RESULT_DENIED'. enum { px4_msgs__msg__VehicleCommandAck__VEHICLE_RESULT_DENIED = 2 }; /// Constant 'VEHICLE_RESULT_UNSUPPORTED'. enum { px4_msgs__msg__VehicleCommandAck__VEHICLE_RESULT_UNSUPPORTED = 3 }; /// Constant 'VEHICLE_RESULT_FAILED'. enum { px4_msgs__msg__VehicleCommandAck__VEHICLE_RESULT_FAILED = 4 }; /// Constant 'VEHICLE_RESULT_IN_PROGRESS'. enum { px4_msgs__msg__VehicleCommandAck__VEHICLE_RESULT_IN_PROGRESS = 5 }; /// Constant 'ARM_AUTH_DENIED_REASON_GENERIC'. enum { px4_msgs__msg__VehicleCommandAck__ARM_AUTH_DENIED_REASON_GENERIC = 0 }; /// Constant 'ARM_AUTH_DENIED_REASON_NONE'. enum { px4_msgs__msg__VehicleCommandAck__ARM_AUTH_DENIED_REASON_NONE = 1 }; /// Constant 'ARM_AUTH_DENIED_REASON_INVALID_WAYPOINT'. enum { px4_msgs__msg__VehicleCommandAck__ARM_AUTH_DENIED_REASON_INVALID_WAYPOINT = 2 }; /// Constant 'ARM_AUTH_DENIED_REASON_TIMEOUT'. enum { px4_msgs__msg__VehicleCommandAck__ARM_AUTH_DENIED_REASON_TIMEOUT = 3 }; /// Constant 'ARM_AUTH_DENIED_REASON_AIRSPACE_IN_USE'. enum { px4_msgs__msg__VehicleCommandAck__ARM_AUTH_DENIED_REASON_AIRSPACE_IN_USE = 4 }; /// Constant 'ARM_AUTH_DENIED_REASON_BAD_WEATHER'. enum { px4_msgs__msg__VehicleCommandAck__ARM_AUTH_DENIED_REASON_BAD_WEATHER = 5 }; /// Constant 'ORB_QUEUE_LENGTH'. enum { px4_msgs__msg__VehicleCommandAck__ORB_QUEUE_LENGTH = 4 }; // Struct defined in msg/VehicleCommandAck in the package px4_msgs. typedef struct px4_msgs__msg__VehicleCommandAck { uint64_t timestamp; uint32_t command; uint8_t result; bool from_external; uint8_t result_param1; int32_t result_param2; uint8_t target_system; uint8_t target_component; } px4_msgs__msg__VehicleCommandAck; // Struct for a sequence of px4_msgs__msg__VehicleCommandAck. typedef struct px4_msgs__msg__VehicleCommandAck__Sequence { px4_msgs__msg__VehicleCommandAck * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__VehicleCommandAck__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_COMMAND_ACK__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/control_allocator_status__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/ControlAllocatorStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__CONTROL_ALLOCATOR_STATUS__FUNCTIONS_H_ #define PX4_MSGS__MSG__CONTROL_ALLOCATOR_STATUS__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/control_allocator_status__struct.h" /// Initialize msg/ControlAllocatorStatus message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__ControlAllocatorStatus * )) before or use * px4_msgs__msg__ControlAllocatorStatus__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__ControlAllocatorStatus__init(px4_msgs__msg__ControlAllocatorStatus * msg); /// Finalize msg/ControlAllocatorStatus message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__ControlAllocatorStatus__fini(px4_msgs__msg__ControlAllocatorStatus * msg); /// Create msg/ControlAllocatorStatus message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__ControlAllocatorStatus__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__ControlAllocatorStatus * px4_msgs__msg__ControlAllocatorStatus__create(); /// Destroy msg/ControlAllocatorStatus message. /** * It calls * px4_msgs__msg__ControlAllocatorStatus__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__ControlAllocatorStatus__destroy(px4_msgs__msg__ControlAllocatorStatus * msg); /// Initialize array of msg/ControlAllocatorStatus messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__ControlAllocatorStatus__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__ControlAllocatorStatus__Sequence__init(px4_msgs__msg__ControlAllocatorStatus__Sequence * array, size_t size); /// Finalize array of msg/ControlAllocatorStatus messages. /** * It calls * px4_msgs__msg__ControlAllocatorStatus__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__ControlAllocatorStatus__Sequence__fini(px4_msgs__msg__ControlAllocatorStatus__Sequence * array); /// Create array of msg/ControlAllocatorStatus messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__ControlAllocatorStatus__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__ControlAllocatorStatus__Sequence * px4_msgs__msg__ControlAllocatorStatus__Sequence__create(size_t size); /// Destroy array of msg/ControlAllocatorStatus messages. /** * It calls * px4_msgs__msg__ControlAllocatorStatus__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__ControlAllocatorStatus__Sequence__destroy(px4_msgs__msg__ControlAllocatorStatus__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__CONTROL_ALLOCATOR_STATUS__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_selector_status__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/EstimatorSelectorStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/estimator_selector_status__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/estimator_selector_status__struct.h" #include "px4_msgs/msg/estimator_selector_status__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _EstimatorSelectorStatus__ros_msg_type = px4_msgs__msg__EstimatorSelectorStatus; static bool _EstimatorSelectorStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _EstimatorSelectorStatus__ros_msg_type * ros_message = static_cast<const _EstimatorSelectorStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: primary_instance { cdr << ros_message->primary_instance; } // Field name: instances_available { cdr << ros_message->instances_available; } // Field name: instance_changed_count { cdr << ros_message->instance_changed_count; } // Field name: last_instance_change { cdr << ros_message->last_instance_change; } // Field name: accel_device_id { cdr << ros_message->accel_device_id; } // Field name: baro_device_id { cdr << ros_message->baro_device_id; } // Field name: gyro_device_id { cdr << ros_message->gyro_device_id; } // Field name: mag_device_id { cdr << ros_message->mag_device_id; } // Field name: combined_test_ratio { size_t size = 9; auto array_ptr = ros_message->combined_test_ratio; cdr.serializeArray(array_ptr, size); } // Field name: relative_test_ratio { size_t size = 9; auto array_ptr = ros_message->relative_test_ratio; cdr.serializeArray(array_ptr, size); } // Field name: healthy { size_t size = 9; auto array_ptr = ros_message->healthy; cdr.serializeArray(array_ptr, size); } // Field name: accumulated_gyro_error { size_t size = 4; auto array_ptr = ros_message->accumulated_gyro_error; cdr.serializeArray(array_ptr, size); } // Field name: accumulated_accel_error { size_t size = 4; auto array_ptr = ros_message->accumulated_accel_error; cdr.serializeArray(array_ptr, size); } // Field name: gyro_fault_detected { cdr << (ros_message->gyro_fault_detected ? true : false); } // Field name: accel_fault_detected { cdr << (ros_message->accel_fault_detected ? true : false); } return true; } static bool _EstimatorSelectorStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _EstimatorSelectorStatus__ros_msg_type * ros_message = static_cast<_EstimatorSelectorStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: primary_instance { cdr >> ros_message->primary_instance; } // Field name: instances_available { cdr >> ros_message->instances_available; } // Field name: instance_changed_count { cdr >> ros_message->instance_changed_count; } // Field name: last_instance_change { cdr >> ros_message->last_instance_change; } // Field name: accel_device_id { cdr >> ros_message->accel_device_id; } // Field name: baro_device_id { cdr >> ros_message->baro_device_id; } // Field name: gyro_device_id { cdr >> ros_message->gyro_device_id; } // Field name: mag_device_id { cdr >> ros_message->mag_device_id; } // Field name: combined_test_ratio { size_t size = 9; auto array_ptr = ros_message->combined_test_ratio; cdr.deserializeArray(array_ptr, size); } // Field name: relative_test_ratio { size_t size = 9; auto array_ptr = ros_message->relative_test_ratio; cdr.deserializeArray(array_ptr, size); } // Field name: healthy { size_t size = 9; auto array_ptr = ros_message->healthy; for (size_t i = 0; i < size; ++i) { uint8_t tmp; cdr >> tmp; array_ptr[i] = tmp ? true : false; } } // Field name: accumulated_gyro_error { size_t size = 4; auto array_ptr = ros_message->accumulated_gyro_error; cdr.deserializeArray(array_ptr, size); } // Field name: accumulated_accel_error { size_t size = 4; auto array_ptr = ros_message->accumulated_accel_error; cdr.deserializeArray(array_ptr, size); } // Field name: gyro_fault_detected { uint8_t tmp; cdr >> tmp; ros_message->gyro_fault_detected = tmp ? true : false; } // Field name: accel_fault_detected { uint8_t tmp; cdr >> tmp; ros_message->accel_fault_detected = tmp ? true : false; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__EstimatorSelectorStatus( const void * untyped_ros_message, size_t current_alignment) { const _EstimatorSelectorStatus__ros_msg_type * ros_message = static_cast<const _EstimatorSelectorStatus__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name primary_instance { size_t item_size = sizeof(ros_message->primary_instance); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name instances_available { size_t item_size = sizeof(ros_message->instances_available); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name instance_changed_count { size_t item_size = sizeof(ros_message->instance_changed_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name last_instance_change { size_t item_size = sizeof(ros_message->last_instance_change); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name accel_device_id { size_t item_size = sizeof(ros_message->accel_device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name baro_device_id { size_t item_size = sizeof(ros_message->baro_device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gyro_device_id { size_t item_size = sizeof(ros_message->gyro_device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name mag_device_id { size_t item_size = sizeof(ros_message->mag_device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name combined_test_ratio { size_t array_size = 9; auto array_ptr = ros_message->combined_test_ratio; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name relative_test_ratio { size_t array_size = 9; auto array_ptr = ros_message->relative_test_ratio; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name healthy { size_t array_size = 9; auto array_ptr = ros_message->healthy; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name accumulated_gyro_error { size_t array_size = 4; auto array_ptr = ros_message->accumulated_gyro_error; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name accumulated_accel_error { size_t array_size = 4; auto array_ptr = ros_message->accumulated_accel_error; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gyro_fault_detected { size_t item_size = sizeof(ros_message->gyro_fault_detected); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name accel_fault_detected { size_t item_size = sizeof(ros_message->accel_fault_detected); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _EstimatorSelectorStatus__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__EstimatorSelectorStatus( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__EstimatorSelectorStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: primary_instance { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: instances_available { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: instance_changed_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: last_instance_change { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: accel_device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: baro_device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gyro_device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: mag_device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: combined_test_ratio { size_t array_size = 9; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: relative_test_ratio { size_t array_size = 9; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: healthy { size_t array_size = 9; current_alignment += array_size * sizeof(uint8_t); } // member: accumulated_gyro_error { size_t array_size = 4; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: accumulated_accel_error { size_t array_size = 4; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gyro_fault_detected { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: accel_fault_detected { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _EstimatorSelectorStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__EstimatorSelectorStatus( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_EstimatorSelectorStatus = { "px4_msgs::msg", "EstimatorSelectorStatus", _EstimatorSelectorStatus__cdr_serialize, _EstimatorSelectorStatus__cdr_deserialize, _EstimatorSelectorStatus__get_serialized_size, _EstimatorSelectorStatus__max_serialized_size }; static rosidl_message_type_support_t _EstimatorSelectorStatus__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_EstimatorSelectorStatus, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, EstimatorSelectorStatus)() { return &_EstimatorSelectorStatus__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/position_controller_status__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/PositionControllerStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/position_controller_status__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/position_controller_status__struct.h" #include "px4_msgs/msg/position_controller_status__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _PositionControllerStatus__ros_msg_type = px4_msgs__msg__PositionControllerStatus; static bool _PositionControllerStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _PositionControllerStatus__ros_msg_type * ros_message = static_cast<const _PositionControllerStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: nav_roll { cdr << ros_message->nav_roll; } // Field name: nav_pitch { cdr << ros_message->nav_pitch; } // Field name: nav_bearing { cdr << ros_message->nav_bearing; } // Field name: target_bearing { cdr << ros_message->target_bearing; } // Field name: xtrack_error { cdr << ros_message->xtrack_error; } // Field name: wp_dist { cdr << ros_message->wp_dist; } // Field name: acceptance_radius { cdr << ros_message->acceptance_radius; } // Field name: yaw_acceptance { cdr << ros_message->yaw_acceptance; } // Field name: altitude_acceptance { cdr << ros_message->altitude_acceptance; } // Field name: type { cdr << ros_message->type; } return true; } static bool _PositionControllerStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _PositionControllerStatus__ros_msg_type * ros_message = static_cast<_PositionControllerStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: nav_roll { cdr >> ros_message->nav_roll; } // Field name: nav_pitch { cdr >> ros_message->nav_pitch; } // Field name: nav_bearing { cdr >> ros_message->nav_bearing; } // Field name: target_bearing { cdr >> ros_message->target_bearing; } // Field name: xtrack_error { cdr >> ros_message->xtrack_error; } // Field name: wp_dist { cdr >> ros_message->wp_dist; } // Field name: acceptance_radius { cdr >> ros_message->acceptance_radius; } // Field name: yaw_acceptance { cdr >> ros_message->yaw_acceptance; } // Field name: altitude_acceptance { cdr >> ros_message->altitude_acceptance; } // Field name: type { cdr >> ros_message->type; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__PositionControllerStatus( const void * untyped_ros_message, size_t current_alignment) { const _PositionControllerStatus__ros_msg_type * ros_message = static_cast<const _PositionControllerStatus__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name nav_roll { size_t item_size = sizeof(ros_message->nav_roll); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name nav_pitch { size_t item_size = sizeof(ros_message->nav_pitch); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name nav_bearing { size_t item_size = sizeof(ros_message->nav_bearing); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name target_bearing { size_t item_size = sizeof(ros_message->target_bearing); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name xtrack_error { size_t item_size = sizeof(ros_message->xtrack_error); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name wp_dist { size_t item_size = sizeof(ros_message->wp_dist); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name acceptance_radius { size_t item_size = sizeof(ros_message->acceptance_radius); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name yaw_acceptance { size_t item_size = sizeof(ros_message->yaw_acceptance); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name altitude_acceptance { size_t item_size = sizeof(ros_message->altitude_acceptance); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name type { size_t item_size = sizeof(ros_message->type); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _PositionControllerStatus__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__PositionControllerStatus( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__PositionControllerStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: nav_roll { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: nav_pitch { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: nav_bearing { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: target_bearing { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: xtrack_error { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: wp_dist { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: acceptance_radius { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: yaw_acceptance { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: altitude_acceptance { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: type { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _PositionControllerStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__PositionControllerStatus( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_PositionControllerStatus = { "px4_msgs::msg", "PositionControllerStatus", _PositionControllerStatus__cdr_serialize, _PositionControllerStatus__cdr_deserialize, _PositionControllerStatus__get_serialized_size, _PositionControllerStatus__max_serialized_size }; static rosidl_message_type_support_t _PositionControllerStatus__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_PositionControllerStatus, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, PositionControllerStatus)() { return &_PositionControllerStatus__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/airspeed_wind__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/AirspeedWind.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/airspeed_wind__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/airspeed_wind__struct.h" #include "px4_msgs/msg/airspeed_wind__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _AirspeedWind__ros_msg_type = px4_msgs__msg__AirspeedWind; static bool _AirspeedWind__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _AirspeedWind__ros_msg_type * ros_message = static_cast<const _AirspeedWind__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: timestamp_sample { cdr << ros_message->timestamp_sample; } // Field name: windspeed_north { cdr << ros_message->windspeed_north; } // Field name: windspeed_east { cdr << ros_message->windspeed_east; } // Field name: variance_north { cdr << ros_message->variance_north; } // Field name: variance_east { cdr << ros_message->variance_east; } // Field name: tas_innov { cdr << ros_message->tas_innov; } // Field name: tas_innov_var { cdr << ros_message->tas_innov_var; } // Field name: tas_scale { cdr << ros_message->tas_scale; } // Field name: beta_innov { cdr << ros_message->beta_innov; } // Field name: beta_innov_var { cdr << ros_message->beta_innov_var; } // Field name: source { cdr << ros_message->source; } return true; } static bool _AirspeedWind__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _AirspeedWind__ros_msg_type * ros_message = static_cast<_AirspeedWind__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: timestamp_sample { cdr >> ros_message->timestamp_sample; } // Field name: windspeed_north { cdr >> ros_message->windspeed_north; } // Field name: windspeed_east { cdr >> ros_message->windspeed_east; } // Field name: variance_north { cdr >> ros_message->variance_north; } // Field name: variance_east { cdr >> ros_message->variance_east; } // Field name: tas_innov { cdr >> ros_message->tas_innov; } // Field name: tas_innov_var { cdr >> ros_message->tas_innov_var; } // Field name: tas_scale { cdr >> ros_message->tas_scale; } // Field name: beta_innov { cdr >> ros_message->beta_innov; } // Field name: beta_innov_var { cdr >> ros_message->beta_innov_var; } // Field name: source { cdr >> ros_message->source; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__AirspeedWind( const void * untyped_ros_message, size_t current_alignment) { const _AirspeedWind__ros_msg_type * ros_message = static_cast<const _AirspeedWind__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name timestamp_sample { size_t item_size = sizeof(ros_message->timestamp_sample); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name windspeed_north { size_t item_size = sizeof(ros_message->windspeed_north); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name windspeed_east { size_t item_size = sizeof(ros_message->windspeed_east); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name variance_north { size_t item_size = sizeof(ros_message->variance_north); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name variance_east { size_t item_size = sizeof(ros_message->variance_east); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name tas_innov { size_t item_size = sizeof(ros_message->tas_innov); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name tas_innov_var { size_t item_size = sizeof(ros_message->tas_innov_var); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name tas_scale { size_t item_size = sizeof(ros_message->tas_scale); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name beta_innov { size_t item_size = sizeof(ros_message->beta_innov); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name beta_innov_var { size_t item_size = sizeof(ros_message->beta_innov_var); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name source { size_t item_size = sizeof(ros_message->source); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _AirspeedWind__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__AirspeedWind( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__AirspeedWind( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: timestamp_sample { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: windspeed_north { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: windspeed_east { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: variance_north { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: variance_east { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: tas_innov { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: tas_innov_var { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: tas_scale { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: beta_innov { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: beta_innov_var { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: source { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _AirspeedWind__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__AirspeedWind( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_AirspeedWind = { "px4_msgs::msg", "AirspeedWind", _AirspeedWind__cdr_serialize, _AirspeedWind__cdr_deserialize, _AirspeedWind__get_serialized_size, _AirspeedWind__max_serialized_size }; static rosidl_message_type_support_t _AirspeedWind__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_AirspeedWind, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, AirspeedWind)() { return &_AirspeedWind__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_position_setpoint.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/PositionSetpoint.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_PositionSetpoint(type): """Metaclass of message 'PositionSetpoint'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'SETPOINT_TYPE_POSITION': 0, 'SETPOINT_TYPE_VELOCITY': 1, 'SETPOINT_TYPE_LOITER': 2, 'SETPOINT_TYPE_TAKEOFF': 3, 'SETPOINT_TYPE_LAND': 4, 'SETPOINT_TYPE_IDLE': 5, 'SETPOINT_TYPE_FOLLOW_TARGET': 6, 'VELOCITY_FRAME_LOCAL_NED': 1, 'VELOCITY_FRAME_BODY_NED': 8, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.PositionSetpoint') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__position_setpoint cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__position_setpoint cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__position_setpoint cls._TYPE_SUPPORT = module.type_support_msg__msg__position_setpoint cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__position_setpoint @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'SETPOINT_TYPE_POSITION': cls.__constants['SETPOINT_TYPE_POSITION'], 'SETPOINT_TYPE_VELOCITY': cls.__constants['SETPOINT_TYPE_VELOCITY'], 'SETPOINT_TYPE_LOITER': cls.__constants['SETPOINT_TYPE_LOITER'], 'SETPOINT_TYPE_TAKEOFF': cls.__constants['SETPOINT_TYPE_TAKEOFF'], 'SETPOINT_TYPE_LAND': cls.__constants['SETPOINT_TYPE_LAND'], 'SETPOINT_TYPE_IDLE': cls.__constants['SETPOINT_TYPE_IDLE'], 'SETPOINT_TYPE_FOLLOW_TARGET': cls.__constants['SETPOINT_TYPE_FOLLOW_TARGET'], 'VELOCITY_FRAME_LOCAL_NED': cls.__constants['VELOCITY_FRAME_LOCAL_NED'], 'VELOCITY_FRAME_BODY_NED': cls.__constants['VELOCITY_FRAME_BODY_NED'], } @property def SETPOINT_TYPE_POSITION(self): """Message constant 'SETPOINT_TYPE_POSITION'.""" return Metaclass_PositionSetpoint.__constants['SETPOINT_TYPE_POSITION'] @property def SETPOINT_TYPE_VELOCITY(self): """Message constant 'SETPOINT_TYPE_VELOCITY'.""" return Metaclass_PositionSetpoint.__constants['SETPOINT_TYPE_VELOCITY'] @property def SETPOINT_TYPE_LOITER(self): """Message constant 'SETPOINT_TYPE_LOITER'.""" return Metaclass_PositionSetpoint.__constants['SETPOINT_TYPE_LOITER'] @property def SETPOINT_TYPE_TAKEOFF(self): """Message constant 'SETPOINT_TYPE_TAKEOFF'.""" return Metaclass_PositionSetpoint.__constants['SETPOINT_TYPE_TAKEOFF'] @property def SETPOINT_TYPE_LAND(self): """Message constant 'SETPOINT_TYPE_LAND'.""" return Metaclass_PositionSetpoint.__constants['SETPOINT_TYPE_LAND'] @property def SETPOINT_TYPE_IDLE(self): """Message constant 'SETPOINT_TYPE_IDLE'.""" return Metaclass_PositionSetpoint.__constants['SETPOINT_TYPE_IDLE'] @property def SETPOINT_TYPE_FOLLOW_TARGET(self): """Message constant 'SETPOINT_TYPE_FOLLOW_TARGET'.""" return Metaclass_PositionSetpoint.__constants['SETPOINT_TYPE_FOLLOW_TARGET'] @property def VELOCITY_FRAME_LOCAL_NED(self): """Message constant 'VELOCITY_FRAME_LOCAL_NED'.""" return Metaclass_PositionSetpoint.__constants['VELOCITY_FRAME_LOCAL_NED'] @property def VELOCITY_FRAME_BODY_NED(self): """Message constant 'VELOCITY_FRAME_BODY_NED'.""" return Metaclass_PositionSetpoint.__constants['VELOCITY_FRAME_BODY_NED'] class PositionSetpoint(metaclass=Metaclass_PositionSetpoint): """ Message class 'PositionSetpoint'. Constants: SETPOINT_TYPE_POSITION SETPOINT_TYPE_VELOCITY SETPOINT_TYPE_LOITER SETPOINT_TYPE_TAKEOFF SETPOINT_TYPE_LAND SETPOINT_TYPE_IDLE SETPOINT_TYPE_FOLLOW_TARGET VELOCITY_FRAME_LOCAL_NED VELOCITY_FRAME_BODY_NED """ __slots__ = [ '_timestamp', '_valid', '_type', '_vx', '_vy', '_vz', '_velocity_valid', '_velocity_frame', '_alt_valid', '_lat', '_lon', '_alt', '_yaw', '_yaw_valid', '_yawspeed', '_yawspeed_valid', '_landing_gear', '_loiter_radius', '_loiter_direction', '_acceptance_radius', '_cruising_speed', '_cruising_throttle', '_disable_weather_vane', ] _fields_and_field_types = { 'timestamp': 'uint64', 'valid': 'boolean', 'type': 'uint8', 'vx': 'float', 'vy': 'float', 'vz': 'float', 'velocity_valid': 'boolean', 'velocity_frame': 'uint8', 'alt_valid': 'boolean', 'lat': 'double', 'lon': 'double', 'alt': 'float', 'yaw': 'float', 'yaw_valid': 'boolean', 'yawspeed': 'float', 'yawspeed_valid': 'boolean', 'landing_gear': 'int8', 'loiter_radius': 'float', 'loiter_direction': 'int8', 'acceptance_radius': 'float', 'cruising_speed': 'float', 'cruising_throttle': 'float', 'disable_weather_vane': 'boolean', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('double'), # noqa: E501 rosidl_parser.definition.BasicType('double'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('int8'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('int8'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.valid = kwargs.get('valid', bool()) self.type = kwargs.get('type', int()) self.vx = kwargs.get('vx', float()) self.vy = kwargs.get('vy', float()) self.vz = kwargs.get('vz', float()) self.velocity_valid = kwargs.get('velocity_valid', bool()) self.velocity_frame = kwargs.get('velocity_frame', int()) self.alt_valid = kwargs.get('alt_valid', bool()) self.lat = kwargs.get('lat', float()) self.lon = kwargs.get('lon', float()) self.alt = kwargs.get('alt', float()) self.yaw = kwargs.get('yaw', float()) self.yaw_valid = kwargs.get('yaw_valid', bool()) self.yawspeed = kwargs.get('yawspeed', float()) self.yawspeed_valid = kwargs.get('yawspeed_valid', bool()) self.landing_gear = kwargs.get('landing_gear', int()) self.loiter_radius = kwargs.get('loiter_radius', float()) self.loiter_direction = kwargs.get('loiter_direction', int()) self.acceptance_radius = kwargs.get('acceptance_radius', float()) self.cruising_speed = kwargs.get('cruising_speed', float()) self.cruising_throttle = kwargs.get('cruising_throttle', float()) self.disable_weather_vane = kwargs.get('disable_weather_vane', bool()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.valid != other.valid: return False if self.type != other.type: return False if self.vx != other.vx: return False if self.vy != other.vy: return False if self.vz != other.vz: return False if self.velocity_valid != other.velocity_valid: return False if self.velocity_frame != other.velocity_frame: return False if self.alt_valid != other.alt_valid: return False if self.lat != other.lat: return False if self.lon != other.lon: return False if self.alt != other.alt: return False if self.yaw != other.yaw: return False if self.yaw_valid != other.yaw_valid: return False if self.yawspeed != other.yawspeed: return False if self.yawspeed_valid != other.yawspeed_valid: return False if self.landing_gear != other.landing_gear: return False if self.loiter_radius != other.loiter_radius: return False if self.loiter_direction != other.loiter_direction: return False if self.acceptance_radius != other.acceptance_radius: return False if self.cruising_speed != other.cruising_speed: return False if self.cruising_throttle != other.cruising_throttle: return False if self.disable_weather_vane != other.disable_weather_vane: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def valid(self): """Message field 'valid'.""" return self._valid @valid.setter def valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'valid' field must be of type 'bool'" self._valid = value @property # noqa: A003 def type(self): """Message field 'type'.""" return self._type @type.setter # noqa: A003 def type(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'type' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'type' field must be an unsigned integer in [0, 255]" self._type = value @property def vx(self): """Message field 'vx'.""" return self._vx @vx.setter def vx(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'vx' field must be of type 'float'" self._vx = value @property def vy(self): """Message field 'vy'.""" return self._vy @vy.setter def vy(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'vy' field must be of type 'float'" self._vy = value @property def vz(self): """Message field 'vz'.""" return self._vz @vz.setter def vz(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'vz' field must be of type 'float'" self._vz = value @property def velocity_valid(self): """Message field 'velocity_valid'.""" return self._velocity_valid @velocity_valid.setter def velocity_valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'velocity_valid' field must be of type 'bool'" self._velocity_valid = value @property def velocity_frame(self): """Message field 'velocity_frame'.""" return self._velocity_frame @velocity_frame.setter def velocity_frame(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'velocity_frame' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'velocity_frame' field must be an unsigned integer in [0, 255]" self._velocity_frame = value @property def alt_valid(self): """Message field 'alt_valid'.""" return self._alt_valid @alt_valid.setter def alt_valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'alt_valid' field must be of type 'bool'" self._alt_valid = value @property def lat(self): """Message field 'lat'.""" return self._lat @lat.setter def lat(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'lat' field must be of type 'float'" self._lat = value @property def lon(self): """Message field 'lon'.""" return self._lon @lon.setter def lon(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'lon' field must be of type 'float'" self._lon = value @property def alt(self): """Message field 'alt'.""" return self._alt @alt.setter def alt(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'alt' field must be of type 'float'" self._alt = value @property def yaw(self): """Message field 'yaw'.""" return self._yaw @yaw.setter def yaw(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'yaw' field must be of type 'float'" self._yaw = value @property def yaw_valid(self): """Message field 'yaw_valid'.""" return self._yaw_valid @yaw_valid.setter def yaw_valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'yaw_valid' field must be of type 'bool'" self._yaw_valid = value @property def yawspeed(self): """Message field 'yawspeed'.""" return self._yawspeed @yawspeed.setter def yawspeed(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'yawspeed' field must be of type 'float'" self._yawspeed = value @property def yawspeed_valid(self): """Message field 'yawspeed_valid'.""" return self._yawspeed_valid @yawspeed_valid.setter def yawspeed_valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'yawspeed_valid' field must be of type 'bool'" self._yawspeed_valid = value @property def landing_gear(self): """Message field 'landing_gear'.""" return self._landing_gear @landing_gear.setter def landing_gear(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'landing_gear' field must be of type 'int'" assert value >= -128 and value < 128, \ "The 'landing_gear' field must be an integer in [-128, 127]" self._landing_gear = value @property def loiter_radius(self): """Message field 'loiter_radius'.""" return self._loiter_radius @loiter_radius.setter def loiter_radius(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'loiter_radius' field must be of type 'float'" self._loiter_radius = value @property def loiter_direction(self): """Message field 'loiter_direction'.""" return self._loiter_direction @loiter_direction.setter def loiter_direction(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'loiter_direction' field must be of type 'int'" assert value >= -128 and value < 128, \ "The 'loiter_direction' field must be an integer in [-128, 127]" self._loiter_direction = value @property def acceptance_radius(self): """Message field 'acceptance_radius'.""" return self._acceptance_radius @acceptance_radius.setter def acceptance_radius(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'acceptance_radius' field must be of type 'float'" self._acceptance_radius = value @property def cruising_speed(self): """Message field 'cruising_speed'.""" return self._cruising_speed @cruising_speed.setter def cruising_speed(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'cruising_speed' field must be of type 'float'" self._cruising_speed = value @property def cruising_throttle(self): """Message field 'cruising_throttle'.""" return self._cruising_throttle @cruising_throttle.setter def cruising_throttle(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'cruising_throttle' field must be of type 'float'" self._cruising_throttle = value @property def disable_weather_vane(self): """Message field 'disable_weather_vane'.""" return self._disable_weather_vane @disable_weather_vane.setter def disable_weather_vane(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'disable_weather_vane' field must be of type 'bool'" self._disable_weather_vane = value <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/position_controller_status__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/PositionControllerStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/position_controller_status__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__PositionControllerStatus__init(px4_msgs__msg__PositionControllerStatus * msg) { if (!msg) { return false; } // timestamp // nav_roll // nav_pitch // nav_bearing // target_bearing // xtrack_error // wp_dist // acceptance_radius // yaw_acceptance // altitude_acceptance // type return true; } void px4_msgs__msg__PositionControllerStatus__fini(px4_msgs__msg__PositionControllerStatus * msg) { if (!msg) { return; } // timestamp // nav_roll // nav_pitch // nav_bearing // target_bearing // xtrack_error // wp_dist // acceptance_radius // yaw_acceptance // altitude_acceptance // type } px4_msgs__msg__PositionControllerStatus * px4_msgs__msg__PositionControllerStatus__create() { px4_msgs__msg__PositionControllerStatus * msg = (px4_msgs__msg__PositionControllerStatus *)malloc(sizeof(px4_msgs__msg__PositionControllerStatus)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__PositionControllerStatus)); bool success = px4_msgs__msg__PositionControllerStatus__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__PositionControllerStatus__destroy(px4_msgs__msg__PositionControllerStatus * msg) { if (msg) { px4_msgs__msg__PositionControllerStatus__fini(msg); } free(msg); } bool px4_msgs__msg__PositionControllerStatus__Sequence__init(px4_msgs__msg__PositionControllerStatus__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__PositionControllerStatus * data = NULL; if (size) { data = (px4_msgs__msg__PositionControllerStatus *)calloc(size, sizeof(px4_msgs__msg__PositionControllerStatus)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__PositionControllerStatus__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__PositionControllerStatus__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__PositionControllerStatus__Sequence__fini(px4_msgs__msg__PositionControllerStatus__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__PositionControllerStatus__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__PositionControllerStatus__Sequence * px4_msgs__msg__PositionControllerStatus__Sequence__create(size_t size) { px4_msgs__msg__PositionControllerStatus__Sequence * array = (px4_msgs__msg__PositionControllerStatus__Sequence *)malloc(sizeof(px4_msgs__msg__PositionControllerStatus__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__PositionControllerStatus__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__PositionControllerStatus__Sequence__destroy(px4_msgs__msg__PositionControllerStatus__Sequence * array) { if (array) { px4_msgs__msg__PositionControllerStatus__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/rc_parameter_map.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__RC_PARAMETER_MAP_HPP_ #define PX4_MSGS__MSG__RC_PARAMETER_MAP_HPP_ #include "px4_msgs/msg/rc_parameter_map__struct.hpp" #include "px4_msgs/msg/rc_parameter_map__traits.hpp" #endif // PX4_MSGS__MSG__RC_PARAMETER_MAP_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/distance_sensor__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/DistanceSensor.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/distance_sensor__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__DistanceSensor__init(px4_msgs__msg__DistanceSensor * msg) { if (!msg) { return false; } // timestamp // device_id // min_distance // max_distance // current_distance // variance // signal_quality // type // h_fov // v_fov // q // orientation return true; } void px4_msgs__msg__DistanceSensor__fini(px4_msgs__msg__DistanceSensor * msg) { if (!msg) { return; } // timestamp // device_id // min_distance // max_distance // current_distance // variance // signal_quality // type // h_fov // v_fov // q // orientation } px4_msgs__msg__DistanceSensor * px4_msgs__msg__DistanceSensor__create() { px4_msgs__msg__DistanceSensor * msg = (px4_msgs__msg__DistanceSensor *)malloc(sizeof(px4_msgs__msg__DistanceSensor)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__DistanceSensor)); bool success = px4_msgs__msg__DistanceSensor__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__DistanceSensor__destroy(px4_msgs__msg__DistanceSensor * msg) { if (msg) { px4_msgs__msg__DistanceSensor__fini(msg); } free(msg); } bool px4_msgs__msg__DistanceSensor__Sequence__init(px4_msgs__msg__DistanceSensor__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__DistanceSensor * data = NULL; if (size) { data = (px4_msgs__msg__DistanceSensor *)calloc(size, sizeof(px4_msgs__msg__DistanceSensor)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__DistanceSensor__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__DistanceSensor__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__DistanceSensor__Sequence__fini(px4_msgs__msg__DistanceSensor__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__DistanceSensor__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__DistanceSensor__Sequence * px4_msgs__msg__DistanceSensor__Sequence__create(size_t size) { px4_msgs__msg__DistanceSensor__Sequence * array = (px4_msgs__msg__DistanceSensor__Sequence *)malloc(sizeof(px4_msgs__msg__DistanceSensor__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__DistanceSensor__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__DistanceSensor__Sequence__destroy(px4_msgs__msg__DistanceSensor__Sequence * array) { if (array) { px4_msgs__msg__DistanceSensor__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/gimbal_device_information__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/GimbalDeviceInformation.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/gimbal_device_information__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/gimbal_device_information__functions.h" #include "px4_msgs/msg/gimbal_device_information__struct.h" #ifdef __cplusplus extern "C" { #endif void GimbalDeviceInformation__rosidl_typesupport_introspection_c__GimbalDeviceInformation_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__GimbalDeviceInformation__init(message_memory); } void GimbalDeviceInformation__rosidl_typesupport_introspection_c__GimbalDeviceInformation_fini_function(void * message_memory) { px4_msgs__msg__GimbalDeviceInformation__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember GimbalDeviceInformation__rosidl_typesupport_introspection_c__GimbalDeviceInformation_message_member_array[16] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceInformation, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vendor_name", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message true, // is array 32, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceInformation, vendor_name), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "model_name", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message true, // is array 32, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceInformation, model_name), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "custom_name", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message true, // is array 32, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceInformation, custom_name), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "firmware_version", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceInformation, firmware_version), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "hardware_version", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceInformation, hardware_version), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "uid", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceInformation, uid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "cap_flags", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceInformation, cap_flags), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "custom_cap_flags", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT16, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceInformation, custom_cap_flags), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "roll_min", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceInformation, roll_min), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "roll_max", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceInformation, roll_max), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "pitch_min", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceInformation, pitch_min), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "pitch_max", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceInformation, pitch_max), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yaw_min", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceInformation, yaw_min), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yaw_max", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceInformation, yaw_max), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gimbal_device_compid", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__GimbalDeviceInformation, gimbal_device_compid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers GimbalDeviceInformation__rosidl_typesupport_introspection_c__GimbalDeviceInformation_message_members = { "px4_msgs__msg", // message namespace "GimbalDeviceInformation", // message name 16, // number of fields sizeof(px4_msgs__msg__GimbalDeviceInformation), GimbalDeviceInformation__rosidl_typesupport_introspection_c__GimbalDeviceInformation_message_member_array, // message members GimbalDeviceInformation__rosidl_typesupport_introspection_c__GimbalDeviceInformation_init_function, // function to initialize message memory (memory has to be allocated) GimbalDeviceInformation__rosidl_typesupport_introspection_c__GimbalDeviceInformation_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t GimbalDeviceInformation__rosidl_typesupport_introspection_c__GimbalDeviceInformation_message_type_support_handle = { 0, &GimbalDeviceInformation__rosidl_typesupport_introspection_c__GimbalDeviceInformation_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, GimbalDeviceInformation)() { if (!GimbalDeviceInformation__rosidl_typesupport_introspection_c__GimbalDeviceInformation_message_type_support_handle.typesupport_identifier) { GimbalDeviceInformation__rosidl_typesupport_introspection_c__GimbalDeviceInformation_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &GimbalDeviceInformation__rosidl_typesupport_introspection_c__GimbalDeviceInformation_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_accel_fifo__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/SensorAccelFifo.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__SENSOR_ACCEL_FIFO__STRUCT_H_ #define PX4_MSGS__MSG__SENSOR_ACCEL_FIFO__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/SensorAccelFifo in the package px4_msgs. typedef struct px4_msgs__msg__SensorAccelFifo { uint64_t timestamp; uint64_t timestamp_sample; uint32_t device_id; float dt; float scale; uint8_t samples; int16_t x[32]; int16_t y[32]; int16_t z[32]; } px4_msgs__msg__SensorAccelFifo; // Struct for a sequence of px4_msgs__msg__SensorAccelFifo. typedef struct px4_msgs__msg__SensorAccelFifo__Sequence { px4_msgs__msg__SensorAccelFifo * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__SensorAccelFifo__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__SENSOR_ACCEL_FIFO__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_gyro__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/SensorGyro.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/sensor_gyro__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__SensorGyro__init(px4_msgs__msg__SensorGyro * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // device_id // x // y // z // temperature // error_count // samples return true; } void px4_msgs__msg__SensorGyro__fini(px4_msgs__msg__SensorGyro * msg) { if (!msg) { return; } // timestamp // timestamp_sample // device_id // x // y // z // temperature // error_count // samples } px4_msgs__msg__SensorGyro * px4_msgs__msg__SensorGyro__create() { px4_msgs__msg__SensorGyro * msg = (px4_msgs__msg__SensorGyro *)malloc(sizeof(px4_msgs__msg__SensorGyro)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__SensorGyro)); bool success = px4_msgs__msg__SensorGyro__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__SensorGyro__destroy(px4_msgs__msg__SensorGyro * msg) { if (msg) { px4_msgs__msg__SensorGyro__fini(msg); } free(msg); } bool px4_msgs__msg__SensorGyro__Sequence__init(px4_msgs__msg__SensorGyro__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__SensorGyro * data = NULL; if (size) { data = (px4_msgs__msg__SensorGyro *)calloc(size, sizeof(px4_msgs__msg__SensorGyro)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__SensorGyro__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__SensorGyro__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__SensorGyro__Sequence__fini(px4_msgs__msg__SensorGyro__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__SensorGyro__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__SensorGyro__Sequence * px4_msgs__msg__SensorGyro__Sequence__create(size_t size) { px4_msgs__msg__SensorGyro__Sequence * array = (px4_msgs__msg__SensorGyro__Sequence *)malloc(sizeof(px4_msgs__msg__SensorGyro__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__SensorGyro__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__SensorGyro__Sequence__destroy(px4_msgs__msg__SensorGyro__Sequence * array) { if (array) { px4_msgs__msg__SensorGyro__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/debug_value__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/DebugValue.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/debug_value__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__DebugValue__init(px4_msgs__msg__DebugValue * msg) { if (!msg) { return false; } // timestamp // ind // value return true; } void px4_msgs__msg__DebugValue__fini(px4_msgs__msg__DebugValue * msg) { if (!msg) { return; } // timestamp // ind // value } px4_msgs__msg__DebugValue * px4_msgs__msg__DebugValue__create() { px4_msgs__msg__DebugValue * msg = (px4_msgs__msg__DebugValue *)malloc(sizeof(px4_msgs__msg__DebugValue)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__DebugValue)); bool success = px4_msgs__msg__DebugValue__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__DebugValue__destroy(px4_msgs__msg__DebugValue * msg) { if (msg) { px4_msgs__msg__DebugValue__fini(msg); } free(msg); } bool px4_msgs__msg__DebugValue__Sequence__init(px4_msgs__msg__DebugValue__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__DebugValue * data = NULL; if (size) { data = (px4_msgs__msg__DebugValue *)calloc(size, sizeof(px4_msgs__msg__DebugValue)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__DebugValue__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__DebugValue__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__DebugValue__Sequence__fini(px4_msgs__msg__DebugValue__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__DebugValue__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__DebugValue__Sequence * px4_msgs__msg__DebugValue__Sequence__create(size_t size) { px4_msgs__msg__DebugValue__Sequence * array = (px4_msgs__msg__DebugValue__Sequence *)malloc(sizeof(px4_msgs__msg__DebugValue__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__DebugValue__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__DebugValue__Sequence__destroy(px4_msgs__msg__DebugValue__Sequence * array) { if (array) { px4_msgs__msg__DebugValue__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_vehicle_imu_status.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/VehicleImuStatus.idl # generated code does not contain a copyright notice # Import statements for member types # Member 'accel_clipping' # Member 'mean_accel' # Member 'mean_gyro' import numpy # noqa: E402, I100 import rosidl_parser.definition # noqa: E402, I100 class Metaclass_VehicleImuStatus(type): """Metaclass of message 'VehicleImuStatus'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.VehicleImuStatus') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__vehicle_imu_status cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__vehicle_imu_status cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__vehicle_imu_status cls._TYPE_SUPPORT = module.type_support_msg__msg__vehicle_imu_status cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__vehicle_imu_status @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class VehicleImuStatus(metaclass=Metaclass_VehicleImuStatus): """Message class 'VehicleImuStatus'.""" __slots__ = [ '_timestamp', '_accel_device_id', '_gyro_device_id', '_accel_clipping', '_accel_error_count', '_gyro_error_count', '_accel_rate_hz', '_gyro_rate_hz', '_accel_raw_rate_hz', '_gyro_raw_rate_hz', '_accel_vibration_metric', '_gyro_vibration_metric', '_gyro_coning_vibration', '_mean_accel', '_mean_gyro', '_temperature_accel', '_temperature_gyro', ] _fields_and_field_types = { 'timestamp': 'uint64', 'accel_device_id': 'uint32', 'gyro_device_id': 'uint32', 'accel_clipping': 'uint32[3]', 'accel_error_count': 'uint32', 'gyro_error_count': 'uint32', 'accel_rate_hz': 'float', 'gyro_rate_hz': 'float', 'accel_raw_rate_hz': 'float', 'gyro_raw_rate_hz': 'float', 'accel_vibration_metric': 'float', 'gyro_vibration_metric': 'float', 'gyro_coning_vibration': 'float', 'mean_accel': 'float[3]', 'mean_gyro': 'float[3]', 'temperature_accel': 'float', 'temperature_gyro': 'float', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('uint32'), 3), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.accel_device_id = kwargs.get('accel_device_id', int()) self.gyro_device_id = kwargs.get('gyro_device_id', int()) if 'accel_clipping' not in kwargs: self.accel_clipping = numpy.zeros(3, dtype=numpy.uint32) else: self.accel_clipping = numpy.array(kwargs.get('accel_clipping'), dtype=numpy.uint32) assert self.accel_clipping.shape == (3, ) self.accel_error_count = kwargs.get('accel_error_count', int()) self.gyro_error_count = kwargs.get('gyro_error_count', int()) self.accel_rate_hz = kwargs.get('accel_rate_hz', float()) self.gyro_rate_hz = kwargs.get('gyro_rate_hz', float()) self.accel_raw_rate_hz = kwargs.get('accel_raw_rate_hz', float()) self.gyro_raw_rate_hz = kwargs.get('gyro_raw_rate_hz', float()) self.accel_vibration_metric = kwargs.get('accel_vibration_metric', float()) self.gyro_vibration_metric = kwargs.get('gyro_vibration_metric', float()) self.gyro_coning_vibration = kwargs.get('gyro_coning_vibration', float()) if 'mean_accel' not in kwargs: self.mean_accel = numpy.zeros(3, dtype=numpy.float32) else: self.mean_accel = numpy.array(kwargs.get('mean_accel'), dtype=numpy.float32) assert self.mean_accel.shape == (3, ) if 'mean_gyro' not in kwargs: self.mean_gyro = numpy.zeros(3, dtype=numpy.float32) else: self.mean_gyro = numpy.array(kwargs.get('mean_gyro'), dtype=numpy.float32) assert self.mean_gyro.shape == (3, ) self.temperature_accel = kwargs.get('temperature_accel', float()) self.temperature_gyro = kwargs.get('temperature_gyro', float()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.accel_device_id != other.accel_device_id: return False if self.gyro_device_id != other.gyro_device_id: return False if all(self.accel_clipping != other.accel_clipping): return False if self.accel_error_count != other.accel_error_count: return False if self.gyro_error_count != other.gyro_error_count: return False if self.accel_rate_hz != other.accel_rate_hz: return False if self.gyro_rate_hz != other.gyro_rate_hz: return False if self.accel_raw_rate_hz != other.accel_raw_rate_hz: return False if self.gyro_raw_rate_hz != other.gyro_raw_rate_hz: return False if self.accel_vibration_metric != other.accel_vibration_metric: return False if self.gyro_vibration_metric != other.gyro_vibration_metric: return False if self.gyro_coning_vibration != other.gyro_coning_vibration: return False if all(self.mean_accel != other.mean_accel): return False if all(self.mean_gyro != other.mean_gyro): return False if self.temperature_accel != other.temperature_accel: return False if self.temperature_gyro != other.temperature_gyro: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def accel_device_id(self): """Message field 'accel_device_id'.""" return self._accel_device_id @accel_device_id.setter def accel_device_id(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'accel_device_id' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'accel_device_id' field must be an unsigned integer in [0, 4294967295]" self._accel_device_id = value @property def gyro_device_id(self): """Message field 'gyro_device_id'.""" return self._gyro_device_id @gyro_device_id.setter def gyro_device_id(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'gyro_device_id' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'gyro_device_id' field must be an unsigned integer in [0, 4294967295]" self._gyro_device_id = value @property def accel_clipping(self): """Message field 'accel_clipping'.""" return self._accel_clipping @accel_clipping.setter def accel_clipping(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.uint32, \ "The 'accel_clipping' numpy.ndarray() must have the dtype of 'numpy.uint32'" assert value.size == 3, \ "The 'accel_clipping' numpy.ndarray() must have a size of 3" self._accel_clipping = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, int) for v in value) and all(val >= 0 and val < 4294967296 for val in value)), \ "The 'accel_clipping' field must be a set or sequence with length 3 and each value of type 'int' and each unsigned integer in [0, 4294967295]" self._accel_clipping = numpy.array(value, dtype=numpy.uint32) @property def accel_error_count(self): """Message field 'accel_error_count'.""" return self._accel_error_count @accel_error_count.setter def accel_error_count(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'accel_error_count' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'accel_error_count' field must be an unsigned integer in [0, 4294967295]" self._accel_error_count = value @property def gyro_error_count(self): """Message field 'gyro_error_count'.""" return self._gyro_error_count @gyro_error_count.setter def gyro_error_count(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'gyro_error_count' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'gyro_error_count' field must be an unsigned integer in [0, 4294967295]" self._gyro_error_count = value @property def accel_rate_hz(self): """Message field 'accel_rate_hz'.""" return self._accel_rate_hz @accel_rate_hz.setter def accel_rate_hz(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'accel_rate_hz' field must be of type 'float'" self._accel_rate_hz = value @property def gyro_rate_hz(self): """Message field 'gyro_rate_hz'.""" return self._gyro_rate_hz @gyro_rate_hz.setter def gyro_rate_hz(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'gyro_rate_hz' field must be of type 'float'" self._gyro_rate_hz = value @property def accel_raw_rate_hz(self): """Message field 'accel_raw_rate_hz'.""" return self._accel_raw_rate_hz @accel_raw_rate_hz.setter def accel_raw_rate_hz(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'accel_raw_rate_hz' field must be of type 'float'" self._accel_raw_rate_hz = value @property def gyro_raw_rate_hz(self): """Message field 'gyro_raw_rate_hz'.""" return self._gyro_raw_rate_hz @gyro_raw_rate_hz.setter def gyro_raw_rate_hz(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'gyro_raw_rate_hz' field must be of type 'float'" self._gyro_raw_rate_hz = value @property def accel_vibration_metric(self): """Message field 'accel_vibration_metric'.""" return self._accel_vibration_metric @accel_vibration_metric.setter def accel_vibration_metric(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'accel_vibration_metric' field must be of type 'float'" self._accel_vibration_metric = value @property def gyro_vibration_metric(self): """Message field 'gyro_vibration_metric'.""" return self._gyro_vibration_metric @gyro_vibration_metric.setter def gyro_vibration_metric(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'gyro_vibration_metric' field must be of type 'float'" self._gyro_vibration_metric = value @property def gyro_coning_vibration(self): """Message field 'gyro_coning_vibration'.""" return self._gyro_coning_vibration @gyro_coning_vibration.setter def gyro_coning_vibration(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'gyro_coning_vibration' field must be of type 'float'" self._gyro_coning_vibration = value @property def mean_accel(self): """Message field 'mean_accel'.""" return self._mean_accel @mean_accel.setter def mean_accel(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'mean_accel' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'mean_accel' numpy.ndarray() must have a size of 3" self._mean_accel = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'mean_accel' field must be a set or sequence with length 3 and each value of type 'float'" self._mean_accel = numpy.array(value, dtype=numpy.float32) @property def mean_gyro(self): """Message field 'mean_gyro'.""" return self._mean_gyro @mean_gyro.setter def mean_gyro(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'mean_gyro' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'mean_gyro' numpy.ndarray() must have a size of 3" self._mean_gyro = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'mean_gyro' field must be a set or sequence with length 3 and each value of type 'float'" self._mean_gyro = numpy.array(value, dtype=numpy.float32) @property def temperature_accel(self): """Message field 'temperature_accel'.""" return self._temperature_accel @temperature_accel.setter def temperature_accel(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'temperature_accel' field must be of type 'float'" self._temperature_accel = value @property def temperature_gyro(self): """Message field 'temperature_gyro'.""" return self._temperature_gyro @temperature_gyro.setter def temperature_gyro(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'temperature_gyro' field must be of type 'float'" self._temperature_gyro = value <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/power_monitor__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/PowerMonitor.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__POWER_MONITOR__FUNCTIONS_H_ #define PX4_MSGS__MSG__POWER_MONITOR__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/power_monitor__struct.h" /// Initialize msg/PowerMonitor message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__PowerMonitor * )) before or use * px4_msgs__msg__PowerMonitor__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__PowerMonitor__init(px4_msgs__msg__PowerMonitor * msg); /// Finalize msg/PowerMonitor message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__PowerMonitor__fini(px4_msgs__msg__PowerMonitor * msg); /// Create msg/PowerMonitor message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__PowerMonitor__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__PowerMonitor * px4_msgs__msg__PowerMonitor__create(); /// Destroy msg/PowerMonitor message. /** * It calls * px4_msgs__msg__PowerMonitor__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__PowerMonitor__destroy(px4_msgs__msg__PowerMonitor * msg); /// Initialize array of msg/PowerMonitor messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__PowerMonitor__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__PowerMonitor__Sequence__init(px4_msgs__msg__PowerMonitor__Sequence * array, size_t size); /// Finalize array of msg/PowerMonitor messages. /** * It calls * px4_msgs__msg__PowerMonitor__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__PowerMonitor__Sequence__fini(px4_msgs__msg__PowerMonitor__Sequence * array); /// Create array of msg/PowerMonitor messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__PowerMonitor__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__PowerMonitor__Sequence * px4_msgs__msg__PowerMonitor__Sequence__create(size_t size); /// Destroy array of msg/PowerMonitor messages. /** * It calls * px4_msgs__msg__PowerMonitor__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__PowerMonitor__Sequence__destroy(px4_msgs__msg__PowerMonitor__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__POWER_MONITOR__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/mc_virtual_attitude_setpoint__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/McVirtualAttitudeSetpoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__MC_VIRTUAL_ATTITUDE_SETPOINT__STRUCT_H_ #define PX4_MSGS__MSG__MC_VIRTUAL_ATTITUDE_SETPOINT__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'FLAPS_OFF'. enum { px4_msgs__msg__McVirtualAttitudeSetpoint__FLAPS_OFF = 0 }; /// Constant 'FLAPS_LAND'. enum { px4_msgs__msg__McVirtualAttitudeSetpoint__FLAPS_LAND = 1 }; /// Constant 'FLAPS_TAKEOFF'. enum { px4_msgs__msg__McVirtualAttitudeSetpoint__FLAPS_TAKEOFF = 2 }; // Struct defined in msg/McVirtualAttitudeSetpoint in the package px4_msgs. typedef struct px4_msgs__msg__McVirtualAttitudeSetpoint { uint64_t timestamp; float roll_body; float pitch_body; float yaw_body; float yaw_sp_move_rate; float q_d[4]; float thrust_body[3]; bool roll_reset_integral; bool pitch_reset_integral; bool yaw_reset_integral; bool fw_control_yaw; uint8_t apply_flaps; } px4_msgs__msg__McVirtualAttitudeSetpoint; // Struct for a sequence of px4_msgs__msg__McVirtualAttitudeSetpoint. typedef struct px4_msgs__msg__McVirtualAttitudeSetpoint__Sequence { px4_msgs__msg__McVirtualAttitudeSetpoint * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__McVirtualAttitudeSetpoint__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__MC_VIRTUAL_ATTITUDE_SETPOINT__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/orb_test__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/OrbTest.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/orb_test__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/orb_test__struct.h" #include "px4_msgs/msg/orb_test__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _OrbTest__ros_msg_type = px4_msgs__msg__OrbTest; static bool _OrbTest__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _OrbTest__ros_msg_type * ros_message = static_cast<const _OrbTest__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: val { cdr << ros_message->val; } return true; } static bool _OrbTest__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _OrbTest__ros_msg_type * ros_message = static_cast<_OrbTest__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: val { cdr >> ros_message->val; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__OrbTest( const void * untyped_ros_message, size_t current_alignment) { const _OrbTest__ros_msg_type * ros_message = static_cast<const _OrbTest__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name val { size_t item_size = sizeof(ros_message->val); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _OrbTest__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__OrbTest( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__OrbTest( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: val { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _OrbTest__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__OrbTest( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_OrbTest = { "px4_msgs::msg", "OrbTest", _OrbTest__cdr_serialize, _OrbTest__cdr_deserialize, _OrbTest__get_serialized_size, _OrbTest__max_serialized_size }; static rosidl_message_type_support_t _OrbTest__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_OrbTest, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, OrbTest)() { return &_OrbTest__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_telemetry_status.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/TelemetryStatus.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_TelemetryStatus(type): """Metaclass of message 'TelemetryStatus'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'LINK_TYPE_GENERIC': 0, 'LINK_TYPE_UBIQUITY_BULLET': 1, 'LINK_TYPE_WIRE': 2, 'LINK_TYPE_USB': 3, 'LINK_TYPE_IRIDIUM': 4, 'HEARTBEAT_TIMEOUT_US': 1500000, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.TelemetryStatus') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__telemetry_status cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__telemetry_status cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__telemetry_status cls._TYPE_SUPPORT = module.type_support_msg__msg__telemetry_status cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__telemetry_status @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'LINK_TYPE_GENERIC': cls.__constants['LINK_TYPE_GENERIC'], 'LINK_TYPE_UBIQUITY_BULLET': cls.__constants['LINK_TYPE_UBIQUITY_BULLET'], 'LINK_TYPE_WIRE': cls.__constants['LINK_TYPE_WIRE'], 'LINK_TYPE_USB': cls.__constants['LINK_TYPE_USB'], 'LINK_TYPE_IRIDIUM': cls.__constants['LINK_TYPE_IRIDIUM'], 'HEARTBEAT_TIMEOUT_US': cls.__constants['HEARTBEAT_TIMEOUT_US'], } @property def LINK_TYPE_GENERIC(self): """Message constant 'LINK_TYPE_GENERIC'.""" return Metaclass_TelemetryStatus.__constants['LINK_TYPE_GENERIC'] @property def LINK_TYPE_UBIQUITY_BULLET(self): """Message constant 'LINK_TYPE_UBIQUITY_BULLET'.""" return Metaclass_TelemetryStatus.__constants['LINK_TYPE_UBIQUITY_BULLET'] @property def LINK_TYPE_WIRE(self): """Message constant 'LINK_TYPE_WIRE'.""" return Metaclass_TelemetryStatus.__constants['LINK_TYPE_WIRE'] @property def LINK_TYPE_USB(self): """Message constant 'LINK_TYPE_USB'.""" return Metaclass_TelemetryStatus.__constants['LINK_TYPE_USB'] @property def LINK_TYPE_IRIDIUM(self): """Message constant 'LINK_TYPE_IRIDIUM'.""" return Metaclass_TelemetryStatus.__constants['LINK_TYPE_IRIDIUM'] @property def HEARTBEAT_TIMEOUT_US(self): """Message constant 'HEARTBEAT_TIMEOUT_US'.""" return Metaclass_TelemetryStatus.__constants['HEARTBEAT_TIMEOUT_US'] class TelemetryStatus(metaclass=Metaclass_TelemetryStatus): """ Message class 'TelemetryStatus'. Constants: LINK_TYPE_GENERIC LINK_TYPE_UBIQUITY_BULLET LINK_TYPE_WIRE LINK_TYPE_USB LINK_TYPE_IRIDIUM HEARTBEAT_TIMEOUT_US """ __slots__ = [ '_timestamp', '_type', '_mode', '_flow_control', '_forwarding', '_mavlink_v2', '_ftp', '_streams', '_data_rate', '_rate_multiplier', '_tx_rate_avg', '_tx_error_rate_avg', '_tx_message_count', '_tx_buffer_overruns', '_rx_rate_avg', '_rx_message_count', '_rx_message_count_supported', '_rx_message_lost_count', '_rx_buffer_overruns', '_rx_parse_errors', '_rx_packet_drop_count', '_rx_message_lost_rate', '_heartbeat_type_antenna_tracker', '_heartbeat_type_gcs', '_heartbeat_type_onboard_controller', '_heartbeat_type_gimbal', '_heartbeat_type_adsb', '_heartbeat_type_camera', '_heartbeat_component_telemetry_radio', '_heartbeat_component_log', '_heartbeat_component_osd', '_heartbeat_component_obstacle_avoidance', '_heartbeat_component_vio', '_heartbeat_component_pairing_manager', '_heartbeat_component_udp_bridge', '_heartbeat_component_uart_bridge', '_avoidance_system_healthy', ] _fields_and_field_types = { 'timestamp': 'uint64', 'type': 'uint8', 'mode': 'uint8', 'flow_control': 'boolean', 'forwarding': 'boolean', 'mavlink_v2': 'boolean', 'ftp': 'boolean', 'streams': 'uint8', 'data_rate': 'float', 'rate_multiplier': 'float', 'tx_rate_avg': 'float', 'tx_error_rate_avg': 'float', 'tx_message_count': 'uint32', 'tx_buffer_overruns': 'uint32', 'rx_rate_avg': 'float', 'rx_message_count': 'uint32', 'rx_message_count_supported': 'uint32', 'rx_message_lost_count': 'uint32', 'rx_buffer_overruns': 'uint32', 'rx_parse_errors': 'uint32', 'rx_packet_drop_count': 'uint32', 'rx_message_lost_rate': 'float', 'heartbeat_type_antenna_tracker': 'boolean', 'heartbeat_type_gcs': 'boolean', 'heartbeat_type_onboard_controller': 'boolean', 'heartbeat_type_gimbal': 'boolean', 'heartbeat_type_adsb': 'boolean', 'heartbeat_type_camera': 'boolean', 'heartbeat_component_telemetry_radio': 'boolean', 'heartbeat_component_log': 'boolean', 'heartbeat_component_osd': 'boolean', 'heartbeat_component_obstacle_avoidance': 'boolean', 'heartbeat_component_vio': 'boolean', 'heartbeat_component_pairing_manager': 'boolean', 'heartbeat_component_udp_bridge': 'boolean', 'heartbeat_component_uart_bridge': 'boolean', 'avoidance_system_healthy': 'boolean', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.type = kwargs.get('type', int()) self.mode = kwargs.get('mode', int()) self.flow_control = kwargs.get('flow_control', bool()) self.forwarding = kwargs.get('forwarding', bool()) self.mavlink_v2 = kwargs.get('mavlink_v2', bool()) self.ftp = kwargs.get('ftp', bool()) self.streams = kwargs.get('streams', int()) self.data_rate = kwargs.get('data_rate', float()) self.rate_multiplier = kwargs.get('rate_multiplier', float()) self.tx_rate_avg = kwargs.get('tx_rate_avg', float()) self.tx_error_rate_avg = kwargs.get('tx_error_rate_avg', float()) self.tx_message_count = kwargs.get('tx_message_count', int()) self.tx_buffer_overruns = kwargs.get('tx_buffer_overruns', int()) self.rx_rate_avg = kwargs.get('rx_rate_avg', float()) self.rx_message_count = kwargs.get('rx_message_count', int()) self.rx_message_count_supported = kwargs.get('rx_message_count_supported', int()) self.rx_message_lost_count = kwargs.get('rx_message_lost_count', int()) self.rx_buffer_overruns = kwargs.get('rx_buffer_overruns', int()) self.rx_parse_errors = kwargs.get('rx_parse_errors', int()) self.rx_packet_drop_count = kwargs.get('rx_packet_drop_count', int()) self.rx_message_lost_rate = kwargs.get('rx_message_lost_rate', float()) self.heartbeat_type_antenna_tracker = kwargs.get('heartbeat_type_antenna_tracker', bool()) self.heartbeat_type_gcs = kwargs.get('heartbeat_type_gcs', bool()) self.heartbeat_type_onboard_controller = kwargs.get('heartbeat_type_onboard_controller', bool()) self.heartbeat_type_gimbal = kwargs.get('heartbeat_type_gimbal', bool()) self.heartbeat_type_adsb = kwargs.get('heartbeat_type_adsb', bool()) self.heartbeat_type_camera = kwargs.get('heartbeat_type_camera', bool()) self.heartbeat_component_telemetry_radio = kwargs.get('heartbeat_component_telemetry_radio', bool()) self.heartbeat_component_log = kwargs.get('heartbeat_component_log', bool()) self.heartbeat_component_osd = kwargs.get('heartbeat_component_osd', bool()) self.heartbeat_component_obstacle_avoidance = kwargs.get('heartbeat_component_obstacle_avoidance', bool()) self.heartbeat_component_vio = kwargs.get('heartbeat_component_vio', bool()) self.heartbeat_component_pairing_manager = kwargs.get('heartbeat_component_pairing_manager', bool()) self.heartbeat_component_udp_bridge = kwargs.get('heartbeat_component_udp_bridge', bool()) self.heartbeat_component_uart_bridge = kwargs.get('heartbeat_component_uart_bridge', bool()) self.avoidance_system_healthy = kwargs.get('avoidance_system_healthy', bool()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.type != other.type: return False if self.mode != other.mode: return False if self.flow_control != other.flow_control: return False if self.forwarding != other.forwarding: return False if self.mavlink_v2 != other.mavlink_v2: return False if self.ftp != other.ftp: return False if self.streams != other.streams: return False if self.data_rate != other.data_rate: return False if self.rate_multiplier != other.rate_multiplier: return False if self.tx_rate_avg != other.tx_rate_avg: return False if self.tx_error_rate_avg != other.tx_error_rate_avg: return False if self.tx_message_count != other.tx_message_count: return False if self.tx_buffer_overruns != other.tx_buffer_overruns: return False if self.rx_rate_avg != other.rx_rate_avg: return False if self.rx_message_count != other.rx_message_count: return False if self.rx_message_count_supported != other.rx_message_count_supported: return False if self.rx_message_lost_count != other.rx_message_lost_count: return False if self.rx_buffer_overruns != other.rx_buffer_overruns: return False if self.rx_parse_errors != other.rx_parse_errors: return False if self.rx_packet_drop_count != other.rx_packet_drop_count: return False if self.rx_message_lost_rate != other.rx_message_lost_rate: return False if self.heartbeat_type_antenna_tracker != other.heartbeat_type_antenna_tracker: return False if self.heartbeat_type_gcs != other.heartbeat_type_gcs: return False if self.heartbeat_type_onboard_controller != other.heartbeat_type_onboard_controller: return False if self.heartbeat_type_gimbal != other.heartbeat_type_gimbal: return False if self.heartbeat_type_adsb != other.heartbeat_type_adsb: return False if self.heartbeat_type_camera != other.heartbeat_type_camera: return False if self.heartbeat_component_telemetry_radio != other.heartbeat_component_telemetry_radio: return False if self.heartbeat_component_log != other.heartbeat_component_log: return False if self.heartbeat_component_osd != other.heartbeat_component_osd: return False if self.heartbeat_component_obstacle_avoidance != other.heartbeat_component_obstacle_avoidance: return False if self.heartbeat_component_vio != other.heartbeat_component_vio: return False if self.heartbeat_component_pairing_manager != other.heartbeat_component_pairing_manager: return False if self.heartbeat_component_udp_bridge != other.heartbeat_component_udp_bridge: return False if self.heartbeat_component_uart_bridge != other.heartbeat_component_uart_bridge: return False if self.avoidance_system_healthy != other.avoidance_system_healthy: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property # noqa: A003 def type(self): """Message field 'type'.""" return self._type @type.setter # noqa: A003 def type(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'type' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'type' field must be an unsigned integer in [0, 255]" self._type = value @property def mode(self): """Message field 'mode'.""" return self._mode @mode.setter def mode(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'mode' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'mode' field must be an unsigned integer in [0, 255]" self._mode = value @property def flow_control(self): """Message field 'flow_control'.""" return self._flow_control @flow_control.setter def flow_control(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'flow_control' field must be of type 'bool'" self._flow_control = value @property def forwarding(self): """Message field 'forwarding'.""" return self._forwarding @forwarding.setter def forwarding(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'forwarding' field must be of type 'bool'" self._forwarding = value @property def mavlink_v2(self): """Message field 'mavlink_v2'.""" return self._mavlink_v2 @mavlink_v2.setter def mavlink_v2(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'mavlink_v2' field must be of type 'bool'" self._mavlink_v2 = value @property def ftp(self): """Message field 'ftp'.""" return self._ftp @ftp.setter def ftp(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'ftp' field must be of type 'bool'" self._ftp = value @property def streams(self): """Message field 'streams'.""" return self._streams @streams.setter def streams(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'streams' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'streams' field must be an unsigned integer in [0, 255]" self._streams = value @property def data_rate(self): """Message field 'data_rate'.""" return self._data_rate @data_rate.setter def data_rate(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'data_rate' field must be of type 'float'" self._data_rate = value @property def rate_multiplier(self): """Message field 'rate_multiplier'.""" return self._rate_multiplier @rate_multiplier.setter def rate_multiplier(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'rate_multiplier' field must be of type 'float'" self._rate_multiplier = value @property def tx_rate_avg(self): """Message field 'tx_rate_avg'.""" return self._tx_rate_avg @tx_rate_avg.setter def tx_rate_avg(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'tx_rate_avg' field must be of type 'float'" self._tx_rate_avg = value @property def tx_error_rate_avg(self): """Message field 'tx_error_rate_avg'.""" return self._tx_error_rate_avg @tx_error_rate_avg.setter def tx_error_rate_avg(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'tx_error_rate_avg' field must be of type 'float'" self._tx_error_rate_avg = value @property def tx_message_count(self): """Message field 'tx_message_count'.""" return self._tx_message_count @tx_message_count.setter def tx_message_count(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'tx_message_count' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'tx_message_count' field must be an unsigned integer in [0, 4294967295]" self._tx_message_count = value @property def tx_buffer_overruns(self): """Message field 'tx_buffer_overruns'.""" return self._tx_buffer_overruns @tx_buffer_overruns.setter def tx_buffer_overruns(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'tx_buffer_overruns' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'tx_buffer_overruns' field must be an unsigned integer in [0, 4294967295]" self._tx_buffer_overruns = value @property def rx_rate_avg(self): """Message field 'rx_rate_avg'.""" return self._rx_rate_avg @rx_rate_avg.setter def rx_rate_avg(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'rx_rate_avg' field must be of type 'float'" self._rx_rate_avg = value @property def rx_message_count(self): """Message field 'rx_message_count'.""" return self._rx_message_count @rx_message_count.setter def rx_message_count(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'rx_message_count' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'rx_message_count' field must be an unsigned integer in [0, 4294967295]" self._rx_message_count = value @property def rx_message_count_supported(self): """Message field 'rx_message_count_supported'.""" return self._rx_message_count_supported @rx_message_count_supported.setter def rx_message_count_supported(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'rx_message_count_supported' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'rx_message_count_supported' field must be an unsigned integer in [0, 4294967295]" self._rx_message_count_supported = value @property def rx_message_lost_count(self): """Message field 'rx_message_lost_count'.""" return self._rx_message_lost_count @rx_message_lost_count.setter def rx_message_lost_count(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'rx_message_lost_count' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'rx_message_lost_count' field must be an unsigned integer in [0, 4294967295]" self._rx_message_lost_count = value @property def rx_buffer_overruns(self): """Message field 'rx_buffer_overruns'.""" return self._rx_buffer_overruns @rx_buffer_overruns.setter def rx_buffer_overruns(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'rx_buffer_overruns' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'rx_buffer_overruns' field must be an unsigned integer in [0, 4294967295]" self._rx_buffer_overruns = value @property def rx_parse_errors(self): """Message field 'rx_parse_errors'.""" return self._rx_parse_errors @rx_parse_errors.setter def rx_parse_errors(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'rx_parse_errors' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'rx_parse_errors' field must be an unsigned integer in [0, 4294967295]" self._rx_parse_errors = value @property def rx_packet_drop_count(self): """Message field 'rx_packet_drop_count'.""" return self._rx_packet_drop_count @rx_packet_drop_count.setter def rx_packet_drop_count(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'rx_packet_drop_count' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'rx_packet_drop_count' field must be an unsigned integer in [0, 4294967295]" self._rx_packet_drop_count = value @property def rx_message_lost_rate(self): """Message field 'rx_message_lost_rate'.""" return self._rx_message_lost_rate @rx_message_lost_rate.setter def rx_message_lost_rate(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'rx_message_lost_rate' field must be of type 'float'" self._rx_message_lost_rate = value @property def heartbeat_type_antenna_tracker(self): """Message field 'heartbeat_type_antenna_tracker'.""" return self._heartbeat_type_antenna_tracker @heartbeat_type_antenna_tracker.setter def heartbeat_type_antenna_tracker(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'heartbeat_type_antenna_tracker' field must be of type 'bool'" self._heartbeat_type_antenna_tracker = value @property def heartbeat_type_gcs(self): """Message field 'heartbeat_type_gcs'.""" return self._heartbeat_type_gcs @heartbeat_type_gcs.setter def heartbeat_type_gcs(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'heartbeat_type_gcs' field must be of type 'bool'" self._heartbeat_type_gcs = value @property def heartbeat_type_onboard_controller(self): """Message field 'heartbeat_type_onboard_controller'.""" return self._heartbeat_type_onboard_controller @heartbeat_type_onboard_controller.setter def heartbeat_type_onboard_controller(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'heartbeat_type_onboard_controller' field must be of type 'bool'" self._heartbeat_type_onboard_controller = value @property def heartbeat_type_gimbal(self): """Message field 'heartbeat_type_gimbal'.""" return self._heartbeat_type_gimbal @heartbeat_type_gimbal.setter def heartbeat_type_gimbal(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'heartbeat_type_gimbal' field must be of type 'bool'" self._heartbeat_type_gimbal = value @property def heartbeat_type_adsb(self): """Message field 'heartbeat_type_adsb'.""" return self._heartbeat_type_adsb @heartbeat_type_adsb.setter def heartbeat_type_adsb(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'heartbeat_type_adsb' field must be of type 'bool'" self._heartbeat_type_adsb = value @property def heartbeat_type_camera(self): """Message field 'heartbeat_type_camera'.""" return self._heartbeat_type_camera @heartbeat_type_camera.setter def heartbeat_type_camera(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'heartbeat_type_camera' field must be of type 'bool'" self._heartbeat_type_camera = value @property def heartbeat_component_telemetry_radio(self): """Message field 'heartbeat_component_telemetry_radio'.""" return self._heartbeat_component_telemetry_radio @heartbeat_component_telemetry_radio.setter def heartbeat_component_telemetry_radio(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'heartbeat_component_telemetry_radio' field must be of type 'bool'" self._heartbeat_component_telemetry_radio = value @property def heartbeat_component_log(self): """Message field 'heartbeat_component_log'.""" return self._heartbeat_component_log @heartbeat_component_log.setter def heartbeat_component_log(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'heartbeat_component_log' field must be of type 'bool'" self._heartbeat_component_log = value @property def heartbeat_component_osd(self): """Message field 'heartbeat_component_osd'.""" return self._heartbeat_component_osd @heartbeat_component_osd.setter def heartbeat_component_osd(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'heartbeat_component_osd' field must be of type 'bool'" self._heartbeat_component_osd = value @property def heartbeat_component_obstacle_avoidance(self): """Message field 'heartbeat_component_obstacle_avoidance'.""" return self._heartbeat_component_obstacle_avoidance @heartbeat_component_obstacle_avoidance.setter def heartbeat_component_obstacle_avoidance(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'heartbeat_component_obstacle_avoidance' field must be of type 'bool'" self._heartbeat_component_obstacle_avoidance = value @property def heartbeat_component_vio(self): """Message field 'heartbeat_component_vio'.""" return self._heartbeat_component_vio @heartbeat_component_vio.setter def heartbeat_component_vio(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'heartbeat_component_vio' field must be of type 'bool'" self._heartbeat_component_vio = value @property def heartbeat_component_pairing_manager(self): """Message field 'heartbeat_component_pairing_manager'.""" return self._heartbeat_component_pairing_manager @heartbeat_component_pairing_manager.setter def heartbeat_component_pairing_manager(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'heartbeat_component_pairing_manager' field must be of type 'bool'" self._heartbeat_component_pairing_manager = value @property def heartbeat_component_udp_bridge(self): """Message field 'heartbeat_component_udp_bridge'.""" return self._heartbeat_component_udp_bridge @heartbeat_component_udp_bridge.setter def heartbeat_component_udp_bridge(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'heartbeat_component_udp_bridge' field must be of type 'bool'" self._heartbeat_component_udp_bridge = value @property def heartbeat_component_uart_bridge(self): """Message field 'heartbeat_component_uart_bridge'.""" return self._heartbeat_component_uart_bridge @heartbeat_component_uart_bridge.setter def heartbeat_component_uart_bridge(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'heartbeat_component_uart_bridge' field must be of type 'bool'" self._heartbeat_component_uart_bridge = value @property def avoidance_system_healthy(self): """Message field 'avoidance_system_healthy'.""" return self._avoidance_system_healthy @avoidance_system_healthy.setter def avoidance_system_healthy(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'avoidance_system_healthy' field must be of type 'bool'" self._avoidance_system_healthy = value <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_sensor_gps.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/SensorGps.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_SensorGps(type): """Metaclass of message 'SensorGps'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.SensorGps') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__sensor_gps cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__sensor_gps cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__sensor_gps cls._TYPE_SUPPORT = module.type_support_msg__msg__sensor_gps cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__sensor_gps @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class SensorGps(metaclass=Metaclass_SensorGps): """Message class 'SensorGps'.""" __slots__ = [ '_timestamp', '_device_id', '_lat', '_lon', '_alt', '_alt_ellipsoid', '_s_variance_m_s', '_c_variance_rad', '_fix_type', '_eph', '_epv', '_hdop', '_vdop', '_noise_per_ms', '_automatic_gain_control', '_jamming_indicator', '_jamming_state', '_vel_m_s', '_vel_n_m_s', '_vel_e_m_s', '_vel_d_m_s', '_cog_rad', '_vel_ned_valid', '_timestamp_time_relative', '_time_utc_usec', '_satellites_used', '_heading', '_heading_offset', ] _fields_and_field_types = { 'timestamp': 'uint64', 'device_id': 'uint32', 'lat': 'int32', 'lon': 'int32', 'alt': 'int32', 'alt_ellipsoid': 'int32', 's_variance_m_s': 'float', 'c_variance_rad': 'float', 'fix_type': 'uint8', 'eph': 'float', 'epv': 'float', 'hdop': 'float', 'vdop': 'float', 'noise_per_ms': 'int32', 'automatic_gain_control': 'uint16', 'jamming_indicator': 'int32', 'jamming_state': 'uint8', 'vel_m_s': 'float', 'vel_n_m_s': 'float', 'vel_e_m_s': 'float', 'vel_d_m_s': 'float', 'cog_rad': 'float', 'vel_ned_valid': 'boolean', 'timestamp_time_relative': 'int32', 'time_utc_usec': 'uint64', 'satellites_used': 'uint8', 'heading': 'float', 'heading_offset': 'float', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('int32'), # noqa: E501 rosidl_parser.definition.BasicType('int32'), # noqa: E501 rosidl_parser.definition.BasicType('int32'), # noqa: E501 rosidl_parser.definition.BasicType('int32'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('int32'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('int32'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('int32'), # noqa: E501 rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.device_id = kwargs.get('device_id', int()) self.lat = kwargs.get('lat', int()) self.lon = kwargs.get('lon', int()) self.alt = kwargs.get('alt', int()) self.alt_ellipsoid = kwargs.get('alt_ellipsoid', int()) self.s_variance_m_s = kwargs.get('s_variance_m_s', float()) self.c_variance_rad = kwargs.get('c_variance_rad', float()) self.fix_type = kwargs.get('fix_type', int()) self.eph = kwargs.get('eph', float()) self.epv = kwargs.get('epv', float()) self.hdop = kwargs.get('hdop', float()) self.vdop = kwargs.get('vdop', float()) self.noise_per_ms = kwargs.get('noise_per_ms', int()) self.automatic_gain_control = kwargs.get('automatic_gain_control', int()) self.jamming_indicator = kwargs.get('jamming_indicator', int()) self.jamming_state = kwargs.get('jamming_state', int()) self.vel_m_s = kwargs.get('vel_m_s', float()) self.vel_n_m_s = kwargs.get('vel_n_m_s', float()) self.vel_e_m_s = kwargs.get('vel_e_m_s', float()) self.vel_d_m_s = kwargs.get('vel_d_m_s', float()) self.cog_rad = kwargs.get('cog_rad', float()) self.vel_ned_valid = kwargs.get('vel_ned_valid', bool()) self.timestamp_time_relative = kwargs.get('timestamp_time_relative', int()) self.time_utc_usec = kwargs.get('time_utc_usec', int()) self.satellites_used = kwargs.get('satellites_used', int()) self.heading = kwargs.get('heading', float()) self.heading_offset = kwargs.get('heading_offset', float()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.device_id != other.device_id: return False if self.lat != other.lat: return False if self.lon != other.lon: return False if self.alt != other.alt: return False if self.alt_ellipsoid != other.alt_ellipsoid: return False if self.s_variance_m_s != other.s_variance_m_s: return False if self.c_variance_rad != other.c_variance_rad: return False if self.fix_type != other.fix_type: return False if self.eph != other.eph: return False if self.epv != other.epv: return False if self.hdop != other.hdop: return False if self.vdop != other.vdop: return False if self.noise_per_ms != other.noise_per_ms: return False if self.automatic_gain_control != other.automatic_gain_control: return False if self.jamming_indicator != other.jamming_indicator: return False if self.jamming_state != other.jamming_state: return False if self.vel_m_s != other.vel_m_s: return False if self.vel_n_m_s != other.vel_n_m_s: return False if self.vel_e_m_s != other.vel_e_m_s: return False if self.vel_d_m_s != other.vel_d_m_s: return False if self.cog_rad != other.cog_rad: return False if self.vel_ned_valid != other.vel_ned_valid: return False if self.timestamp_time_relative != other.timestamp_time_relative: return False if self.time_utc_usec != other.time_utc_usec: return False if self.satellites_used != other.satellites_used: return False if self.heading != other.heading: return False if self.heading_offset != other.heading_offset: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def device_id(self): """Message field 'device_id'.""" return self._device_id @device_id.setter def device_id(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'device_id' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'device_id' field must be an unsigned integer in [0, 4294967295]" self._device_id = value @property def lat(self): """Message field 'lat'.""" return self._lat @lat.setter def lat(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'lat' field must be of type 'int'" assert value >= -2147483648 and value < 2147483648, \ "The 'lat' field must be an integer in [-2147483648, 2147483647]" self._lat = value @property def lon(self): """Message field 'lon'.""" return self._lon @lon.setter def lon(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'lon' field must be of type 'int'" assert value >= -2147483648 and value < 2147483648, \ "The 'lon' field must be an integer in [-2147483648, 2147483647]" self._lon = value @property def alt(self): """Message field 'alt'.""" return self._alt @alt.setter def alt(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'alt' field must be of type 'int'" assert value >= -2147483648 and value < 2147483648, \ "The 'alt' field must be an integer in [-2147483648, 2147483647]" self._alt = value @property def alt_ellipsoid(self): """Message field 'alt_ellipsoid'.""" return self._alt_ellipsoid @alt_ellipsoid.setter def alt_ellipsoid(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'alt_ellipsoid' field must be of type 'int'" assert value >= -2147483648 and value < 2147483648, \ "The 'alt_ellipsoid' field must be an integer in [-2147483648, 2147483647]" self._alt_ellipsoid = value @property def s_variance_m_s(self): """Message field 's_variance_m_s'.""" return self._s_variance_m_s @s_variance_m_s.setter def s_variance_m_s(self, value): if __debug__: assert \ isinstance(value, float), \ "The 's_variance_m_s' field must be of type 'float'" self._s_variance_m_s = value @property def c_variance_rad(self): """Message field 'c_variance_rad'.""" return self._c_variance_rad @c_variance_rad.setter def c_variance_rad(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'c_variance_rad' field must be of type 'float'" self._c_variance_rad = value @property def fix_type(self): """Message field 'fix_type'.""" return self._fix_type @fix_type.setter def fix_type(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'fix_type' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'fix_type' field must be an unsigned integer in [0, 255]" self._fix_type = value @property def eph(self): """Message field 'eph'.""" return self._eph @eph.setter def eph(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'eph' field must be of type 'float'" self._eph = value @property def epv(self): """Message field 'epv'.""" return self._epv @epv.setter def epv(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'epv' field must be of type 'float'" self._epv = value @property def hdop(self): """Message field 'hdop'.""" return self._hdop @hdop.setter def hdop(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'hdop' field must be of type 'float'" self._hdop = value @property def vdop(self): """Message field 'vdop'.""" return self._vdop @vdop.setter def vdop(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'vdop' field must be of type 'float'" self._vdop = value @property def noise_per_ms(self): """Message field 'noise_per_ms'.""" return self._noise_per_ms @noise_per_ms.setter def noise_per_ms(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'noise_per_ms' field must be of type 'int'" assert value >= -2147483648 and value < 2147483648, \ "The 'noise_per_ms' field must be an integer in [-2147483648, 2147483647]" self._noise_per_ms = value @property def automatic_gain_control(self): """Message field 'automatic_gain_control'.""" return self._automatic_gain_control @automatic_gain_control.setter def automatic_gain_control(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'automatic_gain_control' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'automatic_gain_control' field must be an unsigned integer in [0, 65535]" self._automatic_gain_control = value @property def jamming_indicator(self): """Message field 'jamming_indicator'.""" return self._jamming_indicator @jamming_indicator.setter def jamming_indicator(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'jamming_indicator' field must be of type 'int'" assert value >= -2147483648 and value < 2147483648, \ "The 'jamming_indicator' field must be an integer in [-2147483648, 2147483647]" self._jamming_indicator = value @property def jamming_state(self): """Message field 'jamming_state'.""" return self._jamming_state @jamming_state.setter def jamming_state(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'jamming_state' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'jamming_state' field must be an unsigned integer in [0, 255]" self._jamming_state = value @property def vel_m_s(self): """Message field 'vel_m_s'.""" return self._vel_m_s @vel_m_s.setter def vel_m_s(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'vel_m_s' field must be of type 'float'" self._vel_m_s = value @property def vel_n_m_s(self): """Message field 'vel_n_m_s'.""" return self._vel_n_m_s @vel_n_m_s.setter def vel_n_m_s(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'vel_n_m_s' field must be of type 'float'" self._vel_n_m_s = value @property def vel_e_m_s(self): """Message field 'vel_e_m_s'.""" return self._vel_e_m_s @vel_e_m_s.setter def vel_e_m_s(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'vel_e_m_s' field must be of type 'float'" self._vel_e_m_s = value @property def vel_d_m_s(self): """Message field 'vel_d_m_s'.""" return self._vel_d_m_s @vel_d_m_s.setter def vel_d_m_s(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'vel_d_m_s' field must be of type 'float'" self._vel_d_m_s = value @property def cog_rad(self): """Message field 'cog_rad'.""" return self._cog_rad @cog_rad.setter def cog_rad(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'cog_rad' field must be of type 'float'" self._cog_rad = value @property def vel_ned_valid(self): """Message field 'vel_ned_valid'.""" return self._vel_ned_valid @vel_ned_valid.setter def vel_ned_valid(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'vel_ned_valid' field must be of type 'bool'" self._vel_ned_valid = value @property def timestamp_time_relative(self): """Message field 'timestamp_time_relative'.""" return self._timestamp_time_relative @timestamp_time_relative.setter def timestamp_time_relative(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp_time_relative' field must be of type 'int'" assert value >= -2147483648 and value < 2147483648, \ "The 'timestamp_time_relative' field must be an integer in [-2147483648, 2147483647]" self._timestamp_time_relative = value @property def time_utc_usec(self): """Message field 'time_utc_usec'.""" return self._time_utc_usec @time_utc_usec.setter def time_utc_usec(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'time_utc_usec' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'time_utc_usec' field must be an unsigned integer in [0, 18446744073709551615]" self._time_utc_usec = value @property def satellites_used(self): """Message field 'satellites_used'.""" return self._satellites_used @satellites_used.setter def satellites_used(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'satellites_used' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'satellites_used' field must be an unsigned integer in [0, 255]" self._satellites_used = value @property def heading(self): """Message field 'heading'.""" return self._heading @heading.setter def heading(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'heading' field must be of type 'float'" self._heading = value @property def heading_offset(self): """Message field 'heading_offset'.""" return self._heading_offset @heading_offset.setter def heading_offset(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'heading_offset' field must be of type 'float'" self._heading_offset = value <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/vehicle_imu_status__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/VehicleImuStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_imu_status__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/vehicle_imu_status__struct.h" #include "px4_msgs/msg/vehicle_imu_status__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _VehicleImuStatus__ros_msg_type = px4_msgs__msg__VehicleImuStatus; static bool _VehicleImuStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _VehicleImuStatus__ros_msg_type * ros_message = static_cast<const _VehicleImuStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: accel_device_id { cdr << ros_message->accel_device_id; } // Field name: gyro_device_id { cdr << ros_message->gyro_device_id; } // Field name: accel_clipping { size_t size = 3; auto array_ptr = ros_message->accel_clipping; cdr.serializeArray(array_ptr, size); } // Field name: accel_error_count { cdr << ros_message->accel_error_count; } // Field name: gyro_error_count { cdr << ros_message->gyro_error_count; } // Field name: accel_rate_hz { cdr << ros_message->accel_rate_hz; } // Field name: gyro_rate_hz { cdr << ros_message->gyro_rate_hz; } // Field name: accel_raw_rate_hz { cdr << ros_message->accel_raw_rate_hz; } // Field name: gyro_raw_rate_hz { cdr << ros_message->gyro_raw_rate_hz; } // Field name: accel_vibration_metric { cdr << ros_message->accel_vibration_metric; } // Field name: gyro_vibration_metric { cdr << ros_message->gyro_vibration_metric; } // Field name: gyro_coning_vibration { cdr << ros_message->gyro_coning_vibration; } // Field name: mean_accel { size_t size = 3; auto array_ptr = ros_message->mean_accel; cdr.serializeArray(array_ptr, size); } // Field name: mean_gyro { size_t size = 3; auto array_ptr = ros_message->mean_gyro; cdr.serializeArray(array_ptr, size); } // Field name: temperature_accel { cdr << ros_message->temperature_accel; } // Field name: temperature_gyro { cdr << ros_message->temperature_gyro; } return true; } static bool _VehicleImuStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _VehicleImuStatus__ros_msg_type * ros_message = static_cast<_VehicleImuStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: accel_device_id { cdr >> ros_message->accel_device_id; } // Field name: gyro_device_id { cdr >> ros_message->gyro_device_id; } // Field name: accel_clipping { size_t size = 3; auto array_ptr = ros_message->accel_clipping; cdr.deserializeArray(array_ptr, size); } // Field name: accel_error_count { cdr >> ros_message->accel_error_count; } // Field name: gyro_error_count { cdr >> ros_message->gyro_error_count; } // Field name: accel_rate_hz { cdr >> ros_message->accel_rate_hz; } // Field name: gyro_rate_hz { cdr >> ros_message->gyro_rate_hz; } // Field name: accel_raw_rate_hz { cdr >> ros_message->accel_raw_rate_hz; } // Field name: gyro_raw_rate_hz { cdr >> ros_message->gyro_raw_rate_hz; } // Field name: accel_vibration_metric { cdr >> ros_message->accel_vibration_metric; } // Field name: gyro_vibration_metric { cdr >> ros_message->gyro_vibration_metric; } // Field name: gyro_coning_vibration { cdr >> ros_message->gyro_coning_vibration; } // Field name: mean_accel { size_t size = 3; auto array_ptr = ros_message->mean_accel; cdr.deserializeArray(array_ptr, size); } // Field name: mean_gyro { size_t size = 3; auto array_ptr = ros_message->mean_gyro; cdr.deserializeArray(array_ptr, size); } // Field name: temperature_accel { cdr >> ros_message->temperature_accel; } // Field name: temperature_gyro { cdr >> ros_message->temperature_gyro; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__VehicleImuStatus( const void * untyped_ros_message, size_t current_alignment) { const _VehicleImuStatus__ros_msg_type * ros_message = static_cast<const _VehicleImuStatus__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name accel_device_id { size_t item_size = sizeof(ros_message->accel_device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gyro_device_id { size_t item_size = sizeof(ros_message->gyro_device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name accel_clipping { size_t array_size = 3; auto array_ptr = ros_message->accel_clipping; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name accel_error_count { size_t item_size = sizeof(ros_message->accel_error_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gyro_error_count { size_t item_size = sizeof(ros_message->gyro_error_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name accel_rate_hz { size_t item_size = sizeof(ros_message->accel_rate_hz); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gyro_rate_hz { size_t item_size = sizeof(ros_message->gyro_rate_hz); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name accel_raw_rate_hz { size_t item_size = sizeof(ros_message->accel_raw_rate_hz); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gyro_raw_rate_hz { size_t item_size = sizeof(ros_message->gyro_raw_rate_hz); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name accel_vibration_metric { size_t item_size = sizeof(ros_message->accel_vibration_metric); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gyro_vibration_metric { size_t item_size = sizeof(ros_message->gyro_vibration_metric); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gyro_coning_vibration { size_t item_size = sizeof(ros_message->gyro_coning_vibration); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name mean_accel { size_t array_size = 3; auto array_ptr = ros_message->mean_accel; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name mean_gyro { size_t array_size = 3; auto array_ptr = ros_message->mean_gyro; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name temperature_accel { size_t item_size = sizeof(ros_message->temperature_accel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name temperature_gyro { size_t item_size = sizeof(ros_message->temperature_gyro); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _VehicleImuStatus__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__VehicleImuStatus( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__VehicleImuStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: accel_device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gyro_device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: accel_clipping { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: accel_error_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gyro_error_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: accel_rate_hz { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gyro_rate_hz { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: accel_raw_rate_hz { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gyro_raw_rate_hz { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: accel_vibration_metric { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gyro_vibration_metric { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gyro_coning_vibration { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: mean_accel { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: mean_gyro { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: temperature_accel { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: temperature_gyro { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _VehicleImuStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__VehicleImuStatus( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_VehicleImuStatus = { "px4_msgs::msg", "VehicleImuStatus", _VehicleImuStatus__cdr_serialize, _VehicleImuStatus__cdr_deserialize, _VehicleImuStatus__get_serialized_size, _VehicleImuStatus__max_serialized_size }; static rosidl_message_type_support_t _VehicleImuStatus__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_VehicleImuStatus, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, VehicleImuStatus)() { return &_VehicleImuStatus__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/heater_status__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/HeaterStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__HEATER_STATUS__STRUCT_H_ #define PX4_MSGS__MSG__HEATER_STATUS__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'MODE_GPIO'. enum { px4_msgs__msg__HeaterStatus__MODE_GPIO = 1 }; /// Constant 'MODE_PX4IO'. enum { px4_msgs__msg__HeaterStatus__MODE_PX4IO = 2 }; // Struct defined in msg/HeaterStatus in the package px4_msgs. typedef struct px4_msgs__msg__HeaterStatus { uint64_t timestamp; uint32_t device_id; bool heater_on; bool temperature_target_met; float temperature_sensor; float temperature_target; uint32_t controller_period_usec; uint32_t controller_time_on_usec; float proportional_value; float integrator_value; float feed_forward_value; uint8_t mode; } px4_msgs__msg__HeaterStatus; // Struct for a sequence of px4_msgs__msg__HeaterStatus. typedef struct px4_msgs__msg__HeaterStatus__Sequence { px4_msgs__msg__HeaterStatus * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__HeaterStatus__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__HEATER_STATUS__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/mission__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/Mission.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/mission__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__Mission__init(px4_msgs__msg__Mission * msg) { if (!msg) { return false; } // timestamp // dataman_id // count // current_seq return true; } void px4_msgs__msg__Mission__fini(px4_msgs__msg__Mission * msg) { if (!msg) { return; } // timestamp // dataman_id // count // current_seq } px4_msgs__msg__Mission * px4_msgs__msg__Mission__create() { px4_msgs__msg__Mission * msg = (px4_msgs__msg__Mission *)malloc(sizeof(px4_msgs__msg__Mission)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__Mission)); bool success = px4_msgs__msg__Mission__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__Mission__destroy(px4_msgs__msg__Mission * msg) { if (msg) { px4_msgs__msg__Mission__fini(msg); } free(msg); } bool px4_msgs__msg__Mission__Sequence__init(px4_msgs__msg__Mission__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__Mission * data = NULL; if (size) { data = (px4_msgs__msg__Mission *)calloc(size, sizeof(px4_msgs__msg__Mission)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__Mission__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__Mission__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__Mission__Sequence__fini(px4_msgs__msg__Mission__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__Mission__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__Mission__Sequence * px4_msgs__msg__Mission__Sequence__create(size_t size) { px4_msgs__msg__Mission__Sequence * array = (px4_msgs__msg__Mission__Sequence *)malloc(sizeof(px4_msgs__msg__Mission__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__Mission__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__Mission__Sequence__destroy(px4_msgs__msg__Mission__Sequence * array) { if (array) { px4_msgs__msg__Mission__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/hover_thrust_estimate__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/HoverThrustEstimate.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__HOVER_THRUST_ESTIMATE__STRUCT_HPP_ #define PX4_MSGS__MSG__HOVER_THRUST_ESTIMATE__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__HoverThrustEstimate __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__HoverThrustEstimate __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct HoverThrustEstimate_ { using Type = HoverThrustEstimate_<ContainerAllocator>; explicit HoverThrustEstimate_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->hover_thrust = 0.0f; this->hover_thrust_var = 0.0f; this->accel_innov = 0.0f; this->accel_innov_var = 0.0f; this->accel_innov_test_ratio = 0.0f; this->accel_noise_var = 0.0f; this->valid = false; } } explicit HoverThrustEstimate_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->hover_thrust = 0.0f; this->hover_thrust_var = 0.0f; this->accel_innov = 0.0f; this->accel_innov_var = 0.0f; this->accel_innov_test_ratio = 0.0f; this->accel_noise_var = 0.0f; this->valid = false; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _timestamp_sample_type = uint64_t; _timestamp_sample_type timestamp_sample; using _hover_thrust_type = float; _hover_thrust_type hover_thrust; using _hover_thrust_var_type = float; _hover_thrust_var_type hover_thrust_var; using _accel_innov_type = float; _accel_innov_type accel_innov; using _accel_innov_var_type = float; _accel_innov_var_type accel_innov_var; using _accel_innov_test_ratio_type = float; _accel_innov_test_ratio_type accel_innov_test_ratio; using _accel_noise_var_type = float; _accel_noise_var_type accel_noise_var; using _valid_type = bool; _valid_type valid; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__timestamp_sample( const uint64_t & _arg) { this->timestamp_sample = _arg; return *this; } Type & set__hover_thrust( const float & _arg) { this->hover_thrust = _arg; return *this; } Type & set__hover_thrust_var( const float & _arg) { this->hover_thrust_var = _arg; return *this; } Type & set__accel_innov( const float & _arg) { this->accel_innov = _arg; return *this; } Type & set__accel_innov_var( const float & _arg) { this->accel_innov_var = _arg; return *this; } Type & set__accel_innov_test_ratio( const float & _arg) { this->accel_innov_test_ratio = _arg; return *this; } Type & set__accel_noise_var( const float & _arg) { this->accel_noise_var = _arg; return *this; } Type & set__valid( const bool & _arg) { this->valid = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::HoverThrustEstimate_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::HoverThrustEstimate_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::HoverThrustEstimate_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::HoverThrustEstimate_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::HoverThrustEstimate_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::HoverThrustEstimate_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::HoverThrustEstimate_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::HoverThrustEstimate_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::HoverThrustEstimate_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::HoverThrustEstimate_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__HoverThrustEstimate std::shared_ptr<px4_msgs::msg::HoverThrustEstimate_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__HoverThrustEstimate std::shared_ptr<px4_msgs::msg::HoverThrustEstimate_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const HoverThrustEstimate_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->timestamp_sample != other.timestamp_sample) { return false; } if (this->hover_thrust != other.hover_thrust) { return false; } if (this->hover_thrust_var != other.hover_thrust_var) { return false; } if (this->accel_innov != other.accel_innov) { return false; } if (this->accel_innov_var != other.accel_innov_var) { return false; } if (this->accel_innov_test_ratio != other.accel_innov_test_ratio) { return false; } if (this->accel_noise_var != other.accel_noise_var) { return false; } if (this->valid != other.valid) { return false; } return true; } bool operator!=(const HoverThrustEstimate_ & other) const { return !this->operator==(other); } }; // struct HoverThrustEstimate_ // alias to use template instance with default allocator using HoverThrustEstimate = px4_msgs::msg::HoverThrustEstimate_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__HOVER_THRUST_ESTIMATE__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/collision_report__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/CollisionReport.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__COLLISION_REPORT__STRUCT_HPP_ #define PX4_MSGS__MSG__COLLISION_REPORT__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__CollisionReport __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__CollisionReport __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct CollisionReport_ { using Type = CollisionReport_<ContainerAllocator>; explicit CollisionReport_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->src = 0; this->id = 0ul; this->action = 0; this->threat_level = 0; this->time_to_minimum_delta = 0.0f; this->altitude_minimum_delta = 0.0f; this->horizontal_minimum_delta = 0.0f; } } explicit CollisionReport_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->src = 0; this->id = 0ul; this->action = 0; this->threat_level = 0; this->time_to_minimum_delta = 0.0f; this->altitude_minimum_delta = 0.0f; this->horizontal_minimum_delta = 0.0f; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _src_type = uint8_t; _src_type src; using _id_type = uint32_t; _id_type id; using _action_type = uint8_t; _action_type action; using _threat_level_type = uint8_t; _threat_level_type threat_level; using _time_to_minimum_delta_type = float; _time_to_minimum_delta_type time_to_minimum_delta; using _altitude_minimum_delta_type = float; _altitude_minimum_delta_type altitude_minimum_delta; using _horizontal_minimum_delta_type = float; _horizontal_minimum_delta_type horizontal_minimum_delta; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__src( const uint8_t & _arg) { this->src = _arg; return *this; } Type & set__id( const uint32_t & _arg) { this->id = _arg; return *this; } Type & set__action( const uint8_t & _arg) { this->action = _arg; return *this; } Type & set__threat_level( const uint8_t & _arg) { this->threat_level = _arg; return *this; } Type & set__time_to_minimum_delta( const float & _arg) { this->time_to_minimum_delta = _arg; return *this; } Type & set__altitude_minimum_delta( const float & _arg) { this->altitude_minimum_delta = _arg; return *this; } Type & set__horizontal_minimum_delta( const float & _arg) { this->horizontal_minimum_delta = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::CollisionReport_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::CollisionReport_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::CollisionReport_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::CollisionReport_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::CollisionReport_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::CollisionReport_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::CollisionReport_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::CollisionReport_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::CollisionReport_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::CollisionReport_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__CollisionReport std::shared_ptr<px4_msgs::msg::CollisionReport_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__CollisionReport std::shared_ptr<px4_msgs::msg::CollisionReport_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const CollisionReport_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->src != other.src) { return false; } if (this->id != other.id) { return false; } if (this->action != other.action) { return false; } if (this->threat_level != other.threat_level) { return false; } if (this->time_to_minimum_delta != other.time_to_minimum_delta) { return false; } if (this->altitude_minimum_delta != other.altitude_minimum_delta) { return false; } if (this->horizontal_minimum_delta != other.horizontal_minimum_delta) { return false; } return true; } bool operator!=(const CollisionReport_ & other) const { return !this->operator==(other); } }; // struct CollisionReport_ // alias to use template instance with default allocator using CollisionReport = px4_msgs::msg::CollisionReport_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__COLLISION_REPORT__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/debug_vect.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/DebugVect.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__DEBUG_VECT_H_ #define PX4_MSGS__MSG__DEBUG_VECT_H_ #include "px4_msgs/msg/debug_vect__struct.h" #include "px4_msgs/msg/debug_vect__functions.h" #include "px4_msgs/msg/debug_vect__type_support.h" #endif // PX4_MSGS__MSG__DEBUG_VECT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/led_control.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__LED_CONTROL_HPP_ #define PX4_MSGS__MSG__LED_CONTROL_HPP_ #include "px4_msgs/msg/led_control__struct.hpp" #include "px4_msgs/msg/led_control__traits.hpp" #endif // PX4_MSGS__MSG__LED_CONTROL_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/transponder_report__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/TransponderReport.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TRANSPONDER_REPORT__FUNCTIONS_H_ #define PX4_MSGS__MSG__TRANSPONDER_REPORT__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/transponder_report__struct.h" /// Initialize msg/TransponderReport message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__TransponderReport * )) before or use * px4_msgs__msg__TransponderReport__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__TransponderReport__init(px4_msgs__msg__TransponderReport * msg); /// Finalize msg/TransponderReport message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__TransponderReport__fini(px4_msgs__msg__TransponderReport * msg); /// Create msg/TransponderReport message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__TransponderReport__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__TransponderReport * px4_msgs__msg__TransponderReport__create(); /// Destroy msg/TransponderReport message. /** * It calls * px4_msgs__msg__TransponderReport__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__TransponderReport__destroy(px4_msgs__msg__TransponderReport * msg); /// Initialize array of msg/TransponderReport messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__TransponderReport__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__TransponderReport__Sequence__init(px4_msgs__msg__TransponderReport__Sequence * array, size_t size); /// Finalize array of msg/TransponderReport messages. /** * It calls * px4_msgs__msg__TransponderReport__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__TransponderReport__Sequence__fini(px4_msgs__msg__TransponderReport__Sequence * array); /// Create array of msg/TransponderReport messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__TransponderReport__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__TransponderReport__Sequence * px4_msgs__msg__TransponderReport__Sequence__create(size_t size); /// Destroy array of msg/TransponderReport messages. /** * It calls * px4_msgs__msg__TransponderReport__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__TransponderReport__Sequence__destroy(px4_msgs__msg__TransponderReport__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__TRANSPONDER_REPORT__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/optical_flow__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/OpticalFlow.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/optical_flow__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/optical_flow__struct.h" #include "px4_msgs/msg/optical_flow__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _OpticalFlow__ros_msg_type = px4_msgs__msg__OpticalFlow; static bool _OpticalFlow__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _OpticalFlow__ros_msg_type * ros_message = static_cast<const _OpticalFlow__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: sensor_id { cdr << ros_message->sensor_id; } // Field name: pixel_flow_x_integral { cdr << ros_message->pixel_flow_x_integral; } // Field name: pixel_flow_y_integral { cdr << ros_message->pixel_flow_y_integral; } // Field name: gyro_x_rate_integral { cdr << ros_message->gyro_x_rate_integral; } // Field name: gyro_y_rate_integral { cdr << ros_message->gyro_y_rate_integral; } // Field name: gyro_z_rate_integral { cdr << ros_message->gyro_z_rate_integral; } // Field name: ground_distance_m { cdr << ros_message->ground_distance_m; } // Field name: integration_timespan { cdr << ros_message->integration_timespan; } // Field name: time_since_last_sonar_update { cdr << ros_message->time_since_last_sonar_update; } // Field name: frame_count_since_last_readout { cdr << ros_message->frame_count_since_last_readout; } // Field name: gyro_temperature { cdr << ros_message->gyro_temperature; } // Field name: quality { cdr << ros_message->quality; } // Field name: max_flow_rate { cdr << ros_message->max_flow_rate; } // Field name: min_ground_distance { cdr << ros_message->min_ground_distance; } // Field name: max_ground_distance { cdr << ros_message->max_ground_distance; } // Field name: mode { cdr << ros_message->mode; } return true; } static bool _OpticalFlow__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _OpticalFlow__ros_msg_type * ros_message = static_cast<_OpticalFlow__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: sensor_id { cdr >> ros_message->sensor_id; } // Field name: pixel_flow_x_integral { cdr >> ros_message->pixel_flow_x_integral; } // Field name: pixel_flow_y_integral { cdr >> ros_message->pixel_flow_y_integral; } // Field name: gyro_x_rate_integral { cdr >> ros_message->gyro_x_rate_integral; } // Field name: gyro_y_rate_integral { cdr >> ros_message->gyro_y_rate_integral; } // Field name: gyro_z_rate_integral { cdr >> ros_message->gyro_z_rate_integral; } // Field name: ground_distance_m { cdr >> ros_message->ground_distance_m; } // Field name: integration_timespan { cdr >> ros_message->integration_timespan; } // Field name: time_since_last_sonar_update { cdr >> ros_message->time_since_last_sonar_update; } // Field name: frame_count_since_last_readout { cdr >> ros_message->frame_count_since_last_readout; } // Field name: gyro_temperature { cdr >> ros_message->gyro_temperature; } // Field name: quality { cdr >> ros_message->quality; } // Field name: max_flow_rate { cdr >> ros_message->max_flow_rate; } // Field name: min_ground_distance { cdr >> ros_message->min_ground_distance; } // Field name: max_ground_distance { cdr >> ros_message->max_ground_distance; } // Field name: mode { cdr >> ros_message->mode; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__OpticalFlow( const void * untyped_ros_message, size_t current_alignment) { const _OpticalFlow__ros_msg_type * ros_message = static_cast<const _OpticalFlow__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name sensor_id { size_t item_size = sizeof(ros_message->sensor_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name pixel_flow_x_integral { size_t item_size = sizeof(ros_message->pixel_flow_x_integral); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name pixel_flow_y_integral { size_t item_size = sizeof(ros_message->pixel_flow_y_integral); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gyro_x_rate_integral { size_t item_size = sizeof(ros_message->gyro_x_rate_integral); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gyro_y_rate_integral { size_t item_size = sizeof(ros_message->gyro_y_rate_integral); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gyro_z_rate_integral { size_t item_size = sizeof(ros_message->gyro_z_rate_integral); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name ground_distance_m { size_t item_size = sizeof(ros_message->ground_distance_m); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name integration_timespan { size_t item_size = sizeof(ros_message->integration_timespan); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name time_since_last_sonar_update { size_t item_size = sizeof(ros_message->time_since_last_sonar_update); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name frame_count_since_last_readout { size_t item_size = sizeof(ros_message->frame_count_since_last_readout); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gyro_temperature { size_t item_size = sizeof(ros_message->gyro_temperature); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name quality { size_t item_size = sizeof(ros_message->quality); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name max_flow_rate { size_t item_size = sizeof(ros_message->max_flow_rate); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name min_ground_distance { size_t item_size = sizeof(ros_message->min_ground_distance); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name max_ground_distance { size_t item_size = sizeof(ros_message->max_ground_distance); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name mode { size_t item_size = sizeof(ros_message->mode); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _OpticalFlow__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__OpticalFlow( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__OpticalFlow( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: sensor_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: pixel_flow_x_integral { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: pixel_flow_y_integral { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gyro_x_rate_integral { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gyro_y_rate_integral { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gyro_z_rate_integral { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: ground_distance_m { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: integration_timespan { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: time_since_last_sonar_update { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: frame_count_since_last_readout { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: gyro_temperature { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: quality { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: max_flow_rate { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: min_ground_distance { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: max_ground_distance { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: mode { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _OpticalFlow__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__OpticalFlow( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_OpticalFlow = { "px4_msgs::msg", "OpticalFlow", _OpticalFlow__cdr_serialize, _OpticalFlow__cdr_deserialize, _OpticalFlow__get_serialized_size, _OpticalFlow__max_serialized_size }; static rosidl_message_type_support_t _OpticalFlow__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_OpticalFlow, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, OpticalFlow)() { return &_OpticalFlow__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/power_monitor__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/PowerMonitor.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__POWER_MONITOR__STRUCT_HPP_ #define PX4_MSGS__MSG__POWER_MONITOR__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__PowerMonitor __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__PowerMonitor __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct PowerMonitor_ { using Type = PowerMonitor_<ContainerAllocator>; explicit PowerMonitor_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->voltage_v = 0.0f; this->current_a = 0.0f; this->power_w = 0.0f; this->rconf = 0; this->rsv = 0; this->rbv = 0; this->rp = 0; this->rc = 0; this->rcal = 0; this->me = 0; this->al = 0; } } explicit PowerMonitor_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->voltage_v = 0.0f; this->current_a = 0.0f; this->power_w = 0.0f; this->rconf = 0; this->rsv = 0; this->rbv = 0; this->rp = 0; this->rc = 0; this->rcal = 0; this->me = 0; this->al = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _voltage_v_type = float; _voltage_v_type voltage_v; using _current_a_type = float; _current_a_type current_a; using _power_w_type = float; _power_w_type power_w; using _rconf_type = int16_t; _rconf_type rconf; using _rsv_type = int16_t; _rsv_type rsv; using _rbv_type = int16_t; _rbv_type rbv; using _rp_type = int16_t; _rp_type rp; using _rc_type = int16_t; _rc_type rc; using _rcal_type = int16_t; _rcal_type rcal; using _me_type = int16_t; _me_type me; using _al_type = int16_t; _al_type al; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__voltage_v( const float & _arg) { this->voltage_v = _arg; return *this; } Type & set__current_a( const float & _arg) { this->current_a = _arg; return *this; } Type & set__power_w( const float & _arg) { this->power_w = _arg; return *this; } Type & set__rconf( const int16_t & _arg) { this->rconf = _arg; return *this; } Type & set__rsv( const int16_t & _arg) { this->rsv = _arg; return *this; } Type & set__rbv( const int16_t & _arg) { this->rbv = _arg; return *this; } Type & set__rp( const int16_t & _arg) { this->rp = _arg; return *this; } Type & set__rc( const int16_t & _arg) { this->rc = _arg; return *this; } Type & set__rcal( const int16_t & _arg) { this->rcal = _arg; return *this; } Type & set__me( const int16_t & _arg) { this->me = _arg; return *this; } Type & set__al( const int16_t & _arg) { this->al = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::PowerMonitor_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::PowerMonitor_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::PowerMonitor_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::PowerMonitor_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::PowerMonitor_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::PowerMonitor_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::PowerMonitor_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::PowerMonitor_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::PowerMonitor_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::PowerMonitor_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__PowerMonitor std::shared_ptr<px4_msgs::msg::PowerMonitor_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__PowerMonitor std::shared_ptr<px4_msgs::msg::PowerMonitor_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const PowerMonitor_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->voltage_v != other.voltage_v) { return false; } if (this->current_a != other.current_a) { return false; } if (this->power_w != other.power_w) { return false; } if (this->rconf != other.rconf) { return false; } if (this->rsv != other.rsv) { return false; } if (this->rbv != other.rbv) { return false; } if (this->rp != other.rp) { return false; } if (this->rc != other.rc) { return false; } if (this->rcal != other.rcal) { return false; } if (this->me != other.me) { return false; } if (this->al != other.al) { return false; } return true; } bool operator!=(const PowerMonitor_ & other) const { return !this->operator==(other); } }; // struct PowerMonitor_ // alias to use template instance with default allocator using PowerMonitor = px4_msgs::msg::PowerMonitor_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__POWER_MONITOR__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/gimbal_device_set_attitude.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/GimbalDeviceSetAttitude.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__GIMBAL_DEVICE_SET_ATTITUDE_H_ #define PX4_MSGS__MSG__GIMBAL_DEVICE_SET_ATTITUDE_H_ #include "px4_msgs/msg/gimbal_device_set_attitude__struct.h" #include "px4_msgs/msg/gimbal_device_set_attitude__functions.h" #include "px4_msgs/msg/gimbal_device_set_attitude__type_support.h" #endif // PX4_MSGS__MSG__GIMBAL_DEVICE_SET_ATTITUDE_H_ <file_sep>/install/px4_ros_com/share/px4_ros_com/local_setup.bash /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_ros_com/ament_cmake_environment_hooks/local_setup.bash<file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/distance_sensor__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/DistanceSensor.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/distance_sensor__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/distance_sensor__struct.h" #include "px4_msgs/msg/distance_sensor__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _DistanceSensor__ros_msg_type = px4_msgs__msg__DistanceSensor; static bool _DistanceSensor__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _DistanceSensor__ros_msg_type * ros_message = static_cast<const _DistanceSensor__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: device_id { cdr << ros_message->device_id; } // Field name: min_distance { cdr << ros_message->min_distance; } // Field name: max_distance { cdr << ros_message->max_distance; } // Field name: current_distance { cdr << ros_message->current_distance; } // Field name: variance { cdr << ros_message->variance; } // Field name: signal_quality { cdr << ros_message->signal_quality; } // Field name: type { cdr << ros_message->type; } // Field name: h_fov { cdr << ros_message->h_fov; } // Field name: v_fov { cdr << ros_message->v_fov; } // Field name: q { size_t size = 4; auto array_ptr = ros_message->q; cdr.serializeArray(array_ptr, size); } // Field name: orientation { cdr << ros_message->orientation; } return true; } static bool _DistanceSensor__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _DistanceSensor__ros_msg_type * ros_message = static_cast<_DistanceSensor__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: device_id { cdr >> ros_message->device_id; } // Field name: min_distance { cdr >> ros_message->min_distance; } // Field name: max_distance { cdr >> ros_message->max_distance; } // Field name: current_distance { cdr >> ros_message->current_distance; } // Field name: variance { cdr >> ros_message->variance; } // Field name: signal_quality { cdr >> ros_message->signal_quality; } // Field name: type { cdr >> ros_message->type; } // Field name: h_fov { cdr >> ros_message->h_fov; } // Field name: v_fov { cdr >> ros_message->v_fov; } // Field name: q { size_t size = 4; auto array_ptr = ros_message->q; cdr.deserializeArray(array_ptr, size); } // Field name: orientation { cdr >> ros_message->orientation; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__DistanceSensor( const void * untyped_ros_message, size_t current_alignment) { const _DistanceSensor__ros_msg_type * ros_message = static_cast<const _DistanceSensor__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name device_id { size_t item_size = sizeof(ros_message->device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name min_distance { size_t item_size = sizeof(ros_message->min_distance); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name max_distance { size_t item_size = sizeof(ros_message->max_distance); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name current_distance { size_t item_size = sizeof(ros_message->current_distance); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name variance { size_t item_size = sizeof(ros_message->variance); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name signal_quality { size_t item_size = sizeof(ros_message->signal_quality); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name type { size_t item_size = sizeof(ros_message->type); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name h_fov { size_t item_size = sizeof(ros_message->h_fov); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name v_fov { size_t item_size = sizeof(ros_message->v_fov); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name q { size_t array_size = 4; auto array_ptr = ros_message->q; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name orientation { size_t item_size = sizeof(ros_message->orientation); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _DistanceSensor__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__DistanceSensor( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__DistanceSensor( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: min_distance { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: max_distance { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: current_distance { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: variance { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: signal_quality { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: type { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: h_fov { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: v_fov { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: q { size_t array_size = 4; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: orientation { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _DistanceSensor__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__DistanceSensor( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_DistanceSensor = { "px4_msgs::msg", "DistanceSensor", _DistanceSensor__cdr_serialize, _DistanceSensor__cdr_deserialize, _DistanceSensor__get_serialized_size, _DistanceSensor__max_serialized_size }; static rosidl_message_type_support_t _DistanceSensor__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_DistanceSensor, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, DistanceSensor)() { return &_DistanceSensor__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/collision_constraints.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__COLLISION_CONSTRAINTS_HPP_ #define PX4_MSGS__MSG__COLLISION_CONSTRAINTS_HPP_ #include "px4_msgs/msg/collision_constraints__struct.hpp" #include "px4_msgs/msg/collision_constraints__traits.hpp" #endif // PX4_MSGS__MSG__COLLISION_CONSTRAINTS_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/sensor_gyro_fifo__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/SensorGyroFifo.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/sensor_gyro_fifo__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void SensorGyroFifo_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::SensorGyroFifo(_init); } void SensorGyroFifo_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::SensorGyroFifo *>(message_memory); typed_message->~SensorGyroFifo(); } size_t size_function__SensorGyroFifo__x(const void * untyped_member) { (void)untyped_member; return 32; } const void * get_const_function__SensorGyroFifo__x(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<int16_t, 32> *>(untyped_member); return &member[index]; } void * get_function__SensorGyroFifo__x(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<int16_t, 32> *>(untyped_member); return &member[index]; } size_t size_function__SensorGyroFifo__y(const void * untyped_member) { (void)untyped_member; return 32; } const void * get_const_function__SensorGyroFifo__y(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<int16_t, 32> *>(untyped_member); return &member[index]; } void * get_function__SensorGyroFifo__y(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<int16_t, 32> *>(untyped_member); return &member[index]; } size_t size_function__SensorGyroFifo__z(const void * untyped_member) { (void)untyped_member; return 32; } const void * get_const_function__SensorGyroFifo__z(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<int16_t, 32> *>(untyped_member); return &member[index]; } void * get_function__SensorGyroFifo__z(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<int16_t, 32> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember SensorGyroFifo_message_member_array[9] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGyroFifo, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGyroFifo, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "device_id", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGyroFifo, device_id), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "dt", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGyroFifo, dt), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "scale", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGyroFifo, scale), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "samples", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT8, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGyroFifo, samples), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "x", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT16, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 32, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGyroFifo, x), // bytes offset in struct nullptr, // default value size_function__SensorGyroFifo__x, // size() function pointer get_const_function__SensorGyroFifo__x, // get_const(index) function pointer get_function__SensorGyroFifo__x, // get(index) function pointer nullptr // resize(index) function pointer }, { "y", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT16, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 32, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGyroFifo, y), // bytes offset in struct nullptr, // default value size_function__SensorGyroFifo__y, // size() function pointer get_const_function__SensorGyroFifo__y, // get_const(index) function pointer get_function__SensorGyroFifo__y, // get(index) function pointer nullptr // resize(index) function pointer }, { "z", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT16, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 32, // array size false, // is upper bound offsetof(px4_msgs::msg::SensorGyroFifo, z), // bytes offset in struct nullptr, // default value size_function__SensorGyroFifo__z, // size() function pointer get_const_function__SensorGyroFifo__z, // get_const(index) function pointer get_function__SensorGyroFifo__z, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers SensorGyroFifo_message_members = { "px4_msgs::msg", // message namespace "SensorGyroFifo", // message name 9, // number of fields sizeof(px4_msgs::msg::SensorGyroFifo), SensorGyroFifo_message_member_array, // message members SensorGyroFifo_init_function, // function to initialize message memory (memory has to be allocated) SensorGyroFifo_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t SensorGyroFifo_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &SensorGyroFifo_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::SensorGyroFifo>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::SensorGyroFifo_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, SensorGyroFifo)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::SensorGyroFifo_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/mag_worker_data__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/MagWorkerData.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/mag_worker_data__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__MagWorkerData__init(px4_msgs__msg__MagWorkerData * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // done_count // calibration_points_perside // calibration_interval_perside_us // calibration_counter_total // side_data_collected // x // y // z return true; } void px4_msgs__msg__MagWorkerData__fini(px4_msgs__msg__MagWorkerData * msg) { if (!msg) { return; } // timestamp // timestamp_sample // done_count // calibration_points_perside // calibration_interval_perside_us // calibration_counter_total // side_data_collected // x // y // z } px4_msgs__msg__MagWorkerData * px4_msgs__msg__MagWorkerData__create() { px4_msgs__msg__MagWorkerData * msg = (px4_msgs__msg__MagWorkerData *)malloc(sizeof(px4_msgs__msg__MagWorkerData)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__MagWorkerData)); bool success = px4_msgs__msg__MagWorkerData__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__MagWorkerData__destroy(px4_msgs__msg__MagWorkerData * msg) { if (msg) { px4_msgs__msg__MagWorkerData__fini(msg); } free(msg); } bool px4_msgs__msg__MagWorkerData__Sequence__init(px4_msgs__msg__MagWorkerData__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__MagWorkerData * data = NULL; if (size) { data = (px4_msgs__msg__MagWorkerData *)calloc(size, sizeof(px4_msgs__msg__MagWorkerData)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__MagWorkerData__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__MagWorkerData__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__MagWorkerData__Sequence__fini(px4_msgs__msg__MagWorkerData__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__MagWorkerData__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__MagWorkerData__Sequence * px4_msgs__msg__MagWorkerData__Sequence__create(size_t size) { px4_msgs__msg__MagWorkerData__Sequence * array = (px4_msgs__msg__MagWorkerData__Sequence *)malloc(sizeof(px4_msgs__msg__MagWorkerData__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__MagWorkerData__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__MagWorkerData__Sequence__destroy(px4_msgs__msg__MagWorkerData__Sequence * array) { if (array) { px4_msgs__msg__MagWorkerData__Sequence__fini(array); } free(array); } <file_sep>/install/px4_msgs/include/px4_msgs/msg/gps_inject_data.h /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/gps_inject_data.h<file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/camera_capture__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/CameraCapture.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/camera_capture__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/camera_capture__struct.h" #include "px4_msgs/msg/camera_capture__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _CameraCapture__ros_msg_type = px4_msgs__msg__CameraCapture; static bool _CameraCapture__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _CameraCapture__ros_msg_type * ros_message = static_cast<const _CameraCapture__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: timestamp_utc { cdr << ros_message->timestamp_utc; } // Field name: seq { cdr << ros_message->seq; } // Field name: lat { cdr << ros_message->lat; } // Field name: lon { cdr << ros_message->lon; } // Field name: alt { cdr << ros_message->alt; } // Field name: ground_distance { cdr << ros_message->ground_distance; } // Field name: q { size_t size = 4; auto array_ptr = ros_message->q; cdr.serializeArray(array_ptr, size); } // Field name: result { cdr << ros_message->result; } return true; } static bool _CameraCapture__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _CameraCapture__ros_msg_type * ros_message = static_cast<_CameraCapture__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: timestamp_utc { cdr >> ros_message->timestamp_utc; } // Field name: seq { cdr >> ros_message->seq; } // Field name: lat { cdr >> ros_message->lat; } // Field name: lon { cdr >> ros_message->lon; } // Field name: alt { cdr >> ros_message->alt; } // Field name: ground_distance { cdr >> ros_message->ground_distance; } // Field name: q { size_t size = 4; auto array_ptr = ros_message->q; cdr.deserializeArray(array_ptr, size); } // Field name: result { cdr >> ros_message->result; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__CameraCapture( const void * untyped_ros_message, size_t current_alignment) { const _CameraCapture__ros_msg_type * ros_message = static_cast<const _CameraCapture__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name timestamp_utc { size_t item_size = sizeof(ros_message->timestamp_utc); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name seq { size_t item_size = sizeof(ros_message->seq); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name lat { size_t item_size = sizeof(ros_message->lat); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name lon { size_t item_size = sizeof(ros_message->lon); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name alt { size_t item_size = sizeof(ros_message->alt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name ground_distance { size_t item_size = sizeof(ros_message->ground_distance); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name q { size_t array_size = 4; auto array_ptr = ros_message->q; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name result { size_t item_size = sizeof(ros_message->result); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _CameraCapture__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__CameraCapture( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__CameraCapture( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: timestamp_utc { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: seq { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: lat { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: lon { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: alt { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: ground_distance { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: q { size_t array_size = 4; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: result { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _CameraCapture__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__CameraCapture( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_CameraCapture = { "px4_msgs::msg", "CameraCapture", _CameraCapture__cdr_serialize, _CameraCapture__cdr_deserialize, _CameraCapture__get_serialized_size, _CameraCapture__max_serialized_size }; static rosidl_message_type_support_t _CameraCapture__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_CameraCapture, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, CameraCapture)() { return &_CameraCapture__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/landing_gear.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/LandingGear.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__LANDING_GEAR_H_ #define PX4_MSGS__MSG__LANDING_GEAR_H_ #include "px4_msgs/msg/landing_gear__struct.h" #include "px4_msgs/msg/landing_gear__functions.h" #include "px4_msgs/msg/landing_gear__type_support.h" #endif // PX4_MSGS__MSG__LANDING_GEAR_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/debug_value.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/DebugValue.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__DEBUG_VALUE_H_ #define PX4_MSGS__MSG__DEBUG_VALUE_H_ #include "px4_msgs/msg/debug_value__struct.h" #include "px4_msgs/msg/debug_value__functions.h" #include "px4_msgs/msg/debug_value__type_support.h" #endif // PX4_MSGS__MSG__DEBUG_VALUE_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/cpuload__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/Cpuload.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/cpuload__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__Cpuload__init(px4_msgs__msg__Cpuload * msg) { if (!msg) { return false; } // timestamp // load // ram_usage return true; } void px4_msgs__msg__Cpuload__fini(px4_msgs__msg__Cpuload * msg) { if (!msg) { return; } // timestamp // load // ram_usage } px4_msgs__msg__Cpuload * px4_msgs__msg__Cpuload__create() { px4_msgs__msg__Cpuload * msg = (px4_msgs__msg__Cpuload *)malloc(sizeof(px4_msgs__msg__Cpuload)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__Cpuload)); bool success = px4_msgs__msg__Cpuload__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__Cpuload__destroy(px4_msgs__msg__Cpuload * msg) { if (msg) { px4_msgs__msg__Cpuload__fini(msg); } free(msg); } bool px4_msgs__msg__Cpuload__Sequence__init(px4_msgs__msg__Cpuload__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__Cpuload * data = NULL; if (size) { data = (px4_msgs__msg__Cpuload *)calloc(size, sizeof(px4_msgs__msg__Cpuload)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__Cpuload__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__Cpuload__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__Cpuload__Sequence__fini(px4_msgs__msg__Cpuload__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__Cpuload__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__Cpuload__Sequence * px4_msgs__msg__Cpuload__Sequence__create(size_t size) { px4_msgs__msg__Cpuload__Sequence * array = (px4_msgs__msg__Cpuload__Sequence *)malloc(sizeof(px4_msgs__msg__Cpuload__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__Cpuload__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__Cpuload__Sequence__destroy(px4_msgs__msg__Cpuload__Sequence * array) { if (array) { px4_msgs__msg__Cpuload__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_acceleration__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleAcceleration.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_acceleration__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__VehicleAcceleration__init(px4_msgs__msg__VehicleAcceleration * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // xyz return true; } void px4_msgs__msg__VehicleAcceleration__fini(px4_msgs__msg__VehicleAcceleration * msg) { if (!msg) { return; } // timestamp // timestamp_sample // xyz } px4_msgs__msg__VehicleAcceleration * px4_msgs__msg__VehicleAcceleration__create() { px4_msgs__msg__VehicleAcceleration * msg = (px4_msgs__msg__VehicleAcceleration *)malloc(sizeof(px4_msgs__msg__VehicleAcceleration)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleAcceleration)); bool success = px4_msgs__msg__VehicleAcceleration__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleAcceleration__destroy(px4_msgs__msg__VehicleAcceleration * msg) { if (msg) { px4_msgs__msg__VehicleAcceleration__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleAcceleration__Sequence__init(px4_msgs__msg__VehicleAcceleration__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleAcceleration * data = NULL; if (size) { data = (px4_msgs__msg__VehicleAcceleration *)calloc(size, sizeof(px4_msgs__msg__VehicleAcceleration)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleAcceleration__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleAcceleration__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleAcceleration__Sequence__fini(px4_msgs__msg__VehicleAcceleration__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleAcceleration__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleAcceleration__Sequence * px4_msgs__msg__VehicleAcceleration__Sequence__create(size_t size) { px4_msgs__msg__VehicleAcceleration__Sequence * array = (px4_msgs__msg__VehicleAcceleration__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleAcceleration__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleAcceleration__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleAcceleration__Sequence__destroy(px4_msgs__msg__VehicleAcceleration__Sequence * array) { if (array) { px4_msgs__msg__VehicleAcceleration__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/offboard_control_mode__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/OffboardControlMode.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/offboard_control_mode__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/offboard_control_mode__struct.h" #include "px4_msgs/msg/offboard_control_mode__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _OffboardControlMode__ros_msg_type = px4_msgs__msg__OffboardControlMode; static bool _OffboardControlMode__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _OffboardControlMode__ros_msg_type * ros_message = static_cast<const _OffboardControlMode__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: position { cdr << (ros_message->position ? true : false); } // Field name: velocity { cdr << (ros_message->velocity ? true : false); } // Field name: acceleration { cdr << (ros_message->acceleration ? true : false); } // Field name: attitude { cdr << (ros_message->attitude ? true : false); } // Field name: body_rate { cdr << (ros_message->body_rate ? true : false); } return true; } static bool _OffboardControlMode__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _OffboardControlMode__ros_msg_type * ros_message = static_cast<_OffboardControlMode__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: position { uint8_t tmp; cdr >> tmp; ros_message->position = tmp ? true : false; } // Field name: velocity { uint8_t tmp; cdr >> tmp; ros_message->velocity = tmp ? true : false; } // Field name: acceleration { uint8_t tmp; cdr >> tmp; ros_message->acceleration = tmp ? true : false; } // Field name: attitude { uint8_t tmp; cdr >> tmp; ros_message->attitude = tmp ? true : false; } // Field name: body_rate { uint8_t tmp; cdr >> tmp; ros_message->body_rate = tmp ? true : false; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__OffboardControlMode( const void * untyped_ros_message, size_t current_alignment) { const _OffboardControlMode__ros_msg_type * ros_message = static_cast<const _OffboardControlMode__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name position { size_t item_size = sizeof(ros_message->position); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name velocity { size_t item_size = sizeof(ros_message->velocity); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name acceleration { size_t item_size = sizeof(ros_message->acceleration); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name attitude { size_t item_size = sizeof(ros_message->attitude); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name body_rate { size_t item_size = sizeof(ros_message->body_rate); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _OffboardControlMode__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__OffboardControlMode( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__OffboardControlMode( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: position { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: velocity { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: acceleration { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: attitude { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: body_rate { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _OffboardControlMode__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__OffboardControlMode( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_OffboardControlMode = { "px4_msgs::msg", "OffboardControlMode", _OffboardControlMode__cdr_serialize, _OffboardControlMode__cdr_deserialize, _OffboardControlMode__get_serialized_size, _OffboardControlMode__max_serialized_size }; static rosidl_message_type_support_t _OffboardControlMode__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_OffboardControlMode, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, OffboardControlMode)() { return &_OffboardControlMode__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/mc_virtual_attitude_setpoint.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__MC_VIRTUAL_ATTITUDE_SETPOINT_HPP_ #define PX4_MSGS__MSG__MC_VIRTUAL_ATTITUDE_SETPOINT_HPP_ #include "px4_msgs/msg/mc_virtual_attitude_setpoint__struct.hpp" #include "px4_msgs/msg/mc_virtual_attitude_setpoint__traits.hpp" #endif // PX4_MSGS__MSG__MC_VIRTUAL_ATTITUDE_SETPOINT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/actuator_controls3.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS3_HPP_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS3_HPP_ #include "px4_msgs/msg/actuator_controls3__struct.hpp" #include "px4_msgs/msg/actuator_controls3__traits.hpp" #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS3_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_land_detected__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleLandDetected.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_LAND_DETECTED__STRUCT_H_ #define PX4_MSGS__MSG__VEHICLE_LAND_DETECTED__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/VehicleLandDetected in the package px4_msgs. typedef struct px4_msgs__msg__VehicleLandDetected { uint64_t timestamp; float alt_max; bool freefall; bool ground_contact; bool maybe_landed; bool landed; bool in_ground_effect; } px4_msgs__msg__VehicleLandDetected; // Struct for a sequence of px4_msgs__msg__VehicleLandDetected. typedef struct px4_msgs__msg__VehicleLandDetected__Sequence { px4_msgs__msg__VehicleLandDetected * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__VehicleLandDetected__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_LAND_DETECTED__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status__rosidl_typesupport_fastrtps_c.h // generated from rosidl_typesupport_fastrtps_c/resource/idl__rosidl_typesupport_fastrtps_c.h.em // with input from px4_msgs:msg/EstimatorStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_STATUS__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #define PX4_MSGS__MSG__ESTIMATOR_STATUS__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ #include <stddef.h> #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__EstimatorStatus( const void * untyped_ros_message, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__EstimatorStatus( bool & full_bounded, size_t current_alignment); ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, EstimatorStatus)(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ESTIMATOR_STATUS__ROSIDL_TYPESUPPORT_FASTRTPS_C_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_estimator_status.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/EstimatorStatus.idl # generated code does not contain a copyright notice # Import statements for member types # Member 'vibe' # Member 'output_tracking_error' import numpy # noqa: E402, I100 import rosidl_parser.definition # noqa: E402, I100 class Metaclass_EstimatorStatus(type): """Metaclass of message 'EstimatorStatus'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'GPS_CHECK_FAIL_GPS_FIX': 0, 'GPS_CHECK_FAIL_MIN_SAT_COUNT': 1, 'GPS_CHECK_FAIL_MAX_PDOP': 2, 'GPS_CHECK_FAIL_MAX_HORZ_ERR': 3, 'GPS_CHECK_FAIL_MAX_VERT_ERR': 4, 'GPS_CHECK_FAIL_MAX_SPD_ERR': 5, 'GPS_CHECK_FAIL_MAX_HORZ_DRIFT': 6, 'GPS_CHECK_FAIL_MAX_VERT_DRIFT': 7, 'GPS_CHECK_FAIL_MAX_HORZ_SPD_ERR': 8, 'GPS_CHECK_FAIL_MAX_VERT_SPD_ERR': 9, 'CS_TILT_ALIGN': 0, 'CS_YAW_ALIGN': 1, 'CS_GPS': 2, 'CS_OPT_FLOW': 3, 'CS_MAG_HDG': 4, 'CS_MAG_3D': 5, 'CS_MAG_DEC': 6, 'CS_IN_AIR': 7, 'CS_WIND': 8, 'CS_BARO_HGT': 9, 'CS_RNG_HGT': 10, 'CS_GPS_HGT': 11, 'CS_EV_POS': 12, 'CS_EV_YAW': 13, 'CS_EV_HGT': 14, 'CS_BETA': 15, 'CS_MAG_FIELD': 16, 'CS_FIXED_WING': 17, 'CS_MAG_FAULT': 18, 'CS_ASPD': 19, 'CS_GND_EFFECT': 20, 'CS_RNG_STUCK': 21, 'CS_GPS_YAW': 22, 'CS_MAG_ALIGNED': 23, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.EstimatorStatus') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__estimator_status cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__estimator_status cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__estimator_status cls._TYPE_SUPPORT = module.type_support_msg__msg__estimator_status cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__estimator_status @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'GPS_CHECK_FAIL_GPS_FIX': cls.__constants['GPS_CHECK_FAIL_GPS_FIX'], 'GPS_CHECK_FAIL_MIN_SAT_COUNT': cls.__constants['GPS_CHECK_FAIL_MIN_SAT_COUNT'], 'GPS_CHECK_FAIL_MAX_PDOP': cls.__constants['GPS_CHECK_FAIL_MAX_PDOP'], 'GPS_CHECK_FAIL_MAX_HORZ_ERR': cls.__constants['GPS_CHECK_FAIL_MAX_HORZ_ERR'], 'GPS_CHECK_FAIL_MAX_VERT_ERR': cls.__constants['GPS_CHECK_FAIL_MAX_VERT_ERR'], 'GPS_CHECK_FAIL_MAX_SPD_ERR': cls.__constants['GPS_CHECK_FAIL_MAX_SPD_ERR'], 'GPS_CHECK_FAIL_MAX_HORZ_DRIFT': cls.__constants['GPS_CHECK_FAIL_MAX_HORZ_DRIFT'], 'GPS_CHECK_FAIL_MAX_VERT_DRIFT': cls.__constants['GPS_CHECK_FAIL_MAX_VERT_DRIFT'], 'GPS_CHECK_FAIL_MAX_HORZ_SPD_ERR': cls.__constants['GPS_CHECK_FAIL_MAX_HORZ_SPD_ERR'], 'GPS_CHECK_FAIL_MAX_VERT_SPD_ERR': cls.__constants['GPS_CHECK_FAIL_MAX_VERT_SPD_ERR'], 'CS_TILT_ALIGN': cls.__constants['CS_TILT_ALIGN'], 'CS_YAW_ALIGN': cls.__constants['CS_YAW_ALIGN'], 'CS_GPS': cls.__constants['CS_GPS'], 'CS_OPT_FLOW': cls.__constants['CS_OPT_FLOW'], 'CS_MAG_HDG': cls.__constants['CS_MAG_HDG'], 'CS_MAG_3D': cls.__constants['CS_MAG_3D'], 'CS_MAG_DEC': cls.__constants['CS_MAG_DEC'], 'CS_IN_AIR': cls.__constants['CS_IN_AIR'], 'CS_WIND': cls.__constants['CS_WIND'], 'CS_BARO_HGT': cls.__constants['CS_BARO_HGT'], 'CS_RNG_HGT': cls.__constants['CS_RNG_HGT'], 'CS_GPS_HGT': cls.__constants['CS_GPS_HGT'], 'CS_EV_POS': cls.__constants['CS_EV_POS'], 'CS_EV_YAW': cls.__constants['CS_EV_YAW'], 'CS_EV_HGT': cls.__constants['CS_EV_HGT'], 'CS_BETA': cls.__constants['CS_BETA'], 'CS_MAG_FIELD': cls.__constants['CS_MAG_FIELD'], 'CS_FIXED_WING': cls.__constants['CS_FIXED_WING'], 'CS_MAG_FAULT': cls.__constants['CS_MAG_FAULT'], 'CS_ASPD': cls.__constants['CS_ASPD'], 'CS_GND_EFFECT': cls.__constants['CS_GND_EFFECT'], 'CS_RNG_STUCK': cls.__constants['CS_RNG_STUCK'], 'CS_GPS_YAW': cls.__constants['CS_GPS_YAW'], 'CS_MAG_ALIGNED': cls.__constants['CS_MAG_ALIGNED'], } @property def GPS_CHECK_FAIL_GPS_FIX(self): """Message constant 'GPS_CHECK_FAIL_GPS_FIX'.""" return Metaclass_EstimatorStatus.__constants['GPS_CHECK_FAIL_GPS_FIX'] @property def GPS_CHECK_FAIL_MIN_SAT_COUNT(self): """Message constant 'GPS_CHECK_FAIL_MIN_SAT_COUNT'.""" return Metaclass_EstimatorStatus.__constants['GPS_CHECK_FAIL_MIN_SAT_COUNT'] @property def GPS_CHECK_FAIL_MAX_PDOP(self): """Message constant 'GPS_CHECK_FAIL_MAX_PDOP'.""" return Metaclass_EstimatorStatus.__constants['GPS_CHECK_FAIL_MAX_PDOP'] @property def GPS_CHECK_FAIL_MAX_HORZ_ERR(self): """Message constant 'GPS_CHECK_FAIL_MAX_HORZ_ERR'.""" return Metaclass_EstimatorStatus.__constants['GPS_CHECK_FAIL_MAX_HORZ_ERR'] @property def GPS_CHECK_FAIL_MAX_VERT_ERR(self): """Message constant 'GPS_CHECK_FAIL_MAX_VERT_ERR'.""" return Metaclass_EstimatorStatus.__constants['GPS_CHECK_FAIL_MAX_VERT_ERR'] @property def GPS_CHECK_FAIL_MAX_SPD_ERR(self): """Message constant 'GPS_CHECK_FAIL_MAX_SPD_ERR'.""" return Metaclass_EstimatorStatus.__constants['GPS_CHECK_FAIL_MAX_SPD_ERR'] @property def GPS_CHECK_FAIL_MAX_HORZ_DRIFT(self): """Message constant 'GPS_CHECK_FAIL_MAX_HORZ_DRIFT'.""" return Metaclass_EstimatorStatus.__constants['GPS_CHECK_FAIL_MAX_HORZ_DRIFT'] @property def GPS_CHECK_FAIL_MAX_VERT_DRIFT(self): """Message constant 'GPS_CHECK_FAIL_MAX_VERT_DRIFT'.""" return Metaclass_EstimatorStatus.__constants['GPS_CHECK_FAIL_MAX_VERT_DRIFT'] @property def GPS_CHECK_FAIL_MAX_HORZ_SPD_ERR(self): """Message constant 'GPS_CHECK_FAIL_MAX_HORZ_SPD_ERR'.""" return Metaclass_EstimatorStatus.__constants['GPS_CHECK_FAIL_MAX_HORZ_SPD_ERR'] @property def GPS_CHECK_FAIL_MAX_VERT_SPD_ERR(self): """Message constant 'GPS_CHECK_FAIL_MAX_VERT_SPD_ERR'.""" return Metaclass_EstimatorStatus.__constants['GPS_CHECK_FAIL_MAX_VERT_SPD_ERR'] @property def CS_TILT_ALIGN(self): """Message constant 'CS_TILT_ALIGN'.""" return Metaclass_EstimatorStatus.__constants['CS_TILT_ALIGN'] @property def CS_YAW_ALIGN(self): """Message constant 'CS_YAW_ALIGN'.""" return Metaclass_EstimatorStatus.__constants['CS_YAW_ALIGN'] @property def CS_GPS(self): """Message constant 'CS_GPS'.""" return Metaclass_EstimatorStatus.__constants['CS_GPS'] @property def CS_OPT_FLOW(self): """Message constant 'CS_OPT_FLOW'.""" return Metaclass_EstimatorStatus.__constants['CS_OPT_FLOW'] @property def CS_MAG_HDG(self): """Message constant 'CS_MAG_HDG'.""" return Metaclass_EstimatorStatus.__constants['CS_MAG_HDG'] @property def CS_MAG_3D(self): """Message constant 'CS_MAG_3D'.""" return Metaclass_EstimatorStatus.__constants['CS_MAG_3D'] @property def CS_MAG_DEC(self): """Message constant 'CS_MAG_DEC'.""" return Metaclass_EstimatorStatus.__constants['CS_MAG_DEC'] @property def CS_IN_AIR(self): """Message constant 'CS_IN_AIR'.""" return Metaclass_EstimatorStatus.__constants['CS_IN_AIR'] @property def CS_WIND(self): """Message constant 'CS_WIND'.""" return Metaclass_EstimatorStatus.__constants['CS_WIND'] @property def CS_BARO_HGT(self): """Message constant 'CS_BARO_HGT'.""" return Metaclass_EstimatorStatus.__constants['CS_BARO_HGT'] @property def CS_RNG_HGT(self): """Message constant 'CS_RNG_HGT'.""" return Metaclass_EstimatorStatus.__constants['CS_RNG_HGT'] @property def CS_GPS_HGT(self): """Message constant 'CS_GPS_HGT'.""" return Metaclass_EstimatorStatus.__constants['CS_GPS_HGT'] @property def CS_EV_POS(self): """Message constant 'CS_EV_POS'.""" return Metaclass_EstimatorStatus.__constants['CS_EV_POS'] @property def CS_EV_YAW(self): """Message constant 'CS_EV_YAW'.""" return Metaclass_EstimatorStatus.__constants['CS_EV_YAW'] @property def CS_EV_HGT(self): """Message constant 'CS_EV_HGT'.""" return Metaclass_EstimatorStatus.__constants['CS_EV_HGT'] @property def CS_BETA(self): """Message constant 'CS_BETA'.""" return Metaclass_EstimatorStatus.__constants['CS_BETA'] @property def CS_MAG_FIELD(self): """Message constant 'CS_MAG_FIELD'.""" return Metaclass_EstimatorStatus.__constants['CS_MAG_FIELD'] @property def CS_FIXED_WING(self): """Message constant 'CS_FIXED_WING'.""" return Metaclass_EstimatorStatus.__constants['CS_FIXED_WING'] @property def CS_MAG_FAULT(self): """Message constant 'CS_MAG_FAULT'.""" return Metaclass_EstimatorStatus.__constants['CS_MAG_FAULT'] @property def CS_ASPD(self): """Message constant 'CS_ASPD'.""" return Metaclass_EstimatorStatus.__constants['CS_ASPD'] @property def CS_GND_EFFECT(self): """Message constant 'CS_GND_EFFECT'.""" return Metaclass_EstimatorStatus.__constants['CS_GND_EFFECT'] @property def CS_RNG_STUCK(self): """Message constant 'CS_RNG_STUCK'.""" return Metaclass_EstimatorStatus.__constants['CS_RNG_STUCK'] @property def CS_GPS_YAW(self): """Message constant 'CS_GPS_YAW'.""" return Metaclass_EstimatorStatus.__constants['CS_GPS_YAW'] @property def CS_MAG_ALIGNED(self): """Message constant 'CS_MAG_ALIGNED'.""" return Metaclass_EstimatorStatus.__constants['CS_MAG_ALIGNED'] class EstimatorStatus(metaclass=Metaclass_EstimatorStatus): """ Message class 'EstimatorStatus'. Constants: GPS_CHECK_FAIL_GPS_FIX GPS_CHECK_FAIL_MIN_SAT_COUNT GPS_CHECK_FAIL_MAX_PDOP GPS_CHECK_FAIL_MAX_HORZ_ERR GPS_CHECK_FAIL_MAX_VERT_ERR GPS_CHECK_FAIL_MAX_SPD_ERR GPS_CHECK_FAIL_MAX_HORZ_DRIFT GPS_CHECK_FAIL_MAX_VERT_DRIFT GPS_CHECK_FAIL_MAX_HORZ_SPD_ERR GPS_CHECK_FAIL_MAX_VERT_SPD_ERR CS_TILT_ALIGN CS_YAW_ALIGN CS_GPS CS_OPT_FLOW CS_MAG_HDG CS_MAG_3D CS_MAG_DEC CS_IN_AIR CS_WIND CS_BARO_HGT CS_RNG_HGT CS_GPS_HGT CS_EV_POS CS_EV_YAW CS_EV_HGT CS_BETA CS_MAG_FIELD CS_FIXED_WING CS_MAG_FAULT CS_ASPD CS_GND_EFFECT CS_RNG_STUCK CS_GPS_YAW CS_MAG_ALIGNED """ __slots__ = [ '_timestamp', '_timestamp_sample', '_vibe', '_output_tracking_error', '_gps_check_fail_flags', '_control_mode_flags', '_filter_fault_flags', '_pos_horiz_accuracy', '_pos_vert_accuracy', '_innovation_check_flags', '_mag_test_ratio', '_vel_test_ratio', '_pos_test_ratio', '_hgt_test_ratio', '_tas_test_ratio', '_hagl_test_ratio', '_beta_test_ratio', '_solution_status_flags', '_reset_count_vel_ne', '_reset_count_vel_d', '_reset_count_pos_ne', '_reset_count_pod_d', '_reset_count_quat', '_time_slip', '_pre_flt_fail_innov_heading', '_pre_flt_fail_innov_vel_horiz', '_pre_flt_fail_innov_vel_vert', '_pre_flt_fail_innov_height', '_pre_flt_fail_mag_field_disturbed', '_accel_device_id', '_gyro_device_id', '_baro_device_id', '_mag_device_id', '_health_flags', '_timeout_flags', ] _fields_and_field_types = { 'timestamp': 'uint64', 'timestamp_sample': 'uint64', 'vibe': 'float[3]', 'output_tracking_error': 'float[3]', 'gps_check_fail_flags': 'uint16', 'control_mode_flags': 'uint32', 'filter_fault_flags': 'uint32', 'pos_horiz_accuracy': 'float', 'pos_vert_accuracy': 'float', 'innovation_check_flags': 'uint16', 'mag_test_ratio': 'float', 'vel_test_ratio': 'float', 'pos_test_ratio': 'float', 'hgt_test_ratio': 'float', 'tas_test_ratio': 'float', 'hagl_test_ratio': 'float', 'beta_test_ratio': 'float', 'solution_status_flags': 'uint16', 'reset_count_vel_ne': 'uint8', 'reset_count_vel_d': 'uint8', 'reset_count_pos_ne': 'uint8', 'reset_count_pod_d': 'uint8', 'reset_count_quat': 'uint8', 'time_slip': 'float', 'pre_flt_fail_innov_heading': 'boolean', 'pre_flt_fail_innov_vel_horiz': 'boolean', 'pre_flt_fail_innov_vel_vert': 'boolean', 'pre_flt_fail_innov_height': 'boolean', 'pre_flt_fail_mag_field_disturbed': 'boolean', 'accel_device_id': 'uint32', 'gyro_device_id': 'uint32', 'baro_device_id': 'uint32', 'mag_device_id': 'uint32', 'health_flags': 'uint8', 'timeout_flags': 'uint8', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 3), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.timestamp_sample = kwargs.get('timestamp_sample', int()) if 'vibe' not in kwargs: self.vibe = numpy.zeros(3, dtype=numpy.float32) else: self.vibe = numpy.array(kwargs.get('vibe'), dtype=numpy.float32) assert self.vibe.shape == (3, ) if 'output_tracking_error' not in kwargs: self.output_tracking_error = numpy.zeros(3, dtype=numpy.float32) else: self.output_tracking_error = numpy.array(kwargs.get('output_tracking_error'), dtype=numpy.float32) assert self.output_tracking_error.shape == (3, ) self.gps_check_fail_flags = kwargs.get('gps_check_fail_flags', int()) self.control_mode_flags = kwargs.get('control_mode_flags', int()) self.filter_fault_flags = kwargs.get('filter_fault_flags', int()) self.pos_horiz_accuracy = kwargs.get('pos_horiz_accuracy', float()) self.pos_vert_accuracy = kwargs.get('pos_vert_accuracy', float()) self.innovation_check_flags = kwargs.get('innovation_check_flags', int()) self.mag_test_ratio = kwargs.get('mag_test_ratio', float()) self.vel_test_ratio = kwargs.get('vel_test_ratio', float()) self.pos_test_ratio = kwargs.get('pos_test_ratio', float()) self.hgt_test_ratio = kwargs.get('hgt_test_ratio', float()) self.tas_test_ratio = kwargs.get('tas_test_ratio', float()) self.hagl_test_ratio = kwargs.get('hagl_test_ratio', float()) self.beta_test_ratio = kwargs.get('beta_test_ratio', float()) self.solution_status_flags = kwargs.get('solution_status_flags', int()) self.reset_count_vel_ne = kwargs.get('reset_count_vel_ne', int()) self.reset_count_vel_d = kwargs.get('reset_count_vel_d', int()) self.reset_count_pos_ne = kwargs.get('reset_count_pos_ne', int()) self.reset_count_pod_d = kwargs.get('reset_count_pod_d', int()) self.reset_count_quat = kwargs.get('reset_count_quat', int()) self.time_slip = kwargs.get('time_slip', float()) self.pre_flt_fail_innov_heading = kwargs.get('pre_flt_fail_innov_heading', bool()) self.pre_flt_fail_innov_vel_horiz = kwargs.get('pre_flt_fail_innov_vel_horiz', bool()) self.pre_flt_fail_innov_vel_vert = kwargs.get('pre_flt_fail_innov_vel_vert', bool()) self.pre_flt_fail_innov_height = kwargs.get('pre_flt_fail_innov_height', bool()) self.pre_flt_fail_mag_field_disturbed = kwargs.get('pre_flt_fail_mag_field_disturbed', bool()) self.accel_device_id = kwargs.get('accel_device_id', int()) self.gyro_device_id = kwargs.get('gyro_device_id', int()) self.baro_device_id = kwargs.get('baro_device_id', int()) self.mag_device_id = kwargs.get('mag_device_id', int()) self.health_flags = kwargs.get('health_flags', int()) self.timeout_flags = kwargs.get('timeout_flags', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.timestamp_sample != other.timestamp_sample: return False if all(self.vibe != other.vibe): return False if all(self.output_tracking_error != other.output_tracking_error): return False if self.gps_check_fail_flags != other.gps_check_fail_flags: return False if self.control_mode_flags != other.control_mode_flags: return False if self.filter_fault_flags != other.filter_fault_flags: return False if self.pos_horiz_accuracy != other.pos_horiz_accuracy: return False if self.pos_vert_accuracy != other.pos_vert_accuracy: return False if self.innovation_check_flags != other.innovation_check_flags: return False if self.mag_test_ratio != other.mag_test_ratio: return False if self.vel_test_ratio != other.vel_test_ratio: return False if self.pos_test_ratio != other.pos_test_ratio: return False if self.hgt_test_ratio != other.hgt_test_ratio: return False if self.tas_test_ratio != other.tas_test_ratio: return False if self.hagl_test_ratio != other.hagl_test_ratio: return False if self.beta_test_ratio != other.beta_test_ratio: return False if self.solution_status_flags != other.solution_status_flags: return False if self.reset_count_vel_ne != other.reset_count_vel_ne: return False if self.reset_count_vel_d != other.reset_count_vel_d: return False if self.reset_count_pos_ne != other.reset_count_pos_ne: return False if self.reset_count_pod_d != other.reset_count_pod_d: return False if self.reset_count_quat != other.reset_count_quat: return False if self.time_slip != other.time_slip: return False if self.pre_flt_fail_innov_heading != other.pre_flt_fail_innov_heading: return False if self.pre_flt_fail_innov_vel_horiz != other.pre_flt_fail_innov_vel_horiz: return False if self.pre_flt_fail_innov_vel_vert != other.pre_flt_fail_innov_vel_vert: return False if self.pre_flt_fail_innov_height != other.pre_flt_fail_innov_height: return False if self.pre_flt_fail_mag_field_disturbed != other.pre_flt_fail_mag_field_disturbed: return False if self.accel_device_id != other.accel_device_id: return False if self.gyro_device_id != other.gyro_device_id: return False if self.baro_device_id != other.baro_device_id: return False if self.mag_device_id != other.mag_device_id: return False if self.health_flags != other.health_flags: return False if self.timeout_flags != other.timeout_flags: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def timestamp_sample(self): """Message field 'timestamp_sample'.""" return self._timestamp_sample @timestamp_sample.setter def timestamp_sample(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp_sample' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp_sample' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp_sample = value @property def vibe(self): """Message field 'vibe'.""" return self._vibe @vibe.setter def vibe(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'vibe' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'vibe' numpy.ndarray() must have a size of 3" self._vibe = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'vibe' field must be a set or sequence with length 3 and each value of type 'float'" self._vibe = numpy.array(value, dtype=numpy.float32) @property def output_tracking_error(self): """Message field 'output_tracking_error'.""" return self._output_tracking_error @output_tracking_error.setter def output_tracking_error(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'output_tracking_error' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 3, \ "The 'output_tracking_error' numpy.ndarray() must have a size of 3" self._output_tracking_error = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 3 and all(isinstance(v, float) for v in value) and True), \ "The 'output_tracking_error' field must be a set or sequence with length 3 and each value of type 'float'" self._output_tracking_error = numpy.array(value, dtype=numpy.float32) @property def gps_check_fail_flags(self): """Message field 'gps_check_fail_flags'.""" return self._gps_check_fail_flags @gps_check_fail_flags.setter def gps_check_fail_flags(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'gps_check_fail_flags' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'gps_check_fail_flags' field must be an unsigned integer in [0, 65535]" self._gps_check_fail_flags = value @property def control_mode_flags(self): """Message field 'control_mode_flags'.""" return self._control_mode_flags @control_mode_flags.setter def control_mode_flags(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'control_mode_flags' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'control_mode_flags' field must be an unsigned integer in [0, 4294967295]" self._control_mode_flags = value @property def filter_fault_flags(self): """Message field 'filter_fault_flags'.""" return self._filter_fault_flags @filter_fault_flags.setter def filter_fault_flags(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'filter_fault_flags' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'filter_fault_flags' field must be an unsigned integer in [0, 4294967295]" self._filter_fault_flags = value @property def pos_horiz_accuracy(self): """Message field 'pos_horiz_accuracy'.""" return self._pos_horiz_accuracy @pos_horiz_accuracy.setter def pos_horiz_accuracy(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'pos_horiz_accuracy' field must be of type 'float'" self._pos_horiz_accuracy = value @property def pos_vert_accuracy(self): """Message field 'pos_vert_accuracy'.""" return self._pos_vert_accuracy @pos_vert_accuracy.setter def pos_vert_accuracy(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'pos_vert_accuracy' field must be of type 'float'" self._pos_vert_accuracy = value @property def innovation_check_flags(self): """Message field 'innovation_check_flags'.""" return self._innovation_check_flags @innovation_check_flags.setter def innovation_check_flags(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'innovation_check_flags' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'innovation_check_flags' field must be an unsigned integer in [0, 65535]" self._innovation_check_flags = value @property def mag_test_ratio(self): """Message field 'mag_test_ratio'.""" return self._mag_test_ratio @mag_test_ratio.setter def mag_test_ratio(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'mag_test_ratio' field must be of type 'float'" self._mag_test_ratio = value @property def vel_test_ratio(self): """Message field 'vel_test_ratio'.""" return self._vel_test_ratio @vel_test_ratio.setter def vel_test_ratio(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'vel_test_ratio' field must be of type 'float'" self._vel_test_ratio = value @property def pos_test_ratio(self): """Message field 'pos_test_ratio'.""" return self._pos_test_ratio @pos_test_ratio.setter def pos_test_ratio(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'pos_test_ratio' field must be of type 'float'" self._pos_test_ratio = value @property def hgt_test_ratio(self): """Message field 'hgt_test_ratio'.""" return self._hgt_test_ratio @hgt_test_ratio.setter def hgt_test_ratio(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'hgt_test_ratio' field must be of type 'float'" self._hgt_test_ratio = value @property def tas_test_ratio(self): """Message field 'tas_test_ratio'.""" return self._tas_test_ratio @tas_test_ratio.setter def tas_test_ratio(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'tas_test_ratio' field must be of type 'float'" self._tas_test_ratio = value @property def hagl_test_ratio(self): """Message field 'hagl_test_ratio'.""" return self._hagl_test_ratio @hagl_test_ratio.setter def hagl_test_ratio(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'hagl_test_ratio' field must be of type 'float'" self._hagl_test_ratio = value @property def beta_test_ratio(self): """Message field 'beta_test_ratio'.""" return self._beta_test_ratio @beta_test_ratio.setter def beta_test_ratio(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'beta_test_ratio' field must be of type 'float'" self._beta_test_ratio = value @property def solution_status_flags(self): """Message field 'solution_status_flags'.""" return self._solution_status_flags @solution_status_flags.setter def solution_status_flags(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'solution_status_flags' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'solution_status_flags' field must be an unsigned integer in [0, 65535]" self._solution_status_flags = value @property def reset_count_vel_ne(self): """Message field 'reset_count_vel_ne'.""" return self._reset_count_vel_ne @reset_count_vel_ne.setter def reset_count_vel_ne(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'reset_count_vel_ne' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'reset_count_vel_ne' field must be an unsigned integer in [0, 255]" self._reset_count_vel_ne = value @property def reset_count_vel_d(self): """Message field 'reset_count_vel_d'.""" return self._reset_count_vel_d @reset_count_vel_d.setter def reset_count_vel_d(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'reset_count_vel_d' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'reset_count_vel_d' field must be an unsigned integer in [0, 255]" self._reset_count_vel_d = value @property def reset_count_pos_ne(self): """Message field 'reset_count_pos_ne'.""" return self._reset_count_pos_ne @reset_count_pos_ne.setter def reset_count_pos_ne(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'reset_count_pos_ne' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'reset_count_pos_ne' field must be an unsigned integer in [0, 255]" self._reset_count_pos_ne = value @property def reset_count_pod_d(self): """Message field 'reset_count_pod_d'.""" return self._reset_count_pod_d @reset_count_pod_d.setter def reset_count_pod_d(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'reset_count_pod_d' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'reset_count_pod_d' field must be an unsigned integer in [0, 255]" self._reset_count_pod_d = value @property def reset_count_quat(self): """Message field 'reset_count_quat'.""" return self._reset_count_quat @reset_count_quat.setter def reset_count_quat(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'reset_count_quat' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'reset_count_quat' field must be an unsigned integer in [0, 255]" self._reset_count_quat = value @property def time_slip(self): """Message field 'time_slip'.""" return self._time_slip @time_slip.setter def time_slip(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'time_slip' field must be of type 'float'" self._time_slip = value @property def pre_flt_fail_innov_heading(self): """Message field 'pre_flt_fail_innov_heading'.""" return self._pre_flt_fail_innov_heading @pre_flt_fail_innov_heading.setter def pre_flt_fail_innov_heading(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'pre_flt_fail_innov_heading' field must be of type 'bool'" self._pre_flt_fail_innov_heading = value @property def pre_flt_fail_innov_vel_horiz(self): """Message field 'pre_flt_fail_innov_vel_horiz'.""" return self._pre_flt_fail_innov_vel_horiz @pre_flt_fail_innov_vel_horiz.setter def pre_flt_fail_innov_vel_horiz(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'pre_flt_fail_innov_vel_horiz' field must be of type 'bool'" self._pre_flt_fail_innov_vel_horiz = value @property def pre_flt_fail_innov_vel_vert(self): """Message field 'pre_flt_fail_innov_vel_vert'.""" return self._pre_flt_fail_innov_vel_vert @pre_flt_fail_innov_vel_vert.setter def pre_flt_fail_innov_vel_vert(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'pre_flt_fail_innov_vel_vert' field must be of type 'bool'" self._pre_flt_fail_innov_vel_vert = value @property def pre_flt_fail_innov_height(self): """Message field 'pre_flt_fail_innov_height'.""" return self._pre_flt_fail_innov_height @pre_flt_fail_innov_height.setter def pre_flt_fail_innov_height(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'pre_flt_fail_innov_height' field must be of type 'bool'" self._pre_flt_fail_innov_height = value @property def pre_flt_fail_mag_field_disturbed(self): """Message field 'pre_flt_fail_mag_field_disturbed'.""" return self._pre_flt_fail_mag_field_disturbed @pre_flt_fail_mag_field_disturbed.setter def pre_flt_fail_mag_field_disturbed(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'pre_flt_fail_mag_field_disturbed' field must be of type 'bool'" self._pre_flt_fail_mag_field_disturbed = value @property def accel_device_id(self): """Message field 'accel_device_id'.""" return self._accel_device_id @accel_device_id.setter def accel_device_id(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'accel_device_id' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'accel_device_id' field must be an unsigned integer in [0, 4294967295]" self._accel_device_id = value @property def gyro_device_id(self): """Message field 'gyro_device_id'.""" return self._gyro_device_id @gyro_device_id.setter def gyro_device_id(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'gyro_device_id' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'gyro_device_id' field must be an unsigned integer in [0, 4294967295]" self._gyro_device_id = value @property def baro_device_id(self): """Message field 'baro_device_id'.""" return self._baro_device_id @baro_device_id.setter def baro_device_id(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'baro_device_id' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'baro_device_id' field must be an unsigned integer in [0, 4294967295]" self._baro_device_id = value @property def mag_device_id(self): """Message field 'mag_device_id'.""" return self._mag_device_id @mag_device_id.setter def mag_device_id(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'mag_device_id' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'mag_device_id' field must be an unsigned integer in [0, 4294967295]" self._mag_device_id = value @property def health_flags(self): """Message field 'health_flags'.""" return self._health_flags @health_flags.setter def health_flags(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'health_flags' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'health_flags' field must be an unsigned integer in [0, 255]" self._health_flags = value @property def timeout_flags(self): """Message field 'timeout_flags'.""" return self._timeout_flags @timeout_flags.setter def timeout_flags(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timeout_flags' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'timeout_flags' field must be an unsigned integer in [0, 255]" self._timeout_flags = value <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/rc_channels__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/RcChannels.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__RC_CHANNELS__STRUCT_HPP_ #define PX4_MSGS__MSG__RC_CHANNELS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__RcChannels __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__RcChannels __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct RcChannels_ { using Type = RcChannels_<ContainerAllocator>; explicit RcChannels_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_last_valid = 0ull; std::fill<typename std::array<float, 18>::iterator, float>(this->channels.begin(), this->channels.end(), 0.0f); this->channel_count = 0; std::fill<typename std::array<int8_t, 26>::iterator, int8_t>(this->function.begin(), this->function.end(), 0); this->rssi = 0; this->signal_lost = false; this->frame_drop_count = 0ul; } } explicit RcChannels_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : channels(_alloc), function(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_last_valid = 0ull; std::fill<typename std::array<float, 18>::iterator, float>(this->channels.begin(), this->channels.end(), 0.0f); this->channel_count = 0; std::fill<typename std::array<int8_t, 26>::iterator, int8_t>(this->function.begin(), this->function.end(), 0); this->rssi = 0; this->signal_lost = false; this->frame_drop_count = 0ul; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _timestamp_last_valid_type = uint64_t; _timestamp_last_valid_type timestamp_last_valid; using _channels_type = std::array<float, 18>; _channels_type channels; using _channel_count_type = uint8_t; _channel_count_type channel_count; using _function_type = std::array<int8_t, 26>; _function_type function; using _rssi_type = uint8_t; _rssi_type rssi; using _signal_lost_type = bool; _signal_lost_type signal_lost; using _frame_drop_count_type = uint32_t; _frame_drop_count_type frame_drop_count; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__timestamp_last_valid( const uint64_t & _arg) { this->timestamp_last_valid = _arg; return *this; } Type & set__channels( const std::array<float, 18> & _arg) { this->channels = _arg; return *this; } Type & set__channel_count( const uint8_t & _arg) { this->channel_count = _arg; return *this; } Type & set__function( const std::array<int8_t, 26> & _arg) { this->function = _arg; return *this; } Type & set__rssi( const uint8_t & _arg) { this->rssi = _arg; return *this; } Type & set__signal_lost( const bool & _arg) { this->signal_lost = _arg; return *this; } Type & set__frame_drop_count( const uint32_t & _arg) { this->frame_drop_count = _arg; return *this; } // constant declarations static constexpr uint8_t FUNCTION_THROTTLE = 0u; static constexpr uint8_t FUNCTION_ROLL = 1u; static constexpr uint8_t FUNCTION_PITCH = 2u; static constexpr uint8_t FUNCTION_YAW = 3u; static constexpr uint8_t FUNCTION_MODE = 4u; static constexpr uint8_t FUNCTION_RETURN = 5u; static constexpr uint8_t FUNCTION_POSCTL = 6u; static constexpr uint8_t FUNCTION_LOITER = 7u; static constexpr uint8_t FUNCTION_OFFBOARD = 8u; static constexpr uint8_t FUNCTION_ACRO = 9u; static constexpr uint8_t FUNCTION_FLAPS = 10u; static constexpr uint8_t FUNCTION_AUX_1 = 11u; static constexpr uint8_t FUNCTION_AUX_2 = 12u; static constexpr uint8_t FUNCTION_AUX_3 = 13u; static constexpr uint8_t FUNCTION_AUX_4 = 14u; static constexpr uint8_t FUNCTION_AUX_5 = 15u; static constexpr uint8_t FUNCTION_PARAM_1 = 16u; static constexpr uint8_t FUNCTION_PARAM_2 = 17u; static constexpr uint8_t FUNCTION_PARAM_3_5 = 18u; static constexpr uint8_t FUNCTION_KILLSWITCH = 19u; static constexpr uint8_t FUNCTION_TRANSITION = 20u; static constexpr uint8_t FUNCTION_GEAR = 21u; static constexpr uint8_t FUNCTION_ARMSWITCH = 22u; static constexpr uint8_t FUNCTION_STAB = 23u; static constexpr uint8_t FUNCTION_AUX_6 = 24u; static constexpr uint8_t FUNCTION_MAN = 25u; // pointer types using RawPtr = px4_msgs::msg::RcChannels_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::RcChannels_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::RcChannels_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::RcChannels_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::RcChannels_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::RcChannels_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::RcChannels_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::RcChannels_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::RcChannels_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::RcChannels_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__RcChannels std::shared_ptr<px4_msgs::msg::RcChannels_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__RcChannels std::shared_ptr<px4_msgs::msg::RcChannels_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const RcChannels_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->timestamp_last_valid != other.timestamp_last_valid) { return false; } if (this->channels != other.channels) { return false; } if (this->channel_count != other.channel_count) { return false; } if (this->function != other.function) { return false; } if (this->rssi != other.rssi) { return false; } if (this->signal_lost != other.signal_lost) { return false; } if (this->frame_drop_count != other.frame_drop_count) { return false; } return true; } bool operator!=(const RcChannels_ & other) const { return !this->operator==(other); } }; // struct RcChannels_ // alias to use template instance with default allocator using RcChannels = px4_msgs::msg::RcChannels_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t RcChannels_<ContainerAllocator>::FUNCTION_THROTTLE; template<typename ContainerAllocator> constexpr uint8_t RcChannels_<ContainerAllocator>::FUNCTION_ROLL; template<typename ContainerAllocator> constexpr uint8_t RcChannels_<ContainerAllocator>::FUNCTION_PITCH; template<typename ContainerAllocator> constexpr uint8_t RcChannels_<ContainerAllocator>::FUNCTION_YAW; template<typename ContainerAllocator> constexpr uint8_t RcChannels_<ContainerAllocator>::FUNCTION_MODE; template<typename ContainerAllocator> constexpr uint8_t RcChannels_<ContainerAllocator>::FUNCTION_RETURN; template<typename ContainerAllocator> constexpr uint8_t RcChannels_<ContainerAllocator>::FUNCTION_POSCTL; template<typename ContainerAllocator> constexpr uint8_t RcChannels_<ContainerAllocator>::FUNCTION_LOITER; template<typename ContainerAllocator> constexpr uint8_t RcChannels_<ContainerAllocator>::FUNCTION_OFFBOARD; template<typename ContainerAllocator> constexpr uint8_t RcChannels_<ContainerAllocator>::FUNCTION_ACRO; template<typename ContainerAllocator> constexpr uint8_t RcChannels_<ContainerAllocator>::FUNCTION_FLAPS; template<typename ContainerAllocator> constexpr uint8_t RcChannels_<ContainerAllocator>::FUNCTION_AUX_1; template<typename ContainerAllocator> constexpr uint8_t RcChannels_<ContainerAllocator>::FUNCTION_AUX_2; template<typename ContainerAllocator> constexpr uint8_t RcChannels_<ContainerAllocator>::FUNCTION_AUX_3; template<typename ContainerAllocator> constexpr uint8_t RcChannels_<ContainerAllocator>::FUNCTION_AUX_4; template<typename ContainerAllocator> constexpr uint8_t RcChannels_<ContainerAllocator>::FUNCTION_AUX_5; template<typename ContainerAllocator> constexpr uint8_t RcChannels_<ContainerAllocator>::FUNCTION_PARAM_1; template<typename ContainerAllocator> constexpr uint8_t RcChannels_<ContainerAllocator>::FUNCTION_PARAM_2; template<typename ContainerAllocator> constexpr uint8_t RcChannels_<ContainerAllocator>::FUNCTION_PARAM_3_5; template<typename ContainerAllocator> constexpr uint8_t RcChannels_<ContainerAllocator>::FUNCTION_KILLSWITCH; template<typename ContainerAllocator> constexpr uint8_t RcChannels_<ContainerAllocator>::FUNCTION_TRANSITION; template<typename ContainerAllocator> constexpr uint8_t RcChannels_<ContainerAllocator>::FUNCTION_GEAR; template<typename ContainerAllocator> constexpr uint8_t RcChannels_<ContainerAllocator>::FUNCTION_ARMSWITCH; template<typename ContainerAllocator> constexpr uint8_t RcChannels_<ContainerAllocator>::FUNCTION_STAB; template<typename ContainerAllocator> constexpr uint8_t RcChannels_<ContainerAllocator>::FUNCTION_AUX_6; template<typename ContainerAllocator> constexpr uint8_t RcChannels_<ContainerAllocator>::FUNCTION_MAN; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__RC_CHANNELS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/estimator_sensor_bias__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/EstimatorSensorBias.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/estimator_sensor_bias__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/estimator_sensor_bias__functions.h" #include "px4_msgs/msg/estimator_sensor_bias__struct.h" #ifdef __cplusplus extern "C" { #endif void EstimatorSensorBias__rosidl_typesupport_introspection_c__EstimatorSensorBias_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__EstimatorSensorBias__init(message_memory); } void EstimatorSensorBias__rosidl_typesupport_introspection_c__EstimatorSensorBias_fini_function(void * message_memory) { px4_msgs__msg__EstimatorSensorBias__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember EstimatorSensorBias__rosidl_typesupport_introspection_c__EstimatorSensorBias_message_member_array[17] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSensorBias, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSensorBias, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gyro_device_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSensorBias, gyro_device_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gyro_bias", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSensorBias, gyro_bias), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gyro_bias_limit", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSensorBias, gyro_bias_limit), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gyro_bias_variance", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSensorBias, gyro_bias_variance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "gyro_bias_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSensorBias, gyro_bias_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accel_device_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSensorBias, accel_device_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accel_bias", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSensorBias, accel_bias), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accel_bias_limit", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSensorBias, accel_bias_limit), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accel_bias_variance", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSensorBias, accel_bias_variance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "accel_bias_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSensorBias, accel_bias_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "mag_device_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSensorBias, mag_device_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "mag_bias", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSensorBias, mag_bias), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "mag_bias_limit", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSensorBias, mag_bias_limit), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "mag_bias_variance", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSensorBias, mag_bias_variance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "mag_bias_valid", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__EstimatorSensorBias, mag_bias_valid), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers EstimatorSensorBias__rosidl_typesupport_introspection_c__EstimatorSensorBias_message_members = { "px4_msgs__msg", // message namespace "EstimatorSensorBias", // message name 17, // number of fields sizeof(px4_msgs__msg__EstimatorSensorBias), EstimatorSensorBias__rosidl_typesupport_introspection_c__EstimatorSensorBias_message_member_array, // message members EstimatorSensorBias__rosidl_typesupport_introspection_c__EstimatorSensorBias_init_function, // function to initialize message memory (memory has to be allocated) EstimatorSensorBias__rosidl_typesupport_introspection_c__EstimatorSensorBias_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t EstimatorSensorBias__rosidl_typesupport_introspection_c__EstimatorSensorBias_message_type_support_handle = { 0, &EstimatorSensorBias__rosidl_typesupport_introspection_c__EstimatorSensorBias_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, EstimatorSensorBias)() { if (!EstimatorSensorBias__rosidl_typesupport_introspection_c__EstimatorSensorBias_message_type_support_handle.typesupport_identifier) { EstimatorSensorBias__rosidl_typesupport_introspection_c__EstimatorSensorBias_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &EstimatorSensorBias__rosidl_typesupport_introspection_c__EstimatorSensorBias_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_imu_status__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/VehicleImuStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_IMU_STATUS__STRUCT_HPP_ #define PX4_MSGS__MSG__VEHICLE_IMU_STATUS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__VehicleImuStatus __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__VehicleImuStatus __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct VehicleImuStatus_ { using Type = VehicleImuStatus_<ContainerAllocator>; explicit VehicleImuStatus_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->accel_device_id = 0ul; this->gyro_device_id = 0ul; std::fill<typename std::array<uint32_t, 3>::iterator, uint32_t>(this->accel_clipping.begin(), this->accel_clipping.end(), 0ul); this->accel_error_count = 0ul; this->gyro_error_count = 0ul; this->accel_rate_hz = 0.0f; this->gyro_rate_hz = 0.0f; this->accel_raw_rate_hz = 0.0f; this->gyro_raw_rate_hz = 0.0f; this->accel_vibration_metric = 0.0f; this->gyro_vibration_metric = 0.0f; this->gyro_coning_vibration = 0.0f; std::fill<typename std::array<float, 3>::iterator, float>(this->mean_accel.begin(), this->mean_accel.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->mean_gyro.begin(), this->mean_gyro.end(), 0.0f); this->temperature_accel = 0.0f; this->temperature_gyro = 0.0f; } } explicit VehicleImuStatus_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : accel_clipping(_alloc), mean_accel(_alloc), mean_gyro(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->accel_device_id = 0ul; this->gyro_device_id = 0ul; std::fill<typename std::array<uint32_t, 3>::iterator, uint32_t>(this->accel_clipping.begin(), this->accel_clipping.end(), 0ul); this->accel_error_count = 0ul; this->gyro_error_count = 0ul; this->accel_rate_hz = 0.0f; this->gyro_rate_hz = 0.0f; this->accel_raw_rate_hz = 0.0f; this->gyro_raw_rate_hz = 0.0f; this->accel_vibration_metric = 0.0f; this->gyro_vibration_metric = 0.0f; this->gyro_coning_vibration = 0.0f; std::fill<typename std::array<float, 3>::iterator, float>(this->mean_accel.begin(), this->mean_accel.end(), 0.0f); std::fill<typename std::array<float, 3>::iterator, float>(this->mean_gyro.begin(), this->mean_gyro.end(), 0.0f); this->temperature_accel = 0.0f; this->temperature_gyro = 0.0f; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _accel_device_id_type = uint32_t; _accel_device_id_type accel_device_id; using _gyro_device_id_type = uint32_t; _gyro_device_id_type gyro_device_id; using _accel_clipping_type = std::array<uint32_t, 3>; _accel_clipping_type accel_clipping; using _accel_error_count_type = uint32_t; _accel_error_count_type accel_error_count; using _gyro_error_count_type = uint32_t; _gyro_error_count_type gyro_error_count; using _accel_rate_hz_type = float; _accel_rate_hz_type accel_rate_hz; using _gyro_rate_hz_type = float; _gyro_rate_hz_type gyro_rate_hz; using _accel_raw_rate_hz_type = float; _accel_raw_rate_hz_type accel_raw_rate_hz; using _gyro_raw_rate_hz_type = float; _gyro_raw_rate_hz_type gyro_raw_rate_hz; using _accel_vibration_metric_type = float; _accel_vibration_metric_type accel_vibration_metric; using _gyro_vibration_metric_type = float; _gyro_vibration_metric_type gyro_vibration_metric; using _gyro_coning_vibration_type = float; _gyro_coning_vibration_type gyro_coning_vibration; using _mean_accel_type = std::array<float, 3>; _mean_accel_type mean_accel; using _mean_gyro_type = std::array<float, 3>; _mean_gyro_type mean_gyro; using _temperature_accel_type = float; _temperature_accel_type temperature_accel; using _temperature_gyro_type = float; _temperature_gyro_type temperature_gyro; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__accel_device_id( const uint32_t & _arg) { this->accel_device_id = _arg; return *this; } Type & set__gyro_device_id( const uint32_t & _arg) { this->gyro_device_id = _arg; return *this; } Type & set__accel_clipping( const std::array<uint32_t, 3> & _arg) { this->accel_clipping = _arg; return *this; } Type & set__accel_error_count( const uint32_t & _arg) { this->accel_error_count = _arg; return *this; } Type & set__gyro_error_count( const uint32_t & _arg) { this->gyro_error_count = _arg; return *this; } Type & set__accel_rate_hz( const float & _arg) { this->accel_rate_hz = _arg; return *this; } Type & set__gyro_rate_hz( const float & _arg) { this->gyro_rate_hz = _arg; return *this; } Type & set__accel_raw_rate_hz( const float & _arg) { this->accel_raw_rate_hz = _arg; return *this; } Type & set__gyro_raw_rate_hz( const float & _arg) { this->gyro_raw_rate_hz = _arg; return *this; } Type & set__accel_vibration_metric( const float & _arg) { this->accel_vibration_metric = _arg; return *this; } Type & set__gyro_vibration_metric( const float & _arg) { this->gyro_vibration_metric = _arg; return *this; } Type & set__gyro_coning_vibration( const float & _arg) { this->gyro_coning_vibration = _arg; return *this; } Type & set__mean_accel( const std::array<float, 3> & _arg) { this->mean_accel = _arg; return *this; } Type & set__mean_gyro( const std::array<float, 3> & _arg) { this->mean_gyro = _arg; return *this; } Type & set__temperature_accel( const float & _arg) { this->temperature_accel = _arg; return *this; } Type & set__temperature_gyro( const float & _arg) { this->temperature_gyro = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::VehicleImuStatus_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::VehicleImuStatus_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::VehicleImuStatus_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::VehicleImuStatus_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleImuStatus_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleImuStatus_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleImuStatus_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleImuStatus_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::VehicleImuStatus_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::VehicleImuStatus_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__VehicleImuStatus std::shared_ptr<px4_msgs::msg::VehicleImuStatus_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__VehicleImuStatus std::shared_ptr<px4_msgs::msg::VehicleImuStatus_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const VehicleImuStatus_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->accel_device_id != other.accel_device_id) { return false; } if (this->gyro_device_id != other.gyro_device_id) { return false; } if (this->accel_clipping != other.accel_clipping) { return false; } if (this->accel_error_count != other.accel_error_count) { return false; } if (this->gyro_error_count != other.gyro_error_count) { return false; } if (this->accel_rate_hz != other.accel_rate_hz) { return false; } if (this->gyro_rate_hz != other.gyro_rate_hz) { return false; } if (this->accel_raw_rate_hz != other.accel_raw_rate_hz) { return false; } if (this->gyro_raw_rate_hz != other.gyro_raw_rate_hz) { return false; } if (this->accel_vibration_metric != other.accel_vibration_metric) { return false; } if (this->gyro_vibration_metric != other.gyro_vibration_metric) { return false; } if (this->gyro_coning_vibration != other.gyro_coning_vibration) { return false; } if (this->mean_accel != other.mean_accel) { return false; } if (this->mean_gyro != other.mean_gyro) { return false; } if (this->temperature_accel != other.temperature_accel) { return false; } if (this->temperature_gyro != other.temperature_gyro) { return false; } return true; } bool operator!=(const VehicleImuStatus_ & other) const { return !this->operator==(other); } }; // struct VehicleImuStatus_ // alias to use template instance with default allocator using VehicleImuStatus = px4_msgs::msg::VehicleImuStatus_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__VEHICLE_IMU_STATUS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/pwm_input__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/PwmInput.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/pwm_input__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void PwmInput_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::PwmInput(_init); } void PwmInput_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::PwmInput *>(message_memory); typed_message->~PwmInput(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember PwmInput_message_member_array[4] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PwmInput, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "error_count", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PwmInput, error_count), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "pulse_width", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PwmInput, pulse_width), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "period", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::PwmInput, period), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers PwmInput_message_members = { "px4_msgs::msg", // message namespace "PwmInput", // message name 4, // number of fields sizeof(px4_msgs::msg::PwmInput), PwmInput_message_member_array, // message members PwmInput_init_function, // function to initialize message memory (memory has to be allocated) PwmInput_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t PwmInput_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &PwmInput_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::PwmInput>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::PwmInput_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, PwmInput)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::PwmInput_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/power_button_state__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/PowerButtonState.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__POWER_BUTTON_STATE__STRUCT_H_ #define PX4_MSGS__MSG__POWER_BUTTON_STATE__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'PWR_BUTTON_STATE_IDEL'. enum { px4_msgs__msg__PowerButtonState__PWR_BUTTON_STATE_IDEL = 0 }; /// Constant 'PWR_BUTTON_STATE_DOWN'. enum { px4_msgs__msg__PowerButtonState__PWR_BUTTON_STATE_DOWN = 1 }; /// Constant 'PWR_BUTTON_STATE_UP'. enum { px4_msgs__msg__PowerButtonState__PWR_BUTTON_STATE_UP = 2 }; /// Constant 'PWR_BUTTON_STATE_REQUEST_SHUTDOWN'. enum { px4_msgs__msg__PowerButtonState__PWR_BUTTON_STATE_REQUEST_SHUTDOWN = 3 }; // Struct defined in msg/PowerButtonState in the package px4_msgs. typedef struct px4_msgs__msg__PowerButtonState { uint64_t timestamp; uint8_t event; } px4_msgs__msg__PowerButtonState; // Struct for a sequence of px4_msgs__msg__PowerButtonState. typedef struct px4_msgs__msg__PowerButtonState__Sequence { px4_msgs__msg__PowerButtonState * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__PowerButtonState__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__POWER_BUTTON_STATE__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/tecs_status__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/TecsStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TECS_STATUS__FUNCTIONS_H_ #define PX4_MSGS__MSG__TECS_STATUS__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/tecs_status__struct.h" /// Initialize msg/TecsStatus message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__TecsStatus * )) before or use * px4_msgs__msg__TecsStatus__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__TecsStatus__init(px4_msgs__msg__TecsStatus * msg); /// Finalize msg/TecsStatus message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__TecsStatus__fini(px4_msgs__msg__TecsStatus * msg); /// Create msg/TecsStatus message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__TecsStatus__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__TecsStatus * px4_msgs__msg__TecsStatus__create(); /// Destroy msg/TecsStatus message. /** * It calls * px4_msgs__msg__TecsStatus__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__TecsStatus__destroy(px4_msgs__msg__TecsStatus * msg); /// Initialize array of msg/TecsStatus messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__TecsStatus__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__TecsStatus__Sequence__init(px4_msgs__msg__TecsStatus__Sequence * array, size_t size); /// Finalize array of msg/TecsStatus messages. /** * It calls * px4_msgs__msg__TecsStatus__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__TecsStatus__Sequence__fini(px4_msgs__msg__TecsStatus__Sequence * array); /// Create array of msg/TecsStatus messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__TecsStatus__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__TecsStatus__Sequence * px4_msgs__msg__TecsStatus__Sequence__create(size_t size); /// Destroy array of msg/TecsStatus messages. /** * It calls * px4_msgs__msg__TecsStatus__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__TecsStatus__Sequence__destroy(px4_msgs__msg__TecsStatus__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__TECS_STATUS__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/commander_state__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/CommanderState.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__COMMANDER_STATE__STRUCT_HPP_ #define PX4_MSGS__MSG__COMMANDER_STATE__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__CommanderState __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__CommanderState __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct CommanderState_ { using Type = CommanderState_<ContainerAllocator>; explicit CommanderState_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->main_state = 0; this->main_state_changes = 0; } } explicit CommanderState_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->main_state = 0; this->main_state_changes = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _main_state_type = uint8_t; _main_state_type main_state; using _main_state_changes_type = uint16_t; _main_state_changes_type main_state_changes; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__main_state( const uint8_t & _arg) { this->main_state = _arg; return *this; } Type & set__main_state_changes( const uint16_t & _arg) { this->main_state_changes = _arg; return *this; } // constant declarations static constexpr uint8_t MAIN_STATE_MANUAL = 0u; static constexpr uint8_t MAIN_STATE_ALTCTL = 1u; static constexpr uint8_t MAIN_STATE_POSCTL = 2u; static constexpr uint8_t MAIN_STATE_AUTO_MISSION = 3u; static constexpr uint8_t MAIN_STATE_AUTO_LOITER = 4u; static constexpr uint8_t MAIN_STATE_AUTO_RTL = 5u; static constexpr uint8_t MAIN_STATE_ACRO = 6u; static constexpr uint8_t MAIN_STATE_OFFBOARD = 7u; static constexpr uint8_t MAIN_STATE_STAB = 8u; static constexpr uint8_t MAIN_STATE_AUTO_TAKEOFF = 10u; static constexpr uint8_t MAIN_STATE_AUTO_LAND = 11u; static constexpr uint8_t MAIN_STATE_AUTO_FOLLOW_TARGET = 12u; static constexpr uint8_t MAIN_STATE_AUTO_PRECLAND = 13u; static constexpr uint8_t MAIN_STATE_ORBIT = 14u; static constexpr uint8_t MAIN_STATE_MAX = 15u; // pointer types using RawPtr = px4_msgs::msg::CommanderState_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::CommanderState_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::CommanderState_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::CommanderState_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::CommanderState_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::CommanderState_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::CommanderState_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::CommanderState_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::CommanderState_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::CommanderState_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__CommanderState std::shared_ptr<px4_msgs::msg::CommanderState_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__CommanderState std::shared_ptr<px4_msgs::msg::CommanderState_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const CommanderState_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->main_state != other.main_state) { return false; } if (this->main_state_changes != other.main_state_changes) { return false; } return true; } bool operator!=(const CommanderState_ & other) const { return !this->operator==(other); } }; // struct CommanderState_ // alias to use template instance with default allocator using CommanderState = px4_msgs::msg::CommanderState_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t CommanderState_<ContainerAllocator>::MAIN_STATE_MANUAL; template<typename ContainerAllocator> constexpr uint8_t CommanderState_<ContainerAllocator>::MAIN_STATE_ALTCTL; template<typename ContainerAllocator> constexpr uint8_t CommanderState_<ContainerAllocator>::MAIN_STATE_POSCTL; template<typename ContainerAllocator> constexpr uint8_t CommanderState_<ContainerAllocator>::MAIN_STATE_AUTO_MISSION; template<typename ContainerAllocator> constexpr uint8_t CommanderState_<ContainerAllocator>::MAIN_STATE_AUTO_LOITER; template<typename ContainerAllocator> constexpr uint8_t CommanderState_<ContainerAllocator>::MAIN_STATE_AUTO_RTL; template<typename ContainerAllocator> constexpr uint8_t CommanderState_<ContainerAllocator>::MAIN_STATE_ACRO; template<typename ContainerAllocator> constexpr uint8_t CommanderState_<ContainerAllocator>::MAIN_STATE_OFFBOARD; template<typename ContainerAllocator> constexpr uint8_t CommanderState_<ContainerAllocator>::MAIN_STATE_STAB; template<typename ContainerAllocator> constexpr uint8_t CommanderState_<ContainerAllocator>::MAIN_STATE_AUTO_TAKEOFF; template<typename ContainerAllocator> constexpr uint8_t CommanderState_<ContainerAllocator>::MAIN_STATE_AUTO_LAND; template<typename ContainerAllocator> constexpr uint8_t CommanderState_<ContainerAllocator>::MAIN_STATE_AUTO_FOLLOW_TARGET; template<typename ContainerAllocator> constexpr uint8_t CommanderState_<ContainerAllocator>::MAIN_STATE_AUTO_PRECLAND; template<typename ContainerAllocator> constexpr uint8_t CommanderState_<ContainerAllocator>::MAIN_STATE_ORBIT; template<typename ContainerAllocator> constexpr uint8_t CommanderState_<ContainerAllocator>::MAIN_STATE_MAX; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__COMMANDER_STATE__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_trajectory_bezier__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/VehicleTrajectoryBezier.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/vehicle_trajectory_bezier__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/vehicle_trajectory_bezier__functions.h" #include "px4_msgs/msg/vehicle_trajectory_bezier__struct.h" // Include directives for member types // Member `control_points` #include "px4_msgs/msg/trajectory_bezier.h" // Member `control_points` #include "px4_msgs/msg/trajectory_bezier__rosidl_typesupport_introspection_c.h" #ifdef __cplusplus extern "C" { #endif void VehicleTrajectoryBezier__rosidl_typesupport_introspection_c__VehicleTrajectoryBezier_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__VehicleTrajectoryBezier__init(message_memory); } void VehicleTrajectoryBezier__rosidl_typesupport_introspection_c__VehicleTrajectoryBezier_fini_function(void * message_memory) { px4_msgs__msg__VehicleTrajectoryBezier__fini(message_memory); } size_t VehicleTrajectoryBezier__rosidl_typesupport_introspection_c__size_function__TrajectoryBezier__control_points( const void * untyped_member) { (void)untyped_member; return 5; } const void * VehicleTrajectoryBezier__rosidl_typesupport_introspection_c__get_const_function__TrajectoryBezier__control_points( const void * untyped_member, size_t index) { const px4_msgs__msg__TrajectoryBezier ** member = (const px4_msgs__msg__TrajectoryBezier **)(untyped_member); return &(*member)[index]; } void * VehicleTrajectoryBezier__rosidl_typesupport_introspection_c__get_function__TrajectoryBezier__control_points( void * untyped_member, size_t index) { px4_msgs__msg__TrajectoryBezier ** member = (px4_msgs__msg__TrajectoryBezier **)(untyped_member); return &(*member)[index]; } static rosidl_typesupport_introspection_c__MessageMember VehicleTrajectoryBezier__rosidl_typesupport_introspection_c__VehicleTrajectoryBezier_message_member_array[3] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleTrajectoryBezier, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "control_points", // name rosidl_typesupport_introspection_c__ROS_TYPE_MESSAGE, // type 0, // upper bound of string NULL, // members of sub message (initialized later) true, // is array 5, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleTrajectoryBezier, control_points), // bytes offset in struct NULL, // default value VehicleTrajectoryBezier__rosidl_typesupport_introspection_c__size_function__TrajectoryBezier__control_points, // size() function pointer VehicleTrajectoryBezier__rosidl_typesupport_introspection_c__get_const_function__TrajectoryBezier__control_points, // get_const(index) function pointer VehicleTrajectoryBezier__rosidl_typesupport_introspection_c__get_function__TrajectoryBezier__control_points, // get(index) function pointer NULL // resize(index) function pointer }, { "bezier_order", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleTrajectoryBezier, bezier_order), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers VehicleTrajectoryBezier__rosidl_typesupport_introspection_c__VehicleTrajectoryBezier_message_members = { "px4_msgs__msg", // message namespace "VehicleTrajectoryBezier", // message name 3, // number of fields sizeof(px4_msgs__msg__VehicleTrajectoryBezier), VehicleTrajectoryBezier__rosidl_typesupport_introspection_c__VehicleTrajectoryBezier_message_member_array, // message members VehicleTrajectoryBezier__rosidl_typesupport_introspection_c__VehicleTrajectoryBezier_init_function, // function to initialize message memory (memory has to be allocated) VehicleTrajectoryBezier__rosidl_typesupport_introspection_c__VehicleTrajectoryBezier_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t VehicleTrajectoryBezier__rosidl_typesupport_introspection_c__VehicleTrajectoryBezier_message_type_support_handle = { 0, &VehicleTrajectoryBezier__rosidl_typesupport_introspection_c__VehicleTrajectoryBezier_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, VehicleTrajectoryBezier)() { VehicleTrajectoryBezier__rosidl_typesupport_introspection_c__VehicleTrajectoryBezier_message_member_array[1].members_ = ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, TrajectoryBezier)(); if (!VehicleTrajectoryBezier__rosidl_typesupport_introspection_c__VehicleTrajectoryBezier_message_type_support_handle.typesupport_identifier) { VehicleTrajectoryBezier__rosidl_typesupport_introspection_c__VehicleTrajectoryBezier_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &VehicleTrajectoryBezier__rosidl_typesupport_introspection_c__VehicleTrajectoryBezier_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/position_setpoint_triplet__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/PositionSetpointTriplet.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__POSITION_SETPOINT_TRIPLET__STRUCT_H_ #define PX4_MSGS__MSG__POSITION_SETPOINT_TRIPLET__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Include directives for member types // Member 'previous' // Member 'current' // Member 'next' #include "px4_msgs/msg/position_setpoint__struct.h" // Struct defined in msg/PositionSetpointTriplet in the package px4_msgs. typedef struct px4_msgs__msg__PositionSetpointTriplet { uint64_t timestamp; px4_msgs__msg__PositionSetpoint previous; px4_msgs__msg__PositionSetpoint current; px4_msgs__msg__PositionSetpoint next; } px4_msgs__msg__PositionSetpointTriplet; // Struct for a sequence of px4_msgs__msg__PositionSetpointTriplet. typedef struct px4_msgs__msg__PositionSetpointTriplet__Sequence { px4_msgs__msg__PositionSetpointTriplet * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__PositionSetpointTriplet__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__POSITION_SETPOINT_TRIPLET__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/estimator_status_flags__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/EstimatorStatusFlags.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/estimator_status_flags__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void EstimatorStatusFlags_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::EstimatorStatusFlags(_init); } void EstimatorStatusFlags_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::EstimatorStatusFlags *>(message_memory); typed_message->~EstimatorStatusFlags(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember EstimatorStatusFlags_message_member_array[63] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "control_status_changes", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, control_status_changes), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cs_tilt_align", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, cs_tilt_align), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cs_yaw_align", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, cs_yaw_align), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cs_gps", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, cs_gps), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cs_opt_flow", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, cs_opt_flow), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cs_mag_hdg", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, cs_mag_hdg), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cs_mag_3d", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, cs_mag_3d), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cs_mag_dec", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, cs_mag_dec), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cs_in_air", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, cs_in_air), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cs_wind", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, cs_wind), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cs_baro_hgt", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, cs_baro_hgt), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cs_rng_hgt", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, cs_rng_hgt), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cs_gps_hgt", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, cs_gps_hgt), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cs_ev_pos", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, cs_ev_pos), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cs_ev_yaw", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, cs_ev_yaw), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cs_ev_hgt", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, cs_ev_hgt), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cs_fuse_beta", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, cs_fuse_beta), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cs_mag_field_disturbed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, cs_mag_field_disturbed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cs_fixed_wing", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, cs_fixed_wing), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cs_mag_fault", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, cs_mag_fault), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cs_fuse_aspd", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, cs_fuse_aspd), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cs_gnd_effect", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, cs_gnd_effect), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cs_rng_stuck", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, cs_rng_stuck), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cs_gps_yaw", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, cs_gps_yaw), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cs_mag_aligned_in_flight", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, cs_mag_aligned_in_flight), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cs_ev_vel", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, cs_ev_vel), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cs_synthetic_mag_z", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, cs_synthetic_mag_z), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "cs_vehicle_at_rest", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, cs_vehicle_at_rest), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "fault_status_changes", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, fault_status_changes), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "fs_bad_mag_x", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, fs_bad_mag_x), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "fs_bad_mag_y", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, fs_bad_mag_y), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "fs_bad_mag_z", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, fs_bad_mag_z), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "fs_bad_hdg", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, fs_bad_hdg), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "fs_bad_mag_decl", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, fs_bad_mag_decl), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "fs_bad_airspeed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, fs_bad_airspeed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "fs_bad_sideslip", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, fs_bad_sideslip), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "fs_bad_optflow_x", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, fs_bad_optflow_x), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "fs_bad_optflow_y", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, fs_bad_optflow_y), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "fs_bad_vel_n", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, fs_bad_vel_n), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "fs_bad_vel_e", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, fs_bad_vel_e), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "fs_bad_vel_d", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, fs_bad_vel_d), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "fs_bad_pos_n", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, fs_bad_pos_n), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "fs_bad_pos_e", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, fs_bad_pos_e), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "fs_bad_pos_d", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, fs_bad_pos_d), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "fs_bad_acc_bias", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, fs_bad_acc_bias), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "fs_bad_acc_vertical", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, fs_bad_acc_vertical), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "fs_bad_acc_clipping", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, fs_bad_acc_clipping), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "innovation_fault_status_changes", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, innovation_fault_status_changes), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "reject_hor_vel", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, reject_hor_vel), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "reject_ver_vel", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, reject_ver_vel), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "reject_hor_pos", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, reject_hor_pos), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "reject_ver_pos", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, reject_ver_pos), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "reject_mag_x", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, reject_mag_x), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "reject_mag_y", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, reject_mag_y), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "reject_mag_z", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, reject_mag_z), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "reject_yaw", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, reject_yaw), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "reject_airspeed", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, reject_airspeed), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "reject_sideslip", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, reject_sideslip), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "reject_hagl", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, reject_hagl), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "reject_optflow_x", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, reject_optflow_x), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "reject_optflow_y", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_BOOLEAN, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::EstimatorStatusFlags, reject_optflow_y), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers EstimatorStatusFlags_message_members = { "px4_msgs::msg", // message namespace "EstimatorStatusFlags", // message name 63, // number of fields sizeof(px4_msgs::msg::EstimatorStatusFlags), EstimatorStatusFlags_message_member_array, // message members EstimatorStatusFlags_init_function, // function to initialize message memory (memory has to be allocated) EstimatorStatusFlags_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t EstimatorStatusFlags_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &EstimatorStatusFlags_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::EstimatorStatusFlags>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EstimatorStatusFlags_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, EstimatorStatusFlags)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::EstimatorStatusFlags_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_controls_virtual_mc__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/ActuatorControlsVirtualMc.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS_VIRTUAL_MC__FUNCTIONS_H_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS_VIRTUAL_MC__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/actuator_controls_virtual_mc__struct.h" /// Initialize msg/ActuatorControlsVirtualMc message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__ActuatorControlsVirtualMc * )) before or use * px4_msgs__msg__ActuatorControlsVirtualMc__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__ActuatorControlsVirtualMc__init(px4_msgs__msg__ActuatorControlsVirtualMc * msg); /// Finalize msg/ActuatorControlsVirtualMc message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__ActuatorControlsVirtualMc__fini(px4_msgs__msg__ActuatorControlsVirtualMc * msg); /// Create msg/ActuatorControlsVirtualMc message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__ActuatorControlsVirtualMc__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__ActuatorControlsVirtualMc * px4_msgs__msg__ActuatorControlsVirtualMc__create(); /// Destroy msg/ActuatorControlsVirtualMc message. /** * It calls * px4_msgs__msg__ActuatorControlsVirtualMc__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__ActuatorControlsVirtualMc__destroy(px4_msgs__msg__ActuatorControlsVirtualMc * msg); /// Initialize array of msg/ActuatorControlsVirtualMc messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__ActuatorControlsVirtualMc__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__ActuatorControlsVirtualMc__Sequence__init(px4_msgs__msg__ActuatorControlsVirtualMc__Sequence * array, size_t size); /// Finalize array of msg/ActuatorControlsVirtualMc messages. /** * It calls * px4_msgs__msg__ActuatorControlsVirtualMc__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__ActuatorControlsVirtualMc__Sequence__fini(px4_msgs__msg__ActuatorControlsVirtualMc__Sequence * array); /// Create array of msg/ActuatorControlsVirtualMc messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__ActuatorControlsVirtualMc__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__ActuatorControlsVirtualMc__Sequence * px4_msgs__msg__ActuatorControlsVirtualMc__Sequence__create(size_t size); /// Destroy array of msg/ActuatorControlsVirtualMc messages. /** * It calls * px4_msgs__msg__ActuatorControlsVirtualMc__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__ActuatorControlsVirtualMc__Sequence__destroy(px4_msgs__msg__ActuatorControlsVirtualMc__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS_VIRTUAL_MC__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_control_mode__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/VehicleControlMode.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/vehicle_control_mode__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/vehicle_control_mode__functions.h" #include "px4_msgs/msg/vehicle_control_mode__struct.h" #ifdef __cplusplus extern "C" { #endif void VehicleControlMode__rosidl_typesupport_introspection_c__VehicleControlMode_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__VehicleControlMode__init(message_memory); } void VehicleControlMode__rosidl_typesupport_introspection_c__VehicleControlMode_fini_function(void * message_memory) { px4_msgs__msg__VehicleControlMode__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember VehicleControlMode__rosidl_typesupport_introspection_c__VehicleControlMode_message_member_array[14] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleControlMode, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "flag_armed", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleControlMode, flag_armed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "flag_external_manual_override_ok", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleControlMode, flag_external_manual_override_ok), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "flag_control_manual_enabled", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleControlMode, flag_control_manual_enabled), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "flag_control_auto_enabled", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleControlMode, flag_control_auto_enabled), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "flag_control_offboard_enabled", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleControlMode, flag_control_offboard_enabled), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "flag_control_rates_enabled", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleControlMode, flag_control_rates_enabled), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "flag_control_attitude_enabled", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleControlMode, flag_control_attitude_enabled), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "flag_control_acceleration_enabled", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleControlMode, flag_control_acceleration_enabled), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "flag_control_velocity_enabled", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleControlMode, flag_control_velocity_enabled), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "flag_control_position_enabled", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleControlMode, flag_control_position_enabled), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "flag_control_altitude_enabled", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleControlMode, flag_control_altitude_enabled), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "flag_control_climb_rate_enabled", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleControlMode, flag_control_climb_rate_enabled), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "flag_control_termination_enabled", // name rosidl_typesupport_introspection_c__ROS_TYPE_BOOLEAN, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleControlMode, flag_control_termination_enabled), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers VehicleControlMode__rosidl_typesupport_introspection_c__VehicleControlMode_message_members = { "px4_msgs__msg", // message namespace "VehicleControlMode", // message name 14, // number of fields sizeof(px4_msgs__msg__VehicleControlMode), VehicleControlMode__rosidl_typesupport_introspection_c__VehicleControlMode_message_member_array, // message members VehicleControlMode__rosidl_typesupport_introspection_c__VehicleControlMode_init_function, // function to initialize message memory (memory has to be allocated) VehicleControlMode__rosidl_typesupport_introspection_c__VehicleControlMode_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t VehicleControlMode__rosidl_typesupport_introspection_c__VehicleControlMode_message_type_support_handle = { 0, &VehicleControlMode__rosidl_typesupport_introspection_c__VehicleControlMode_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, VehicleControlMode)() { if (!VehicleControlMode__rosidl_typesupport_introspection_c__VehicleControlMode_message_type_support_handle.typesupport_identifier) { VehicleControlMode__rosidl_typesupport_introspection_c__VehicleControlMode_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &VehicleControlMode__rosidl_typesupport_introspection_c__VehicleControlMode_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/distance_sensor.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/DistanceSensor.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__DISTANCE_SENSOR_H_ #define PX4_MSGS__MSG__DISTANCE_SENSOR_H_ #include "px4_msgs/msg/distance_sensor__struct.h" #include "px4_msgs/msg/distance_sensor__functions.h" #include "px4_msgs/msg/distance_sensor__type_support.h" #endif // PX4_MSGS__MSG__DISTANCE_SENSOR_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/orb_test_medium_queue_poll.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORB_TEST_MEDIUM_QUEUE_POLL_HPP_ #define PX4_MSGS__MSG__ORB_TEST_MEDIUM_QUEUE_POLL_HPP_ #include "px4_msgs/msg/orb_test_medium_queue_poll__struct.hpp" #include "px4_msgs/msg/orb_test_medium_queue_poll__traits.hpp" #endif // PX4_MSGS__MSG__ORB_TEST_MEDIUM_QUEUE_POLL_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/position_setpoint__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/PositionSetpoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__POSITION_SETPOINT__STRUCT_HPP_ #define PX4_MSGS__MSG__POSITION_SETPOINT__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__PositionSetpoint __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__PositionSetpoint __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct PositionSetpoint_ { using Type = PositionSetpoint_<ContainerAllocator>; explicit PositionSetpoint_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->valid = false; this->type = 0; this->vx = 0.0f; this->vy = 0.0f; this->vz = 0.0f; this->velocity_valid = false; this->velocity_frame = 0; this->alt_valid = false; this->lat = 0.0; this->lon = 0.0; this->alt = 0.0f; this->yaw = 0.0f; this->yaw_valid = false; this->yawspeed = 0.0f; this->yawspeed_valid = false; this->landing_gear = 0; this->loiter_radius = 0.0f; this->loiter_direction = 0; this->acceptance_radius = 0.0f; this->cruising_speed = 0.0f; this->cruising_throttle = 0.0f; this->disable_weather_vane = false; } } explicit PositionSetpoint_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->valid = false; this->type = 0; this->vx = 0.0f; this->vy = 0.0f; this->vz = 0.0f; this->velocity_valid = false; this->velocity_frame = 0; this->alt_valid = false; this->lat = 0.0; this->lon = 0.0; this->alt = 0.0f; this->yaw = 0.0f; this->yaw_valid = false; this->yawspeed = 0.0f; this->yawspeed_valid = false; this->landing_gear = 0; this->loiter_radius = 0.0f; this->loiter_direction = 0; this->acceptance_radius = 0.0f; this->cruising_speed = 0.0f; this->cruising_throttle = 0.0f; this->disable_weather_vane = false; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _valid_type = bool; _valid_type valid; using _type_type = uint8_t; _type_type type; using _vx_type = float; _vx_type vx; using _vy_type = float; _vy_type vy; using _vz_type = float; _vz_type vz; using _velocity_valid_type = bool; _velocity_valid_type velocity_valid; using _velocity_frame_type = uint8_t; _velocity_frame_type velocity_frame; using _alt_valid_type = bool; _alt_valid_type alt_valid; using _lat_type = double; _lat_type lat; using _lon_type = double; _lon_type lon; using _alt_type = float; _alt_type alt; using _yaw_type = float; _yaw_type yaw; using _yaw_valid_type = bool; _yaw_valid_type yaw_valid; using _yawspeed_type = float; _yawspeed_type yawspeed; using _yawspeed_valid_type = bool; _yawspeed_valid_type yawspeed_valid; using _landing_gear_type = int8_t; _landing_gear_type landing_gear; using _loiter_radius_type = float; _loiter_radius_type loiter_radius; using _loiter_direction_type = int8_t; _loiter_direction_type loiter_direction; using _acceptance_radius_type = float; _acceptance_radius_type acceptance_radius; using _cruising_speed_type = float; _cruising_speed_type cruising_speed; using _cruising_throttle_type = float; _cruising_throttle_type cruising_throttle; using _disable_weather_vane_type = bool; _disable_weather_vane_type disable_weather_vane; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__valid( const bool & _arg) { this->valid = _arg; return *this; } Type & set__type( const uint8_t & _arg) { this->type = _arg; return *this; } Type & set__vx( const float & _arg) { this->vx = _arg; return *this; } Type & set__vy( const float & _arg) { this->vy = _arg; return *this; } Type & set__vz( const float & _arg) { this->vz = _arg; return *this; } Type & set__velocity_valid( const bool & _arg) { this->velocity_valid = _arg; return *this; } Type & set__velocity_frame( const uint8_t & _arg) { this->velocity_frame = _arg; return *this; } Type & set__alt_valid( const bool & _arg) { this->alt_valid = _arg; return *this; } Type & set__lat( const double & _arg) { this->lat = _arg; return *this; } Type & set__lon( const double & _arg) { this->lon = _arg; return *this; } Type & set__alt( const float & _arg) { this->alt = _arg; return *this; } Type & set__yaw( const float & _arg) { this->yaw = _arg; return *this; } Type & set__yaw_valid( const bool & _arg) { this->yaw_valid = _arg; return *this; } Type & set__yawspeed( const float & _arg) { this->yawspeed = _arg; return *this; } Type & set__yawspeed_valid( const bool & _arg) { this->yawspeed_valid = _arg; return *this; } Type & set__landing_gear( const int8_t & _arg) { this->landing_gear = _arg; return *this; } Type & set__loiter_radius( const float & _arg) { this->loiter_radius = _arg; return *this; } Type & set__loiter_direction( const int8_t & _arg) { this->loiter_direction = _arg; return *this; } Type & set__acceptance_radius( const float & _arg) { this->acceptance_radius = _arg; return *this; } Type & set__cruising_speed( const float & _arg) { this->cruising_speed = _arg; return *this; } Type & set__cruising_throttle( const float & _arg) { this->cruising_throttle = _arg; return *this; } Type & set__disable_weather_vane( const bool & _arg) { this->disable_weather_vane = _arg; return *this; } // constant declarations static constexpr uint8_t SETPOINT_TYPE_POSITION = 0u; static constexpr uint8_t SETPOINT_TYPE_VELOCITY = 1u; static constexpr uint8_t SETPOINT_TYPE_LOITER = 2u; static constexpr uint8_t SETPOINT_TYPE_TAKEOFF = 3u; static constexpr uint8_t SETPOINT_TYPE_LAND = 4u; static constexpr uint8_t SETPOINT_TYPE_IDLE = 5u; static constexpr uint8_t SETPOINT_TYPE_FOLLOW_TARGET = 6u; static constexpr uint8_t VELOCITY_FRAME_LOCAL_NED = 1u; static constexpr uint8_t VELOCITY_FRAME_BODY_NED = 8u; // pointer types using RawPtr = px4_msgs::msg::PositionSetpoint_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::PositionSetpoint_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::PositionSetpoint_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::PositionSetpoint_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::PositionSetpoint_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::PositionSetpoint_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::PositionSetpoint_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::PositionSetpoint_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::PositionSetpoint_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::PositionSetpoint_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__PositionSetpoint std::shared_ptr<px4_msgs::msg::PositionSetpoint_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__PositionSetpoint std::shared_ptr<px4_msgs::msg::PositionSetpoint_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const PositionSetpoint_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->valid != other.valid) { return false; } if (this->type != other.type) { return false; } if (this->vx != other.vx) { return false; } if (this->vy != other.vy) { return false; } if (this->vz != other.vz) { return false; } if (this->velocity_valid != other.velocity_valid) { return false; } if (this->velocity_frame != other.velocity_frame) { return false; } if (this->alt_valid != other.alt_valid) { return false; } if (this->lat != other.lat) { return false; } if (this->lon != other.lon) { return false; } if (this->alt != other.alt) { return false; } if (this->yaw != other.yaw) { return false; } if (this->yaw_valid != other.yaw_valid) { return false; } if (this->yawspeed != other.yawspeed) { return false; } if (this->yawspeed_valid != other.yawspeed_valid) { return false; } if (this->landing_gear != other.landing_gear) { return false; } if (this->loiter_radius != other.loiter_radius) { return false; } if (this->loiter_direction != other.loiter_direction) { return false; } if (this->acceptance_radius != other.acceptance_radius) { return false; } if (this->cruising_speed != other.cruising_speed) { return false; } if (this->cruising_throttle != other.cruising_throttle) { return false; } if (this->disable_weather_vane != other.disable_weather_vane) { return false; } return true; } bool operator!=(const PositionSetpoint_ & other) const { return !this->operator==(other); } }; // struct PositionSetpoint_ // alias to use template instance with default allocator using PositionSetpoint = px4_msgs::msg::PositionSetpoint_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t PositionSetpoint_<ContainerAllocator>::SETPOINT_TYPE_POSITION; template<typename ContainerAllocator> constexpr uint8_t PositionSetpoint_<ContainerAllocator>::SETPOINT_TYPE_VELOCITY; template<typename ContainerAllocator> constexpr uint8_t PositionSetpoint_<ContainerAllocator>::SETPOINT_TYPE_LOITER; template<typename ContainerAllocator> constexpr uint8_t PositionSetpoint_<ContainerAllocator>::SETPOINT_TYPE_TAKEOFF; template<typename ContainerAllocator> constexpr uint8_t PositionSetpoint_<ContainerAllocator>::SETPOINT_TYPE_LAND; template<typename ContainerAllocator> constexpr uint8_t PositionSetpoint_<ContainerAllocator>::SETPOINT_TYPE_IDLE; template<typename ContainerAllocator> constexpr uint8_t PositionSetpoint_<ContainerAllocator>::SETPOINT_TYPE_FOLLOW_TARGET; template<typename ContainerAllocator> constexpr uint8_t PositionSetpoint_<ContainerAllocator>::VELOCITY_FRAME_LOCAL_NED; template<typename ContainerAllocator> constexpr uint8_t PositionSetpoint_<ContainerAllocator>::VELOCITY_FRAME_BODY_NED; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__POSITION_SETPOINT__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/sensor_correction__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/SensorCorrection.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/sensor_correction__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__SensorCorrection__init(px4_msgs__msg__SensorCorrection * msg) { if (!msg) { return false; } // timestamp // gyro_device_ids // gyro_offset_0 // gyro_offset_1 // gyro_offset_2 // gyro_offset_3 // accel_device_ids // accel_offset_0 // accel_offset_1 // accel_offset_2 // accel_offset_3 // baro_device_ids // baro_offset_0 // baro_offset_1 // baro_offset_2 // baro_offset_3 return true; } void px4_msgs__msg__SensorCorrection__fini(px4_msgs__msg__SensorCorrection * msg) { if (!msg) { return; } // timestamp // gyro_device_ids // gyro_offset_0 // gyro_offset_1 // gyro_offset_2 // gyro_offset_3 // accel_device_ids // accel_offset_0 // accel_offset_1 // accel_offset_2 // accel_offset_3 // baro_device_ids // baro_offset_0 // baro_offset_1 // baro_offset_2 // baro_offset_3 } px4_msgs__msg__SensorCorrection * px4_msgs__msg__SensorCorrection__create() { px4_msgs__msg__SensorCorrection * msg = (px4_msgs__msg__SensorCorrection *)malloc(sizeof(px4_msgs__msg__SensorCorrection)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__SensorCorrection)); bool success = px4_msgs__msg__SensorCorrection__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__SensorCorrection__destroy(px4_msgs__msg__SensorCorrection * msg) { if (msg) { px4_msgs__msg__SensorCorrection__fini(msg); } free(msg); } bool px4_msgs__msg__SensorCorrection__Sequence__init(px4_msgs__msg__SensorCorrection__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__SensorCorrection * data = NULL; if (size) { data = (px4_msgs__msg__SensorCorrection *)calloc(size, sizeof(px4_msgs__msg__SensorCorrection)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__SensorCorrection__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__SensorCorrection__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__SensorCorrection__Sequence__fini(px4_msgs__msg__SensorCorrection__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__SensorCorrection__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__SensorCorrection__Sequence * px4_msgs__msg__SensorCorrection__Sequence__create(size_t size) { px4_msgs__msg__SensorCorrection__Sequence * array = (px4_msgs__msg__SensorCorrection__Sequence *)malloc(sizeof(px4_msgs__msg__SensorCorrection__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__SensorCorrection__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__SensorCorrection__Sequence__destroy(px4_msgs__msg__SensorCorrection__Sequence * array) { if (array) { px4_msgs__msg__SensorCorrection__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/collision_report__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/CollisionReport.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/collision_report__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__CollisionReport__init(px4_msgs__msg__CollisionReport * msg) { if (!msg) { return false; } // timestamp // src // id // action // threat_level // time_to_minimum_delta // altitude_minimum_delta // horizontal_minimum_delta return true; } void px4_msgs__msg__CollisionReport__fini(px4_msgs__msg__CollisionReport * msg) { if (!msg) { return; } // timestamp // src // id // action // threat_level // time_to_minimum_delta // altitude_minimum_delta // horizontal_minimum_delta } px4_msgs__msg__CollisionReport * px4_msgs__msg__CollisionReport__create() { px4_msgs__msg__CollisionReport * msg = (px4_msgs__msg__CollisionReport *)malloc(sizeof(px4_msgs__msg__CollisionReport)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__CollisionReport)); bool success = px4_msgs__msg__CollisionReport__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__CollisionReport__destroy(px4_msgs__msg__CollisionReport * msg) { if (msg) { px4_msgs__msg__CollisionReport__fini(msg); } free(msg); } bool px4_msgs__msg__CollisionReport__Sequence__init(px4_msgs__msg__CollisionReport__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__CollisionReport * data = NULL; if (size) { data = (px4_msgs__msg__CollisionReport *)calloc(size, sizeof(px4_msgs__msg__CollisionReport)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__CollisionReport__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__CollisionReport__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__CollisionReport__Sequence__fini(px4_msgs__msg__CollisionReport__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__CollisionReport__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__CollisionReport__Sequence * px4_msgs__msg__CollisionReport__Sequence__create(size_t size) { px4_msgs__msg__CollisionReport__Sequence * array = (px4_msgs__msg__CollisionReport__Sequence *)malloc(sizeof(px4_msgs__msg__CollisionReport__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__CollisionReport__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__CollisionReport__Sequence__destroy(px4_msgs__msg__CollisionReport__Sequence * array) { if (array) { px4_msgs__msg__CollisionReport__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_estimator_selector_status.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/EstimatorSelectorStatus.idl # generated code does not contain a copyright notice # Import statements for member types # Member 'combined_test_ratio' # Member 'relative_test_ratio' # Member 'accumulated_gyro_error' # Member 'accumulated_accel_error' import numpy # noqa: E402, I100 import rosidl_parser.definition # noqa: E402, I100 class Metaclass_EstimatorSelectorStatus(type): """Metaclass of message 'EstimatorSelectorStatus'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.EstimatorSelectorStatus') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__estimator_selector_status cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__estimator_selector_status cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__estimator_selector_status cls._TYPE_SUPPORT = module.type_support_msg__msg__estimator_selector_status cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__estimator_selector_status @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class EstimatorSelectorStatus(metaclass=Metaclass_EstimatorSelectorStatus): """Message class 'EstimatorSelectorStatus'.""" __slots__ = [ '_timestamp', '_primary_instance', '_instances_available', '_instance_changed_count', '_last_instance_change', '_accel_device_id', '_baro_device_id', '_gyro_device_id', '_mag_device_id', '_combined_test_ratio', '_relative_test_ratio', '_healthy', '_accumulated_gyro_error', '_accumulated_accel_error', '_gyro_fault_detected', '_accel_fault_detected', ] _fields_and_field_types = { 'timestamp': 'uint64', 'primary_instance': 'uint8', 'instances_available': 'uint8', 'instance_changed_count': 'uint32', 'last_instance_change': 'uint64', 'accel_device_id': 'uint32', 'baro_device_id': 'uint32', 'gyro_device_id': 'uint32', 'mag_device_id': 'uint32', 'combined_test_ratio': 'float[9]', 'relative_test_ratio': 'float[9]', 'healthy': 'boolean[9]', 'accumulated_gyro_error': 'float[4]', 'accumulated_accel_error': 'float[4]', 'gyro_fault_detected': 'boolean', 'accel_fault_detected': 'boolean', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 9), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 9), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('boolean'), 9), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 4), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 4), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.primary_instance = kwargs.get('primary_instance', int()) self.instances_available = kwargs.get('instances_available', int()) self.instance_changed_count = kwargs.get('instance_changed_count', int()) self.last_instance_change = kwargs.get('last_instance_change', int()) self.accel_device_id = kwargs.get('accel_device_id', int()) self.baro_device_id = kwargs.get('baro_device_id', int()) self.gyro_device_id = kwargs.get('gyro_device_id', int()) self.mag_device_id = kwargs.get('mag_device_id', int()) if 'combined_test_ratio' not in kwargs: self.combined_test_ratio = numpy.zeros(9, dtype=numpy.float32) else: self.combined_test_ratio = numpy.array(kwargs.get('combined_test_ratio'), dtype=numpy.float32) assert self.combined_test_ratio.shape == (9, ) if 'relative_test_ratio' not in kwargs: self.relative_test_ratio = numpy.zeros(9, dtype=numpy.float32) else: self.relative_test_ratio = numpy.array(kwargs.get('relative_test_ratio'), dtype=numpy.float32) assert self.relative_test_ratio.shape == (9, ) self.healthy = kwargs.get( 'healthy', [bool() for x in range(9)] ) if 'accumulated_gyro_error' not in kwargs: self.accumulated_gyro_error = numpy.zeros(4, dtype=numpy.float32) else: self.accumulated_gyro_error = numpy.array(kwargs.get('accumulated_gyro_error'), dtype=numpy.float32) assert self.accumulated_gyro_error.shape == (4, ) if 'accumulated_accel_error' not in kwargs: self.accumulated_accel_error = numpy.zeros(4, dtype=numpy.float32) else: self.accumulated_accel_error = numpy.array(kwargs.get('accumulated_accel_error'), dtype=numpy.float32) assert self.accumulated_accel_error.shape == (4, ) self.gyro_fault_detected = kwargs.get('gyro_fault_detected', bool()) self.accel_fault_detected = kwargs.get('accel_fault_detected', bool()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.primary_instance != other.primary_instance: return False if self.instances_available != other.instances_available: return False if self.instance_changed_count != other.instance_changed_count: return False if self.last_instance_change != other.last_instance_change: return False if self.accel_device_id != other.accel_device_id: return False if self.baro_device_id != other.baro_device_id: return False if self.gyro_device_id != other.gyro_device_id: return False if self.mag_device_id != other.mag_device_id: return False if all(self.combined_test_ratio != other.combined_test_ratio): return False if all(self.relative_test_ratio != other.relative_test_ratio): return False if self.healthy != other.healthy: return False if all(self.accumulated_gyro_error != other.accumulated_gyro_error): return False if all(self.accumulated_accel_error != other.accumulated_accel_error): return False if self.gyro_fault_detected != other.gyro_fault_detected: return False if self.accel_fault_detected != other.accel_fault_detected: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def primary_instance(self): """Message field 'primary_instance'.""" return self._primary_instance @primary_instance.setter def primary_instance(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'primary_instance' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'primary_instance' field must be an unsigned integer in [0, 255]" self._primary_instance = value @property def instances_available(self): """Message field 'instances_available'.""" return self._instances_available @instances_available.setter def instances_available(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'instances_available' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'instances_available' field must be an unsigned integer in [0, 255]" self._instances_available = value @property def instance_changed_count(self): """Message field 'instance_changed_count'.""" return self._instance_changed_count @instance_changed_count.setter def instance_changed_count(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'instance_changed_count' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'instance_changed_count' field must be an unsigned integer in [0, 4294967295]" self._instance_changed_count = value @property def last_instance_change(self): """Message field 'last_instance_change'.""" return self._last_instance_change @last_instance_change.setter def last_instance_change(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'last_instance_change' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'last_instance_change' field must be an unsigned integer in [0, 18446744073709551615]" self._last_instance_change = value @property def accel_device_id(self): """Message field 'accel_device_id'.""" return self._accel_device_id @accel_device_id.setter def accel_device_id(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'accel_device_id' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'accel_device_id' field must be an unsigned integer in [0, 4294967295]" self._accel_device_id = value @property def baro_device_id(self): """Message field 'baro_device_id'.""" return self._baro_device_id @baro_device_id.setter def baro_device_id(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'baro_device_id' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'baro_device_id' field must be an unsigned integer in [0, 4294967295]" self._baro_device_id = value @property def gyro_device_id(self): """Message field 'gyro_device_id'.""" return self._gyro_device_id @gyro_device_id.setter def gyro_device_id(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'gyro_device_id' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'gyro_device_id' field must be an unsigned integer in [0, 4294967295]" self._gyro_device_id = value @property def mag_device_id(self): """Message field 'mag_device_id'.""" return self._mag_device_id @mag_device_id.setter def mag_device_id(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'mag_device_id' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'mag_device_id' field must be an unsigned integer in [0, 4294967295]" self._mag_device_id = value @property def combined_test_ratio(self): """Message field 'combined_test_ratio'.""" return self._combined_test_ratio @combined_test_ratio.setter def combined_test_ratio(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'combined_test_ratio' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 9, \ "The 'combined_test_ratio' numpy.ndarray() must have a size of 9" self._combined_test_ratio = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 9 and all(isinstance(v, float) for v in value) and True), \ "The 'combined_test_ratio' field must be a set or sequence with length 9 and each value of type 'float'" self._combined_test_ratio = numpy.array(value, dtype=numpy.float32) @property def relative_test_ratio(self): """Message field 'relative_test_ratio'.""" return self._relative_test_ratio @relative_test_ratio.setter def relative_test_ratio(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'relative_test_ratio' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 9, \ "The 'relative_test_ratio' numpy.ndarray() must have a size of 9" self._relative_test_ratio = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 9 and all(isinstance(v, float) for v in value) and True), \ "The 'relative_test_ratio' field must be a set or sequence with length 9 and each value of type 'float'" self._relative_test_ratio = numpy.array(value, dtype=numpy.float32) @property def healthy(self): """Message field 'healthy'.""" return self._healthy @healthy.setter def healthy(self, value): if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 9 and all(isinstance(v, bool) for v in value) and True), \ "The 'healthy' field must be a set or sequence with length 9 and each value of type 'bool'" self._healthy = value @property def accumulated_gyro_error(self): """Message field 'accumulated_gyro_error'.""" return self._accumulated_gyro_error @accumulated_gyro_error.setter def accumulated_gyro_error(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'accumulated_gyro_error' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 4, \ "The 'accumulated_gyro_error' numpy.ndarray() must have a size of 4" self._accumulated_gyro_error = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 4 and all(isinstance(v, float) for v in value) and True), \ "The 'accumulated_gyro_error' field must be a set or sequence with length 4 and each value of type 'float'" self._accumulated_gyro_error = numpy.array(value, dtype=numpy.float32) @property def accumulated_accel_error(self): """Message field 'accumulated_accel_error'.""" return self._accumulated_accel_error @accumulated_accel_error.setter def accumulated_accel_error(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'accumulated_accel_error' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 4, \ "The 'accumulated_accel_error' numpy.ndarray() must have a size of 4" self._accumulated_accel_error = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 4 and all(isinstance(v, float) for v in value) and True), \ "The 'accumulated_accel_error' field must be a set or sequence with length 4 and each value of type 'float'" self._accumulated_accel_error = numpy.array(value, dtype=numpy.float32) @property def gyro_fault_detected(self): """Message field 'gyro_fault_detected'.""" return self._gyro_fault_detected @gyro_fault_detected.setter def gyro_fault_detected(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'gyro_fault_detected' field must be of type 'bool'" self._gyro_fault_detected = value @property def accel_fault_detected(self): """Message field 'accel_fault_detected'.""" return self._accel_fault_detected @accel_fault_detected.setter def accel_fault_detected(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'accel_fault_detected' field must be of type 'bool'" self._accel_fault_detected = value <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/debug_value.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__DEBUG_VALUE_HPP_ #define PX4_MSGS__MSG__DEBUG_VALUE_HPP_ #include "px4_msgs/msg/debug_value__struct.hpp" #include "px4_msgs/msg/debug_value__traits.hpp" #endif // PX4_MSGS__MSG__DEBUG_VALUE_HPP_ <file_sep>/install/px4_msgs/share/px4_msgs/cmake/px4_msgsConfig.cmake /home/navlab-tx2-4/px4_ros_com_ros2/build/px4_msgs/ament_cmake_core/px4_msgsConfig.cmake<file_sep>/build/multi_rtd_interfaces/CMakeFiles/multi_rtd_interfaces__rosidl_typesupport_c__pyext.dir/cmake_clean.cmake file(REMOVE_RECURSE "CMakeFiles/multi_rtd_interfaces__rosidl_typesupport_c__pyext.dir/rosidl_generator_py/multi_rtd_interfaces/_multi_rtd_interfaces_s.ep.rosidl_typesupport_c.c.o" "rosidl_generator_py/multi_rtd_interfaces/multi_rtd_interfaces_s__rosidl_typesupport_c.cpython-36m-aarch64-linux-gnu.pdb" "rosidl_generator_py/multi_rtd_interfaces/multi_rtd_interfaces_s__rosidl_typesupport_c.cpython-36m-aarch64-linux-gnu.so" ) # Per-language clean rules from dependency scanning. foreach(lang C) include(CMakeFiles/multi_rtd_interfaces__rosidl_typesupport_c__pyext.dir/cmake_clean_${lang}.cmake OPTIONAL) endforeach() <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/gimbal_device_information__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/GimbalDeviceInformation.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/gimbal_device_information__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/gimbal_device_information__struct.h" #include "px4_msgs/msg/gimbal_device_information__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _GimbalDeviceInformation__ros_msg_type = px4_msgs__msg__GimbalDeviceInformation; static bool _GimbalDeviceInformation__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _GimbalDeviceInformation__ros_msg_type * ros_message = static_cast<const _GimbalDeviceInformation__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: vendor_name { size_t size = 32; auto array_ptr = ros_message->vendor_name; cdr.serializeArray(array_ptr, size); } // Field name: model_name { size_t size = 32; auto array_ptr = ros_message->model_name; cdr.serializeArray(array_ptr, size); } // Field name: custom_name { size_t size = 32; auto array_ptr = ros_message->custom_name; cdr.serializeArray(array_ptr, size); } // Field name: firmware_version { cdr << ros_message->firmware_version; } // Field name: hardware_version { cdr << ros_message->hardware_version; } // Field name: uid { cdr << ros_message->uid; } // Field name: cap_flags { cdr << ros_message->cap_flags; } // Field name: custom_cap_flags { cdr << ros_message->custom_cap_flags; } // Field name: roll_min { cdr << ros_message->roll_min; } // Field name: roll_max { cdr << ros_message->roll_max; } // Field name: pitch_min { cdr << ros_message->pitch_min; } // Field name: pitch_max { cdr << ros_message->pitch_max; } // Field name: yaw_min { cdr << ros_message->yaw_min; } // Field name: yaw_max { cdr << ros_message->yaw_max; } // Field name: gimbal_device_compid { cdr << ros_message->gimbal_device_compid; } return true; } static bool _GimbalDeviceInformation__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _GimbalDeviceInformation__ros_msg_type * ros_message = static_cast<_GimbalDeviceInformation__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: vendor_name { size_t size = 32; auto array_ptr = ros_message->vendor_name; cdr.deserializeArray(array_ptr, size); } // Field name: model_name { size_t size = 32; auto array_ptr = ros_message->model_name; cdr.deserializeArray(array_ptr, size); } // Field name: custom_name { size_t size = 32; auto array_ptr = ros_message->custom_name; cdr.deserializeArray(array_ptr, size); } // Field name: firmware_version { cdr >> ros_message->firmware_version; } // Field name: hardware_version { cdr >> ros_message->hardware_version; } // Field name: uid { cdr >> ros_message->uid; } // Field name: cap_flags { cdr >> ros_message->cap_flags; } // Field name: custom_cap_flags { cdr >> ros_message->custom_cap_flags; } // Field name: roll_min { cdr >> ros_message->roll_min; } // Field name: roll_max { cdr >> ros_message->roll_max; } // Field name: pitch_min { cdr >> ros_message->pitch_min; } // Field name: pitch_max { cdr >> ros_message->pitch_max; } // Field name: yaw_min { cdr >> ros_message->yaw_min; } // Field name: yaw_max { cdr >> ros_message->yaw_max; } // Field name: gimbal_device_compid { cdr >> ros_message->gimbal_device_compid; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__GimbalDeviceInformation( const void * untyped_ros_message, size_t current_alignment) { const _GimbalDeviceInformation__ros_msg_type * ros_message = static_cast<const _GimbalDeviceInformation__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vendor_name { size_t array_size = 32; auto array_ptr = ros_message->vendor_name; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name model_name { size_t array_size = 32; auto array_ptr = ros_message->model_name; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name custom_name { size_t array_size = 32; auto array_ptr = ros_message->custom_name; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name firmware_version { size_t item_size = sizeof(ros_message->firmware_version); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name hardware_version { size_t item_size = sizeof(ros_message->hardware_version); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name uid { size_t item_size = sizeof(ros_message->uid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name cap_flags { size_t item_size = sizeof(ros_message->cap_flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name custom_cap_flags { size_t item_size = sizeof(ros_message->custom_cap_flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name roll_min { size_t item_size = sizeof(ros_message->roll_min); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name roll_max { size_t item_size = sizeof(ros_message->roll_max); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name pitch_min { size_t item_size = sizeof(ros_message->pitch_min); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name pitch_max { size_t item_size = sizeof(ros_message->pitch_max); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name yaw_min { size_t item_size = sizeof(ros_message->yaw_min); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name yaw_max { size_t item_size = sizeof(ros_message->yaw_max); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gimbal_device_compid { size_t item_size = sizeof(ros_message->gimbal_device_compid); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _GimbalDeviceInformation__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__GimbalDeviceInformation( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__GimbalDeviceInformation( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: vendor_name { size_t array_size = 32; current_alignment += array_size * sizeof(uint8_t); } // member: model_name { size_t array_size = 32; current_alignment += array_size * sizeof(uint8_t); } // member: custom_name { size_t array_size = 32; current_alignment += array_size * sizeof(uint8_t); } // member: firmware_version { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: hardware_version { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: uid { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: cap_flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: custom_cap_flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: roll_min { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: roll_max { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: pitch_min { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: pitch_max { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: yaw_min { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: yaw_max { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gimbal_device_compid { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _GimbalDeviceInformation__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__GimbalDeviceInformation( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_GimbalDeviceInformation = { "px4_msgs::msg", "GimbalDeviceInformation", _GimbalDeviceInformation__cdr_serialize, _GimbalDeviceInformation__cdr_deserialize, _GimbalDeviceInformation__get_serialized_size, _GimbalDeviceInformation__max_serialized_size }; static rosidl_message_type_support_t _GimbalDeviceInformation__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_GimbalDeviceInformation, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, GimbalDeviceInformation)() { return &_GimbalDeviceInformation__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_wind__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/EstimatorWind.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/estimator_wind__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/estimator_wind__struct.h" #include "px4_msgs/msg/estimator_wind__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _EstimatorWind__ros_msg_type = px4_msgs__msg__EstimatorWind; static bool _EstimatorWind__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _EstimatorWind__ros_msg_type * ros_message = static_cast<const _EstimatorWind__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: timestamp_sample { cdr << ros_message->timestamp_sample; } // Field name: windspeed_north { cdr << ros_message->windspeed_north; } // Field name: windspeed_east { cdr << ros_message->windspeed_east; } // Field name: variance_north { cdr << ros_message->variance_north; } // Field name: variance_east { cdr << ros_message->variance_east; } // Field name: tas_innov { cdr << ros_message->tas_innov; } // Field name: tas_innov_var { cdr << ros_message->tas_innov_var; } // Field name: beta_innov { cdr << ros_message->beta_innov; } // Field name: beta_innov_var { cdr << ros_message->beta_innov_var; } return true; } static bool _EstimatorWind__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _EstimatorWind__ros_msg_type * ros_message = static_cast<_EstimatorWind__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: timestamp_sample { cdr >> ros_message->timestamp_sample; } // Field name: windspeed_north { cdr >> ros_message->windspeed_north; } // Field name: windspeed_east { cdr >> ros_message->windspeed_east; } // Field name: variance_north { cdr >> ros_message->variance_north; } // Field name: variance_east { cdr >> ros_message->variance_east; } // Field name: tas_innov { cdr >> ros_message->tas_innov; } // Field name: tas_innov_var { cdr >> ros_message->tas_innov_var; } // Field name: beta_innov { cdr >> ros_message->beta_innov; } // Field name: beta_innov_var { cdr >> ros_message->beta_innov_var; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__EstimatorWind( const void * untyped_ros_message, size_t current_alignment) { const _EstimatorWind__ros_msg_type * ros_message = static_cast<const _EstimatorWind__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name timestamp_sample { size_t item_size = sizeof(ros_message->timestamp_sample); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name windspeed_north { size_t item_size = sizeof(ros_message->windspeed_north); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name windspeed_east { size_t item_size = sizeof(ros_message->windspeed_east); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name variance_north { size_t item_size = sizeof(ros_message->variance_north); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name variance_east { size_t item_size = sizeof(ros_message->variance_east); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name tas_innov { size_t item_size = sizeof(ros_message->tas_innov); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name tas_innov_var { size_t item_size = sizeof(ros_message->tas_innov_var); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name beta_innov { size_t item_size = sizeof(ros_message->beta_innov); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name beta_innov_var { size_t item_size = sizeof(ros_message->beta_innov_var); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _EstimatorWind__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__EstimatorWind( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__EstimatorWind( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: timestamp_sample { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: windspeed_north { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: windspeed_east { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: variance_north { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: variance_east { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: tas_innov { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: tas_innov_var { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: beta_innov { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: beta_innov_var { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _EstimatorWind__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__EstimatorWind( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_EstimatorWind = { "px4_msgs::msg", "EstimatorWind", _EstimatorWind__cdr_serialize, _EstimatorWind__cdr_deserialize, _EstimatorWind__get_serialized_size, _EstimatorWind__max_serialized_size }; static rosidl_message_type_support_t _EstimatorWind__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_EstimatorWind, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, EstimatorWind)() { return &_EstimatorWind__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/vehicle_angular_acceleration_setpoint__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/VehicleAngularAccelerationSetpoint.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/vehicle_angular_acceleration_setpoint__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void VehicleAngularAccelerationSetpoint_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::VehicleAngularAccelerationSetpoint(_init); } void VehicleAngularAccelerationSetpoint_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::VehicleAngularAccelerationSetpoint *>(message_memory); typed_message->~VehicleAngularAccelerationSetpoint(); } size_t size_function__VehicleAngularAccelerationSetpoint__xyz(const void * untyped_member) { (void)untyped_member; return 3; } const void * get_const_function__VehicleAngularAccelerationSetpoint__xyz(const void * untyped_member, size_t index) { const auto & member = *reinterpret_cast<const std::array<float, 3> *>(untyped_member); return &member[index]; } void * get_function__VehicleAngularAccelerationSetpoint__xyz(void * untyped_member, size_t index) { auto & member = *reinterpret_cast<std::array<float, 3> *>(untyped_member); return &member[index]; } static const ::rosidl_typesupport_introspection_cpp::MessageMember VehicleAngularAccelerationSetpoint_message_member_array[3] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleAngularAccelerationSetpoint, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "timestamp_sample", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleAngularAccelerationSetpoint, timestamp_sample), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "xyz", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_FLOAT, // type 0, // upper bound of string nullptr, // members of sub message true, // is array 3, // array size false, // is upper bound offsetof(px4_msgs::msg::VehicleAngularAccelerationSetpoint, xyz), // bytes offset in struct nullptr, // default value size_function__VehicleAngularAccelerationSetpoint__xyz, // size() function pointer get_const_function__VehicleAngularAccelerationSetpoint__xyz, // get_const(index) function pointer get_function__VehicleAngularAccelerationSetpoint__xyz, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers VehicleAngularAccelerationSetpoint_message_members = { "px4_msgs::msg", // message namespace "VehicleAngularAccelerationSetpoint", // message name 3, // number of fields sizeof(px4_msgs::msg::VehicleAngularAccelerationSetpoint), VehicleAngularAccelerationSetpoint_message_member_array, // message members VehicleAngularAccelerationSetpoint_init_function, // function to initialize message memory (memory has to be allocated) VehicleAngularAccelerationSetpoint_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t VehicleAngularAccelerationSetpoint_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &VehicleAngularAccelerationSetpoint_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::VehicleAngularAccelerationSetpoint>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleAngularAccelerationSetpoint_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, VehicleAngularAccelerationSetpoint)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::VehicleAngularAccelerationSetpoint_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/multi_rtd_interfaces/CMakeFiles/multi_rtd_interfaces__rosidl_generator_c.dir/cmake_clean.cmake file(REMOVE_RECURSE "rosidl_generator_c/multi_rtd_interfaces/msg/robot_trajectory.h" "rosidl_generator_c/multi_rtd_interfaces/msg/robot_trajectory__functions.h" "rosidl_generator_c/multi_rtd_interfaces/msg/robot_trajectory__struct.h" "rosidl_generator_c/multi_rtd_interfaces/msg/robot_trajectory__type_support.h" "rosidl_generator_c/multi_rtd_interfaces/msg/robot_trajectory__functions.c" "CMakeFiles/multi_rtd_interfaces__rosidl_generator_c.dir/rosidl_generator_c/multi_rtd_interfaces/msg/robot_trajectory__functions.c.o" "libmulti_rtd_interfaces__rosidl_generator_c.pdb" "libmulti_rtd_interfaces__rosidl_generator_c.so" ) # Per-language clean rules from dependency scanning. foreach(lang C) include(CMakeFiles/multi_rtd_interfaces__rosidl_generator_c.dir/cmake_clean_${lang}.cmake OPTIONAL) endforeach() <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_local_position.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleLocalPosition.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_H_ #define PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_H_ #include "px4_msgs/msg/vehicle_local_position__struct.h" #include "px4_msgs/msg/vehicle_local_position__functions.h" #include "px4_msgs/msg/vehicle_local_position__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_LOCAL_POSITION_H_ <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_yaw_estimator_status.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/YawEstimatorStatus.idl # generated code does not contain a copyright notice # Import statements for member types # Member 'yaw' # Member 'innov_vn' # Member 'innov_ve' # Member 'weight' import numpy # noqa: E402, I100 import rosidl_parser.definition # noqa: E402, I100 class Metaclass_YawEstimatorStatus(type): """Metaclass of message 'YawEstimatorStatus'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.YawEstimatorStatus') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__yaw_estimator_status cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__yaw_estimator_status cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__yaw_estimator_status cls._TYPE_SUPPORT = module.type_support_msg__msg__yaw_estimator_status cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__yaw_estimator_status @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { } class YawEstimatorStatus(metaclass=Metaclass_YawEstimatorStatus): """Message class 'YawEstimatorStatus'.""" __slots__ = [ '_timestamp', '_timestamp_sample', '_yaw_composite', '_yaw_variance', '_yaw', '_innov_vn', '_innov_ve', '_weight', ] _fields_and_field_types = { 'timestamp': 'uint64', 'timestamp_sample': 'uint64', 'yaw_composite': 'float', 'yaw_variance': 'float', 'yaw': 'float[5]', 'innov_vn': 'float[5]', 'innov_ve': 'float[5]', 'weight': 'float[5]', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 5), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 5), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 5), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 5), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.timestamp_sample = kwargs.get('timestamp_sample', int()) self.yaw_composite = kwargs.get('yaw_composite', float()) self.yaw_variance = kwargs.get('yaw_variance', float()) if 'yaw' not in kwargs: self.yaw = numpy.zeros(5, dtype=numpy.float32) else: self.yaw = numpy.array(kwargs.get('yaw'), dtype=numpy.float32) assert self.yaw.shape == (5, ) if 'innov_vn' not in kwargs: self.innov_vn = numpy.zeros(5, dtype=numpy.float32) else: self.innov_vn = numpy.array(kwargs.get('innov_vn'), dtype=numpy.float32) assert self.innov_vn.shape == (5, ) if 'innov_ve' not in kwargs: self.innov_ve = numpy.zeros(5, dtype=numpy.float32) else: self.innov_ve = numpy.array(kwargs.get('innov_ve'), dtype=numpy.float32) assert self.innov_ve.shape == (5, ) if 'weight' not in kwargs: self.weight = numpy.zeros(5, dtype=numpy.float32) else: self.weight = numpy.array(kwargs.get('weight'), dtype=numpy.float32) assert self.weight.shape == (5, ) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.timestamp_sample != other.timestamp_sample: return False if self.yaw_composite != other.yaw_composite: return False if self.yaw_variance != other.yaw_variance: return False if all(self.yaw != other.yaw): return False if all(self.innov_vn != other.innov_vn): return False if all(self.innov_ve != other.innov_ve): return False if all(self.weight != other.weight): return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def timestamp_sample(self): """Message field 'timestamp_sample'.""" return self._timestamp_sample @timestamp_sample.setter def timestamp_sample(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp_sample' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp_sample' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp_sample = value @property def yaw_composite(self): """Message field 'yaw_composite'.""" return self._yaw_composite @yaw_composite.setter def yaw_composite(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'yaw_composite' field must be of type 'float'" self._yaw_composite = value @property def yaw_variance(self): """Message field 'yaw_variance'.""" return self._yaw_variance @yaw_variance.setter def yaw_variance(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'yaw_variance' field must be of type 'float'" self._yaw_variance = value @property def yaw(self): """Message field 'yaw'.""" return self._yaw @yaw.setter def yaw(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'yaw' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 5, \ "The 'yaw' numpy.ndarray() must have a size of 5" self._yaw = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 5 and all(isinstance(v, float) for v in value) and True), \ "The 'yaw' field must be a set or sequence with length 5 and each value of type 'float'" self._yaw = numpy.array(value, dtype=numpy.float32) @property def innov_vn(self): """Message field 'innov_vn'.""" return self._innov_vn @innov_vn.setter def innov_vn(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'innov_vn' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 5, \ "The 'innov_vn' numpy.ndarray() must have a size of 5" self._innov_vn = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 5 and all(isinstance(v, float) for v in value) and True), \ "The 'innov_vn' field must be a set or sequence with length 5 and each value of type 'float'" self._innov_vn = numpy.array(value, dtype=numpy.float32) @property def innov_ve(self): """Message field 'innov_ve'.""" return self._innov_ve @innov_ve.setter def innov_ve(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'innov_ve' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 5, \ "The 'innov_ve' numpy.ndarray() must have a size of 5" self._innov_ve = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 5 and all(isinstance(v, float) for v in value) and True), \ "The 'innov_ve' field must be a set or sequence with length 5 and each value of type 'float'" self._innov_ve = numpy.array(value, dtype=numpy.float32) @property def weight(self): """Message field 'weight'.""" return self._weight @weight.setter def weight(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'weight' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 5, \ "The 'weight' numpy.ndarray() must have a size of 5" self._weight = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 5 and all(isinstance(v, float) for v in value) and True), \ "The 'weight' field must be a set or sequence with length 5 and each value of type 'float'" self._weight = numpy.array(value, dtype=numpy.float32) <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_battery_status.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/BatteryStatus.idl # generated code does not contain a copyright notice # Import statements for member types # Member 'voltage_cell_v' import numpy # noqa: E402, I100 import rosidl_parser.definition # noqa: E402, I100 class Metaclass_BatteryStatus(type): """Metaclass of message 'BatteryStatus'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'BATTERY_SOURCE_POWER_MODULE': 0, 'BATTERY_SOURCE_EXTERNAL': 1, 'BATTERY_SOURCE_ESCS': 2, 'BATTERY_WARNING_NONE': 0, 'BATTERY_WARNING_LOW': 1, 'BATTERY_WARNING_CRITICAL': 2, 'BATTERY_WARNING_EMERGENCY': 3, 'BATTERY_WARNING_FAILED': 4, 'MAX_INSTANCES': 4, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.BatteryStatus') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__battery_status cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__battery_status cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__battery_status cls._TYPE_SUPPORT = module.type_support_msg__msg__battery_status cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__battery_status @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'BATTERY_SOURCE_POWER_MODULE': cls.__constants['BATTERY_SOURCE_POWER_MODULE'], 'BATTERY_SOURCE_EXTERNAL': cls.__constants['BATTERY_SOURCE_EXTERNAL'], 'BATTERY_SOURCE_ESCS': cls.__constants['BATTERY_SOURCE_ESCS'], 'BATTERY_WARNING_NONE': cls.__constants['BATTERY_WARNING_NONE'], 'BATTERY_WARNING_LOW': cls.__constants['BATTERY_WARNING_LOW'], 'BATTERY_WARNING_CRITICAL': cls.__constants['BATTERY_WARNING_CRITICAL'], 'BATTERY_WARNING_EMERGENCY': cls.__constants['BATTERY_WARNING_EMERGENCY'], 'BATTERY_WARNING_FAILED': cls.__constants['BATTERY_WARNING_FAILED'], 'MAX_INSTANCES': cls.__constants['MAX_INSTANCES'], } @property def BATTERY_SOURCE_POWER_MODULE(self): """Message constant 'BATTERY_SOURCE_POWER_MODULE'.""" return Metaclass_BatteryStatus.__constants['BATTERY_SOURCE_POWER_MODULE'] @property def BATTERY_SOURCE_EXTERNAL(self): """Message constant 'BATTERY_SOURCE_EXTERNAL'.""" return Metaclass_BatteryStatus.__constants['BATTERY_SOURCE_EXTERNAL'] @property def BATTERY_SOURCE_ESCS(self): """Message constant 'BATTERY_SOURCE_ESCS'.""" return Metaclass_BatteryStatus.__constants['BATTERY_SOURCE_ESCS'] @property def BATTERY_WARNING_NONE(self): """Message constant 'BATTERY_WARNING_NONE'.""" return Metaclass_BatteryStatus.__constants['BATTERY_WARNING_NONE'] @property def BATTERY_WARNING_LOW(self): """Message constant 'BATTERY_WARNING_LOW'.""" return Metaclass_BatteryStatus.__constants['BATTERY_WARNING_LOW'] @property def BATTERY_WARNING_CRITICAL(self): """Message constant 'BATTERY_WARNING_CRITICAL'.""" return Metaclass_BatteryStatus.__constants['BATTERY_WARNING_CRITICAL'] @property def BATTERY_WARNING_EMERGENCY(self): """Message constant 'BATTERY_WARNING_EMERGENCY'.""" return Metaclass_BatteryStatus.__constants['BATTERY_WARNING_EMERGENCY'] @property def BATTERY_WARNING_FAILED(self): """Message constant 'BATTERY_WARNING_FAILED'.""" return Metaclass_BatteryStatus.__constants['BATTERY_WARNING_FAILED'] @property def MAX_INSTANCES(self): """Message constant 'MAX_INSTANCES'.""" return Metaclass_BatteryStatus.__constants['MAX_INSTANCES'] class BatteryStatus(metaclass=Metaclass_BatteryStatus): """ Message class 'BatteryStatus'. Constants: BATTERY_SOURCE_POWER_MODULE BATTERY_SOURCE_EXTERNAL BATTERY_SOURCE_ESCS BATTERY_WARNING_NONE BATTERY_WARNING_LOW BATTERY_WARNING_CRITICAL BATTERY_WARNING_EMERGENCY BATTERY_WARNING_FAILED MAX_INSTANCES """ __slots__ = [ '_timestamp', '_voltage_v', '_voltage_filtered_v', '_current_a', '_current_filtered_a', '_average_current_a', '_discharged_mah', '_remaining', '_scale', '_temperature', '_cell_count', '_connected', '_source', '_priority', '_capacity', '_cycle_count', '_run_time_to_empty', '_average_time_to_empty', '_serial_number', '_manufacture_date', '_state_of_health', '_max_error', '_id', '_interface_error', '_voltage_cell_v', '_max_cell_voltage_delta', '_is_powering_off', '_warning', '_average_power', '_available_energy', '_remaining_capacity', '_design_capacity', '_average_time_to_full', '_over_discharge_count', '_nominal_voltage', ] _fields_and_field_types = { 'timestamp': 'uint64', 'voltage_v': 'float', 'voltage_filtered_v': 'float', 'current_a': 'float', 'current_filtered_a': 'float', 'average_current_a': 'float', 'discharged_mah': 'float', 'remaining': 'float', 'scale': 'float', 'temperature': 'float', 'cell_count': 'int32', 'connected': 'boolean', 'source': 'uint8', 'priority': 'uint8', 'capacity': 'uint16', 'cycle_count': 'uint16', 'run_time_to_empty': 'uint16', 'average_time_to_empty': 'uint16', 'serial_number': 'uint16', 'manufacture_date': 'uint16', 'state_of_health': 'uint16', 'max_error': 'uint16', 'id': 'uint8', 'interface_error': 'uint16', 'voltage_cell_v': 'float[14]', 'max_cell_voltage_delta': 'float', 'is_powering_off': 'boolean', 'warning': 'uint8', 'average_power': 'float', 'available_energy': 'float', 'remaining_capacity': 'float', 'design_capacity': 'float', 'average_time_to_full': 'uint16', 'over_discharge_count': 'uint16', 'nominal_voltage': 'float', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('int32'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.Array(rosidl_parser.definition.BasicType('float'), 14), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('uint16'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.voltage_v = kwargs.get('voltage_v', float()) self.voltage_filtered_v = kwargs.get('voltage_filtered_v', float()) self.current_a = kwargs.get('current_a', float()) self.current_filtered_a = kwargs.get('current_filtered_a', float()) self.average_current_a = kwargs.get('average_current_a', float()) self.discharged_mah = kwargs.get('discharged_mah', float()) self.remaining = kwargs.get('remaining', float()) self.scale = kwargs.get('scale', float()) self.temperature = kwargs.get('temperature', float()) self.cell_count = kwargs.get('cell_count', int()) self.connected = kwargs.get('connected', bool()) self.source = kwargs.get('source', int()) self.priority = kwargs.get('priority', int()) self.capacity = kwargs.get('capacity', int()) self.cycle_count = kwargs.get('cycle_count', int()) self.run_time_to_empty = kwargs.get('run_time_to_empty', int()) self.average_time_to_empty = kwargs.get('average_time_to_empty', int()) self.serial_number = kwargs.get('serial_number', int()) self.manufacture_date = kwargs.get('manufacture_date', int()) self.state_of_health = kwargs.get('state_of_health', int()) self.max_error = kwargs.get('max_error', int()) self.id = kwargs.get('id', int()) self.interface_error = kwargs.get('interface_error', int()) if 'voltage_cell_v' not in kwargs: self.voltage_cell_v = numpy.zeros(14, dtype=numpy.float32) else: self.voltage_cell_v = numpy.array(kwargs.get('voltage_cell_v'), dtype=numpy.float32) assert self.voltage_cell_v.shape == (14, ) self.max_cell_voltage_delta = kwargs.get('max_cell_voltage_delta', float()) self.is_powering_off = kwargs.get('is_powering_off', bool()) self.warning = kwargs.get('warning', int()) self.average_power = kwargs.get('average_power', float()) self.available_energy = kwargs.get('available_energy', float()) self.remaining_capacity = kwargs.get('remaining_capacity', float()) self.design_capacity = kwargs.get('design_capacity', float()) self.average_time_to_full = kwargs.get('average_time_to_full', int()) self.over_discharge_count = kwargs.get('over_discharge_count', int()) self.nominal_voltage = kwargs.get('nominal_voltage', float()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.voltage_v != other.voltage_v: return False if self.voltage_filtered_v != other.voltage_filtered_v: return False if self.current_a != other.current_a: return False if self.current_filtered_a != other.current_filtered_a: return False if self.average_current_a != other.average_current_a: return False if self.discharged_mah != other.discharged_mah: return False if self.remaining != other.remaining: return False if self.scale != other.scale: return False if self.temperature != other.temperature: return False if self.cell_count != other.cell_count: return False if self.connected != other.connected: return False if self.source != other.source: return False if self.priority != other.priority: return False if self.capacity != other.capacity: return False if self.cycle_count != other.cycle_count: return False if self.run_time_to_empty != other.run_time_to_empty: return False if self.average_time_to_empty != other.average_time_to_empty: return False if self.serial_number != other.serial_number: return False if self.manufacture_date != other.manufacture_date: return False if self.state_of_health != other.state_of_health: return False if self.max_error != other.max_error: return False if self.id != other.id: return False if self.interface_error != other.interface_error: return False if all(self.voltage_cell_v != other.voltage_cell_v): return False if self.max_cell_voltage_delta != other.max_cell_voltage_delta: return False if self.is_powering_off != other.is_powering_off: return False if self.warning != other.warning: return False if self.average_power != other.average_power: return False if self.available_energy != other.available_energy: return False if self.remaining_capacity != other.remaining_capacity: return False if self.design_capacity != other.design_capacity: return False if self.average_time_to_full != other.average_time_to_full: return False if self.over_discharge_count != other.over_discharge_count: return False if self.nominal_voltage != other.nominal_voltage: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def voltage_v(self): """Message field 'voltage_v'.""" return self._voltage_v @voltage_v.setter def voltage_v(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'voltage_v' field must be of type 'float'" self._voltage_v = value @property def voltage_filtered_v(self): """Message field 'voltage_filtered_v'.""" return self._voltage_filtered_v @voltage_filtered_v.setter def voltage_filtered_v(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'voltage_filtered_v' field must be of type 'float'" self._voltage_filtered_v = value @property def current_a(self): """Message field 'current_a'.""" return self._current_a @current_a.setter def current_a(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'current_a' field must be of type 'float'" self._current_a = value @property def current_filtered_a(self): """Message field 'current_filtered_a'.""" return self._current_filtered_a @current_filtered_a.setter def current_filtered_a(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'current_filtered_a' field must be of type 'float'" self._current_filtered_a = value @property def average_current_a(self): """Message field 'average_current_a'.""" return self._average_current_a @average_current_a.setter def average_current_a(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'average_current_a' field must be of type 'float'" self._average_current_a = value @property def discharged_mah(self): """Message field 'discharged_mah'.""" return self._discharged_mah @discharged_mah.setter def discharged_mah(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'discharged_mah' field must be of type 'float'" self._discharged_mah = value @property def remaining(self): """Message field 'remaining'.""" return self._remaining @remaining.setter def remaining(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'remaining' field must be of type 'float'" self._remaining = value @property def scale(self): """Message field 'scale'.""" return self._scale @scale.setter def scale(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'scale' field must be of type 'float'" self._scale = value @property def temperature(self): """Message field 'temperature'.""" return self._temperature @temperature.setter def temperature(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'temperature' field must be of type 'float'" self._temperature = value @property def cell_count(self): """Message field 'cell_count'.""" return self._cell_count @cell_count.setter def cell_count(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'cell_count' field must be of type 'int'" assert value >= -2147483648 and value < 2147483648, \ "The 'cell_count' field must be an integer in [-2147483648, 2147483647]" self._cell_count = value @property def connected(self): """Message field 'connected'.""" return self._connected @connected.setter def connected(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'connected' field must be of type 'bool'" self._connected = value @property def source(self): """Message field 'source'.""" return self._source @source.setter def source(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'source' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'source' field must be an unsigned integer in [0, 255]" self._source = value @property def priority(self): """Message field 'priority'.""" return self._priority @priority.setter def priority(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'priority' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'priority' field must be an unsigned integer in [0, 255]" self._priority = value @property def capacity(self): """Message field 'capacity'.""" return self._capacity @capacity.setter def capacity(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'capacity' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'capacity' field must be an unsigned integer in [0, 65535]" self._capacity = value @property def cycle_count(self): """Message field 'cycle_count'.""" return self._cycle_count @cycle_count.setter def cycle_count(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'cycle_count' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'cycle_count' field must be an unsigned integer in [0, 65535]" self._cycle_count = value @property def run_time_to_empty(self): """Message field 'run_time_to_empty'.""" return self._run_time_to_empty @run_time_to_empty.setter def run_time_to_empty(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'run_time_to_empty' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'run_time_to_empty' field must be an unsigned integer in [0, 65535]" self._run_time_to_empty = value @property def average_time_to_empty(self): """Message field 'average_time_to_empty'.""" return self._average_time_to_empty @average_time_to_empty.setter def average_time_to_empty(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'average_time_to_empty' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'average_time_to_empty' field must be an unsigned integer in [0, 65535]" self._average_time_to_empty = value @property def serial_number(self): """Message field 'serial_number'.""" return self._serial_number @serial_number.setter def serial_number(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'serial_number' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'serial_number' field must be an unsigned integer in [0, 65535]" self._serial_number = value @property def manufacture_date(self): """Message field 'manufacture_date'.""" return self._manufacture_date @manufacture_date.setter def manufacture_date(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'manufacture_date' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'manufacture_date' field must be an unsigned integer in [0, 65535]" self._manufacture_date = value @property def state_of_health(self): """Message field 'state_of_health'.""" return self._state_of_health @state_of_health.setter def state_of_health(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'state_of_health' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'state_of_health' field must be an unsigned integer in [0, 65535]" self._state_of_health = value @property def max_error(self): """Message field 'max_error'.""" return self._max_error @max_error.setter def max_error(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'max_error' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'max_error' field must be an unsigned integer in [0, 65535]" self._max_error = value @property # noqa: A003 def id(self): """Message field 'id'.""" return self._id @id.setter # noqa: A003 def id(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'id' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'id' field must be an unsigned integer in [0, 255]" self._id = value @property def interface_error(self): """Message field 'interface_error'.""" return self._interface_error @interface_error.setter def interface_error(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'interface_error' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'interface_error' field must be an unsigned integer in [0, 65535]" self._interface_error = value @property def voltage_cell_v(self): """Message field 'voltage_cell_v'.""" return self._voltage_cell_v @voltage_cell_v.setter def voltage_cell_v(self, value): if isinstance(value, numpy.ndarray): assert value.dtype == numpy.float32, \ "The 'voltage_cell_v' numpy.ndarray() must have the dtype of 'numpy.float32'" assert value.size == 14, \ "The 'voltage_cell_v' numpy.ndarray() must have a size of 14" self._voltage_cell_v = value return if __debug__: from collections.abc import Sequence from collections.abc import Set from collections import UserList from collections import UserString assert \ ((isinstance(value, Sequence) or isinstance(value, Set) or isinstance(value, UserList)) and not isinstance(value, str) and not isinstance(value, UserString) and len(value) == 14 and all(isinstance(v, float) for v in value) and True), \ "The 'voltage_cell_v' field must be a set or sequence with length 14 and each value of type 'float'" self._voltage_cell_v = numpy.array(value, dtype=numpy.float32) @property def max_cell_voltage_delta(self): """Message field 'max_cell_voltage_delta'.""" return self._max_cell_voltage_delta @max_cell_voltage_delta.setter def max_cell_voltage_delta(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'max_cell_voltage_delta' field must be of type 'float'" self._max_cell_voltage_delta = value @property def is_powering_off(self): """Message field 'is_powering_off'.""" return self._is_powering_off @is_powering_off.setter def is_powering_off(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'is_powering_off' field must be of type 'bool'" self._is_powering_off = value @property def warning(self): """Message field 'warning'.""" return self._warning @warning.setter def warning(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'warning' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'warning' field must be an unsigned integer in [0, 255]" self._warning = value @property def average_power(self): """Message field 'average_power'.""" return self._average_power @average_power.setter def average_power(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'average_power' field must be of type 'float'" self._average_power = value @property def available_energy(self): """Message field 'available_energy'.""" return self._available_energy @available_energy.setter def available_energy(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'available_energy' field must be of type 'float'" self._available_energy = value @property def remaining_capacity(self): """Message field 'remaining_capacity'.""" return self._remaining_capacity @remaining_capacity.setter def remaining_capacity(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'remaining_capacity' field must be of type 'float'" self._remaining_capacity = value @property def design_capacity(self): """Message field 'design_capacity'.""" return self._design_capacity @design_capacity.setter def design_capacity(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'design_capacity' field must be of type 'float'" self._design_capacity = value @property def average_time_to_full(self): """Message field 'average_time_to_full'.""" return self._average_time_to_full @average_time_to_full.setter def average_time_to_full(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'average_time_to_full' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'average_time_to_full' field must be an unsigned integer in [0, 65535]" self._average_time_to_full = value @property def over_discharge_count(self): """Message field 'over_discharge_count'.""" return self._over_discharge_count @over_discharge_count.setter def over_discharge_count(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'over_discharge_count' field must be of type 'int'" assert value >= 0 and value < 65536, \ "The 'over_discharge_count' field must be an unsigned integer in [0, 65535]" self._over_discharge_count = value @property def nominal_voltage(self): """Message field 'nominal_voltage'.""" return self._nominal_voltage @nominal_voltage.setter def nominal_voltage(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'nominal_voltage' field must be of type 'float'" self._nominal_voltage = value <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/optical_flow__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/OpticalFlow.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/optical_flow__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__OpticalFlow__init(px4_msgs__msg__OpticalFlow * msg) { if (!msg) { return false; } // timestamp // sensor_id // pixel_flow_x_integral // pixel_flow_y_integral // gyro_x_rate_integral // gyro_y_rate_integral // gyro_z_rate_integral // ground_distance_m // integration_timespan // time_since_last_sonar_update // frame_count_since_last_readout // gyro_temperature // quality // max_flow_rate // min_ground_distance // max_ground_distance // mode return true; } void px4_msgs__msg__OpticalFlow__fini(px4_msgs__msg__OpticalFlow * msg) { if (!msg) { return; } // timestamp // sensor_id // pixel_flow_x_integral // pixel_flow_y_integral // gyro_x_rate_integral // gyro_y_rate_integral // gyro_z_rate_integral // ground_distance_m // integration_timespan // time_since_last_sonar_update // frame_count_since_last_readout // gyro_temperature // quality // max_flow_rate // min_ground_distance // max_ground_distance // mode } px4_msgs__msg__OpticalFlow * px4_msgs__msg__OpticalFlow__create() { px4_msgs__msg__OpticalFlow * msg = (px4_msgs__msg__OpticalFlow *)malloc(sizeof(px4_msgs__msg__OpticalFlow)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__OpticalFlow)); bool success = px4_msgs__msg__OpticalFlow__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__OpticalFlow__destroy(px4_msgs__msg__OpticalFlow * msg) { if (msg) { px4_msgs__msg__OpticalFlow__fini(msg); } free(msg); } bool px4_msgs__msg__OpticalFlow__Sequence__init(px4_msgs__msg__OpticalFlow__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__OpticalFlow * data = NULL; if (size) { data = (px4_msgs__msg__OpticalFlow *)calloc(size, sizeof(px4_msgs__msg__OpticalFlow)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__OpticalFlow__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__OpticalFlow__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__OpticalFlow__Sequence__fini(px4_msgs__msg__OpticalFlow__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__OpticalFlow__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__OpticalFlow__Sequence * px4_msgs__msg__OpticalFlow__Sequence__create(size_t size) { px4_msgs__msg__OpticalFlow__Sequence * array = (px4_msgs__msg__OpticalFlow__Sequence *)malloc(sizeof(px4_msgs__msg__OpticalFlow__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__OpticalFlow__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__OpticalFlow__Sequence__destroy(px4_msgs__msg__OpticalFlow__Sequence * array) { if (array) { px4_msgs__msg__OpticalFlow__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/gimbal_manager_set_attitude__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/GimbalManagerSetAttitude.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/gimbal_manager_set_attitude__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__GimbalManagerSetAttitude__init(px4_msgs__msg__GimbalManagerSetAttitude * msg) { if (!msg) { return false; } // timestamp // origin_sysid // origin_compid // target_system // target_component // flags // gimbal_device_id // q // angular_velocity_x // angular_velocity_y // angular_velocity_z return true; } void px4_msgs__msg__GimbalManagerSetAttitude__fini(px4_msgs__msg__GimbalManagerSetAttitude * msg) { if (!msg) { return; } // timestamp // origin_sysid // origin_compid // target_system // target_component // flags // gimbal_device_id // q // angular_velocity_x // angular_velocity_y // angular_velocity_z } px4_msgs__msg__GimbalManagerSetAttitude * px4_msgs__msg__GimbalManagerSetAttitude__create() { px4_msgs__msg__GimbalManagerSetAttitude * msg = (px4_msgs__msg__GimbalManagerSetAttitude *)malloc(sizeof(px4_msgs__msg__GimbalManagerSetAttitude)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__GimbalManagerSetAttitude)); bool success = px4_msgs__msg__GimbalManagerSetAttitude__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__GimbalManagerSetAttitude__destroy(px4_msgs__msg__GimbalManagerSetAttitude * msg) { if (msg) { px4_msgs__msg__GimbalManagerSetAttitude__fini(msg); } free(msg); } bool px4_msgs__msg__GimbalManagerSetAttitude__Sequence__init(px4_msgs__msg__GimbalManagerSetAttitude__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__GimbalManagerSetAttitude * data = NULL; if (size) { data = (px4_msgs__msg__GimbalManagerSetAttitude *)calloc(size, sizeof(px4_msgs__msg__GimbalManagerSetAttitude)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__GimbalManagerSetAttitude__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__GimbalManagerSetAttitude__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__GimbalManagerSetAttitude__Sequence__fini(px4_msgs__msg__GimbalManagerSetAttitude__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__GimbalManagerSetAttitude__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__GimbalManagerSetAttitude__Sequence * px4_msgs__msg__GimbalManagerSetAttitude__Sequence__create(size_t size) { px4_msgs__msg__GimbalManagerSetAttitude__Sequence * array = (px4_msgs__msg__GimbalManagerSetAttitude__Sequence *)malloc(sizeof(px4_msgs__msg__GimbalManagerSetAttitude__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__GimbalManagerSetAttitude__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__GimbalManagerSetAttitude__Sequence__destroy(px4_msgs__msg__GimbalManagerSetAttitude__Sequence * array) { if (array) { px4_msgs__msg__GimbalManagerSetAttitude__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_odometry__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/EstimatorOdometry.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_ODOMETRY__STRUCT_H_ #define PX4_MSGS__MSG__ESTIMATOR_ODOMETRY__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'COVARIANCE_MATRIX_X_VARIANCE'. enum { px4_msgs__msg__EstimatorOdometry__COVARIANCE_MATRIX_X_VARIANCE = 0 }; /// Constant 'COVARIANCE_MATRIX_Y_VARIANCE'. enum { px4_msgs__msg__EstimatorOdometry__COVARIANCE_MATRIX_Y_VARIANCE = 6 }; /// Constant 'COVARIANCE_MATRIX_Z_VARIANCE'. enum { px4_msgs__msg__EstimatorOdometry__COVARIANCE_MATRIX_Z_VARIANCE = 11 }; /// Constant 'COVARIANCE_MATRIX_ROLL_VARIANCE'. enum { px4_msgs__msg__EstimatorOdometry__COVARIANCE_MATRIX_ROLL_VARIANCE = 15 }; /// Constant 'COVARIANCE_MATRIX_PITCH_VARIANCE'. enum { px4_msgs__msg__EstimatorOdometry__COVARIANCE_MATRIX_PITCH_VARIANCE = 18 }; /// Constant 'COVARIANCE_MATRIX_YAW_VARIANCE'. enum { px4_msgs__msg__EstimatorOdometry__COVARIANCE_MATRIX_YAW_VARIANCE = 20 }; /// Constant 'COVARIANCE_MATRIX_VX_VARIANCE'. enum { px4_msgs__msg__EstimatorOdometry__COVARIANCE_MATRIX_VX_VARIANCE = 0 }; /// Constant 'COVARIANCE_MATRIX_VY_VARIANCE'. enum { px4_msgs__msg__EstimatorOdometry__COVARIANCE_MATRIX_VY_VARIANCE = 6 }; /// Constant 'COVARIANCE_MATRIX_VZ_VARIANCE'. enum { px4_msgs__msg__EstimatorOdometry__COVARIANCE_MATRIX_VZ_VARIANCE = 11 }; /// Constant 'COVARIANCE_MATRIX_ROLLRATE_VARIANCE'. enum { px4_msgs__msg__EstimatorOdometry__COVARIANCE_MATRIX_ROLLRATE_VARIANCE = 15 }; /// Constant 'COVARIANCE_MATRIX_PITCHRATE_VARIANCE'. enum { px4_msgs__msg__EstimatorOdometry__COVARIANCE_MATRIX_PITCHRATE_VARIANCE = 18 }; /// Constant 'COVARIANCE_MATRIX_YAWRATE_VARIANCE'. enum { px4_msgs__msg__EstimatorOdometry__COVARIANCE_MATRIX_YAWRATE_VARIANCE = 20 }; /// Constant 'LOCAL_FRAME_NED'. enum { px4_msgs__msg__EstimatorOdometry__LOCAL_FRAME_NED = 0 }; /// Constant 'LOCAL_FRAME_FRD'. enum { px4_msgs__msg__EstimatorOdometry__LOCAL_FRAME_FRD = 1 }; /// Constant 'LOCAL_FRAME_OTHER'. enum { px4_msgs__msg__EstimatorOdometry__LOCAL_FRAME_OTHER = 2 }; /// Constant 'BODY_FRAME_FRD'. enum { px4_msgs__msg__EstimatorOdometry__BODY_FRAME_FRD = 3 }; // Struct defined in msg/EstimatorOdometry in the package px4_msgs. typedef struct px4_msgs__msg__EstimatorOdometry { uint64_t timestamp; uint64_t timestamp_sample; uint8_t local_frame; float x; float y; float z; float q[4]; float q_offset[4]; float pose_covariance[21]; uint8_t velocity_frame; float vx; float vy; float vz; float rollspeed; float pitchspeed; float yawspeed; float velocity_covariance[21]; } px4_msgs__msg__EstimatorOdometry; // Struct for a sequence of px4_msgs__msg__EstimatorOdometry. typedef struct px4_msgs__msg__EstimatorOdometry__Sequence { px4_msgs__msg__EstimatorOdometry * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__EstimatorOdometry__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ESTIMATOR_ODOMETRY__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/onboard_computer_status.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/OnboardComputerStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ONBOARD_COMPUTER_STATUS_H_ #define PX4_MSGS__MSG__ONBOARD_COMPUTER_STATUS_H_ #include "px4_msgs/msg/onboard_computer_status__struct.h" #include "px4_msgs/msg/onboard_computer_status__functions.h" #include "px4_msgs/msg/onboard_computer_status__type_support.h" #endif // PX4_MSGS__MSG__ONBOARD_COMPUTER_STATUS_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_angular_acceleration__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleAngularAcceleration.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_angular_acceleration__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__VehicleAngularAcceleration__init(px4_msgs__msg__VehicleAngularAcceleration * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // xyz return true; } void px4_msgs__msg__VehicleAngularAcceleration__fini(px4_msgs__msg__VehicleAngularAcceleration * msg) { if (!msg) { return; } // timestamp // timestamp_sample // xyz } px4_msgs__msg__VehicleAngularAcceleration * px4_msgs__msg__VehicleAngularAcceleration__create() { px4_msgs__msg__VehicleAngularAcceleration * msg = (px4_msgs__msg__VehicleAngularAcceleration *)malloc(sizeof(px4_msgs__msg__VehicleAngularAcceleration)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleAngularAcceleration)); bool success = px4_msgs__msg__VehicleAngularAcceleration__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleAngularAcceleration__destroy(px4_msgs__msg__VehicleAngularAcceleration * msg) { if (msg) { px4_msgs__msg__VehicleAngularAcceleration__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleAngularAcceleration__Sequence__init(px4_msgs__msg__VehicleAngularAcceleration__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleAngularAcceleration * data = NULL; if (size) { data = (px4_msgs__msg__VehicleAngularAcceleration *)calloc(size, sizeof(px4_msgs__msg__VehicleAngularAcceleration)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleAngularAcceleration__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleAngularAcceleration__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleAngularAcceleration__Sequence__fini(px4_msgs__msg__VehicleAngularAcceleration__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleAngularAcceleration__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleAngularAcceleration__Sequence * px4_msgs__msg__VehicleAngularAcceleration__Sequence__create(size_t size) { px4_msgs__msg__VehicleAngularAcceleration__Sequence * array = (px4_msgs__msg__VehicleAngularAcceleration__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleAngularAcceleration__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleAngularAcceleration__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleAngularAcceleration__Sequence__destroy(px4_msgs__msg__VehicleAngularAcceleration__Sequence * array) { if (array) { px4_msgs__msg__VehicleAngularAcceleration__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/tecs_status.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TECS_STATUS_HPP_ #define PX4_MSGS__MSG__TECS_STATUS_HPP_ #include "px4_msgs/msg/tecs_status__struct.hpp" #include "px4_msgs/msg/tecs_status__traits.hpp" #endif // PX4_MSGS__MSG__TECS_STATUS_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/airspeed_wind.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/AirspeedWind.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__AIRSPEED_WIND_H_ #define PX4_MSGS__MSG__AIRSPEED_WIND_H_ #include "px4_msgs/msg/airspeed_wind__struct.h" #include "px4_msgs/msg/airspeed_wind__functions.h" #include "px4_msgs/msg/airspeed_wind__type_support.h" #endif // PX4_MSGS__MSG__AIRSPEED_WIND_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_event_flags__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/EstimatorEventFlags.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/estimator_event_flags__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/estimator_event_flags__struct.h" #include "px4_msgs/msg/estimator_event_flags__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _EstimatorEventFlags__ros_msg_type = px4_msgs__msg__EstimatorEventFlags; static bool _EstimatorEventFlags__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _EstimatorEventFlags__ros_msg_type * ros_message = static_cast<const _EstimatorEventFlags__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: timestamp_sample { cdr << ros_message->timestamp_sample; } // Field name: information_event_changes { cdr << ros_message->information_event_changes; } // Field name: gps_checks_passed { cdr << (ros_message->gps_checks_passed ? true : false); } // Field name: reset_vel_to_gps { cdr << (ros_message->reset_vel_to_gps ? true : false); } // Field name: reset_vel_to_flow { cdr << (ros_message->reset_vel_to_flow ? true : false); } // Field name: reset_vel_to_vision { cdr << (ros_message->reset_vel_to_vision ? true : false); } // Field name: reset_vel_to_zero { cdr << (ros_message->reset_vel_to_zero ? true : false); } // Field name: reset_pos_to_last_known { cdr << (ros_message->reset_pos_to_last_known ? true : false); } // Field name: reset_pos_to_gps { cdr << (ros_message->reset_pos_to_gps ? true : false); } // Field name: reset_pos_to_vision { cdr << (ros_message->reset_pos_to_vision ? true : false); } // Field name: starting_gps_fusion { cdr << (ros_message->starting_gps_fusion ? true : false); } // Field name: starting_vision_pos_fusion { cdr << (ros_message->starting_vision_pos_fusion ? true : false); } // Field name: starting_vision_vel_fusion { cdr << (ros_message->starting_vision_vel_fusion ? true : false); } // Field name: starting_vision_yaw_fusion { cdr << (ros_message->starting_vision_yaw_fusion ? true : false); } // Field name: yaw_aligned_to_imu_gps { cdr << (ros_message->yaw_aligned_to_imu_gps ? true : false); } // Field name: warning_event_changes { cdr << ros_message->warning_event_changes; } // Field name: gps_quality_poor { cdr << (ros_message->gps_quality_poor ? true : false); } // Field name: gps_fusion_timout { cdr << (ros_message->gps_fusion_timout ? true : false); } // Field name: gps_data_stopped { cdr << (ros_message->gps_data_stopped ? true : false); } // Field name: gps_data_stopped_using_alternate { cdr << (ros_message->gps_data_stopped_using_alternate ? true : false); } // Field name: height_sensor_timeout { cdr << (ros_message->height_sensor_timeout ? true : false); } // Field name: stopping_navigation { cdr << (ros_message->stopping_navigation ? true : false); } // Field name: invalid_accel_bias_cov_reset { cdr << (ros_message->invalid_accel_bias_cov_reset ? true : false); } // Field name: bad_yaw_using_gps_course { cdr << (ros_message->bad_yaw_using_gps_course ? true : false); } // Field name: stopping_mag_use { cdr << (ros_message->stopping_mag_use ? true : false); } // Field name: vision_data_stopped { cdr << (ros_message->vision_data_stopped ? true : false); } // Field name: emergency_yaw_reset_mag_stopped { cdr << (ros_message->emergency_yaw_reset_mag_stopped ? true : false); } return true; } static bool _EstimatorEventFlags__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _EstimatorEventFlags__ros_msg_type * ros_message = static_cast<_EstimatorEventFlags__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: timestamp_sample { cdr >> ros_message->timestamp_sample; } // Field name: information_event_changes { cdr >> ros_message->information_event_changes; } // Field name: gps_checks_passed { uint8_t tmp; cdr >> tmp; ros_message->gps_checks_passed = tmp ? true : false; } // Field name: reset_vel_to_gps { uint8_t tmp; cdr >> tmp; ros_message->reset_vel_to_gps = tmp ? true : false; } // Field name: reset_vel_to_flow { uint8_t tmp; cdr >> tmp; ros_message->reset_vel_to_flow = tmp ? true : false; } // Field name: reset_vel_to_vision { uint8_t tmp; cdr >> tmp; ros_message->reset_vel_to_vision = tmp ? true : false; } // Field name: reset_vel_to_zero { uint8_t tmp; cdr >> tmp; ros_message->reset_vel_to_zero = tmp ? true : false; } // Field name: reset_pos_to_last_known { uint8_t tmp; cdr >> tmp; ros_message->reset_pos_to_last_known = tmp ? true : false; } // Field name: reset_pos_to_gps { uint8_t tmp; cdr >> tmp; ros_message->reset_pos_to_gps = tmp ? true : false; } // Field name: reset_pos_to_vision { uint8_t tmp; cdr >> tmp; ros_message->reset_pos_to_vision = tmp ? true : false; } // Field name: starting_gps_fusion { uint8_t tmp; cdr >> tmp; ros_message->starting_gps_fusion = tmp ? true : false; } // Field name: starting_vision_pos_fusion { uint8_t tmp; cdr >> tmp; ros_message->starting_vision_pos_fusion = tmp ? true : false; } // Field name: starting_vision_vel_fusion { uint8_t tmp; cdr >> tmp; ros_message->starting_vision_vel_fusion = tmp ? true : false; } // Field name: starting_vision_yaw_fusion { uint8_t tmp; cdr >> tmp; ros_message->starting_vision_yaw_fusion = tmp ? true : false; } // Field name: yaw_aligned_to_imu_gps { uint8_t tmp; cdr >> tmp; ros_message->yaw_aligned_to_imu_gps = tmp ? true : false; } // Field name: warning_event_changes { cdr >> ros_message->warning_event_changes; } // Field name: gps_quality_poor { uint8_t tmp; cdr >> tmp; ros_message->gps_quality_poor = tmp ? true : false; } // Field name: gps_fusion_timout { uint8_t tmp; cdr >> tmp; ros_message->gps_fusion_timout = tmp ? true : false; } // Field name: gps_data_stopped { uint8_t tmp; cdr >> tmp; ros_message->gps_data_stopped = tmp ? true : false; } // Field name: gps_data_stopped_using_alternate { uint8_t tmp; cdr >> tmp; ros_message->gps_data_stopped_using_alternate = tmp ? true : false; } // Field name: height_sensor_timeout { uint8_t tmp; cdr >> tmp; ros_message->height_sensor_timeout = tmp ? true : false; } // Field name: stopping_navigation { uint8_t tmp; cdr >> tmp; ros_message->stopping_navigation = tmp ? true : false; } // Field name: invalid_accel_bias_cov_reset { uint8_t tmp; cdr >> tmp; ros_message->invalid_accel_bias_cov_reset = tmp ? true : false; } // Field name: bad_yaw_using_gps_course { uint8_t tmp; cdr >> tmp; ros_message->bad_yaw_using_gps_course = tmp ? true : false; } // Field name: stopping_mag_use { uint8_t tmp; cdr >> tmp; ros_message->stopping_mag_use = tmp ? true : false; } // Field name: vision_data_stopped { uint8_t tmp; cdr >> tmp; ros_message->vision_data_stopped = tmp ? true : false; } // Field name: emergency_yaw_reset_mag_stopped { uint8_t tmp; cdr >> tmp; ros_message->emergency_yaw_reset_mag_stopped = tmp ? true : false; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__EstimatorEventFlags( const void * untyped_ros_message, size_t current_alignment) { const _EstimatorEventFlags__ros_msg_type * ros_message = static_cast<const _EstimatorEventFlags__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name timestamp_sample { size_t item_size = sizeof(ros_message->timestamp_sample); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name information_event_changes { size_t item_size = sizeof(ros_message->information_event_changes); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gps_checks_passed { size_t item_size = sizeof(ros_message->gps_checks_passed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name reset_vel_to_gps { size_t item_size = sizeof(ros_message->reset_vel_to_gps); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name reset_vel_to_flow { size_t item_size = sizeof(ros_message->reset_vel_to_flow); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name reset_vel_to_vision { size_t item_size = sizeof(ros_message->reset_vel_to_vision); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name reset_vel_to_zero { size_t item_size = sizeof(ros_message->reset_vel_to_zero); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name reset_pos_to_last_known { size_t item_size = sizeof(ros_message->reset_pos_to_last_known); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name reset_pos_to_gps { size_t item_size = sizeof(ros_message->reset_pos_to_gps); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name reset_pos_to_vision { size_t item_size = sizeof(ros_message->reset_pos_to_vision); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name starting_gps_fusion { size_t item_size = sizeof(ros_message->starting_gps_fusion); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name starting_vision_pos_fusion { size_t item_size = sizeof(ros_message->starting_vision_pos_fusion); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name starting_vision_vel_fusion { size_t item_size = sizeof(ros_message->starting_vision_vel_fusion); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name starting_vision_yaw_fusion { size_t item_size = sizeof(ros_message->starting_vision_yaw_fusion); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name yaw_aligned_to_imu_gps { size_t item_size = sizeof(ros_message->yaw_aligned_to_imu_gps); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name warning_event_changes { size_t item_size = sizeof(ros_message->warning_event_changes); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gps_quality_poor { size_t item_size = sizeof(ros_message->gps_quality_poor); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gps_fusion_timout { size_t item_size = sizeof(ros_message->gps_fusion_timout); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gps_data_stopped { size_t item_size = sizeof(ros_message->gps_data_stopped); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gps_data_stopped_using_alternate { size_t item_size = sizeof(ros_message->gps_data_stopped_using_alternate); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name height_sensor_timeout { size_t item_size = sizeof(ros_message->height_sensor_timeout); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name stopping_navigation { size_t item_size = sizeof(ros_message->stopping_navigation); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name invalid_accel_bias_cov_reset { size_t item_size = sizeof(ros_message->invalid_accel_bias_cov_reset); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name bad_yaw_using_gps_course { size_t item_size = sizeof(ros_message->bad_yaw_using_gps_course); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name stopping_mag_use { size_t item_size = sizeof(ros_message->stopping_mag_use); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vision_data_stopped { size_t item_size = sizeof(ros_message->vision_data_stopped); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name emergency_yaw_reset_mag_stopped { size_t item_size = sizeof(ros_message->emergency_yaw_reset_mag_stopped); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _EstimatorEventFlags__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__EstimatorEventFlags( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__EstimatorEventFlags( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: timestamp_sample { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: information_event_changes { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gps_checks_passed { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: reset_vel_to_gps { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: reset_vel_to_flow { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: reset_vel_to_vision { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: reset_vel_to_zero { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: reset_pos_to_last_known { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: reset_pos_to_gps { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: reset_pos_to_vision { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: starting_gps_fusion { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: starting_vision_pos_fusion { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: starting_vision_vel_fusion { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: starting_vision_yaw_fusion { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: yaw_aligned_to_imu_gps { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: warning_event_changes { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gps_quality_poor { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: gps_fusion_timout { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: gps_data_stopped { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: gps_data_stopped_using_alternate { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: height_sensor_timeout { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: stopping_navigation { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: invalid_accel_bias_cov_reset { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: bad_yaw_using_gps_course { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: stopping_mag_use { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: vision_data_stopped { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: emergency_yaw_reset_mag_stopped { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _EstimatorEventFlags__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__EstimatorEventFlags( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_EstimatorEventFlags = { "px4_msgs::msg", "EstimatorEventFlags", _EstimatorEventFlags__cdr_serialize, _EstimatorEventFlags__cdr_deserialize, _EstimatorEventFlags__get_serialized_size, _EstimatorEventFlags__max_serialized_size }; static rosidl_message_type_support_t _EstimatorEventFlags__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_EstimatorEventFlags, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, EstimatorEventFlags)() { return &_EstimatorEventFlags__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/estimator_status_flags__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/EstimatorStatusFlags.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/estimator_status_flags__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/estimator_status_flags__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::EstimatorStatusFlags & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: timestamp_sample cdr << ros_message.timestamp_sample; // Member: control_status_changes cdr << ros_message.control_status_changes; // Member: cs_tilt_align cdr << (ros_message.cs_tilt_align ? true : false); // Member: cs_yaw_align cdr << (ros_message.cs_yaw_align ? true : false); // Member: cs_gps cdr << (ros_message.cs_gps ? true : false); // Member: cs_opt_flow cdr << (ros_message.cs_opt_flow ? true : false); // Member: cs_mag_hdg cdr << (ros_message.cs_mag_hdg ? true : false); // Member: cs_mag_3d cdr << (ros_message.cs_mag_3d ? true : false); // Member: cs_mag_dec cdr << (ros_message.cs_mag_dec ? true : false); // Member: cs_in_air cdr << (ros_message.cs_in_air ? true : false); // Member: cs_wind cdr << (ros_message.cs_wind ? true : false); // Member: cs_baro_hgt cdr << (ros_message.cs_baro_hgt ? true : false); // Member: cs_rng_hgt cdr << (ros_message.cs_rng_hgt ? true : false); // Member: cs_gps_hgt cdr << (ros_message.cs_gps_hgt ? true : false); // Member: cs_ev_pos cdr << (ros_message.cs_ev_pos ? true : false); // Member: cs_ev_yaw cdr << (ros_message.cs_ev_yaw ? true : false); // Member: cs_ev_hgt cdr << (ros_message.cs_ev_hgt ? true : false); // Member: cs_fuse_beta cdr << (ros_message.cs_fuse_beta ? true : false); // Member: cs_mag_field_disturbed cdr << (ros_message.cs_mag_field_disturbed ? true : false); // Member: cs_fixed_wing cdr << (ros_message.cs_fixed_wing ? true : false); // Member: cs_mag_fault cdr << (ros_message.cs_mag_fault ? true : false); // Member: cs_fuse_aspd cdr << (ros_message.cs_fuse_aspd ? true : false); // Member: cs_gnd_effect cdr << (ros_message.cs_gnd_effect ? true : false); // Member: cs_rng_stuck cdr << (ros_message.cs_rng_stuck ? true : false); // Member: cs_gps_yaw cdr << (ros_message.cs_gps_yaw ? true : false); // Member: cs_mag_aligned_in_flight cdr << (ros_message.cs_mag_aligned_in_flight ? true : false); // Member: cs_ev_vel cdr << (ros_message.cs_ev_vel ? true : false); // Member: cs_synthetic_mag_z cdr << (ros_message.cs_synthetic_mag_z ? true : false); // Member: cs_vehicle_at_rest cdr << (ros_message.cs_vehicle_at_rest ? true : false); // Member: fault_status_changes cdr << ros_message.fault_status_changes; // Member: fs_bad_mag_x cdr << (ros_message.fs_bad_mag_x ? true : false); // Member: fs_bad_mag_y cdr << (ros_message.fs_bad_mag_y ? true : false); // Member: fs_bad_mag_z cdr << (ros_message.fs_bad_mag_z ? true : false); // Member: fs_bad_hdg cdr << (ros_message.fs_bad_hdg ? true : false); // Member: fs_bad_mag_decl cdr << (ros_message.fs_bad_mag_decl ? true : false); // Member: fs_bad_airspeed cdr << (ros_message.fs_bad_airspeed ? true : false); // Member: fs_bad_sideslip cdr << (ros_message.fs_bad_sideslip ? true : false); // Member: fs_bad_optflow_x cdr << (ros_message.fs_bad_optflow_x ? true : false); // Member: fs_bad_optflow_y cdr << (ros_message.fs_bad_optflow_y ? true : false); // Member: fs_bad_vel_n cdr << (ros_message.fs_bad_vel_n ? true : false); // Member: fs_bad_vel_e cdr << (ros_message.fs_bad_vel_e ? true : false); // Member: fs_bad_vel_d cdr << (ros_message.fs_bad_vel_d ? true : false); // Member: fs_bad_pos_n cdr << (ros_message.fs_bad_pos_n ? true : false); // Member: fs_bad_pos_e cdr << (ros_message.fs_bad_pos_e ? true : false); // Member: fs_bad_pos_d cdr << (ros_message.fs_bad_pos_d ? true : false); // Member: fs_bad_acc_bias cdr << (ros_message.fs_bad_acc_bias ? true : false); // Member: fs_bad_acc_vertical cdr << (ros_message.fs_bad_acc_vertical ? true : false); // Member: fs_bad_acc_clipping cdr << (ros_message.fs_bad_acc_clipping ? true : false); // Member: innovation_fault_status_changes cdr << ros_message.innovation_fault_status_changes; // Member: reject_hor_vel cdr << (ros_message.reject_hor_vel ? true : false); // Member: reject_ver_vel cdr << (ros_message.reject_ver_vel ? true : false); // Member: reject_hor_pos cdr << (ros_message.reject_hor_pos ? true : false); // Member: reject_ver_pos cdr << (ros_message.reject_ver_pos ? true : false); // Member: reject_mag_x cdr << (ros_message.reject_mag_x ? true : false); // Member: reject_mag_y cdr << (ros_message.reject_mag_y ? true : false); // Member: reject_mag_z cdr << (ros_message.reject_mag_z ? true : false); // Member: reject_yaw cdr << (ros_message.reject_yaw ? true : false); // Member: reject_airspeed cdr << (ros_message.reject_airspeed ? true : false); // Member: reject_sideslip cdr << (ros_message.reject_sideslip ? true : false); // Member: reject_hagl cdr << (ros_message.reject_hagl ? true : false); // Member: reject_optflow_x cdr << (ros_message.reject_optflow_x ? true : false); // Member: reject_optflow_y cdr << (ros_message.reject_optflow_y ? true : false); return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::EstimatorStatusFlags & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: timestamp_sample cdr >> ros_message.timestamp_sample; // Member: control_status_changes cdr >> ros_message.control_status_changes; // Member: cs_tilt_align { uint8_t tmp; cdr >> tmp; ros_message.cs_tilt_align = tmp ? true : false; } // Member: cs_yaw_align { uint8_t tmp; cdr >> tmp; ros_message.cs_yaw_align = tmp ? true : false; } // Member: cs_gps { uint8_t tmp; cdr >> tmp; ros_message.cs_gps = tmp ? true : false; } // Member: cs_opt_flow { uint8_t tmp; cdr >> tmp; ros_message.cs_opt_flow = tmp ? true : false; } // Member: cs_mag_hdg { uint8_t tmp; cdr >> tmp; ros_message.cs_mag_hdg = tmp ? true : false; } // Member: cs_mag_3d { uint8_t tmp; cdr >> tmp; ros_message.cs_mag_3d = tmp ? true : false; } // Member: cs_mag_dec { uint8_t tmp; cdr >> tmp; ros_message.cs_mag_dec = tmp ? true : false; } // Member: cs_in_air { uint8_t tmp; cdr >> tmp; ros_message.cs_in_air = tmp ? true : false; } // Member: cs_wind { uint8_t tmp; cdr >> tmp; ros_message.cs_wind = tmp ? true : false; } // Member: cs_baro_hgt { uint8_t tmp; cdr >> tmp; ros_message.cs_baro_hgt = tmp ? true : false; } // Member: cs_rng_hgt { uint8_t tmp; cdr >> tmp; ros_message.cs_rng_hgt = tmp ? true : false; } // Member: cs_gps_hgt { uint8_t tmp; cdr >> tmp; ros_message.cs_gps_hgt = tmp ? true : false; } // Member: cs_ev_pos { uint8_t tmp; cdr >> tmp; ros_message.cs_ev_pos = tmp ? true : false; } // Member: cs_ev_yaw { uint8_t tmp; cdr >> tmp; ros_message.cs_ev_yaw = tmp ? true : false; } // Member: cs_ev_hgt { uint8_t tmp; cdr >> tmp; ros_message.cs_ev_hgt = tmp ? true : false; } // Member: cs_fuse_beta { uint8_t tmp; cdr >> tmp; ros_message.cs_fuse_beta = tmp ? true : false; } // Member: cs_mag_field_disturbed { uint8_t tmp; cdr >> tmp; ros_message.cs_mag_field_disturbed = tmp ? true : false; } // Member: cs_fixed_wing { uint8_t tmp; cdr >> tmp; ros_message.cs_fixed_wing = tmp ? true : false; } // Member: cs_mag_fault { uint8_t tmp; cdr >> tmp; ros_message.cs_mag_fault = tmp ? true : false; } // Member: cs_fuse_aspd { uint8_t tmp; cdr >> tmp; ros_message.cs_fuse_aspd = tmp ? true : false; } // Member: cs_gnd_effect { uint8_t tmp; cdr >> tmp; ros_message.cs_gnd_effect = tmp ? true : false; } // Member: cs_rng_stuck { uint8_t tmp; cdr >> tmp; ros_message.cs_rng_stuck = tmp ? true : false; } // Member: cs_gps_yaw { uint8_t tmp; cdr >> tmp; ros_message.cs_gps_yaw = tmp ? true : false; } // Member: cs_mag_aligned_in_flight { uint8_t tmp; cdr >> tmp; ros_message.cs_mag_aligned_in_flight = tmp ? true : false; } // Member: cs_ev_vel { uint8_t tmp; cdr >> tmp; ros_message.cs_ev_vel = tmp ? true : false; } // Member: cs_synthetic_mag_z { uint8_t tmp; cdr >> tmp; ros_message.cs_synthetic_mag_z = tmp ? true : false; } // Member: cs_vehicle_at_rest { uint8_t tmp; cdr >> tmp; ros_message.cs_vehicle_at_rest = tmp ? true : false; } // Member: fault_status_changes cdr >> ros_message.fault_status_changes; // Member: fs_bad_mag_x { uint8_t tmp; cdr >> tmp; ros_message.fs_bad_mag_x = tmp ? true : false; } // Member: fs_bad_mag_y { uint8_t tmp; cdr >> tmp; ros_message.fs_bad_mag_y = tmp ? true : false; } // Member: fs_bad_mag_z { uint8_t tmp; cdr >> tmp; ros_message.fs_bad_mag_z = tmp ? true : false; } // Member: fs_bad_hdg { uint8_t tmp; cdr >> tmp; ros_message.fs_bad_hdg = tmp ? true : false; } // Member: fs_bad_mag_decl { uint8_t tmp; cdr >> tmp; ros_message.fs_bad_mag_decl = tmp ? true : false; } // Member: fs_bad_airspeed { uint8_t tmp; cdr >> tmp; ros_message.fs_bad_airspeed = tmp ? true : false; } // Member: fs_bad_sideslip { uint8_t tmp; cdr >> tmp; ros_message.fs_bad_sideslip = tmp ? true : false; } // Member: fs_bad_optflow_x { uint8_t tmp; cdr >> tmp; ros_message.fs_bad_optflow_x = tmp ? true : false; } // Member: fs_bad_optflow_y { uint8_t tmp; cdr >> tmp; ros_message.fs_bad_optflow_y = tmp ? true : false; } // Member: fs_bad_vel_n { uint8_t tmp; cdr >> tmp; ros_message.fs_bad_vel_n = tmp ? true : false; } // Member: fs_bad_vel_e { uint8_t tmp; cdr >> tmp; ros_message.fs_bad_vel_e = tmp ? true : false; } // Member: fs_bad_vel_d { uint8_t tmp; cdr >> tmp; ros_message.fs_bad_vel_d = tmp ? true : false; } // Member: fs_bad_pos_n { uint8_t tmp; cdr >> tmp; ros_message.fs_bad_pos_n = tmp ? true : false; } // Member: fs_bad_pos_e { uint8_t tmp; cdr >> tmp; ros_message.fs_bad_pos_e = tmp ? true : false; } // Member: fs_bad_pos_d { uint8_t tmp; cdr >> tmp; ros_message.fs_bad_pos_d = tmp ? true : false; } // Member: fs_bad_acc_bias { uint8_t tmp; cdr >> tmp; ros_message.fs_bad_acc_bias = tmp ? true : false; } // Member: fs_bad_acc_vertical { uint8_t tmp; cdr >> tmp; ros_message.fs_bad_acc_vertical = tmp ? true : false; } // Member: fs_bad_acc_clipping { uint8_t tmp; cdr >> tmp; ros_message.fs_bad_acc_clipping = tmp ? true : false; } // Member: innovation_fault_status_changes cdr >> ros_message.innovation_fault_status_changes; // Member: reject_hor_vel { uint8_t tmp; cdr >> tmp; ros_message.reject_hor_vel = tmp ? true : false; } // Member: reject_ver_vel { uint8_t tmp; cdr >> tmp; ros_message.reject_ver_vel = tmp ? true : false; } // Member: reject_hor_pos { uint8_t tmp; cdr >> tmp; ros_message.reject_hor_pos = tmp ? true : false; } // Member: reject_ver_pos { uint8_t tmp; cdr >> tmp; ros_message.reject_ver_pos = tmp ? true : false; } // Member: reject_mag_x { uint8_t tmp; cdr >> tmp; ros_message.reject_mag_x = tmp ? true : false; } // Member: reject_mag_y { uint8_t tmp; cdr >> tmp; ros_message.reject_mag_y = tmp ? true : false; } // Member: reject_mag_z { uint8_t tmp; cdr >> tmp; ros_message.reject_mag_z = tmp ? true : false; } // Member: reject_yaw { uint8_t tmp; cdr >> tmp; ros_message.reject_yaw = tmp ? true : false; } // Member: reject_airspeed { uint8_t tmp; cdr >> tmp; ros_message.reject_airspeed = tmp ? true : false; } // Member: reject_sideslip { uint8_t tmp; cdr >> tmp; ros_message.reject_sideslip = tmp ? true : false; } // Member: reject_hagl { uint8_t tmp; cdr >> tmp; ros_message.reject_hagl = tmp ? true : false; } // Member: reject_optflow_x { uint8_t tmp; cdr >> tmp; ros_message.reject_optflow_x = tmp ? true : false; } // Member: reject_optflow_y { uint8_t tmp; cdr >> tmp; ros_message.reject_optflow_y = tmp ? true : false; } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::EstimatorStatusFlags & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: timestamp_sample { size_t item_size = sizeof(ros_message.timestamp_sample); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: control_status_changes { size_t item_size = sizeof(ros_message.control_status_changes); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cs_tilt_align { size_t item_size = sizeof(ros_message.cs_tilt_align); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cs_yaw_align { size_t item_size = sizeof(ros_message.cs_yaw_align); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cs_gps { size_t item_size = sizeof(ros_message.cs_gps); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cs_opt_flow { size_t item_size = sizeof(ros_message.cs_opt_flow); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cs_mag_hdg { size_t item_size = sizeof(ros_message.cs_mag_hdg); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cs_mag_3d { size_t item_size = sizeof(ros_message.cs_mag_3d); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cs_mag_dec { size_t item_size = sizeof(ros_message.cs_mag_dec); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cs_in_air { size_t item_size = sizeof(ros_message.cs_in_air); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cs_wind { size_t item_size = sizeof(ros_message.cs_wind); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cs_baro_hgt { size_t item_size = sizeof(ros_message.cs_baro_hgt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cs_rng_hgt { size_t item_size = sizeof(ros_message.cs_rng_hgt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cs_gps_hgt { size_t item_size = sizeof(ros_message.cs_gps_hgt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cs_ev_pos { size_t item_size = sizeof(ros_message.cs_ev_pos); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cs_ev_yaw { size_t item_size = sizeof(ros_message.cs_ev_yaw); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cs_ev_hgt { size_t item_size = sizeof(ros_message.cs_ev_hgt); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cs_fuse_beta { size_t item_size = sizeof(ros_message.cs_fuse_beta); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cs_mag_field_disturbed { size_t item_size = sizeof(ros_message.cs_mag_field_disturbed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cs_fixed_wing { size_t item_size = sizeof(ros_message.cs_fixed_wing); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cs_mag_fault { size_t item_size = sizeof(ros_message.cs_mag_fault); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cs_fuse_aspd { size_t item_size = sizeof(ros_message.cs_fuse_aspd); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cs_gnd_effect { size_t item_size = sizeof(ros_message.cs_gnd_effect); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cs_rng_stuck { size_t item_size = sizeof(ros_message.cs_rng_stuck); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cs_gps_yaw { size_t item_size = sizeof(ros_message.cs_gps_yaw); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cs_mag_aligned_in_flight { size_t item_size = sizeof(ros_message.cs_mag_aligned_in_flight); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cs_ev_vel { size_t item_size = sizeof(ros_message.cs_ev_vel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cs_synthetic_mag_z { size_t item_size = sizeof(ros_message.cs_synthetic_mag_z); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: cs_vehicle_at_rest { size_t item_size = sizeof(ros_message.cs_vehicle_at_rest); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: fault_status_changes { size_t item_size = sizeof(ros_message.fault_status_changes); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: fs_bad_mag_x { size_t item_size = sizeof(ros_message.fs_bad_mag_x); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: fs_bad_mag_y { size_t item_size = sizeof(ros_message.fs_bad_mag_y); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: fs_bad_mag_z { size_t item_size = sizeof(ros_message.fs_bad_mag_z); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: fs_bad_hdg { size_t item_size = sizeof(ros_message.fs_bad_hdg); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: fs_bad_mag_decl { size_t item_size = sizeof(ros_message.fs_bad_mag_decl); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: fs_bad_airspeed { size_t item_size = sizeof(ros_message.fs_bad_airspeed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: fs_bad_sideslip { size_t item_size = sizeof(ros_message.fs_bad_sideslip); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: fs_bad_optflow_x { size_t item_size = sizeof(ros_message.fs_bad_optflow_x); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: fs_bad_optflow_y { size_t item_size = sizeof(ros_message.fs_bad_optflow_y); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: fs_bad_vel_n { size_t item_size = sizeof(ros_message.fs_bad_vel_n); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: fs_bad_vel_e { size_t item_size = sizeof(ros_message.fs_bad_vel_e); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: fs_bad_vel_d { size_t item_size = sizeof(ros_message.fs_bad_vel_d); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: fs_bad_pos_n { size_t item_size = sizeof(ros_message.fs_bad_pos_n); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: fs_bad_pos_e { size_t item_size = sizeof(ros_message.fs_bad_pos_e); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: fs_bad_pos_d { size_t item_size = sizeof(ros_message.fs_bad_pos_d); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: fs_bad_acc_bias { size_t item_size = sizeof(ros_message.fs_bad_acc_bias); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: fs_bad_acc_vertical { size_t item_size = sizeof(ros_message.fs_bad_acc_vertical); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: fs_bad_acc_clipping { size_t item_size = sizeof(ros_message.fs_bad_acc_clipping); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: innovation_fault_status_changes { size_t item_size = sizeof(ros_message.innovation_fault_status_changes); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: reject_hor_vel { size_t item_size = sizeof(ros_message.reject_hor_vel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: reject_ver_vel { size_t item_size = sizeof(ros_message.reject_ver_vel); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: reject_hor_pos { size_t item_size = sizeof(ros_message.reject_hor_pos); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: reject_ver_pos { size_t item_size = sizeof(ros_message.reject_ver_pos); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: reject_mag_x { size_t item_size = sizeof(ros_message.reject_mag_x); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: reject_mag_y { size_t item_size = sizeof(ros_message.reject_mag_y); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: reject_mag_z { size_t item_size = sizeof(ros_message.reject_mag_z); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: reject_yaw { size_t item_size = sizeof(ros_message.reject_yaw); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: reject_airspeed { size_t item_size = sizeof(ros_message.reject_airspeed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: reject_sideslip { size_t item_size = sizeof(ros_message.reject_sideslip); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: reject_hagl { size_t item_size = sizeof(ros_message.reject_hagl); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: reject_optflow_x { size_t item_size = sizeof(ros_message.reject_optflow_x); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: reject_optflow_y { size_t item_size = sizeof(ros_message.reject_optflow_y); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_EstimatorStatusFlags( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: timestamp_sample { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: control_status_changes { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: cs_tilt_align { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: cs_yaw_align { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: cs_gps { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: cs_opt_flow { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: cs_mag_hdg { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: cs_mag_3d { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: cs_mag_dec { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: cs_in_air { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: cs_wind { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: cs_baro_hgt { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: cs_rng_hgt { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: cs_gps_hgt { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: cs_ev_pos { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: cs_ev_yaw { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: cs_ev_hgt { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: cs_fuse_beta { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: cs_mag_field_disturbed { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: cs_fixed_wing { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: cs_mag_fault { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: cs_fuse_aspd { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: cs_gnd_effect { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: cs_rng_stuck { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: cs_gps_yaw { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: cs_mag_aligned_in_flight { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: cs_ev_vel { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: cs_synthetic_mag_z { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: cs_vehicle_at_rest { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: fault_status_changes { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: fs_bad_mag_x { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: fs_bad_mag_y { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: fs_bad_mag_z { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: fs_bad_hdg { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: fs_bad_mag_decl { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: fs_bad_airspeed { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: fs_bad_sideslip { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: fs_bad_optflow_x { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: fs_bad_optflow_y { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: fs_bad_vel_n { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: fs_bad_vel_e { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: fs_bad_vel_d { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: fs_bad_pos_n { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: fs_bad_pos_e { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: fs_bad_pos_d { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: fs_bad_acc_bias { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: fs_bad_acc_vertical { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: fs_bad_acc_clipping { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: innovation_fault_status_changes { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: reject_hor_vel { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: reject_ver_vel { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: reject_hor_pos { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: reject_ver_pos { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: reject_mag_x { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: reject_mag_y { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: reject_mag_z { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: reject_yaw { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: reject_airspeed { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: reject_sideslip { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: reject_hagl { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: reject_optflow_x { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: reject_optflow_y { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _EstimatorStatusFlags__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::EstimatorStatusFlags *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _EstimatorStatusFlags__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::EstimatorStatusFlags *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _EstimatorStatusFlags__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::EstimatorStatusFlags *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _EstimatorStatusFlags__max_serialized_size(bool & full_bounded) { return max_serialized_size_EstimatorStatusFlags(full_bounded, 0); } static message_type_support_callbacks_t _EstimatorStatusFlags__callbacks = { "px4_msgs::msg", "EstimatorStatusFlags", _EstimatorStatusFlags__cdr_serialize, _EstimatorStatusFlags__cdr_deserialize, _EstimatorStatusFlags__get_serialized_size, _EstimatorStatusFlags__max_serialized_size }; static rosidl_message_type_support_t _EstimatorStatusFlags__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_EstimatorStatusFlags__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::EstimatorStatusFlags>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_EstimatorStatusFlags__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, EstimatorStatusFlags)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_EstimatorStatusFlags__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_trajectory_waypoint.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleTrajectoryWaypoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_TRAJECTORY_WAYPOINT_H_ #define PX4_MSGS__MSG__VEHICLE_TRAJECTORY_WAYPOINT_H_ #include "px4_msgs/msg/vehicle_trajectory_waypoint__struct.h" #include "px4_msgs/msg/vehicle_trajectory_waypoint__functions.h" #include "px4_msgs/msg/vehicle_trajectory_waypoint__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_TRAJECTORY_WAYPOINT_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/orb_multitest__traits.hpp // generated from rosidl_generator_cpp/resource/idl__traits.hpp.em // with input from px4_msgs:msg/OrbMultitest.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORB_MULTITEST__TRAITS_HPP_ #define PX4_MSGS__MSG__ORB_MULTITEST__TRAITS_HPP_ #include "px4_msgs/msg/orb_multitest__struct.hpp" #include <rosidl_generator_cpp/traits.hpp> #include <stdint.h> #include <type_traits> namespace rosidl_generator_traits { template<> inline const char * data_type<px4_msgs::msg::OrbMultitest>() { return "px4_msgs::msg::OrbMultitest"; } template<> struct has_fixed_size<px4_msgs::msg::OrbMultitest> : std::integral_constant<bool, true> {}; template<> struct has_bounded_size<px4_msgs::msg::OrbMultitest> : std::integral_constant<bool, true> {}; template<> struct is_message<px4_msgs::msg::OrbMultitest> : std::true_type {}; } // namespace rosidl_generator_traits #endif // PX4_MSGS__MSG__ORB_MULTITEST__TRAITS_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/ekf_gps_drift__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/EkfGpsDrift.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/ekf_gps_drift__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/ekf_gps_drift__struct.h" #include "px4_msgs/msg/ekf_gps_drift__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _EkfGpsDrift__ros_msg_type = px4_msgs__msg__EkfGpsDrift; static bool _EkfGpsDrift__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _EkfGpsDrift__ros_msg_type * ros_message = static_cast<const _EkfGpsDrift__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: hpos_drift_rate { cdr << ros_message->hpos_drift_rate; } // Field name: vpos_drift_rate { cdr << ros_message->vpos_drift_rate; } // Field name: hspd { cdr << ros_message->hspd; } // Field name: blocked { cdr << (ros_message->blocked ? true : false); } return true; } static bool _EkfGpsDrift__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _EkfGpsDrift__ros_msg_type * ros_message = static_cast<_EkfGpsDrift__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: hpos_drift_rate { cdr >> ros_message->hpos_drift_rate; } // Field name: vpos_drift_rate { cdr >> ros_message->vpos_drift_rate; } // Field name: hspd { cdr >> ros_message->hspd; } // Field name: blocked { uint8_t tmp; cdr >> tmp; ros_message->blocked = tmp ? true : false; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__EkfGpsDrift( const void * untyped_ros_message, size_t current_alignment) { const _EkfGpsDrift__ros_msg_type * ros_message = static_cast<const _EkfGpsDrift__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name hpos_drift_rate { size_t item_size = sizeof(ros_message->hpos_drift_rate); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vpos_drift_rate { size_t item_size = sizeof(ros_message->vpos_drift_rate); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name hspd { size_t item_size = sizeof(ros_message->hspd); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name blocked { size_t item_size = sizeof(ros_message->blocked); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _EkfGpsDrift__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__EkfGpsDrift( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__EkfGpsDrift( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: hpos_drift_rate { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: vpos_drift_rate { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: hspd { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: blocked { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _EkfGpsDrift__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__EkfGpsDrift( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_EkfGpsDrift = { "px4_msgs::msg", "EkfGpsDrift", _EkfGpsDrift__cdr_serialize, _EkfGpsDrift__cdr_deserialize, _EkfGpsDrift__get_serialized_size, _EkfGpsDrift__max_serialized_size }; static rosidl_message_type_support_t _EkfGpsDrift__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_EkfGpsDrift, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, EkfGpsDrift)() { return &_EkfGpsDrift__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_cpp/px4_msgs/msg/timesync_status__type_support.cpp // generated from rosidl_typesupport_introspection_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/TimesyncStatus.idl // generated code does not contain a copyright notice #include "array" #include "cstddef" #include "string" #include "vector" #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/timesync_status__struct.hpp" #include "rosidl_typesupport_introspection_cpp/field_types.hpp" #include "rosidl_typesupport_introspection_cpp/identifier.hpp" #include "rosidl_typesupport_introspection_cpp/message_introspection.hpp" #include "rosidl_typesupport_introspection_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_introspection_cpp/visibility_control.h" namespace px4_msgs { namespace msg { namespace rosidl_typesupport_introspection_cpp { void TimesyncStatus_init_function( void * message_memory, rosidl_generator_cpp::MessageInitialization _init) { new (message_memory) px4_msgs::msg::TimesyncStatus(_init); } void TimesyncStatus_fini_function(void * message_memory) { auto typed_message = static_cast<px4_msgs::msg::TimesyncStatus *>(message_memory); typed_message->~TimesyncStatus(); } static const ::rosidl_typesupport_introspection_cpp::MessageMember TimesyncStatus_message_member_array[5] = { { "timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TimesyncStatus, timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "remote_timestamp", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TimesyncStatus, remote_timestamp), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "observed_offset", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TimesyncStatus, observed_offset), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "estimated_offset", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_INT64, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TimesyncStatus, estimated_offset), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer }, { "round_trip_time", // name ::rosidl_typesupport_introspection_cpp::ROS_TYPE_UINT32, // type 0, // upper bound of string nullptr, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs::msg::TimesyncStatus, round_trip_time), // bytes offset in struct nullptr, // default value nullptr, // size() function pointer nullptr, // get_const(index) function pointer nullptr, // get(index) function pointer nullptr // resize(index) function pointer } }; static const ::rosidl_typesupport_introspection_cpp::MessageMembers TimesyncStatus_message_members = { "px4_msgs::msg", // message namespace "TimesyncStatus", // message name 5, // number of fields sizeof(px4_msgs::msg::TimesyncStatus), TimesyncStatus_message_member_array, // message members TimesyncStatus_init_function, // function to initialize message memory (memory has to be allocated) TimesyncStatus_fini_function // function to terminate message instance (will not free memory) }; static const rosidl_message_type_support_t TimesyncStatus_message_type_support_handle = { ::rosidl_typesupport_introspection_cpp::typesupport_identifier, &TimesyncStatus_message_members, get_message_typesupport_handle_function, }; } // namespace rosidl_typesupport_introspection_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_introspection_cpp { template<> ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::TimesyncStatus>() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::TimesyncStatus_message_type_support_handle; } } // namespace rosidl_typesupport_introspection_cpp #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_INTROSPECTION_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_cpp, px4_msgs, msg, TimesyncStatus)() { return &::px4_msgs::msg::rosidl_typesupport_introspection_cpp::TimesyncStatus_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_vehicle_status.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/VehicleStatus.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_VehicleStatus(type): """Metaclass of message 'VehicleStatus'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'ARMING_STATE_INIT': 0, 'ARMING_STATE_STANDBY': 1, 'ARMING_STATE_ARMED': 2, 'ARMING_STATE_STANDBY_ERROR': 3, 'ARMING_STATE_SHUTDOWN': 4, 'ARMING_STATE_IN_AIR_RESTORE': 5, 'ARMING_STATE_MAX': 6, 'FAILURE_NONE': 0, 'FAILURE_ROLL': 1, 'FAILURE_PITCH': 2, 'FAILURE_ALT': 4, 'FAILURE_EXT': 8, 'FAILURE_ARM_ESC': 16, 'HIL_STATE_OFF': 0, 'HIL_STATE_ON': 1, 'NAVIGATION_STATE_MANUAL': 0, 'NAVIGATION_STATE_ALTCTL': 1, 'NAVIGATION_STATE_POSCTL': 2, 'NAVIGATION_STATE_AUTO_MISSION': 3, 'NAVIGATION_STATE_AUTO_LOITER': 4, 'NAVIGATION_STATE_AUTO_RTL': 5, 'NAVIGATION_STATE_AUTO_LANDENGFAIL': 8, 'NAVIGATION_STATE_AUTO_LANDGPSFAIL': 9, 'NAVIGATION_STATE_ACRO': 10, 'NAVIGATION_STATE_UNUSED': 11, 'NAVIGATION_STATE_DESCEND': 12, 'NAVIGATION_STATE_TERMINATION': 13, 'NAVIGATION_STATE_OFFBOARD': 14, 'NAVIGATION_STATE_STAB': 15, 'NAVIGATION_STATE_UNUSED2': 16, 'NAVIGATION_STATE_AUTO_TAKEOFF': 17, 'NAVIGATION_STATE_AUTO_LAND': 18, 'NAVIGATION_STATE_AUTO_FOLLOW_TARGET': 19, 'NAVIGATION_STATE_AUTO_PRECLAND': 20, 'NAVIGATION_STATE_ORBIT': 21, 'NAVIGATION_STATE_MAX': 22, 'RC_IN_MODE_DEFAULT': 0, 'RC_IN_MODE_OFF': 1, 'RC_IN_MODE_GENERATED': 2, 'VEHICLE_TYPE_UNKNOWN': 0, 'VEHICLE_TYPE_ROTARY_WING': 1, 'VEHICLE_TYPE_FIXED_WING': 2, 'VEHICLE_TYPE_ROVER': 3, 'VEHICLE_TYPE_AIRSHIP': 4, 'ARM_DISARM_REASON_TRANSITION_TO_STANDBY': 0, 'ARM_DISARM_REASON_RC_STICK': 1, 'ARM_DISARM_REASON_RC_SWITCH': 2, 'ARM_DISARM_REASON_COMMAND_INTERNAL': 3, 'ARM_DISARM_REASON_COMMAND_EXTERNAL': 4, 'ARM_DISARM_REASON_MISSION_START': 5, 'ARM_DISARM_REASON_SAFETY_BUTTON': 6, 'ARM_DISARM_REASON_AUTO_DISARM_LAND': 7, 'ARM_DISARM_REASON_AUTO_DISARM_PREFLIGHT': 8, 'ARM_DISARM_REASON_KILL_SWITCH': 9, 'ARM_DISARM_REASON_LOCKDOWN': 10, 'ARM_DISARM_REASON_FAILURE_DETECTOR': 11, 'ARM_DISARM_REASON_SHUTDOWN': 12, 'ARM_DISARM_REASON_UNIT_TEST': 13, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.VehicleStatus') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__vehicle_status cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__vehicle_status cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__vehicle_status cls._TYPE_SUPPORT = module.type_support_msg__msg__vehicle_status cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__vehicle_status @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'ARMING_STATE_INIT': cls.__constants['ARMING_STATE_INIT'], 'ARMING_STATE_STANDBY': cls.__constants['ARMING_STATE_STANDBY'], 'ARMING_STATE_ARMED': cls.__constants['ARMING_STATE_ARMED'], 'ARMING_STATE_STANDBY_ERROR': cls.__constants['ARMING_STATE_STANDBY_ERROR'], 'ARMING_STATE_SHUTDOWN': cls.__constants['ARMING_STATE_SHUTDOWN'], 'ARMING_STATE_IN_AIR_RESTORE': cls.__constants['ARMING_STATE_IN_AIR_RESTORE'], 'ARMING_STATE_MAX': cls.__constants['ARMING_STATE_MAX'], 'FAILURE_NONE': cls.__constants['FAILURE_NONE'], 'FAILURE_ROLL': cls.__constants['FAILURE_ROLL'], 'FAILURE_PITCH': cls.__constants['FAILURE_PITCH'], 'FAILURE_ALT': cls.__constants['FAILURE_ALT'], 'FAILURE_EXT': cls.__constants['FAILURE_EXT'], 'FAILURE_ARM_ESC': cls.__constants['FAILURE_ARM_ESC'], 'HIL_STATE_OFF': cls.__constants['HIL_STATE_OFF'], 'HIL_STATE_ON': cls.__constants['HIL_STATE_ON'], 'NAVIGATION_STATE_MANUAL': cls.__constants['NAVIGATION_STATE_MANUAL'], 'NAVIGATION_STATE_ALTCTL': cls.__constants['NAVIGATION_STATE_ALTCTL'], 'NAVIGATION_STATE_POSCTL': cls.__constants['NAVIGATION_STATE_POSCTL'], 'NAVIGATION_STATE_AUTO_MISSION': cls.__constants['NAVIGATION_STATE_AUTO_MISSION'], 'NAVIGATION_STATE_AUTO_LOITER': cls.__constants['NAVIGATION_STATE_AUTO_LOITER'], 'NAVIGATION_STATE_AUTO_RTL': cls.__constants['NAVIGATION_STATE_AUTO_RTL'], 'NAVIGATION_STATE_AUTO_LANDENGFAIL': cls.__constants['NAVIGATION_STATE_AUTO_LANDENGFAIL'], 'NAVIGATION_STATE_AUTO_LANDGPSFAIL': cls.__constants['NAVIGATION_STATE_AUTO_LANDGPSFAIL'], 'NAVIGATION_STATE_ACRO': cls.__constants['NAVIGATION_STATE_ACRO'], 'NAVIGATION_STATE_UNUSED': cls.__constants['NAVIGATION_STATE_UNUSED'], 'NAVIGATION_STATE_DESCEND': cls.__constants['NAVIGATION_STATE_DESCEND'], 'NAVIGATION_STATE_TERMINATION': cls.__constants['NAVIGATION_STATE_TERMINATION'], 'NAVIGATION_STATE_OFFBOARD': cls.__constants['NAVIGATION_STATE_OFFBOARD'], 'NAVIGATION_STATE_STAB': cls.__constants['NAVIGATION_STATE_STAB'], 'NAVIGATION_STATE_UNUSED2': cls.__constants['NAVIGATION_STATE_UNUSED2'], 'NAVIGATION_STATE_AUTO_TAKEOFF': cls.__constants['NAVIGATION_STATE_AUTO_TAKEOFF'], 'NAVIGATION_STATE_AUTO_LAND': cls.__constants['NAVIGATION_STATE_AUTO_LAND'], 'NAVIGATION_STATE_AUTO_FOLLOW_TARGET': cls.__constants['NAVIGATION_STATE_AUTO_FOLLOW_TARGET'], 'NAVIGATION_STATE_AUTO_PRECLAND': cls.__constants['NAVIGATION_STATE_AUTO_PRECLAND'], 'NAVIGATION_STATE_ORBIT': cls.__constants['NAVIGATION_STATE_ORBIT'], 'NAVIGATION_STATE_MAX': cls.__constants['NAVIGATION_STATE_MAX'], 'RC_IN_MODE_DEFAULT': cls.__constants['RC_IN_MODE_DEFAULT'], 'RC_IN_MODE_OFF': cls.__constants['RC_IN_MODE_OFF'], 'RC_IN_MODE_GENERATED': cls.__constants['RC_IN_MODE_GENERATED'], 'VEHICLE_TYPE_UNKNOWN': cls.__constants['VEHICLE_TYPE_UNKNOWN'], 'VEHICLE_TYPE_ROTARY_WING': cls.__constants['VEHICLE_TYPE_ROTARY_WING'], 'VEHICLE_TYPE_FIXED_WING': cls.__constants['VEHICLE_TYPE_FIXED_WING'], 'VEHICLE_TYPE_ROVER': cls.__constants['VEHICLE_TYPE_ROVER'], 'VEHICLE_TYPE_AIRSHIP': cls.__constants['VEHICLE_TYPE_AIRSHIP'], 'ARM_DISARM_REASON_TRANSITION_TO_STANDBY': cls.__constants['ARM_DISARM_REASON_TRANSITION_TO_STANDBY'], 'ARM_DISARM_REASON_RC_STICK': cls.__constants['ARM_DISARM_REASON_RC_STICK'], 'ARM_DISARM_REASON_RC_SWITCH': cls.__constants['ARM_DISARM_REASON_RC_SWITCH'], 'ARM_DISARM_REASON_COMMAND_INTERNAL': cls.__constants['ARM_DISARM_REASON_COMMAND_INTERNAL'], 'ARM_DISARM_REASON_COMMAND_EXTERNAL': cls.__constants['ARM_DISARM_REASON_COMMAND_EXTERNAL'], 'ARM_DISARM_REASON_MISSION_START': cls.__constants['ARM_DISARM_REASON_MISSION_START'], 'ARM_DISARM_REASON_SAFETY_BUTTON': cls.__constants['ARM_DISARM_REASON_SAFETY_BUTTON'], 'ARM_DISARM_REASON_AUTO_DISARM_LAND': cls.__constants['ARM_DISARM_REASON_AUTO_DISARM_LAND'], 'ARM_DISARM_REASON_AUTO_DISARM_PREFLIGHT': cls.__constants['ARM_DISARM_REASON_AUTO_DISARM_PREFLIGHT'], 'ARM_DISARM_REASON_KILL_SWITCH': cls.__constants['ARM_DISARM_REASON_KILL_SWITCH'], 'ARM_DISARM_REASON_LOCKDOWN': cls.__constants['ARM_DISARM_REASON_LOCKDOWN'], 'ARM_DISARM_REASON_FAILURE_DETECTOR': cls.__constants['ARM_DISARM_REASON_FAILURE_DETECTOR'], 'ARM_DISARM_REASON_SHUTDOWN': cls.__constants['ARM_DISARM_REASON_SHUTDOWN'], 'ARM_DISARM_REASON_UNIT_TEST': cls.__constants['ARM_DISARM_REASON_UNIT_TEST'], } @property def ARMING_STATE_INIT(self): """Message constant 'ARMING_STATE_INIT'.""" return Metaclass_VehicleStatus.__constants['ARMING_STATE_INIT'] @property def ARMING_STATE_STANDBY(self): """Message constant 'ARMING_STATE_STANDBY'.""" return Metaclass_VehicleStatus.__constants['ARMING_STATE_STANDBY'] @property def ARMING_STATE_ARMED(self): """Message constant 'ARMING_STATE_ARMED'.""" return Metaclass_VehicleStatus.__constants['ARMING_STATE_ARMED'] @property def ARMING_STATE_STANDBY_ERROR(self): """Message constant 'ARMING_STATE_STANDBY_ERROR'.""" return Metaclass_VehicleStatus.__constants['ARMING_STATE_STANDBY_ERROR'] @property def ARMING_STATE_SHUTDOWN(self): """Message constant 'ARMING_STATE_SHUTDOWN'.""" return Metaclass_VehicleStatus.__constants['ARMING_STATE_SHUTDOWN'] @property def ARMING_STATE_IN_AIR_RESTORE(self): """Message constant 'ARMING_STATE_IN_AIR_RESTORE'.""" return Metaclass_VehicleStatus.__constants['ARMING_STATE_IN_AIR_RESTORE'] @property def ARMING_STATE_MAX(self): """Message constant 'ARMING_STATE_MAX'.""" return Metaclass_VehicleStatus.__constants['ARMING_STATE_MAX'] @property def FAILURE_NONE(self): """Message constant 'FAILURE_NONE'.""" return Metaclass_VehicleStatus.__constants['FAILURE_NONE'] @property def FAILURE_ROLL(self): """Message constant 'FAILURE_ROLL'.""" return Metaclass_VehicleStatus.__constants['FAILURE_ROLL'] @property def FAILURE_PITCH(self): """Message constant 'FAILURE_PITCH'.""" return Metaclass_VehicleStatus.__constants['FAILURE_PITCH'] @property def FAILURE_ALT(self): """Message constant 'FAILURE_ALT'.""" return Metaclass_VehicleStatus.__constants['FAILURE_ALT'] @property def FAILURE_EXT(self): """Message constant 'FAILURE_EXT'.""" return Metaclass_VehicleStatus.__constants['FAILURE_EXT'] @property def FAILURE_ARM_ESC(self): """Message constant 'FAILURE_ARM_ESC'.""" return Metaclass_VehicleStatus.__constants['FAILURE_ARM_ESC'] @property def HIL_STATE_OFF(self): """Message constant 'HIL_STATE_OFF'.""" return Metaclass_VehicleStatus.__constants['HIL_STATE_OFF'] @property def HIL_STATE_ON(self): """Message constant 'HIL_STATE_ON'.""" return Metaclass_VehicleStatus.__constants['HIL_STATE_ON'] @property def NAVIGATION_STATE_MANUAL(self): """Message constant 'NAVIGATION_STATE_MANUAL'.""" return Metaclass_VehicleStatus.__constants['NAVIGATION_STATE_MANUAL'] @property def NAVIGATION_STATE_ALTCTL(self): """Message constant 'NAVIGATION_STATE_ALTCTL'.""" return Metaclass_VehicleStatus.__constants['NAVIGATION_STATE_ALTCTL'] @property def NAVIGATION_STATE_POSCTL(self): """Message constant 'NAVIGATION_STATE_POSCTL'.""" return Metaclass_VehicleStatus.__constants['NAVIGATION_STATE_POSCTL'] @property def NAVIGATION_STATE_AUTO_MISSION(self): """Message constant 'NAVIGATION_STATE_AUTO_MISSION'.""" return Metaclass_VehicleStatus.__constants['NAVIGATION_STATE_AUTO_MISSION'] @property def NAVIGATION_STATE_AUTO_LOITER(self): """Message constant 'NAVIGATION_STATE_AUTO_LOITER'.""" return Metaclass_VehicleStatus.__constants['NAVIGATION_STATE_AUTO_LOITER'] @property def NAVIGATION_STATE_AUTO_RTL(self): """Message constant 'NAVIGATION_STATE_AUTO_RTL'.""" return Metaclass_VehicleStatus.__constants['NAVIGATION_STATE_AUTO_RTL'] @property def NAVIGATION_STATE_AUTO_LANDENGFAIL(self): """Message constant 'NAVIGATION_STATE_AUTO_LANDENGFAIL'.""" return Metaclass_VehicleStatus.__constants['NAVIGATION_STATE_AUTO_LANDENGFAIL'] @property def NAVIGATION_STATE_AUTO_LANDGPSFAIL(self): """Message constant 'NAVIGATION_STATE_AUTO_LANDGPSFAIL'.""" return Metaclass_VehicleStatus.__constants['NAVIGATION_STATE_AUTO_LANDGPSFAIL'] @property def NAVIGATION_STATE_ACRO(self): """Message constant 'NAVIGATION_STATE_ACRO'.""" return Metaclass_VehicleStatus.__constants['NAVIGATION_STATE_ACRO'] @property def NAVIGATION_STATE_UNUSED(self): """Message constant 'NAVIGATION_STATE_UNUSED'.""" return Metaclass_VehicleStatus.__constants['NAVIGATION_STATE_UNUSED'] @property def NAVIGATION_STATE_DESCEND(self): """Message constant 'NAVIGATION_STATE_DESCEND'.""" return Metaclass_VehicleStatus.__constants['NAVIGATION_STATE_DESCEND'] @property def NAVIGATION_STATE_TERMINATION(self): """Message constant 'NAVIGATION_STATE_TERMINATION'.""" return Metaclass_VehicleStatus.__constants['NAVIGATION_STATE_TERMINATION'] @property def NAVIGATION_STATE_OFFBOARD(self): """Message constant 'NAVIGATION_STATE_OFFBOARD'.""" return Metaclass_VehicleStatus.__constants['NAVIGATION_STATE_OFFBOARD'] @property def NAVIGATION_STATE_STAB(self): """Message constant 'NAVIGATION_STATE_STAB'.""" return Metaclass_VehicleStatus.__constants['NAVIGATION_STATE_STAB'] @property def NAVIGATION_STATE_UNUSED2(self): """Message constant 'NAVIGATION_STATE_UNUSED2'.""" return Metaclass_VehicleStatus.__constants['NAVIGATION_STATE_UNUSED2'] @property def NAVIGATION_STATE_AUTO_TAKEOFF(self): """Message constant 'NAVIGATION_STATE_AUTO_TAKEOFF'.""" return Metaclass_VehicleStatus.__constants['NAVIGATION_STATE_AUTO_TAKEOFF'] @property def NAVIGATION_STATE_AUTO_LAND(self): """Message constant 'NAVIGATION_STATE_AUTO_LAND'.""" return Metaclass_VehicleStatus.__constants['NAVIGATION_STATE_AUTO_LAND'] @property def NAVIGATION_STATE_AUTO_FOLLOW_TARGET(self): """Message constant 'NAVIGATION_STATE_AUTO_FOLLOW_TARGET'.""" return Metaclass_VehicleStatus.__constants['NAVIGATION_STATE_AUTO_FOLLOW_TARGET'] @property def NAVIGATION_STATE_AUTO_PRECLAND(self): """Message constant 'NAVIGATION_STATE_AUTO_PRECLAND'.""" return Metaclass_VehicleStatus.__constants['NAVIGATION_STATE_AUTO_PRECLAND'] @property def NAVIGATION_STATE_ORBIT(self): """Message constant 'NAVIGATION_STATE_ORBIT'.""" return Metaclass_VehicleStatus.__constants['NAVIGATION_STATE_ORBIT'] @property def NAVIGATION_STATE_MAX(self): """Message constant 'NAVIGATION_STATE_MAX'.""" return Metaclass_VehicleStatus.__constants['NAVIGATION_STATE_MAX'] @property def RC_IN_MODE_DEFAULT(self): """Message constant 'RC_IN_MODE_DEFAULT'.""" return Metaclass_VehicleStatus.__constants['RC_IN_MODE_DEFAULT'] @property def RC_IN_MODE_OFF(self): """Message constant 'RC_IN_MODE_OFF'.""" return Metaclass_VehicleStatus.__constants['RC_IN_MODE_OFF'] @property def RC_IN_MODE_GENERATED(self): """Message constant 'RC_IN_MODE_GENERATED'.""" return Metaclass_VehicleStatus.__constants['RC_IN_MODE_GENERATED'] @property def VEHICLE_TYPE_UNKNOWN(self): """Message constant 'VEHICLE_TYPE_UNKNOWN'.""" return Metaclass_VehicleStatus.__constants['VEHICLE_TYPE_UNKNOWN'] @property def VEHICLE_TYPE_ROTARY_WING(self): """Message constant 'VEHICLE_TYPE_ROTARY_WING'.""" return Metaclass_VehicleStatus.__constants['VEHICLE_TYPE_ROTARY_WING'] @property def VEHICLE_TYPE_FIXED_WING(self): """Message constant 'VEHICLE_TYPE_FIXED_WING'.""" return Metaclass_VehicleStatus.__constants['VEHICLE_TYPE_FIXED_WING'] @property def VEHICLE_TYPE_ROVER(self): """Message constant 'VEHICLE_TYPE_ROVER'.""" return Metaclass_VehicleStatus.__constants['VEHICLE_TYPE_ROVER'] @property def VEHICLE_TYPE_AIRSHIP(self): """Message constant 'VEHICLE_TYPE_AIRSHIP'.""" return Metaclass_VehicleStatus.__constants['VEHICLE_TYPE_AIRSHIP'] @property def ARM_DISARM_REASON_TRANSITION_TO_STANDBY(self): """Message constant 'ARM_DISARM_REASON_TRANSITION_TO_STANDBY'.""" return Metaclass_VehicleStatus.__constants['ARM_DISARM_REASON_TRANSITION_TO_STANDBY'] @property def ARM_DISARM_REASON_RC_STICK(self): """Message constant 'ARM_DISARM_REASON_RC_STICK'.""" return Metaclass_VehicleStatus.__constants['ARM_DISARM_REASON_RC_STICK'] @property def ARM_DISARM_REASON_RC_SWITCH(self): """Message constant 'ARM_DISARM_REASON_RC_SWITCH'.""" return Metaclass_VehicleStatus.__constants['ARM_DISARM_REASON_RC_SWITCH'] @property def ARM_DISARM_REASON_COMMAND_INTERNAL(self): """Message constant 'ARM_DISARM_REASON_COMMAND_INTERNAL'.""" return Metaclass_VehicleStatus.__constants['ARM_DISARM_REASON_COMMAND_INTERNAL'] @property def ARM_DISARM_REASON_COMMAND_EXTERNAL(self): """Message constant 'ARM_DISARM_REASON_COMMAND_EXTERNAL'.""" return Metaclass_VehicleStatus.__constants['ARM_DISARM_REASON_COMMAND_EXTERNAL'] @property def ARM_DISARM_REASON_MISSION_START(self): """Message constant 'ARM_DISARM_REASON_MISSION_START'.""" return Metaclass_VehicleStatus.__constants['ARM_DISARM_REASON_MISSION_START'] @property def ARM_DISARM_REASON_SAFETY_BUTTON(self): """Message constant 'ARM_DISARM_REASON_SAFETY_BUTTON'.""" return Metaclass_VehicleStatus.__constants['ARM_DISARM_REASON_SAFETY_BUTTON'] @property def ARM_DISARM_REASON_AUTO_DISARM_LAND(self): """Message constant 'ARM_DISARM_REASON_AUTO_DISARM_LAND'.""" return Metaclass_VehicleStatus.__constants['ARM_DISARM_REASON_AUTO_DISARM_LAND'] @property def ARM_DISARM_REASON_AUTO_DISARM_PREFLIGHT(self): """Message constant 'ARM_DISARM_REASON_AUTO_DISARM_PREFLIGHT'.""" return Metaclass_VehicleStatus.__constants['ARM_DISARM_REASON_AUTO_DISARM_PREFLIGHT'] @property def ARM_DISARM_REASON_KILL_SWITCH(self): """Message constant 'ARM_DISARM_REASON_KILL_SWITCH'.""" return Metaclass_VehicleStatus.__constants['ARM_DISARM_REASON_KILL_SWITCH'] @property def ARM_DISARM_REASON_LOCKDOWN(self): """Message constant 'ARM_DISARM_REASON_LOCKDOWN'.""" return Metaclass_VehicleStatus.__constants['ARM_DISARM_REASON_LOCKDOWN'] @property def ARM_DISARM_REASON_FAILURE_DETECTOR(self): """Message constant 'ARM_DISARM_REASON_FAILURE_DETECTOR'.""" return Metaclass_VehicleStatus.__constants['ARM_DISARM_REASON_FAILURE_DETECTOR'] @property def ARM_DISARM_REASON_SHUTDOWN(self): """Message constant 'ARM_DISARM_REASON_SHUTDOWN'.""" return Metaclass_VehicleStatus.__constants['ARM_DISARM_REASON_SHUTDOWN'] @property def ARM_DISARM_REASON_UNIT_TEST(self): """Message constant 'ARM_DISARM_REASON_UNIT_TEST'.""" return Metaclass_VehicleStatus.__constants['ARM_DISARM_REASON_UNIT_TEST'] class VehicleStatus(metaclass=Metaclass_VehicleStatus): """ Message class 'VehicleStatus'. Constants: ARMING_STATE_INIT ARMING_STATE_STANDBY ARMING_STATE_ARMED ARMING_STATE_STANDBY_ERROR ARMING_STATE_SHUTDOWN ARMING_STATE_IN_AIR_RESTORE ARMING_STATE_MAX FAILURE_NONE FAILURE_ROLL FAILURE_PITCH FAILURE_ALT FAILURE_EXT FAILURE_ARM_ESC HIL_STATE_OFF HIL_STATE_ON NAVIGATION_STATE_MANUAL NAVIGATION_STATE_ALTCTL NAVIGATION_STATE_POSCTL NAVIGATION_STATE_AUTO_MISSION NAVIGATION_STATE_AUTO_LOITER NAVIGATION_STATE_AUTO_RTL NAVIGATION_STATE_AUTO_LANDENGFAIL NAVIGATION_STATE_AUTO_LANDGPSFAIL NAVIGATION_STATE_ACRO NAVIGATION_STATE_UNUSED NAVIGATION_STATE_DESCEND NAVIGATION_STATE_TERMINATION NAVIGATION_STATE_OFFBOARD NAVIGATION_STATE_STAB NAVIGATION_STATE_UNUSED2 NAVIGATION_STATE_AUTO_TAKEOFF NAVIGATION_STATE_AUTO_LAND NAVIGATION_STATE_AUTO_FOLLOW_TARGET NAVIGATION_STATE_AUTO_PRECLAND NAVIGATION_STATE_ORBIT NAVIGATION_STATE_MAX RC_IN_MODE_DEFAULT RC_IN_MODE_OFF RC_IN_MODE_GENERATED VEHICLE_TYPE_UNKNOWN VEHICLE_TYPE_ROTARY_WING VEHICLE_TYPE_FIXED_WING VEHICLE_TYPE_ROVER VEHICLE_TYPE_AIRSHIP ARM_DISARM_REASON_TRANSITION_TO_STANDBY ARM_DISARM_REASON_RC_STICK ARM_DISARM_REASON_RC_SWITCH ARM_DISARM_REASON_COMMAND_INTERNAL ARM_DISARM_REASON_COMMAND_EXTERNAL ARM_DISARM_REASON_MISSION_START ARM_DISARM_REASON_SAFETY_BUTTON ARM_DISARM_REASON_AUTO_DISARM_LAND ARM_DISARM_REASON_AUTO_DISARM_PREFLIGHT ARM_DISARM_REASON_KILL_SWITCH ARM_DISARM_REASON_LOCKDOWN ARM_DISARM_REASON_FAILURE_DETECTOR ARM_DISARM_REASON_SHUTDOWN ARM_DISARM_REASON_UNIT_TEST """ __slots__ = [ '_timestamp', '_nav_state', '_nav_state_timestamp', '_arming_state', '_hil_state', '_failsafe', '_failsafe_timestamp', '_system_type', '_system_id', '_component_id', '_vehicle_type', '_is_vtol', '_is_vtol_tailsitter', '_vtol_fw_permanent_stab', '_in_transition_mode', '_in_transition_to_fw', '_rc_signal_lost', '_rc_input_mode', '_data_link_lost', '_data_link_lost_counter', '_high_latency_data_link_lost', '_engine_failure', '_mission_failure', '_failure_detector_status', '_onboard_control_sensors_present', '_onboard_control_sensors_enabled', '_onboard_control_sensors_health', '_latest_arming_reason', '_latest_disarming_reason', '_armed_time', '_takeoff_time', ] _fields_and_field_types = { 'timestamp': 'uint64', 'nav_state': 'uint8', 'nav_state_timestamp': 'uint64', 'arming_state': 'uint8', 'hil_state': 'uint8', 'failsafe': 'boolean', 'failsafe_timestamp': 'uint64', 'system_type': 'uint8', 'system_id': 'uint8', 'component_id': 'uint8', 'vehicle_type': 'uint8', 'is_vtol': 'boolean', 'is_vtol_tailsitter': 'boolean', 'vtol_fw_permanent_stab': 'boolean', 'in_transition_mode': 'boolean', 'in_transition_to_fw': 'boolean', 'rc_signal_lost': 'boolean', 'rc_input_mode': 'uint8', 'data_link_lost': 'boolean', 'data_link_lost_counter': 'uint8', 'high_latency_data_link_lost': 'boolean', 'engine_failure': 'boolean', 'mission_failure': 'boolean', 'failure_detector_status': 'uint8', 'onboard_control_sensors_present': 'uint32', 'onboard_control_sensors_enabled': 'uint32', 'onboard_control_sensors_health': 'uint32', 'latest_arming_reason': 'uint8', 'latest_disarming_reason': 'uint8', 'armed_time': 'uint64', 'takeoff_time': 'uint64', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('boolean'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint64'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.nav_state = kwargs.get('nav_state', int()) self.nav_state_timestamp = kwargs.get('nav_state_timestamp', int()) self.arming_state = kwargs.get('arming_state', int()) self.hil_state = kwargs.get('hil_state', int()) self.failsafe = kwargs.get('failsafe', bool()) self.failsafe_timestamp = kwargs.get('failsafe_timestamp', int()) self.system_type = kwargs.get('system_type', int()) self.system_id = kwargs.get('system_id', int()) self.component_id = kwargs.get('component_id', int()) self.vehicle_type = kwargs.get('vehicle_type', int()) self.is_vtol = kwargs.get('is_vtol', bool()) self.is_vtol_tailsitter = kwargs.get('is_vtol_tailsitter', bool()) self.vtol_fw_permanent_stab = kwargs.get('vtol_fw_permanent_stab', bool()) self.in_transition_mode = kwargs.get('in_transition_mode', bool()) self.in_transition_to_fw = kwargs.get('in_transition_to_fw', bool()) self.rc_signal_lost = kwargs.get('rc_signal_lost', bool()) self.rc_input_mode = kwargs.get('rc_input_mode', int()) self.data_link_lost = kwargs.get('data_link_lost', bool()) self.data_link_lost_counter = kwargs.get('data_link_lost_counter', int()) self.high_latency_data_link_lost = kwargs.get('high_latency_data_link_lost', bool()) self.engine_failure = kwargs.get('engine_failure', bool()) self.mission_failure = kwargs.get('mission_failure', bool()) self.failure_detector_status = kwargs.get('failure_detector_status', int()) self.onboard_control_sensors_present = kwargs.get('onboard_control_sensors_present', int()) self.onboard_control_sensors_enabled = kwargs.get('onboard_control_sensors_enabled', int()) self.onboard_control_sensors_health = kwargs.get('onboard_control_sensors_health', int()) self.latest_arming_reason = kwargs.get('latest_arming_reason', int()) self.latest_disarming_reason = kwargs.get('latest_disarming_reason', int()) self.armed_time = kwargs.get('armed_time', int()) self.takeoff_time = kwargs.get('takeoff_time', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.nav_state != other.nav_state: return False if self.nav_state_timestamp != other.nav_state_timestamp: return False if self.arming_state != other.arming_state: return False if self.hil_state != other.hil_state: return False if self.failsafe != other.failsafe: return False if self.failsafe_timestamp != other.failsafe_timestamp: return False if self.system_type != other.system_type: return False if self.system_id != other.system_id: return False if self.component_id != other.component_id: return False if self.vehicle_type != other.vehicle_type: return False if self.is_vtol != other.is_vtol: return False if self.is_vtol_tailsitter != other.is_vtol_tailsitter: return False if self.vtol_fw_permanent_stab != other.vtol_fw_permanent_stab: return False if self.in_transition_mode != other.in_transition_mode: return False if self.in_transition_to_fw != other.in_transition_to_fw: return False if self.rc_signal_lost != other.rc_signal_lost: return False if self.rc_input_mode != other.rc_input_mode: return False if self.data_link_lost != other.data_link_lost: return False if self.data_link_lost_counter != other.data_link_lost_counter: return False if self.high_latency_data_link_lost != other.high_latency_data_link_lost: return False if self.engine_failure != other.engine_failure: return False if self.mission_failure != other.mission_failure: return False if self.failure_detector_status != other.failure_detector_status: return False if self.onboard_control_sensors_present != other.onboard_control_sensors_present: return False if self.onboard_control_sensors_enabled != other.onboard_control_sensors_enabled: return False if self.onboard_control_sensors_health != other.onboard_control_sensors_health: return False if self.latest_arming_reason != other.latest_arming_reason: return False if self.latest_disarming_reason != other.latest_disarming_reason: return False if self.armed_time != other.armed_time: return False if self.takeoff_time != other.takeoff_time: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property def nav_state(self): """Message field 'nav_state'.""" return self._nav_state @nav_state.setter def nav_state(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'nav_state' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'nav_state' field must be an unsigned integer in [0, 255]" self._nav_state = value @property def nav_state_timestamp(self): """Message field 'nav_state_timestamp'.""" return self._nav_state_timestamp @nav_state_timestamp.setter def nav_state_timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'nav_state_timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'nav_state_timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._nav_state_timestamp = value @property def arming_state(self): """Message field 'arming_state'.""" return self._arming_state @arming_state.setter def arming_state(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'arming_state' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'arming_state' field must be an unsigned integer in [0, 255]" self._arming_state = value @property def hil_state(self): """Message field 'hil_state'.""" return self._hil_state @hil_state.setter def hil_state(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'hil_state' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'hil_state' field must be an unsigned integer in [0, 255]" self._hil_state = value @property def failsafe(self): """Message field 'failsafe'.""" return self._failsafe @failsafe.setter def failsafe(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'failsafe' field must be of type 'bool'" self._failsafe = value @property def failsafe_timestamp(self): """Message field 'failsafe_timestamp'.""" return self._failsafe_timestamp @failsafe_timestamp.setter def failsafe_timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'failsafe_timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'failsafe_timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._failsafe_timestamp = value @property def system_type(self): """Message field 'system_type'.""" return self._system_type @system_type.setter def system_type(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'system_type' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'system_type' field must be an unsigned integer in [0, 255]" self._system_type = value @property def system_id(self): """Message field 'system_id'.""" return self._system_id @system_id.setter def system_id(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'system_id' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'system_id' field must be an unsigned integer in [0, 255]" self._system_id = value @property def component_id(self): """Message field 'component_id'.""" return self._component_id @component_id.setter def component_id(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'component_id' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'component_id' field must be an unsigned integer in [0, 255]" self._component_id = value @property def vehicle_type(self): """Message field 'vehicle_type'.""" return self._vehicle_type @vehicle_type.setter def vehicle_type(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'vehicle_type' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'vehicle_type' field must be an unsigned integer in [0, 255]" self._vehicle_type = value @property def is_vtol(self): """Message field 'is_vtol'.""" return self._is_vtol @is_vtol.setter def is_vtol(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'is_vtol' field must be of type 'bool'" self._is_vtol = value @property def is_vtol_tailsitter(self): """Message field 'is_vtol_tailsitter'.""" return self._is_vtol_tailsitter @is_vtol_tailsitter.setter def is_vtol_tailsitter(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'is_vtol_tailsitter' field must be of type 'bool'" self._is_vtol_tailsitter = value @property def vtol_fw_permanent_stab(self): """Message field 'vtol_fw_permanent_stab'.""" return self._vtol_fw_permanent_stab @vtol_fw_permanent_stab.setter def vtol_fw_permanent_stab(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'vtol_fw_permanent_stab' field must be of type 'bool'" self._vtol_fw_permanent_stab = value @property def in_transition_mode(self): """Message field 'in_transition_mode'.""" return self._in_transition_mode @in_transition_mode.setter def in_transition_mode(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'in_transition_mode' field must be of type 'bool'" self._in_transition_mode = value @property def in_transition_to_fw(self): """Message field 'in_transition_to_fw'.""" return self._in_transition_to_fw @in_transition_to_fw.setter def in_transition_to_fw(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'in_transition_to_fw' field must be of type 'bool'" self._in_transition_to_fw = value @property def rc_signal_lost(self): """Message field 'rc_signal_lost'.""" return self._rc_signal_lost @rc_signal_lost.setter def rc_signal_lost(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'rc_signal_lost' field must be of type 'bool'" self._rc_signal_lost = value @property def rc_input_mode(self): """Message field 'rc_input_mode'.""" return self._rc_input_mode @rc_input_mode.setter def rc_input_mode(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'rc_input_mode' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'rc_input_mode' field must be an unsigned integer in [0, 255]" self._rc_input_mode = value @property def data_link_lost(self): """Message field 'data_link_lost'.""" return self._data_link_lost @data_link_lost.setter def data_link_lost(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'data_link_lost' field must be of type 'bool'" self._data_link_lost = value @property def data_link_lost_counter(self): """Message field 'data_link_lost_counter'.""" return self._data_link_lost_counter @data_link_lost_counter.setter def data_link_lost_counter(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'data_link_lost_counter' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'data_link_lost_counter' field must be an unsigned integer in [0, 255]" self._data_link_lost_counter = value @property def high_latency_data_link_lost(self): """Message field 'high_latency_data_link_lost'.""" return self._high_latency_data_link_lost @high_latency_data_link_lost.setter def high_latency_data_link_lost(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'high_latency_data_link_lost' field must be of type 'bool'" self._high_latency_data_link_lost = value @property def engine_failure(self): """Message field 'engine_failure'.""" return self._engine_failure @engine_failure.setter def engine_failure(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'engine_failure' field must be of type 'bool'" self._engine_failure = value @property def mission_failure(self): """Message field 'mission_failure'.""" return self._mission_failure @mission_failure.setter def mission_failure(self, value): if __debug__: assert \ isinstance(value, bool), \ "The 'mission_failure' field must be of type 'bool'" self._mission_failure = value @property def failure_detector_status(self): """Message field 'failure_detector_status'.""" return self._failure_detector_status @failure_detector_status.setter def failure_detector_status(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'failure_detector_status' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'failure_detector_status' field must be an unsigned integer in [0, 255]" self._failure_detector_status = value @property def onboard_control_sensors_present(self): """Message field 'onboard_control_sensors_present'.""" return self._onboard_control_sensors_present @onboard_control_sensors_present.setter def onboard_control_sensors_present(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'onboard_control_sensors_present' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'onboard_control_sensors_present' field must be an unsigned integer in [0, 4294967295]" self._onboard_control_sensors_present = value @property def onboard_control_sensors_enabled(self): """Message field 'onboard_control_sensors_enabled'.""" return self._onboard_control_sensors_enabled @onboard_control_sensors_enabled.setter def onboard_control_sensors_enabled(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'onboard_control_sensors_enabled' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'onboard_control_sensors_enabled' field must be an unsigned integer in [0, 4294967295]" self._onboard_control_sensors_enabled = value @property def onboard_control_sensors_health(self): """Message field 'onboard_control_sensors_health'.""" return self._onboard_control_sensors_health @onboard_control_sensors_health.setter def onboard_control_sensors_health(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'onboard_control_sensors_health' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'onboard_control_sensors_health' field must be an unsigned integer in [0, 4294967295]" self._onboard_control_sensors_health = value @property def latest_arming_reason(self): """Message field 'latest_arming_reason'.""" return self._latest_arming_reason @latest_arming_reason.setter def latest_arming_reason(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'latest_arming_reason' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'latest_arming_reason' field must be an unsigned integer in [0, 255]" self._latest_arming_reason = value @property def latest_disarming_reason(self): """Message field 'latest_disarming_reason'.""" return self._latest_disarming_reason @latest_disarming_reason.setter def latest_disarming_reason(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'latest_disarming_reason' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'latest_disarming_reason' field must be an unsigned integer in [0, 255]" self._latest_disarming_reason = value @property def armed_time(self): """Message field 'armed_time'.""" return self._armed_time @armed_time.setter def armed_time(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'armed_time' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'armed_time' field must be an unsigned integer in [0, 18446744073709551615]" self._armed_time = value @property def takeoff_time(self): """Message field 'takeoff_time'.""" return self._takeoff_time @takeoff_time.setter def takeoff_time(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'takeoff_time' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'takeoff_time' field must be an unsigned integer in [0, 18446744073709551615]" self._takeoff_time = value <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/vehicle_odometry__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/VehicleOdometry.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/vehicle_odometry__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/vehicle_odometry__functions.h" #include "px4_msgs/msg/vehicle_odometry__struct.h" #ifdef __cplusplus extern "C" { #endif void VehicleOdometry__rosidl_typesupport_introspection_c__VehicleOdometry_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__VehicleOdometry__init(message_memory); } void VehicleOdometry__rosidl_typesupport_introspection_c__VehicleOdometry_fini_function(void * message_memory) { px4_msgs__msg__VehicleOdometry__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember VehicleOdometry__rosidl_typesupport_introspection_c__VehicleOdometry_message_member_array[17] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleOdometry, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleOdometry, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "local_frame", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleOdometry, local_frame), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "x", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleOdometry, x), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "y", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleOdometry, y), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "z", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleOdometry, z), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "q", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleOdometry, q), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "q_offset", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 4, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleOdometry, q_offset), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "pose_covariance", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 21, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleOdometry, pose_covariance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "velocity_frame", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleOdometry, velocity_frame), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vx", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleOdometry, vx), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vy", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleOdometry, vy), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "vz", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleOdometry, vz), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "rollspeed", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleOdometry, rollspeed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "pitchspeed", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleOdometry, pitchspeed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "yawspeed", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleOdometry, yawspeed), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "velocity_covariance", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message true, // is array 21, // array size false, // is upper bound offsetof(px4_msgs__msg__VehicleOdometry, velocity_covariance), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers VehicleOdometry__rosidl_typesupport_introspection_c__VehicleOdometry_message_members = { "px4_msgs__msg", // message namespace "VehicleOdometry", // message name 17, // number of fields sizeof(px4_msgs__msg__VehicleOdometry), VehicleOdometry__rosidl_typesupport_introspection_c__VehicleOdometry_message_member_array, // message members VehicleOdometry__rosidl_typesupport_introspection_c__VehicleOdometry_init_function, // function to initialize message memory (memory has to be allocated) VehicleOdometry__rosidl_typesupport_introspection_c__VehicleOdometry_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t VehicleOdometry__rosidl_typesupport_introspection_c__VehicleOdometry_message_type_support_handle = { 0, &VehicleOdometry__rosidl_typesupport_introspection_c__VehicleOdometry_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, VehicleOdometry)() { if (!VehicleOdometry__rosidl_typesupport_introspection_c__VehicleOdometry_message_type_support_handle.typesupport_identifier) { VehicleOdometry__rosidl_typesupport_introspection_c__VehicleOdometry_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &VehicleOdometry__rosidl_typesupport_introspection_c__VehicleOdometry_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_typesupport_c/px4_msgs/msg/home_position__type_support.cpp // generated from rosidl_typesupport_c/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/HomePosition.idl // generated code does not contain a copyright notice #include "cstddef" #include "rosidl_generator_c/message_type_support_struct.h" #include "px4_msgs/msg/rosidl_typesupport_c__visibility_control.h" #include "px4_msgs/msg/home_position__struct.h" #include "rosidl_typesupport_c/visibility_control.h" #include "px4_msgs/msg/home_position__rosidl_typesupport_fastrtps_c.h" #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_c, px4_msgs, msg, HomePosition)() { return ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, HomePosition)(); } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_vision_attitude__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/VehicleVisionAttitude.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/vehicle_vision_attitude__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__VehicleVisionAttitude__init(px4_msgs__msg__VehicleVisionAttitude * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // q // delta_q_reset // quat_reset_counter return true; } void px4_msgs__msg__VehicleVisionAttitude__fini(px4_msgs__msg__VehicleVisionAttitude * msg) { if (!msg) { return; } // timestamp // timestamp_sample // q // delta_q_reset // quat_reset_counter } px4_msgs__msg__VehicleVisionAttitude * px4_msgs__msg__VehicleVisionAttitude__create() { px4_msgs__msg__VehicleVisionAttitude * msg = (px4_msgs__msg__VehicleVisionAttitude *)malloc(sizeof(px4_msgs__msg__VehicleVisionAttitude)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__VehicleVisionAttitude)); bool success = px4_msgs__msg__VehicleVisionAttitude__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__VehicleVisionAttitude__destroy(px4_msgs__msg__VehicleVisionAttitude * msg) { if (msg) { px4_msgs__msg__VehicleVisionAttitude__fini(msg); } free(msg); } bool px4_msgs__msg__VehicleVisionAttitude__Sequence__init(px4_msgs__msg__VehicleVisionAttitude__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__VehicleVisionAttitude * data = NULL; if (size) { data = (px4_msgs__msg__VehicleVisionAttitude *)calloc(size, sizeof(px4_msgs__msg__VehicleVisionAttitude)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__VehicleVisionAttitude__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__VehicleVisionAttitude__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__VehicleVisionAttitude__Sequence__fini(px4_msgs__msg__VehicleVisionAttitude__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__VehicleVisionAttitude__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__VehicleVisionAttitude__Sequence * px4_msgs__msg__VehicleVisionAttitude__Sequence__create(size_t size) { px4_msgs__msg__VehicleVisionAttitude__Sequence * array = (px4_msgs__msg__VehicleVisionAttitude__Sequence *)malloc(sizeof(px4_msgs__msg__VehicleVisionAttitude__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__VehicleVisionAttitude__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__VehicleVisionAttitude__Sequence__destroy(px4_msgs__msg__VehicleVisionAttitude__Sequence * array) { if (array) { px4_msgs__msg__VehicleVisionAttitude__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/satellite_info__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/SatelliteInfo.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/satellite_info__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/satellite_info__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::SatelliteInfo & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: count cdr << ros_message.count; // Member: svid { cdr << ros_message.svid; } // Member: used { cdr << ros_message.used; } // Member: elevation { cdr << ros_message.elevation; } // Member: azimuth { cdr << ros_message.azimuth; } // Member: snr { cdr << ros_message.snr; } // Member: prn { cdr << ros_message.prn; } return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::SatelliteInfo & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: count cdr >> ros_message.count; // Member: svid { cdr >> ros_message.svid; } // Member: used { cdr >> ros_message.used; } // Member: elevation { cdr >> ros_message.elevation; } // Member: azimuth { cdr >> ros_message.azimuth; } // Member: snr { cdr >> ros_message.snr; } // Member: prn { cdr >> ros_message.prn; } return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::SatelliteInfo & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: count { size_t item_size = sizeof(ros_message.count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: svid { size_t array_size = 20; size_t item_size = sizeof(ros_message.svid[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: used { size_t array_size = 20; size_t item_size = sizeof(ros_message.used[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: elevation { size_t array_size = 20; size_t item_size = sizeof(ros_message.elevation[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: azimuth { size_t array_size = 20; size_t item_size = sizeof(ros_message.azimuth[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: snr { size_t array_size = 20; size_t item_size = sizeof(ros_message.snr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: prn { size_t array_size = 20; size_t item_size = sizeof(ros_message.prn[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_SatelliteInfo( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: count { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // Member: svid { size_t array_size = 20; current_alignment += array_size * sizeof(uint8_t); } // Member: used { size_t array_size = 20; current_alignment += array_size * sizeof(uint8_t); } // Member: elevation { size_t array_size = 20; current_alignment += array_size * sizeof(uint8_t); } // Member: azimuth { size_t array_size = 20; current_alignment += array_size * sizeof(uint8_t); } // Member: snr { size_t array_size = 20; current_alignment += array_size * sizeof(uint8_t); } // Member: prn { size_t array_size = 20; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static bool _SatelliteInfo__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::SatelliteInfo *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _SatelliteInfo__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::SatelliteInfo *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _SatelliteInfo__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::SatelliteInfo *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _SatelliteInfo__max_serialized_size(bool & full_bounded) { return max_serialized_size_SatelliteInfo(full_bounded, 0); } static message_type_support_callbacks_t _SatelliteInfo__callbacks = { "px4_msgs::msg", "SatelliteInfo", _SatelliteInfo__cdr_serialize, _SatelliteInfo__cdr_deserialize, _SatelliteInfo__get_serialized_size, _SatelliteInfo__max_serialized_size }; static rosidl_message_type_support_t _SatelliteInfo__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_SatelliteInfo__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::SatelliteInfo>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_SatelliteInfo__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, SatelliteInfo)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_SatelliteInfo__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/estimator_innovations.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_INNOVATIONS_HPP_ #define PX4_MSGS__MSG__ESTIMATOR_INNOVATIONS_HPP_ #include "px4_msgs/msg/estimator_innovations__struct.hpp" #include "px4_msgs/msg/estimator_innovations__traits.hpp" #endif // PX4_MSGS__MSG__ESTIMATOR_INNOVATIONS_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/position_controller_landing_status__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/PositionControllerLandingStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__POSITION_CONTROLLER_LANDING_STATUS__STRUCT_HPP_ #define PX4_MSGS__MSG__POSITION_CONTROLLER_LANDING_STATUS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__PositionControllerLandingStatus __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__PositionControllerLandingStatus __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct PositionControllerLandingStatus_ { using Type = PositionControllerLandingStatus_<ContainerAllocator>; explicit PositionControllerLandingStatus_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->horizontal_slope_displacement = 0.0f; this->slope_angle_rad = 0.0f; this->flare_length = 0.0f; this->abort_landing = false; } } explicit PositionControllerLandingStatus_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->horizontal_slope_displacement = 0.0f; this->slope_angle_rad = 0.0f; this->flare_length = 0.0f; this->abort_landing = false; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _horizontal_slope_displacement_type = float; _horizontal_slope_displacement_type horizontal_slope_displacement; using _slope_angle_rad_type = float; _slope_angle_rad_type slope_angle_rad; using _flare_length_type = float; _flare_length_type flare_length; using _abort_landing_type = bool; _abort_landing_type abort_landing; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__horizontal_slope_displacement( const float & _arg) { this->horizontal_slope_displacement = _arg; return *this; } Type & set__slope_angle_rad( const float & _arg) { this->slope_angle_rad = _arg; return *this; } Type & set__flare_length( const float & _arg) { this->flare_length = _arg; return *this; } Type & set__abort_landing( const bool & _arg) { this->abort_landing = _arg; return *this; } // constant declarations // pointer types using RawPtr = px4_msgs::msg::PositionControllerLandingStatus_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::PositionControllerLandingStatus_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::PositionControllerLandingStatus_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::PositionControllerLandingStatus_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::PositionControllerLandingStatus_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::PositionControllerLandingStatus_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::PositionControllerLandingStatus_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::PositionControllerLandingStatus_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::PositionControllerLandingStatus_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::PositionControllerLandingStatus_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__PositionControllerLandingStatus std::shared_ptr<px4_msgs::msg::PositionControllerLandingStatus_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__PositionControllerLandingStatus std::shared_ptr<px4_msgs::msg::PositionControllerLandingStatus_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const PositionControllerLandingStatus_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->horizontal_slope_displacement != other.horizontal_slope_displacement) { return false; } if (this->slope_angle_rad != other.slope_angle_rad) { return false; } if (this->flare_length != other.flare_length) { return false; } if (this->abort_landing != other.abort_landing) { return false; } return true; } bool operator!=(const PositionControllerLandingStatus_ & other) const { return !this->operator==(other); } }; // struct PositionControllerLandingStatus_ // alias to use template instance with default allocator using PositionControllerLandingStatus = px4_msgs::msg::PositionControllerLandingStatus_<std::allocator<void>>; // constant definitions } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__POSITION_CONTROLLER_LANDING_STATUS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/telemetry_status__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/TelemetryStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/telemetry_status__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/telemetry_status__struct.h" #include "px4_msgs/msg/telemetry_status__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _TelemetryStatus__ros_msg_type = px4_msgs__msg__TelemetryStatus; static bool _TelemetryStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _TelemetryStatus__ros_msg_type * ros_message = static_cast<const _TelemetryStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: type { cdr << ros_message->type; } // Field name: mode { cdr << ros_message->mode; } // Field name: flow_control { cdr << (ros_message->flow_control ? true : false); } // Field name: forwarding { cdr << (ros_message->forwarding ? true : false); } // Field name: mavlink_v2 { cdr << (ros_message->mavlink_v2 ? true : false); } // Field name: ftp { cdr << (ros_message->ftp ? true : false); } // Field name: streams { cdr << ros_message->streams; } // Field name: data_rate { cdr << ros_message->data_rate; } // Field name: rate_multiplier { cdr << ros_message->rate_multiplier; } // Field name: tx_rate_avg { cdr << ros_message->tx_rate_avg; } // Field name: tx_error_rate_avg { cdr << ros_message->tx_error_rate_avg; } // Field name: tx_message_count { cdr << ros_message->tx_message_count; } // Field name: tx_buffer_overruns { cdr << ros_message->tx_buffer_overruns; } // Field name: rx_rate_avg { cdr << ros_message->rx_rate_avg; } // Field name: rx_message_count { cdr << ros_message->rx_message_count; } // Field name: rx_message_count_supported { cdr << ros_message->rx_message_count_supported; } // Field name: rx_message_lost_count { cdr << ros_message->rx_message_lost_count; } // Field name: rx_buffer_overruns { cdr << ros_message->rx_buffer_overruns; } // Field name: rx_parse_errors { cdr << ros_message->rx_parse_errors; } // Field name: rx_packet_drop_count { cdr << ros_message->rx_packet_drop_count; } // Field name: rx_message_lost_rate { cdr << ros_message->rx_message_lost_rate; } // Field name: heartbeat_type_antenna_tracker { cdr << (ros_message->heartbeat_type_antenna_tracker ? true : false); } // Field name: heartbeat_type_gcs { cdr << (ros_message->heartbeat_type_gcs ? true : false); } // Field name: heartbeat_type_onboard_controller { cdr << (ros_message->heartbeat_type_onboard_controller ? true : false); } // Field name: heartbeat_type_gimbal { cdr << (ros_message->heartbeat_type_gimbal ? true : false); } // Field name: heartbeat_type_adsb { cdr << (ros_message->heartbeat_type_adsb ? true : false); } // Field name: heartbeat_type_camera { cdr << (ros_message->heartbeat_type_camera ? true : false); } // Field name: heartbeat_component_telemetry_radio { cdr << (ros_message->heartbeat_component_telemetry_radio ? true : false); } // Field name: heartbeat_component_log { cdr << (ros_message->heartbeat_component_log ? true : false); } // Field name: heartbeat_component_osd { cdr << (ros_message->heartbeat_component_osd ? true : false); } // Field name: heartbeat_component_obstacle_avoidance { cdr << (ros_message->heartbeat_component_obstacle_avoidance ? true : false); } // Field name: heartbeat_component_vio { cdr << (ros_message->heartbeat_component_vio ? true : false); } // Field name: heartbeat_component_pairing_manager { cdr << (ros_message->heartbeat_component_pairing_manager ? true : false); } // Field name: heartbeat_component_udp_bridge { cdr << (ros_message->heartbeat_component_udp_bridge ? true : false); } // Field name: heartbeat_component_uart_bridge { cdr << (ros_message->heartbeat_component_uart_bridge ? true : false); } // Field name: avoidance_system_healthy { cdr << (ros_message->avoidance_system_healthy ? true : false); } return true; } static bool _TelemetryStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _TelemetryStatus__ros_msg_type * ros_message = static_cast<_TelemetryStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: type { cdr >> ros_message->type; } // Field name: mode { cdr >> ros_message->mode; } // Field name: flow_control { uint8_t tmp; cdr >> tmp; ros_message->flow_control = tmp ? true : false; } // Field name: forwarding { uint8_t tmp; cdr >> tmp; ros_message->forwarding = tmp ? true : false; } // Field name: mavlink_v2 { uint8_t tmp; cdr >> tmp; ros_message->mavlink_v2 = tmp ? true : false; } // Field name: ftp { uint8_t tmp; cdr >> tmp; ros_message->ftp = tmp ? true : false; } // Field name: streams { cdr >> ros_message->streams; } // Field name: data_rate { cdr >> ros_message->data_rate; } // Field name: rate_multiplier { cdr >> ros_message->rate_multiplier; } // Field name: tx_rate_avg { cdr >> ros_message->tx_rate_avg; } // Field name: tx_error_rate_avg { cdr >> ros_message->tx_error_rate_avg; } // Field name: tx_message_count { cdr >> ros_message->tx_message_count; } // Field name: tx_buffer_overruns { cdr >> ros_message->tx_buffer_overruns; } // Field name: rx_rate_avg { cdr >> ros_message->rx_rate_avg; } // Field name: rx_message_count { cdr >> ros_message->rx_message_count; } // Field name: rx_message_count_supported { cdr >> ros_message->rx_message_count_supported; } // Field name: rx_message_lost_count { cdr >> ros_message->rx_message_lost_count; } // Field name: rx_buffer_overruns { cdr >> ros_message->rx_buffer_overruns; } // Field name: rx_parse_errors { cdr >> ros_message->rx_parse_errors; } // Field name: rx_packet_drop_count { cdr >> ros_message->rx_packet_drop_count; } // Field name: rx_message_lost_rate { cdr >> ros_message->rx_message_lost_rate; } // Field name: heartbeat_type_antenna_tracker { uint8_t tmp; cdr >> tmp; ros_message->heartbeat_type_antenna_tracker = tmp ? true : false; } // Field name: heartbeat_type_gcs { uint8_t tmp; cdr >> tmp; ros_message->heartbeat_type_gcs = tmp ? true : false; } // Field name: heartbeat_type_onboard_controller { uint8_t tmp; cdr >> tmp; ros_message->heartbeat_type_onboard_controller = tmp ? true : false; } // Field name: heartbeat_type_gimbal { uint8_t tmp; cdr >> tmp; ros_message->heartbeat_type_gimbal = tmp ? true : false; } // Field name: heartbeat_type_adsb { uint8_t tmp; cdr >> tmp; ros_message->heartbeat_type_adsb = tmp ? true : false; } // Field name: heartbeat_type_camera { uint8_t tmp; cdr >> tmp; ros_message->heartbeat_type_camera = tmp ? true : false; } // Field name: heartbeat_component_telemetry_radio { uint8_t tmp; cdr >> tmp; ros_message->heartbeat_component_telemetry_radio = tmp ? true : false; } // Field name: heartbeat_component_log { uint8_t tmp; cdr >> tmp; ros_message->heartbeat_component_log = tmp ? true : false; } // Field name: heartbeat_component_osd { uint8_t tmp; cdr >> tmp; ros_message->heartbeat_component_osd = tmp ? true : false; } // Field name: heartbeat_component_obstacle_avoidance { uint8_t tmp; cdr >> tmp; ros_message->heartbeat_component_obstacle_avoidance = tmp ? true : false; } // Field name: heartbeat_component_vio { uint8_t tmp; cdr >> tmp; ros_message->heartbeat_component_vio = tmp ? true : false; } // Field name: heartbeat_component_pairing_manager { uint8_t tmp; cdr >> tmp; ros_message->heartbeat_component_pairing_manager = tmp ? true : false; } // Field name: heartbeat_component_udp_bridge { uint8_t tmp; cdr >> tmp; ros_message->heartbeat_component_udp_bridge = tmp ? true : false; } // Field name: heartbeat_component_uart_bridge { uint8_t tmp; cdr >> tmp; ros_message->heartbeat_component_uart_bridge = tmp ? true : false; } // Field name: avoidance_system_healthy { uint8_t tmp; cdr >> tmp; ros_message->avoidance_system_healthy = tmp ? true : false; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__TelemetryStatus( const void * untyped_ros_message, size_t current_alignment) { const _TelemetryStatus__ros_msg_type * ros_message = static_cast<const _TelemetryStatus__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name type { size_t item_size = sizeof(ros_message->type); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name mode { size_t item_size = sizeof(ros_message->mode); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name flow_control { size_t item_size = sizeof(ros_message->flow_control); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name forwarding { size_t item_size = sizeof(ros_message->forwarding); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name mavlink_v2 { size_t item_size = sizeof(ros_message->mavlink_v2); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name ftp { size_t item_size = sizeof(ros_message->ftp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name streams { size_t item_size = sizeof(ros_message->streams); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name data_rate { size_t item_size = sizeof(ros_message->data_rate); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rate_multiplier { size_t item_size = sizeof(ros_message->rate_multiplier); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name tx_rate_avg { size_t item_size = sizeof(ros_message->tx_rate_avg); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name tx_error_rate_avg { size_t item_size = sizeof(ros_message->tx_error_rate_avg); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name tx_message_count { size_t item_size = sizeof(ros_message->tx_message_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name tx_buffer_overruns { size_t item_size = sizeof(ros_message->tx_buffer_overruns); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rx_rate_avg { size_t item_size = sizeof(ros_message->rx_rate_avg); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rx_message_count { size_t item_size = sizeof(ros_message->rx_message_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rx_message_count_supported { size_t item_size = sizeof(ros_message->rx_message_count_supported); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rx_message_lost_count { size_t item_size = sizeof(ros_message->rx_message_lost_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rx_buffer_overruns { size_t item_size = sizeof(ros_message->rx_buffer_overruns); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rx_parse_errors { size_t item_size = sizeof(ros_message->rx_parse_errors); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rx_packet_drop_count { size_t item_size = sizeof(ros_message->rx_packet_drop_count); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name rx_message_lost_rate { size_t item_size = sizeof(ros_message->rx_message_lost_rate); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name heartbeat_type_antenna_tracker { size_t item_size = sizeof(ros_message->heartbeat_type_antenna_tracker); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name heartbeat_type_gcs { size_t item_size = sizeof(ros_message->heartbeat_type_gcs); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name heartbeat_type_onboard_controller { size_t item_size = sizeof(ros_message->heartbeat_type_onboard_controller); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name heartbeat_type_gimbal { size_t item_size = sizeof(ros_message->heartbeat_type_gimbal); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name heartbeat_type_adsb { size_t item_size = sizeof(ros_message->heartbeat_type_adsb); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name heartbeat_type_camera { size_t item_size = sizeof(ros_message->heartbeat_type_camera); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name heartbeat_component_telemetry_radio { size_t item_size = sizeof(ros_message->heartbeat_component_telemetry_radio); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name heartbeat_component_log { size_t item_size = sizeof(ros_message->heartbeat_component_log); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name heartbeat_component_osd { size_t item_size = sizeof(ros_message->heartbeat_component_osd); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name heartbeat_component_obstacle_avoidance { size_t item_size = sizeof(ros_message->heartbeat_component_obstacle_avoidance); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name heartbeat_component_vio { size_t item_size = sizeof(ros_message->heartbeat_component_vio); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name heartbeat_component_pairing_manager { size_t item_size = sizeof(ros_message->heartbeat_component_pairing_manager); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name heartbeat_component_udp_bridge { size_t item_size = sizeof(ros_message->heartbeat_component_udp_bridge); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name heartbeat_component_uart_bridge { size_t item_size = sizeof(ros_message->heartbeat_component_uart_bridge); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name avoidance_system_healthy { size_t item_size = sizeof(ros_message->avoidance_system_healthy); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _TelemetryStatus__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__TelemetryStatus( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__TelemetryStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: type { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: mode { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: flow_control { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: forwarding { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: mavlink_v2 { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: ftp { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: streams { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: data_rate { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: rate_multiplier { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: tx_rate_avg { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: tx_error_rate_avg { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: tx_message_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: tx_buffer_overruns { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: rx_rate_avg { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: rx_message_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: rx_message_count_supported { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: rx_message_lost_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: rx_buffer_overruns { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: rx_parse_errors { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: rx_packet_drop_count { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: rx_message_lost_rate { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: heartbeat_type_antenna_tracker { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: heartbeat_type_gcs { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: heartbeat_type_onboard_controller { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: heartbeat_type_gimbal { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: heartbeat_type_adsb { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: heartbeat_type_camera { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: heartbeat_component_telemetry_radio { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: heartbeat_component_log { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: heartbeat_component_osd { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: heartbeat_component_obstacle_avoidance { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: heartbeat_component_vio { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: heartbeat_component_pairing_manager { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: heartbeat_component_udp_bridge { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: heartbeat_component_uart_bridge { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: avoidance_system_healthy { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _TelemetryStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__TelemetryStatus( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_TelemetryStatus = { "px4_msgs::msg", "TelemetryStatus", _TelemetryStatus__cdr_serialize, _TelemetryStatus__cdr_deserialize, _TelemetryStatus__get_serialized_size, _TelemetryStatus__max_serialized_size }; static rosidl_message_type_support_t _TelemetryStatus__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_TelemetryStatus, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, TelemetryStatus)() { return &_TelemetryStatus__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/mag_worker_data__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/MagWorkerData.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__MAG_WORKER_DATA__STRUCT_HPP_ #define PX4_MSGS__MSG__MAG_WORKER_DATA__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__MagWorkerData __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__MagWorkerData __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct MagWorkerData_ { using Type = MagWorkerData_<ContainerAllocator>; explicit MagWorkerData_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->done_count = 0ul; this->calibration_points_perside = 0ul; this->calibration_interval_perside_us = 0ull; std::fill<typename std::array<uint32_t, 4>::iterator, uint32_t>(this->calibration_counter_total.begin(), this->calibration_counter_total.end(), 0ul); std::fill<typename std::array<bool, 4>::iterator, bool>(this->side_data_collected.begin(), this->side_data_collected.end(), false); std::fill<typename std::array<float, 4>::iterator, float>(this->x.begin(), this->x.end(), 0.0f); std::fill<typename std::array<float, 4>::iterator, float>(this->y.begin(), this->y.end(), 0.0f); std::fill<typename std::array<float, 4>::iterator, float>(this->z.begin(), this->z.end(), 0.0f); } } explicit MagWorkerData_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) : calibration_counter_total(_alloc), side_data_collected(_alloc), x(_alloc), y(_alloc), z(_alloc) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->timestamp_sample = 0ull; this->done_count = 0ul; this->calibration_points_perside = 0ul; this->calibration_interval_perside_us = 0ull; std::fill<typename std::array<uint32_t, 4>::iterator, uint32_t>(this->calibration_counter_total.begin(), this->calibration_counter_total.end(), 0ul); std::fill<typename std::array<bool, 4>::iterator, bool>(this->side_data_collected.begin(), this->side_data_collected.end(), false); std::fill<typename std::array<float, 4>::iterator, float>(this->x.begin(), this->x.end(), 0.0f); std::fill<typename std::array<float, 4>::iterator, float>(this->y.begin(), this->y.end(), 0.0f); std::fill<typename std::array<float, 4>::iterator, float>(this->z.begin(), this->z.end(), 0.0f); } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _timestamp_sample_type = uint64_t; _timestamp_sample_type timestamp_sample; using _done_count_type = uint32_t; _done_count_type done_count; using _calibration_points_perside_type = uint32_t; _calibration_points_perside_type calibration_points_perside; using _calibration_interval_perside_us_type = uint64_t; _calibration_interval_perside_us_type calibration_interval_perside_us; using _calibration_counter_total_type = std::array<uint32_t, 4>; _calibration_counter_total_type calibration_counter_total; using _side_data_collected_type = std::array<bool, 4>; _side_data_collected_type side_data_collected; using _x_type = std::array<float, 4>; _x_type x; using _y_type = std::array<float, 4>; _y_type y; using _z_type = std::array<float, 4>; _z_type z; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__timestamp_sample( const uint64_t & _arg) { this->timestamp_sample = _arg; return *this; } Type & set__done_count( const uint32_t & _arg) { this->done_count = _arg; return *this; } Type & set__calibration_points_perside( const uint32_t & _arg) { this->calibration_points_perside = _arg; return *this; } Type & set__calibration_interval_perside_us( const uint64_t & _arg) { this->calibration_interval_perside_us = _arg; return *this; } Type & set__calibration_counter_total( const std::array<uint32_t, 4> & _arg) { this->calibration_counter_total = _arg; return *this; } Type & set__side_data_collected( const std::array<bool, 4> & _arg) { this->side_data_collected = _arg; return *this; } Type & set__x( const std::array<float, 4> & _arg) { this->x = _arg; return *this; } Type & set__y( const std::array<float, 4> & _arg) { this->y = _arg; return *this; } Type & set__z( const std::array<float, 4> & _arg) { this->z = _arg; return *this; } // constant declarations static constexpr uint8_t MAX_MAGS = 4u; // pointer types using RawPtr = px4_msgs::msg::MagWorkerData_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::MagWorkerData_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::MagWorkerData_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::MagWorkerData_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::MagWorkerData_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::MagWorkerData_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::MagWorkerData_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::MagWorkerData_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::MagWorkerData_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::MagWorkerData_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__MagWorkerData std::shared_ptr<px4_msgs::msg::MagWorkerData_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__MagWorkerData std::shared_ptr<px4_msgs::msg::MagWorkerData_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const MagWorkerData_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->timestamp_sample != other.timestamp_sample) { return false; } if (this->done_count != other.done_count) { return false; } if (this->calibration_points_perside != other.calibration_points_perside) { return false; } if (this->calibration_interval_perside_us != other.calibration_interval_perside_us) { return false; } if (this->calibration_counter_total != other.calibration_counter_total) { return false; } if (this->side_data_collected != other.side_data_collected) { return false; } if (this->x != other.x) { return false; } if (this->y != other.y) { return false; } if (this->z != other.z) { return false; } return true; } bool operator!=(const MagWorkerData_ & other) const { return !this->operator==(other); } }; // struct MagWorkerData_ // alias to use template instance with default allocator using MagWorkerData = px4_msgs::msg::MagWorkerData_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t MagWorkerData_<ContainerAllocator>::MAX_MAGS; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__MAG_WORKER_DATA__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue_poll__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/OrbTestMediumQueuePoll.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/orb_test_medium_queue_poll__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__OrbTestMediumQueuePoll__init(px4_msgs__msg__OrbTestMediumQueuePoll * msg) { if (!msg) { return false; } // timestamp // val // junk return true; } void px4_msgs__msg__OrbTestMediumQueuePoll__fini(px4_msgs__msg__OrbTestMediumQueuePoll * msg) { if (!msg) { return; } // timestamp // val // junk } px4_msgs__msg__OrbTestMediumQueuePoll * px4_msgs__msg__OrbTestMediumQueuePoll__create() { px4_msgs__msg__OrbTestMediumQueuePoll * msg = (px4_msgs__msg__OrbTestMediumQueuePoll *)malloc(sizeof(px4_msgs__msg__OrbTestMediumQueuePoll)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__OrbTestMediumQueuePoll)); bool success = px4_msgs__msg__OrbTestMediumQueuePoll__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__OrbTestMediumQueuePoll__destroy(px4_msgs__msg__OrbTestMediumQueuePoll * msg) { if (msg) { px4_msgs__msg__OrbTestMediumQueuePoll__fini(msg); } free(msg); } bool px4_msgs__msg__OrbTestMediumQueuePoll__Sequence__init(px4_msgs__msg__OrbTestMediumQueuePoll__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__OrbTestMediumQueuePoll * data = NULL; if (size) { data = (px4_msgs__msg__OrbTestMediumQueuePoll *)calloc(size, sizeof(px4_msgs__msg__OrbTestMediumQueuePoll)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__OrbTestMediumQueuePoll__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__OrbTestMediumQueuePoll__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__OrbTestMediumQueuePoll__Sequence__fini(px4_msgs__msg__OrbTestMediumQueuePoll__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__OrbTestMediumQueuePoll__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__OrbTestMediumQueuePoll__Sequence * px4_msgs__msg__OrbTestMediumQueuePoll__Sequence__create(size_t size) { px4_msgs__msg__OrbTestMediumQueuePoll__Sequence * array = (px4_msgs__msg__OrbTestMediumQueuePoll__Sequence *)malloc(sizeof(px4_msgs__msg__OrbTestMediumQueuePoll__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__OrbTestMediumQueuePoll__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__OrbTestMediumQueuePoll__Sequence__destroy(px4_msgs__msg__OrbTestMediumQueuePoll__Sequence * array) { if (array) { px4_msgs__msg__OrbTestMediumQueuePoll__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/rc_channels.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__RC_CHANNELS_HPP_ #define PX4_MSGS__MSG__RC_CHANNELS_HPP_ #include "px4_msgs/msg/rc_channels__struct.hpp" #include "px4_msgs/msg/rc_channels__traits.hpp" #endif // PX4_MSGS__MSG__RC_CHANNELS_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_attitude_setpoint.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/VehicleAttitudeSetpoint.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_ATTITUDE_SETPOINT_H_ #define PX4_MSGS__MSG__VEHICLE_ATTITUDE_SETPOINT_H_ #include "px4_msgs/msg/vehicle_attitude_setpoint__struct.h" #include "px4_msgs/msg/vehicle_attitude_setpoint__functions.h" #include "px4_msgs/msg/vehicle_attitude_setpoint__type_support.h" #endif // PX4_MSGS__MSG__VEHICLE_ATTITUDE_SETPOINT_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/camera_trigger_secondary__rosidl_typesupport_introspection_c.h // generated from rosidl_typesupport_introspection_c/resource/idl__rosidl_typesupport_introspection_c.h.em // with input from px4_msgs:msg/CameraTriggerSecondary.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__CAMERA_TRIGGER_SECONDARY__ROSIDL_TYPESUPPORT_INTROSPECTION_C_H_ #define PX4_MSGS__MSG__CAMERA_TRIGGER_SECONDARY__ROSIDL_TYPESUPPORT_INTROSPECTION_C_H_ #ifdef __cplusplus extern "C" { #endif #include "rosidl_generator_c/message_type_support_struct.h" #include "rosidl_typesupport_interface/macros.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" ROSIDL_TYPESUPPORT_INTROSPECTION_C_PUBLIC_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, CameraTriggerSecondary)(); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__CAMERA_TRIGGER_SECONDARY__ROSIDL_TYPESUPPORT_INTROSPECTION_C_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_controls4.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/ActuatorControls4.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ACTUATOR_CONTROLS4_H_ #define PX4_MSGS__MSG__ACTUATOR_CONTROLS4_H_ #include "px4_msgs/msg/actuator_controls4__struct.h" #include "px4_msgs/msg/actuator_controls4__functions.h" #include "px4_msgs/msg/actuator_controls4__type_support.h" #endif // PX4_MSGS__MSG__ACTUATOR_CONTROLS4_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/vehicle_global_position_groundtruth__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/VehicleGlobalPositionGroundtruth.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_GLOBAL_POSITION_GROUNDTRUTH__STRUCT_H_ #define PX4_MSGS__MSG__VEHICLE_GLOBAL_POSITION_GROUNDTRUTH__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message // Struct defined in msg/VehicleGlobalPositionGroundtruth in the package px4_msgs. typedef struct px4_msgs__msg__VehicleGlobalPositionGroundtruth { uint64_t timestamp; uint64_t timestamp_sample; double lat; double lon; float alt; float alt_ellipsoid; float delta_alt; uint8_t lat_lon_reset_counter; uint8_t alt_reset_counter; float eph; float epv; float terrain_alt; bool terrain_alt_valid; bool dead_reckoning; } px4_msgs__msg__VehicleGlobalPositionGroundtruth; // Struct for a sequence of px4_msgs__msg__VehicleGlobalPositionGroundtruth. typedef struct px4_msgs__msg__VehicleGlobalPositionGroundtruth__Sequence { px4_msgs__msg__VehicleGlobalPositionGroundtruth * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__VehicleGlobalPositionGroundtruth__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__VEHICLE_GLOBAL_POSITION_GROUNDTRUTH__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/orb_test_medium_queue_poll.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/OrbTestMediumQueuePoll.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ORB_TEST_MEDIUM_QUEUE_POLL_H_ #define PX4_MSGS__MSG__ORB_TEST_MEDIUM_QUEUE_POLL_H_ #include "px4_msgs/msg/orb_test_medium_queue_poll__struct.h" #include "px4_msgs/msg/orb_test_medium_queue_poll__functions.h" #include "px4_msgs/msg/orb_test_medium_queue_poll__type_support.h" #endif // PX4_MSGS__MSG__ORB_TEST_MEDIUM_QUEUE_POLL_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/led_control__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/LedControl.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/led_control__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__LedControl__init(px4_msgs__msg__LedControl * msg) { if (!msg) { return false; } // timestamp // led_mask // color // mode // num_blinks // priority return true; } void px4_msgs__msg__LedControl__fini(px4_msgs__msg__LedControl * msg) { if (!msg) { return; } // timestamp // led_mask // color // mode // num_blinks // priority } px4_msgs__msg__LedControl * px4_msgs__msg__LedControl__create() { px4_msgs__msg__LedControl * msg = (px4_msgs__msg__LedControl *)malloc(sizeof(px4_msgs__msg__LedControl)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__LedControl)); bool success = px4_msgs__msg__LedControl__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__LedControl__destroy(px4_msgs__msg__LedControl * msg) { if (msg) { px4_msgs__msg__LedControl__fini(msg); } free(msg); } bool px4_msgs__msg__LedControl__Sequence__init(px4_msgs__msg__LedControl__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__LedControl * data = NULL; if (size) { data = (px4_msgs__msg__LedControl *)calloc(size, sizeof(px4_msgs__msg__LedControl)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__LedControl__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__LedControl__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__LedControl__Sequence__fini(px4_msgs__msg__LedControl__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__LedControl__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__LedControl__Sequence * px4_msgs__msg__LedControl__Sequence__create(size_t size) { px4_msgs__msg__LedControl__Sequence * array = (px4_msgs__msg__LedControl__Sequence *)malloc(sizeof(px4_msgs__msg__LedControl__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__LedControl__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__LedControl__Sequence__destroy(px4_msgs__msg__LedControl__Sequence * array) { if (array) { px4_msgs__msg__LedControl__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_selector_status__functions.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/EstimatorSelectorStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_SELECTOR_STATUS__FUNCTIONS_H_ #define PX4_MSGS__MSG__ESTIMATOR_SELECTOR_STATUS__FUNCTIONS_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stdlib.h> #include "rosidl_generator_c/visibility_control.h" #include "px4_msgs/msg/rosidl_generator_c__visibility_control.h" #include "px4_msgs/msg/estimator_selector_status__struct.h" /// Initialize msg/EstimatorSelectorStatus message. /** * If the init function is called twice for the same message without * calling fini inbetween previously allocated memory will be leaked. * \param[in,out] msg The previously allocated message pointer. * Fields without a default value will not be initialized by this function. * You might want to call memset(msg, 0, sizeof( * px4_msgs__msg__EstimatorSelectorStatus * )) before or use * px4_msgs__msg__EstimatorSelectorStatus__create() * to allocate and initialize the message. * \return true if initialization was successful, otherwise false */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__EstimatorSelectorStatus__init(px4_msgs__msg__EstimatorSelectorStatus * msg); /// Finalize msg/EstimatorSelectorStatus message. /** * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__EstimatorSelectorStatus__fini(px4_msgs__msg__EstimatorSelectorStatus * msg); /// Create msg/EstimatorSelectorStatus message. /** * It allocates the memory for the message, sets the memory to zero, and * calls * px4_msgs__msg__EstimatorSelectorStatus__init(). * \return The pointer to the initialized message if successful, * otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__EstimatorSelectorStatus * px4_msgs__msg__EstimatorSelectorStatus__create(); /// Destroy msg/EstimatorSelectorStatus message. /** * It calls * px4_msgs__msg__EstimatorSelectorStatus__fini() * and frees the memory of the message. * \param[in,out] msg The allocated message pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__EstimatorSelectorStatus__destroy(px4_msgs__msg__EstimatorSelectorStatus * msg); /// Initialize array of msg/EstimatorSelectorStatus messages. /** * It allocates the memory for the number of elements and calls * px4_msgs__msg__EstimatorSelectorStatus__init() * for each element of the array. * \param[in,out] array The allocated array pointer. * \param[in] size The size / capacity of the array. * \return true if initialization was successful, otherwise false * If the array pointer is valid and the size is zero it is guaranteed # to return true. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs bool px4_msgs__msg__EstimatorSelectorStatus__Sequence__init(px4_msgs__msg__EstimatorSelectorStatus__Sequence * array, size_t size); /// Finalize array of msg/EstimatorSelectorStatus messages. /** * It calls * px4_msgs__msg__EstimatorSelectorStatus__fini() * for each element of the array and frees the memory for the number of * elements. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__EstimatorSelectorStatus__Sequence__fini(px4_msgs__msg__EstimatorSelectorStatus__Sequence * array); /// Create array of msg/EstimatorSelectorStatus messages. /** * It allocates the memory for the array and calls * px4_msgs__msg__EstimatorSelectorStatus__Sequence__init(). * \param[in] size The size / capacity of the array. * \return The pointer to the initialized array if successful, otherwise NULL */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs px4_msgs__msg__EstimatorSelectorStatus__Sequence * px4_msgs__msg__EstimatorSelectorStatus__Sequence__create(size_t size); /// Destroy array of msg/EstimatorSelectorStatus messages. /** * It calls * px4_msgs__msg__EstimatorSelectorStatus__Sequence__fini() * on the array, * and frees the memory of the array. * \param[in,out] array The initialized array pointer. */ ROSIDL_GENERATOR_C_PUBLIC_px4_msgs void px4_msgs__msg__EstimatorSelectorStatus__Sequence__destroy(px4_msgs__msg__EstimatorSelectorStatus__Sequence * array); #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ESTIMATOR_SELECTOR_STATUS__FUNCTIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/ulog_stream__struct.h // generated from rosidl_generator_c/resource/idl__struct.h.em // with input from px4_msgs:msg/UlogStream.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ULOG_STREAM__STRUCT_H_ #define PX4_MSGS__MSG__ULOG_STREAM__STRUCT_H_ #ifdef __cplusplus extern "C" { #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> // Constants defined in the message /// Constant 'FLAGS_NEED_ACK'. enum { px4_msgs__msg__UlogStream__FLAGS_NEED_ACK = 1 }; /// Constant 'ORB_QUEUE_LENGTH'. enum { px4_msgs__msg__UlogStream__ORB_QUEUE_LENGTH = 16 }; // Struct defined in msg/UlogStream in the package px4_msgs. typedef struct px4_msgs__msg__UlogStream { uint64_t timestamp; uint8_t length; uint8_t first_message_offset; uint16_t msg_sequence; uint8_t flags; uint8_t data[249]; } px4_msgs__msg__UlogStream; // Struct for a sequence of px4_msgs__msg__UlogStream. typedef struct px4_msgs__msg__UlogStream__Sequence { px4_msgs__msg__UlogStream * data; /// The number of valid items in data size_t size; /// The number of allocated items in data size_t capacity; } px4_msgs__msg__UlogStream__Sequence; #ifdef __cplusplus } #endif #endif // PX4_MSGS__MSG__ULOG_STREAM__STRUCT_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/gimbal_manager_information__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/GimbalManagerInformation.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/gimbal_manager_information__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__GimbalManagerInformation__init(px4_msgs__msg__GimbalManagerInformation * msg) { if (!msg) { return false; } // timestamp // cap_flags // gimbal_device_id // roll_min // roll_max // pitch_min // pitch_max // yaw_min // yaw_max return true; } void px4_msgs__msg__GimbalManagerInformation__fini(px4_msgs__msg__GimbalManagerInformation * msg) { if (!msg) { return; } // timestamp // cap_flags // gimbal_device_id // roll_min // roll_max // pitch_min // pitch_max // yaw_min // yaw_max } px4_msgs__msg__GimbalManagerInformation * px4_msgs__msg__GimbalManagerInformation__create() { px4_msgs__msg__GimbalManagerInformation * msg = (px4_msgs__msg__GimbalManagerInformation *)malloc(sizeof(px4_msgs__msg__GimbalManagerInformation)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__GimbalManagerInformation)); bool success = px4_msgs__msg__GimbalManagerInformation__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__GimbalManagerInformation__destroy(px4_msgs__msg__GimbalManagerInformation * msg) { if (msg) { px4_msgs__msg__GimbalManagerInformation__fini(msg); } free(msg); } bool px4_msgs__msg__GimbalManagerInformation__Sequence__init(px4_msgs__msg__GimbalManagerInformation__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__GimbalManagerInformation * data = NULL; if (size) { data = (px4_msgs__msg__GimbalManagerInformation *)calloc(size, sizeof(px4_msgs__msg__GimbalManagerInformation)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__GimbalManagerInformation__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__GimbalManagerInformation__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__GimbalManagerInformation__Sequence__fini(px4_msgs__msg__GimbalManagerInformation__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__GimbalManagerInformation__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__GimbalManagerInformation__Sequence * px4_msgs__msg__GimbalManagerInformation__Sequence__create(size_t size) { px4_msgs__msg__GimbalManagerInformation__Sequence * array = (px4_msgs__msg__GimbalManagerInformation__Sequence *)malloc(sizeof(px4_msgs__msg__GimbalManagerInformation__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__GimbalManagerInformation__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__GimbalManagerInformation__Sequence__destroy(px4_msgs__msg__GimbalManagerInformation__Sequence * array) { if (array) { px4_msgs__msg__GimbalManagerInformation__Sequence__fini(array); } free(array); } <file_sep>/install/px4_ros_com/share/px4_ros_com/cmake/EnableSanitizers.cmake /home/navlab-tx2-4/px4_ros_com_ros2/src/px4_ros_com/cmake/EnableSanitizers.cmake<file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/trajectory_setpoint__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/TrajectorySetpoint.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/trajectory_setpoint__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/trajectory_setpoint__struct.h" #include "px4_msgs/msg/trajectory_setpoint__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _TrajectorySetpoint__ros_msg_type = px4_msgs__msg__TrajectorySetpoint; static bool _TrajectorySetpoint__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _TrajectorySetpoint__ros_msg_type * ros_message = static_cast<const _TrajectorySetpoint__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: x { cdr << ros_message->x; } // Field name: y { cdr << ros_message->y; } // Field name: z { cdr << ros_message->z; } // Field name: yaw { cdr << ros_message->yaw; } // Field name: yawspeed { cdr << ros_message->yawspeed; } // Field name: vx { cdr << ros_message->vx; } // Field name: vy { cdr << ros_message->vy; } // Field name: vz { cdr << ros_message->vz; } // Field name: acceleration { size_t size = 3; auto array_ptr = ros_message->acceleration; cdr.serializeArray(array_ptr, size); } // Field name: jerk { size_t size = 3; auto array_ptr = ros_message->jerk; cdr.serializeArray(array_ptr, size); } // Field name: thrust { size_t size = 3; auto array_ptr = ros_message->thrust; cdr.serializeArray(array_ptr, size); } return true; } static bool _TrajectorySetpoint__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _TrajectorySetpoint__ros_msg_type * ros_message = static_cast<_TrajectorySetpoint__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: x { cdr >> ros_message->x; } // Field name: y { cdr >> ros_message->y; } // Field name: z { cdr >> ros_message->z; } // Field name: yaw { cdr >> ros_message->yaw; } // Field name: yawspeed { cdr >> ros_message->yawspeed; } // Field name: vx { cdr >> ros_message->vx; } // Field name: vy { cdr >> ros_message->vy; } // Field name: vz { cdr >> ros_message->vz; } // Field name: acceleration { size_t size = 3; auto array_ptr = ros_message->acceleration; cdr.deserializeArray(array_ptr, size); } // Field name: jerk { size_t size = 3; auto array_ptr = ros_message->jerk; cdr.deserializeArray(array_ptr, size); } // Field name: thrust { size_t size = 3; auto array_ptr = ros_message->thrust; cdr.deserializeArray(array_ptr, size); } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__TrajectorySetpoint( const void * untyped_ros_message, size_t current_alignment) { const _TrajectorySetpoint__ros_msg_type * ros_message = static_cast<const _TrajectorySetpoint__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name x { size_t item_size = sizeof(ros_message->x); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name y { size_t item_size = sizeof(ros_message->y); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name z { size_t item_size = sizeof(ros_message->z); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name yaw { size_t item_size = sizeof(ros_message->yaw); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name yawspeed { size_t item_size = sizeof(ros_message->yawspeed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vx { size_t item_size = sizeof(ros_message->vx); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vy { size_t item_size = sizeof(ros_message->vy); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vz { size_t item_size = sizeof(ros_message->vz); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name acceleration { size_t array_size = 3; auto array_ptr = ros_message->acceleration; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name jerk { size_t array_size = 3; auto array_ptr = ros_message->jerk; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name thrust { size_t array_size = 3; auto array_ptr = ros_message->thrust; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _TrajectorySetpoint__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__TrajectorySetpoint( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__TrajectorySetpoint( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: x { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: y { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: z { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: yaw { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: yawspeed { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: vx { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: vy { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: vz { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: acceleration { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: jerk { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: thrust { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } return current_alignment - initial_alignment; } static size_t _TrajectorySetpoint__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__TrajectorySetpoint( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_TrajectorySetpoint = { "px4_msgs::msg", "TrajectorySetpoint", _TrajectorySetpoint__cdr_serialize, _TrajectorySetpoint__cdr_deserialize, _TrajectorySetpoint__get_serialized_size, _TrajectorySetpoint__max_serialized_size }; static rosidl_message_type_support_t _TrajectorySetpoint__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_TrajectorySetpoint, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, TrajectorySetpoint)() { return &_TrajectorySetpoint__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_py/px4_msgs/msg/_logger_status.py # generated from rosidl_generator_py/resource/_idl.py.em # with input from px4_msgs:msg/LoggerStatus.idl # generated code does not contain a copyright notice # Import statements for member types import rosidl_parser.definition # noqa: E402, I100 class Metaclass_LoggerStatus(type): """Metaclass of message 'LoggerStatus'.""" _CREATE_ROS_MESSAGE = None _CONVERT_FROM_PY = None _CONVERT_TO_PY = None _DESTROY_ROS_MESSAGE = None _TYPE_SUPPORT = None __constants = { 'LOGGER_TYPE_FULL': 0, 'LOGGER_TYPE_MISSION': 1, 'BACKEND_FILE': 1, 'BACKEND_MAVLINK': 2, 'BACKEND_ALL': 3, } @classmethod def __import_type_support__(cls): try: from rosidl_generator_py import import_type_support module = import_type_support('px4_msgs') except ImportError: import logging import traceback logger = logging.getLogger( 'px4_msgs.msg.LoggerStatus') logger.debug( 'Failed to import needed modules for type support:\n' + traceback.format_exc()) else: cls._CREATE_ROS_MESSAGE = module.create_ros_message_msg__msg__logger_status cls._CONVERT_FROM_PY = module.convert_from_py_msg__msg__logger_status cls._CONVERT_TO_PY = module.convert_to_py_msg__msg__logger_status cls._TYPE_SUPPORT = module.type_support_msg__msg__logger_status cls._DESTROY_ROS_MESSAGE = module.destroy_ros_message_msg__msg__logger_status @classmethod def __prepare__(cls, name, bases, **kwargs): # list constant names here so that they appear in the help text of # the message class under "Data and other attributes defined here:" # as well as populate each message instance return { 'LOGGER_TYPE_FULL': cls.__constants['LOGGER_TYPE_FULL'], 'LOGGER_TYPE_MISSION': cls.__constants['LOGGER_TYPE_MISSION'], 'BACKEND_FILE': cls.__constants['BACKEND_FILE'], 'BACKEND_MAVLINK': cls.__constants['BACKEND_MAVLINK'], 'BACKEND_ALL': cls.__constants['BACKEND_ALL'], } @property def LOGGER_TYPE_FULL(self): """Message constant 'LOGGER_TYPE_FULL'.""" return Metaclass_LoggerStatus.__constants['LOGGER_TYPE_FULL'] @property def LOGGER_TYPE_MISSION(self): """Message constant 'LOGGER_TYPE_MISSION'.""" return Metaclass_LoggerStatus.__constants['LOGGER_TYPE_MISSION'] @property def BACKEND_FILE(self): """Message constant 'BACKEND_FILE'.""" return Metaclass_LoggerStatus.__constants['BACKEND_FILE'] @property def BACKEND_MAVLINK(self): """Message constant 'BACKEND_MAVLINK'.""" return Metaclass_LoggerStatus.__constants['BACKEND_MAVLINK'] @property def BACKEND_ALL(self): """Message constant 'BACKEND_ALL'.""" return Metaclass_LoggerStatus.__constants['BACKEND_ALL'] class LoggerStatus(metaclass=Metaclass_LoggerStatus): """ Message class 'LoggerStatus'. Constants: LOGGER_TYPE_FULL LOGGER_TYPE_MISSION BACKEND_FILE BACKEND_MAVLINK BACKEND_ALL """ __slots__ = [ '_timestamp', '_type', '_backend', '_total_written_kb', '_write_rate_kb_s', '_dropouts', '_message_gaps', '_buffer_used_bytes', '_buffer_size_bytes', '_num_messages', ] _fields_and_field_types = { 'timestamp': 'uint64', 'type': 'uint8', 'backend': 'uint8', 'total_written_kb': 'float', 'write_rate_kb_s': 'float', 'dropouts': 'uint32', 'message_gaps': 'uint32', 'buffer_used_bytes': 'uint32', 'buffer_size_bytes': 'uint32', 'num_messages': 'uint8', } SLOT_TYPES = ( rosidl_parser.definition.BasicType('uint64'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('float'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint32'), # noqa: E501 rosidl_parser.definition.BasicType('uint8'), # noqa: E501 ) def __init__(self, **kwargs): assert all('_' + key in self.__slots__ for key in kwargs.keys()), \ 'Invalid arguments passed to constructor: %s' % \ ', '.join(sorted(k for k in kwargs.keys() if '_' + k not in self.__slots__)) self.timestamp = kwargs.get('timestamp', int()) self.type = kwargs.get('type', int()) self.backend = kwargs.get('backend', int()) self.total_written_kb = kwargs.get('total_written_kb', float()) self.write_rate_kb_s = kwargs.get('write_rate_kb_s', float()) self.dropouts = kwargs.get('dropouts', int()) self.message_gaps = kwargs.get('message_gaps', int()) self.buffer_used_bytes = kwargs.get('buffer_used_bytes', int()) self.buffer_size_bytes = kwargs.get('buffer_size_bytes', int()) self.num_messages = kwargs.get('num_messages', int()) def __repr__(self): typename = self.__class__.__module__.split('.') typename.pop() typename.append(self.__class__.__name__) args = [] for s, t in zip(self.__slots__, self.SLOT_TYPES): field = getattr(self, s) fieldstr = repr(field) # We use Python array type for fields that can be directly stored # in them, and "normal" sequences for everything else. If it is # a type that we store in an array, strip off the 'array' portion. if ( isinstance(t, rosidl_parser.definition.AbstractSequence) and isinstance(t.value_type, rosidl_parser.definition.BasicType) and t.value_type.typename in ['float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64'] ): if len(field) == 0: fieldstr = '[]' else: assert fieldstr.startswith('array(') prefix = "array('X', " suffix = ')' fieldstr = fieldstr[len(prefix):-len(suffix)] args.append(s[1:] + '=' + fieldstr) return '%s(%s)' % ('.'.join(typename), ', '.join(args)) def __eq__(self, other): if not isinstance(other, self.__class__): return False if self.timestamp != other.timestamp: return False if self.type != other.type: return False if self.backend != other.backend: return False if self.total_written_kb != other.total_written_kb: return False if self.write_rate_kb_s != other.write_rate_kb_s: return False if self.dropouts != other.dropouts: return False if self.message_gaps != other.message_gaps: return False if self.buffer_used_bytes != other.buffer_used_bytes: return False if self.buffer_size_bytes != other.buffer_size_bytes: return False if self.num_messages != other.num_messages: return False return True @classmethod def get_fields_and_field_types(cls): from copy import copy return copy(cls._fields_and_field_types) @property def timestamp(self): """Message field 'timestamp'.""" return self._timestamp @timestamp.setter def timestamp(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'timestamp' field must be of type 'int'" assert value >= 0 and value < 18446744073709551616, \ "The 'timestamp' field must be an unsigned integer in [0, 18446744073709551615]" self._timestamp = value @property # noqa: A003 def type(self): """Message field 'type'.""" return self._type @type.setter # noqa: A003 def type(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'type' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'type' field must be an unsigned integer in [0, 255]" self._type = value @property def backend(self): """Message field 'backend'.""" return self._backend @backend.setter def backend(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'backend' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'backend' field must be an unsigned integer in [0, 255]" self._backend = value @property def total_written_kb(self): """Message field 'total_written_kb'.""" return self._total_written_kb @total_written_kb.setter def total_written_kb(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'total_written_kb' field must be of type 'float'" self._total_written_kb = value @property def write_rate_kb_s(self): """Message field 'write_rate_kb_s'.""" return self._write_rate_kb_s @write_rate_kb_s.setter def write_rate_kb_s(self, value): if __debug__: assert \ isinstance(value, float), \ "The 'write_rate_kb_s' field must be of type 'float'" self._write_rate_kb_s = value @property def dropouts(self): """Message field 'dropouts'.""" return self._dropouts @dropouts.setter def dropouts(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'dropouts' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'dropouts' field must be an unsigned integer in [0, 4294967295]" self._dropouts = value @property def message_gaps(self): """Message field 'message_gaps'.""" return self._message_gaps @message_gaps.setter def message_gaps(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'message_gaps' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'message_gaps' field must be an unsigned integer in [0, 4294967295]" self._message_gaps = value @property def buffer_used_bytes(self): """Message field 'buffer_used_bytes'.""" return self._buffer_used_bytes @buffer_used_bytes.setter def buffer_used_bytes(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'buffer_used_bytes' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'buffer_used_bytes' field must be an unsigned integer in [0, 4294967295]" self._buffer_used_bytes = value @property def buffer_size_bytes(self): """Message field 'buffer_size_bytes'.""" return self._buffer_size_bytes @buffer_size_bytes.setter def buffer_size_bytes(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'buffer_size_bytes' field must be of type 'int'" assert value >= 0 and value < 4294967296, \ "The 'buffer_size_bytes' field must be an unsigned integer in [0, 4294967295]" self._buffer_size_bytes = value @property def num_messages(self): """Message field 'num_messages'.""" return self._num_messages @num_messages.setter def num_messages(self, value): if __debug__: assert \ isinstance(value, int), \ "The 'num_messages' field must be of type 'int'" assert value >= 0 and value < 256, \ "The 'num_messages' field must be an unsigned integer in [0, 255]" self._num_messages = value <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/estimator_innovations.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/EstimatorInnovations.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__ESTIMATOR_INNOVATIONS_H_ #define PX4_MSGS__MSG__ESTIMATOR_INNOVATIONS_H_ #include "px4_msgs/msg/estimator_innovations__struct.h" #include "px4_msgs/msg/estimator_innovations__functions.h" #include "px4_msgs/msg/estimator_innovations__type_support.h" #endif // PX4_MSGS__MSG__ESTIMATOR_INNOVATIONS_H_ <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/timesync_status.hpp // generated from rosidl_generator_cpp/resource/idl.hpp.em // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__TIMESYNC_STATUS_HPP_ #define PX4_MSGS__MSG__TIMESYNC_STATUS_HPP_ #include "px4_msgs/msg/timesync_status__struct.hpp" #include "px4_msgs/msg/timesync_status__traits.hpp" #endif // PX4_MSGS__MSG__TIMESYNC_STATUS_HPP_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/camera_capture.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/CameraCapture.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__CAMERA_CAPTURE_H_ #define PX4_MSGS__MSG__CAMERA_CAPTURE_H_ #include "px4_msgs/msg/camera_capture__struct.h" #include "px4_msgs/msg/camera_capture__functions.h" #include "px4_msgs/msg/camera_capture__type_support.h" #endif // PX4_MSGS__MSG__CAMERA_CAPTURE_H_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_c/px4_msgs/msg/estimator_status__type_support_c.cpp // generated from rosidl_typesupport_fastrtps_c/resource/idl__type_support_c.cpp.em // with input from px4_msgs:msg/EstimatorStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/estimator_status__rosidl_typesupport_fastrtps_c.h" #include <cassert> #include <limits> #include <string> #include "rosidl_typesupport_fastrtps_c/identifier.h" #include "rosidl_typesupport_fastrtps_c/wstring_conversion.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "px4_msgs/msg/rosidl_typesupport_fastrtps_c__visibility_control.h" #include "px4_msgs/msg/estimator_status__struct.h" #include "px4_msgs/msg/estimator_status__functions.h" #include "fastcdr/Cdr.h" #ifndef _WIN32 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-parameter" # ifdef __clang__ # pragma clang diagnostic ignored "-Wdeprecated-register" # pragma clang diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifndef _WIN32 # pragma GCC diagnostic pop #endif // includes and forward declarations of message dependencies and their conversion functions #if defined(__cplusplus) extern "C" { #endif // forward declare type support functions using _EstimatorStatus__ros_msg_type = px4_msgs__msg__EstimatorStatus; static bool _EstimatorStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } const _EstimatorStatus__ros_msg_type * ros_message = static_cast<const _EstimatorStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr << ros_message->timestamp; } // Field name: timestamp_sample { cdr << ros_message->timestamp_sample; } // Field name: vibe { size_t size = 3; auto array_ptr = ros_message->vibe; cdr.serializeArray(array_ptr, size); } // Field name: output_tracking_error { size_t size = 3; auto array_ptr = ros_message->output_tracking_error; cdr.serializeArray(array_ptr, size); } // Field name: gps_check_fail_flags { cdr << ros_message->gps_check_fail_flags; } // Field name: control_mode_flags { cdr << ros_message->control_mode_flags; } // Field name: filter_fault_flags { cdr << ros_message->filter_fault_flags; } // Field name: pos_horiz_accuracy { cdr << ros_message->pos_horiz_accuracy; } // Field name: pos_vert_accuracy { cdr << ros_message->pos_vert_accuracy; } // Field name: innovation_check_flags { cdr << ros_message->innovation_check_flags; } // Field name: mag_test_ratio { cdr << ros_message->mag_test_ratio; } // Field name: vel_test_ratio { cdr << ros_message->vel_test_ratio; } // Field name: pos_test_ratio { cdr << ros_message->pos_test_ratio; } // Field name: hgt_test_ratio { cdr << ros_message->hgt_test_ratio; } // Field name: tas_test_ratio { cdr << ros_message->tas_test_ratio; } // Field name: hagl_test_ratio { cdr << ros_message->hagl_test_ratio; } // Field name: beta_test_ratio { cdr << ros_message->beta_test_ratio; } // Field name: solution_status_flags { cdr << ros_message->solution_status_flags; } // Field name: reset_count_vel_ne { cdr << ros_message->reset_count_vel_ne; } // Field name: reset_count_vel_d { cdr << ros_message->reset_count_vel_d; } // Field name: reset_count_pos_ne { cdr << ros_message->reset_count_pos_ne; } // Field name: reset_count_pod_d { cdr << ros_message->reset_count_pod_d; } // Field name: reset_count_quat { cdr << ros_message->reset_count_quat; } // Field name: time_slip { cdr << ros_message->time_slip; } // Field name: pre_flt_fail_innov_heading { cdr << (ros_message->pre_flt_fail_innov_heading ? true : false); } // Field name: pre_flt_fail_innov_vel_horiz { cdr << (ros_message->pre_flt_fail_innov_vel_horiz ? true : false); } // Field name: pre_flt_fail_innov_vel_vert { cdr << (ros_message->pre_flt_fail_innov_vel_vert ? true : false); } // Field name: pre_flt_fail_innov_height { cdr << (ros_message->pre_flt_fail_innov_height ? true : false); } // Field name: pre_flt_fail_mag_field_disturbed { cdr << (ros_message->pre_flt_fail_mag_field_disturbed ? true : false); } // Field name: accel_device_id { cdr << ros_message->accel_device_id; } // Field name: gyro_device_id { cdr << ros_message->gyro_device_id; } // Field name: baro_device_id { cdr << ros_message->baro_device_id; } // Field name: mag_device_id { cdr << ros_message->mag_device_id; } // Field name: health_flags { cdr << ros_message->health_flags; } // Field name: timeout_flags { cdr << ros_message->timeout_flags; } return true; } static bool _EstimatorStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { if (!untyped_ros_message) { fprintf(stderr, "ros message handle is null\n"); return false; } _EstimatorStatus__ros_msg_type * ros_message = static_cast<_EstimatorStatus__ros_msg_type *>(untyped_ros_message); // Field name: timestamp { cdr >> ros_message->timestamp; } // Field name: timestamp_sample { cdr >> ros_message->timestamp_sample; } // Field name: vibe { size_t size = 3; auto array_ptr = ros_message->vibe; cdr.deserializeArray(array_ptr, size); } // Field name: output_tracking_error { size_t size = 3; auto array_ptr = ros_message->output_tracking_error; cdr.deserializeArray(array_ptr, size); } // Field name: gps_check_fail_flags { cdr >> ros_message->gps_check_fail_flags; } // Field name: control_mode_flags { cdr >> ros_message->control_mode_flags; } // Field name: filter_fault_flags { cdr >> ros_message->filter_fault_flags; } // Field name: pos_horiz_accuracy { cdr >> ros_message->pos_horiz_accuracy; } // Field name: pos_vert_accuracy { cdr >> ros_message->pos_vert_accuracy; } // Field name: innovation_check_flags { cdr >> ros_message->innovation_check_flags; } // Field name: mag_test_ratio { cdr >> ros_message->mag_test_ratio; } // Field name: vel_test_ratio { cdr >> ros_message->vel_test_ratio; } // Field name: pos_test_ratio { cdr >> ros_message->pos_test_ratio; } // Field name: hgt_test_ratio { cdr >> ros_message->hgt_test_ratio; } // Field name: tas_test_ratio { cdr >> ros_message->tas_test_ratio; } // Field name: hagl_test_ratio { cdr >> ros_message->hagl_test_ratio; } // Field name: beta_test_ratio { cdr >> ros_message->beta_test_ratio; } // Field name: solution_status_flags { cdr >> ros_message->solution_status_flags; } // Field name: reset_count_vel_ne { cdr >> ros_message->reset_count_vel_ne; } // Field name: reset_count_vel_d { cdr >> ros_message->reset_count_vel_d; } // Field name: reset_count_pos_ne { cdr >> ros_message->reset_count_pos_ne; } // Field name: reset_count_pod_d { cdr >> ros_message->reset_count_pod_d; } // Field name: reset_count_quat { cdr >> ros_message->reset_count_quat; } // Field name: time_slip { cdr >> ros_message->time_slip; } // Field name: pre_flt_fail_innov_heading { uint8_t tmp; cdr >> tmp; ros_message->pre_flt_fail_innov_heading = tmp ? true : false; } // Field name: pre_flt_fail_innov_vel_horiz { uint8_t tmp; cdr >> tmp; ros_message->pre_flt_fail_innov_vel_horiz = tmp ? true : false; } // Field name: pre_flt_fail_innov_vel_vert { uint8_t tmp; cdr >> tmp; ros_message->pre_flt_fail_innov_vel_vert = tmp ? true : false; } // Field name: pre_flt_fail_innov_height { uint8_t tmp; cdr >> tmp; ros_message->pre_flt_fail_innov_height = tmp ? true : false; } // Field name: pre_flt_fail_mag_field_disturbed { uint8_t tmp; cdr >> tmp; ros_message->pre_flt_fail_mag_field_disturbed = tmp ? true : false; } // Field name: accel_device_id { cdr >> ros_message->accel_device_id; } // Field name: gyro_device_id { cdr >> ros_message->gyro_device_id; } // Field name: baro_device_id { cdr >> ros_message->baro_device_id; } // Field name: mag_device_id { cdr >> ros_message->mag_device_id; } // Field name: health_flags { cdr >> ros_message->health_flags; } // Field name: timeout_flags { cdr >> ros_message->timeout_flags; } return true; } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t get_serialized_size_px4_msgs__msg__EstimatorStatus( const void * untyped_ros_message, size_t current_alignment) { const _EstimatorStatus__ros_msg_type * ros_message = static_cast<const _EstimatorStatus__ros_msg_type *>(untyped_ros_message); (void)ros_message; size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // field.name timestamp { size_t item_size = sizeof(ros_message->timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name timestamp_sample { size_t item_size = sizeof(ros_message->timestamp_sample); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vibe { size_t array_size = 3; auto array_ptr = ros_message->vibe; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name output_tracking_error { size_t array_size = 3; auto array_ptr = ros_message->output_tracking_error; (void)array_ptr; size_t item_size = sizeof(array_ptr[0]); current_alignment += array_size * item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gps_check_fail_flags { size_t item_size = sizeof(ros_message->gps_check_fail_flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name control_mode_flags { size_t item_size = sizeof(ros_message->control_mode_flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name filter_fault_flags { size_t item_size = sizeof(ros_message->filter_fault_flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name pos_horiz_accuracy { size_t item_size = sizeof(ros_message->pos_horiz_accuracy); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name pos_vert_accuracy { size_t item_size = sizeof(ros_message->pos_vert_accuracy); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name innovation_check_flags { size_t item_size = sizeof(ros_message->innovation_check_flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name mag_test_ratio { size_t item_size = sizeof(ros_message->mag_test_ratio); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name vel_test_ratio { size_t item_size = sizeof(ros_message->vel_test_ratio); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name pos_test_ratio { size_t item_size = sizeof(ros_message->pos_test_ratio); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name hgt_test_ratio { size_t item_size = sizeof(ros_message->hgt_test_ratio); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name tas_test_ratio { size_t item_size = sizeof(ros_message->tas_test_ratio); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name hagl_test_ratio { size_t item_size = sizeof(ros_message->hagl_test_ratio); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name beta_test_ratio { size_t item_size = sizeof(ros_message->beta_test_ratio); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name solution_status_flags { size_t item_size = sizeof(ros_message->solution_status_flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name reset_count_vel_ne { size_t item_size = sizeof(ros_message->reset_count_vel_ne); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name reset_count_vel_d { size_t item_size = sizeof(ros_message->reset_count_vel_d); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name reset_count_pos_ne { size_t item_size = sizeof(ros_message->reset_count_pos_ne); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name reset_count_pod_d { size_t item_size = sizeof(ros_message->reset_count_pod_d); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name reset_count_quat { size_t item_size = sizeof(ros_message->reset_count_quat); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name time_slip { size_t item_size = sizeof(ros_message->time_slip); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name pre_flt_fail_innov_heading { size_t item_size = sizeof(ros_message->pre_flt_fail_innov_heading); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name pre_flt_fail_innov_vel_horiz { size_t item_size = sizeof(ros_message->pre_flt_fail_innov_vel_horiz); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name pre_flt_fail_innov_vel_vert { size_t item_size = sizeof(ros_message->pre_flt_fail_innov_vel_vert); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name pre_flt_fail_innov_height { size_t item_size = sizeof(ros_message->pre_flt_fail_innov_height); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name pre_flt_fail_mag_field_disturbed { size_t item_size = sizeof(ros_message->pre_flt_fail_mag_field_disturbed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name accel_device_id { size_t item_size = sizeof(ros_message->accel_device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name gyro_device_id { size_t item_size = sizeof(ros_message->gyro_device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name baro_device_id { size_t item_size = sizeof(ros_message->baro_device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name mag_device_id { size_t item_size = sizeof(ros_message->mag_device_id); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name health_flags { size_t item_size = sizeof(ros_message->health_flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // field.name timeout_flags { size_t item_size = sizeof(ros_message->timeout_flags); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } static uint32_t _EstimatorStatus__get_serialized_size(const void * untyped_ros_message) { return static_cast<uint32_t>( get_serialized_size_px4_msgs__msg__EstimatorStatus( untyped_ros_message, 0)); } ROSIDL_TYPESUPPORT_FASTRTPS_C_PUBLIC_px4_msgs size_t max_serialized_size_px4_msgs__msg__EstimatorStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: timestamp_sample { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // member: vibe { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: output_tracking_error { size_t array_size = 3; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gps_check_fail_flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: control_mode_flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: filter_fault_flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: pos_horiz_accuracy { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: pos_vert_accuracy { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: innovation_check_flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: mag_test_ratio { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: vel_test_ratio { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: pos_test_ratio { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: hgt_test_ratio { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: tas_test_ratio { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: hagl_test_ratio { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: beta_test_ratio { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: solution_status_flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // member: reset_count_vel_ne { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: reset_count_vel_d { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: reset_count_pos_ne { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: reset_count_pod_d { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: reset_count_quat { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: time_slip { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: pre_flt_fail_innov_heading { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: pre_flt_fail_innov_vel_horiz { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: pre_flt_fail_innov_vel_vert { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: pre_flt_fail_innov_height { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: pre_flt_fail_mag_field_disturbed { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: accel_device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: gyro_device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: baro_device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: mag_device_id { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // member: health_flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } // member: timeout_flags { size_t array_size = 1; current_alignment += array_size * sizeof(uint8_t); } return current_alignment - initial_alignment; } static size_t _EstimatorStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_px4_msgs__msg__EstimatorStatus( full_bounded, 0); } static message_type_support_callbacks_t __callbacks_EstimatorStatus = { "px4_msgs::msg", "EstimatorStatus", _EstimatorStatus__cdr_serialize, _EstimatorStatus__cdr_deserialize, _EstimatorStatus__get_serialized_size, _EstimatorStatus__max_serialized_size }; static rosidl_message_type_support_t _EstimatorStatus__type_support = { rosidl_typesupport_fastrtps_c__identifier, &__callbacks_EstimatorStatus, get_message_typesupport_handle_function, }; const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_c, px4_msgs, msg, EstimatorStatus)() { return &_EstimatorStatus__type_support; } #if defined(__cplusplus) } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/vehicle_status__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/VehicleStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__VEHICLE_STATUS__STRUCT_HPP_ #define PX4_MSGS__MSG__VEHICLE_STATUS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__VehicleStatus __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__VehicleStatus __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct VehicleStatus_ { using Type = VehicleStatus_<ContainerAllocator>; explicit VehicleStatus_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->nav_state = 0; this->nav_state_timestamp = 0ull; this->arming_state = 0; this->hil_state = 0; this->failsafe = false; this->failsafe_timestamp = 0ull; this->system_type = 0; this->system_id = 0; this->component_id = 0; this->vehicle_type = 0; this->is_vtol = false; this->is_vtol_tailsitter = false; this->vtol_fw_permanent_stab = false; this->in_transition_mode = false; this->in_transition_to_fw = false; this->rc_signal_lost = false; this->rc_input_mode = 0; this->data_link_lost = false; this->data_link_lost_counter = 0; this->high_latency_data_link_lost = false; this->engine_failure = false; this->mission_failure = false; this->failure_detector_status = 0; this->onboard_control_sensors_present = 0ul; this->onboard_control_sensors_enabled = 0ul; this->onboard_control_sensors_health = 0ul; this->latest_arming_reason = 0; this->latest_disarming_reason = 0; this->armed_time = 0ull; this->takeoff_time = 0ull; } } explicit VehicleStatus_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->nav_state = 0; this->nav_state_timestamp = 0ull; this->arming_state = 0; this->hil_state = 0; this->failsafe = false; this->failsafe_timestamp = 0ull; this->system_type = 0; this->system_id = 0; this->component_id = 0; this->vehicle_type = 0; this->is_vtol = false; this->is_vtol_tailsitter = false; this->vtol_fw_permanent_stab = false; this->in_transition_mode = false; this->in_transition_to_fw = false; this->rc_signal_lost = false; this->rc_input_mode = 0; this->data_link_lost = false; this->data_link_lost_counter = 0; this->high_latency_data_link_lost = false; this->engine_failure = false; this->mission_failure = false; this->failure_detector_status = 0; this->onboard_control_sensors_present = 0ul; this->onboard_control_sensors_enabled = 0ul; this->onboard_control_sensors_health = 0ul; this->latest_arming_reason = 0; this->latest_disarming_reason = 0; this->armed_time = 0ull; this->takeoff_time = 0ull; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _nav_state_type = uint8_t; _nav_state_type nav_state; using _nav_state_timestamp_type = uint64_t; _nav_state_timestamp_type nav_state_timestamp; using _arming_state_type = uint8_t; _arming_state_type arming_state; using _hil_state_type = uint8_t; _hil_state_type hil_state; using _failsafe_type = bool; _failsafe_type failsafe; using _failsafe_timestamp_type = uint64_t; _failsafe_timestamp_type failsafe_timestamp; using _system_type_type = uint8_t; _system_type_type system_type; using _system_id_type = uint8_t; _system_id_type system_id; using _component_id_type = uint8_t; _component_id_type component_id; using _vehicle_type_type = uint8_t; _vehicle_type_type vehicle_type; using _is_vtol_type = bool; _is_vtol_type is_vtol; using _is_vtol_tailsitter_type = bool; _is_vtol_tailsitter_type is_vtol_tailsitter; using _vtol_fw_permanent_stab_type = bool; _vtol_fw_permanent_stab_type vtol_fw_permanent_stab; using _in_transition_mode_type = bool; _in_transition_mode_type in_transition_mode; using _in_transition_to_fw_type = bool; _in_transition_to_fw_type in_transition_to_fw; using _rc_signal_lost_type = bool; _rc_signal_lost_type rc_signal_lost; using _rc_input_mode_type = uint8_t; _rc_input_mode_type rc_input_mode; using _data_link_lost_type = bool; _data_link_lost_type data_link_lost; using _data_link_lost_counter_type = uint8_t; _data_link_lost_counter_type data_link_lost_counter; using _high_latency_data_link_lost_type = bool; _high_latency_data_link_lost_type high_latency_data_link_lost; using _engine_failure_type = bool; _engine_failure_type engine_failure; using _mission_failure_type = bool; _mission_failure_type mission_failure; using _failure_detector_status_type = uint8_t; _failure_detector_status_type failure_detector_status; using _onboard_control_sensors_present_type = uint32_t; _onboard_control_sensors_present_type onboard_control_sensors_present; using _onboard_control_sensors_enabled_type = uint32_t; _onboard_control_sensors_enabled_type onboard_control_sensors_enabled; using _onboard_control_sensors_health_type = uint32_t; _onboard_control_sensors_health_type onboard_control_sensors_health; using _latest_arming_reason_type = uint8_t; _latest_arming_reason_type latest_arming_reason; using _latest_disarming_reason_type = uint8_t; _latest_disarming_reason_type latest_disarming_reason; using _armed_time_type = uint64_t; _armed_time_type armed_time; using _takeoff_time_type = uint64_t; _takeoff_time_type takeoff_time; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__nav_state( const uint8_t & _arg) { this->nav_state = _arg; return *this; } Type & set__nav_state_timestamp( const uint64_t & _arg) { this->nav_state_timestamp = _arg; return *this; } Type & set__arming_state( const uint8_t & _arg) { this->arming_state = _arg; return *this; } Type & set__hil_state( const uint8_t & _arg) { this->hil_state = _arg; return *this; } Type & set__failsafe( const bool & _arg) { this->failsafe = _arg; return *this; } Type & set__failsafe_timestamp( const uint64_t & _arg) { this->failsafe_timestamp = _arg; return *this; } Type & set__system_type( const uint8_t & _arg) { this->system_type = _arg; return *this; } Type & set__system_id( const uint8_t & _arg) { this->system_id = _arg; return *this; } Type & set__component_id( const uint8_t & _arg) { this->component_id = _arg; return *this; } Type & set__vehicle_type( const uint8_t & _arg) { this->vehicle_type = _arg; return *this; } Type & set__is_vtol( const bool & _arg) { this->is_vtol = _arg; return *this; } Type & set__is_vtol_tailsitter( const bool & _arg) { this->is_vtol_tailsitter = _arg; return *this; } Type & set__vtol_fw_permanent_stab( const bool & _arg) { this->vtol_fw_permanent_stab = _arg; return *this; } Type & set__in_transition_mode( const bool & _arg) { this->in_transition_mode = _arg; return *this; } Type & set__in_transition_to_fw( const bool & _arg) { this->in_transition_to_fw = _arg; return *this; } Type & set__rc_signal_lost( const bool & _arg) { this->rc_signal_lost = _arg; return *this; } Type & set__rc_input_mode( const uint8_t & _arg) { this->rc_input_mode = _arg; return *this; } Type & set__data_link_lost( const bool & _arg) { this->data_link_lost = _arg; return *this; } Type & set__data_link_lost_counter( const uint8_t & _arg) { this->data_link_lost_counter = _arg; return *this; } Type & set__high_latency_data_link_lost( const bool & _arg) { this->high_latency_data_link_lost = _arg; return *this; } Type & set__engine_failure( const bool & _arg) { this->engine_failure = _arg; return *this; } Type & set__mission_failure( const bool & _arg) { this->mission_failure = _arg; return *this; } Type & set__failure_detector_status( const uint8_t & _arg) { this->failure_detector_status = _arg; return *this; } Type & set__onboard_control_sensors_present( const uint32_t & _arg) { this->onboard_control_sensors_present = _arg; return *this; } Type & set__onboard_control_sensors_enabled( const uint32_t & _arg) { this->onboard_control_sensors_enabled = _arg; return *this; } Type & set__onboard_control_sensors_health( const uint32_t & _arg) { this->onboard_control_sensors_health = _arg; return *this; } Type & set__latest_arming_reason( const uint8_t & _arg) { this->latest_arming_reason = _arg; return *this; } Type & set__latest_disarming_reason( const uint8_t & _arg) { this->latest_disarming_reason = _arg; return *this; } Type & set__armed_time( const uint64_t & _arg) { this->armed_time = _arg; return *this; } Type & set__takeoff_time( const uint64_t & _arg) { this->takeoff_time = _arg; return *this; } // constant declarations static constexpr uint8_t ARMING_STATE_INIT = 0u; static constexpr uint8_t ARMING_STATE_STANDBY = 1u; static constexpr uint8_t ARMING_STATE_ARMED = 2u; static constexpr uint8_t ARMING_STATE_STANDBY_ERROR = 3u; static constexpr uint8_t ARMING_STATE_SHUTDOWN = 4u; static constexpr uint8_t ARMING_STATE_IN_AIR_RESTORE = 5u; static constexpr uint8_t ARMING_STATE_MAX = 6u; static constexpr uint8_t FAILURE_NONE = 0u; static constexpr uint8_t FAILURE_ROLL = 1u; static constexpr uint8_t FAILURE_PITCH = 2u; static constexpr uint8_t FAILURE_ALT = 4u; static constexpr uint8_t FAILURE_EXT = 8u; static constexpr uint8_t FAILURE_ARM_ESC = 16u; static constexpr uint8_t HIL_STATE_OFF = 0u; static constexpr uint8_t HIL_STATE_ON = 1u; static constexpr uint8_t NAVIGATION_STATE_MANUAL = 0u; static constexpr uint8_t NAVIGATION_STATE_ALTCTL = 1u; static constexpr uint8_t NAVIGATION_STATE_POSCTL = 2u; static constexpr uint8_t NAVIGATION_STATE_AUTO_MISSION = 3u; static constexpr uint8_t NAVIGATION_STATE_AUTO_LOITER = 4u; static constexpr uint8_t NAVIGATION_STATE_AUTO_RTL = 5u; static constexpr uint8_t NAVIGATION_STATE_AUTO_LANDENGFAIL = 8u; static constexpr uint8_t NAVIGATION_STATE_AUTO_LANDGPSFAIL = 9u; static constexpr uint8_t NAVIGATION_STATE_ACRO = 10u; static constexpr uint8_t NAVIGATION_STATE_UNUSED = 11u; static constexpr uint8_t NAVIGATION_STATE_DESCEND = 12u; static constexpr uint8_t NAVIGATION_STATE_TERMINATION = 13u; static constexpr uint8_t NAVIGATION_STATE_OFFBOARD = 14u; static constexpr uint8_t NAVIGATION_STATE_STAB = 15u; static constexpr uint8_t NAVIGATION_STATE_UNUSED2 = 16u; static constexpr uint8_t NAVIGATION_STATE_AUTO_TAKEOFF = 17u; static constexpr uint8_t NAVIGATION_STATE_AUTO_LAND = 18u; static constexpr uint8_t NAVIGATION_STATE_AUTO_FOLLOW_TARGET = 19u; static constexpr uint8_t NAVIGATION_STATE_AUTO_PRECLAND = 20u; static constexpr uint8_t NAVIGATION_STATE_ORBIT = 21u; static constexpr uint8_t NAVIGATION_STATE_MAX = 22u; static constexpr uint8_t RC_IN_MODE_DEFAULT = 0u; static constexpr uint8_t RC_IN_MODE_OFF = 1u; static constexpr uint8_t RC_IN_MODE_GENERATED = 2u; static constexpr uint8_t VEHICLE_TYPE_UNKNOWN = 0u; static constexpr uint8_t VEHICLE_TYPE_ROTARY_WING = 1u; static constexpr uint8_t VEHICLE_TYPE_FIXED_WING = 2u; static constexpr uint8_t VEHICLE_TYPE_ROVER = 3u; static constexpr uint8_t VEHICLE_TYPE_AIRSHIP = 4u; static constexpr uint8_t ARM_DISARM_REASON_TRANSITION_TO_STANDBY = 0u; static constexpr uint8_t ARM_DISARM_REASON_RC_STICK = 1u; static constexpr uint8_t ARM_DISARM_REASON_RC_SWITCH = 2u; static constexpr uint8_t ARM_DISARM_REASON_COMMAND_INTERNAL = 3u; static constexpr uint8_t ARM_DISARM_REASON_COMMAND_EXTERNAL = 4u; static constexpr uint8_t ARM_DISARM_REASON_MISSION_START = 5u; static constexpr uint8_t ARM_DISARM_REASON_SAFETY_BUTTON = 6u; static constexpr uint8_t ARM_DISARM_REASON_AUTO_DISARM_LAND = 7u; static constexpr uint8_t ARM_DISARM_REASON_AUTO_DISARM_PREFLIGHT = 8u; static constexpr uint8_t ARM_DISARM_REASON_KILL_SWITCH = 9u; static constexpr uint8_t ARM_DISARM_REASON_LOCKDOWN = 10u; static constexpr uint8_t ARM_DISARM_REASON_FAILURE_DETECTOR = 11u; static constexpr uint8_t ARM_DISARM_REASON_SHUTDOWN = 12u; static constexpr uint8_t ARM_DISARM_REASON_UNIT_TEST = 13u; // pointer types using RawPtr = px4_msgs::msg::VehicleStatus_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::VehicleStatus_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::VehicleStatus_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::VehicleStatus_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleStatus_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleStatus_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::VehicleStatus_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::VehicleStatus_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::VehicleStatus_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::VehicleStatus_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__VehicleStatus std::shared_ptr<px4_msgs::msg::VehicleStatus_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__VehicleStatus std::shared_ptr<px4_msgs::msg::VehicleStatus_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const VehicleStatus_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->nav_state != other.nav_state) { return false; } if (this->nav_state_timestamp != other.nav_state_timestamp) { return false; } if (this->arming_state != other.arming_state) { return false; } if (this->hil_state != other.hil_state) { return false; } if (this->failsafe != other.failsafe) { return false; } if (this->failsafe_timestamp != other.failsafe_timestamp) { return false; } if (this->system_type != other.system_type) { return false; } if (this->system_id != other.system_id) { return false; } if (this->component_id != other.component_id) { return false; } if (this->vehicle_type != other.vehicle_type) { return false; } if (this->is_vtol != other.is_vtol) { return false; } if (this->is_vtol_tailsitter != other.is_vtol_tailsitter) { return false; } if (this->vtol_fw_permanent_stab != other.vtol_fw_permanent_stab) { return false; } if (this->in_transition_mode != other.in_transition_mode) { return false; } if (this->in_transition_to_fw != other.in_transition_to_fw) { return false; } if (this->rc_signal_lost != other.rc_signal_lost) { return false; } if (this->rc_input_mode != other.rc_input_mode) { return false; } if (this->data_link_lost != other.data_link_lost) { return false; } if (this->data_link_lost_counter != other.data_link_lost_counter) { return false; } if (this->high_latency_data_link_lost != other.high_latency_data_link_lost) { return false; } if (this->engine_failure != other.engine_failure) { return false; } if (this->mission_failure != other.mission_failure) { return false; } if (this->failure_detector_status != other.failure_detector_status) { return false; } if (this->onboard_control_sensors_present != other.onboard_control_sensors_present) { return false; } if (this->onboard_control_sensors_enabled != other.onboard_control_sensors_enabled) { return false; } if (this->onboard_control_sensors_health != other.onboard_control_sensors_health) { return false; } if (this->latest_arming_reason != other.latest_arming_reason) { return false; } if (this->latest_disarming_reason != other.latest_disarming_reason) { return false; } if (this->armed_time != other.armed_time) { return false; } if (this->takeoff_time != other.takeoff_time) { return false; } return true; } bool operator!=(const VehicleStatus_ & other) const { return !this->operator==(other); } }; // struct VehicleStatus_ // alias to use template instance with default allocator using VehicleStatus = px4_msgs::msg::VehicleStatus_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::ARMING_STATE_INIT; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::ARMING_STATE_STANDBY; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::ARMING_STATE_ARMED; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::ARMING_STATE_STANDBY_ERROR; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::ARMING_STATE_SHUTDOWN; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::ARMING_STATE_IN_AIR_RESTORE; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::ARMING_STATE_MAX; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::FAILURE_NONE; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::FAILURE_ROLL; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::FAILURE_PITCH; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::FAILURE_ALT; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::FAILURE_EXT; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::FAILURE_ARM_ESC; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::HIL_STATE_OFF; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::HIL_STATE_ON; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::NAVIGATION_STATE_MANUAL; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::NAVIGATION_STATE_ALTCTL; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::NAVIGATION_STATE_POSCTL; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::NAVIGATION_STATE_AUTO_MISSION; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::NAVIGATION_STATE_AUTO_LOITER; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::NAVIGATION_STATE_AUTO_RTL; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::NAVIGATION_STATE_AUTO_LANDENGFAIL; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::NAVIGATION_STATE_AUTO_LANDGPSFAIL; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::NAVIGATION_STATE_ACRO; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::NAVIGATION_STATE_UNUSED; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::NAVIGATION_STATE_DESCEND; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::NAVIGATION_STATE_TERMINATION; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::NAVIGATION_STATE_OFFBOARD; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::NAVIGATION_STATE_STAB; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::NAVIGATION_STATE_UNUSED2; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::NAVIGATION_STATE_AUTO_TAKEOFF; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::NAVIGATION_STATE_AUTO_LAND; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::NAVIGATION_STATE_AUTO_FOLLOW_TARGET; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::NAVIGATION_STATE_AUTO_PRECLAND; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::NAVIGATION_STATE_ORBIT; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::NAVIGATION_STATE_MAX; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::RC_IN_MODE_DEFAULT; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::RC_IN_MODE_OFF; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::RC_IN_MODE_GENERATED; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::VEHICLE_TYPE_UNKNOWN; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::VEHICLE_TYPE_ROTARY_WING; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::VEHICLE_TYPE_FIXED_WING; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::VEHICLE_TYPE_ROVER; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::VEHICLE_TYPE_AIRSHIP; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::ARM_DISARM_REASON_TRANSITION_TO_STANDBY; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::ARM_DISARM_REASON_RC_STICK; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::ARM_DISARM_REASON_RC_SWITCH; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::ARM_DISARM_REASON_COMMAND_INTERNAL; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::ARM_DISARM_REASON_COMMAND_EXTERNAL; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::ARM_DISARM_REASON_MISSION_START; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::ARM_DISARM_REASON_SAFETY_BUTTON; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::ARM_DISARM_REASON_AUTO_DISARM_LAND; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::ARM_DISARM_REASON_AUTO_DISARM_PREFLIGHT; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::ARM_DISARM_REASON_KILL_SWITCH; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::ARM_DISARM_REASON_LOCKDOWN; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::ARM_DISARM_REASON_FAILURE_DETECTOR; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::ARM_DISARM_REASON_SHUTDOWN; template<typename ContainerAllocator> constexpr uint8_t VehicleStatus_<ContainerAllocator>::ARM_DISARM_REASON_UNIT_TEST; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__VEHICLE_STATUS__STRUCT_HPP_ <file_sep>/build/px4_msgs/rosidl_typesupport_fastrtps_cpp/px4_msgs/msg/dds_fastrtps/generator_status__type_support.cpp // generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/GeneratorStatus.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/generator_status__rosidl_typesupport_fastrtps_cpp.hpp" #include "px4_msgs/msg/generator_status__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace px4_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_serialize( const px4_msgs::msg::GeneratorStatus & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: timestamp cdr << ros_message.timestamp; // Member: status cdr << ros_message.status; // Member: battery_current cdr << ros_message.battery_current; // Member: load_current cdr << ros_message.load_current; // Member: power_generated cdr << ros_message.power_generated; // Member: bus_voltage cdr << ros_message.bus_voltage; // Member: bat_current_setpoint cdr << ros_message.bat_current_setpoint; // Member: runtime cdr << ros_message.runtime; // Member: time_until_maintenance cdr << ros_message.time_until_maintenance; // Member: generator_speed cdr << ros_message.generator_speed; // Member: rectifier_temperature cdr << ros_message.rectifier_temperature; // Member: generator_temperature cdr << ros_message.generator_temperature; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, px4_msgs::msg::GeneratorStatus & ros_message) { // Member: timestamp cdr >> ros_message.timestamp; // Member: status cdr >> ros_message.status; // Member: battery_current cdr >> ros_message.battery_current; // Member: load_current cdr >> ros_message.load_current; // Member: power_generated cdr >> ros_message.power_generated; // Member: bus_voltage cdr >> ros_message.bus_voltage; // Member: bat_current_setpoint cdr >> ros_message.bat_current_setpoint; // Member: runtime cdr >> ros_message.runtime; // Member: time_until_maintenance cdr >> ros_message.time_until_maintenance; // Member: generator_speed cdr >> ros_message.generator_speed; // Member: rectifier_temperature cdr >> ros_message.rectifier_temperature; // Member: generator_temperature cdr >> ros_message.generator_temperature; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs get_serialized_size( const px4_msgs::msg::GeneratorStatus & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: timestamp { size_t item_size = sizeof(ros_message.timestamp); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: status { size_t item_size = sizeof(ros_message.status); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: battery_current { size_t item_size = sizeof(ros_message.battery_current); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: load_current { size_t item_size = sizeof(ros_message.load_current); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: power_generated { size_t item_size = sizeof(ros_message.power_generated); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: bus_voltage { size_t item_size = sizeof(ros_message.bus_voltage); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: bat_current_setpoint { size_t item_size = sizeof(ros_message.bat_current_setpoint); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: runtime { size_t item_size = sizeof(ros_message.runtime); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: time_until_maintenance { size_t item_size = sizeof(ros_message.time_until_maintenance); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: generator_speed { size_t item_size = sizeof(ros_message.generator_speed); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: rectifier_temperature { size_t item_size = sizeof(ros_message.rectifier_temperature); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: generator_temperature { size_t item_size = sizeof(ros_message.generator_temperature); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_px4_msgs max_serialized_size_GeneratorStatus( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: timestamp { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: status { size_t array_size = 1; current_alignment += array_size * sizeof(uint64_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint64_t)); } // Member: battery_current { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: load_current { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: power_generated { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: bus_voltage { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: bat_current_setpoint { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: runtime { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: time_until_maintenance { size_t array_size = 1; current_alignment += array_size * sizeof(uint32_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint32_t)); } // Member: generator_speed { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: rectifier_temperature { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: generator_temperature { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } return current_alignment - initial_alignment; } static bool _GeneratorStatus__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const px4_msgs::msg::GeneratorStatus *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _GeneratorStatus__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<px4_msgs::msg::GeneratorStatus *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _GeneratorStatus__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const px4_msgs::msg::GeneratorStatus *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _GeneratorStatus__max_serialized_size(bool & full_bounded) { return max_serialized_size_GeneratorStatus(full_bounded, 0); } static message_type_support_callbacks_t _GeneratorStatus__callbacks = { "px4_msgs::msg", "GeneratorStatus", _GeneratorStatus__cdr_serialize, _GeneratorStatus__cdr_deserialize, _GeneratorStatus__get_serialized_size, _GeneratorStatus__max_serialized_size }; static rosidl_message_type_support_t _GeneratorStatus__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_GeneratorStatus__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace px4_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_px4_msgs const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::GeneratorStatus>() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_GeneratorStatus__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, GeneratorStatus)() { return &px4_msgs::msg::typesupport_fastrtps_cpp::_GeneratorStatus__handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/timesync__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/Timesync.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/timesync__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__Timesync__init(px4_msgs__msg__Timesync * msg) { if (!msg) { return false; } // timestamp // sys_id // seq // tc1 // ts1 return true; } void px4_msgs__msg__Timesync__fini(px4_msgs__msg__Timesync * msg) { if (!msg) { return; } // timestamp // sys_id // seq // tc1 // ts1 } px4_msgs__msg__Timesync * px4_msgs__msg__Timesync__create() { px4_msgs__msg__Timesync * msg = (px4_msgs__msg__Timesync *)malloc(sizeof(px4_msgs__msg__Timesync)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__Timesync)); bool success = px4_msgs__msg__Timesync__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__Timesync__destroy(px4_msgs__msg__Timesync * msg) { if (msg) { px4_msgs__msg__Timesync__fini(msg); } free(msg); } bool px4_msgs__msg__Timesync__Sequence__init(px4_msgs__msg__Timesync__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__Timesync * data = NULL; if (size) { data = (px4_msgs__msg__Timesync *)calloc(size, sizeof(px4_msgs__msg__Timesync)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__Timesync__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__Timesync__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__Timesync__Sequence__fini(px4_msgs__msg__Timesync__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__Timesync__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__Timesync__Sequence * px4_msgs__msg__Timesync__Sequence__create(size_t size) { px4_msgs__msg__Timesync__Sequence * array = (px4_msgs__msg__Timesync__Sequence *)malloc(sizeof(px4_msgs__msg__Timesync__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__Timesync__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__Timesync__Sequence__destroy(px4_msgs__msg__Timesync__Sequence * array) { if (array) { px4_msgs__msg__Timesync__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/debug_key_value.h // generated from rosidl_generator_c/resource/idl.h.em // with input from px4_msgs:msg/DebugKeyValue.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__DEBUG_KEY_VALUE_H_ #define PX4_MSGS__MSG__DEBUG_KEY_VALUE_H_ #include "px4_msgs/msg/debug_key_value__struct.h" #include "px4_msgs/msg/debug_key_value__functions.h" #include "px4_msgs/msg/debug_key_value__type_support.h" #endif // PX4_MSGS__MSG__DEBUG_KEY_VALUE_H_ <file_sep>/build/px4_msgs/rosidl_generator_c/px4_msgs/msg/actuator_controls5__functions.c // generated from rosidl_generator_c/resource/idl__functions.c.em // with input from px4_msgs:msg/ActuatorControls5.idl // generated code does not contain a copyright notice #include "px4_msgs/msg/actuator_controls5__functions.h" #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include <string.h> bool px4_msgs__msg__ActuatorControls5__init(px4_msgs__msg__ActuatorControls5 * msg) { if (!msg) { return false; } // timestamp // timestamp_sample // control return true; } void px4_msgs__msg__ActuatorControls5__fini(px4_msgs__msg__ActuatorControls5 * msg) { if (!msg) { return; } // timestamp // timestamp_sample // control } px4_msgs__msg__ActuatorControls5 * px4_msgs__msg__ActuatorControls5__create() { px4_msgs__msg__ActuatorControls5 * msg = (px4_msgs__msg__ActuatorControls5 *)malloc(sizeof(px4_msgs__msg__ActuatorControls5)); if (!msg) { return NULL; } memset(msg, 0, sizeof(px4_msgs__msg__ActuatorControls5)); bool success = px4_msgs__msg__ActuatorControls5__init(msg); if (!success) { free(msg); return NULL; } return msg; } void px4_msgs__msg__ActuatorControls5__destroy(px4_msgs__msg__ActuatorControls5 * msg) { if (msg) { px4_msgs__msg__ActuatorControls5__fini(msg); } free(msg); } bool px4_msgs__msg__ActuatorControls5__Sequence__init(px4_msgs__msg__ActuatorControls5__Sequence * array, size_t size) { if (!array) { return false; } px4_msgs__msg__ActuatorControls5 * data = NULL; if (size) { data = (px4_msgs__msg__ActuatorControls5 *)calloc(size, sizeof(px4_msgs__msg__ActuatorControls5)); if (!data) { return false; } // initialize all array elements size_t i; for (i = 0; i < size; ++i) { bool success = px4_msgs__msg__ActuatorControls5__init(&data[i]); if (!success) { break; } } if (i < size) { // if initialization failed finalize the already initialized array elements for (; i > 0; --i) { px4_msgs__msg__ActuatorControls5__fini(&data[i - 1]); } free(data); return false; } } array->data = data; array->size = size; array->capacity = size; return true; } void px4_msgs__msg__ActuatorControls5__Sequence__fini(px4_msgs__msg__ActuatorControls5__Sequence * array) { if (!array) { return; } if (array->data) { // ensure that data and capacity values are consistent assert(array->capacity > 0); // finalize all array elements for (size_t i = 0; i < array->capacity; ++i) { px4_msgs__msg__ActuatorControls5__fini(&array->data[i]); } free(array->data); array->data = NULL; array->size = 0; array->capacity = 0; } else { // ensure that data, size, and capacity values are consistent assert(0 == array->size); assert(0 == array->capacity); } } px4_msgs__msg__ActuatorControls5__Sequence * px4_msgs__msg__ActuatorControls5__Sequence__create(size_t size) { px4_msgs__msg__ActuatorControls5__Sequence * array = (px4_msgs__msg__ActuatorControls5__Sequence *)malloc(sizeof(px4_msgs__msg__ActuatorControls5__Sequence)); if (!array) { return NULL; } bool success = px4_msgs__msg__ActuatorControls5__Sequence__init(array, size); if (!success) { free(array); return NULL; } return array; } void px4_msgs__msg__ActuatorControls5__Sequence__destroy(px4_msgs__msg__ActuatorControls5__Sequence * array) { if (array) { px4_msgs__msg__ActuatorControls5__Sequence__fini(array); } free(array); } <file_sep>/build/px4_msgs/rosidl_typesupport_introspection_c/px4_msgs/msg/sensor_accel_fifo__type_support.c // generated from rosidl_typesupport_introspection_c/resource/idl__type_support.c.em // with input from px4_msgs:msg/SensorAccelFifo.idl // generated code does not contain a copyright notice #include <stddef.h> #include "px4_msgs/msg/sensor_accel_fifo__rosidl_typesupport_introspection_c.h" #include "px4_msgs/msg/rosidl_typesupport_introspection_c__visibility_control.h" #include "rosidl_typesupport_introspection_c/field_types.h" #include "rosidl_typesupport_introspection_c/identifier.h" #include "rosidl_typesupport_introspection_c/message_introspection.h" #include "px4_msgs/msg/sensor_accel_fifo__functions.h" #include "px4_msgs/msg/sensor_accel_fifo__struct.h" #ifdef __cplusplus extern "C" { #endif void SensorAccelFifo__rosidl_typesupport_introspection_c__SensorAccelFifo_init_function( void * message_memory, enum rosidl_runtime_c_message_initialization _init) { // TODO(karsten1987): initializers are not yet implemented for typesupport c // see https://github.com/ros2/ros2/issues/397 (void) _init; px4_msgs__msg__SensorAccelFifo__init(message_memory); } void SensorAccelFifo__rosidl_typesupport_introspection_c__SensorAccelFifo_fini_function(void * message_memory) { px4_msgs__msg__SensorAccelFifo__fini(message_memory); } static rosidl_typesupport_introspection_c__MessageMember SensorAccelFifo__rosidl_typesupport_introspection_c__SensorAccelFifo_message_member_array[9] = { { "timestamp", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorAccelFifo, timestamp), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "timestamp_sample", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT64, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorAccelFifo, timestamp_sample), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "device_id", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT32, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorAccelFifo, device_id), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "dt", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorAccelFifo, dt), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "scale", // name rosidl_typesupport_introspection_c__ROS_TYPE_FLOAT, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorAccelFifo, scale), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "samples", // name rosidl_typesupport_introspection_c__ROS_TYPE_UINT8, // type 0, // upper bound of string NULL, // members of sub message false, // is array 0, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorAccelFifo, samples), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "x", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT16, // type 0, // upper bound of string NULL, // members of sub message true, // is array 32, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorAccelFifo, x), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "y", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT16, // type 0, // upper bound of string NULL, // members of sub message true, // is array 32, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorAccelFifo, y), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer }, { "z", // name rosidl_typesupport_introspection_c__ROS_TYPE_INT16, // type 0, // upper bound of string NULL, // members of sub message true, // is array 32, // array size false, // is upper bound offsetof(px4_msgs__msg__SensorAccelFifo, z), // bytes offset in struct NULL, // default value NULL, // size() function pointer NULL, // get_const(index) function pointer NULL, // get(index) function pointer NULL // resize(index) function pointer } }; static const rosidl_typesupport_introspection_c__MessageMembers SensorAccelFifo__rosidl_typesupport_introspection_c__SensorAccelFifo_message_members = { "px4_msgs__msg", // message namespace "SensorAccelFifo", // message name 9, // number of fields sizeof(px4_msgs__msg__SensorAccelFifo), SensorAccelFifo__rosidl_typesupport_introspection_c__SensorAccelFifo_message_member_array, // message members SensorAccelFifo__rosidl_typesupport_introspection_c__SensorAccelFifo_init_function, // function to initialize message memory (memory has to be allocated) SensorAccelFifo__rosidl_typesupport_introspection_c__SensorAccelFifo_fini_function // function to terminate message instance (will not free memory) }; // this is not const since it must be initialized on first access // since C does not allow non-integral compile-time constants static rosidl_message_type_support_t SensorAccelFifo__rosidl_typesupport_introspection_c__SensorAccelFifo_message_type_support_handle = { 0, &SensorAccelFifo__rosidl_typesupport_introspection_c__SensorAccelFifo_message_members, get_message_typesupport_handle_function, }; ROSIDL_TYPESUPPORT_INTROSPECTION_C_EXPORT_px4_msgs const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_introspection_c, px4_msgs, msg, SensorAccelFifo)() { if (!SensorAccelFifo__rosidl_typesupport_introspection_c__SensorAccelFifo_message_type_support_handle.typesupport_identifier) { SensorAccelFifo__rosidl_typesupport_introspection_c__SensorAccelFifo_message_type_support_handle.typesupport_identifier = rosidl_typesupport_introspection_c__identifier; } return &SensorAccelFifo__rosidl_typesupport_introspection_c__SensorAccelFifo_message_type_support_handle; } #ifdef __cplusplus } #endif <file_sep>/build/px4_msgs/rosidl_generator_cpp/px4_msgs/msg/cellular_status__struct.hpp // generated from rosidl_generator_cpp/resource/idl__struct.hpp.em // with input from px4_msgs:msg/CellularStatus.idl // generated code does not contain a copyright notice #ifndef PX4_MSGS__MSG__CELLULAR_STATUS__STRUCT_HPP_ #define PX4_MSGS__MSG__CELLULAR_STATUS__STRUCT_HPP_ #include <rosidl_generator_cpp/bounded_vector.hpp> #include <rosidl_generator_cpp/message_initialization.hpp> #include <algorithm> #include <array> #include <memory> #include <string> #include <vector> #ifndef _WIN32 # define DEPRECATED__px4_msgs__msg__CellularStatus __attribute__((deprecated)) #else # define DEPRECATED__px4_msgs__msg__CellularStatus __declspec(deprecated) #endif namespace px4_msgs { namespace msg { // message struct template<class ContainerAllocator> struct CellularStatus_ { using Type = CellularStatus_<ContainerAllocator>; explicit CellularStatus_(rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->status = 0; this->failure_reason = 0; this->type = 0; this->quality = 0; this->mcc = 0; this->mnc = 0; this->lac = 0; } } explicit CellularStatus_(const ContainerAllocator & _alloc, rosidl_generator_cpp::MessageInitialization _init = rosidl_generator_cpp::MessageInitialization::ALL) { (void)_alloc; if (rosidl_generator_cpp::MessageInitialization::ALL == _init || rosidl_generator_cpp::MessageInitialization::ZERO == _init) { this->timestamp = 0ull; this->status = 0; this->failure_reason = 0; this->type = 0; this->quality = 0; this->mcc = 0; this->mnc = 0; this->lac = 0; } } // field types and members using _timestamp_type = uint64_t; _timestamp_type timestamp; using _status_type = uint16_t; _status_type status; using _failure_reason_type = uint8_t; _failure_reason_type failure_reason; using _type_type = uint8_t; _type_type type; using _quality_type = uint8_t; _quality_type quality; using _mcc_type = uint16_t; _mcc_type mcc; using _mnc_type = uint16_t; _mnc_type mnc; using _lac_type = uint16_t; _lac_type lac; // setters for named parameter idiom Type & set__timestamp( const uint64_t & _arg) { this->timestamp = _arg; return *this; } Type & set__status( const uint16_t & _arg) { this->status = _arg; return *this; } Type & set__failure_reason( const uint8_t & _arg) { this->failure_reason = _arg; return *this; } Type & set__type( const uint8_t & _arg) { this->type = _arg; return *this; } Type & set__quality( const uint8_t & _arg) { this->quality = _arg; return *this; } Type & set__mcc( const uint16_t & _arg) { this->mcc = _arg; return *this; } Type & set__mnc( const uint16_t & _arg) { this->mnc = _arg; return *this; } Type & set__lac( const uint16_t & _arg) { this->lac = _arg; return *this; } // constant declarations static constexpr uint8_t CELLULAR_STATUS_FLAG_UNKNOWN = 0u; static constexpr uint8_t CELLULAR_STATUS_FLAG_FAILED = 1u; static constexpr uint8_t CELLULAR_STATUS_FLAG_INITIALIZING = 2u; static constexpr uint8_t CELLULAR_STATUS_FLAG_LOCKED = 3u; static constexpr uint8_t CELLULAR_STATUS_FLAG_DISABLED = 4u; static constexpr uint8_t CELLULAR_STATUS_FLAG_DISABLING = 5u; static constexpr uint8_t CELLULAR_STATUS_FLAG_ENABLING = 6u; static constexpr uint8_t CELLULAR_STATUS_FLAG_ENABLED = 7u; static constexpr uint8_t CELLULAR_STATUS_FLAG_SEARCHING = 8u; static constexpr uint8_t CELLULAR_STATUS_FLAG_REGISTERED = 9u; static constexpr uint8_t CELLULAR_STATUS_FLAG_DISCONNECTING = 10u; static constexpr uint8_t CELLULAR_STATUS_FLAG_CONNECTING = 11u; static constexpr uint8_t CELLULAR_STATUS_FLAG_CONNECTED = 12u; static constexpr uint8_t CELLULAR_NETWORK_FAILED_REASON_NONE = 0u; static constexpr uint8_t CELLULAR_NETWORK_FAILED_REASON_UNKNOWN = 1u; static constexpr uint8_t CELLULAR_NETWORK_FAILED_REASON_SIM_MISSING = 2u; static constexpr uint8_t CELLULAR_NETWORK_FAILED_REASON_SIM_ERROR = 3u; // pointer types using RawPtr = px4_msgs::msg::CellularStatus_<ContainerAllocator> *; using ConstRawPtr = const px4_msgs::msg::CellularStatus_<ContainerAllocator> *; using SharedPtr = std::shared_ptr<px4_msgs::msg::CellularStatus_<ContainerAllocator>>; using ConstSharedPtr = std::shared_ptr<px4_msgs::msg::CellularStatus_<ContainerAllocator> const>; template<typename Deleter = std::default_delete< px4_msgs::msg::CellularStatus_<ContainerAllocator>>> using UniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::CellularStatus_<ContainerAllocator>, Deleter>; using UniquePtr = UniquePtrWithDeleter<>; template<typename Deleter = std::default_delete< px4_msgs::msg::CellularStatus_<ContainerAllocator>>> using ConstUniquePtrWithDeleter = std::unique_ptr<px4_msgs::msg::CellularStatus_<ContainerAllocator> const, Deleter>; using ConstUniquePtr = ConstUniquePtrWithDeleter<>; using WeakPtr = std::weak_ptr<px4_msgs::msg::CellularStatus_<ContainerAllocator>>; using ConstWeakPtr = std::weak_ptr<px4_msgs::msg::CellularStatus_<ContainerAllocator> const>; // pointer types similar to ROS 1, use SharedPtr / ConstSharedPtr instead // NOTE: Can't use 'using' here because GNU C++ can't parse attributes properly typedef DEPRECATED__px4_msgs__msg__CellularStatus std::shared_ptr<px4_msgs::msg::CellularStatus_<ContainerAllocator>> Ptr; typedef DEPRECATED__px4_msgs__msg__CellularStatus std::shared_ptr<px4_msgs::msg::CellularStatus_<ContainerAllocator> const> ConstPtr; // comparison operators bool operator==(const CellularStatus_ & other) const { if (this->timestamp != other.timestamp) { return false; } if (this->status != other.status) { return false; } if (this->failure_reason != other.failure_reason) { return false; } if (this->type != other.type) { return false; } if (this->quality != other.quality) { return false; } if (this->mcc != other.mcc) { return false; } if (this->mnc != other.mnc) { return false; } if (this->lac != other.lac) { return false; } return true; } bool operator!=(const CellularStatus_ & other) const { return !this->operator==(other); } }; // struct CellularStatus_ // alias to use template instance with default allocator using CellularStatus = px4_msgs::msg::CellularStatus_<std::allocator<void>>; // constant definitions template<typename ContainerAllocator> constexpr uint8_t CellularStatus_<ContainerAllocator>::CELLULAR_STATUS_FLAG_UNKNOWN; template<typename ContainerAllocator> constexpr uint8_t CellularStatus_<ContainerAllocator>::CELLULAR_STATUS_FLAG_FAILED; template<typename ContainerAllocator> constexpr uint8_t CellularStatus_<ContainerAllocator>::CELLULAR_STATUS_FLAG_INITIALIZING; template<typename ContainerAllocator> constexpr uint8_t CellularStatus_<ContainerAllocator>::CELLULAR_STATUS_FLAG_LOCKED; template<typename ContainerAllocator> constexpr uint8_t CellularStatus_<ContainerAllocator>::CELLULAR_STATUS_FLAG_DISABLED; template<typename ContainerAllocator> constexpr uint8_t CellularStatus_<ContainerAllocator>::CELLULAR_STATUS_FLAG_DISABLING; template<typename ContainerAllocator> constexpr uint8_t CellularStatus_<ContainerAllocator>::CELLULAR_STATUS_FLAG_ENABLING; template<typename ContainerAllocator> constexpr uint8_t CellularStatus_<ContainerAllocator>::CELLULAR_STATUS_FLAG_ENABLED; template<typename ContainerAllocator> constexpr uint8_t CellularStatus_<ContainerAllocator>::CELLULAR_STATUS_FLAG_SEARCHING; template<typename ContainerAllocator> constexpr uint8_t CellularStatus_<ContainerAllocator>::CELLULAR_STATUS_FLAG_REGISTERED; template<typename ContainerAllocator> constexpr uint8_t CellularStatus_<ContainerAllocator>::CELLULAR_STATUS_FLAG_DISCONNECTING; template<typename ContainerAllocator> constexpr uint8_t CellularStatus_<ContainerAllocator>::CELLULAR_STATUS_FLAG_CONNECTING; template<typename ContainerAllocator> constexpr uint8_t CellularStatus_<ContainerAllocator>::CELLULAR_STATUS_FLAG_CONNECTED; template<typename ContainerAllocator> constexpr uint8_t CellularStatus_<ContainerAllocator>::CELLULAR_NETWORK_FAILED_REASON_NONE; template<typename ContainerAllocator> constexpr uint8_t CellularStatus_<ContainerAllocator>::CELLULAR_NETWORK_FAILED_REASON_UNKNOWN; template<typename ContainerAllocator> constexpr uint8_t CellularStatus_<ContainerAllocator>::CELLULAR_NETWORK_FAILED_REASON_SIM_MISSING; template<typename ContainerAllocator> constexpr uint8_t CellularStatus_<ContainerAllocator>::CELLULAR_NETWORK_FAILED_REASON_SIM_ERROR; } // namespace msg } // namespace px4_msgs #endif // PX4_MSGS__MSG__CELLULAR_STATUS__STRUCT_HPP_
fad392b7b1533103a0ddcc18e059fcd2e85c0fda
[ "CMake", "Makefile", "Python", "C", "C++", "Shell" ]
1,418
C
adamdai/px4_ros_com_ros2
bcd7a1bd13c318d69994a64215f256b9ec7ae2bb
bee6ef27559a3a157d10c250a45818a5c75f2eff
refs/heads/master
<file_sep>using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SlotMachine { /* * Set up the game */ class Game { private int credits; // credits the user has to play with private int bet; // user's current bet private int winnings; // user's winnings after the spin private int[] itemWinnings = new int[7]; private Row row; private Boolean playing = false; // check if the game is underway // Create and start the game public Game() { initaliseWinnings(); initaliseSlots(); startGame(); } // Initalise items winnings value private void initaliseWinnings() { itemWinnings[0] = 5; itemWinnings[1] = 10; itemWinnings[2] = 15; itemWinnings[3] = 25; itemWinnings[4] = 50; itemWinnings[5] = 100; itemWinnings[6] = 250; } // Initalise slots private void initaliseSlots() { row = new Row(3); } // Start Game private void startGame() { setCredits(100); setBet(1); setWinnings(0); setPlaying(true); while (isPlaying()) { getUserInput(); checkGameOver(); } // Ask user if they would like to play again Console.WriteLine("Would you like to play again? [y/n]"); if (Console.ReadLine().Equals("y")) { startGame(); } } // User Input Stage private void getUserInput() { askUsersBet(); askUserToSpin(); } // Ask for the user's bet private void askUsersBet() { Console.WriteLine("Credits: " + getCredits() + " Bet: " + getBet() + " Winnings: " + getWinnings()); Console.WriteLine("Would you like to change your bet? [y/n]"); if (Console.ReadLine().Equals("y")) { Console.WriteLine("Please enter how much you would like to bet:"); setBet(int.Parse(Console.ReadLine())); while (getBet() > getCredits()) { Console.WriteLine("You cannot bet more than you have. \n Please enter a smaller bet:"); setBet(int.Parse(Console.ReadLine())); } } } // Ask the user to spin the reel private void askUserToSpin() { Console.WriteLine("Credits: " + getCredits() + " Bet: " + getBet() + " Winnings: " + getWinnings()); Console.WriteLine("Are you ready to spin? [y/n]"); if (Console.ReadLine().Equals("n")) { Console.WriteLine("Are you ready to spin? [y/n]"); string ready = Console.ReadLine(); while (ready.Equals("n")) { Console.WriteLine("Are you ready to spin? [y/n]"); ready = Console.ReadLine(); } } else { if (canUserBet()) { setCredits(getCredits() - getBet()); Console.WriteLine("Credits: " + getCredits() + " Bet: " + getBet() + " Winnings: " + getWinnings()); Console.WriteLine("The reels are spinning..."); row.spinReels(7); Console.WriteLine("Reel 1 Reel 2 Reel 3"); Console.WriteLine(" " + row.getSlots()[0].getItem() + " " + row.getSlots()[1].getItem() + " " + row.getSlots()[2].getItem() + " "); setWinnings(getBet() * row.calculateWinnings(itemWinnings)); Console.WriteLine((getWinnings() > 0 ? "Congratulations you have won: " + getWinnings() : "Sorry, you have not won this time!")); setCredits(getCredits() + getWinnings()); } else { Console.WriteLine("You cannot bet more than you have!"); askUsersBet(); } } } // Ask the user if they would like to continue playing private void askUserToContinue() { Console.WriteLine("Credits: " + getCredits() + " Bet: " + getBet() + " Winnings: " + getWinnings()); Console.WriteLine("Would you like to continue? [y/n]"); if (Console.ReadLine().Equals("n")) { setPlaying(false); } } // Check the user's bet isn't more than what they have private bool canUserBet() { if (getBet() <= getCredits()) { return true; } else { return false; } } // Check game over private void checkGameOver() { if (getCredits() <= 0) { Console.WriteLine("You have run out of credits. Game Over."); setPlaying(false); } } // Getters and Setters public int getCredits() { return this.credits; } public void setCredits(int c) { this.credits = c; } public int getBet() { return this.bet; } public void setBet(int b) { this.bet = b; } public int getWinnings() { return this.winnings; } public void setWinnings(int w) { this.winnings = w; } public Boolean isPlaying() { return this.playing; } public void setPlaying(Boolean p) { this.playing = p; } } } <file_sep>using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SlotMachine { /* * Store a number of slots in a row. */ class Row { Slot[] slots; // Array of slots // Construct the row public Row(int no) { slots = new Slot[no]; for (int i = 0; i < no; i++) { slots[i] = new Slot(); } } // Spin all the reels in the row public void spinReels(int no) { for (int i = 0; i < slots.Length; i++) { slots[i].spinReel(no); } } // Calculate the winnings for the row public int calculateWinnings(int[] itemWinnings) { if (slots[0].getItem() == slots[1].getItem() && slots[0].getItem() == slots[2].getItem()) { return itemWinnings[(slots[0].getItem()-1)]; } else { return 0; } } // Get the Slot objects public Slot[] getSlots() { return this.slots; } } } <file_sep>using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SlotMachine { /* * Create a slot which will hold an item * Allow the item to be set within this code */ class Slot { private int item; // The item to be held by the reel - e.g Cherry private static Random seedSetter = new Random(65642629); private Random rnd = new Random(seedSetter.Next(100000)); // The random function to randomly select a number public Slot() { setItem(0); } public void spinReel(int no) { int num = rnd.Next(no) + 1; setItem(num); } public void setItem(int i) { this.item = i; } public int getItem() { return this.item; } } }
42a49396b5eb26a0a3b9241943c2acce43611f97
[ "C#" ]
3
C#
Coly010/SlotMachineCS
e38b0d9afa47146c9a40fbeba0f962754666b198
a74bd69770f21849e2d73505f61e23c93a8efe11
refs/heads/master
<repo_name>samirm/advent-of-code-2019<file_sep>/01 - rocket-equation/JS/main.js const fs = require("fs"); (async () => { const masses = await readFile('input.txt'); const total = process(masses); console.log(total); })(); function fuelCounterUpper(moduleMass) { let fuelMass = Math.floor(moduleMass / 3); fuelMass = fuelMass - 2; if (fuelMass <= 6) return fuelMass; return fuelMass + fuelCounterUpper(fuelMass); } function validateInput(input) { if (isNaN(input)) { console.log('encountered not a number in file'); exit(); } else { return input; } } async function readFile(path) { return new Promise((resolve, reject) => { return fs.readFile(path, 'utf8', (err, data) => { if (err) reject(err); else { resolve(data.trim().split('\n')); } }); }); } function process(masses) { return masses.map(mass => validateInput(mass)) .map(mass => fuelCounterUpper(mass)) .reduce((a, b) => { return a + b }, 0); } <file_sep>/02 - intcode-computer/main.js var fs = require('fs'); (async () => { let intcodes = await readFile('input.txt'); // console.log(data); console.log(intcodes); if (!validateContents(intcodes)) console.log('contents invalid'); intcodes[1] = 12; intcodes[2] = 2; process(intcodes); console.log(intcodes); console.log('answer: ' + intcodes[0]); })(); function process(intcodes) { for (let i = 0; i <= intcodes.length; i += 4) { console.log(intcodes[i]); switch (intcodes[i]) { case 99: //halt console.log('should return'); return; case 1: //add result = intcodes[intcodes[i + 1]] + intcodes[intcodes[i + 2]]; intcodes[intcodes[i + 3]] = result; break; case 2: //multiply result = intcodes[intcodes[i + 1]] * intcodes[intcodes[i + 2]]; intcodes[intcodes[i + 3]] = result; break; default: console.log('something got fucked yo'); } } } async function readFile(path) { return new Promise((resolve, reject) => { return fs.readFile(path, 'utf8', (err, data) => { if (err) reject(err); else resolve(data.trim().split(',').map(code => code = parseInt(code))); }); }); } function validateContents(intcodes) { intcodes.forEach(element => { result = isNaN(element) ? false : true; if (!result) return false; }); return true; }<file_sep>/01 - rocket-equation/Java/Main.java import java.io.File; import java.io.FileNotFoundException; import java.util.ArrayList; import java.util.List; import java.util.Optional; import java.util.Scanner; public class Main { public static void main(String[] args) { var masses = readFile("input.txt"); var total = process(masses); total.ifPresentOrElse(System.out::println, () -> System.out.println("error")); } static Optional<Integer> process(final List<Integer> masses) { return masses.stream().map(Main::calculateFuelCost).reduce(Integer::sum); } static int calculateFuelCost(final int moduleMass) { var fuelMass = (int)(Math.floor(moduleMass/3) - 2); if (fuelMass <= 6) return fuelMass; return fuelMass + calculateFuelCost(fuelMass); } static List<Integer> readFile(final String path) { File file = new File(path); var list = new ArrayList<Integer>(); try { Scanner scan = new Scanner(file); while (scan.hasNextInt()) { list.add(scan.nextInt()); } } catch (FileNotFoundException e) { e.printStackTrace(); } return list; } }
911476c7a551ff2451116473c3a17c4ec38591cf
[ "JavaScript", "Java" ]
3
JavaScript
samirm/advent-of-code-2019
a9e071de62ab41a3b3a3a5008c9be2a883c08bc3
3a30b1b13e6524a6f47c453ac8e392debeda5a48
refs/heads/main
<file_sep>num1 = ARGV[0].to_i num2 = ARGV[1].to_i num3 = ARGV[2].to_i num4 = ARGV[3].to_i max3 = [num1, num2, num3].max max4 = [num1, num2, num3, num4].max if max4 == max4 puts max4 else puts max3 end<file_sep>#conjunto de informacion que se pueden acceder a tra vez de metodos #en Ruby casi todo es un objeto puts 1.methods puts 1.odd?<file_sep>puts 'dame un numero' num_one = gets.to_i puts 'dame otro numero' num_two = gets.to_i puts "La suma de los dos numeros es #{num_one + num_two}" puts "\n".lenght<file_sep>a = 'Esto es un bonito string ' b = 'Este es otro bonito string ' #En Ruby casi todo es un objeto puts a.length puts b.length #string de multiple lineas c = "Esto es\nun string\nde multiples lineas" #Saltos de linea solo funciona con las comillas dobles puts c age = 29 puts "mi edad es #{age}" <file_sep>for i in 1..5 puts i sleep 0.5 end puts 'BOOOOOM'<file_sep>puts 'Cual es la tempuratura en grados Fahrenheit?' f = gets.to_i c = ((f+40)/1.8)-40 puts "La temperatura es #{c.ceil(2)}"<file_sep>my_array = []#iniciamos el array con un 'saco vacio' my_array.push(4)#el .push el añade al array un valor en la posicion 0 print my_array puts #solo un salto de linea my_array.push(3)#añadir al array otro valor and la posicion 1 (segunda) print my_array puts puts my_array[1]#le estoy diciendo que imprima el valor que esta en la segunda posicion del array (Arrays empiezan en 0) my_array.push('Hola')#añadimos un string my_array.push(true) #podemos guardar datos boolean, por eso no lleva '' estamos guardando el dato true, asi no mas, pero puede ser otras cosas print my_array puts print my_array puts puts my_array[3]<file_sep>#Ruby puede tener numeros enteros puts 'enteros' a = 37 a + 1 puts a a = a + 1 puts a #ruby tambien puede tener decimales b = 2.5 c = 1 puts 'decimales' puts b + c #el resultado de un enter y un decimal es decimal<file_sep>#scope exterior/general #horoscope = 'capricornio' #esta variable esta fuera del metodo def por lo tanto no puede accederlo, si esta dentro del metodo si def sayhello(name, last_name='Rojas')#al hacer parametro=______ es un parametro por defecto, si no se especifica luego linea 6, me lo auto completa horoscope = 'capricornio' "Hola #{name.capitalize} #{last_name.capitalize}. Pura Vida! #{horoscope}" #notar que las interpolaciones estan separadas!! end #este scope se llama main puts sayhello('Justin', 'Bieber') puts sayhello 'justin' #los parentesis son opcionales, pero si se usasn deben ir pegados al metodo<file_sep>5.times do |i| puts "Esto se imprime #{i} veces" end<file_sep> # esta es una forma declarativa, el array esta haciendo todo # my_array = [10, 10, 9, 7, 10, 8, 8, 10, 7] # sum_grades = my_array.sum #le decimos que sume todo lo que esta dentro del array # average = sum_grades.to_f / my_array.length #en este caso el .length calcula el numero de espacios en el array # puts average #esta es la forma imperativa #i es una convencion de ruby my_array = [10, 10, 9, 7, 10, 8, 8, 10, 7] sum_grades = 0 for i in 0..(my_array.length - 1) do #el -1 nos ayuda a dar la ultima posicion del array, si utilizaramos un array.length nos diria que hay 9 elementos pero el ultimo elemento esta en la posicion 8, por eso escribimos length - 1 sum_grades += my_array [i] puts i puts sum_grades end puts sum_grades #BONUS sample options = ['piedra', 'papel', 'tijera'] cpu = options.sample puts cpu<file_sep> g = ARGV[0].to_f r = ARGV[1].to_f * 1000 ve = Math.sqrt(2 * g * r) puts "La velocidad de escape es #{ve.ceil(3)} metros por segundo" <file_sep>valor = ARGV[0].to_i usuarios = ARGV[1].to_i gastos = ARGV[2].to_i utilidades = valor * usuarios - gastos if utilidades > 0 puts "Las valor de las utilidades es #{utilidades * (1 - 0.35)}" else puts "Estas en deuda por #{utilidades}" end<file_sep>player = ARGV[0].downcase cpu = rand(3) options = ['piedra', 'papel', 'tijera'] if player != 'piedra' and player != 'papel' and player != 'tijera' puts 'Argumento Invalido: Debe ser piedra, papel, o tijera' exit end puts "El computador juega #{options[cpu]}" if ((cpu == 0 and player == 'papel') or (cpu == 1 and player == 'tijera') or (cpu == 2 and player == 'piedra')) puts 'Ganaste' elsif ((cpu == 0 and player == 'tijera') or (cpu == 1 and player == 'piedra') or (cpu == 2 and player == 'papel')) puts 'Perdiste' else puts 'Empataste' end <file_sep>puts 'soy un texto en la terminal' print 'hola' print 'soy un texto en print' #print no crea un salto de linea, puts si<file_sep>num1 = ARGV[0].to_i num2 = ARGV[1].to_i num3 = ARGV[2].to_i max = [num1, num2, num3].max puts max<file_sep>puts 'Cual es tu nombre?' name = gets.chomp #gets añade un salto de linea, el gets.chomp le quita el salto de linea puts "hola #{name}, como estas?"<file_sep>valor = ARGV[0].to_i total_usuarios = ARGV[1].to_i usuarios_premium = ARGV[2].to_i usuarios_free = ARGV[3].to_i gastos = ARGV[4].to_i usuarios = (total_usuarios - usuarios_free - usuarios_premium) utilidades = (valor * usuarios + usuarios_premium * 2 * valor)- gastos puts "El precio de venta fue: #{valor}" puts "El total de usuarios fue: #{total_usuarios}" puts "El total de usuarios premium fue: #{usuarios_premium}" puts "El total de usuarios gratuitos fue: #{usuarios_free}" puts "La cantidad de gastos fue: #{gastos}" puts "Las valor de las utilidades antes de impuesto fue: #{utilidades}" if utilidades.positive? utilidades_despues_de_impuesto = utilidades * (1 - 0.35) puts "El valor de las utilidades despues del impuesto fue #{utilidades_despues_de_impuesto}" elsif puts "Estas en deuda #{utilidades}" end<file_sep>puts 'Primer cateto' cat1 = gets.to_i puts 'Segundo cateto' cat2 = gets.to_i hip = Math.sqrt(cat1**2 + cat2**2) puts "La hipotenusa es #{hip.ceil(2)}"<file_sep>user_option = '' while user_option.downcase != 'salir' puts 'Elija una opción' puts '1 Horoscopo' puts '2 Loteria' puts '3 Ruleta Rusa' puts 'Salir para terminar' user_option = gets.chomp if user_option == '1' puts 'Haga esa llamada que tanto quiere hacer' elsif user_option == '2' puts 'Compra un boleto de loteria' elsif user_option == '3' puts 'Hoy es tu dia de suerte' elsif user_option.downcase == 'salir' puts 'Hasta la próxima' else puts "Elige una opción válida" end puts '------------------------------------' end <file_sep>#Primer programa en Ruby puts 2 + 2<file_sep>#permite reutilizar codigo #panda es solo un numbre que nosotras asignamos #thing es el nombre del parametro que nosotros asignamos, puede ser cualquier termino def panda(bear) bear + bear #aqui tiene que ser el +, antes utilizamos 2 * bear y no funciono. Me escribe el objeto dos veces end test_variant = panda(4) puts puts test_variant test_variant = panda([2, 4, 6]) puts puts test_variant test_variant = panda('hola') puts puts test_variant<file_sep>money = rand(1000) =begin if money > 500 puts 'Tengo algo de dinero' else puts 'Me queda poco dinero' end =end #esto es refactorizar, del if se convirtio en esta linea (ternario=if-? and else-:) money > 500 ? puts('Tengo algo de dinero') : puts('Me queda poco dinero')<file_sep>#Las constantes se definen con letras mayusculas, es mejor escribir constantes con todas las letras MAYUSCULAS TAX_RATE = 0.23 #Reasignar una constante genera una advertencia por el interprete TAX_RATE = 0.22
465836283b242455f4ed56a9da423f041d522174
[ "Ruby" ]
24
Ruby
rchavesc/ruby_introduction
c0abfc2aba918d9806408ee3b367db6a2902c6e5
40074646af3448e19e8ec77eca0745577223b996
refs/heads/master
<file_sep>import React, { Component } from 'react'; import _ from 'lodash'; import Table from '../Components/Table'; import './Favourites.css'; export default class Favourites extends Component { getFavouritesTable() { const { favourites, removeFavourite } = this.props; if (!favourites.size) return null; let columns = [ { name: 'Name' }, { name: 'Language' }, { name: 'Latest Tag' }, { name: '' } ]; let rows = []; favourites.forEach(repo => { rows.push( [ (<a href={repo.url} target="_blank"><div>{`${repo.owner.login}/${repo.name}`}</div></a>), (<div>{_.get(repo, ['primaryLanguage', 'name'], '-')}</div>), (<div>{repo.tag}</div>), (<div className="action-text" onClick={() => { removeFavourite(repo) }}>Remove</div>) ] ) }); return ( <Table columns={columns} rows={rows} /> ) } render() { return ( <div className="favourites-container"> {this.getFavouritesTable()} </div> ) } } <file_sep># github-favs ![](screenshots/favourites.png) <file_sep>import React, { Component } from 'react'; import axios from 'axios'; import _ from 'lodash'; import Table from '../Components/Table'; import './Search.css'; export default class Search extends Component { state = {} executeQuery = async () => { const { searchTerm } = this.state; if (!searchTerm) return; let { repoAuthor } = this.parseInput(searchTerm); /** * Query for organization and user; prioritize organization */ let data = { query: `query { organization(login: ${repoAuthor}) { repositories(first: 10){ edges{ node{ id name owner{ login } url primaryLanguage{ name } } } } } user(login: ${repoAuthor}) { repositories(first: 10){ edges{ node{ id name owner{ login } url primaryLanguage{ name } } } } } }` }; let response = await axios({ method: 'POST', url: 'https://api.github.com/graphql', headers: { 'Authorization': `bearer <KEY>` }, data: JSON.stringify(data) }); let responseData = response.data.data; let results = []; if (responseData && responseData.organization) { results = _.get(responseData, ['organization', 'repositories', 'edges']); } else if (responseData && responseData.user) { results = _.get(responseData, ['user', 'repositories', 'edges']); } let nodePromises = results.map(repo => { return new Promise(async (resolve, reject) => { var latestTag = '-'; /** * GraphQL's RepositoryInfo object does not seem to support tags, so we'll use REST */ try { let tagResults = await axios.get(`https://api.github.com/repos/${repoAuthor}/${repo.node.name}/tags`, { headers: { 'Authorization': `bearer <KEY>55cb9bef3b2bf740573a` } }); latestTag = _.get(_.first(tagResults.data), 'name', '-'); } catch (err) { console.error(err) } resolve({ ...repo.node, tag: latestTag }); }); }); let nodes = await Promise.all(nodePromises); this.setState({ results: nodes }); } /** * Separate input by / characters; allows user to type, ie: * 'Shopify/vision' and still get results for 'Shopify' */ parseInput(text) { var split = text.split(/\//g); if (!(split instanceof Array)) split = [split]; return { repoAuthor: split[0], repoName: split[1] } } onChangeInput = (event) => { let value = event.target.value; this.setState({ searchTerm: value }); if (!value) this.setState({ results: [] }); } /** * Trigger api call on enter keypress */ handleKeypress = (event) => { if (event.key === 'Enter') { this.executeQuery(); } } getResultsJSX = () => { const { favourites, addFavourite } = this.props; const { results } = this.state; if (!results || !results.length) return null; let columns = [ { name: 'Name' }, { name: 'Language' }, { name: 'Latest Tag' }, { name: '' } ]; let rows = results.map(result => { let actionJSX; if (favourites.has(result.id)) { actionJSX = ( <div className="action-text-selected"> Added </div> ); } else { actionJSX = ( <div className="action-text" onClick={() => { addFavourite(result) }} > Add </div> ); } return ( [ (<a href={result.url} target="_blank"><div>{`${result.owner.login}/${result.name}`}</div></a>), (<div>{_.get(result, ['primaryLanguage', 'name'], '-')}</div>), (<div>{result.tag}</div>), actionJSX ] ) }); return ( <Table columns={columns} rows={rows} /> ) } render() { return ( <div className="layout"> <div className="search-interface"> <input className="input" id="input" placeholder="Enter an organization or user here to browse repos" onChange={this.onChangeInput} onKeyPress={this.handleKeypress} /> <button className="button" id="search-button" onClick={this.executeQuery} > Search </button> </div> <div className="results-container"> {this.getResultsJSX()} </div> </div> ) } }<file_sep>import React, { Component } from 'react'; import Cookies from 'js-cookie'; import SearchView from './Views/Search'; import FavouritesView from './Views/Favourites'; import './App.css'; class App extends Component { state = { favourites: this.loadFavourites() } /** * Load in favourites saved in browser cookie */ loadFavourites() { let saved = Cookies.getJSON('favourites'); // convert parsed cookie to map if (saved) saved = new Map(saved); else saved = new Map(); return saved; } addFavourite = recordToAdd => { let { favourites } = this.state; if (favourites.has(recordToAdd.id)) return; let updatedFavs = favourites.set(recordToAdd.id, recordToAdd); this.setState({ favourites: updatedFavs }); Cookies.set('favourites', JSON.stringify([...updatedFavs])); } removeFavourite = recordToRemove => { let { favourites } = this.state; favourites.delete(recordToRemove.id); this.setState({ favourites }); Cookies.set('favourites', JSON.stringify([...favourites])); } render() { return ( <div className="App"> <header className="App-header"> <h1>My Github Favourites</h1> </header> <div className="App-body"> <div className="Search-container"> <SearchView favourites={this.state.favourites} addFavourite={this.addFavourite} /> </div> <div className="Favourites-container"> <FavouritesView favourites={this.state.favourites} removeFavourite={this.removeFavourite} /> </div> </div> </div> ); } } export default App; <file_sep>import React from 'react'; import './Table.css'; export default class Table extends React.Component { render() { let { columns, rows } = this.props; return ( <table className="table"> <tbody> <tr className="header-row"> {columns.map((col, index) => { return ( <th {...(col.width ? { width: col.width } : {} )} key={`col-${index}`} className="header-cell"> {col.name} </th> ) })} </tr> { rows.map((row, rowIndex) => { return( <tr key={`row-${rowIndex}`}> { row.map((cell, cellIndex) => { return ( <td className="content-cell" key={`row-${rowIndex}-${cellIndex}`}> {cell} </td> ) }) } </tr> ) }) } </tbody> </table> ) } }
cb6ec76234e6435776f3710947bb83fae16a07f0
[ "JavaScript", "Markdown" ]
5
JavaScript
neilbrub/github-favs
f8d7b6ebc91735cf9688578daf0a3cca90ca1a70
bd19a696d4beebb17a36f51b531c2cec9321b1cd
refs/heads/master
<file_sep>package com.yalantis.phoenix; import android.content.Context; import android.widget.ImageView; import com.yalantis.phoenix.refresh_view.SuperRefreshView; /** * Pull to refresh's data * * @author chenyongkang * @Date 2017/5/27 15:18 */ class BasePullToRefreshData { /** * Wrapper animation drawable or wrapper a common drawable */ ImageView mContainerView; SuperRefreshView mRefreshViewAnimate; /** * record the position where the animation start */ int mFrom; /** * record the percent which is current drag */ float mFromDragPercent; /** * Whether is notify the {@link PullToRefreshView.OnRefreshListener} to refreshing */ boolean mNotify; /** * set current refresh view is enable to refresh */ boolean mEnableToRefresh; /** * Whether the view is refreshing * true is refreshing * false is not refreshing */ boolean mIsRefreshing; PullToRefreshView.OnRefreshListener mOnRefreshListener; public BasePullToRefreshData(Context mContext) { this.mContainerView = new ImageView(mContext); } public ImageView getContainerView() { return mContainerView; } public boolean isRefreshing() { return mIsRefreshing; } public void setIsRefreshing(boolean isRrefreshing) { this.mIsRefreshing = isRrefreshing; } public void setOnRefreshListener(PullToRefreshView.OnRefreshListener onRefreshListener) { this.mOnRefreshListener = onRefreshListener; } } <file_sep>package com.yalantis.phoenix.refresh_view; import android.content.Context; import android.graphics.drawable.AnimationDrawable; import android.widget.ImageView; /** * more refreshing view * * @author chenyongkang * @Date 2017/6/1 14:19 */ public class MoreRefreshView extends BaseAnimationRefreshView { public MoreRefreshView(Context context, ImageView containerView,AnimationDrawable drawable) { super(context,containerView,drawable); } }
94d18d48e473a25cf5e141fb5b7ad9cd0414b17e
[ "Java" ]
2
Java
gregmcox/Phoenix
699afd5c012e4c391cf1e1cd7d907038369ce757
ed238fe64f70248770c8df0fe6bdad7068a8c2e9
refs/heads/master
<file_sep>#!/bin/bash set -e source common/variables source common/functions waitInterval="5s" ################################################################################ ########## PREPARE WORKSPACE FOR TEST CASE ##################################### #echo "Cleaning output directory" rm -Rf $OUT_DIR testName=$1 sourceDockerImage=$2 targetDockerImage=$3 inputDirectory="input/test/$4" outputDirectory="$OUT_DIR/$testName/" mkdir -p $outputDirectory hostDataPath=$(getAbsolutePath $outputDirectory) cp -R $inputDirectory/* $outputDirectory containerDataPath="/home/besu" expectedResults=$outputDirectory/expected-results docker pull $sourceDockerImage &> /dev/null docker pull $targetDockerImage &> /dev/null ################################################################################ ################################################################################ ########## RUN IMPORT COMMAND ################################################## runImportCommand $testName $sourceDockerImage $hostDataPath $containerDataPath &> /dev/null sleep $waitInterval #docker logs $testName shutdownDocker $testName &> /dev/null ################################################################################ ################################################################################ ########## RUN BESU WITH JSON RPC ############################################## runBesu $testName $targetDockerImage $hostDataPath $containerDataPath &> /dev/null sleep $waitInterval ################################################################################ expectedBlockNumber="$(getExpectedBlockNumber $expectedResults)" echo "[$testName] expected blockNumber: $expectedBlockNumber" actualBlockNumber="$(eth_blockNumber)" echo "[$testName] actual blockNumber: $actualBlockNumber" accountAddress="$(getExpectedAddress $expectedResults)" expectedBalance="$(getExpectedBalance $expectedResults)" echo "[$testName] expected balance: $expectedBalance" actualBalance="$(eth_getBalance $accountAddress)" echo "[$testName] actual balance: $actualBalance" shutdownDocker $testName &> /dev/null <file_sep>FROM hyperledger/besu:latest COPY data.zip /home/besu/ RUN ls -ali /home/besu RUN apt-get install -y unzip RUN unzip -uo /home/besu/data.zip -d /home/besu <file_sep>#!/bin/bash set -e DIR="$PWD" # Input file locations INPUT_DIR="$DIR/input" GENESIS="$INPUT_DIR/genesis.json" # Output file locations OUT_DIR="$DIR/out" # Script locations SCRIPTS_DIR="$DIR/scripts" JSON_RPC_ENDPOINT="http://localhost:8545" <file_sep>#!/bin/bash set -e source common/variables source common/functions targetDockerImage="hyperledger/besu:1.4.1-SNAPSHOT" sh scripts/run-migration-test-case Before_Versioning_Was_Enabled docker.io/pegasyseng/pantheon:1.2.0 $targetDockerImage version0 sleep 5s sh scripts/run-migration-test-case After_Versioning_Was_Enabled docker.io/pegasyseng/pantheon:1.2.1 $targetDockerImage version1 <file_sep># About This repository contains utilities for testing Besu database migration scenarios. # Overview ## Setup These scripts assume some dependencies are installed locally: * Docker * JQ * On mac, jq can be installed via homebrew * See: [jq docs](https://stedolan.github.io/jq/download/) ## Basic workflow Edit files in the `input` folder to specify desired chain data. Scripts for running test cases are in `scripts`. From the root directory of this repo, execute the desired test suite file: ``` sh scripts/run-migration-test-suite ``` Sample output: ``` [Before_Versioning_Was_Enabled] expected blockNumber: 0xA [Before_Versioning_Was_Enabled] actual blockNumber: 0xa [Before_Versioning_Was_Enabled] expected balance: 0x2b5e3af16b1880000 [Before_Versioning_Was_Enabled] actual balance: 0x2b5e3af16b1880000 [After_Versioning_Was_Enabled] expected blockNumber: 0xA [After_Versioning_Was_Enabled] actual blockNumber: 0x9 [After_Versioning_Was_Enabled] expected balance: 0x2b5e3af16b1880000 [After_Versioning_Was_Enabled] actual balance: 0x270801d946c940000 ``` <file_sep>#!/bin/bash set -e run() { CMD=$1 echo $CMD eval $CMD echo "\n" } runSilently() { CMD=$1 echo $CMD (eval $CMD &) &> /dev/null echo "\n" } getAbsolutePath() { # $1 : relative filename echo "$(cd "$(dirname "$1")" && pwd)/$(basename "$1")" } shutdownDocker() { docker stop $1 &> /dev/null docker rm $1 &> /dev/null } runImportCommand() { testName=$1 #echo "[$testName] Running import command" dockerImage=$2 hostDataPath=$3 containerDataPath=$4 CMD="docker run --name $testName -d --mount type=bind,source=$hostDataPath,target=$containerDataPath $dockerImage --data-path=$containerDataPath --genesis-file=$containerDataPath/genesis.json blocks import --from=$containerDataPath/ropsten-10-blocks.bin" #echo $CMD eval $CMD } runBesu() { testName=$1 #echo "[$testName] Running besu" dockerImage=$2 hostDataPath=$3 containerDataPath=$4 CMD="docker run -p 8545:8545 --name $testName -d --mount type=bind,source=$hostDataPath,target=$containerDataPath $dockerImage --data-path=$containerDataPath --genesis-file=$containerDataPath/genesis.json --rpc-http-enabled --rpc-http-apis=ETH,NET,WEB3,DEBUG,ADMIN" #echo $CMD eval $CMD } eth_blockNumber() { out=`curl -H 'Content-Type: application/json' --fail -s --data '{"id":2,"jsonrpc":"2.0","method":"eth_blockNumber","params":[]}' $JSON_RPC_ENDPOINT | jq -r '.result'` echo $out } eth_getBalance() { accountAddress=$1 PAYLOAD="'{\"jsonrpc\":\"2.0\",\"method\":\"eth_getBalance\",\"params\":[\"$accountAddress\", \"latest\"],\"id\":1}'" CMD="curl -H 'Content-Type: application/json' --fail -s --data $PAYLOAD $JSON_RPC_ENDPOINT | jq -r '.result'" out="$( eval $CMD)" echo $out } getExpectedBlockNumber(){ file=$1 out="$(cat $file | awk '{print $1}')" echo $out } getExpectedAddress(){ file=$1 out="$(cat $file | awk '{print $2}')" echo $out } getExpectedBalance(){ file=$1 out="$(cat $file | awk '{print $3}')" echo $out } toHex() { DECIMAL=$1 HEX="$(printf '0x%X\n' $DECIMAL)" echo $HEX } toDecimal() { HEX=$1 DECIMAL=$((HEX)) echo $DECIMAL } runBesuWithExistingDB() { dataPath=$1 CMD="$ENV_BESU_PATH --rpc-http-port=8545 --p2p-enabled=false --data-path=$dataPath --genesis-file=$dataPath/genesis.json --rpc-http-enabled --rpc-http-apis=ETH,NET,WEB3,DEBUG,ADMIN" eval $CMD }
ed3d54ab243d0cba26c87215f6e18717640f0774
[ "Markdown", "Dockerfile", "Shell" ]
6
Shell
isabella232/besu-db-migration-test
805be0c7cbc4e4ec2954bbebcc3627d410990f7b
b40513dda244e9ad0237f496c7c4bd8627f1cb5e
refs/heads/master
<file_sep>import { Component } from '@angular/core'; import { HttpClient } from '@angular/common/http'; import { differenceInDays } from 'date-fns' interface HolidayResponse { mainText: string titleText: string redirectionUrl?: string uuid?: string updateDate?: string } interface Holiday { mainText: string titleText: string } interface UpcomingHoliday { date: string day: string name: string } @Component({ selector: 'app-home', templateUrl: 'home.page.html', styleUrls: ['home.page.scss'], }) export class HomePage { holiday: Holiday = { mainText: '', titleText: 'Loading...', } upcomingHoliday: UpcomingHoliday = { date: '', day: '', name: '' } holidays: UpcomingHoliday[] = [] differenceInDay: number = -1 constructor(public http: HttpClient) {} ionViewWillEnter() { this.getNextHoliday() } doRefresh(event) { this.getNextHoliday() event.target.complete() } getNextHoliday() { this.http.get('https://g0yjev205h.execute-api.us-east-1.amazonaws.com/production/holiday/jp/upcoming') .subscribe((data: HolidayResponse[]) => { if (data.length < 1) { this.holiday = { titleText: '', mainText: '直近での祝祭日予定が見つかりませんでした' } return } this.holiday = data[0] }) this.http.get('https://g0yjev205h.execute-api.us-east-1.amazonaws.com/production/holiday/jp/all') .subscribe((data: UpcomingHoliday[]) => { if (data.length < 1) return this.holidays = data this.upcomingHoliday = data[0] this.differenceInDay = differenceInDays(new Date(this.upcomingHoliday.date), new Date()) }) } }
67e59c5eee80bc991227105cb1ff204429575d94
[ "TypeScript" ]
1
TypeScript
hideokamoto/jp-holiday-calendar
4d611451eca52a3c0a222f9e32b376f4f93b470b
517b1d1bac139ba35abc357a310152934f0b3daf
refs/heads/master
<file_sep>import { Action } from '@ngrx/store'; import { Movie } from '../shared/models'; export enum ActionTypes { MovieSearch = '[Movie Search Page] Search', MovieSearchSuccess = '[Movie Search/API] Search Success', MovieSearchFailure = '[Movie Search/API] Search Failure', } export class MovieSearch implements Action { readonly type = ActionTypes.MovieSearch; constructor(public searchTerm: string) {} } export class MovieSearchSuccess implements Action { readonly type = ActionTypes.MovieSearchSuccess; constructor(public movies: Movie[]) {} } export class MovieSearchFailure implements Action { readonly type = ActionTypes.MovieSearchFailure; constructor(public error: string) {} } export type Union = MovieSearch | MovieSearchSuccess | MovieSearchFailure;<file_sep>import { BrowserModule } from '@angular/platform-browser'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; import { StoreModule } from '@ngrx/store'; import { reducers, metaReducers } from './shared/state'; import { EffectsModule } from '@ngrx/effects'; import { AppEffects } from './app.effects'; import { StoreDevtoolsModule } from '@ngrx/store-devtools'; import { environment } from '../environments/environment'; import { MatCardModule, MatFormFieldModule, MatInputModule, MatSidenavModule, MatToolbarModule, MatButtonModule } from '@angular/material'; import { HttpClientModule } from '@angular/common/http'; import { SearchMoviesPageComponent } from './components/search-movies-page/search-movies-page.component'; import { SearchMoviesBoxComponent } from './components/search-movies-box/search-movies-box.component'; import { MoviesListComponent } from './components/movies-list/movies-list.component'; import { MoviesListItemComponent } from './components/movies-list-item/movies-list-item.component'; @NgModule({ declarations: [ AppComponent, SearchMoviesPageComponent, SearchMoviesBoxComponent, MoviesListComponent, MoviesListItemComponent ], imports: [ BrowserModule, BrowserAnimationsModule, HttpClientModule, StoreModule.forRoot(reducers, { metaReducers }), EffectsModule.forRoot([AppEffects]), StoreDevtoolsModule.instrument({ maxAge: 25, logOnly: environment.production }), MatButtonModule, MatCardModule, MatFormFieldModule, MatInputModule, MatSidenavModule, MatToolbarModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { } <file_sep>import { Injectable } from '@angular/core'; import { HttpClient } from '@angular/common/http'; import { environment } from '../../environments/environment'; import { Movie } from '../shared/models'; import { map } from 'rxjs/operators'; import { Observable } from 'rxjs'; @Injectable({ providedIn: 'root' }) export class MoviesService { constructor(private http: HttpClient) { } findMovies(searchTerm: string): Observable<Movie[]> { const API_PATH = `https://api.themoviedb.org/3/search/person?api_key=${environment.apiKey}&language=en-US&query=${searchTerm}&page=1&include_adult=false`; return this.http.get<{ results: { known_for: any[] } }>(API_PATH) .pipe(map(data => data.results[0].known_for)); } } <file_sep># NgRx @ AngularMix 2018 # Slides [Demystifying NgRx](https://brandonroberts.github.io/angular-mix-2018/demystifying-ngrx/) # Examples [Demystifying NgRx](https://github.com/brandonroberts/angular-mix-2018/tree/master/movie-search-app)<file_sep>import { Component, Output, EventEmitter } from '@angular/core'; @Component({ selector: 'search-movies-box', template: ` <mat-card> <mat-card-title>Search Movies By Director</mat-card-title> <mat-card-content> <mat-form-field> <input matInput #input placeholder="Search for a movie"> </mat-form-field> </mat-card-content> <mat-card-footer> <button mat-button color="primary" (click)="onSearch(input.value)">Search</button> </mat-card-footer> </mat-card> `, styles: [ ` mat-card-title, mat-card-content, mat-card-footer { display: flex; justify-content: center; } mat-card-footer { color: #ff0000; padding: 5px 0; } .mat-spinner { position: relative; top: 10px; left: 10px; visibility: hidden; } .mat-spinner.show { visibility: visible; } `, ] }) export class SearchMoviesBoxComponent { @Output() search = new EventEmitter<string>(); onSearch(searchTerm: string) { this.search.emit(searchTerm); } } <file_sep>import { Component, Input, Output, EventEmitter } from '@angular/core'; import { Movie } from '../../shared/models'; @Component({ selector: 'movies-list', template: ` <movies-list-item *ngFor="let movie of movies" [movie]="movie" (favorite)="onFavorite($event)"> </movies-list-item> `, styles: [ ` :host { display: flex; flex-wrap: wrap; justify-content: center; } `, ] }) export class MoviesListComponent { @Input() movies: Movie[] = []; @Output() favoriteMovie = new EventEmitter(); onFavorite($event) { this.favoriteMovie.emit($event); } } <file_sep>import { Injectable } from '@angular/core'; import { Actions, Effect, ofType } from '@ngrx/effects'; import { of } from 'rxjs'; import { map, exhaustMap, catchError } from 'rxjs/operators'; import { MoviesService } from './services/movies.service'; import * as Movie from './actions/movie.actions'; @Injectable() export class AppEffects { @Effect() searchMovies$ = this.actions$.pipe( ofType<Movie.MovieSearch>(Movie.ActionTypes.MovieSearch), map(action => action.searchTerm), exhaustMap(searchTerm => this.moviesService.findMovies(searchTerm) .pipe( map(movies => new Movie.MovieSearchSuccess(movies)), catchError((error: string) => of(new Movie.MovieSearchFailure(error))) ) )); constructor(private actions$: Actions, private moviesService: MoviesService) {} } <file_sep>import { ActionReducer, ActionReducerMap, createFeatureSelector, createSelector, MetaReducer } from '@ngrx/store'; import { environment } from '../../../environments/environment'; import * as fromMovies from './movies.reducer'; export interface State { movies: fromMovies.State; } export const reducers: ActionReducerMap<State> = { movies: fromMovies.reducer, }; export const metaReducers: MetaReducer<State>[] = !environment.production ? [] : []; export const selectMovies = (state: State) => state.movies; <file_sep>import { Component, Input, Output, EventEmitter } from '@angular/core'; import { Movie } from '../../shared/models'; @Component({ selector: 'movies-list-item', template: ` <mat-card> <mat-card-title-group> <mat-card-title>{{ movie.title }}</mat-card-title> </mat-card-title-group> <mat-card-content> {{movie.overview}} </mat-card-content> <mat-card-footer> <button mat-button color="primary" (click)="favorite.emit(movie)">Favorite</button> </mat-card-footer> </mat-card> `, styles: [ ` :host { display: flex; } :host a { display: flex; } mat-card { width: 400px; margin: 15px; display: flex; flex-flow: column; justify-content: space-between; } @media only screen and (max-width: 768px) { mat-card { margin: 15px 0 !important; } } mat-card:hover { box-shadow: 3px 3px 16px -2px rgba(0, 0, 0, 0.5); } mat-card-title { margin-right: 10px; } mat-card-title-group { margin: 0; } mat-card-content { margin-top: 15px; margin: 15px 0 0; } mat-card-footer { padding: 0 25px 25px; display: flex; justify-content: flex-end; } `, ] }) export class MoviesListItemComponent { @Input() movie: Movie; @Output() favorite = new EventEmitter<Movie>(); } <file_sep>import { Movie } from '../models'; import { MovieSearchSuccess, ActionTypes } from '../../actions/movie.actions'; export type State = Movie[]; export function reducer(state: State = [], action) { switch (action.type) { case ActionTypes.MovieSearchSuccess: { debugger; return action.movies; } default: { return state; } } } <file_sep>import { Component, OnInit } from '@angular/core'; import { Store, select } from '@ngrx/store'; import { MovieSearch } from '../../actions/movie.actions'; import * as fromRoot from '../../shared/state'; import { Movie } from '../../shared/models'; @Component({ selector: 'search-movies-page', template: ` <search-movies-box (search)="onSearch($event)"> </search-movies-box> <movies-list [movies]="movies$ | async" (favoriteMovie)="onFavoriteMovie($event)"> </movies-list> ` }) export class SearchMoviesPageComponent { movies$ = this.store.pipe(select(fromRoot.selectMovies)); constructor(private store: Store<fromRoot.State>) {} onSearch(searchTerm: string) { this.store.dispatch(new MovieSearch(searchTerm)); } onFavoriteMovie($event: Movie) { } }
887b72f43210c6155108b5e3d328d7e054862a4e
[ "Markdown", "TypeScript" ]
11
TypeScript
brandonroberts/angular-mix-2018
8765c2352a094f8990ca8552b7c04db6fbb105a4
060a035ed07a72d44dc38ce15f54e2e95833090f
refs/heads/master
<file_sep>from tempfile import NamedTemporaryFile from ..cache import get_cache_key, get_hexdigest, get_hashed_mtime from ..utils import compile_less from ..settings import LESS_EXECUTABLE, LESS_USE_CACHE,\ LESS_CACHE_TIMEOUT, LESS_ROOT, LESS_OUTPUT_DIR, LESS_DEVMODE,\ LESS_DEVMODE_WATCH_DIRS from django.conf import settings from django.contrib.staticfiles import finders from django.core.cache import cache from django.template.base import Node from django.template.library import Library from django.template.exceptions import TemplateSyntaxError import logging import subprocess import os import sys STATIC_ROOT = getattr(settings, "STATIC_ROOT", getattr(settings, "MEDIA_ROOT")) logger = logging.getLogger("less") register = Library() class InlineLessNode(Node): def __init__(self, nodelist): self.nodelist = nodelist def compile(self, source): source_file = NamedTemporaryFile(delete=False) source_file.write(source) source_file.close() args = [LESS_EXECUTABLE, source_file.name] popen_kwargs = dict( stdout=subprocess.PIPE, stderr=subprocess.PIPE, ) if os.name == "nt": popen_kwargs["shell"] = True p = subprocess.Popen(args, **popen_kwargs) out, errors = p.communicate() os.remove(source_file.name) if out: return out.decode(settings.FILE_CHARSET) elif errors: return errors.decode(settings.FILE_CHARSET) return u"" def render(self, context): output = self.nodelist.render(context) if LESS_USE_CACHE: cache_key = get_cache_key(get_hexdigest(output)) cached = cache.get(cache_key, None) if cached is not None: return cached output = self.compile(output) cache.set(cache_key, output, LESS_CACHE_TIMEOUT) return output else: return self.compile(output) @register.tag(name="inlineless") def do_inlineless(parser, token): nodelist = parser.parse(("endinlineless",)) parser.delete_first_token() return InlineLessNode(nodelist) def less_paths(path): full_path = os.path.join(STATIC_ROOT, path) if settings.DEBUG and not os.path.exists(full_path): # while developing it is more confortable # searching for the less files rather then # doing collectstatics all the time full_path = finders.find(path) if full_path is None: raise TemplateSyntaxError("Can't find staticfile named: {}".format(path)) file_name = os.path.split(path)[-1] output_dir = os.path.join(LESS_ROOT, LESS_OUTPUT_DIR, os.path.dirname(path)) return full_path, file_name, output_dir @register.simple_tag def less(path): logger.info("processing file %s" % path) full_path, file_name, output_dir = less_paths(path) base_file_name = os.path.splitext(file_name)[0] if LESS_DEVMODE and any(map(lambda watched_dir: full_path.startswith(watched_dir), LESS_DEVMODE_WATCH_DIRS)): return os.path.join(os.path.dirname(path), "%s.css" % base_file_name) hashed_mtime = get_hashed_mtime(full_path) output_file = "%s-%s.css" % (base_file_name, hashed_mtime) output_path = os.path.join(output_dir, output_file) encoded_full_path = full_path if isinstance(full_path, unicode): filesystem_encoding = sys.getfilesystemencoding() or sys.getdefaultencoding() encoded_full_path = full_path.encode(filesystem_encoding) if not os.path.exists(output_path): compile_less(encoded_full_path, output_path, path) # Remove old files compiled_filename = os.path.split(output_path)[-1] for filename in os.listdir(output_dir): if filename.startswith(base_file_name) and filename != compiled_filename: os.remove(os.path.join(output_dir, filename)) return os.path.join(LESS_OUTPUT_DIR, os.path.dirname(path), output_file)
043d6024e9e77fd28e5524227fdc4432a8dbb7c7
[ "Python" ]
1
Python
joel83/django-less
24e1ed86dabef33fdafe057d0e93fa910f7073e2
0435b090f4aa049ee29abe37021c1b1250020919
refs/heads/master
<file_sep>package org.springframework.web.flash; import java.io.Serializable; import java.util.ArrayList; import java.util.Collection; import java.util.List; import org.springframework.context.MessageSourceResolvable; /** * Flash object that lives in the HTTP session. * * Contains a set of flash entries where each can have individual * states @see {@link FlashEntryState}. * * * @author <NAME> <<EMAIL>> * */ public final class Flash implements Serializable { private static final long serialVersionUID = 1L; private static final String MAP_KEY_PREFIX = Flash.class.getName() + "."; private static final String SUCCESS_KEY = MAP_KEY_PREFIX + "success"; private static final String NOTICE_KEY = MAP_KEY_PREFIX + "notice"; private static final String ERROR_KEY = MAP_KEY_PREFIX + "error"; private static final String POPUP_ERROR_KEY = MAP_KEY_PREFIX + "popup_error"; /** * List that contains flash entries. */ private List<FlashEntry> entries = new ArrayList<FlashEntry>(); /** * Default constructor */ public Flash() {} /** * Copy constructor that creates a deep * clone of this flash object, * @param flash */ public Flash(Flash flash) { for(FlashEntry fe: flash.getEntries()) { this.entries.add(new FlashEntry(fe)); } } public List<FlashEntry> getSuccess() { return get(SUCCESS_KEY); } public void setSuccess(Object message) { set(SUCCESS_KEY, message); } public List<FlashEntry> getNotice() { return get(NOTICE_KEY); } public void setNotice(Object message) { set(NOTICE_KEY, message); } public List<FlashEntry> getError() { return get(ERROR_KEY); } public void setError(Object message) { set(ERROR_KEY, message); } public List<FlashEntry> getPopupError() { return get(POPUP_ERROR_KEY); } public void setPopupError(Object message) { set(POPUP_ERROR_KEY, message); } public void setPopupErrors(Collection<?> messages) { for (Object object : messages) { set(POPUP_ERROR_KEY, object); } } private void set(String key, Object value) { entries.add(new FlashEntry(key, value)); } public List<FlashEntry> get(String key) { List<FlashEntry> list = new ArrayList<FlashEntry>(); for (FlashEntry entry : entries) { if(entry.getKey().equals(key)) { list.add(entry); } } return list; } public List<FlashEntry> getEntries() { return entries; } public enum FlashEntryState { CURRENT, SAVED, PREVIOUS } @Override public String toString() { return new StringBuilder(super.toString()) .append(" Num entries: ") .append(this.getEntries().size()) .toString(); } public class FlashEntry { private FlashEntryState state; private final String key; private final Object value; public FlashEntry(final String key, final Object value) { this.key = key; this.value = value; this.state = FlashEntryState.CURRENT; } public FlashEntry(FlashEntry fe) { this.state = fe.getState(); this.key = fe.getKey(); this.value = fe.getValue(); } public FlashEntryState getState() { return state; } public void setState(FlashEntryState state) { this.state = state; } public String getKey() { return key; } public Object getValue() { return value; } /** * Checks whether value should be resolved using * message source. * @return */ @Deprecated public boolean isMessageResolvable() { return this.value instanceof MessageSourceResolvable; } @Override public String toString() { return value.toString(); } } }
90db9ce23520abddf4f0f076d529b398adf8a7fe
[ "Java" ]
1
Java
joelso/spring-flash
9dbe649ea6d7e98dc22c174aaa919848a7848b52
d5a2a8be97b99d9c8fc3c4a9583609d7c93975f7
refs/heads/master
<repo_name>ujjkumsi/docker-go<file_sep>/docker-compose.yml # docker-compose Cassandra Test Cluster # docker-compose rm # docker-compose up # docker run -it --link cassandra_cassandra-1_1:cassandra --rm cassandra cqlsh cassandra # copy paste the test script on cassandra-1 # run select on cassandra-2 # version: "3" services: cassandra-seed: container_name: cassandra-seed-node image: cassandra:3.11.0 ports: - "9042:9042" # Native transport - "7199:7199" # JMX - "9160:9160" # Thrift clients # networks: # - dc1ring cassandra-1: image: cassandra:3.11.0 command: /bin/bash -c "echo 'Waiting for seed node' && sleep 30 && /docker-entrypoint.sh cassandra -f" environment: - "CASSANDRA_SEEDS=cassandra-seed-node" depends_on: - "cassandra-seed" # networks: # - dc1ring # you cannot have multiple nodes join the cluster at the same time when # cassandra.consistent.rangemovement is true so we further delay it to give it time to stabilize cassandra-2: image: cassandra:3.11.0 command: /bin/bash -c "echo 'Waiting for seed node' && sleep 80 && /docker-entrypoint.sh cassandra -f" environment: - "CASSANDRA_SEEDS=cassandra-seed-node" depends_on: - "cassandra-seed" # networks: # - dc1ring docker-go: build: context: . dockerfile: Dockerfile links: - cassandra-seed:cassandra ports: - "8080:8080" depends_on: - cassandra-seed environment: CASSANDRA_URL: cassandra:9042 # networks: # - dc1ring portainer: image: portainer/portainer command: --templates http://templates/templates.json volumes: - /var/run/docker.sock:/var/run/docker.sock - ./portainer-data:/data # Enable you to access potainers web interface from your host machine # using http://localhost:10001 ports: - "10001:9000" logspout: build: logspout # command: syslog+tcp://logs.papertrailapp.com:$PAPERTRAIL_PORT env_file: - logspout/logspout.env restart: always ports: - "8000:80" volumes: # security concern: # https://raesene.github.io/blog/2016/03/06/The-Dangers-Of-Docker.sock/ # http://stackoverflow.com/questions/40844197 - /var/run/docker.sock:/var/run/docker.sock:ro # networks: # dc1ring: # ipam: # driver: default # config: # - subnet: 172.30.0.0/16 <file_sep>/dao/movies-dao.go package dao import ( "log" "time" "github.com/gocql/gocql" "github.com/ujjkumsi/docker-go/models" ) type MoviesDAO struct { Server string Database string } var session *gocql.Session const ( COLLECTION = "movies" ) type stop struct { error } func retry(attempts int, sleep time.Duration, server string, database string, fn func(server string, database string) error) error { if err := fn(server, database); err != nil { if s, ok := err.(stop); ok { // Return the original error for later checking return s.error } if attempts--; attempts > 0 { time.Sleep(sleep) return retry(attempts, 2*sleep, server, database, fn) } return err } return nil } /* Connect function This lets the application to connect with the database - cassandra Its an extension function on MoviesDAO which expects server address and keyspace name Here, we use default port : 9042 for cql queries */ func (m *MoviesDAO) Connect() { if err := retry(3, 60*1000*1000*1000, m.Server, m.Database, initSession); err != nil { log.Fatal("Unable to connect with database after several tries") } log.Println("Connected to database") } func initSession(server string, database string) error { var err error if session == nil || session.Closed() { if session, err = getCluster(server, database).CreateSession(); err != nil { return err } } return nil } func getCluster(server string, database string) *gocql.ClusterConfig { cluster := gocql.NewCluster(server) cluster.Port = 9042 cluster.ProtoVersion = 4 cluster.Keyspace = database return cluster } // Find list of movies func (m *MoviesDAO) FindAll() ([]models.Movie, error) { var movies []models.Movie return movies, nil } // FindByID function lets you find movies by providing their ids func (m *MoviesDAO) FindByID(id string) (models.Movie, error) { var movie models.Movie return movie, nil } // Insert a movie into database func (m *MoviesDAO) Insert(movie models.Movie) error { if err := initSession(m.Server, m.Database); err != nil { return err } if err := session.Query( `INSERT INTO movieapi.movie (id, name, cover_image, description) VALUES (?, ?, ?, ?)`, movie.ID, movie.Name, movie.CoverImage, movie.Description).Exec(); err != nil { return err } return nil } // Delete an existing movie func (m *MoviesDAO) Delete(movie models.Movie) error { return nil } // Update an existing movie func (m *MoviesDAO) Update(movie models.Movie) error { return nil } <file_sep>/cluster.sh #!/bin/bash # # Author: <NAME> <jason dot giedymin -at- gmail dot com> # License: Apache2 # Desc: Basic cluster script for cassandra using docker. # This is meant for local development, though you could # boot this up onto a docker-machine cluster. If you do # indeed embark on that journey pay particular attention # to the port specs in the compose yaml. It may be more # than you'd want for production. Also consider a service # container exposed with ports that are linked instead. # # If you desire logging, supply COMPOSE_LOG=true like so: # COMPOSE_LOG=true bash cluster.sh up # A file named compose.log will appear. # COMPOSE_LOG=${COMPOSE_LOG:false} function removeContainers() { docker-compose rm -fv cassandra-seed docker-compose rm -fv cassandra-2 docker-compose rm -fv cassandra-1 docker-compose rm -fv docker-go docker-compose rm -fv portainer } function removeData() { # [[ -e ./data ]] && rm -R ./data [[ -e ./cassandra-1 ]] && rm -R ./cassandra-1 [[ -e ./cassandra-2 ]] && rm -R ./cassandra-2 [[ -e ./cassandra-seed ]] && rm -R ./cassandra-seed } function createData() { mkdir -p ./cassandra-1/data mkdir -p ./cassandra-2/data mkdir -p ./cassandra-seed/data } function up() { removeContainers removeData createData # uncomment if you desire mounts function logup() { docker-compose up > compose.log & } [[ $COMPOSE_LOG = true ]] && logup || docker-compose up } function remove() { docker-compose stop removeContainers removeData } case "$1" in up) up ;; halt|stop|down) docker-compose stop ;; remove) remove ;; *) echo "$0 {up|halt|stop|down|remove}" ;; esac<file_sep>/dialogflow/dialogflow_handler.go package dialogflow import ( "encoding/json" "log" "net/http" "github.com/ujjkumsi/docker-go/util" ) type dialogResponse struct { fulfillmentText string `json:"fulfillmentText"` } type params struct { City string `json:"city"` Gender string `json:"gender"` Age int `json:"age"` } /* DialogflowHandler Handles the communication with the dialog flow And returns proper response */ func DialogflowHandler(w http.ResponseWriter, r *http.Request) { log.Println(util.FormatRequest(r)) var err error var dfr *Request // var p params decoder := json.NewDecoder(r.Body) if err = decoder.Decode(&dfr); err != nil { w.WriteHeader(http.StatusBadRequest) return } defer r.Body.Close() log.Println(dfr.QueryResult.QueryText) // Filter on action, using a switch for example // Retrieve the params of the request // if err = dfr.GetParams(&p); err != nil { // w.WriteHeader(http.StatusBadRequest) // return // } // Retrieve a specific context // if err = dfr.GetContext("Start_Booking_Cab", &p); err != nil { // log.Println("Bad request from webhook - Param error") // w.WriteHeader(http.StatusBadRequest) // return // } // Do things with the context you just retrieved dff := &Fulfillment{ FulfillmentMessages: Messages{ ForGoogle(SingleSimpleResponse("hello", "hello")), {RichMessage: Text{Text: []string{"hello"}}}, }, } w.Header().Set("Content-Type", "application/json") w.WriteHeader(http.StatusOK) json.NewEncoder(w).Encode(dff) } <file_sep>/Readme.md # Best Practices in Go I am starting my journey to become expert backend developer. With increasing popularity of golang to create highly responsive server - me being from mobile background where resposiveness is must - I am sharing my journey with you all. Here, I referred lot of articles available on web beacuse as the saying goes "Never invent the wheel, rather use it". ## Getting Started This project uses docker to build the application. Running application: ### Running Using docker Use following command to run the app ``` docker build ./ docker run -it -p 8080:8080 -v [path-of-app] [image-id] ``` ## Best Practices We will use 3 principles to write code : simple, readable and maintainable. Lets visit different aspect of development process: ## Error handling In go, anything that implements Error interface can be used as error. For example ``` type error interface { Error() string } ``` While we handle error, few dont's we have to remember: * Do not nest error * Don't write logic between throwing error and consuming it. ### Break down into end to end tests Explain what these tests test and why ``` Give an example ``` ### And coding style tests Explain what these tests test and why ``` Give an example ``` ## Deployment Add additional notes about how to deploy this on a live system ## Built With * [Dropwizard](http://www.dropwizard.io/1.0.2/docs/) - The web framework used * [Maven](https://maven.apache.org/) - Dependency Management * [ROME](https://rometools.github.io/rome/) - Used to generate RSS Feeds ## Contributing Please read [CONTRIBUTING.md](https://gist.github.com/PurpleBooth/b24679402957c63ec426) for details on our code of conduct, and the process for submitting pull requests to us. ## Versioning We use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/your/project/tags). ## Authors * **<NAME>** - *Initial work* - [PurpleBooth](https://github.com/PurpleBooth) See also the list of [contributors](https://github.com/your/project/contributors) who participated in this project. ## License This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details ## Acknowledgments * Hat tip to anyone whose code was used * Inspiration * etc <file_sep>/dialogflow/dialogflow_controller.go package dialogflow import ( "context" "errors" "fmt" "log" dialogflow "cloud.google.com/go/dialogflow/apiv2" dialogflowpb "google.golang.org/genproto/googleapis/cloud/dialogflow/v2" ) func GetIntent(message string) string { projectID, sessionID, languageCode := "allin-196210", "BABA1234", "en" response, err := DetectIntentText(projectID, sessionID, message, languageCode) if err != nil { log.Fatal(err) return "I am unable to understand what you want to say!" } return response } // [START dialogflow_detect_intent_text] func DetectIntentText(projectID, sessionID, text, languageCode string) (string, error) { ctx := context.Background() sessionClient, err := dialogflow.NewSessionsClient(ctx) if err != nil { return "", err } defer sessionClient.Close() if projectID == "" || sessionID == "" { return "", errors.New(fmt.Sprintf("Received empty project (%s) or session (%s)", projectID, sessionID)) } sessionPath := fmt.Sprintf("projects/%s/agent/sessions/%s", projectID, sessionID) textInput := dialogflowpb.TextInput{Text: text, LanguageCode: languageCode} queryTextInput := dialogflowpb.QueryInput_Text{Text: &textInput} queryInput := dialogflowpb.QueryInput{Input: &queryTextInput} request := dialogflowpb.DetectIntentRequest{Session: sessionPath, QueryInput: &queryInput} response, err := sessionClient.DetectIntent(ctx, &request) if err != nil { log.Printf("Session Path (%s)", sessionPath) return "", err } queryResult := response.GetQueryResult() fulfillmentText := queryResult.GetFulfillmentText() return fulfillmentText, nil } <file_sep>/models/movies.go package models import "github.com/gocql/gocql" // Represents a movie, we uses bson keyword to tell the mgo driver how to name // the properties in mongodb document type Movie struct { ID gocql.UUID `json:"id"` Name string `json:"name"` CoverImage string `json:"cover_image"` Description string `json:"description"` } <file_sep>/simple-cluster.sh #!/bin/bash # Official readme: https://github.com/docker-library/docs/blob/master/cassandra/README.md # # Preferred method is to use the docker-compose command rather than this script. # (when there is one) # echo "Preferred method is to use the docker-compose command rather than this script." # echo "Waiting 5 seconds before proceeding..." # sleep 5 export TAG=latest docker rm cassandra-1 docker run --name cassandra-1 -v ./cassandra-1:/var/lib/cassandra/data cassandra:$TAG sleep 10 docker rm cassandra-2 docker run --name cassandra-2 -d -e CASSANDRA_SEEDS="cassandra-1" cassandra:$TAG # docker run --name cassandra-2 -d -e CASSANDRA_SEEDS="$(docker inspect --format='{{ .NetworkSettings.IPAddress }}' cassandra-1)" cassandra:$TAG sleep 10 # Test cqlsh docker run -it --link cassandra-1:cassandra --rm cassandra cqlsh cassandra # To link: #docker run --name some-app --link some-cassandra:cassandra -d app-that-uses-cassandra # login to first container # docker exec -it cassandra-1 bash # or use docker logs # docker logs cassandra-1 # Stop them all # docker stop cassandra-1 && docker stop cassandra-2<file_sep>/Dockerfile FROM golang ARG app_env ENV APP_ENV $app_env COPY ./app /go/src/github.com/ujjkumsi/docker-go/app COPY ./best-practices /go/src/github.com/ujjkumsi/docker-go/best-practices COPY ./models /go/src/github.com/ujjkumsi/docker-go/models COPY ./dao /go/src/github.com/ujjkumsi/docker-go/dao COPY ./dao /go/src/github.com/ujjkumsi/docker-go/util COPY ./dao /go/src/github.com/ujjkumsi/docker-go/dialogflow WORKDIR /go/src/github.com/ujjkumsi/docker-go/app RUN go get ./ RUN go build CMD if [ ${APP_ENV} = production ]; \ then \ app; \ else \ go get github.com/pilu/fresh && \ fresh; \ fi EXPOSE 8080<file_sep>/app/app.go package main import ( "encoding/json" "fmt" "log" "net/http" "os" "github.com/gocql/gocql" "github.com/gorilla/mux" eh "github.com/ujjkumsi/docker-go/best-practices" "github.com/ujjkumsi/docker-go/dao" "github.com/ujjkumsi/docker-go/dialogflow" "github.com/ujjkumsi/docker-go/models" ) var moviesDao = dao.MoviesDAO{} func allMoviesEndPoint(w http.ResponseWriter, r *http.Request) { fmt.Fprintln(w, "not implemented yet !") } func findMovieEndpoint(w http.ResponseWriter, r *http.Request) { fmt.Fprintln(w, "not implemented yet !") } func createMovieEndPoint(w http.ResponseWriter, r *http.Request) { defer r.Body.Close() var movie models.Movie if err := json.NewDecoder(r.Body).Decode(&movie); err != nil { respondWithError(w, http.StatusBadRequest, "Invalid request payload") return } movie.ID = gocql.TimeUUID() if err := moviesDao.Insert(movie); err != nil { respondWithError(w, http.StatusInternalServerError, err.Error()) return } respondWithJSON(w, http.StatusCreated, movie) } func updateMovieEndPoint(w http.ResponseWriter, r *http.Request) { fmt.Fprintln(w, "not implemented yet !") } func deleteMovieEndPoint(w http.ResponseWriter, r *http.Request) { fmt.Fprintln(w, "not implemented yet !") } func indexHandler(w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w, "This is the RESTful api") errorHandler() } type heartbeatResponse struct { Status string `json:"status"` Code int `json:"code"` } func heartbeat(w http.ResponseWriter, r *http.Request) { json.NewEncoder(w).Encode(heartbeatResponse{Status: "OK", Code: 200}) } func init() { moviesDao.Database = "movieapi" moviesDao.Server = "cassandra" } func main() { r := mux.NewRouter() r.HandleFunc("/", heartbeat).Methods("GET") r.HandleFunc("/movies", allMoviesEndPoint).Methods("GET") r.HandleFunc("/movies", createMovieEndPoint).Methods("POST") r.HandleFunc("/movies", updateMovieEndPoint).Methods("PUT") r.HandleFunc("/movies", deleteMovieEndPoint).Methods("DELETE") r.HandleFunc("/movies/{id}", findMovieEndpoint).Methods("GET") r.HandleFunc("/action", dialogflow.DialogflowHandler).Methods("POST") // print env env := os.Getenv("APP_ENV") if env == "production" { log.Println("Running api server in production mode") } else { log.Println("Running api server in dev mode") } if err := http.ListenAndServe(":8080", r); err != nil { log.Fatal(err) } } func errorHandler() { result, err := eh.Divide(1.0, 0.0) if err != nil { switch err.(type) { case *eh.ErrZeroDivision: fmt.Println(err.Error()) default: fmt.Println("What the h* just happened?") } } fmt.Println(result) } func respondWithError(w http.ResponseWriter, code int, msg string) { respondWithJSON(w, code, map[string]string{"error": msg}) } func respondWithJSON(w http.ResponseWriter, code int, payload interface{}) { response, _ := json.Marshal(payload) w.Header().Set("Content-Type", "application/json") w.WriteHeader(code) w.Write(response) } <file_sep>/movies.cql ALTER KEYSPACE system_auth WITH replication = { 'class' : 'SimpleStrategy', 'replication_factor' : 3 }; DROP KEYSPACE IF EXISTS movieapi; CREATE KEYSPACE movieapi WITH REPLICATION = { 'class' : 'SimpleStrategy', 'replication_factor' : 3 }; USE movieapi; DROP TABLE IF EXISTS movie; CREATE TABLE movie ( id uuid PRIMARY KEY, name text, cover_image text, description text );
6824996cc423dfca23783287c73209c877aed9eb
[ "SQL", "YAML", "Markdown", "Go", "Dockerfile", "Shell" ]
11
YAML
ujjkumsi/docker-go
a64d09089bc6923c8463fa2900c9b191acc0f235
ba4e269a388899302f62290aee04cc9a0d99798c
refs/heads/master
<repo_name>sudhamsugurijala/face-classifier-intern<file_sep>/mtcnn_train.py # -*- coding: utf-8 -*- """ Created on Wed Dec 18 15:29:01 2019 @author: Internship007 """ # importing necessary packages from os import listdir, mkdir, getcwd from os.path import isdir, exists import sys import pickle import shutil # for removing dir with contents from PIL import Image, ImageEnhance from numpy import savez_compressed from numpy import asarray from numpy import load from numpy import expand_dims from mtcnn.mtcnn import MTCNN from keras.models import load_model from keras.preprocessing.image import ImageDataGenerator, img_to_array from sklearn.metrics import accuracy_score from sklearn.preprocessing import LabelEncoder from sklearn.preprocessing import Normalizer from sklearn.svm import SVC def extract_face(filename, required_size=(160, 160)): """Extract a single face from a given photograph.""" # load image from FILE image = Image.open(filename) enhancer = ImageEnhance.Brightness(image) image = enhancer.enhance(1.8) pixels = asarray(image) # create the detector, using default weights detector = MTCNN() # detect faces in the image results = detector.detect_faces(pixels) # extract the bounding box from the first face # bug fix for list index out of range try: x_1, y_1, width, height = results[0]['box'] except IndexError: return None x_1, y_1 = abs(x_1), abs(y_1) x_2, y_2 = x_1 + width, y_1 + height # extract the face face = pixels[y_1:y_2, x_1:x_2] # resize pixels to the MODEL size image = Image.fromarray(face) image = image.resize(required_size) face_array = asarray(image) return face_array def load_faces(directory): """Load images and extract faces for all images in a directory.""" faces = list() # enumerate FILEs for filename in listdir(directory): # path path = directory + filename # data generator for augmentation datagen = ImageDataGenerator(rotation_range=10, width_shift_range=0.1, height_shift_range=0.1, shear_range=0.15, zoom_range=0.1, channel_shift_range=10, horizontal_flip=True) image = Image.open(path) image = img_to_array(image) image = expand_dims(image, 0) # create new directory for augmentations in current working dir(cwd) dest = getcwd() + '/aug' mkdir(dest) datagen.fit(image) # to set default value of number of augmentations if not specified if len(sys.argv) < 3: augs_num = 30 else: augs_num = int(sys.argv[2]) i = 0 # loop variable for augmentation for _ in datagen.flow(image, batch_size=1, save_to_dir=dest, save_prefix='aug', save_format='jpg'): i += 1 # second argument in cmd line will be number of iterations if i == augs_num: break dest = dest + '/' for augfile in listdir(dest): path = dest + augfile face = extract_face(path) # store faces.append(face) # remove directory after face extraction shutil.rmtree(dest) return faces def load_dataset(directory): """Load DATAset containing one subdir for each person""" x_1, y_1 = list(), list() # enumerate folders, onw per class for subdir in listdir(directory): # path path = directory + subdir + '/' # skip any FILEs that might be in the dir if not isdir(path): continue # load all not None faces faces = load_faces(path) new_faces = list() for face in faces: if face is not None: new_faces.append(face) # create labels labels = [subdir for _ in range(len(new_faces))] # summarize progress print('loaded %d examples for class: %s' % (len(new_faces), subdir)) # store x_1.extend(new_faces) y_1.extend(labels) return asarray(x_1), asarray(y_1) def get_embedding(model, face_pixels): """Get the face embedding for one face""" # scale pixel values face_pixels = face_pixels.astype('float32') # standardize pixel values across channels (global) mean, std = face_pixels.mean(), face_pixels.std() face_pixels = (face_pixels - mean) / std # transform face into one sample samples = expand_dims(face_pixels, axis=0) # make prediction to get embedding yhat = model.predict(samples) return yhat[0] # deleting aug folder if it exists if exists('%s/aug' % getcwd()): shutil.rmtree('%s/aug' % getcwd()) # load train DATAset # first argument of cmd line is path to training DATA TRAINX, TRAINY = load_dataset('%s' % sys.argv[1]+'/') print(TRAINX.shape, TRAINY.shape) # save arrays to one FILE in compressed format savez_compressed('DATAset.npz', TRAINX, TRAINY) DATA = load('DATAset.npz') TRAINX, TRAINY = DATA['arr_0'], DATA['arr_1'] print('Loaded: ', TRAINX.shape, TRAINY.shape) # load the facenet MODEL MODEL = load_model('facenet_keras.h5') print('Loaded MODEL') # convert each face in the train set to an embedding NEWTRAINX = list() for face_pixls in TRAINX: embedding = get_embedding(MODEL, face_pixls) NEWTRAINX.append(embedding) NEWTRAINX = asarray(NEWTRAINX) print(NEWTRAINX.shape) # save arrays to one FILE in compressed format savez_compressed('faces-embeddings.npz', NEWTRAINX, TRAINY) # Load dataset DATA = load('faces-embeddings.npz') TRAINX, TRAINY = DATA['arr_0'], DATA['arr_1'] print('Dataset: train=%d' % (TRAINX.shape[0])) # normalize input vectors IN_ENCODER = Normalizer(norm='l2') TRAINX = IN_ENCODER.transform(TRAINX) # label encode targets OUT_ENCODER = LabelEncoder() OUT_ENCODER.fit(TRAINY) TRAINY = OUT_ENCODER.transform(TRAINY) # fit MODEL MODEL = SVC(kernel='linear', probability=True) MODEL.fit(TRAINX, TRAINY) # save MODEL,pickle it FILE = open('svm_model.h5', 'wb') pickle.dump(MODEL, FILE) FILE.close() # predict PREDICT_TRAIN = MODEL.predict(TRAINX) # score SCORE_TRAIN = accuracy_score(TRAINY, PREDICT_TRAIN) # summarize print('Accuracy: train=%.3f' % (SCORE_TRAIN*100)) <file_sep>/mtcnn_test1.py # -*- coding: utf-8 -*- """ Created on Wed Dec 18 14:28:23 2019 @author: Internship007 """ # importing necessary packages from os import listdir import pickle import json import sys from datetime import datetime from numpy import load from numpy import expand_dims from numpy import asarray from sklearn.preprocessing import LabelEncoder from sklearn.preprocessing import Normalizer from cv2 import cv2 from PIL import Image, ImageEnhance from mtcnn.mtcnn import MTCNN from keras.models import load_model import filetype def convert(lst): """Convert list into dictionary.""" res_dct = {lst[i]: lst[i + 1] for i in range(0, len(lst), 2)} return res_dct def get_embedding(model, face_pixels): """Function to get embeddings of a face.""" # scale pixel values face_pixels = face_pixels.astype('float32') # standardize pixel values across channels (global) mean, std = face_pixels.mean(), face_pixels.std() face_pixels = (face_pixels - mean) / std # transform face into one sample samples = expand_dims(face_pixels, axis=0) # make prediction to get embedding yhat = model.predict(samples) return yhat[0] def pred_face(face_array, dict_faces): """Function to predict face of a person.""" # set default threshold as 90% if len(sys.argv) < 3: threshold = 90 else: threshold = int(sys.argv[2]) dict_face = {} # to store face embedding of test_image test_sample_emb = [] # load model to get embeddings model = load_model('facenet_keras.h5') # to get embeddings of test_image embedding = get_embedding(model, face_array) # convert test_image embeddings into an array test_sample_emb = asarray(embedding) # convert test_image embeddings into 2-D array test_sample_emb1 = [test_sample_emb] # open the file of trained model file = open('svm_model.h5', 'rb') # load the file of trained model model = pickle.load(file) file.close() # load face embeddings of trained data data = load('faces-embeddings.npz') trainx, trainy = data['arr_0'], data['arr_1'] # normalize input vectors in_encoder = Normalizer(norm='l2') trainx = in_encoder.transform(trainx) test_sample_emb1 = in_encoder.transform(test_sample_emb1) # label encode targets out_encoder = LabelEncoder() out_encoder.fit(trainy) trainy = out_encoder.transform(trainy) # for finding unique labels copy = [] for x_1 in trainy: if x_1 not in copy: copy.append(x_1) # convert labels into corresponding names of person copy = out_encoder.inverse_transform(copy) sample = expand_dims(test_sample_emb1[0], axis=0) # predict label of face y_class = model.predict(sample) # predict probability of face y_prob = model.predict_proba(sample) # print face classification probability print(y_prob) class_index = y_class[0] # to print main probability of predicted sample class_probability = y_prob[0, class_index] * 100 # to convert labels into corresponding names of predicted persons predict_names = out_encoder.inverse_transform(y_class) print(predict_names[0]) if class_probability > threshold: print('Predicted: %s (%.3f)' % (predict_names[0], class_probability)) name = predict_names[0] pred_name = predict_names[0] pred_prob = class_probability face = pred_name+' '+'(%.3f)' % pred_prob mainlist = [] # split probability between all classes in mainlist for i, j in enumerate(copy): mainlist.append(j) mainlist.append(y_prob[0][i] * 100) # getting system date and time now = datetime.now() date_time = now.strftime("%d/%m/%Y, %H:%M:%S") face = face+' '+date_time dict_list = convert(mainlist) dict_face.update({face: dict_list}) dict_faces.update(dict_face) return name print('Predicted: Unknown') return 'Unknown' def predict_sample(path, dict_faces, filename): """Predict sample.""" # open image image = Image.open(path) # enhance brightness of image enhancer = ImageEnhance.Brightness(image) image = enhancer.enhance(1.8) # conversion of images into pixels pixels = asarray(image) # create the detector, using default weights detector = MTCNN() # detect faces in the image results = detector.detect_faces(pixels) # open image using openCV image_out = cv2.imread(path) # extract the bounding box from every face # i variable not used, so '_' is used for _, j in enumerate(results): x_1, y_1, w_1, h_1 = j['box'] # bug fix x_1, y_1 = abs(x_1), abs(y_1) # neglect small faces if w_1 < 90 or h_1 < 120: continue x_2, y_2 = x_1 + w_1, y_1 + h_1 # extract the face face = pixels[y_1:y_2, x_1:x_2] # resize pixels to the model size image = Image.fromarray(face) image = image.resize((160, 160)) face_array = asarray(image) name = pred_face(face_array, dict_faces) # to draw a box around the detected face image_out = cv2.rectangle(image_out, (x_1, y_1), (x_1 + w_1, y_1 + h_1), (36, 255, 12), 1) cv2.putText(image_out, name, (x_1, y_1 - 10), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (36, 255, 12), 2) # to display the output cv2.imshow('', image_out) # to write output images into new folder cv2.imwrite('O1/ % s' % filename, image_out) cv2.waitKey(0) cv2.destroyAllWindows() def predict_data(directory, dict_out): """Predict data.""" if len(listdir(directory)) == 0: return -1 for filename in listdir(directory): dict_faces = {} # path path = directory + filename # filetype.guess NEEDS ABSOLUTE PATH AS PARAMETER file_type = filetype.guess(path) if file_type.mime.find('image') > -1: # passing 0 for image predict_sample(path, dict_faces, filename) else: continue dict_out.update({filename: dict_faces}) return 0 # first cmd line argument is path to testing data DIR_PATH = '%s' % sys.argv[1] + '/' # dictionary to write into JSON file DICT_OUT = {} NUM_FILES = predict_data(DIR_PATH, DICT_OUT) if NUM_FILES == -1: print('The Directory is EMPTY!!') # write into JSON file with open('test_out1.json', 'w') as file1: # indent = 2 for newline in JSON file json.dump(DICT_OUT, file1, indent=2) <file_sep>/README.md A simple face classifier using MTCNN and SVM classifier, implemented in Python :)
c5b0a9b1efcb91cae4f8b3ce93124e0b5be5f4a7
[ "Markdown", "Python" ]
3
Python
sudhamsugurijala/face-classifier-intern
5cf6574e8ac18d0d685eee3acc84838911768fec
7b11e8eae6b742b9d569f0c3c4ba368e72ce6dd9
refs/heads/master
<file_sep>import {Request, Response} from "express"; import { fetchProductDb } from "../functions/fetch-product-db"; import { Product } from "../types/product"; export function productListingRouteHandler(req: Request, res: Response) { const productListing: Product[] = fetchProductDb(); res.status(200).send(productListing); } <file_sep>import * as dotenv from "dotenv"; // import routes import { productByIdRouteHandler } from "./routes/product-by-id.route"; import { productListingRouteHandler } from "./routes/product-listing.route"; import { productsOnSaleRouteHandler } from "./routes/products-on-sale.route"; // configure express dotenv.config(); import express = require("express"); const app = express(); import bodyParser = require("body-parser"); app.use(bodyParser.json({ limit: "16mb" })); /* ROUTES */ // /product-listing - grabs entire product listing app.get(`/product-listing`, productListingRouteHandler); // /product-by-id/:id - grabs a product by the product id app.get(`/product-by-id/:id`, productByIdRouteHandler); // /products-on-sale - grabs the products that are on sale app.get(`/products-on-sale`, productsOnSaleRouteHandler); app.listen(process.env.PORT, () => { console.log(process.env.APP_NAME + " now listening at port: " + process.env.PORT); }); <file_sep>export interface Product { productId: string; currency: string; name: string; description: string; images: Image[]; isOnsale: boolean; price: number; country: string; } export interface Image { ext: string; mime: string; url: string; } <file_sep>import {Request, Response} from "express"; import { fetchProductsOnSale } from "../functions/fetch-product-db"; import { Product } from "../types/product"; export function productsOnSaleRouteHandler(req: Request, res: Response) { const productsOnSale: Product[] = fetchProductsOnSale(); res.status(200).send(productsOnSale); } <file_sep>import * as db from "../data/products.json"; import { Product } from "../types/product"; // Imports the JSON file and parses it as a list of Products export function fetchProductDb(): Product[] { const dbParse = (db as any).default; return dbParse.products; } // Fetches a product given the ID // Returns undefined if product is not found export function fetchProductById(id: any): any { return fetchProductDb().find((pr: Product) => pr.productId === id); } // Fetches the products that are on sale export function fetchProductsOnSale(): Product[] { return fetchProductDb().filter((p: Product) => p.isOnsale); } <file_sep># samarkand-storefront-challenge-be ### forked by <NAME> > Given a list of product data, develop one endpoint to serve product listing. The number of products could grow to 10000+. > You are free to choose any db, framework or boilerplate you want. Project should be written in typescript, js. > We'd like to hear if you have any ideas how this can be extended. ## How to run 1. Make sure you have [Node.js](https://nodejs.org/en/download/) and [npm](https://www.npmjs.com/get-npm) installed. 2. In your console, point to the project directory then run ``npm run qstart`` to build and start. You can use [Postman](https://www.postman.com/downloads/) to mock the API ## Routes * ``/product-listing`` - grabs entire product listing * ``/product-by-id/:id`` - grabs a product by the product id * ``/products-on-sale`` - grabs the products that are on sale <file_sep>import { Request, Response } from "express"; import { fetchProductById } from "../functions/fetch-product-db"; import { Product } from "../types/product"; export function productByIdRouteHandler(req: Request, res: Response) { if (!req.params.id) { res.sendStatus(404); } else { const product: any = fetchProductById(req.params.id); if (product) { res.status(200).send(product); } else { res.status(404).send("Can't find product with the id " + req.params.id); } } }
4cd1910055a0260e66342b3fd1dfcab5b0556863
[ "Markdown", "TypeScript" ]
7
TypeScript
MakoMitsuki/samarkand-storefront-challenge-be
612de2c4b9170b7c3aa4a9613f7022e964957c0e
82171a281ff2c6743ca9aaecbb5508c00f1d0767
refs/heads/master
<repo_name>WSN-DESIGN-TOOL/wsn-design-studio<file_sep>/src/main/java/com/fyp/wsn/Entity/Sensor.java package com.fyp.wsn.Entity; import org.springframework.data.annotation.Id; import org.springframework.data.mongodb.core.mapping.Document; /** * Created by Asela on 5/3/2017. * This class define data entity (data structure) that connect with json objects */ //corresponding document in database @Document(collection = "sensors") public class Sensor { //Id of record @Id private String id; private String display_name; private String model_name; private String rated_current; private String power_supply; private String description; private String configuration; private String color; private String cpp_function; private String cpp_initialize; private String cpp_includes; private String python_includes; private String python_initialize; private String python_function; private String pin_map; //constructors and getters and setters are auto generated public String getRated_current() { return rated_current; } public void setRated_current(String rated_current) { this.rated_current = rated_current; } public String getPower_supply() { return power_supply; } public void setPower_supply(String power_supply) { this.power_supply = power_supply; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getPython_includes() { return python_includes; } public void setPython_includes(String python_includes) { this.python_includes = python_includes; } public String getPython_initialize() { return python_initialize; } public void setPython_initialize(String python_initialize) { this.python_initialize = python_initialize; } public String getPython_function() { return python_function; } public void setPython_function(String python_function) { this.python_function = python_function; } public String getCpp_initialize() { return cpp_initialize; } public void setCpp_initialize(String cpp_initialize) { this.cpp_initialize = cpp_initialize; } public String getCpp_includes() { return cpp_includes; } public void setCpp_includes(String cpp_includes) { this.cpp_includes = cpp_includes; } public String getCpp_function() { return cpp_function; } public void setCpp_function(String cpp_function) { this.cpp_function = cpp_function; } public String getColor() { return color; } public void setColor(String color) { this.color = color; } public Sensor() { } public String getConfiguration() { return configuration; } public void setConfiguration(String configuration) { this.configuration = configuration; } public Sensor(String id, String display_name, String model_name, String rated_current, String power_supply, String description, String configuration, String color, String cpp_function, String cpp_initialize, String cpp_includes, String python_includes, String python_initialize, String python_function, String pin_map) { this.id = id; this.display_name = display_name; this.model_name = model_name; this.rated_current = rated_current; this.power_supply = power_supply; this.description = description; this.configuration = configuration; this.color = color; this.cpp_function = cpp_function; this.cpp_initialize = cpp_initialize; this.cpp_includes = cpp_includes; this.python_includes = python_includes; this.python_initialize = python_initialize; this.python_function = python_function; this.pin_map = pin_map; } public Sensor(String id, String display_name, String model_name, String rated_current, String power_supply, String description, String configuration, String color, String cpp_function, String cpp_initialize, String cpp_includes, String python_includes, String python_initialize, String python_function) { this.id = id; this.display_name = display_name; this.model_name = model_name; this.rated_current = rated_current; this.power_supply = power_supply; this.description = description; this.configuration = configuration; this.color = color; this.cpp_function = cpp_function; this.cpp_initialize = cpp_initialize; this.cpp_includes = cpp_includes; this.python_includes = python_includes; this.python_initialize = python_initialize; this.python_function = python_function; } public String getId() { return id; } public Sensor(String display_name, String model_name) { this.display_name = display_name; this.model_name = model_name; } public void setId(String id) { this.id = id; } public String getDisplay_name() { return display_name; } public void setDisplay_name(String display_name) { this.display_name = display_name; } public String getModel_name() { return model_name; } public void setModel_name(String model_name) { this.model_name = model_name; } }
a67dff508d79ea494db717c0e2028b42760cdb71
[ "Java" ]
1
Java
WSN-DESIGN-TOOL/wsn-design-studio
1a98ea607c729ae90cc455cb15e51de79062c3f6
fc032909be38dc4864b6f2398806c09795731027
refs/heads/master
<file_sep># Code your solution here! def run_guessing_game random_num = rand(6) + 1 puts "Random number: " + random_num.to_s puts "Guess a number from 1 to 6." prompt = gets.chomp if prompt == 'exit' puts 'Goodbye!' elsif prompt == random_num.to_s puts "You guessed the correct number!" elsif prompt != random_num puts "Sorry! The computer guessed #{random_num}." end end
f3a3ca3c669fdb2bdc434a4635f1cf04cbc7db3b
[ "Ruby" ]
1
Ruby
wilsonvetdev/cli-applications-guessing-game-nyc04-seng-ft-071220
3aa8a8dce614d4bad518ae18319400ec0d0751f6
a8923b5e4e4648b83c012f88293241e27ab3f3f9
refs/heads/main
<file_sep>// setup default toneData chrome.runtime.onInstalled.addListener(() => { initDefaultToneData(); }); function initDefaultToneData(){ chrome.storage.sync.set({ toneData:{ instrument: "pinano", toneType: "sequence" } } ); }<file_sep># Chord_Player_HopAmViet A Chrome Extension to play sound for chords in hopamviet website. Contact me: <EMAIL>
bd913957dd036a8816df2156991a5c860986ab5a
[ "JavaScript", "Markdown" ]
2
JavaScript
quangnle/Chord_Player_HopAmViet
c651b31a45c6ec52f597f1115e3b9984671f212c
d692ef87778acd5ae36d5331fcdc7b75d91efaae
refs/heads/master
<file_sep># Provola# little bash script that looks for T1-3D MRI dicoms in a folder, transofrms them to nifti, reorients them and finally converts into .mgz that are sent in a separate folder. -provola20.sh is set for a fixed folder depth=3. -evo_provola.sh works on any depth and the search is customizable, but the dicom header must be well characterized. -todo: poter dare le ricerche come input da terminale <file_sep>#!/bin/bash #################################################################################################################### ##### Bash script that looks for T1-3D mri dicoms and converts to nii and mgz ##### #################################################################################################################### # #recommendations: -only valid for T1 3D, otherwise need to specify other names and conditions # #----user inputs------------------------------- homerun=$(pwd) #starting folder countz=10 #max number of spaces to be replaced depth=1000 #subdirectories depth #---------------------------------------------- mkdir MGZ_Folder while [ $countz != 0 ] do echo $countz find -type d -execdir rename 's/ /_/' '{}' \+ countz=$(( $countz - 1)) done echo 'rename complete' dirarray=($(find -maxdepth $depth -type d -iname *t1*)) for i_dir in ${dirarray[@]} do echo $i_dir cd $i_dir for file in * #cycle for conversion DICOM->NIFTI->MGZ do if [[ $file == *.dcm ]] then check3D=$(dicom_hdr $file | grep MR\ Acquisition\ Type\ //3D) lengthcheck=$(echo $check3D | awk '{print length}') if [ $lengthcheck != 0 ] then Date_long=$(dicom_hdr $file | grep ID\ Image\ Date) Date_medium=$(echo $Date_long | awk '{print $9}') Date=${Date_medium:6} ID_long=$(dicom_hdr $file | grep PAT\ Patient\ ID) ID_medium=$(echo $ID_long | awk '{print $9}') ID=${ID_medium:4} Acq_Type_long=$(dicom_hdr $file | grep ID\ Series\ Description) Acq_Type_medium=$(echo $Acq_Type_long | awk '{print $9}') Acq_Type=${Acq_Type_medium:13} filenome=$ID\_$Date\_$Acq_Type echo $filenome to3d -quit_on_err -prefix $filenome *.dcm 3dAFNItoNIFTI $filenome+orig -prefix *.nii fslreorient2std $filenome.nii STD\_ORNT\_$filenome.nii rm $filenome* mri_convert STD\_ORNT\_$filenome.nii.gz $filenome.mgz mv $filenome.mgz $homerun/MGZ_Folder rm *.nii.gz break fi fi done cd $homerun done <file_sep>#!/bin/bash #################################################################################################################### ##### Bash script that looks for T1-3D mri dicoms and converts to nii and mgz ##### #################################################################################################################### # #recommendations: -this is set for folder_depth=3 from the starting folder, if you requre more (or less) add # (or remove) cycles over all directories # #Improvements: # -generalizzare depth # -generealizzare la ricerca ad altri tag mkdir MGZ_Folder MGZ_PATH=$(pwd) for i_dir in * #cycle over all directories (all subjects) do if [ -d "$i_dir" ] then cd "$i_dir" # echo "$i_dir" for j_dir in * #cycle over all subdirectories do if [ -d "$j_dir" ] then cd "$j_dir" # echo "$j_dir" for k_dir in *t1* #cycle over subsubdirectories containing t1 do if [ -d "$k_dir" ] then cd "$k_dir" for file in * #cycle for conversion DICOM->NIFTI->MGZ do if [[ $file == *.dcm ]] then check3D=$(dicom_hdr $file | grep MR\ Acquisition\ Type\ //3D) lengthcheck=$(echo $check3D | awk '{print length}') if [ $lengthcheck != 0 ] then Date_long=$(dicom_hdr $file | grep ID\ Image\ Date) Date_medium=$(echo $Date_long | awk '{print $9}') Date=${Date_medium:6} ID_long=$(dicom_hdr $file | grep PAT\ Patient\ ID) ID_medium=$(echo $ID_long | awk '{print $9}') ID=${ID_medium:4} filenome=$ID\_$Date\_$k_dir echo $filenome to3d -quit_on_err -prefix $filenome *.dcm 3dAFNItoNIFTI $filenome+orig -prefix *.nii fslreorient2std $filenome.nii STD\_ORNT\_$filenome.nii rm $filenome* mri_convert STD\_ORNT\_$filenome.nii.gz $filenome.mgz mv $filenome.mgz $MGZ_PATH/MGZ_Folder rm *.nii.gz break fi fi done cd .. fi done for k_dir in *T1* #cycle over subsubdirectories containing T1 do if [ -d "$k_dir" ] then cd "$k_dir" for file in * #cycle for conversion DICOM->NIFTI->MGZ do if [[ $file == *.dcm ]] then check3D=$(dicom_hdr $file | grep MR\ Acquisition\ Type\ //3D) lengthcheck=$(echo $check3D | awk '{print length}') if [ $lengthcheck != 0 ] then Date_long=$(dicom_hdr $file | grep ID\ Image\ Date) Date_medium=$(echo $Date_long | awk '{print $9}') Date=${Date_medium:6} ID_long=$(dicom_hdr $file | grep PAT\ Patient\ ID) ID_medium=$(echo $ID_long | awk '{print $9}') ID=${ID_medium:4} filenome=$ID\_$Date\_$k_dir echo $filenome to3d -quit_on_err -prefix $filenome *.dcm 3dAFNItoNIFTI $filenome+orig -prefix *.nii fslreorient2std $filenome.nii STD\_ORNT\_$filenome.nii rm $filenome* mri_convert STD\_ORNT\_$filenome.nii.gz $filenome.mgz mv $filenome.mgz $MGZ_PATH/MGZ_Folder rm *.nii.gz break fi fi done cd .. fi done cd .. fi done cd .. fi done
c3d581e53cc7db2c4c1a33fb461af70b9ba8a6dd
[ "Markdown", "Shell" ]
3
Markdown
4sputnik/Provola
679e0475717b84e63d872d52ace4cdd310feca6b
3e96d8b1c5d5a703cf5456c2182d049f31465eb9
refs/heads/dev
<file_sep>import json import os import pdb import logging from django.urls import reverse from django.test.utils import get_runner from background_task.tasks import tasks import requests_mock from project.models import (ArchivedProject, ActiveProject, PublishedProject, Author, AuthorInvitation, License, StorageRequest) from user.models import User from user.test_views import prevent_request_warnings, TestMixin LOGGER = logging.getLogger(__name__) class TestState(TestMixin): """ Test that all objects are in their intended states, during and after review/publication state transitions. """ PROJECT_TITLE = 'MIT-BIH Arrhythmia Database' PROJECT_SLUG = 'mitbih' EXAMPLE_FILE = 'subject-100/100.atr' AUTHOR = 'rgmark' AUTHOR_PASSWORD = '<PASSWORD>!' EDITOR = 'admin' EDITOR_PASSWORD = '<PASSWORD>!' def test_assign_editor(self): """ Assign an editor """ # Submit project project = ActiveProject.objects.get(title='MIT-BIH Arrhythmia Database') project.submit(author_comments='') # Assign editor self.client.login(username='admin', password='<PASSWORD>!') editor = User.objects.get(username='admin') response = self.client.post(reverse( 'submitted_projects'), data={'project':project.id, 'editor':editor.id}) project = ActiveProject.objects.get(title='MIT-BIH Arrhythmia Database') self.assertTrue(project.editor, editor) self.assertEqual(project.submission_status, 20) def test_reassign_editor(self): """ Assign an editor, then reassign it """ # Submit project project = ActiveProject.objects.get(title='MIT-BIH Arrhythmia Database') project.submit(author_comments='') # Assign editor self.client.login(username='admin', password='<PASSWORD>!') editor = User.objects.get(username='tompollard') response = self.client.post(reverse('submitted_projects'), data={ 'project': project.id, 'editor': editor.id}) project = ActiveProject.objects.get(title='MIT-BIH Arrhythmia Database') self.assertTrue(project.editor, editor) self.assertEqual(project.submission_status, 20) # Reassign editor editor = User.objects.get(username='admin') response = self.client.post(reverse('submission_info', args=(project.slug,)), data={'editor': editor.id}) project = ActiveProject.objects.get(title='MIT-BIH Arrhythmia Database') self.assertTrue(project.editor, editor) def test_edit_reject(self): """ Edit a project, rejecting it. """ project = ActiveProject.objects.get(title='MIT-BIH Arrhythmia Database') project.submit(author_comments='') editor = User.objects.get(username='admin') project.assign_editor(editor) self.client.login(username='admin', password='<PASSWORD>!') # Reject submission response = self.client.post(reverse( 'edit_submission', args=(project.slug,)), data={ 'soundly_produced':0, 'well_described':0, 'open_format':1, 'data_machine_readable':0, 'reusable':1, 'no_phi':0, 'pn_suitable':1, 'editor_comments':'Just bad.', 'decision':0 }) self.assertTrue(ArchivedProject.objects.filter(slug=project.slug)) self.assertFalse(ActiveProject.objects.filter(slug=project.slug)) def test_edit(self): """ Edit a project. Request resubmission, then accept. """ project = ActiveProject.objects.get(title='MIT-BIH Arrhythmia Database') project.submit(author_comments='') editor = User.objects.get(username='admin') project.assign_editor(editor) self.client.login(username='admin', password='<PASSWORD>!') # Revise with changes response = self.client.post(reverse( 'edit_submission', args=(project.slug,)), data={ 'soundly_produced':1, 'well_described':1, 'open_format':1, 'data_machine_readable':0, 'reusable':1, 'no_phi':0, 'pn_suitable':1, 'editor_comments':'Remove the phi.', 'decision':1 }) project = ActiveProject.objects.get(id=project.id) self.assertTrue(project.author_editable()) # Resubmit self.client.login(username='rgmark', password='<PASSWORD>!') response = self.client.post(reverse( 'project_submission', args=(project.slug,)), data={'resubmit_project':''}) # Accept. All quality control fields must be True self.client.login(username='admin', password='<PASSWORD>!') response = self.client.post(reverse( 'edit_submission', args=(project.slug,)), data={ 'soundly_produced':1, 'well_described':1, 'open_format':1, 'data_machine_readable':0, 'reusable':1, 'no_phi':0, 'pn_suitable':1, 'editor_comments':'Good.', 'decision':2 }) self.assertMessage(response, 40) response = self.client.post(reverse( 'edit_submission', args=(project.slug,)), data={ 'soundly_produced':1, 'well_described':1, 'open_format':1, 'data_machine_readable':1, 'reusable':1, 'no_phi':1, 'pn_suitable':1, 'editor_comments':'Good.', 'decision':2 }) project = ActiveProject.objects.get(id=project.id) self.assertTrue(project.copyeditable()) @prevent_request_warnings def test_copyedit(self): """ Copyedit a project """ project = ActiveProject.objects.get(title='MIT-BIH Arrhythmia Database') project.submit(author_comments='') editor = User.objects.get(username='admin') project.assign_editor(editor) self.client.login(username='admin', password='<PASSWORD>!') # Test that the editor cannot copyedit the content yet topic = project.topics.all().first() response = self.client.post(reverse( 'edit_content_item', args=(project.slug,)), data={ 'item':'topic', 'remove_id':topic.id}) self.assertEqual(response.status_code, 404) # Accept submission response = self.client.post(reverse( 'edit_submission', args=(project.slug,)), data={ 'soundly_produced':1, 'well_described':1, 'open_format':1, 'data_machine_readable':1, 'reusable':1, 'no_phi':1, 'pn_suitable':1, 'editor_comments':'Good.', 'decision':2 }) # Copyedit project. # Remove a related item response = self.client.post(reverse( 'edit_content_item', args=(project.slug,)), data={ 'item':'topic', 'remove_id':topic.id}) self.assertEqual(response.status_code, 200) self.assertFalse(project.topics.all().filter(id=topic.id)) # Delete folders response = self.client.post(reverse( 'copyedit_submission', args=(project.slug,)), data={'delete_items':'', 'subdir':'', 'items':['subject-100', 'subject-101']}) self.assertMessage(response, 25) self.assertFalse(os.path.isfile(os.path.join(project.file_root(), 'subject-100'))) # Complete copyedit response = self.client.post(reverse( 'copyedit_submission', args=(project.slug,)), data={'complete_copyedit':'', 'made_changes':1, 'changelog_summary':'Removed your things'}) project = ActiveProject.objects.get(id=project.id) self.assertFalse(project.copyeditable()) # Reopen copyedit response = self.client.post(reverse( 'awaiting_authors', args=(project.slug,)), data={'reopen_copyedit':''}) project = ActiveProject.objects.get(id=project.id) self.assertTrue(project.copyeditable()) # Recomplete copyedit response = self.client.post(reverse( 'copyedit_submission', args=(project.slug,)), data={'complete_copyedit':'', 'made_changes':1, 'changelog_summary':'Removed your things'}) project = ActiveProject.objects.get(id=project.id) self.assertFalse(project.copyeditable()) def test_approve_publish(self): """ Author approves publication """ project = ActiveProject.objects.get(title='MIT-BIH Arrhythmia Database') def get_project(): return ActiveProject.objects.get(id=project.id) # The following steps should not alter the project timestamp, # since project "Metadata" fields are not being changed (only # "SubmissionInfo"). timestamp = project.modified_datetime project.submit(author_comments='') self.assertEqual(get_project().modified_datetime, timestamp) editor = User.objects.get(username='admin') project.assign_editor(editor) self.assertEqual(get_project().modified_datetime, timestamp) self.client.login(username='admin', password='<PASSWORD>!') # Accept submission response = self.client.post(reverse( 'edit_submission', args=(project.slug,)), data={ 'soundly_produced': 1, 'well_described': 1, 'open_format': 1, 'data_machine_readable': 1, 'reusable': 1, 'no_phi': 1, 'pn_suitable': 1, 'editor_comments': 'Good.', 'decision': 2, 'auto_doi': 1 }) self.assertEqual(get_project().modified_datetime, timestamp) # Complete copyedit response = self.client.post(reverse( 'copyedit_submission', args=(project.slug,)), data={'complete_copyedit':'', 'made_changes':0}) self.assertEqual(get_project().modified_datetime, timestamp) # Approve publication self.assertFalse(ActiveProject.objects.get(id=project.id).is_publishable()) self.client.login(username='rgmark', password='<PASSWORD>!') response = self.client.post(reverse( 'project_submission', args=(project.slug,)), data={'approve_publication':''}) self.assertEqual(get_project().modified_datetime, timestamp) self.assertTrue(ActiveProject.objects.get(id=project.id).is_publishable()) def test_publish(self): """ Test publishing project """ # Get the project ready to publish self.test_approve_publish() self.client.login(username='admin', password='<PASSWORD>!') project = ActiveProject.objects.get(title='MIT-BIH Arrhythmia Database') project_slug = project.slug custom_slug = 'mitbih' # Try to publish with an already taken slug # (note that if the project is a new version, # publish_submission ignores the slug parameter) if not project.is_new_version: taken_slug = PublishedProject.objects.all().first().slug response = self.client.post(reverse( 'publish_submission', args=(project.slug,)), data={'slug':taken_slug, 'doi': False, 'make_zip':1}) self.assertTrue(bool(ActiveProject.objects.filter( slug=project_slug))) # Publish with a valid custom slug response = self.client.post(reverse( 'publish_submission', args=(project.slug,)), data={'slug':custom_slug, 'doi': False, 'make_zip':1}) # Run background tasks self.assertTrue(bool(tasks.run_next_task())) self.assertTrue(bool(PublishedProject.objects.filter(slug=custom_slug))) self.assertFalse(bool(PublishedProject.objects.filter(slug=project_slug))) self.assertFalse(bool(ActiveProject.objects.filter(slug=project_slug))) project = PublishedProject.objects.get(slug=custom_slug, version=project.version) # Access the published project's page and its (open) files response = self.client.get(reverse('published_project', args=(project.slug, project.version))) self.assertEqual(response.status_code, 200) response = self.client.get(reverse('serve_published_project_file', args=( project.slug, project.version, 'subject-100/100.atr'))) self.assertEqual(response.status_code, 200) response = self.client.get(reverse('serve_published_project_zip', args=( project.slug, project.version))) self.assertEqual(response.status_code, 200) # Access the submission log as the author self.client.login(username='rgmark', password='<PASSWORD>!') response = self.client.get(reverse('published_submission_history', args=(project.slug, project.version,))) self.assertEqual(response.status_code, 200) def test_publish_with_versions(self): """ Test publishing a project with multiple versions. """ versions = ['1.0', '2.5', '2.10', '0.9'] # Publish the initial project version (from fixture data) project = ActiveProject.objects.get(title=self.PROJECT_TITLE) project.version = versions[0] project.save() self.test_publish() project0 = PublishedProject.objects.get(slug=self.PROJECT_SLUG, version=versions[0]) self.assertEqual(project0.version, versions[0]) self.assertEqual(project0.version_order, 0) self.assertTrue(project0.is_latest_version) self.assertFalse(project0.has_other_versions) file_path0 = os.path.join(project0.file_root(), self.EXAMPLE_FILE) license_path0 = os.path.join(project0.file_root(), 'LICENSE.txt') sha256_path0 = os.path.join(project0.file_root(), 'SHA256SUMS.txt') self.assertTrue(os.path.isfile(file_path0)) self.assertTrue(os.path.isfile(license_path0)) self.assertTrue(os.path.isfile(sha256_path0)) # Create new versions by copying the published version for version in versions[1:]: self.client.login(username=self.AUTHOR, password=self.AUTHOR_PASSWORD) response = self.client.post( reverse('new_project_version', args=(self.PROJECT_SLUG,)), data={'version': version}) self.test_publish() # Sort the list of version numbers sorted_versions = [] for version in versions: sorted_versions.append([int(n) for n in version.split('.')]) sorted_versions.sort() for (index, vnum) in enumerate(sorted_versions): version = '.'.join(str(n) for n in vnum) project = PublishedProject.objects.get(slug=self.PROJECT_SLUG, version=version) self.assertEqual(project.version_order, index) if index == len(sorted_versions) - 1: self.assertTrue(project.is_latest_version) else: self.assertFalse(project.is_latest_version) self.assertTrue(project.has_other_versions) file_path = os.path.join(project.file_root(), self.EXAMPLE_FILE) license_path = os.path.join(project.file_root(), 'LICENSE.txt') sha256_path = os.path.join(project.file_root(), 'SHA256SUMS.txt') if version != versions[0]: self.assertTrue(os.path.samefile(file_path, file_path0)) self.assertFalse(os.path.samefile(license_path, license_path0)) self.assertFalse(os.path.samefile(sha256_path, sha256_path0)) @requests_mock.Mocker() def test_publish_with_doi(self, mocker): """ Test publishing a project while automatically assigning DOIs. """ # Initial creation of draft DOIs # (console.utility.register_doi) mocker.post('https://api.datacite.example/dois', [ {'text': json.dumps( {'data': {'attributes': {'doi': '10.0000/aaa'}}})}, {'text': json.dumps( {'data': {'attributes': {'doi': '10.0000/bbb'}}})}, ]) # Checking status of DOIs when project is about to be # published (console.utility.get_doi_status) mocker.get('https://api.datacite.example/dois/10.0000/aaa', [ {'text': json.dumps( {'data': {'attributes': {'state': 'draft'}}})}, ]) mocker.get('https://api.datacite.example/dois/10.0000/bbb', [ {'text': json.dumps( {'data': {'attributes': {'state': 'draft'}}})}, ]) # Updating DOI state (console.utility.update_doi) mocker.put('https://api.datacite.example/dois/10.0000/aaa') mocker.put('https://api.datacite.example/dois/10.0000/bbb') with self.settings( DATACITE_API_URL='https://api.datacite.example/dois', DATACITE_USER='admin', DATACITE_PASSWORD='<PASSWORD>', DATACITE_PREFIX='10.0000'): self.test_publish() project = PublishedProject.objects.get(slug='mitbih') self.assertEqual(project.doi, '10.0000/aaa') self.assertEqual(project.core_project.doi, '10.0000/bbb') self.assertEqual(mocker.call_count, 4) <file_sep>from django.contrib import admin from django.contrib.auth.models import Group from django.contrib.auth.admin import UserAdmin as DefaultUserAdmin from user import models from user import forms class UserAdmin(DefaultUserAdmin): """ The class for enabling the django admin interface to interact with the custom User. Many fields are inherited from the built-in django UserAdmin. We have to override fields to make this custom admin compatible with our custom model. """ # The forms to add and change user instances in the admin panel form = forms.UserChangeForm add_form = forms.RegistrationForm # The fields to be used in displaying the User model. list_display = ('email', 'is_active', 'is_admin', 'profile') # Filtering options when displaying objects list_filter = ('is_admin',) # Controls the layout of 'add' and 'change' pages. # List of tuple pairs. Element 1 is name, 2 is dict of field options. # For editing users fieldsets = ( (None, {'fields': ('email', 'password', 'is_admin', 'is_active', 'last_login', 'join_date')}), ) # add_fieldsets is not a standard ModelAdmin attribute. UserAdmin # overrides get_fieldsets to use this attribute when creating a user. add_fieldsets = ( (None, { 'classes': ('wide',), 'fields': ('email', '<PASSWORD>1', '<PASSWORD>', 'is_admin')} ), ) search_fields = ('email',) ordering = ('email',) filter_horizontal = () readonly_fields = ('join_date',) # Not using Django's built-in permissions. Unregister the model from admin. admin.site.unregister(Group) # Register the custom User model with the custom UserAdmin model admin.site.register(models.User, UserAdmin) admin.site.register(models.Profile) admin.site.register(models.AssociatedEmail) admin.site.register(models.LegacyCredential) admin.site.register(models.CredentialApplication) <file_sep>from django.urls import path, re_path from export import views urlpatterns = [ path('rest/database-list/', views.database_list, name='database_list'), path('rest/software-list/', views.software_list, name='software_list'), path('rest/challenge-list/', views.challenge_list, name='challenge'), path('rest/model-list/', views.model_list, name='model'), path('rest/published-stats-list/', views.published_stats_list, name='published_stats_list'), ] <file_sep>from django.urls import path from lightwave import views urlpatterns = [ path('', views.lightwave_home, name='lightwave_home'), path('server', views.lightwave_server, name='lightwave_server'), path('projects/<project_slug>/', views.lightwave_project_home, name='lightwave_project_home'), path('projects/<project_slug>/server', views.lightwave_project_server, name='lightwave_project_server'), ] <file_sep>from django.urls import path from notification import views urlpatterns = [ path('news/', views.news, name='news'), path('news/<int:year>/', views.news_year, name='news_year'), path('news/post/<int:news_id>', views.news_by_id, name='news_by_id'), path('feed.xml', views.news_rss, name='news_rss'), ] <file_sep>from collections import OrderedDict from os import path from re import fullmatch from django.contrib import messages from django.http import Http404 from django.shortcuts import render, redirect from django.contrib.contenttypes.models import ContentType from django.db.models.functions import Lower from notification.models import News import notification.utility as notification from physionet.middleware.maintenance import allow_post_during_maintenance from project.models import (License, PublishedProject, Author, ActiveProject, Metadata, ProjectType) from user.forms import ContactForm from project import forms def home(request): """ Homepage """ featured = PublishedProject.objects.filter(featured__isnull=False).order_by('featured')[:6] latest = PublishedProject.objects.filter(is_latest_version=True).order_by('-publish_datetime')[:6] news_pieces = News.objects.all().order_by('-publish_datetime')[:5] front_page_banner = News.objects.filter(front_page_banner=True) return render(request, 'home.html', {'featured': featured, 'latest': latest, 'news_pieces': news_pieces, 'front_page_banner': front_page_banner}) def about_publish(request): """ Instructions for authors """ licenses = OrderedDict() descriptions = OrderedDict() for resource_type in ProjectType.objects.all(): descriptions[resource_type.name] = resource_type.description licenses[resource_type.name] = License.objects.filter( resource_types__contains=str(resource_type.id)).order_by('access_policy') return render(request, 'about/publish.html', {'licenses': licenses, 'descriptions': descriptions}) def license_content(request, license_slug): """ Content for an individual license """ try: license = License.objects.get(slug=license_slug) except License.DoesNotExist: raise Http404() return render(request, 'about/license_content.html', {'license': license}) @allow_post_during_maintenance def about(request): """ About the site content. """ if request.method == 'POST': contact_form = ContactForm(request.POST) if contact_form.is_valid(): notification.send_contact_message(contact_form) messages.success(request, 'Your message has been sent.') contact_form = ContactForm() else: messages.error(request, 'Invalid submission. See form below.') else: contact_form = ContactForm() return render(request, 'about/about.html', {'contact_form': contact_form}) def timeline(request): """ Frequently asked questions """ return render(request, 'about/timeline.html') def citi_course(request): """ Instructions for completing the CITI training course """ return render(request, 'about/citi_course.html') def error_404(request, exception=None): """ View for testing the 404 page. To test, uncomment the URL pattern in urls.py. """ return render(request,'404.html', status=404) def error_403(request, exception=None): """ View for testing the 404 page. To test, uncomment the URL pattern in urls.py. """ return render(request,'403.html', status=403) def error_500(request, exception=None): """ View for testing the 404 page. To test, uncomment the URL pattern in urls.py. """ return render(request, "500.html", status=500) def content_overview(request): """ Temporary content overview """ return render(request, 'about/content_overview.html') def database_overview(request): """ Temporary content overview """ projects = {} for i, policy in Metadata.ACCESS_POLICIES: projects[i] = {} projects[i]['policy'] = policy projects[i]['projects'] = PublishedProject.objects.filter( access_policy=i, resource_type=0, is_latest_version=True ).order_by(Lower('title')) return render(request, 'about/database_index.html', {'projects': projects}) def software_overview(request): """ Temporary content overview """ all_projects = PublishedProject.objects.filter( resource_type=1, is_latest_version=True).order_by(Lower('title')) return render(request, 'about/software_index.html', {'all_projects': all_projects}) def challenge_overview(request): """ Temporary content overview """ all_challenges = PublishedProject.objects.filter(resource_type=2, is_latest_version=True).order_by('-publish_datetime') for challenge in all_challenges: if fullmatch(r'challenge-[0-9]{4}$', challenge.slug): challenge.year = challenge.slug.split('-')[1] if path.exists(path.join(challenge.file_root() , 'sources')): challenge.sources = True if path.exists(path.join(challenge.file_root() , 'sources/index.html')): challenge.sources_index = True if path.exists(path.join(challenge.file_root() , 'papers/index.html')): challenge.papers = True return render(request, 'about/challenge_index.html', {'all_challenges': all_challenges}) def tutorial_overview(request): """ Temporary content overview """ return render(request, 'about/tutorial_index.html') <file_sep>from rest_framework import serializers from project.models import PublishedProject class PublishedProjectSerializer(serializers.ModelSerializer): class Meta: model = PublishedProject fields = ('title', 'version', 'slug', 'abstract', 'main_storage_size', 'compressed_storage_size') <file_sep>from django.urls import path, re_path from search import views import project.views as project_views urlpatterns = [ path('search/topics/', views.topic_search, name='topic_search'), path('search/all-topics/', views.all_topics, name='all_topics'), # published project index pages path('data/', views.database_index, name='database_index'), path('software/', views.software_index, name='software_index'), path('challenge/', views.challenge_index, name='challenge_index'), path('model/', views.model_index, name='model_index'), path('content/', views.content_index, name='content_index'), # published project content re_path('^(?P<anonymous_url>[\w\d]{64})/$', project_views.anonymous_login, name='anonymous_login'), path('content/<project_slug>/', project_views.published_project_latest, name='published_project_latest'), path('content/<project_slug>/<version>/', project_views.published_project, name='published_project'), re_path('^content/(?P<project_slug>[\w\-]+)/(?P<version>[\d\.]+)/(?P<subdir>.+)/$', project_views.published_project, name='published_project_subdir'), path('content/<project_slug>/files-panel/<version>/', project_views.published_files_panel, name='published_files_panel'), re_path('^files/(?P<project_slug>[\w-]+)/(?P<version>[\d\.]+)/(?P<full_file_name>.*)$', project_views.serve_published_project_file, name='serve_published_project_file'), re_path('^content/(?P<project_slug>[\w\-]+)/(?P<version>[\d\.]+)/(?P<full_file_name>.+)$', project_views.display_published_project_file, name='display_published_project_file'), path('content/<project_slug>/get-zip/<version>/', project_views.serve_published_project_zip, name='serve_published_project_zip'), path('content/<project_slug>/view-license/<version>/', project_views.published_project_license, name='published_project_license'), path('sign-dua/<project_slug>/<version>/', project_views.sign_dua, name='sign_dua'), path('request-access/<project_slug>/<version>/', project_views.request_data_access, name='request_data_access'), path('request-access-status/<project_slug>/<version>/', project_views.data_access_request_status, name='data_access_request_status'), path('access-requests/<project_slug>/<version>/<user_id>/', project_views.data_access_request_view, name='data_access_request_view'), path('access-requests/<project_slug>/<version>/', project_views.data_access_requests_overview, name='data_access_requests_overview'), path('manage-reviewers/<project_slug>/<version>/', project_views.manage_data_access_reviewers, name='manage_data_access_reviewers'), path('charts/', views.charts, name='charts'), # Redirect from legacy path('physiobank/', views.physiobank), path('physiobank/database/', views.physiobank), path('physiotools/', views.physiotools), path('physiobank/database/wfdbcal', views.wfdbcal), re_path('^physiobank/database/(?P<project_slug>[\w\-]+)/$', views.redirect_project), re_path('^physiotools/(?P<project_slug>[\w\-]+)/$', views.redirect_project), re_path('^challenge/(?P<year>\w+)/$', views.redirect_challenge_project), ] <file_sep>from errno import ENAMETOOLONG import os from django.http import Http404 from django.shortcuts import redirect from project.fileviews.base import RawFileView from project.fileviews.csv import CSVFileView, GzippedCSVFileView from project.fileviews.image import ImageFileView from project.fileviews.inline import InlineFileView from project.fileviews.text import TextFileView _suffixes = { '.bmp': ImageFileView, '.csv': CSVFileView, '.gif': ImageFileView, '.htm': RawFileView, '.html': RawFileView, '.jpeg': ImageFileView, '.jpg': ImageFileView, '.png': ImageFileView, '.pdf': InlineFileView, '.svg': ImageFileView, } def display_project_file(request, project, file_path): """ Display a file from either a published or unpublished project. The user is assumed to be authorized to view the project. file_path is the name of the file relative to project.file_root(). """ abs_path = os.path.join(project.file_root(), file_path) try: infile = open(abs_path, 'rb') except IsADirectoryError: return redirect(request.path + '/') except (FileNotFoundError, NotADirectoryError): raise Http404() except (IOError, OSError) as err: if err.errno == ENAMETOOLONG: raise Http404() else: raise err with infile: if file_path.endswith('.csv.gz'): cls = GzippedCSVFileView else: (_, suffix) = os.path.splitext(file_path) cls = _suffixes.get(suffix, TextFileView) view = cls(project, file_path, infile) return view.render(request) <file_sep># Generated by Django 2.1.7 on 2019-07-10 21:31 from django.db import migrations, models import django.db.models.deletion from django.conf import settings from django.core.management import call_command from project.models import ProjectType import os def load_fixture(apps, schema_editor): project_types_fixtures = os.path.join(settings.BASE_DIR, 'project', 'fixtures', 'project-types.json') call_command('loaddata', project_types_fixtures) def unload_fixture(apps, schema_editor): ProjectType.objects.all().delete() class Migration(migrations.Migration): dependencies = [ ('project', '0031_auto_20190826_1305'), ] operations = [ migrations.CreateModel( name='ProjectType', fields=[ ('id', models.PositiveSmallIntegerField(primary_key=True, serialize=False)), ('name', models.CharField(max_length=20)), ('description', models.TextField()), ], ), migrations.RunPython(load_fixture, reverse_code=unload_fixture), migrations.AlterField( model_name='activeproject', name='resource_type', field=models.ForeignKey(db_column='resource_type', on_delete=django.db.models.deletion.PROTECT, related_name='activeprojects', to='project.ProjectType'), ), migrations.AlterField( model_name='archivedproject', name='resource_type', field=models.ForeignKey(db_column='resource_type', on_delete=django.db.models.deletion.PROTECT, related_name='archivedprojects', to='project.ProjectType'), ), migrations.AlterField( model_name='publishedproject', name='resource_type', field=models.ForeignKey(db_column='resource_type', on_delete=django.db.models.deletion.PROTECT, related_name='publishedprojects', to='project.ProjectType'), ), ] <file_sep>from django import template import notification.utility as notification register = template.Library() @register.filter(name='task_count_badge') def task_count_badge(item): """ Return a red or green badge indicating the number of elements in an iterable """ if item: context_class = 'danger' else: context_class = 'success' return '<span class="badge badge-pill badge-{}">{}</span>'.format( context_class, len(item)) @register.filter(name='get_verified_emails') def get_verified_emails(user): """ Get a list of non-primary, verified email addresses. """ return user.get_emails(is_verified=True, include_primary=False) <file_sep>from django.conf import settings from django.conf.urls import include from django.contrib import admin from django.urls import path from django.http import HttpResponse from django.conf.urls import handler404, handler500 from physionet import views import lightwave.views as lightwave_views import project.views as project_views handler403 = 'physionet.views.error_403' handler404 = 'physionet.views.error_404' handler500 = 'physionet.views.error_500' urlpatterns = [ # django admin app path('admin/', admin.site.urls), # management console app path('console/', include('console.urls')), # user app path('', include('user.urls')), # project app path('projects/', include('project.urls')), # notification app path('', include('notification.urls')), # search app path('', include('search.urls')), # export app path('', include('export.urls')), path('lightwave/', include('lightwave.urls')), # backward compatibility for LightWAVE path('cgi-bin/lightwave', lightwave_views.lightwave_server), path('', views.home, name='home'), # about pages path('about/publish/', views.about_publish, name='about_publish'), path('about/', views.about, name='about'), path('about/timeline', views.timeline, name='timeline'), path('about/licenses/<license_slug>/', views.license_content, name='license_content'), path('about/citi-course/', views.citi_course, name='citi_course'), # # Custom error pages for testing # path('403.html', views.error_403, name='error_403'), # path('404.html', views.error_404, name='error_404'), # path('500.html', views.error_500, name='error_500'), # temporary content overview pages path('about/content/', views.content_overview, name='content_overview'), path('about/database/', views.database_overview, name='database_overview'), path('about/software/', views.software_overview, name='software_overview'), path('about/challenge/', views.challenge_overview, name='challenge_overview'), path('about/tutorial/', views.tutorial_overview, name='tutorial_overview'), # robots.txt for crawlers path('robots.txt', lambda x: HttpResponse("User-Agent: *\Allow: /", content_type="text/plain"), name="robots_file"), ] if settings.DEBUG: import debug_toolbar # debug toolbar urlpatterns.append(path('__debug__/', include(debug_toolbar.urls))) <file_sep>from datetime import datetime import logging import os import pdb import pytz from django.conf import settings from django.contrib import messages from django.contrib.auth import login from django.contrib.auth.decorators import login_required from django.contrib.auth.tokens import default_token_generator import django.contrib.auth.views as auth_views from django.contrib.sites.shortcuts import get_current_site from django.core.mail import send_mail from django.core.exceptions import ObjectDoesNotExist, PermissionDenied from django.db import IntegrityError from django.forms import inlineformset_factory, HiddenInput, CheckboxInput from django.http import HttpResponse, Http404, HttpResponseRedirect from django.shortcuts import redirect, render from django.template import loader from django.urls import reverse, reverse_lazy from django.utils import timezone from django.utils.crypto import get_random_string from django.utils.encoding import force_bytes, force_text from django.utils.http import urlsafe_base64_encode, urlsafe_base64_decode from django.utils.decorators import method_decorator from django.views.decorators.debug import sensitive_post_parameters from django.db import transaction from django.core.exceptions import ValidationError from requests_oauthlib import OAuth2Session from oauthlib.oauth2.rfc6749.errors import InvalidGrantError from user import forms, validators from user.models import AssociatedEmail, Profile, Orcid, User, CredentialApplication, LegacyCredential, CloudInformation from physionet import utility from physionet.middleware.maintenance import (allow_post_during_maintenance, disallow_during_maintenance, ServiceUnavailable) from project.models import Author, License, PublishedProject, DUASignature from notification.utility import (process_credential_complete, credential_application_request, get_url_prefix, notify_account_registration) logger = logging.getLogger(__name__) @method_decorator(allow_post_during_maintenance, 'dispatch') class LoginView(auth_views.LoginView): template_name = 'user/login.html' authentication_form = forms.LoginForm redirect_authenticated_user = True class LogoutView(auth_views.LogoutView): pass # Request password reset class PasswordResetView(auth_views.PasswordResetView): template_name = 'user/reset_password_request.html' success_url = reverse_lazy('reset_password_sent') email_template_name = 'user/email/reset_password_email.html' # Page shown after reset email has been sent class PasswordResetDoneView(auth_views.PasswordResetDoneView): template_name = 'user/reset_password_sent.html' # Prompt user to enter new password and carry out password reset (if # url is valid) @method_decorator(disallow_during_maintenance, 'dispatch') class PasswordResetConfirmView(auth_views.PasswordResetConfirmView): template_name = 'user/reset_password_confirm.html' success_url = reverse_lazy('reset_password_complete') # Password reset successfully carried out class PasswordResetCompleteView(auth_views.PasswordResetCompleteView): template_name = 'user/reset_password_complete.html' class PasswordChangeView(auth_views.PasswordChangeView): success_url = reverse_lazy('edit_password_complete') template_name = 'user/edit_password.html' login = LoginView.as_view() logout = LogoutView.as_view() reset_password_request = PasswordResetView.as_view() reset_password_sent = PasswordResetDoneView.as_view() reset_password_confirm = PasswordResetConfirmView.as_view() reset_password_complete = PasswordResetCompleteView.as_view() edit_password = PasswordChangeView.as_view() @sensitive_post_parameters('password1', '<PASSWORD>') @disallow_during_maintenance def activate_user(request, uidb64, token): """ Page to active the account of a newly registered user. The user will create the password at this stage and then logged in. """ activation_session_token = '_activation_reset_token' activation_url_token = '<PASSWORD>' title = "Account activation" context = {'title': 'Invalid Activation Link', 'isvalid': False} try: uid = force_text(urlsafe_base64_decode(uidb64)) user = User.objects.get(pk=uid) except (TypeError, ValueError, OverflowError, User.DoesNotExist): user = None if user and user.is_active: messages.success(request, 'The account is active.') return redirect('login') if request.method == 'GET': if token == activation_url_token: session_token = request.session.get(activation_session_token) if default_token_generator.check_token(user, session_token): # If the token is valid, display the password reset form. form = forms.ActivationForm(user=user) return render(request, 'user/activate_user.html', { 'form': form, 'title': title}) else: if default_token_generator.check_token(user, token): # Store the token in the session and redirect to the # password reset form at a URL without the token. That # avoids the possibility of leaking the token in the # HTTP Referer header. request.session[activation_session_token] = token redirect_url = request.path.replace(token, activation_url_token) return HttpResponseRedirect(redirect_url) else: if token == activation_url_token: session_token = request.session.get(activation_session_token) form = forms.ActivationForm(user=user, data=request.POST) if form.is_valid() and default_token_generator.check_token(user, session_token): with transaction.atomic(): user.set_password(form.cleaned_data['<PASSWORD>']) user.is_active = True # Check legacy credentials check_legacy_credentials(user, user.email) user.save() email = user.associated_emails.first() email.verification_date = timezone.now() email.is_verified = True email.save() request.session.pop(activation_session_token) logger.info('User activated - {0}'.format(user.email)) messages.success(request, 'The account has been activated.') login(request, user) return redirect('project_home') return render(request, 'user/activate_user.html', {'form': form, 'title': title}) return render(request, 'user/activate_user_complete.html', context) def check_legacy_credentials(user, email): """ Check whether a user has already beeen credentialed on the old pn site. If so, credential their account and mark the migration. """ legacy_credential = LegacyCredential.objects.filter(email=email, migrated=False) if legacy_credential: legacy_credential = legacy_credential.get() user.is_credentialed = True # All of them are mimic credentialed month, day, year = legacy_credential.mimic_approval_date.split('/') dt = datetime(int(year), int(month), int(day)) dt = pytz.timezone(timezone.get_default_timezone_name()).localize(dt) user.credential_datetime = dt legacy_credential.migrated = True legacy_credential.migration_date = timezone.now() legacy_credential.migrated_user = user legacy_credential.save() user.save() def remove_email(request, email_id): "Remove a non-primary email associated with a user" user = request.user associated_email = AssociatedEmail.objects.get(id=email_id) if associated_email.user == user and not associated_email.is_primary_email: email = associated_email.email associated_email.delete() logger.info('Removed email {0} from user {1}'.format(email, user.id)) messages.success(request, 'Your email: {0} has been removed from your account.'.format(email)) def set_primary_email(request, primary_email_form): "Set the selected email as the primary email" user = request.user if primary_email_form.is_valid(): associated_email = primary_email_form.cleaned_data['associated_email'] # Only do something if they selected a different email if associated_email.email != user.email: logger.info('Primary email changed from: {0} to {1}'.format(user.email, associated_email.email)) user.email = associated_email.email user.save(update_fields=['email']) # Change the email field of author objects belonging to # the user. Warn them if they are the corresponding # author of any projects authors = Author.objects.filter(user=user) authors.update(corresponding_email=associated_email) messages.success(request, 'Your email: {0} has been set as your new primary email.'.format(user.email)) if authors.filter(is_corresponding=True): messages.info(request, 'The corresponding email in all your authoring projects has been set to your new primary email.') def set_public_email(request, public_email_form): "Set the selected email as the public email" user = request.user if public_email_form.is_valid(): associated_email = public_email_form.cleaned_data['associated_email'] current_public_email = user.associated_emails.filter(is_public=True).first() # Only do something if they selected a different email if associated_email != current_public_email: if current_public_email: current_public_email.is_public = False current_public_email.save() # The selection may be None if associated_email: associated_email.is_public = True associated_email.save() messages.success(request, 'Your email: {0} has been set to public.'.format(associated_email.email)) else: messages.success(request, 'Your email: {0} has been set to private.'.format(current_public_email.email)) def add_email(request, add_email_form): user = request.user if add_email_form.is_valid(): token = get_random_string(20) associated_email = AssociatedEmail.objects.create(user=user, email=add_email_form.cleaned_data['email'], verification_token=token) # Send an email to the newly added email with a verification link uidb64 = force_text(urlsafe_base64_encode(force_bytes(associated_email.pk))) subject = "PhysioNet Email Verification" context = { 'name': user.get_full_name(), 'domain': get_current_site(request), 'url_prefix': get_url_prefix(request), 'uidb64': uidb64, 'token': token } body = loader.render_to_string('user/email/verify_email_email.html', context) send_mail(subject, body, settings.DEFAULT_FROM_EMAIL, [add_email_form.cleaned_data['email']], fail_silently=False) messages.success(request, 'A verification link has been sent to: {0}'.format(associated_email.email)) @login_required def edit_emails(request): """ Edit emails page """ user = request.user associated_emails = AssociatedEmail.objects.filter( user=user).order_by('-is_verified', '-is_primary_email') primary_email_form = forms.AssociatedEmailChoiceForm(user=user, selection_type='primary') public_email_form = forms.AssociatedEmailChoiceForm(user=user, selection_type='public') add_email_form = forms.AddEmailForm() if request.method == 'POST': if 'remove_email' in request.POST: # No form. Just get button value. email_id = int(request.POST['remove_email']) remove_email(request, email_id) elif 'set_primary_email' in request.POST: primary_email_form = forms.AssociatedEmailChoiceForm(user=user, selection_type='primary', data=request.POST) set_primary_email(request, primary_email_form) elif 'set_public_email' in request.POST: public_email_form = forms.AssociatedEmailChoiceForm(user=user, selection_type='public', data=request.POST) set_public_email(request, public_email_form) elif 'add_email' in request.POST: add_email_form = forms.AddEmailForm(request.POST) add_email(request, add_email_form) context = {'associated_emails':associated_emails, 'primary_email_form':primary_email_form, 'add_email_form':add_email_form, 'public_email_form':public_email_form} context['messages'] = messages.get_messages(request) return render(request, 'user/edit_emails.html', context) @login_required def edit_profile(request): """ Edit the profile fields """ profile = request.user.profile form = forms.ProfileForm(instance=profile) if request.method == 'POST': if settings.SYSTEM_MAINTENANCE_NO_UPLOAD: # Allow submitting the form, but do not allow the photo to # be modified. if 'delete_photo' in request.POST or request.FILES: raise ServiceUnavailable() if 'edit_profile' in request.POST: # Update the profile and return to the same page. Place a message # at the top of the page: 'your profile has been updated' form = forms.ProfileForm(data=request.POST, files=request.FILES, instance=profile) if form.is_valid(): form.save() messages.success(request, 'Your profile has been updated.') elif 'delete_photo' in request.POST: profile.delete_photo() messages.success(request, 'Your profile photo has been deleted.') if not form.errors: form = forms.ProfileForm(instance=profile) return render(request, 'user/edit_profile.html', {'form':form}) @login_required def edit_orcid(request): """ Send a user to orcid.org for authorization to link to their ORCID account, then redirect them to views/auth_orcid to save their iD and other token information. Also provide the option to unlink their ORCID account from their PhysioNet account. """ if request.method == 'POST': if 'request_orcid' in request.POST: client_id = settings.ORCID_CLIENT_ID redirect_uri = settings.ORCID_REDIRECT_URI scope = list(settings.ORCID_SCOPE.split(",")) oauth = OAuth2Session(client_id, redirect_uri=redirect_uri, scope=scope) authorization_url, state = oauth.authorization_url(settings.ORCID_AUTH_URL) return redirect(authorization_url) if 'remove_orcid' in request.POST: try: Orcid.objects.get(user=request.user).delete() orcid_html = None except ObjectDoesNotExist: messages.error(request, 'Object Does Not Exist Error: tried to unlink an object which does not exist.') orcid_html = None else: try: orcid_html = Orcid.objects.get(user=request.user) except ObjectDoesNotExist: orcid_html = None return render(request, 'user/edit_orcid.html', {'orcid': orcid_html}) @login_required @disallow_during_maintenance def auth_orcid(request): """ Gets a users iD and token information from an ORCID redirect URI after their authorization. Saves the iD and other token information. The access_token / refresh_token can be used to make token exchanges for additional information in the users account. Public information can be read without access to the member API at ORCID. Limited access information requires an institution account with ORCID for access to the member API. The member API can also be used to add new information to a users ORCID profile (ex: a PhysioNet dataset project). See the .env file for an example of how to do token exchanges. """ client_id = settings.ORCID_CLIENT_ID client_secret = settings.ORCID_CLIENT_SECRET redirect_uri = settings.ORCID_REDIRECT_URI scope = list(settings.ORCID_SCOPE.split(",")) oauth = OAuth2Session(client_id, redirect_uri=redirect_uri, scope=scope) params = request.GET.copy() code = params['code'] try: token = oauth.fetch_token(settings.ORCID_TOKEN_URL, code=code, include_client_id=True, client_secret=client_secret) try: validators.validate_orcid_token(token['access_token']) token_valid = True except ValidationError: messages.error(request, 'Validation Error: ORCID token validation failed.') token_valid = False except InvalidGrantError: messages.error(request, 'Invalid Grant Error: authorization code may be expired or invalid.') token_valid = False if token_valid: orcid_profile, _ = Orcid.objects.get_or_create(user=request.user) orcid_profile.orcid_id = token.get('orcid') orcid_profile.name = token.get('name') orcid_profile.access_token = token.get('access_token') orcid_profile.refresh_token = token.get('refresh_token') orcid_profile.token_type = token.get('token_type') orcid_profile.token_scope = token.get('scope') orcid_profile.token_expiration = token.get('expires_at') orcid_profile.full_clean() orcid_profile.save() return redirect('edit_orcid') @login_required def edit_password_complete(request): """ After password has successfully been changed. Need this view because we can't control the edit password view to show a success message. """ return render(request, 'user/edit_password_complete.html') def public_profile(request, username): """ A user's public profile """ if User.objects.filter(username__iexact=username, is_active=True).exists(): public_user = User.objects.get(username__iexact=username) public_email = public_user.associated_emails.filter(is_public=True).first() else: raise Http404() # get list of projects projects = PublishedProject.objects.filter(authors__user=public_user).order_by('-publish_datetime') return render(request, 'user/public_profile.html', { 'public_user':public_user, 'profile':public_user.profile, 'public_email':public_email, 'projects':projects}) def profile_photo(request, username): """ Serve a user's profile photo """ try: user = User.objects.get(username__iexact=username) return utility.serve_file(user.profile.photo.path) except ObjectDoesNotExist: raise Http404() def register(request): """ User registration page """ user = request.user if user.is_authenticated: return redirect('home') if request.method == 'POST': form = forms.RegistrationForm(request.POST) if form.is_valid(): # Create the new user try: user = form.save() except IntegrityError: form.full_clean() if form.is_valid(): raise user = User.objects.get(username=form.data['username']) else: uidb64 = force_text(urlsafe_base64_encode(force_bytes( user.pk))) token = default_token_generator.make_token(user) notify_account_registration(request, user, uidb64, token) return render(request, 'user/register_done.html', { 'email': user.email}) else: form = forms.RegistrationForm() return render(request, 'user/register.html', {'form': form}) @login_required def user_settings(request): """ Settings. Redirect to default - settings/profile Don't call this 'settings' because there's an import called 'settings' """ return redirect('edit_profile') @login_required @disallow_during_maintenance def verify_email(request, uidb64, token): """ Page to verify an associated email """ user = request.user try: uid = force_text(urlsafe_base64_decode(uidb64)) associated_email = AssociatedEmail.objects.get(pk=uid) except (TypeError, ValueError, OverflowError, AssociatedEmail.DoesNotExist): associated_email = None if associated_email is not None and associated_email.user == user: # Test that the token is correct if associated_email.check_token(token): associated_email.verification_date = timezone.now() associated_email.is_verified = True associated_email.save() if not user.is_credentialed: check_legacy_credentials(user, associated_email.email) logger.info('User {0} verified another email {1}'.format(user.id, associated_email)) messages.success(request, 'The email address {} has been verified.'.format( associated_email)) return redirect('edit_emails') logger.warning('Invalid Verification Link') return render(request, 'user/verify_email.html', {'title':'Invalid Verification Link', 'isvalid':False}) @login_required def edit_username(request): """ Edit username settings page """ user = request.user form = forms.UsernameChangeForm(instance=user) if request.method == 'POST': form = forms.UsernameChangeForm(instance=user, data=request.POST) if form.is_valid(): form.save() messages.success(request, 'Your username has been updated.') else: user = User.objects.get(id=user.id) return render(request, 'user/edit_username.html', {'form':form, 'user':user}) @login_required def edit_credentialing(request): """ Credentials settings page. """ if settings.PAUSE_CREDENTIALING: pause_applications = True pause_message = settings.PAUSE_CREDENTIALING_MESSAGE or ( "We are not currently accepting new applications " "for credentialed access." ) else: pause_applications = False pause_message = None applications = CredentialApplication.objects.filter(user=request.user) current_application = applications.filter(status=0).first() if request.method == 'POST' and 'withdraw_credentialing' in request.POST: if current_application: current_application.withdraw(responder=request.user) return render(request, 'user/withdraw_credentialing_success.html') else: messages.error(request, 'The application has already been processed.') return render(request, 'user/edit_credentialing.html', { 'applications': applications, 'pause_applications': pause_applications, 'pause_message': pause_message, 'current_application': current_application}) @login_required def user_credential_applications(request): """ All the credential applications made by a user """ applications = CredentialApplication.objects.filter( user=request.user).order_by('-application_datetime') return render(request, 'user/user_credential_applications.html', {'applications':applications}) @login_required def credential_application(request): """ Page to apply for credentially """ user = request.user license = License.objects.get(id='6') if user.is_credentialed or CredentialApplication.objects.filter( user=user, status=0): return redirect('edit_credentialing') if settings.SYSTEM_MAINTENANCE_NO_UPLOAD: raise ServiceUnavailable() if request.method == 'POST': # We use the individual forms to render the errors in the template # if not all valid personal_form = forms.PersonalCAF(user=user, data=request.POST, prefix="application") training_form = forms.TrainingCAF(data=request.POST, files=request.FILES, prefix="application") research_form = forms.ResearchCAF(data=request.POST, prefix="application") reference_form = forms.ReferenceCAF(data=request.POST, prefix="application", user=user) form = forms.CredentialApplicationForm(user=user, data=request.POST, files=request.FILES, prefix="application") if (personal_form.is_valid() and training_form.is_valid() and reference_form.is_valid() and form.is_valid()) and research_form.is_valid(): application = form.save() credential_application_request(request, application) return render(request, 'user/credential_application_complete.html') else: messages.error(request, 'Invalid submission. See errors below.') else: personal_form = forms.PersonalCAF(user=user, prefix="application") training_form = forms.TrainingCAF(prefix="application") reference_form = forms.ReferenceCAF(prefix="application", user=user) research_form = forms.ResearchCAF(prefix="application") form = None return render(request, 'user/credential_application.html', {'form':form, 'personal_form':personal_form, 'training_form':training_form, 'reference_form':reference_form, 'license':license, 'research_form':research_form}) @login_required def training_report(request, application_slug, attach=True): """ Serve a training report file """ try: application = CredentialApplication.objects.get(slug=application_slug) except ObjectDoesNotExist: raise Http404() if request.user == application.user or request.user.is_admin: try: return utility.serve_file(application.training_completion_report.path, attach=attach) except FileNotFoundError: raise Http404() raise PermissionDenied() @login_required def training_report_view(request, application_slug): """ Wrapper for training_report. Serves the training report in the browser for KP's custom pages. """ return training_report(request, application_slug, attach=False) # @login_required def credential_reference(request, application_slug): """ Page for a reference to verify or reject a credential application """ # application = CredentialApplication.objects.filter( # slug=application_slug, reference_contact_datetime__isnull=False, # reference_response_datetime=None) application = CredentialApplication.objects.filter( slug=application_slug, reference_response_datetime=None) if not application: return redirect('/') application = application.get() form = forms.CredentialReferenceForm(instance=application) if request.method == 'POST': form = forms.CredentialReferenceForm(data=request.POST, instance=application) if form.is_valid(): application = form.save() # Automated email notifying that their reference has denied # their application. if application.reference_response == 1: process_credential_complete(request, application, comments=False) response = 'verifying' if application.reference_response == 2 else 'denying' return render(request, 'user/credential_reference_complete.html', {'response': response, 'application': application}) else: messages.error(request, 'Invalid submission. See errors below.') return render(request, 'user/credential_reference.html', {'form': form, 'application': application}) @login_required def edit_cloud(request): """ Page to add the information for cloud usage. """ user = request.user cloud_info = CloudInformation.objects.get_or_create(user=user)[0] form = forms.CloudForm(instance=cloud_info) if request.method == 'POST': form = forms.CloudForm(instance=cloud_info, data=request.POST) if form.is_valid(): form.save() messages.success(request, 'Your cloud information has been saved.') else: messages.error(request, 'Invalid submission. See errors below.') return render(request, 'user/edit_cloud.html', {'form':form, 'user':user}) @login_required def view_agreements(request): """ View a list of signed agreements in the user profile. """ user = request.user signed = DUASignature.objects.filter(user=user).order_by('-sign_datetime') return render(request, 'user/view_agreements.html', {'user': user, 'signed': signed}) @login_required def view_signed_agreement(request, id): """ View a printable agreement in the user profile. """ user = request.user signed = DUASignature.objects.get(user=user, id=id) return render(request, 'user/view_signed_agreement.html', {'user': user, 'signed': signed}) <file_sep>from django.http import JsonResponse from django.shortcuts import render from django.utils import timezone from export.serializers import PublishedProjectSerializer from project.models import PublishedProject def database_list(request): """ List all published databases """ projects = PublishedProject.objects.filter(resource_type=0).order_by( 'publish_datetime') serializer = PublishedProjectSerializer(projects, many=True) return JsonResponse(serializer.data, safe=False) def software_list(request): """ List all published software projects """ projects = PublishedProject.objects.filter(resource_type=1).order_by( 'publish_datetime') serializer = PublishedProjectSerializer(projects, many=True) return JsonResponse(serializer.data, safe=False) def challenge_list(request): """ List all published software projects """ projects = PublishedProject.objects.filter(resource_type=2).order_by( 'publish_datetime') serializer = PublishedProjectSerializer(projects, many=True) return JsonResponse(serializer.data, safe=False) def model_list(request): """ List all published model projects """ projects = PublishedProject.objects.filter(resource_type=2).order_by( 'publish_datetime') serializer = PublishedProjectSerializer(projects, many=True) return JsonResponse(serializer.data, safe=False) def published_stats_list(request): """ List cumulative stats about projects published. The request may specify the desired resource type """ resource_type = None # Get the desired resource type if specified if 'resource_type' in request.GET and request.GET['resource_type'] in ['0', '1']: resource_type = int(request.GET['resource_type']) if resource_type is None: projects = PublishedProject.objects.all().order_by('publish_datetime') else: projects = PublishedProject.objects.filter( resource_type=resource_type).order_by('publish_datetime') data = [] for year in range(projects[0].publish_datetime.year, timezone.now().year+1): y_projects = projects.filter(publish_datetime__year=year) data.append({"year":year, "num_projects":y_projects.count(), "storage_size":sum(p.main_storage_size for p in y_projects)}) return JsonResponse(data, safe=False) <file_sep>from django.urls import path, re_path from user import views urlpatterns = [ path('login/', views.login, name='login'), path('logout/', views.logout, name='logout'), path('register/', views.register, name='register'), re_path('^activate/(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>[<KEY>]{1,13}-[0-9A-Za-z]{1,20})/$', views.activate_user, name='activate_user'), # Request password reset path('reset-password/', views.reset_password_request, name='reset_password_request'), # Page shown after reset email has been sent path('reset-password/sent/', views.reset_password_sent, name='reset_password_sent'), # Prompt user to enter new password and carry out password reset (if url is valid) re_path('^reset/(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,20})/$', views.reset_password_confirm, name='reset_password_confirm'), # Password reset successfully carried out path('reset/complete/', views.reset_password_complete, name='reset_password_complete'), # Settings path('settings/', views.user_settings, name='user_settings'), path('settings/profile/', views.edit_profile, name='edit_profile'), path('settings/password/', views.edit_password, name='edit_password'), path('settings/password/changed/', views.edit_password_complete, name='edit_password_complete'), path('settings/emails/', views.edit_emails, name='edit_emails'), path('settings/username/', views.edit_username, name='edit_username'), path('settings/cloud/', views.edit_cloud, name='edit_cloud'), path('settings/orcid/', views.edit_orcid, name='edit_orcid'), path('authorcid/', views.auth_orcid, name='auth_orcid'), path('settings/credentialing/', views.edit_credentialing, name='edit_credentialing'), path('settings/credentialing/applications/', views.user_credential_applications, name='user_credential_applications'), path('settings/agreements/', views.view_agreements, name='edit_agreements'), path('settings/agreements/<id>/', views.view_signed_agreement, name='view_signed_agreement'), # Current tokens are 20 characters long and consist of 0-9A-Za-z # Obsolete tokens are 34 characters long and also include a hyphen re_path('^verify/(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>[-0-9A-Za-z]{1,34})/$', views.verify_email, name='verify_email'), # Public user profile path('users/<username>/', views.public_profile, name='public_profile'), path('users/<username>/profile-photo/', views.profile_photo, name='profile_photo'), path('credential-application/', views.credential_application, name='credential_application'), path('credential-reference/<application_slug>/', views.credential_reference, name='credential_reference'), path('credential-applications/<application_slug>/training-report/', views.training_report, name='training_report'), path('credential-applications/<application_slug>/training-report/view/', views.training_report_view, name='training_report_view'), ] <file_sep>""" Command to: - load all fixtures named 'demo-*.*' - create copy the demo media files This should only be called in a clean database, such as after `resetdb` is run. This should generally only be used in development environments. """ import os import shutil from django.conf import settings from django.core.management import call_command from django.core.management.base import BaseCommand from physionet.utility import get_project_apps from lightwave.views import DBCAL_FILE, ORIGINAL_DBCAL_FILE class Command(BaseCommand): def handle(self, *args, **options): # If not in development, prompt warning messages twice if 'development' not in os.environ['DJANGO_SETTINGS_MODULE']: warning_messages = ['You are NOT in the development environment. Are you sure you want to insert demo data? [y/n]', 'The demo data will be mixed with existing data. Are you sure? [y/n]', 'Final warning. Are you ABSOLUTELY SURE? [y/n]'] for i in range(3): choice = input(warning_messages[i]).lower() if choice != 'y': sys.exit('Exiting from load. No actions applied.') print('Continuing loading demo data') # Load licences and software languages site_data_fixtures = os.path.join(settings.BASE_DIR, 'project', 'fixtures', 'site-data.json') call_command('loaddata', site_data_fixtures, verbosity=1) # Load fixtures for default project types project_types_fixtures = os.path.join(settings.BASE_DIR, 'project', 'fixtures', 'project-types.json') call_command('loaddata', project_types_fixtures, verbosity=1) # Load fixtures for default physionet sites physionet_site_fixtures = os.path.join(settings.BASE_DIR, 'physionet', 'fixtures', 'sites.json') call_command('loaddata', physionet_site_fixtures, verbosity=1) # Load other app fixtures project_apps = get_project_apps() demo_fixtures = find_demo_fixtures(project_apps) call_command('loaddata', *demo_fixtures, verbosity=1) # Copy the demo media and static content copy_demo_media() copy_demo_static() print('Copied demo media and static files.') # Make symlink of wfdbcal for lightwave if os.path.exists(ORIGINAL_DBCAL_FILE): os.symlink(ORIGINAL_DBCAL_FILE, DBCAL_FILE) def find_demo_fixtures(project_apps): """ Find non-empty demo fixtures """ demo_fixtures = [] for app in project_apps: fixture = 'demo-{}'.format(app) file_name = os.path.join(settings.BASE_DIR, app, 'fixtures', '{}.json'.format(fixture)) if os.path.exists(file_name) and open(file_name).read(4) != '[\n]\n': demo_fixtures.append(fixture) return demo_fixtures def copy_demo_media(): """ Copy the demo media files into the media root. Copy all items from within the immediate subfolders of the demo media root. """ demo_media_root = os.path.join(settings.DEMO_FILE_ROOT, 'media') for subdir in os.listdir(demo_media_root): demo_subdir = os.path.join(demo_media_root, subdir) target_subdir = os.path.join(settings.MEDIA_ROOT, subdir) for item in [i for i in os.listdir(demo_subdir) if i != '.gitkeep']: shutil.copytree(os.path.join(demo_subdir, item), os.path.join(target_subdir, item)) # Published project files should have been made read-only at # the time of publication ppdir = os.path.join(settings.MEDIA_ROOT, 'published-projects') for dirpath, subdirs, files in os.walk(ppdir): if dirpath != ppdir: for f in files: os.chmod(os.path.join(dirpath, f), 0o444) for d in subdirs: os.chmod(os.path.join(dirpath, d), 0o555) def copy_demo_static(): """ Copy the demo static files into the effective static root. """ demo_static_root = os.path.join(settings.DEMO_FILE_ROOT, 'static') # Either the actual static root if defined, or the staticfiles_dirs effective_static_root = settings.STATIC_ROOT if settings.STATIC_ROOT else settings.STATICFILES_DIRS[0] for subdir in os.listdir(demo_static_root): demo_subdir = os.path.join(demo_static_root, subdir) target_subdir = os.path.join(effective_static_root, subdir) for item in [i for i in os.listdir(demo_subdir) if i != '.gitkeep']: shutil.copytree(os.path.join(demo_subdir, item), os.path.join(target_subdir, item)) # Published project files should have been made read-only at # the time of publication ppdir = os.path.join(effective_static_root, 'published-projects') for dirpath, subdirs, files in os.walk(ppdir): if dirpath != ppdir: for f in files: os.chmod(os.path.join(dirpath, f), 0o444) for d in subdirs: os.chmod(os.path.join(dirpath, d), 0o555) <file_sep>from django.urls import path from console import views urlpatterns = [ path('', views.console_home, name='console_home'), path('editor-home/', views.editor_home, name='editor_home'), # Lists of projects path('unsubmitted-projects/', views.unsubmitted_projects, name='unsubmitted_projects'), path('submitted-projects/', views.submitted_projects, name='submitted_projects'), path('published-projects/', views.published_projects, name='published_projects'), path('rejected-submissions/', views.rejected_submissions, name='rejected_submissions'), path('project-access', views.project_access, name='protected_project_access'), path('project-access-manage/<pid>/', views.project_access_manage, name='project_access_manage'), path('published-projects/<project_slug>/<version>/', views.manage_published_project, name='manage_published_project'), # Individual edit pages path('submitted-projects/<project_slug>/', views.submission_info_redirect, name='submission_info_redirect'), path('submitted-projects/<project_slug>/info/', views.submission_info, name='submission_info'), path('submitted-projects/<project_slug>/edit/', views.edit_submission, name='edit_submission'), path('submitted-projects/<project_slug>/copyedit/', views.copyedit_submission, name='copyedit_submission'), path('submitted-projects/<project_slug>/awaiting-authors/', views.awaiting_authors, name='awaiting_authors'), path('submitted-projects/<project_slug>/publish/', views.publish_submission, name='publish_submission'), path('publish-slug-available/<project_slug>/', views.publish_slug_available, name='publish_slug_available'), path('storage-requests/', views.storage_requests, name='storage_requests'), path('complete-credential-applications/', views.complete_credential_applications, name='complete_credential_applications'), path('complete-credential-applications-mailto/', views.complete_credential_applications_mailto, name='complete_credential_applications_mailto'), path('complete-list-credentialed-people/', views.complete_list_credentialed_people, name='complete_list_credentialed_people'), path('credential-applications/<status>', views.credential_applications, name='credential_applications'), path('known-references/', views.known_references, name='known_references'), path('known-references/search/', views.known_references_search, name='known_references_search'), path('credential_processing/', views.credential_processing, name='credential_processing'), path('credentialed-users/<username>/', views.credentialed_user_info, name='credentialed_user_info'), path('view-credential-applications/<application_slug>/', views.view_credential_application, name='view_credential_application'), path('credential-applications/<application_slug>/process/', views.process_credential_application, name='process_credential_application'), # Download a CSV of the people that have a credentialed DB access path('download_credentialed_users/', views.download_credentialed_users, name="download_credentialed_users"), path('users/search/<group>/', views.users_search, name='users_list_search'), path('users/<group>/', views.users, name='users'), path('user/manage/<username>/', views.user_management, name='user_management'), path('news/', views.news_console, name='news_console'), path('news/add/', views.news_add, name='news_add'), path('news/search/', views.news_search, name='news_search'), path('news/edit/<news_id>/', views.news_edit, name='news_edit'), path('featured/', views.featured_content, name='featured_content'), path('featured/add', views.add_featured, name='add_featured'), # guidelines path('guidelines/review/', views.guidelines_review, name='guidelines_review'), path('user-autocomplete/', views.UserAutocomplete.as_view(), name='user-autocomplete'), # editorial stats path('usage/editorial/stats/', views.editorial_stats, name='editorial_stats'), path('usage/credentialing/stats/', views.credentialing_stats, name='credentialing_stats'), ] <file_sep>import os import pdb import re import logging from urllib.parse import quote_plus from django.conf import settings from django.contrib import messages from django.contrib.admin.views.decorators import staff_member_required from django.contrib.auth.decorators import login_required from django.contrib.auth.views import redirect_to_login from django.contrib.contenttypes.forms import generic_inlineformset_factory from django.contrib.contenttypes.models import ContentType from django.contrib.sites.shortcuts import get_current_site from django.core.exceptions import (ObjectDoesNotExist, PermissionDenied, ValidationError) from django.db import transaction from django.forms import (formset_factory, inlineformset_factory, modelformset_factory) from django.http import HttpResponse, Http404,JsonResponse, HttpResponseRedirect from django.http import HttpResponseForbidden from django.shortcuts import render, redirect, get_object_or_404 from django.template import loader from django.urls import reverse from django.utils import timezone from django.utils.html import format_html, format_html_join from project.fileviews import display_project_file from project import forms from project.models import (Affiliation, Author, AuthorInvitation, License, ActiveProject, PublishedProject, StorageRequest, Reference, DataAccess, ArchivedProject, ProgrammingLanguage, Topic, Contact, Publication, PublishedAuthor, EditLog, CopyeditLog, DUASignature, CoreProject, GCP, AnonymousAccess, DataAccessRequest, DataAccessRequestReviewer) from project import utility from project.validators import validate_filename import notification.utility as notification from physionet.forms import set_saved_fields_cookie from physionet.middleware.maintenance import ServiceUnavailable from physionet.utility import serve_file from user.forms import ProfileForm, AssociatedEmailChoiceForm from user.models import User, CloudInformation, CredentialApplication, LegacyCredential from dal import autocomplete from ast import literal_eval LOGGER = logging.getLogger(__name__) def project_auth(auth_mode=0, post_auth_mode=0): """ Authorization decorator for project. Also adds project information to kwargs. auth_mode is one of the following: - 0 : the user must be an author. - 1 : the user must be the submitting author. - 2 : the user must be an author or an admin - 3 : the user must be an author or an admin or be authenticated with a passphrase post_auth_mode is one of the following and applies only to post: - 0 : no additional check - 1 : the user must be an author, and the project must be in one of its author editable stages. - 2 : the user must be the submitting author, and the project must be in one of its author editable stages. """ def real_decorator(base_view): def view_wrapper(request, *args, **kwargs): # Verify project try: project = ActiveProject.objects.get( slug=kwargs['project_slug']) except ObjectDoesNotExist: raise PermissionDenied() # Authenticate passphrase for anonymous access an_url = request.get_signed_cookie('anonymousaccess', None, max_age=60*60) has_passphrase = project.get_anonymous_url() == an_url # Get user user = request.user # Requires login if passphrase is non-existent if not has_passphrase and not user.is_authenticated: return redirect_to_login(request.get_full_path()) # Verify user's role in project authors = project.authors.all().order_by('display_order') is_author = not user.is_anonymous and bool(authors.filter(user=user)) is_submitting = (user == authors.get(is_submitting=True).user) # Authentication if auth_mode == 0: allow = is_author elif auth_mode == 1: allow = is_submitting elif auth_mode == 2: allow = is_author or user.is_admin elif auth_mode == 3: allow = has_passphrase or is_author or user.is_admin else: allow = False # Post authentication if request.method == 'POST': if post_auth_mode == 1: allow = is_author and project.author_editable() elif post_auth_mode == 2: allow = is_submitting and project.author_editable() # Render if allow: kwargs['user'] = user kwargs['project'] = project kwargs['authors'] = authors kwargs['is_author'] = is_author kwargs['is_submitting'] = is_submitting kwargs['has_passphrase'] = has_passphrase return base_view(request, *args, **kwargs) raise PermissionDenied() return view_wrapper return real_decorator def process_invitation_response(request, invitation_response_formset): """ Process an invitation response. Helper function to view: project_home """ user = request.user invitation_id = int(request.POST['invitation_response']) for invitation_response_form in invitation_response_formset: # Only process the response that was submitted if invitation_response_form.instance.id == invitation_id: invitation_response_form.user = user if invitation_response_form.is_valid(): # Update this invitation, and any other one made to the # same user, project, and invitation type invitation = invitation_response_form.instance project = invitation.project invitations = AuthorInvitation.objects.filter(is_active=True, email__in=user.get_emails(), project=project) affected_emails = [i.email for i in invitations] invitations.update(response=invitation.response, response_datetime=timezone.now(), is_active=False) # Create a new Author object author_imported = False if invitation.response: author = Author.objects.create(project=project, user=user, display_order=project.authors.count() + 1, corresponding_email=user.get_primary_email()) author_imported = author.import_profile_info() notification.invitation_response_notify(invitation, affected_emails) messages.success(request,'The invitation has been {0}.'.format( notification.RESPONSE_ACTIONS[invitation.response])) if not author_imported and invitation.response: return True, project elif invitation.response: return False, project return False, False @login_required def project_home(request): """ Project home page, listing: - active projects - published projects - project invitations and response form """ user = request.user InvitationResponseFormSet = modelformset_factory(AuthorInvitation, form=forms.InvitationResponseForm, extra=0) active_authors = Author.objects.filter(user=user, content_type=ContentType.objects.get_for_model(ActiveProject)) archived_authors = Author.objects.filter(user=user, content_type=ContentType.objects.get_for_model(ArchivedProject)) published_authors = PublishedAuthor.objects.filter(user=user, project__is_latest_version=True) request_reviewers = DataAccessRequestReviewer.objects.filter(reviewer=user, is_revoked=False, project__is_latest_version=True) # Get the various projects. projects = [a.project for a in active_authors] published_projects = [a.project for a in published_authors] + [ a.project for a in request_reviewers] for p in published_projects: p.new_button = p.can_publish_new(user) p.requests_button = p.can_approve_requests(user) p.manage_reviewers_button = p.can_manage_data_access_reviewers(user) if request.method == 'POST' and 'invitation_response' in request.POST.keys(): author_qs = AuthorInvitation.get_user_invitations(user) invitation_response_formset = InvitationResponseFormSet(request.POST, queryset=author_qs) imported, project = process_invitation_response(request, invitation_response_formset) if project: if imported: messages.info(request, 'Please fill in the affiliation at the end of the page.') return redirect('project_authors', project_slug=project.slug) pending_author_approvals = [] missing_affiliations = [] for p in projects: if (p.submission_status == 50 and not p.authors.get(user=user).approval_datetime): pending_author_approvals.append(p) if (p.submission_status == 0 and p.authors.get(user=user).affiliations.count() == 0): missing_affiliations.append( [p, p.authors.get(user=user).creation_date]) rejected_projects = [a.project for a in archived_authors if a.project.archive_reason == 3] invitation_response_formset = InvitationResponseFormSet( queryset=AuthorInvitation.get_user_invitations(user)) data_access_requests = DataAccessRequest.objects.filter( project__in=[p for p in published_projects if p.can_approve_requests(user)], status=0) return render(request, 'project/project_home.html', { 'projects': projects, 'published_projects': published_projects, 'rejected_projects': rejected_projects, 'missing_affiliations': missing_affiliations, 'pending_author_approvals': pending_author_approvals, 'invitation_response_formset': invitation_response_formset, 'data_access_requests': data_access_requests }) @login_required def create_project(request): if settings.SYSTEM_MAINTENANCE_NO_UPLOAD: raise ServiceUnavailable() user = request.user n_submitting = Author.objects.filter(user=user, is_submitting=True, content_type=ContentType.objects.get_for_model(ActiveProject)).count() if n_submitting >= ActiveProject.MAX_SUBMITTING_PROJECTS: return render(request, 'project/project_limit_reached.html', {'max_projects':ActiveProject.MAX_SUBMITTING_PROJECTS}) if request.method == 'POST': form = forms.CreateProjectForm(user=user, data=request.POST) if form.is_valid(): project = form.save() response = redirect('project_overview', project_slug=project.slug) set_saved_fields_cookie(form, request.path, response) return response else: form = forms.CreateProjectForm(user=user) return render(request, 'project/create_project.html', {'form':form}) @login_required def new_project_version(request, project_slug): """ Publish a new version of a project """ if settings.SYSTEM_MAINTENANCE_NO_UPLOAD: raise ServiceUnavailable() user = request.user n_submitting = Author.objects.filter(user=user, is_submitting=True, content_type=ContentType.objects.get_for_model(ActiveProject)).count() if n_submitting >= ActiveProject.MAX_SUBMITTING_PROJECTS: return render(request, 'project/project_limit_reached.html', {'max_projects':ActiveProject.MAX_SUBMITTING_PROJECTS}) previous_projects = PublishedProject.objects.filter( slug=project_slug).order_by('-version_order') latest_project = previous_projects.first() # Only submitting author can make new. Also can only have one new version # of this project out at a time. if not latest_project.can_publish_new(user): return redirect('project_home') if request.method == 'POST': form = forms.NewProjectVersionForm(user=user, latest_project=latest_project, previous_projects=previous_projects, data=request.POST) if form.is_valid(): project = form.save() return redirect('project_overview', project_slug=project.slug) else: form = forms.NewProjectVersionForm(user=user, latest_project=latest_project, previous_projects=previous_projects) return render(request, 'project/new_project_version.html', {'form':form, 'project':latest_project, 'previous_projects':previous_projects}) def project_overview_redirect(request, project_slug): return redirect('project_overview', project_slug=project_slug) @project_auth(auth_mode=0) def project_overview(request, project_slug, **kwargs): """ Overview page of a project """ project, is_submitting = kwargs['project'], kwargs['is_submitting'] under_submission = project.under_submission() if request.method == 'POST' and 'delete_project' in request.POST and is_submitting and not under_submission: project.fake_delete() return redirect('delete_project_success') return render(request, 'project/project_overview.html', {'project':project, 'is_submitting':is_submitting, 'under_submission':under_submission, 'submitting_author':kwargs['authors'].get(is_submitting=True)}) @login_required def delete_project_success(request): return render(request, 'project/delete_project_success.html') def edit_affiliations(request, affiliation_formset): """ Edit affiliation information Helper function for `project_authors`. """ if affiliation_formset.is_valid(): affiliation_formset.save() messages.success(request, 'Your author affiliations have been updated') return True else: messages.error(request, 'Submission unsuccessful. See form for errors.') def remove_author(request, author_id, project, authors): """ Remove an author from a project Helper function for `project_authors`. """ rm_author = Author.objects.filter(id=author_id) if rm_author: rm_author = rm_author.get() else: raise Http404() if rm_author in authors: # Reset the corresponding author if necessary if rm_author.is_corresponding: submitting_author = authors.get(is_submitting=True) submitting_author.is_corresponding = True submitting_author.save() # Other author orders may have to be decreased when this author # is removed higher_authors = authors.filter(display_order__gt=rm_author.display_order) rm_author.delete() if higher_authors: for author in higher_authors: author.display_order -= 1 author.save() messages.success(request, 'The author has been removed from the project') def cancel_invitation(request, invitation_id, project): """ Cancel an author invitation for a project. Helper function for `project_authors`. """ invitation = AuthorInvitation.objects.filter(id=invitation_id) if invitation: invitation = invitation.get() else: raise Http404() if invitation.project == project: invitation.delete() messages.success(request, 'The invitation has been cancelled') @project_auth(auth_mode=1, post_auth_mode=2) def move_author(request, project_slug, **kwargs): """ Change an author display order. Return the updated authors list html if successful. Called via ajax. """ project, authors, is_submitting = (kwargs[k] for k in ('project', 'authors', 'is_submitting')) if request.method == 'POST': author = authors.get(id=int(request.POST['author_id'])) direction = request.POST['direction'] n_authors = authors.count() if n_authors > 1: if direction == 'up' and 1 < author.display_order <= n_authors: swap_author = authors.get(display_order=author.display_order - 1) elif direction == 'down' and 1 <= author.display_order < n_authors: swap_author = authors.get(display_order=author.display_order + 1) else: raise Http404() with transaction.atomic(): orig_order = author.display_order swap_order = swap_author.display_order author.display_order = 0 author.save(update_fields=('display_order',)) swap_author.display_order = orig_order swap_author.save(update_fields=('display_order',)) author.display_order = swap_order author.save(update_fields=('display_order',)) authors = project.get_author_info() return render(request, 'project/author_list.html', {'project':project, 'authors':authors, 'is_submitting':is_submitting}) raise Http404() @project_auth(auth_mode=0, post_auth_mode=1) def edit_affiliation(request, project_slug, **kwargs): """ Function accessed via ajax for editing an author's affiliation in a formset. Either add the first form, or remove an affiliation, returning the rendered template of the formset. """ project, authors = kwargs['project'], kwargs['authors'] author = authors.get(user=request.user) if project.submission_status not in [0, 30]: raise Http404() # Reload the formset with the first empty form if request.method == 'GET' and 'add_first' in request.GET: extra_forms = 1 # Remove an object elif request.method == 'POST' and 'remove_id' in request.POST: extra_forms = 0 item_id = int(request.POST['remove_id']) # Make sure that the affiliation belongs to the user affiliation = Affiliation.objects.get(id=item_id) if author == affiliation.author: affiliation.delete() else: raise Http404() AffiliationFormSet = inlineformset_factory(parent_model=Author, model=Affiliation, fields=('name',), extra=extra_forms, max_num=forms.AffiliationFormSet.max_forms, can_delete=False, formset=forms.AffiliationFormSet, validate_max=True) formset = AffiliationFormSet(instance=author) edit_url = reverse('edit_affiliation', args=[project.slug]) return render(request, 'project/item_list.html', {'formset':formset, 'item':'affiliation', 'item_label':formset.item_label, 'form_name':formset.form_name, 'add_item_url':edit_url, 'remove_item_url':edit_url}) @project_auth(auth_mode=0, post_auth_mode=1) def project_authors(request, project_slug, **kwargs): """ Page displaying author information and actions. """ user, project, authors, is_submitting, = (kwargs[k] for k in ('user', 'project', 'authors', 'is_submitting')) author = authors.get(user=user) AffiliationFormSet = inlineformset_factory(parent_model=Author, model=Affiliation, fields=('name',), extra=0, max_num=forms.AffiliationFormSet.max_forms, can_delete=False, formset = forms.AffiliationFormSet, validate_max=True) affiliation_formset = AffiliationFormSet(instance=author) if is_submitting: invite_author_form = forms.InviteAuthorForm(project=project, inviter=user) corresponding_author_form = forms.CorrespondingAuthorForm( project=project) else: invite_author_form, corresponding_author_form = None, None if author.is_corresponding: corresponding_email_form = AssociatedEmailChoiceForm( user=user, selection_type='corresponding', author=author) else: corresponding_email_form = None if request.method == 'POST': if 'edit_affiliations' in request.POST: affiliation_formset = AffiliationFormSet(instance=author, data=request.POST) if edit_affiliations(request, affiliation_formset): affiliation_formset = AffiliationFormSet( instance=author) elif 'invite_author' in request.POST and is_submitting: invite_author_form = forms.InviteAuthorForm(project=project, inviter=user, data=request.POST) if invite_author_form.is_valid(): invite_author_form.save() target_email = invite_author_form.cleaned_data['email'] notification.invitation_notify(request, invite_author_form, target_email) messages.success(request, 'An invitation has been sent to: {0}'.format(target_email)) invite_author_form = forms.InviteAuthorForm(project, user) else: messages.error(request, 'Submission unsuccessful. See form for errors.') elif 'remove_author' in request.POST and is_submitting: # No form. Just get button value. author_id = int(request.POST['remove_author']) remove_author(request, author_id, project, authors) elif 'cancel_invitation' in request.POST and is_submitting: # No form. Just get button value. invitation_id = int(request.POST['cancel_invitation']) cancel_invitation(request, invitation_id, project) elif 'corresponding_author' in request.POST and is_submitting: corresponding_author_form = forms.CorrespondingAuthorForm( project=project, data=request.POST) if corresponding_author_form.is_valid(): corresponding_author_form.update_corresponder() messages.success(request, 'The corresponding author has been updated.') else: messages.error(request, 'Submission unsuccessful. See form for errors.') elif 'corresponding_email' in request.POST and author.is_corresponding: corresponding_email_form = AssociatedEmailChoiceForm( user=user, selection_type='corresponding', author=author, data=request.POST) if corresponding_email_form.is_valid(): author.corresponding_email = corresponding_email_form.cleaned_data['associated_email'] author.save() messages.success(request, 'Your corresponding email has been updated.') else: messages.error(request, 'Submission unsuccessful. See form for errors.') authors = project.get_author_info() invitations = project.authorinvitations.filter(is_active=True) edit_affiliations_url = reverse('edit_affiliation', args=[project.slug]) return render(request, 'project/project_authors.html', {'project':project, 'authors':authors, 'invitations':invitations, 'affiliation_formset':affiliation_formset, 'invite_author_form':invite_author_form, 'corresponding_author_form':corresponding_author_form, 'corresponding_email_form':corresponding_email_form, 'add_item_url':edit_affiliations_url, 'remove_item_url':edit_affiliations_url, 'is_submitting':is_submitting}) def edit_content_item(request, project_slug): """ Function accessed via ajax for editing a project's related item in a formset. Either add the first form, or remove an item, returning the rendered template of the formset. Accessed by submitting authors during edit stage, or editor during copyedit stage """ user = request.user project = ActiveProject.objects.filter(slug=project_slug) if project: project = project.get() else: raise Http404() is_submitting = bool(project.authors.filter(user=user, is_submitting=True)) if not (is_submitting and project.author_editable()) and not (project.copyeditable() and user == project.editor): raise Http404() model_dict = {'reference': Reference, 'publication': Publication, 'topic': Topic} # Whether the item relation is generic is_generic_relation = {'reference': True, 'publication':True, 'topic': True} custom_formsets = {'reference':forms.ReferenceFormSet, 'publication':forms.PublicationFormSet, 'topic':forms.TopicFormSet} # The fields of each formset content_item_fields = {'reference': ('description',), 'publication': ('citation', 'url'), 'topic': ('description',)} # Reload the formset with the first empty form if request.method == 'GET' and 'add_first' in request.GET: item = request.GET['item'] model = model_dict[item] extra_forms = 1 # Remove an object elif request.method == 'POST' and 'remove_id' in request.POST: item = request.POST['item'] model = model_dict[item] extra_forms = 0 item_id = int(request.POST['remove_id']) model.objects.filter(id=item_id).delete() # Create the formset if is_generic_relation[item]: ItemFormSet = generic_inlineformset_factory(model, fields=content_item_fields[item], extra=extra_forms, max_num=custom_formsets[item].max_forms, can_delete=False, formset=custom_formsets[item], validate_max=True) else: ItemFormSet = inlineformset_factory(parent_model=ActiveProject, model=model, fields=content_item_fields[item], extra=extra_forms, max_num=custom_formsets[item].max_forms, can_delete=False, formset=custom_formsets[item], validate_max=True) formset = ItemFormSet(instance=project) edit_url = reverse('edit_content_item', args=[project.slug]) return render(request, 'project/item_list.html', {'formset':formset, 'item':item, 'item_label':formset.item_label, 'form_name':formset.form_name, 'add_item_url':edit_url, 'remove_item_url':edit_url}) @project_auth(auth_mode=0, post_auth_mode=2) def project_content(request, project_slug, **kwargs): """ For editing project content """ user, project, authors, is_submitting = (kwargs[k] for k in ('user', 'project', 'authors', 'is_submitting')) if is_submitting and project.author_editable(): editable = True else: editable = False # There are several forms for different types of content ReferenceFormSet = generic_inlineformset_factory(Reference, fields=('description',), extra=0, max_num=forms.ReferenceFormSet.max_forms, can_delete=False, formset=forms.ReferenceFormSet, validate_max=True) description_form = forms.ContentForm(resource_type=project.resource_type.id, instance=project, editable=editable) reference_formset = ReferenceFormSet(instance=project) saved = False if request.method == 'POST': description_form = forms.ContentForm( resource_type=project.resource_type.id, data=request.POST, instance=project, editable=editable) reference_formset = ReferenceFormSet(request.POST, instance=project) if description_form.is_valid() and reference_formset.is_valid(): saved = True description_form.save() reference_formset.save() messages.success(request, 'Your project content has been updated.') reference_formset = ReferenceFormSet(instance=project) else: messages.error(request, 'Invalid submission. See errors below.') edit_url = reverse('edit_content_item', args=[project.slug]) response = render(request, 'project/project_content.html', {'project':project, 'description_form':description_form, 'reference_formset':reference_formset, 'messages':messages.get_messages(request), 'is_submitting':is_submitting, 'add_item_url':edit_url, 'remove_item_url':edit_url}) if saved: set_saved_fields_cookie(description_form, request.path, response) return response @project_auth(auth_mode=0, post_auth_mode=2) def project_access(request, project_slug, **kwargs): """ Page to edit project access policy """ user, project, passphrase = kwargs['user'], kwargs['project'], '' is_submitting = kwargs['is_submitting'] if is_submitting and project.author_editable(): editable = True else: editable = False if 'access_policy' in request.POST: # The first validation is to check for valid access policy choice access_form = forms.AccessMetadataForm(data=request.POST, instance=project, editable=editable) if access_form.is_valid(): # The second validation is to check for valid license choice access_form.set_license_queryset( access_policy=access_form.cleaned_data['access_policy']) if access_form.is_valid(): access_form.save() messages.success(request, 'Your access metadata has been updated.') else: messages.error(request, 'Invalid submission. See errors below.') else: # Access form access_form = forms.AccessMetadataForm(instance=project, editable=editable) access_form.set_license_queryset(access_policy=project.access_policy) return render(request, 'project/project_access.html', {'project':project, 'access_form':access_form, 'is_submitting':kwargs['is_submitting']}) def load_license(request, project_slug): """ Reload the license input queryset with the right options for the access form's current access policy choice. Called via ajax. """ user = request.user project = ActiveProject.objects.filter(slug=project_slug) if project: project = project.get() else: raise Http404() form = forms.AccessMetadataForm(instance=project) form.set_license_queryset(access_policy=int(request.GET['access_policy'])) return render(request, 'project/license_input.html', {'form':form}) @project_auth(auth_mode=0, post_auth_mode=2) def project_discovery(request, project_slug, **kwargs): """ Page to edit external project discovery """ project, is_submitting = (kwargs[k] for k in ('project', 'is_submitting')) if is_submitting and project.author_editable(): editable = True else: editable = False TopicFormSet = generic_inlineformset_factory(Topic, fields=('description',), extra=0, max_num=forms.TopicFormSet.max_forms, can_delete=False, formset=forms.TopicFormSet, validate_max=True) PublicationFormSet = generic_inlineformset_factory(Publication, fields=('citation', 'url'), extra=0, max_num=forms.PublicationFormSet.max_forms, can_delete=False, formset=forms.PublicationFormSet, validate_max=True) discovery_form = forms.DiscoveryForm( resource_type=project.resource_type.id, instance=project, editable=editable) publication_formset = PublicationFormSet(instance=project) topic_formset = TopicFormSet(instance=project) if request.method == 'POST': discovery_form = forms.DiscoveryForm( resource_type=project.resource_type.id, data=request.POST, instance=project, editable=editable) publication_formset = PublicationFormSet(request.POST, instance=project) topic_formset = TopicFormSet(request.POST, instance=project) if discovery_form.is_valid() and publication_formset.is_valid() and topic_formset.is_valid(): discovery_form.save() publication_formset.save() topic_formset.save() messages.success(request, 'Your discovery information has been updated.') topic_formset = TopicFormSet(instance=project) publication_formset = PublicationFormSet(instance=project) else: messages.error(request, 'Invalid submission. See errors below.') edit_url = reverse('edit_content_item', args=[project.slug]) return render(request, 'project/project_discovery.html', {'project':project, 'discovery_form':discovery_form, 'publication_formset':publication_formset, 'topic_formset':topic_formset, 'add_item_url':edit_url, 'remove_item_url':edit_url, 'is_submitting':is_submitting}) class ProjectAutocomplete(autocomplete.Select2QuerySetView): def get_queryset(self): qs = PublishedProject.objects.all() if self.q: qs = qs.filter(title__icontains=self.q) return qs def get_file_forms(project, subdir, display_dirs): """ Get the file processing forms """ upload_files_form = forms.UploadFilesForm(project=project) create_folder_form = forms.CreateFolderForm(project=project) rename_item_form = forms.RenameItemForm(project=project) move_items_form = forms.MoveItemsForm(project=project, subdir=subdir, display_dirs=display_dirs) delete_items_form = forms.DeleteItemsForm(project=project) return (upload_files_form, create_folder_form, rename_item_form, move_items_form, delete_items_form) def get_project_file_info(project, subdir): """ Get the files, directories, and breadcrumb info for a project's subdirectory. Helper function for generating the files panel """ display_files = display_dirs = () try: display_files, display_dirs = project.get_directory_content( subdir=subdir) file_error = None except (FileNotFoundError, ValidationError): file_error = 'Directory not found' except OSError: file_error = 'Unable to read directory' # Breadcrumbs dir_breadcrumbs = utility.get_dir_breadcrumbs(subdir) parent_dir = os.path.split(subdir)[0] return display_files, display_dirs, dir_breadcrumbs, parent_dir, file_error def get_project_file_warning(display_files, display_dirs, subdir): """ Check for invalid or otherwise problematic file names. """ lower_names = {} bad_names = [] case_conflicts = [] for l in (display_dirs, display_files): for f in l: try: validate_filename(f.name) except ValidationError: bad_names.append(f.name) else: lower_name = f.name.lower() try: other_name = lower_names[lower_name] case_conflicts.append((other_name, f.name)) except KeyError: lower_names[lower_name] = f.name if bad_names or case_conflicts: text = 'One or more files must be renamed before publication:<ul>' if bad_names: text += '<li>' if len(bad_names) == 1: text += 'Invalid file name: ' else: text += 'Invalid file names: ' text += format_html_join(', ', '<strong>{}</strong>', ([n] for n in bad_names[0:4])) if len(bad_names) > 4: text += ', and {} more'.format(len(bad_names) - 4) text += '</li>' if case_conflicts: text += '<li>' text += 'Conflicting file names: ' text += format_html('<strong>{}</strong> and <strong>{}</strong>', case_conflicts[0][0], case_conflicts[0][1]) if len(case_conflicts) > 1: text += ', and {} more'.format(len(case_conflicts) - 1) text += '</ul>' return text @project_auth(auth_mode=2) def project_files_panel(request, project_slug, **kwargs): """ Return the file panel for the project, along with the forms used to manipulate them. Called via ajax to navigate directories. """ project, is_submitting = (kwargs[k] for k in ('project', 'is_submitting')) is_editor = request.user == project.editor subdir = request.GET['subdir'] if is_submitting and project.author_editable(): files_editable = True elif is_editor and project.copyeditable(): files_editable = True else: files_editable = False if not request.is_ajax(): return redirect('project_files', project_slug=project_slug) (display_files, display_dirs, dir_breadcrumbs, parent_dir, file_error) = get_project_file_info(project=project, subdir=subdir) file_warning = get_project_file_warning(display_files, display_dirs, subdir) (upload_files_form, create_folder_form, rename_item_form, move_items_form, delete_items_form) = get_file_forms( project=project, subdir=subdir, display_dirs=display_dirs) return render(request, 'project/edit_files_panel.html', {'project':project, 'subdir':subdir, 'file_error':file_error, 'dir_breadcrumbs':dir_breadcrumbs, 'parent_dir':parent_dir, 'display_files':display_files, 'display_dirs':display_dirs, 'file_warning':file_warning, 'upload_files_form':upload_files_form, 'create_folder_form':create_folder_form, 'rename_item_form':rename_item_form, 'move_items_form':move_items_form, 'delete_items_form':delete_items_form, 'is_submitting':is_submitting, 'is_editor':is_editor, 'files_editable':files_editable}) def process_items(request, form): """ Process the file manipulation items with the appropriate form and action. Returns the working subdirectory. Helper function for `project_files`. """ if form.is_valid(): success_msg, errors = form.perform_action() form.project.content_modified() if errors: messages.error(request, errors) else: messages.success(request, success_msg) return form.cleaned_data['subdir'] else: messages.error(request, utility.get_form_errors(form)) # If there are no errors with the subdir, keep the same subdir. if 'subdir' in form.cleaned_data: return form.cleaned_data['subdir'] else: return '' def process_files_post(request, project): """ Helper function for `project_files` """ if settings.SYSTEM_MAINTENANCE_NO_UPLOAD: raise ServiceUnavailable() if 'upload_files' in request.POST: form = forms.UploadFilesForm(project=project, data=request.POST, files=request.FILES) subdir = process_items(request, form) elif 'create_folder' in request.POST: form = forms.CreateFolderForm(project=project, data=request.POST) subdir = process_items(request, form) elif 'rename_item' in request.POST: form = forms.RenameItemForm(project=project, data=request.POST) subdir = process_items(request, form) elif 'move_items' in request.POST: form = forms.MoveItemsForm(project=project, data=request.POST) subdir = process_items(request, form) elif 'delete_items' in request.POST: form = forms.DeleteItemsForm(project=project, data=request.POST) subdir = process_items(request, form) return subdir @project_auth(auth_mode=0, post_auth_mode=2) def project_files(request, project_slug, subdir='', **kwargs): "View and manipulate files in a project" project, is_submitting = (kwargs[k] for k in ('project', 'is_submitting')) if request.method == 'POST': if not is_submitting: raise Http404() if 'request_storage' in request.POST: storage_request_form = forms.StorageRequestForm(project=project, data=request.POST) if storage_request_form.is_valid(): storage_request_form.instance.project = project storage_request_form.save() notification.storage_request_notify(request, project) messages.success(request, 'Your storage request has been received.') else: messages.error(request, utility.get_form_errors(storage_request_form)) elif 'cancel_request' in request.POST: storage_request = StorageRequest.objects.filter(project=project, is_active=True) if storage_request: storage_request.get().delete() messages.success(request, 'Your storage request has been cancelled.') else: # process the file manipulation post subdir = process_files_post(request, project) if is_submitting and project.author_editable(): files_editable = True else: files_editable = False if settings.SYSTEM_MAINTENANCE_NO_UPLOAD: maintenance_message = settings.SYSTEM_MAINTENANCE_MESSAGE or ( "The site is currently undergoing maintenance, and project " "files cannot be edited. Please try again later." ) files_editable = False else: maintenance_message = None storage_info = project.get_storage_info() storage_request = StorageRequest.objects.filter(project=project, is_active=True).first() # Forms storage_request_form = forms.StorageRequestForm(project=project) if (not storage_request and is_submitting) else None (display_files, display_dirs, dir_breadcrumbs, parent_dir, file_error) = get_project_file_info(project=project, subdir=subdir) file_warning = get_project_file_warning(display_files, display_dirs, subdir) (upload_files_form, create_folder_form, rename_item_form, move_items_form, delete_items_form) = get_file_forms( project=project, subdir=subdir, display_dirs=display_dirs) return render(request, 'project/project_files.html', {'project':project, 'individual_size_limit':utility.readable_size( ActiveProject.INDIVIDUAL_FILE_SIZE_LIMIT), 'subdir':subdir, 'parent_dir':parent_dir, 'display_files':display_files, 'display_dirs':display_dirs, 'storage_info':storage_info, 'storage_request':storage_request, 'storage_request_form':storage_request_form, 'upload_files_form':upload_files_form, 'create_folder_form':create_folder_form, 'rename_item_form':rename_item_form, 'move_items_form':move_items_form, 'delete_items_form':delete_items_form, 'is_submitting':is_submitting, 'dir_breadcrumbs':dir_breadcrumbs, 'file_error':file_error, 'file_warning':file_warning, 'files_editable':files_editable, 'maintenance_message':maintenance_message}) @project_auth(auth_mode=3) def serve_active_project_file(request, project_slug, file_name, **kwargs): """ Serve a file in an active project. file_name is file path relative to the project's file root. """ file_path = os.path.join(kwargs['project'].file_root(), file_name) try: attach = ('download' in request.GET) # Temporary workaround: Chromium doesn't permit viewing PDF # files in sandboxed mode: # https://bugs.chromium.org/p/chromium/issues/detail?id=271452 # Until this is fixed, disable CSP sandbox for PDF files when # viewed by the authors. if file_path.endswith('.pdf') and kwargs['is_author']: sandbox = False else: sandbox = True return serve_file(file_path, attach=attach, sandbox=sandbox) except IsADirectoryError: return redirect(request.path + '/') @project_auth(auth_mode=3) def display_active_project_file(request, project_slug, file_name, **kwargs): """ Display a file in an active project. file_name is file path relative to the project's file root. """ return display_project_file(request, kwargs['project'], file_name) @project_auth(auth_mode=3) def preview_files_panel(request, project_slug, **kwargs): """ Return the file panel for the project, along with the forms used to manipulate them. Called via ajax to navigate directories. """ project = kwargs['project'] subdir = request.GET['subdir'] if not request.is_ajax(): return redirect('project_preview', project_slug=project_slug) (display_files, display_dirs, dir_breadcrumbs, parent_dir, file_error) = get_project_file_info(project=project, subdir=subdir) files_panel_url = reverse('preview_files_panel', args=(project.slug,)) file_warning = get_project_file_warning(display_files, display_dirs, subdir) return render(request, 'project/files_panel.html', {'project':project, 'subdir':subdir, 'file_error':file_error, 'dir_breadcrumbs':dir_breadcrumbs, 'parent_dir':parent_dir, 'display_files':display_files, 'display_dirs':display_dirs, 'files_panel_url':files_panel_url, 'file_warning':file_warning}) @project_auth(auth_mode=3) def project_preview(request, project_slug, subdir='', **kwargs): """ Preview what the published project would look like. Includes serving files. """ project, authors = (kwargs[k] for k in ('project', 'authors')) authors = project.get_author_info() invitations = project.authorinvitations.filter(is_active=True) corresponding_author = authors.get(is_corresponding=True) corresponding_author.text_affiliations = ', '.join(a.name for a in corresponding_author.affiliations.all()) references = project.references.all().order_by('id') publication = project.publications.all().first() topics = project.topics.all() parent_projects = project.parent_projects.all() languages = project.programming_languages.all() citations = project.citation_text_all() platform_citations = project.get_platform_citation() passes_checks = project.check_integrity() if passes_checks: messages.success(request, 'The project has passed all automatic checks.') else: for e in project.integrity_errors: messages.error(request, e) (display_files, display_dirs, dir_breadcrumbs, parent_dir, file_error) = get_project_file_info(project=project, subdir=subdir) files_panel_url = reverse('preview_files_panel', args=(project.slug,)) file_warning = get_project_file_warning(display_files, display_dirs, subdir) # Flag for anonymous access has_passphrase = kwargs['has_passphrase'] return render(request, 'project/project_preview.html', {'project':project, 'display_files':display_files, 'display_dirs':display_dirs, 'authors':authors, 'corresponding_author':corresponding_author, 'invitations':invitations, 'references':references, 'publication':publication, 'topics':topics, 'languages':languages, 'passes_checks':passes_checks, 'dir_breadcrumbs':dir_breadcrumbs, 'files_panel_url':files_panel_url, 'citations': citations, 'subdir':subdir, 'parent_dir':parent_dir, 'file_error':file_error, 'file_warning':file_warning, 'platform_citations': platform_citations, 'parent_projects':parent_projects, 'has_passphrase':has_passphrase}) @project_auth(auth_mode=3) def project_license_preview(request, project_slug, **kwargs): """ View a project's license """ project = kwargs['project'] license = project.license license_content = project.license_content(fmt='html') return render(request, 'project/project_license_preview.html', {'project':project, 'license':license, 'license_content':license_content}) @project_auth(auth_mode=0) def project_proofread(request, project_slug, **kwargs): """ Proofreading page for project before submission """ return render(request, 'project/project_proofread.html', {'project':kwargs['project']}) @project_auth(auth_mode=0) def check_integrity(request, project_slug, **kwargs): """ Check whether a project is submittable. Called via ajax """ project = kwargs['project'] result = project.check_integrity() return JsonResponse({'passes_checks':result, 'integrity_errors':project.integrity_errors}) @project_auth(auth_mode=0) def project_submission(request, project_slug, **kwargs): """ View submission details regarding a project, submit the project for review, cancel a submission, approve a submission, and withdraw approval. """ user, project, authors, is_submitting = (kwargs[k] for k in ('user', 'project', 'authors', 'is_submitting')) author_comments_form = forms.AuthorCommentsForm() if is_submitting and project.author_editable() else None if request.method == 'POST': # ActiveProject is submitted for review if 'submit_project' in request.POST and is_submitting: author_comments_form = forms.AuthorCommentsForm(data=request.POST) if project.is_submittable() and author_comments_form.is_valid(): comments = author_comments_form.cleaned_data['author_comments'] project.submit(author_comments=comments) notification.submit_notify(project) messages.success(request, 'Your project has been submitted. You will be notified when an editor is assigned.') elif project.integrity_errors: messages.error(request, project.integrity_errors) else: messages.error(request, 'Fix the errors before submitting') elif 'resubmit_project' in request.POST and is_submitting: author_comments_form = forms.AuthorCommentsForm(data=request.POST) if project.is_resubmittable() and author_comments_form.is_valid(): comments = author_comments_form.cleaned_data['author_comments'] project.resubmit(author_comments=comments) notification.resubmit_notify(project, comments) messages.success(request, 'Your project has been resubmitted. You will be notified when the editor makes their decision.') # Author approves publication elif 'approve_publication' in request.POST: author = authors.get(user=user) if (request.POST and author.is_submitting and request.POST['approve_publication'].isnumeric()): try: author = authors.get(id=request.POST['approve_publication']) LOGGER.info('Submitting author {0} for project {1} is approving\ on behalf of {2}'.format(user, project, author.user)) except Author.DoesNotExist: pass # Register the approval if valid if project.approve_author(author): if project.submission_status == 60: messages.success(request, 'You have approved the project for publication. The editor will publish it shortly') notification.authors_approved_notify(request, project) else: messages.success(request, 'You have approved the project for publication.') authors = project.authors.all().order_by('display_order') else: messages.error(request, 'Invalid') # Whether the submission is currently waiting for the user to approve awaiting_user_approval = False if project.under_submission(): edit_logs = project.edit_log_history() copyedit_logs = project.copyedit_log_history() for e in edit_logs: e.set_quality_assurance_results() # Awaiting authors if project.submission_status == 50: authors = authors.order_by('approval_datetime') for a in authors: a.set_display_info() if user == a.user and not a.approval_datetime: awaiting_user_approval = True else: edit_logs, copyedit_logs = None, None return render(request, 'project/project_submission.html', { 'project':project, 'authors':authors, 'is_submitting':is_submitting, 'author_comments_form':author_comments_form, 'edit_logs':edit_logs, 'copyedit_logs':copyedit_logs, 'awaiting_user_approval':awaiting_user_approval}) @login_required def rejected_submission_history(request, project_slug): """ Submission history for a rejected project """ user = request.user try: # Checks if the user is an author project = ArchivedProject.objects.get(slug=project_slug, archive_reason=3, authors__user=user) except ArchivedProject.DoesNotExist: if user.is_admin: project = get_object_or_404(ArchivedProject, slug=project_slug, archive_reason=3) else: raise Http404() edit_logs = project.edit_log_history() for e in edit_logs: e.set_quality_assurance_results() copyedit_logs = project.copyedit_log_history() return render(request, 'project/rejected_submission_history.html', {'project': project, 'edit_logs': edit_logs, 'copyedit_logs': copyedit_logs}) def published_versions(request, project_slug): """ List of published versions of a project. Viewable by admins and authors. """ user = request.user # Account for different authors between versions if user.is_admin: projects = PublishedProject.objects.filter(slug=project_slug).order_by('version_order') else: authors = PublishedAuthor.objects.filter(user=user, project__slug=project_slug).order_by('project__version_order') projects = [a.project for a in authors] # Not an author of this project set if not projects: return redirect('project_home') return render(request, 'project/published_versions.html', {'projects':projects, 'first_project':projects[0], 'current_site':get_current_site(request)}) @login_required def published_submission_history(request, project_slug, version): """ Submission history for a published project """ user = request.user try: project = PublishedProject.objects.get(slug=project_slug, version=version, authors__user=user) except PublishedProject.DoesNotExist: if user.is_admin: project = get_object_or_404(PublishedProject, slug=project_slug, version=version) else: raise Http404() edit_logs = project.edit_log_history() for e in edit_logs: e.set_quality_assurance_results() copyedit_logs = project.copyedit_log_history() return render(request, 'project/published_submission_history.html', {'project': project, 'edit_logs': edit_logs, 'copyedit_logs': copyedit_logs, 'published': True}) def published_files_panel(request, project_slug, version): """ Return the main file panel for the published project, for all access policies. Called via ajax. """ project = PublishedProject.objects.filter(slug=project_slug, version=version) if project: project = project.get() else: raise Http404() subdir = request.GET.get('subdir') if subdir is None: raise Http404() if not request.is_ajax(): return redirect('published_project', project_slug=project_slug, version=version) user = request.user # Anonymous access authentication an_url = request.get_signed_cookie('anonymousaccess', None, max_age=60*60) has_passphrase = project.get_anonymous_url() == an_url if project.has_access(user) or has_passphrase: (display_files, display_dirs, dir_breadcrumbs, parent_dir, file_error) = get_project_file_info(project=project, subdir=subdir) files_panel_url = reverse('published_files_panel', args=(project.slug, project.version)) return render(request, 'project/files_panel.html', {'project':project, 'subdir':subdir, 'dir_breadcrumbs':dir_breadcrumbs, 'parent_dir':parent_dir, 'display_files':display_files, 'display_dirs':display_dirs, 'files_panel_url':files_panel_url, 'file_error':file_error}) else: raise Http404() def serve_active_project_file_editor(request, project_slug, full_file_name): """ Serve a file or subdirectory of a published project. Works for open and protected. Not needed for open. """ utility.check_http_auth(request) try: project = ActiveProject.objects.get(slug=project_slug) except ObjectDoesNotExist: raise Http404() user = request.user if user.is_authenticated and (project.authors.filter(user=user) or user == project.editor or user.is_admin): file_path = os.path.join(project.file_root(), full_file_name) try: attach = ('download' in request.GET) return serve_file(file_path, attach=attach, allow_directory=True) except IsADirectoryError: return redirect(request.path + '/') except (NotADirectoryError, FileNotFoundError): raise Http404() return utility.require_http_auth(request) def serve_published_project_file(request, project_slug, version, full_file_name): """ Serve a file or subdirectory of a published project. Works for open and protected. Not needed for open. """ utility.check_http_auth(request) try: project = PublishedProject.objects.get(slug=project_slug, version=version) except ObjectDoesNotExist: raise Http404() user = request.user # Anonymous access authentication an_url = request.get_signed_cookie('anonymousaccess', None, max_age=60*60) has_passphrase = project.get_anonymous_url() == an_url if project.has_access(user) or has_passphrase: file_path = os.path.join(project.file_root(), full_file_name) try: attach = ('download' in request.GET) # Temporary workaround: Chromium doesn't permit viewing # PDF files in sandboxed mode: # https://bugs.chromium.org/p/chromium/issues/detail?id=271452 # Until this is fixed, disable CSP sandbox for published # PDF files. if file_path.endswith('.pdf'): sandbox = False else: sandbox = True return serve_file(file_path, attach=attach, allow_directory=True, sandbox=sandbox) except IsADirectoryError: return redirect(request.path + '/') except (NotADirectoryError, FileNotFoundError): raise Http404() return utility.require_http_auth(request) def display_published_project_file(request, project_slug, version, full_file_name): """ Display a file in a published project. full_file_name is the file path relative to the project's file root. """ try: project = PublishedProject.objects.get(slug=project_slug, version=version) except ObjectDoesNotExist: raise Http404() user = request.user # Anonymous access authentication an_url = request.get_signed_cookie('anonymousaccess', None, max_age=60*60) has_passphrase = project.get_anonymous_url() == an_url if project.has_access(user) or has_passphrase: return display_project_file(request, project, full_file_name) # Display error message: "you must [be a credentialed user and] # sign the data use agreement" breadcrumbs = utility.get_dir_breadcrumbs(full_file_name, directory=False) context = { 'project': project, 'breadcrumbs': breadcrumbs, } return render(request, 'project/file_view_unauthorized.html', context, status=403) def serve_published_project_zip(request, project_slug, version): """ Serve the zip file of a published project. Works for open and protected. Not needed for open. """ utility.check_http_auth(request) try: project = PublishedProject.objects.get(slug=project_slug, version=version) except ObjectDoesNotExist: raise Http404() user = request.user # Anonymous access authentication an_url = request.get_signed_cookie('anonymousaccess', None, max_age=60*60) has_passphrase = project.get_anonymous_url() == an_url if project.has_access(user) or has_passphrase: try: return serve_file(project.zip_name(full=True)) except FileNotFoundError: raise Http404() return utility.require_http_auth(request) def published_project_license(request, project_slug, version): """ Displays a published project's license """ try: project = PublishedProject.objects.get(slug=project_slug, version=version) except ObjectDoesNotExist: raise Http404() license = project.license license_content = project.license_content(fmt='html') return render(request, 'project/published_project_license.html', {'project':project, 'license':license, 'license_content':license_content}) def published_project_latest(request, project_slug): """ Redirect to latest project version """ try: version = PublishedProject.objects.get(slug=project_slug, is_latest_version=True).version except ObjectDoesNotExist: raise Http404() return redirect('published_project', project_slug=project_slug, version=version) def published_project(request, project_slug, version, subdir=''): """ Displays a published project """ try: project = PublishedProject.objects.get(slug=project_slug, version=version) except ObjectDoesNotExist: raise Http404() authors = project.authors.all().order_by('display_order') for a in authors: a.set_display_info() references = project.references.all().order_by('id') publication = project.publications.all().first() topics = project.topics.all() languages = project.programming_languages.all() contact = project.contact news = project.news.all().order_by('-publish_datetime') parent_projects = project.parent_projects.all() # derived_projects = project.derived_publishedprojects.all() data_access = DataAccess.objects.filter(project=project) user = request.user citations = project.citation_text_all() platform_citations = project.get_platform_citation() # Anonymous access authentication an_url = request.get_signed_cookie('anonymousaccess', None, max_age=60*60) has_passphrase = project.get_anonymous_url() == an_url has_access = project.has_access(user) or has_passphrase current_site = get_current_site(request) url_prefix = notification.get_url_prefix(request) all_project_versions = PublishedProject.objects.filter( slug=project_slug).order_by('version_order') context = {'project': project, 'authors': authors, 'references': references, 'publication': publication, 'topics': topics, 'languages': languages, 'contact': contact, 'has_access': has_access, 'current_site': current_site, 'url_prefix': url_prefix, 'citations': citations, 'news': news, 'all_project_versions': all_project_versions, 'parent_projects':parent_projects, 'data_access':data_access, 'messages':messages.get_messages(request), 'platform_citations': platform_citations} # The file and directory contents if has_access: (display_files, display_dirs, dir_breadcrumbs, parent_dir, file_error) = get_project_file_info(project=project, subdir=subdir) if file_error: status = 404 else: status = 200 main_size, compressed_size = [utility.readable_size(s) for s in (project.main_storage_size, project.compressed_storage_size)] files_panel_url = reverse('published_files_panel', args=(project.slug, project.version)) context = {**context, **{'dir_breadcrumbs': dir_breadcrumbs, 'main_size': main_size, 'compressed_size': compressed_size, 'display_files': display_files, 'display_dirs': display_dirs, 'files_panel_url': files_panel_url, 'subdir': subdir, 'parent_dir': parent_dir, 'file_error': file_error, 'current_site': get_current_site(request), 'data_access': data_access, }} elif subdir: status = 403 else: status = 200 return render(request, 'project/published_project.html', context, status=status) @login_required def sign_dua(request, project_slug, version): """ Page to sign the dua for a protected project. Both restricted and credentialed policies. """ user = request.user project = PublishedProject.objects.filter(slug=project_slug, version=version) if project: project = project.get() else: raise Http404() if project.deprecated_files or not project.access_policy or project.has_access(user) \ or project.is_self_managed_access: return redirect('published_project', project_slug=project_slug, version=version) if project.access_policy == 2 and not user.is_credentialed: return render(request, 'project/credential_required.html') license = project.license license_content = project.license_content(fmt='html') if request.method == 'POST' and 'agree' in request.POST: DUASignature.objects.create(user=user, project=project) return render(request, 'project/sign_dua_complete.html', { 'project':project}) return render(request, 'project/sign_dua.html', {'project':project, 'license':license, 'license_content':license_content}) @login_required def request_data_access(request, project_slug, version): """ Form for a user (requester) to request access to the data of a self managed project. """ user = request.user try: proj = PublishedProject.objects.get(slug=project_slug, version=version) except PublishedProject.DoesNotExist: raise Http404(Exception("Project does not exist")) if not proj.is_self_managed_access: return redirect('published_project', project_slug=project_slug, version=version) if DataAccessRequest.objects.filter(requester=user, project=proj, status= DataAccessRequest.PENDING_VALUE): return redirect('data_access_request_status', project_slug=proj.slug, version=proj.version) # not request pending for that user and that project. if request.method == 'POST': # process access request form project_request_form = forms.DataAccessRequestForm(project=proj, requester=user, template=None, prefix="proj", data=request.POST) if (project_request_form.is_valid()): data_access_req = project_request_form.save() # trigger e-mail notification to reviewers corresponding_author = proj.corresponding_author().user reviewers = [p.reviewer for p in DataAccessRequestReviewer.objects.filter( project=proj, reviewer=user, is_revoked=False)] notification.notify_owner_data_access_request(reviewers + [corresponding_author], data_access_req, request.scheme, request.get_host()) notification.confirm_user_data_access_request(data_access_req, request.scheme, request.get_host()) response = render( request, 'project/data_access_request_submitted.html', {'project': proj}) set_saved_fields_cookie(project_request_form, request.path, response) return response else: project_request_form = forms.DataAccessRequestForm(project=proj, requester=user, template=proj.self_managed_request_template, prefix="proj") is_additional_request = DataAccessRequest.objects.filter(requester=user, project=proj, status= DataAccessRequest.ACCEPT_REQUEST_VALUE).exists() needs_credentialing = proj.access_policy == 2 and not user.is_credentialed full_user_name = user.get_full_name() return render(request, 'project/request_data_access.html', {'project_request_form': project_request_form, 'needs_credentialing': needs_credentialing, 'full_user_name': full_user_name, 'project': proj, 'is_additional_request': is_additional_request }) @login_required def data_access_request_status(request, project_slug, version): """ Requester can view the state of his/her data access request for a self managed project """ user = request.user try: proj = PublishedProject.objects.get(slug=project_slug, version=version) except PublishedProject.DoesNotExist: raise Http404(Exception("Project doesn't not exist")) if not proj.is_self_managed_access: return redirect('published_project', project_slug=project_slug, version=version) da_requests = DataAccessRequest.objects.filter(requester=user, project=proj).order_by( '-request_datetime') if not da_requests: return redirect('request_data_access', project_slug=proj.slug, version=proj.version) if request.method == 'POST' and 'cancel_request' in request.POST.keys(): withdraw_req = DataAccessRequest.objects.get( id=request.POST['cancel_request']) withdraw_req.status = DataAccessRequest.WITHDRAWN_VALUE withdraw_req.decision_datetime = timezone.now() withdraw_req.save() da_requests = DataAccessRequest.objects.filter(requester=user, project=proj).order_by( '-request_datetime') return render(request, 'project/data_access_request_status.html', {'data_access_request': da_requests[0], 'older_requests': da_requests[1:], 'max_review_days': DataAccessRequest.DATA_ACCESS_REQUESTS_DAY_LIMIT }) @login_required def data_access_requests_overview(request, project_slug, version): """ Overview over all issued access requests for the request reviewer(s) """ reviewer = request.user try: proj = PublishedProject.objects.get(slug=project_slug, version=version) except PublishedProject.DoesNotExist: raise Http404(Exception("The project doesn't exist")) if not proj.is_self_managed_access: return redirect('published_project', project_slug=project_slug, version=version) if not proj.can_approve_requests(reviewer): raise Http404( Exception("You don't have access to the project requests overview")) if request.method == 'POST' and 'stop_review' in request.POST.keys(): try: entry = DataAccessRequestReviewer.objects.get( project=proj, reviewer_id=reviewer.id, is_revoked=False) entry.revoke() notification.notify_owner_data_access_review_withdrawal(entry) return redirect('project_home') except DataAccessRequestReviewer.DoesNotExist: pass all_requests = DataAccessRequest.objects.filter(project_id=proj).order_by( '-request_datetime') accepted_requests = all_requests.filter( status=DataAccessRequest.ACCEPT_REQUEST_VALUE).count() return render(request, 'project/data_access_requests_overview.html', {'project': proj, 'requests': all_requests, 'accepted_requests': accepted_requests, 'is_additional_reviewer': proj.is_data_access_reviewer(reviewer)}) @login_required def data_access_request_view(request, project_slug, version, user_id): """ Responder/reviewer can see the data associated with a specific access request to his/her project """ reviewer = request.user try: requester = User.objects.get(id=user_id) except User.DoesNotExist: raise Http404(Exception("User doesn't exist")) try: proj = PublishedProject.objects.get(slug=project_slug, version=version) except PublishedProject.DoesNotExist: raise Http404(Exception("Project doesn't exist")) if not proj.is_self_managed_access: return redirect('published_project', project_slug=project_slug, version=version) if not proj.can_approve_requests(reviewer): raise Http404( Exception("You don't have access to the project requests overview")) da_requests = DataAccessRequest.objects.filter(requester=requester, project_id=proj).order_by( '-request_datetime') if not da_requests: raise Http404(Exception("No requests found")) if request.method == 'POST' and 'data_access_response' in request.POST.keys(): entry = DataAccessRequest.objects.get( id=request.POST['data_access_response']) response_form = forms.DataAccessResponseForm(responder_id=reviewer.id, prefix="proj", data=request.POST, instance=entry) if response_form.is_valid(): response_form.save() notification.notify_user_data_access_request(entry, request.scheme, request.get_host()) return redirect('project_home') else: response_form = forms.DataAccessResponseForm(responder_id=reviewer.id, prefix="proj") credentialing_data_lst = CredentialApplication.objects.filter( user_id=requester.id).order_by("-application_datetime") credentialing_data = credentialing_data_lst[ 0] if credentialing_data_lst else None legacy_credentialing_data = None if not credentialing_data: legacy_credentialing_data_lst = LegacyCredential.objects.filter( migrated_user_id=requester.id).order_by("-mimic_approval_date") legacy_credentialing_data = legacy_credentialing_data_lst[ 0] if legacy_credentialing_data_lst else None return render(request, 'project/data_access_request_view.html', {'da_request': da_requests[0], 'response_form': response_form, 'older_requests': da_requests[1:], 'credentialing_data': credentialing_data, 'legacy_credentialing_data': legacy_credentialing_data }) @login_required def manage_data_access_reviewers(request, project_slug, version): """ Corresponding author of a self managed credentialing project can invite additional physionet users to help review incoming data access requests. The invitation can also be revoked """ try: project = PublishedProject.objects.get(slug=project_slug, version=version) except: raise Http404(Exception("The project doesn't exist")) if not project.is_self_managed_access: return redirect('project_home') reviewer_manager = request.user if not project.can_manage_data_access_reviewers(reviewer_manager): raise Http404( Exception("You don't have access to this view")) form = forms.InviteDataAccessReviewerForm(project=project) if request.method == 'POST' and 'invite_reviewer' in request.POST.keys(): form = forms.InviteDataAccessReviewerForm(data=request.POST, project=project) if form.is_valid(): invitation = form.save() notification.notify_user_invited_managing_requests(invitation, request.scheme, request.get_host()) elif request.method == 'POST' and 'revoke_reviewer' in request.POST.keys(): reviewer_id = request.POST['revoke_reviewer'] try: entry = DataAccessRequestReviewer.objects.get( project=project, reviewer_id=reviewer_id, is_revoked=False) entry.revoke() except DataAccessRequestReviewer.DoesNotExist: pass reviewers_list = DataAccessRequestReviewer.objects.filter( project=project).order_by("is_revoked", "-revocation_date", "reviewer__profile__first_names") return render(request, 'project/manage_data_access_reviewers.html', {'project': project, 'invite_reviewer_form': form, 'reviewers_list': reviewers_list}) @login_required def published_project_request_access(request, project_slug, version, access_type): """ Page to grant access to AWS storage, Google storage or Big Query to a specific user. """ user = request.user project = PublishedProject.objects.get(slug=project_slug, version=version) data_access = DataAccess.objects.filter(project=project, platform=access_type) # Check if the person has access to the project. if not project.has_access(request.user): return redirect('published_project', project_slug=project_slug, version=version) try: # check user if user has GCP or AWS info in profile if (user.cloud_information.gcp_email is None and access_type in [3, 4]) or ( user.cloud_information.aws_id is None and access_type == 2): messages.error(request, 'Please set the user cloud information in your settings') return redirect('edit_cloud') except CloudInformation.DoesNotExist: messages.error(request, 'Please set the user cloud information in your settings') return redirect('edit_cloud') for access in data_access: if access_type == 2 and access.platform == access_type: message = utility.grant_aws_open_data_access(user, project) error_messages = ["Access could not be granted.", "There was an error granting access."] if message not in error_messages: notification.notify_aws_access_request(user, project, access, True) messages.success(request, message) else: notification.notify_aws_access_request(user, project, access, False) messages.error(request, message) elif access_type in [3, 4] and access.platform == access_type: message = utility.grant_gcp_group_access(user, project, access) if message: notification.notify_gcp_access_request(access, user, project) messages.success(request, message) return redirect('published_project', project_slug=project_slug, version=version) def anonymous_login(request, anonymous_url): # Validate project url try: project = AnonymousAccess.objects.get(url=anonymous_url).project if project.__class__ == PublishedProject: response = redirect('published_project', project_slug=project.slug, version=project.version) else: response = redirect('project_preview', project_slug=project.slug) except ObjectDoesNotExist: raise Http404() # Empty form form = forms.AnonymousAccessLoginForm() # Validate input from submission if request.method == 'POST': form = forms.AnonymousAccessLoginForm(data=request.POST) if form.is_valid(): # Validates passphrase passphrase = request.POST["passphrase"] if project.is_valid_passphrase(passphrase): # Set cookie and redirects to project page response.set_signed_cookie('anonymousaccess', anonymous_url, max_age=60*60, httponly=True, secure=(not settings.DEBUG), samesite='Lax') return response # Did not find any valid passphrase messages.error(request, 'Invalid passphrase.') else: # Invalid form error messages.error(request, 'Submission unsuccessful. See form for errors.') # For anonymous access, use the "restricted" license/DUA license_slug = 'physionet-restricted-health-data-license-150' license = License.objects.get(slug=license_slug) return render(request, 'project/anonymous_login.html', {'anonymous_url': anonymous_url, 'form': form, 'license': license}) <file_sep>from datetime import datetime, timedelta import hashlib from html import unescape import os import shutil import uuid import pdb import pytz import stat import logging from distutils.version import StrictVersion import bleach import ckeditor.fields from html2text import html2text from django.conf import settings from django.contrib.contenttypes.fields import GenericForeignKey, GenericRelation from django.contrib.contenttypes.models import ContentType from django.contrib.staticfiles.templatetags.staticfiles import static from django.core.validators import MaxValueValidator, MinValueValidator from django.contrib.auth.hashers import check_password, make_password from django.db import models, DatabaseError, transaction from django.forms.utils import ErrorList from django.urls import reverse from django.utils import timezone from django.utils.html import format_html, strip_tags from django.utils.text import slugify from background_task import background from django.utils.crypto import get_random_string from project.quota import DemoQuotaManager from project.utility import (get_tree_size, get_file_info, get_directory_info, list_items, StorageInfo, list_files, clear_directory) from project.validators import (validate_doi, validate_subdir, validate_version, validate_slug, MAX_PROJECT_SLUG_LENGTH, validate_title, validate_topic) from user.validators import validate_affiliation from physionet.utility import (sorted_tree_files, zip_dir) LOGGER = logging.getLogger(__name__) @background() def move_files_as_readonly(pid, dir_from, dir_to, make_zip): """ Schedule a background task to set the files as read only. If a file starts with a Shebang, then it will be set as executable. """ published_project = PublishedProject.objects.get(id=pid) published_project.make_checksum_file() quota = published_project.quota_manager() published_project.incremental_storage_size = quota.bytes_used published_project.save(update_fields=['incremental_storage_size']) published_project.set_storage_info() # Make the files read only file_root = published_project.project_file_root() for root, dirs, files in os.walk(file_root): for f in files: fline = open(os.path.join(root, f), 'rb').read(2) if fline[:2] == b'#!': os.chmod(os.path.join(root, f), 0o555) else: os.chmod(os.path.join(root, f), 0o444) for d in dirs: os.chmod(os.path.join(root, d), 0o555) if make_zip: published_project.make_zip() class SafeHTMLField(ckeditor.fields.RichTextField): """ An HTML text field that permits only "safe" content. On the client side, this field is displayed as an interactive WYSIWYG editor (see ckeditor.fields.RichTextField.) On the server side, the HTML text is "cleaned" using the bleach library to ensure that all tags are properly closed, entities are well-formed, etc., and to remove or escape any unsafe tags or attributes. The permitted set of tags and attributes is generated from the corresponding 'allowedContent' rules in settings.CKEDITOR_CONFIGS (which also defines the client-side whitelisting rules and the set of options that are visible to the user.) For example: 'allowedContent': { 'a': {'attributes': ['href']}, 'em': True, '*': {'attributes': ['title']}, } This would permit the use of 'a' and 'em' tags (all other tags are forbidden.) 'a' tags are permitted to have an 'href' attribute, and any tag is permitted to have a 'title' attribute. NOTE: This class does not use ckeditor's 'disallowedContent' rules. Those rules can be used to perform tag/attribute blacklisting on the client side, but will not be enforced on the server side. """ # The following protocols may be used in 'href', 'src', and # similar attributes. _protocols = ['http', 'https', 'ftp', 'mailto'] # The following attributes are forbidden on the server side even # if permitted on client side. (This is a kludge; permitting # 'width' to be set on the client side makes editing tables # easier.) _attribute_blacklist = {('table', 'width')} # The following CSS properties may be set via inline styles (but # only on elements for which the 'style' attribute itself is # permitted.) _styles = ['text-align'] def __init__(self, config_name='default', strip=False, strip_comments=True, **kwargs): super().__init__(config_name=config_name, **kwargs) conf = settings.CKEDITOR_CONFIGS[config_name] tags = [] attrs = {} for (tag, props) in conf['allowedContent'].items(): if tag != '*': tags.append(tag) if isinstance(props, dict) and 'attributes' in props: attrs[tag] = [] for attr in props['attributes']: if (tag, attr) not in self._attribute_blacklist: attrs[tag].append(attr) self._cleaner = bleach.Cleaner(tags=tags, attributes=attrs, styles=self._styles, protocols=self._protocols, strip=strip, strip_comments=strip_comments) def clean(self, value, model_instance): value = self._cleaner.clean(value) return super().clean(value, model_instance) class Affiliation(models.Model): """ Affiliations belonging to an author """ name = models.CharField(max_length=202, validators=[validate_affiliation]) author = models.ForeignKey('project.Author', related_name='affiliations', on_delete=models.CASCADE) class Meta: unique_together = (('name', 'author'),) class PublishedAffiliation(models.Model): """ Affiliations belonging to a published author """ name = models.CharField(max_length=202, validators=[validate_affiliation]) author = models.ForeignKey('project.PublishedAuthor', related_name='affiliations', on_delete=models.CASCADE) class Meta: unique_together = (('name', 'author'),) class BaseAuthor(models.Model): """ Base model for a project's author/creator. Credited for creating the resource. Datacite definition: "The main researchers involved in producing the data, or the authors of the publication, in priority order." """ user = models.ForeignKey('user.User', related_name='%(class)ss', on_delete=models.CASCADE) display_order = models.PositiveSmallIntegerField() is_submitting = models.BooleanField(default=False) is_corresponding = models.BooleanField(default=False) # When they approved the project for publication approval_datetime = models.DateTimeField(null=True) class Meta: abstract = True def __str__(self): # Best representation for form display user = self.user return '{} --- {}'.format(user.username, user.email) class Author(BaseAuthor): """ The author model for ArchivedProject/ActiveProject """ content_type = models.ForeignKey(ContentType, on_delete=models.CASCADE) object_id = models.PositiveIntegerField() project = GenericForeignKey('content_type', 'object_id') corresponding_email = models.ForeignKey('user.AssociatedEmail', null=True, on_delete=models.SET_NULL) creation_date = models.DateTimeField(default=timezone.now) class Meta: unique_together = (('user', 'content_type', 'object_id',), ('display_order', 'content_type', 'object_id')) def get_full_name(self, reverse=False): """ The name is tied to the profile. There is no form for authors to change their names. Return the full name. Args: reverse: Format of the return string. If False (default) then 'firstnames lastname'. If True then 'lastname, firstnames'. """ last = self.user.profile.last_name first = self.user.profile.first_names if reverse: return ', '.join([last, first]) else: return ' '.join([first, last]) def initialed_name(self, commas=True, periods=True): """ Return author's name in citation style. """ last = self.user.profile.last_name first = self.user.profile.first_names final_string = '{}, {}'.format( last, ' '.join('{}.'.format(i[0]) for i in first.split())) if not commas: final_string = final_string.replace(',', '') if not periods: final_string = final_string.replace('.', '') return final_string def disp_name_email(self): """ """ return '{} ({})'.format(self.get_full_name(), self.user.email) def import_profile_info(self): """ Import profile information (names) into the Author object. Also create affiliation object if present in profile. """ profile = self.user.profile if profile.affiliation: Affiliation.objects.create(name=profile.affiliation, author=self) return True return False def set_display_info(self, set_affiliations=True): """ Set the fields used to display the author """ user = self.user self.name = user.profile.get_full_name() self.email = user.email self.username = user.username if set_affiliations: self.text_affiliations = [a.name for a in self.affiliations.all()] class PublishedAuthor(BaseAuthor): """ The author model for PublishedProject """ first_names = models.CharField(max_length=100, default='') last_name = models.CharField(max_length=50, default='') corresponding_email = models.EmailField(null=True) project = models.ForeignKey('project.PublishedProject', related_name='authors', db_index=True, on_delete=models.CASCADE) class Meta: unique_together = (('user', 'project'), ('display_order', 'project')) def get_full_name(self, reverse=False): """ Return the full name. Args: reverse: Format of the return string. If False (default) then 'firstnames lastname'. If True then 'lastname, firstnames'. """ if reverse: return ', '.join([self.last_name, self.first_names]) else: return ' '.join([self.first_names, self.last_name]) def set_display_info(self): """ Set the fields used to display the author """ self.name = self.get_full_name() self.username = self.user.username self.email = self.user.email self.text_affiliations = [a.name for a in self.affiliations.all()] def initialed_name(self, commas=True, periods=True): final_string = '{}, {}'.format(self.last_name, ' '.join('{}.' .format(i[0]) for i in self.first_names .split())) if not commas: final_string = final_string.replace(',', '') if not periods: final_string = final_string.replace('.', '') return final_string class Topic(models.Model): """ Topic information to tag ActiveProject/ArchivedProject """ content_type = models.ForeignKey(ContentType, on_delete=models.CASCADE) object_id = models.PositiveIntegerField() project = GenericForeignKey('content_type', 'object_id') description = models.CharField(max_length=50, validators=[validate_topic]) class Meta: unique_together = (('description', 'content_type', 'object_id'),) def __str__(self): return self.description def save(self, *args, **kwargs): super().save(*args, **kwargs) self.project.content_modified() def delete(self, *args, **kwargs): super().delete(*args, **kwargs) self.project.content_modified() class PublishedTopic(models.Model): """ Topic information to tag PublishedProject """ projects = models.ManyToManyField('project.PublishedProject', related_name='topics') description = models.CharField(max_length=50, validators=[validate_topic]) project_count = models.PositiveIntegerField(default=0) def __str__(self): return self.description class Reference(models.Model): """ Reference field for ActiveProject/ArchivedProject """ content_type = models.ForeignKey(ContentType, on_delete=models.CASCADE) object_id = models.PositiveIntegerField() project = GenericForeignKey('content_type', 'object_id') description = models.CharField(max_length=1000) class Meta: unique_together = (('description', 'content_type', 'object_id'),) def __str__(self): return self.description def save(self, *args, **kwargs): super().save(*args, **kwargs) self.project.content_modified() def delete(self, *args, **kwargs): super().delete(*args, **kwargs) self.project.content_modified() class PublishedReference(models.Model): """ """ description = models.CharField(max_length=1000) project = models.ForeignKey('project.PublishedProject', related_name='references', on_delete=models.CASCADE) class Meta: unique_together = (('description', 'project')) class Contact(models.Model): """ Contact for a PublishedProject """ name = models.CharField(max_length=120) affiliations = models.CharField(max_length=150) email = models.EmailField(max_length=255) project = models.OneToOneField('project.PublishedProject', related_name='contact', on_delete=models.CASCADE) class BasePublication(models.Model): """ Base model for the publication to cite when referencing the resource """ citation = models.CharField(max_length=1000) url = models.URLField(blank=True, default='') class Meta: abstract = True class Publication(BasePublication): """ Publication for ArchivedProject/ActiveProject """ content_type = models.ForeignKey(ContentType, on_delete=models.CASCADE) object_id = models.PositiveIntegerField() project = GenericForeignKey('content_type', 'object_id') def save(self, *args, **kwargs): super().save(*args, **kwargs) self.project.content_modified() def delete(self, *args, **kwargs): super().delete(*args, **kwargs) self.project.content_modified() class PublishedPublication(BasePublication): """ Publication for published project """ project = models.ForeignKey('project.PublishedProject', db_index=True, related_name='publications', on_delete=models.CASCADE) class CoreProject(models.Model): """ The core underlying object that links all versions of the project in its various states """ id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False) creation_datetime = models.DateTimeField(auto_now_add=True) # doi pointing to the latest version of the published project doi = models.CharField(max_length=50, blank=True, null=True) # Maximum allowed storage capacity in bytes. # Default = 100Mb. Max = 10Tb storage_allowance = models.BigIntegerField(default=104857600, validators=[MaxValueValidator(109951162777600), MinValueValidator(104857600)]) def active_new_version(self): "Whether there is a new version being worked on" return bool(self.activeprojects.filter()) def get_published_versions(self): """ Return a queryset of PublishedProjects, sorted by version. """ return self.publishedprojects.filter().order_by('version_order') @property def total_published_size(self): """ Total storage size of the published projects. This is the sum of the PublishedProjects' incremental_storage_size values (which will be less than the sum of the main_storage_size values if there are files that are shared between versions) and reflects the actual size of the data on disk. """ result = self.publishedprojects \ .aggregate(total=models.Sum('incremental_storage_size')) # The sum will be None if there are no publishedprojects. It will # also be None if any projects have incremental_storage_size=None. return result['total'] or 0 class ProjectType(models.Model): """ The project types available on the platform """ id = models.PositiveSmallIntegerField(primary_key=True) name = models.CharField(max_length=20) description = models.TextField() class Metadata(models.Model): """ Visible content of a published or unpublished project. Every project (ActiveProject, PublishedProject, and ArchivedProject) inherits from this class as well as SubmissionInfo. The difference is that the fields of this class contain public information that will be shown on the published project pages; SubmissionInfo contains internal information about the publication process. In particular, the UnpublishedProject modified_datetime will be updated when any field of Metadata is altered (see UnpublishedProject.save), but not when a field of SubmissionInfo is modified. New fields should be added to this class only if they affect the content of the project as it will be shown when published. """ ACCESS_POLICIES = ( (0, 'Open'), (1, 'Restricted'), (2, 'Credentialed'), ) resource_type = models.ForeignKey('project.ProjectType', db_column='resource_type', related_name='%(class)ss', on_delete=models.PROTECT) # Main body descriptive metadata title = models.CharField(max_length=200, validators=[validate_title]) abstract = SafeHTMLField(max_length=10000, blank=True) background = SafeHTMLField(blank=True) methods = SafeHTMLField(blank=True) content_description = SafeHTMLField(blank=True) usage_notes = SafeHTMLField(blank=True) installation = SafeHTMLField(blank=True) acknowledgements = SafeHTMLField(blank=True) conflicts_of_interest = SafeHTMLField(blank=True) version = models.CharField(max_length=15, default='', blank=True, validators=[validate_version]) release_notes = SafeHTMLField(blank=True) # Short description used for search results, social media, etc short_description = models.CharField(max_length=250, blank=True) # Access information access_policy = models.SmallIntegerField(choices=ACCESS_POLICIES, default=0) is_self_managed_access = models.BooleanField(default=False) self_managed_dua = SafeHTMLField(blank=True, default='') self_managed_request_template = SafeHTMLField(blank=True, default='') license = models.ForeignKey('project.License', null=True, on_delete=models.SET_NULL) project_home_page = models.URLField(default='', blank=True) parent_projects = models.ManyToManyField('project.PublishedProject', blank=True, related_name='derived_%(class)ss') programming_languages = models.ManyToManyField( 'project.ProgrammingLanguage', related_name='%(class)ss', blank=True) core_project = models.ForeignKey('project.CoreProject', related_name='%(class)ss', on_delete=models.CASCADE) class Meta: abstract = True def is_published(self): if isinstance(self, PublishedProject): return True else: return False def author_contact_info(self, only_submitting=False): """ Get the names and emails of the project's authors. """ if only_submitting: user = self.authors.get(is_submitting=True).user return user.email, user.get_full_name else: authors = self.authors.all().order_by('display_order') users = [a.user for a in authors] return ((u.email, u.get_full_name()) for u in users) def corresponding_author(self): return self.authors.get(is_corresponding=True) def submitting_author(self): return self.authors.get(is_submitting=True) def author_list(self): """ Get the project's authors in the correct display order. """ return self.authors.all().order_by('display_order') def get_author_info(self, separate_submitting=False, include_emails=False): """ Get the project's authors, setting information needed to display their attributes. """ authors = self.authors.all().order_by('display_order') author_emails = ';'.join(a.user.email for a in authors) if separate_submitting: submitting_author = authors.get(is_submitting=True) coauthors = authors.filter(is_submitting=False) submitting_author.set_display_info() for a in coauthors: a.set_display_info() if include_emails: return submitting_author, coauthors, author_emails else: return submitting_author, coauthors else: for a in authors: a.set_display_info() if include_emails: return authors, author_emails else: return authors def get_platform_citation(self): """ Returns the information needed to generate the standard platform citation in multiple formats (MLA, APA, Chicago, Harvard, and Vancouver). 1. MLA (8th edition) [https://owl.purdue.edu/owl/research_and_citation/ mla_style/mla_formatting_and_style_guide/ mla_formatting_and_style_guide.html] 2. APA (7th edition) [https://owl.purdue.edu/owl/research_and_citation/ apa_style/apa_style_introduction.html] 3. Chicago (17th edition) [https://owl.purdue.edu/owl/ research_and_citation/ chicago_manual_17th_edition/ cmos_formatting_and_style_guide/ chicago_manual_of_style_17th_edition.html] 4. Harvard [https://www.mendeley.com/guides/harvard-citation-guide] 5. Vancouver [https://guides.lib.monash.edu/ld.php?content_id=14570618] Parameters ---------- N/A Returns ------- citation_styles [dict]: dictionary containing the desired citation style """ citation_styles = { 'MLA': ('<NAME>., et al. "PhysioBank, ' 'PhysioToolkit, and PhysioNet: Components of a ' 'new research resource for complex physiologic ' 'signals. Circulation [Online]. 101 (23), pp. ' 'e215–e220." (2000).'), 'APA': ('<NAME>., <NAME>., <NAME>., ' '<NAME>., <NAME>., <NAME>., ... & ' 'Stanley, <NAME>. (2000). PhysioBank, ' 'PhysioToolkit, and PhysioNet: Components of a ' 'new research resource for complex physiologic ' 'signals. Circulation [Online]. 101 (23), pp. ' 'e215–e220.'), 'Chicago': ('<NAME>., <NAME>, <NAME>. ' 'Hausdorff, <NAME>. <NAME>, <NAME>. ' '<NAME>, <NAME>, and <NAME>. ' 'Stanley. "PhysioBank, PhysioToolkit, and ' 'PhysioNet: Components of a new research ' 'resource for complex physiologic signals. ' 'Circulation [Online]. 101 (23), pp. ' 'e215–e220." (2000).'), 'Harvard': ('<NAME>., <NAME>., <NAME>., ' '<NAME>., <NAME>., <NAME>., ' '<NAME>., <NAME>., <NAME>. and ' 'Stanley, H.E., 2000. PhysioBank, ' 'PhysioToolkit, and PhysioNet: Components of a ' 'new research resource for complex physiologic ' 'signals. Circulation [Online]. 101 (23), pp. ' 'e215–e220.'), 'Vancouver': ('<NAME>, <NAME>, <NAME>, <NAME>, ' '<NAME>, <NAME>, <NAME>, <NAME>, Peng ' 'CK, Stanley HE. PhysioBank, PhysioToolkit, ' 'and PhysioNet: Components of a new research ' 'resource for complex physiologic signals. ' 'Circulation [Online]. 101 (23), pp. ' 'e215–e220.') } return citation_styles def abstract_text_content(self): """ Returns abstract as plain text. """ return html2text(self.abstract) def edit_log_history(self): """ Get a list of EditLog objects in submission order. Every object corresponds to a single submission from the author (and objects are listed in that order), but also includes the details of the editor's response (if any) to that particular submission. """ return self.edit_logs.order_by('submission_datetime').all() def copyedit_log_history(self): """ Get a list of CopyeditLog objects in creation order. Every object represents a point in time when the project was "opened for copyediting" (which happens once when the project is "accepted", and may happen again if the authors subsequently request further changes.) """ return self.copyedit_logs.order_by('start_datetime').all() def info_card(self, include_emails=True, force_calculate=False): """ Get all the information needed for the project info card seen by an admin """ authors, author_emails = self.get_author_info(include_emails=include_emails) storage_info = self.get_storage_info(force_calculate=force_calculate) edit_logs = self.edit_log_history() for e in edit_logs: e.set_quality_assurance_results() copyedit_logs = self.copyedit_log_history() # The last published version. May be None. latest_version = self.core_project.publishedprojects.all().last() return authors, author_emails, storage_info, edit_logs, copyedit_logs, latest_version def license_content(self, fmt): """ Get the license content of the project's license in text or html content. Takes the selected license and fills in the year and copyright holder. """ authors = self.authors.all().order_by('display_order') author_names = ', '.join(a.get_full_name() for a in authors) + '.' if fmt == 'text': content = self.license.text_content content = content.replace('<COPYRIGHT HOLDER>', author_names, 1) content = content.replace('<YEAR>', str(timezone.now().year), 1) elif fmt == 'html': content = self.license.html_content content = content.replace('&lt;COPYRIGHT HOLDER&gt;', author_names, 1) content = content.replace('&lt;YEAR&gt;', str(timezone.now().year), 1) return content def create_license_file(self): """ Create a file containing the text of the project license. A file 'LICENSE.txt' is created at the top level of the project directory, replacing any existing file with that name. """ fname = os.path.join(self.file_root(), 'LICENSE.txt') if os.path.isfile(fname): os.remove(fname) with open(fname, 'x') as outfile: outfile.write(self.license_content(fmt='text')) def get_directory_content(self, subdir=''): """ Return information for displaying files and directories from the project's file root. """ # Get folder to inspect if valid inspect_dir = self.get_inspect_dir(subdir) file_names, dir_names = list_items(inspect_dir) display_files, display_dirs = [], [] # Files require desciptive info and download links for file in file_names: file_info = get_file_info(os.path.join(inspect_dir, file)) file_info.url = self.file_display_url(subdir=subdir, file=file) file_info.raw_url = self.file_url(subdir=subdir, file=file) file_info.download_url = file_info.raw_url + '?download' display_files.append(file_info) # Directories require links for dir_name in dir_names: dir_info = get_directory_info(os.path.join(inspect_dir, dir_name)) dir_info.full_subdir = os.path.join(subdir, dir_name) display_dirs.append(dir_info) return display_files, display_dirs def schema_org_resource_type(self): """ Return a valid https://schema.org resource type. """ type_map = {0: 'Dataset', # database 1: 'SoftwareSourceCode', # software 2: 'Dataset', # challenge 3: 'Dataset' # model } try: return type_map[self.resource_type] except KeyError: return 'Dataset' def is_valid_passphrase(self, raw_passphrase): """ Checks if passphrase is valid for project """ anonymous = self.anonymous.first() if not anonymous: return False return anonymous.check_passphrase(raw_passphrase) def generate_anonymous_access(self): """ Checks if passphrase is valid for project """ if not self.anonymous.first(): anonymous = AnonymousAccess(project=self) else: anonymous = self.anonymous.first() return anonymous.generate_access() def get_anonymous_url(self): """ Returns current url for anonymous access """ anonymous = self.anonymous.first() if not anonymous: return False return anonymous.url def citation_text(self, style): """ Citation information in multiple formats (MLA, APA, Chicago, Harvard, and Vancouver). 1. MLA (8th edition) [https://owl.purdue.edu/owl/research_and_citation/ mla_style/mla_formatting_and_style_guide/ mla_formatting_and_style_guide.html] 2. APA (7th edition) [https://owl.purdue.edu/owl/research_and_citation/ apa_style/apa_style_introduction.html] 3. Chicago (17th edition) [https://owl.purdue.edu/owl/ research_and_citation/ chicago_manual_17th_edition/ cmos_formatting_and_style_guide/ chicago_manual_of_style_17th_edition.html] 4. Harvard [https://www.mendeley.com/guides/harvard-citation-guide] 5. Vancouver [https://guides.lib.monash.edu/ld.php?content_id=14570618] Parameters ---------- style [string]: ['MLA', 'APA', 'Chicago', 'Harvard', 'Vancouver'] Returns ------- citation_format [string]: string containing the desired citation style """ authors = self.authors.all().order_by('display_order') if self.is_published(): year = self.publish_datetime.year doi = self.doi if self.is_legacy: return '' else: """ Since the project is not yet published, the current year is used in place of the publication year, and '*****' is used in place of the DOI suffix. """ year = timezone.now().year doi = '10.13026/*****' shared_content = {'year': year, 'title': self.title, 'version': self.version} if style == 'MLA': style_format = ('{author}. "{title}" (version {version}). ' '<i>PhysioNet</i> ({year})') doi_format = (', <a href="https://doi.org/{doi}">' 'https://doi.org/{doi}</a>.') if (len(authors) == 1): all_authors = authors[0].get_full_name(reverse=True) elif (len(authors) == 2): first_author = authors[0].get_full_name(reverse=True) second_author = authors[1].get_full_name() all_authors = first_author + ', and ' + second_author else: all_authors = authors[0].get_full_name(reverse=True) all_authors += ', et al' elif style == 'APA': style_format = ('{author} ({year}). {title} (version ' '{version}). <i>PhysioNet</i>') doi_format = ('. <a href="https://doi.org/{doi}">' 'https://doi.org/{doi}</a>.') if (len(authors) == 1): all_authors = authors[0].initialed_name() elif (len(authors) == 2): first_author = authors[0].initialed_name() second_author = authors[1].initialed_name() all_authors = first_author + ', & ' + second_author elif (len(authors) > 20): all_authors = ', '.join( a.initialed_name() for a in authors[0:19]) all_authors += ', ... ' \ + authors[len(authors)-1].initialed_name() else: all_authors = ', '.join(a.initialed_name() for a in authors[:(len(authors)-1)]) all_authors += ', & ' + \ authors[len(authors)-1].initialed_name() elif style == 'Chicago': style_format = ('{author}. "{title}" (version {version}). ' '<i>PhysioNet</i> ({year})') doi_format = ('. <a href="https://doi.org/{doi}">' 'https://doi.org/{doi}</a>.') if (len(authors) == 1): all_authors = authors[0].get_full_name(reverse=True) else: all_authors = ', '.join( a.get_full_name(reverse=True) for a in authors[:(len(authors)-1)]) all_authors += ', and ' + \ authors[len(authors)-1].get_full_name() elif style == 'Harvard': style_format = ("{author} ({year}) '{title}' (version " "{version}), <i>PhysioNet</i>") doi_format = (". Available at: " "<a href='https://doi.org/{doi}'>" "https://doi.org/{doi}</a>.") if (len(authors) == 1): all_authors = authors[0].initialed_name() else: all_authors = ', '.join(a.initialed_name() for a in authors[:(len(authors)-1)]) all_authors += ', and ' + \ authors[len(authors)-1].initialed_name() elif style == 'Vancouver': style_format = ('{author}. {title} (version {version}). ' 'PhysioNet. {year}') doi_format = ('. Available from: ' '<a href="https://doi.org/{doi}">' 'https://doi.org/{doi}</a>.') all_authors = ', '.join(a.initialed_name(commas=False, periods=False) for a in authors) if doi: final_style = style_format + doi_format citation_format = format_html(final_style, author=all_authors, doi=doi, **shared_content) else: final_style = style_format + '.' citation_format = format_html(final_style, author=all_authors, **shared_content) return citation_format def citation_text_all(self): styles = ['MLA', 'APA', 'Chicago', 'Harvard', 'Vancouver'] citation_dict = {} for style in styles: citation_dict[style] = self.citation_text(style) return citation_dict class SubmissionInfo(models.Model): """ Submission information, inherited by all projects. Every project (ActiveProject, PublishedProject, and ArchivedProject) inherits from this class as well as Metadata. The difference is that the fields of this class contain internal information about the publication process; Metadata contains the public information that will be shown on the published project pages. In particular, UnpublishedProject.modified_datetime will be updated when any field of Metadata is altered (see UnpublishedProject.save), but not when a field of SubmissionInfo is modified. New fields should be added to this class only if they do not affect the content of the project as it will be shown when published. """ editor = models.ForeignKey('user.User', related_name='editing_%(class)ss', null=True, on_delete=models.SET_NULL, blank=True) # The very first submission submission_datetime = models.DateTimeField(null=True, blank=True) author_comments = models.CharField(max_length=10000, default='', blank=True) editor_assignment_datetime = models.DateTimeField(null=True, blank=True) # The last revision request (if any) revision_request_datetime = models.DateTimeField(null=True, blank=True) # The last resubmission (if any) resubmission_datetime = models.DateTimeField(null=True, blank=True) editor_accept_datetime = models.DateTimeField(null=True, blank=True) # The last copyedit (if any) copyedit_completion_datetime = models.DateTimeField(null=True, blank=True) author_approval_datetime = models.DateTimeField(null=True, blank=True) # When the submitting project was created creation_datetime = models.DateTimeField(auto_now_add=True) edit_logs = GenericRelation('project.EditLog') copyedit_logs = GenericRelation('project.CopyeditLog') # For ordering projects with multiple versions version_order = models.PositiveSmallIntegerField(default=0) # Anonymous access anonymous = GenericRelation('project.AnonymousAccess') class Meta: abstract = True def quota_manager(self): """ Return a QuotaManager for this project. This can be used to calculate the project's disk usage (represented by the bytes_used and inodes_used properties of the QuotaManager object.) """ allowance = self.core_project.storage_allowance published = self.core_project.total_published_size limit = allowance - published # DemoQuotaManager needs to know the project's toplevel # directory as well as its creation time (so that files # present in multiple versions can be correctly attributed to # the version where they first appeared.) quota_manager = DemoQuotaManager( project_path=self.file_root(), creation_time=self.creation_datetime) quota_manager.set_limits(bytes_hard=limit, bytes_soft=limit) return quota_manager class UnpublishedProject(models.Model): """ Abstract model inherited by ArchivedProject/ActiveProject """ # Date and time that the project's content was modified. # See content_modified() and save(). modified_datetime = models.DateTimeField(auto_now=True) # Whether this project is being worked on as a new version is_new_version = models.BooleanField(default=False) # Access url slug, also used as a submitting project id. slug = models.SlugField(max_length=MAX_PROJECT_SLUG_LENGTH, db_index=True) latest_reminder = models.DateTimeField(null=True, blank=True) doi = models.CharField(max_length=50, blank=True, null=True) authors = GenericRelation('project.Author') references = GenericRelation('project.Reference') publications = GenericRelation('project.Publication') topics = GenericRelation('project.Topic') class Meta: abstract = True def __str__(self): return self.title def file_root(self): """ Root directory containing the project's files """ return os.path.join(self.__class__.FILE_ROOT, self.slug) def get_storage_info(self, force_calculate=True): """ Return an object containing information about the project's storage usage. If force_calculate is true, calculate the size by recursively scanning the directory tree. This is deprecated. """ if force_calculate: used = self.storage_used() else: used = None allowance = self.core_project.storage_allowance published = self.core_project.total_published_size return StorageInfo(allowance=allowance, published=published, used=used) def get_previous_slug(self): """ If this is a new version of a project, get the slug of the published versions. """ if self.version_order: return self.core_project.publishedprojects.all().get( version_order=0).slug else: raise Exception('Not a new version') def remove(self): """ Delete this project's file content and the object """ shutil.rmtree(self.file_root()) return self.delete() def has_wfdb(self): """ Whether the project has wfdb files. """ return os.path.isfile(os.path.join(self.file_root(), 'RECORDS')) def content_modified(self): """ Update the project's modification timestamp. The modification timestamp (modified_datetime) is automatically updated when the object is saved, if any of the project's Metadata fields have been modified (see UnpublishedProject.save). This function should be called when saving or deleting objects, other than the UnpublishedProject itself, that are part of the project's visible content. """ # Note: modified_datetime is an auto_now field, so it is # automatically set to the current time whenever it is saved. self.save(update_fields=['modified_datetime']) @classmethod def from_db(cls, *args, **kwargs): """ Instantiate an object from the database. """ instance = super(UnpublishedProject, cls).from_db(*args, **kwargs) # Save the original field values so that we can later check if # they have been modified. Note that by using __dict__, this # will omit any deferred fields. instance.orig_fields = instance.__dict__.copy() return instance def save(self, *, content_modified=None, force_insert=False, update_fields=None, **kwargs): """ Save this object to the database. In addition to the standard keyword arguments, this accepts an optional content_modified argument: if true, modified_datetime will be set to the current time; if false, neither modified_datetime nor the Metadata fields will be saved. If this object was loaded from the database, and none of the Metadata fields have been changed from their original values, then content_modified defaults to False. Otherwise, content_modified defaults to True. """ # Note: modified_datetime is an auto_now field, so it is # automatically set to the current time (unless we exclude it # using update_fields.) if force_insert or update_fields: # If force_insert is specified, then we want to insert a # new object, which means setting the timestamp. If # update_fields is specified, then we want to update # precisely those fields. In either case, use the default # save method. return super().save(force_insert=force_insert, update_fields=update_fields, **kwargs) # If content_modified is not specified, then detect # automatically. if content_modified is None: if hasattr(self, 'orig_fields'): # Check whether any of the Metadata fields have been # modified since the object was loaded from the database. for f in Metadata._meta.fields: fname = f.attname if fname not in self.orig_fields: # If the field was initially deferred (and # thus its original value is unknown), assume # that it has been modified. This is not # ideal, but in general, it should be possible # to avoid this by explicitly setting # update_fields or content_modified whenever # deferred fields are used. LOGGER.warning( 'saving project with initially deferred fields') content_modified = True break if self.orig_fields[fname] != getattr(self, fname): content_modified = True break else: # If the object was not initially created by from_db, # assume content has been modified. content_modified = True if content_modified: # If content has been modified, then save normally. return super().save(**kwargs) else: # If content has not been modified, then exclude all of the # Metadata fields as well as modified_datetime. fields = ({f.name for f in self._meta.fields} - {f.name for f in Metadata._meta.fields} - {'id', 'modified_datetime'}) return super().save(update_fields=fields, **kwargs) class ArchivedProject(Metadata, UnpublishedProject, SubmissionInfo): """ An archived project. Created when (maps to archive_reason): 1. A user chooses to 'delete' their ActiveProject. 2. An ActiveProject is not submitted for too long. 3. An ActiveProject is submitted and rejected. 4. An ActiveProject is submitted and times out. """ archive_datetime = models.DateTimeField(auto_now_add=True) archive_reason = models.PositiveSmallIntegerField() # Where all the archived project files are kept FILE_ROOT = os.path.join(settings.MEDIA_ROOT, 'archived-projects') def __str__(self): return ('{0} v{1}'.format(self.title, self.version)) class ActiveProject(Metadata, UnpublishedProject, SubmissionInfo): """ The project used for submitting The submission_status field: - 0 : Not submitted - 10 : Submitting author submits. Awaiting editor assignment. - 20 : Editor assigned. Awaiting editor decision. - 30 : Revisions requested. Waiting for resubmission. Loops back to 20 when author resubmits. - 40 : Accepted. In copyedit stage. Awaiting editor to copyedit. - 50 : Editor completes copyedit. Awaiting authors to approve. - 60 : Authors approve copyedit. Ready for editor to publish """ submission_status = models.PositiveSmallIntegerField(default=0) # Max number of active submitting projects a user is allowed to have MAX_SUBMITTING_PROJECTS = 10 INDIVIDUAL_FILE_SIZE_LIMIT = 10 * 1024**3 # Where all the active project files are kept FILE_ROOT = os.path.join(settings.MEDIA_ROOT, 'active-projects') REQUIRED_FIELDS = ( # 0: Database ('title', 'abstract', 'background', 'methods', 'content_description', 'usage_notes', 'conflicts_of_interest', 'version', 'license', 'short_description'), # 1: Software ('title', 'abstract', 'background', 'content_description', 'usage_notes', 'installation', 'conflicts_of_interest', 'version', 'license', 'short_description'), # 2: Challenge ('title', 'abstract', 'background', 'methods', 'content_description', 'usage_notes', 'conflicts_of_interest', 'version', 'license', 'short_description'), # 3: Model ('title', 'abstract', 'background', 'methods', 'content_description', 'usage_notes', 'installation', 'conflicts_of_interest', 'version', 'license', 'short_description'), ) # Custom labels that don't match model field names LABELS = ( # 0: Database {'content_description': 'Data Description'}, # 1: Software {'content_description': 'Software Description', 'methods': 'Technical Implementation', 'installation': 'Installation and Requirements'}, # 2: Challenge {'background': 'Objective', 'methods': 'Participation', 'content_description': 'Data Description', 'usage_notes': 'Evaluation'}, # 3: Model {'content_description': 'Model Description', 'methods': 'Technical Implementation', 'installation': 'Installation and Requirements'}, ) SUBMISSION_STATUS_LABELS = { 0: 'Not submitted.', 10: 'Awaiting editor assignment.', 20: 'Awaiting editor decision.', 30: 'Revisions requested.', 40: 'Submission accepted; awaiting editor copyedits.', 50: 'Awaiting authors to approve publication.', 60: 'Awaiting editor to publish.', } def storage_used(self): """ Total storage used in bytes. This includes the total size of new files uploaded to this project, as well as the total size of files published in past versions of this CoreProject. (The QuotaManager should ensure that the same file is not counted twice in this total.) """ current = self.quota_manager().bytes_used published = self.core_project.total_published_size return current + published def storage_allowance(self): """ Storage allowed in bytes """ return self.core_project.storage_allowance def get_inspect_dir(self, subdir): """ Return the folder to inspect if valid. subdir joined onto the file root of this project. """ # Sanitize subdir for illegal characters validate_subdir(subdir) # Folder must be a subfolder of the file root # (but not necessarily exist or be a directory) inspect_dir = os.path.join(self.file_root(), subdir) if inspect_dir.startswith(self.file_root()): return inspect_dir else: raise Exception('Invalid directory request') def file_url(self, subdir, file): """ Url of a file to download in this project """ return reverse('serve_active_project_file', args=(self.slug, os.path.join(subdir, file))) def file_display_url(self, subdir, file): """ URL of a file to display in this project """ return reverse('display_active_project_file', args=(self.slug, os.path.join(subdir, file))) def under_submission(self): """ Whether the project is under submission """ return bool(self.submission_status) def submission_deadline(self): return self.creation_datetime + timedelta(days=180) def submission_days_remaining(self): return (self.submission_deadline() - timezone.now()).days def submission_status_label(self): return ActiveProject.SUBMISSION_STATUS_LABELS[self.submission_status] def author_editable(self): """ Whether the project can be edited by its authors """ if self.submission_status in [0, 30]: return True def copyeditable(self): """ Whether the project can be copyedited """ if self.submission_status == 40: return True def archive(self, archive_reason): """ Archive the project. Create an ArchivedProject object, copy over the fields, and delete this object """ archived_project = ArchivedProject(archive_reason=archive_reason, slug=self.slug) modified_datetime = self.modified_datetime # Direct copy over fields for attr in [f.name for f in Metadata._meta.fields] + [f.name for f in SubmissionInfo._meta.fields]: setattr(archived_project, attr, getattr(self, attr)) archived_project.save() # Redirect the related objects for reference in self.references.all(): reference.project = archived_project reference.save() for publication in self.publications.all(): publication.project = archived_project publication.save() for topic in self.topics.all(): topic.project = archived_project topic.save() for author in self.authors.all(): author.project = archived_project author.save() for edit_log in self.edit_logs.all(): edit_log.project = archived_project edit_log.save() for copyedit_log in self.copyedit_logs.all(): copyedit_log.project = archived_project copyedit_log.save() for parent_project in self.parent_projects.all(): archived_project.parent_projects.add(parent_project) if self.resource_type.id == 1: languages = self.programming_languages.all() if languages: archived_project.programming_languages.add(*list(languages)) # Voluntary delete if archive_reason == 1: self.clear_files() else: # Move over files os.rename(self.file_root(), archived_project.file_root()) # Copy the ActiveProject timestamp to the ArchivedProject. # Since this is an auto_now field, save() doesn't allow # setting an arbitrary value. queryset = ArchivedProject.objects.filter(id=archived_project.id) queryset.update(modified_datetime=modified_datetime) return self.delete() def fake_delete(self): """ Appear to delete this project. Actually archive it. """ self.archive(archive_reason=1) def check_integrity(self): """ Run integrity tests on metadata fields and return whether the project passes the checks """ self.integrity_errors = ErrorList() # Invitations for invitation in self.authorinvitations.filter(is_active=True): self.integrity_errors.append( 'Outstanding author invitation to {0}'.format(invitation.email)) # Storage requests for storage_request in self.storagerequests.filter( is_active=True): self.integrity_errors.append('Outstanding storage request') # Authors for author in self.authors.all().order_by('display_order'): if not author.get_full_name(): self.integrity_errors.append('Author {0} has not fill in name'.format(author.user.username)) if not author.affiliations.all(): self.integrity_errors.append('Author {0} has not filled in affiliations'.format(author.user.username)) # Metadata for attr in ActiveProject.REQUIRED_FIELDS[self.resource_type.id]: value = getattr(self, attr) text = unescape(strip_tags(str(value))) if value is None or not text or text.isspace(): l = self.LABELS[self.resource_type.id][attr] if attr in self.LABELS[self.resource_type.id] else attr.title().replace('_', ' ') self.integrity_errors.append('Missing required field: {0}'.format(l)) published_projects = self.core_project.publishedprojects.all() if published_projects: published_versions = [p.version for p in published_projects] if self.version in published_versions: self.integrity_errors.append('The version matches a previously published version.') self.version_clash = True else: self.version_clash = False if self.integrity_errors: return False else: return True def is_submittable(self): """ Whether the project can be submitted """ return (not self.under_submission() and self.check_integrity()) def submit(self, author_comments): """ Submit the project for review. """ if not self.is_submittable(): raise Exception('ActiveProject is not submittable') self.submission_status = 10 self.submission_datetime = timezone.now() self.author_comments = author_comments self.save() # Create the first edit log EditLog.objects.create(project=self, author_comments=author_comments) def set_submitting_author(self): """ Used to save query time in templates """ self.submitting_author = self.submitting_author() def assign_editor(self, editor): """ Assign an editor to the project and set the submission status to the edit stage. """ self.editor = editor self.submission_status = 20 self.editor_assignment_datetime = timezone.now() self.save() def reassign_editor(self, editor): """ Reassign the current project editor with new editor """ self.editor = editor self.save() def reject(self): """ Reject a project under submission """ self.archive(archive_reason=3) def is_resubmittable(self): """ Submit the project for review. """ return (self.submission_status == 30 and self.check_integrity()) def resubmit(self, author_comments): """ """ if not self.is_resubmittable(): raise Exception('ActiveProject is not resubmittable') with transaction.atomic(): self.submission_status = 20 self.resubmission_datetime = timezone.now() self.save() # Create a new edit log EditLog.objects.create(project=self, is_resubmission=True, author_comments=author_comments) def reopen_copyedit(self): """ Reopen the project for copyediting """ if self.submission_status == 50: self.submission_status = 40 self.copyedit_completion_datetime = None self.save() CopyeditLog.objects.create(project=self, is_reedit=True) self.authors.all().update(approval_datetime=None) def approve_author(self, author): """" Approve an author. Move the project into the next state if the author is the final outstanding one. Return whether the process was successful. """ if self.submission_status == 50 and not author.approval_datetime: now = timezone.now() author.approval_datetime = now author.save() if self.all_authors_approved(): self.author_approval_datetime = now self.submission_status = 60 self.save() return True def all_authors_approved(self): """ Whether all authors have approved the publication """ authors = self.authors.all() return len(authors) == len(authors.filter( approval_datetime__isnull=False)) def is_publishable(self): """ Check whether a project may be published """ if self.submission_status == 60 and self.check_integrity() and self.all_authors_approved(): return True return False def clear_files(self): """ Delete the project file directory """ shutil.rmtree(self.file_root()) def publish(self, slug=None, make_zip=True, title=None): """ Create a published version of this project and update the submission status. Parameters ---------- slug : the desired custom slug of the published project. make_zip : whether to make a zip of all the files. """ if not self.is_publishable(): raise Exception('The project is not publishable') published_project = PublishedProject(has_wfdb=self.has_wfdb()) # Direct copy over fields for attr in [f.name for f in Metadata._meta.fields] + [f.name for f in SubmissionInfo._meta.fields]: setattr(published_project, attr, getattr(self, attr)) published_project.slug = slug or self.slug # Create project file root if this is first version or the first # version with a different access policy if not os.path.isdir(published_project.project_file_root()): os.mkdir(published_project.project_file_root()) os.rename(self.file_root(), published_project.file_root()) try: with transaction.atomic(): # If this is a new version, previous fields need to be updated # and slug needs to be carried over if self.version_order: previous_published_projects = self.core_project.publishedprojects.all() slug = previous_published_projects.first().slug title = previous_published_projects.first().title if slug != published_project.slug: raise ValueError( {"message": "The published project has different slugs."}) # Set the slug if specified published_project.slug = slug or self.slug published_project.title = title or self.title published_project.doi = self.doi published_project.save() # If this is a new version, all version fields have to be updated if self.version_order > 0: published_project.set_version_order() # Same content, different objects. for reference in self.references.all().order_by('id'): published_reference = PublishedReference.objects.create( description=reference.description, project=published_project) for publication in self.publications.all(): published_publication = PublishedPublication.objects.create( citation=publication.citation, url=publication.url, project=published_project) published_project.set_topics([t.description for t in self.topics.all()]) for parent_project in self.parent_projects.all(): published_project.parent_projects.add(parent_project) if self.resource_type.id == 1: languages = self.programming_languages.all() if languages: published_project.programming_languages.add(*list(languages)) for author in self.authors.all(): author_profile = author.user.profile published_author = PublishedAuthor.objects.create( project=published_project, user=author.user, is_submitting=author.is_submitting, is_corresponding=author.is_corresponding, approval_datetime=author.approval_datetime, display_order=author.display_order, first_names=author_profile.first_names, last_name=author_profile.last_name, ) affiliations = author.affiliations.all() for affiliation in affiliations: published_affiliation = PublishedAffiliation.objects.create( name=affiliation.name, author=published_author) if author.is_corresponding: published_author.corresponding_email = author.corresponding_email.email published_author.save() contact = Contact.objects.create(name=author.get_full_name(), affiliations='; '.join(a.name for a in affiliations), email=author.corresponding_email, project=published_project) # Move the edit and copyedit logs for edit_log in self.edit_logs.all(): edit_log.project = published_project edit_log.save() for copyedit_log in self.copyedit_logs.all(): copyedit_log.project = published_project copyedit_log.save() # Set files read only and make zip file if requested move_files_as_readonly(published_project.id, self.file_root(), published_project.file_root(), make_zip, verbose_name='Read Only Files - {}'.format(published_project)) # Remove the ActiveProject self.delete() return published_project except: # Move the files to the active project directory os.rename(published_project.file_root(), self.file_root()) raise class PublishedProject(Metadata, SubmissionInfo): """ A published project. Immutable snapshot. """ # File storage sizes in bytes main_storage_size = models.BigIntegerField(default=0) compressed_storage_size = models.BigIntegerField(default=0) incremental_storage_size = models.BigIntegerField(default=0) publish_datetime = models.DateTimeField(auto_now_add=True) has_other_versions = models.BooleanField(default=False) deprecated_files = models.BooleanField(default=False) # doi = models.CharField(max_length=50, unique=True, validators=[validate_doi]) # Temporary workaround doi = models.CharField(max_length=50, blank=True, null=True) slug = models.SlugField(max_length=MAX_PROJECT_SLUG_LENGTH, db_index=True, validators=[validate_slug]) # Fields for legacy pb databases is_legacy = models.BooleanField(default=False) full_description = SafeHTMLField(default='') is_latest_version = models.BooleanField(default=True) # Featured content featured = models.PositiveSmallIntegerField(null=True) has_wfdb = models.BooleanField(default=False) display_publications = models.BooleanField(default=True) # Where all the published project files are kept, depending on access. PROTECTED_FILE_ROOT = os.path.join(settings.MEDIA_ROOT, 'published-projects') # Workaround for development if 'development' in os.environ['DJANGO_SETTINGS_MODULE']: PUBLIC_FILE_ROOT = os.path.join(settings.STATICFILES_DIRS[0], 'published-projects') else: PUBLIC_FILE_ROOT = os.path.join(settings.STATIC_ROOT, 'published-projects') SPECIAL_FILES = { 'FILES.txt':'List of all files', 'LICENSE.txt':'License for using files', 'SHA256SUMS.txt':'Checksums of all files', 'RECORDS.txt':'List of WFDB format records', 'ANNOTATORS.tsv':'List of WFDB annotation file types' } class Meta: unique_together = (('core_project', 'version'),('featured',),) def __str__(self): return ('{0} v{1}'.format(self.title, self.version)) def project_file_root(self): """ Root directory containing the published project's files. This is the parent directory of the main and special file directories. """ if self.access_policy: return os.path.join(PublishedProject.PROTECTED_FILE_ROOT, self.slug) else: return os.path.join(PublishedProject.PUBLIC_FILE_ROOT, self.slug) def file_root(self): """ Root directory where the main user uploaded files are located """ return os.path.join(self.project_file_root(), self.version) def storage_used(self): """ Bytes of storage used by main files and compressed file if any """ main = get_tree_size(self.file_root()) compressed = os.path.getsize(self.zip_name(full=True)) if os.path.isfile(self.zip_name(full=True)) else 0 return main, compressed def set_storage_info(self): """ Sum up the file sizes of the project and set the storage info fields """ self.main_storage_size, self.compressed_storage_size = self.storage_used() self.save() def slugged_label(self): """ Slugged readable label from the title and version. Used for the project's zipped files """ return '-'.join((slugify(self.title), self.version.replace(' ', '-'))) def zip_name(self, full=False): """ Name of the zip file. Either base name or full path name. """ name = '{}.zip'.format(self.slugged_label()) if full: name = os.path.join(self.project_file_root(), name) return name def make_zip(self): """ Make a (new) zip file of the main files. """ fname = self.zip_name(full=True) if os.path.isfile(fname): os.remove(fname) zip_dir(zip_name=fname, target_dir=self.file_root(), enclosing_folder=self.slugged_label()) self.compressed_storage_size = os.path.getsize(fname) self.save() def remove_zip(self): fname = self.zip_name(full=True) if os.path.isfile(fname): os.remove(fname) self.compressed_storage_size = 0 self.save() def zip_url(self): """ The url to download the zip file from. Only needed for open projects """ if self.access_policy: raise Exception('This should not be called by protected projects') else: return os.path.join('published-projects', self.slug, self.zip_name()) def make_checksum_file(self): """ Make the checksums file for the main files """ fname = os.path.join(self.file_root(), 'SHA256SUMS.txt') if os.path.isfile(fname): os.remove(fname) with open(fname, 'w') as outfile: for f in sorted_tree_files(self.file_root()): if f != 'SHA256SUMS.txt': h = hashlib.sha256() with open(os.path.join(self.file_root(), f), 'rb') as fp: block = fp.read(h.block_size) while block: h.update(block) block = fp.read(h.block_size) outfile.write('{} {}\n'.format(h.hexdigest(), f)) self.set_storage_info() def remove_files(self): """ Remove files of this project """ clear_directory(self.file_root()) self.remove_zip() self.set_storage_info() def deprecate_files(self, delete_files): """ Label the project's files as deprecated. Option of deleting files. """ self.deprecated_files = True self.save() if delete_files: self.remove_files() def get_inspect_dir(self, subdir): """ Return the folder to inspect if valid. subdir joined onto the main file root of this project. """ # Sanitize subdir for illegal characters validate_subdir(subdir) # Folder must be a subfolder of the file root # (but not necessarily exist or be a directory) inspect_dir = os.path.join(self.file_root(), subdir) if inspect_dir.startswith(self.file_root()): return inspect_dir else: raise Exception('Invalid directory request') def file_url(self, subdir, file): """ Url of a file to download in this project """ full_file_name = os.path.join(subdir, file) return reverse('serve_published_project_file', args=(self.slug, self.version, full_file_name)) def file_display_url(self, subdir, file): """ URL of a file to display in this project """ return reverse('display_published_project_file', args=(self.slug, self.version, os.path.join(subdir, file))) def has_access(self, user): """ Whether the user has access to this project's files """ if self.deprecated_files: return False if self.access_policy == 2 and ( not user.is_authenticated or not user.is_credentialed): return False elif self.access_policy == 1 and not user.is_authenticated: return False if self.is_self_managed_access: return DataAccessRequest.objects.filter( project=self, requester=user, status=DataAccessRequest.ACCEPT_REQUEST_VALUE).exists() elif self.access_policy: return DUASignature.objects.filter( project=self, user=user).exists() return True def can_approve_requests(self, user): """ Whether the user can view and respond to access requests to self managed projects """ # check whether user is the corresponding author of the project is_corresponding = user == self.corresponding_author().user return is_corresponding or self.is_data_access_reviewer(user) def is_data_access_reviewer(self, user): return DataAccessRequestReviewer.objects.filter( reviewer=user, is_revoked=False, project=self).exists() def get_storage_info(self, force_calculate=True): """ Return an object containing information about the project's storage usage. Main, compressed, total files, and allowance. This function always returns the cached information stored in the model. The force_calculate argument has no effect. """ main = self.main_storage_size compressed = self.compressed_storage_size return StorageInfo(allowance=self.core_project.storage_allowance, used=main+compressed, include_remaining=False, main_used=main, compressed_used=compressed) def remove(self, force=False): """ Remove the project and its files. Probably will never be used in production. `force` argument is for safety. """ if force: shutil.rmtree(self.file_root()) return self.delete() else: raise Exception('Make sure you want to remove this item.') def submitting_user(self): "User who is the submitting author" return self.authors.get(is_submitting=True).user def can_publish_new(self, user): """ Whether the user can publish a new version of this project """ if user == self.submitting_user() and not self.core_project.active_new_version(): return True return False def can_manage_data_access_reviewers(self, user): return user == self.corresponding_author().user def add_topic(self, topic_description): """ Tag this project with a topic """ published_topic = PublishedTopic.objects.filter( description=topic_description.lower()) # Create the published topic object first if it doesn't exist if published_topic.count(): published_topic = published_topic.get() else: published_topic = PublishedTopic.objects.create( description=topic_description.lower()) published_topic.projects.add(self) published_topic.project_count += 1 published_topic.save() def remove_topic(self, topic_description): """ Remove the topic tag from this project """ published_topic = PublishedTopic.objects.filter( description=topic_description.lower()) if published_topic.count(): published_topic = published_topic.get() published_topic.projects.remove(self) published_topic.project_count -= 1 published_topic.save() if published_topic.project_count == 0: published_topic.delete() def set_topics(self, topic_descriptions): """ Set the topic tags for this project. topic_descriptions : list of description strings """ existing_descriptions = [t.description for t in self.topics.all()] # Add these topics for td in set(topic_descriptions) - set(existing_descriptions): self.add_topic(td) # Remove these topics for td in set(existing_descriptions) - set(topic_descriptions): self.remove_topic(td) def set_version_order(self): """ Order the versions by number. Then it set a correct version order and a correct latest version """ published_projects = self.core_project.get_published_versions() project_versions = [] for project in published_projects: project_versions.append(project.version) sorted_versions = sorted(project_versions, key=StrictVersion) for indx, version in enumerate(sorted_versions): tmp = published_projects.get(version=version) tmp.version_order = indx tmp.has_other_versions = True tmp.is_latest_version = False if sorted_versions[-1] == version: tmp.is_latest_version = True tmp.save() def exists_project_slug(slug): """ Whether the slug has been taken by an existing project of any kind. """ return bool(ActiveProject.objects.filter(slug=slug) or ArchivedProject.objects.filter(slug=slug) or PublishedProject.objects.filter(slug=slug)) class ProgrammingLanguage(models.Model): """ Language to tag all projects """ name = models.CharField(max_length=50, unique=True) def __str__(self): return self.name class License(models.Model): name = models.CharField(max_length=100) slug = models.SlugField(max_length=120) text_content = models.TextField(default='') html_content = SafeHTMLField(default='') home_page = models.URLField() # A project must choose a license with a matching access policy and # compatible resource type access_policy = models.PositiveSmallIntegerField(choices=Metadata.ACCESS_POLICIES, default=0) # A license can be used for one or more resource types. # This is a comma delimited char field containing allowed types. # ie. '0' or '0,2' or '1,3,4' resource_types = models.CharField(max_length=100) # A protected license has associated DUA content dua_name = models.CharField(max_length=100, blank=True, default='') dua_html_content = SafeHTMLField(blank=True, default='') def __str__(self): return self.name def dua_text_content(self): """ Returns dua_html_content as plain text. Used when adding the DUA to plain text emails. """ return html2text(self.dua_html_content) class DUASignature(models.Model): """ Log of user signing DUA """ project = models.ForeignKey('project.PublishedProject', on_delete=models.CASCADE) user = models.ForeignKey('user.User', on_delete=models.CASCADE, related_name='dua_signatures') sign_datetime = models.DateTimeField(auto_now_add=True) class DataAccessRequest(models.Model): PENDING_VALUE = 0 REJECT_REQUEST_VALUE = 1 WITHDRAWN_VALUE = 2 ACCEPT_REQUEST_VALUE = 3 REJECT_ACCEPT = ( (REJECT_REQUEST_VALUE, 'Reject'), (ACCEPT_REQUEST_VALUE, 'Accept'), ) status_texts = { PENDING_VALUE: "pending", REJECT_REQUEST_VALUE: "rejected", WITHDRAWN_VALUE: "withdrawn", ACCEPT_REQUEST_VALUE: "accepted" } DATA_ACCESS_REQUESTS_DAY_LIMIT = 14 request_datetime = models.DateTimeField(auto_now_add=True) requester = models.ForeignKey('user.User', on_delete=models.CASCADE) project = models.ForeignKey('project.PublishedProject', related_name='data_access_requests', on_delete=models.CASCADE) data_use_title = models.CharField(max_length=200, default='') data_use_purpose = SafeHTMLField(blank=False, max_length=10000) status = models.PositiveSmallIntegerField(default=0, choices=REJECT_ACCEPT) decision_datetime = models.DateTimeField(null=True) responder = models.ForeignKey('user.User', null=True, related_name='data_access_request_user', on_delete=models.SET_NULL) responder_comments = SafeHTMLField(blank=True, max_length=10000) def is_accepted(self): return self.status == self.ACCEPT_REQUEST_VALUE def is_rejected(self): return self.status == self.REJECT_REQUEST_VALUE def is_withdrawn(self): return self.status == self.WITHDRAWN_VALUE def is_pending(self): return self.status == self.PENDING_VALUE def status_text(self): return self.status_texts.get(self.status, 'unknown') class DataAccessRequestReviewer(models.Model): """ A user who is invited to review data access requests of self managed credentialing projects. """ class Meta: constraints = [models.UniqueConstraint(fields=['project', 'reviewer'], name='unique project reviewer')] project = models.ForeignKey('project.PublishedProject', related_name='data_access_request_reviewers', on_delete=models.CASCADE) reviewer = models.ForeignKey('user.User', on_delete=models.CASCADE, related_name='data_access_request_reviewers') added_date = models.DateTimeField(auto_now_add=True) is_revoked = models.BooleanField(default=False) revocation_date = models.DateTimeField(null=True) def revoke(self): self.revocation_date = timezone.now() self.is_revoked = True self.save() class BaseInvitation(models.Model): """ Base class for authorship invitations and storage requests """ project = models.ForeignKey('project.ActiveProject', related_name='%(class)ss', on_delete=models.CASCADE) request_datetime = models.DateTimeField(auto_now_add=True) response_datetime = models.DateTimeField(null=True) response = models.NullBooleanField(null=True) is_active = models.BooleanField(default=True) class Meta: abstract = True class AuthorInvitation(BaseInvitation): """ Invitation to join a project as an author """ # The target email email = models.EmailField(max_length=255) # User who made the invitation inviter = models.ForeignKey('user.User', on_delete=models.CASCADE) def __str__(self): return 'ActiveProject: {0} To: {1} By: {2}'.format(self.project, self.email, self.inviter) def get_user_invitations(user, exclude_duplicates=True): """ Get all active author invitations to a user """ emails = user.get_emails() invitations = AuthorInvitation.objects.filter(email__in=emails, is_active=True).order_by('-request_datetime') # Remove duplicate invitations to the same project if exclude_duplicates: project_slugs = [] remove_ids = [] for invitation in invitations: if invitation.project.id in project_slugs: remove_ids.append(invitation.id) else: project_slugs.append(invitation.project.id) invitations = invitations.exclude(id__in=remove_ids) return invitations def is_invited(user, project): "Whether a user is invited to author a project" user_invitations = get_user_invitations(user=user) return bool(project in [inv.project for inv in invitations]) class StorageRequest(BaseInvitation): """ A request for storage capacity for a project """ # Requested storage size in GB. Max = 10Tb request_allowance = models.SmallIntegerField( validators=[MaxValueValidator(10240), MinValueValidator(1)]) responder = models.ForeignKey('user.User', null=True, on_delete=models.SET_NULL) response_message = models.CharField(max_length=10000, default='', blank=True) def __str__(self): return '{0}GB for project: {1}'.format(self.request_allowance, self.project.__str__()) class EditLog(models.Model): """ Log for an editor decision. Also saves submission info. """ # Quality assurance fields for data and software QUALITY_ASSURANCE_FIELDS = ( # 0: Database ('soundly_produced', 'well_described', 'open_format', 'data_machine_readable', 'reusable', 'no_phi', 'pn_suitable'), # 1: Software ('soundly_produced', 'well_described', 'open_format', 'no_phi', 'reusable', 'pn_suitable'), # 2: Challenge ('soundly_produced', 'well_described', 'open_format', 'data_machine_readable', 'reusable', 'no_phi', 'pn_suitable'), # 3: Model ('soundly_produced', 'well_described', 'open_format', 'data_machine_readable', 'reusable', 'no_phi', 'pn_suitable'), ) # The editor's free input fields EDITOR_FIELDS = ('editor_comments', 'decision', 'auto_doi') COMMON_LABELS = { 'reusable': 'Does the project include everything needed for reuse by the community?', 'pn_suitable': 'Is the content suitable for PhysioNet?', 'editor_comments': 'Comments to authors', 'no_phi': 'Is the project free of protected health information?', 'data_machine_readable': 'Are all files machine-readable?' } LABELS = ( # 0: Database {'soundly_produced': 'Has the data been produced in a sound manner?', 'well_described': 'Is the data adequately described?', 'open_format': 'Is the data provided in an open format?', 'data_machine_readable': 'Are the data files machine-readable?'}, # 1: Software {'soundly_produced': 'Does the software follow best practice in development?', 'well_described': 'Is the software adequately described?', 'open_format': 'Is the software provided in an open format?'}, # 2: Challenge {'soundly_produced': 'Has the challenge been produced in a sound manner?', 'well_described': 'Is the challenge adequately described?', 'open_format': 'Is all content provided in an open format?'}, # 3: Model {'soundly_produced': 'Does the software follow best practice in development?', 'well_described': 'Is the software adequately described?', 'open_format': 'Is the software provided in an open format?'}, ) HINTS = { 'no_phi': [ 'No dates in WFDB header files (or anonymized dates only)?', 'No identifying information of any individual' ' (caregivers as well as patients)?', 'No ages of individuals above 89 years?', 'No hidden metadata (e.g. EDF headers)?', 'No internal timestamps, date-based UUIDs or other identifiers?', ], 'open_format': [ 'No compiled binaries or bytecode?', 'No minified or obfuscated source code?', ], } content_type = models.ForeignKey(ContentType, on_delete=models.CASCADE) object_id = models.PositiveIntegerField() project = GenericForeignKey('content_type', 'object_id') # When the submitting author submits/resubmits submission_datetime = models.DateTimeField(auto_now_add=True) is_resubmission = models.BooleanField(default=False) author_comments = models.CharField(max_length=10000, default='') # Quality assurance fields soundly_produced = models.NullBooleanField(null=True) well_described = models.NullBooleanField(null=True) open_format = models.NullBooleanField(null=True) data_machine_readable = models.NullBooleanField(null=True) reusable = models.NullBooleanField(null=True) no_phi = models.NullBooleanField(null=True) pn_suitable = models.NullBooleanField(null=True) # Editor decision. 0 1 2 for reject/revise/accept decision = models.SmallIntegerField(null=True) decision_datetime = models.DateTimeField(null=True) # Comments for the decision editor_comments = models.CharField(max_length=10000) auto_doi = models.BooleanField(default=True) def set_quality_assurance_results(self): """ Prepare the string fields for the editor's decisions of the quality assurance fields, to be displayed. Does nothing if the decision has not been made. """ if not self.decision_datetime: return resource_type = self.project.resource_type # See also YES_NO_UNDETERMINED in console/forms.py RESPONSE_LABEL = {True: 'Yes', False: 'No', None: 'Undetermined'} # Retrieve their labels and results for our resource type quality_assurance_fields = self.__class__.QUALITY_ASSURANCE_FIELDS[resource_type.id] # Create the labels dictionary for this resource type labels = {**self.__class__.COMMON_LABELS, **self.__class__.LABELS[resource_type.id]} self.quality_assurance_results = [] for f in quality_assurance_fields: qa_str = '{} {}'.format(labels[f], RESPONSE_LABEL[getattr(self, f)]) self.quality_assurance_results.append(qa_str) class CopyeditLog(models.Model): """ Log for an editor copyedit """ content_type = models.ForeignKey(ContentType, on_delete=models.CASCADE) object_id = models.PositiveIntegerField() project = GenericForeignKey('content_type', 'object_id') # Either the time the project was accepted and moved into copyedit # from the edit stage, or the time it was reopened for copyedit from # the author approval stage. start_datetime = models.DateTimeField(auto_now_add=True) # Whether the submission was reopened for copyediting is_reedit = models.BooleanField(default=False) made_changes = models.NullBooleanField(null=True) changelog_summary = models.CharField(default='', max_length=10000, blank=True) complete_datetime = models.DateTimeField(null=True) class LegacyProject(models.Model): """ Temporary model for migrating legacy databases """ title = models.CharField(max_length=255) slug = models.CharField(max_length=100) abstract = SafeHTMLField(blank=True, default='') full_description = SafeHTMLField() doi = models.CharField(max_length=100, blank=True, default='') version = models.CharField(max_length=20, default='1.0.0') resource_type = models.PositiveSmallIntegerField(default=0) publish_date = models.DateField() # In case we want a citation citation = models.CharField(blank=True, default='', max_length=1000) citation_url = models.URLField(blank=True, default='') contact_name = models.CharField(max_length=120, default='PhysioNet Support') contact_affiliations = models.CharField(max_length=150, default='MIT') contact_email = models.EmailField(max_length=255, default='<EMAIL>') # Put the references as part of the full description def __str__(self): return ' --- '.join([self.slug, self.title]) def publish(self, make_file_roots=False): """ Turn into a published project """ p = PublishedProject.objects.create(title=self.title, doi=self.doi, slug=self.slug, resource_type=ProjectType.objects.get(id=self.resource_type), core_project=CoreProject.objects.create(), abstract=self.abstract, is_legacy=True, full_description=self.full_description, version=self.version, license=License.objects.get(name='Open Data Commons Attribution License v1.0') ) # Have to set publish_datetime here due to auto_now_add of object dt = datetime.combine(self.publish_date, datetime.min.time()) dt = pytz.timezone(timezone.get_default_timezone_name()).localize(dt) p.publish_datetime = dt p.save() # Related objects if self.citation: PublishedPublication.objects.create(citation=self.citation, url=self.citation_url, project=p) Contact.objects.create(name=self.contact_name, affiliations=self.contact_affiliations, email=self.contact_email, project=p) if make_file_roots: os.mkdir(p.project_file_root()) os.mkdir(p.file_root()) class GCP(models.Model): """ Store all of the Google Cloud information with a relation to a project. """ project = models.OneToOneField('project.PublishedProject', related_name='gcp', on_delete=models.CASCADE) bucket_name = models.CharField(max_length=150, null=True) access_group = models.CharField(max_length=170, null=True) is_private = models.BooleanField(default=False) sent_zip = models.BooleanField(default=False) sent_files = models.BooleanField(default=False) managed_by = models.ForeignKey('user.User', related_name='gcp_manager', on_delete=models.CASCADE) creation_datetime = models.DateTimeField(auto_now_add=True) finished_datetime = models.DateTimeField(null=True) class DataAccess(models.Model): """ Store all the information for different types of file access. platform = local, AWS or GCP location = the platform specific identifier referencing the data """ PLATFORM_ACCESS = ( (0, 'local'), (1, 'aws-open-data'), (2, 'aws-s3'), (3, 'gcp-bucket'), (4, 'gcp-bigquery'), ) project = models.ForeignKey('project.PublishedProject', related_name='%(class)ss', db_index=True, on_delete=models.CASCADE) platform = models.PositiveSmallIntegerField(choices=PLATFORM_ACCESS) location = models.CharField(max_length=100, null=True) class AnonymousAccess(models.Model): """ Makes it possible to grant anonymous access (without user auth) to a project and its files by authenticating with a passphrase. """ # Project GenericFK content_type = models.ForeignKey(ContentType, on_delete=models.CASCADE) object_id = models.PositiveIntegerField() project = GenericForeignKey('content_type', 'object_id') # Stores hashed passphrase passphrase = models.CharField(max_length=128) # Random url url = models.CharField(max_length=64) # Record tracking creation_datetime = models.DateTimeField(auto_now_add=True) expiration_datetime = models.DateTimeField(null=True) creator = models.ForeignKey('user.User', related_name='anonymous_access_creator', on_delete=models.SET_NULL, null=True, blank=True) class Meta: unique_together = (("content_type", "object_id"),) def generate_access(self): url = self.generate_url() passphrase = self.set_passphrase() return url, passphrase def generate_url(self): url = get_random_string(64) # Has to be unique while AnonymousAccess.objects.filter(url=url).first(): url = get_random_string(64) # Persist new url self.url = url self.save() return url def set_passphrase(self): # Generate and encode random password raw = get_random_string(20) # Store encoded passphrase self.passphrase = make_password(raw, salt='project.AnonymousAccess') self.save() return raw def check_passphrase(self, raw_passphrase): """ Return a boolean of whether the raw_password was correct. Handles hashing formats behind the scenes. """ expire_datetime = self.creation_datetime + timedelta(days=60) isnot_expired = timezone.now() < expire_datetime return isnot_expired and check_password(raw_passphrase, self.passphrase) <file_sep>from django.urls import path, re_path from project import views urlpatterns = [ path('', views.project_home, name='project_home'), path('create/', views.create_project, name='create_project'), path('delete-project-success/', views.delete_project_success, name='delete_project_success'), path('new-version/<project_slug>/', views.new_project_version, name='new_project_version'), path('rejected/<project_slug>/submission-history/', views.rejected_submission_history, name='rejected_submission_history'), path('published/<project_slug>/', views.published_versions, name='published_versions'), path('published/<project_slug>/<version>/submission-history/', views.published_submission_history, name='published_submission_history'), path('project-autocomplete/', views.ProjectAutocomplete.as_view(), name='project-autocomplete'), # Individual project pages path('<project_slug>/', views.project_overview_redirect, name='project_overview_redirect'), path('<project_slug>/overview/', views.project_overview, name='project_overview'), path('<project_slug>/authors/', views.project_authors, name='project_authors'), path('<project_slug>/authors/move/', views.move_author, name='move_author'), path('<project_slug>/authors/edit-affiliation/', views.edit_affiliation, name='edit_affiliation'), path('<project_slug>/content/', views.project_content, name='project_content'), # Edit a metadata item and reload the formset section path('<project_slug>/content/edit-item/', views.edit_content_item, name='edit_content_item'), path('<project_slug>/access/', views.project_access, name='project_access'), path('<project_slug>/access/load-license/', views.load_license, name='load_license'), path('<project_slug>/discovery/', views.project_discovery, name='project_discovery'), path('<project_slug>/files/', views.project_files, name='project_files'), path('<project_slug>/files/<path:subdir>/', views.project_files, name='project_files'), re_path('^(?P<project_slug>\w+)/files/(?P<file_name>.+)$', views.serve_active_project_file, name='serve_active_project_file'), path('<project_slug>/project-files-panel/', views.project_files_panel, name='project_files_panel'), path('<project_slug>/proofread/', views.project_proofread, name='project_proofread'), path('<project_slug>/preview/', views.project_preview, name='project_preview'), path('<project_slug>/preview/<path:subdir>/', views.project_preview, name='project_preview_subdir'), path('<project_slug>/preview/<path:file_name>', views.display_active_project_file, name='display_active_project_file'), path('<project_slug>/preview-files-panel/', views.preview_files_panel, name='preview_files_panel'), path('<project_slug>/view-license/', views.project_license_preview, name='project_license_preview'), path('<project_slug>/integrity/', views.check_integrity, name='check_integrity'), path('<project_slug>/submission/', views.project_submission, name='project_submission'), path('<project_slug>/<version>/request_access/<int:access_type>', views.published_project_request_access, name='published_project_request_access'), re_path('^(?P<project_slug>\w+)/download/(?P<full_file_name>.*)$', views.serve_active_project_file_editor, name='serve_active_project_file_editor'), ] <file_sep>import re import pdb import logging import os import csv from datetime import datetime, timedelta from itertools import chain from statistics import median, StatisticsError from collections import OrderedDict from django.core.exceptions import ObjectDoesNotExist from django.core.validators import validate_email from django.contrib import messages from django.contrib.auth.decorators import login_required, user_passes_test from django.contrib.contenttypes.forms import generic_inlineformset_factory from django.forms import modelformset_factory, Select, Textarea from django.http import Http404, JsonResponse, HttpResponse from django.shortcuts import redirect, render, get_object_or_404 from django.urls import reverse from django.utils import timezone from django.db import DatabaseError, transaction from django.db.models import (Q, CharField, Value, IntegerField, F, functions, DurationField) from django.db.models.functions import Cast from background_task import background from django.contrib.sites.models import Site from dal import autocomplete from notification.models import News import notification.utility as notification from physionet.forms import set_saved_fields_cookie from physionet.middleware.maintenance import ServiceUnavailable from physionet.utility import paginate import project.forms as project_forms from project.models import (ActiveProject, ArchivedProject, StorageRequest, Reference, Topic, Publication, PublishedProject, EditLog, exists_project_slug, GCP, DUASignature, DataAccess) from project.utility import readable_size from project.validators import MAX_PROJECT_SLUG_LENGTH from project.views import (get_file_forms, get_project_file_info, process_files_post) from user.models import (User, CredentialApplication, LegacyCredential, AssociatedEmail, CredentialReview) from console import forms, utility from console.tasks import associated_task, get_associated_tasks from django.conf import settings LOGGER = logging.getLogger(__name__) @associated_task(PublishedProject, 'pid') @background() def make_zip_background(pid): """ Schedule a background task to make the zip file """ project = PublishedProject.objects.get(id=pid) # Create zip file if there are files. Should always be the case. project.make_zip() project.set_storage_info() @associated_task(PublishedProject, 'pid') @background() def make_checksum_background(pid): """ Schedule a background task to make the checksum file """ project = PublishedProject.objects.get(id=pid) # Create checksum file if there are files. Should always be the case. project.make_checksum_file() project.set_storage_info() def is_admin(user, *args, **kwargs): return user.is_admin def handling_editor(base_view): """ Access decorator. The user must be the editor of the project. """ @login_required def handling_view(request, *args, **kwargs): user = request.user try: project = ActiveProject.objects.get(slug=kwargs['project_slug']) if user.is_admin and user == project.editor: kwargs['project'] = project return base_view(request, *args, **kwargs) except ActiveProject.DoesNotExist: raise Http404() raise Http404('Unable to access page') return handling_view # ------------------------- Views begin ------------------------- # @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def console_home(request): return redirect('submitted_projects') @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def submitted_projects(request): """ List of active submissions. Editors are assigned here. """ user = request.user if request.method == 'POST': assign_editor_form = forms.AssignEditorForm(request.POST) if assign_editor_form.is_valid(): # Move this into project method project = ActiveProject.objects.get(id=assign_editor_form.cleaned_data['project']) project.assign_editor(assign_editor_form.cleaned_data['editor']) notification.assign_editor_notify(project) notification.editor_notify_new_project(project, user) messages.success(request, 'The editor has been assigned') # Submitted projects projects = ActiveProject.objects.filter(submission_status__gt=0).order_by( 'submission_datetime') # Separate projects by submission status # Awaiting editor assignment assignment_projects = projects.filter(submission_status=10) # Awaiting editor decision decision_projects = projects.filter(submission_status=20) # Awaiting author revisions revision_projects = projects.filter(submission_status=30) # Awaiting editor copyedit copyedit_projects = projects.filter(submission_status=40) # Awaiting author approval approval_projects = projects.filter(submission_status=50) # Awaiting editor publish publish_projects = projects.filter(submission_status=60) assign_editor_form = forms.AssignEditorForm() # Time to check if the reminder email can be sent yesterday = timezone.now() + timezone.timedelta(days=-1) if request.method == "POST": try: if 'send_approval_reminder' in request.POST: pid = request.POST.get('send_approval_reminder', '') project = ActiveProject.objects.get(id=pid) notification.copyedit_complete_notify(request, project, project.copyedit_logs.last(), reminder=True) project.latest_reminder = timezone.now() project.save() messages.success(request, 'The reminder email has been sent.') elif 'send_revision_reminder' in request.POST: pid = request.POST.get('send_revision_reminder', '') project = ActiveProject.objects.get(id=pid) notification.edit_decision_notify(request, project, project.edit_logs.last(), reminder=True) project.latest_reminder = timezone.now() project.save() messages.success(request, 'The reminder email has been sent.') except (ValueError, ActiveProject.DoesNotExist): pass return render(request, 'console/submitted_projects.html', {'assign_editor_form': assign_editor_form, 'assignment_projects': assignment_projects, 'decision_projects': decision_projects, 'revision_projects': revision_projects, 'copyedit_projects': copyedit_projects, 'approval_projects': approval_projects, 'publish_projects': publish_projects, 'submitted_projects_nav': True, 'yesterday': yesterday}) @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def editor_home(request): """ List of submissions the editor is responsible for """ projects = ActiveProject.objects.filter(editor=request.user).order_by( 'submission_datetime') # Awaiting editor decision decision_projects = projects.filter(submission_status=20) # Awaiting author revisions revision_projects = projects.filter(submission_status=30) # Awaiting editor copyedit copyedit_projects = projects.filter(submission_status=40) # Awaiting author approval approval_projects = projects.filter(submission_status=50) # Awaiting editor publish publish_projects = projects.filter(submission_status=60) # Time to check if the reminder email can be sent yesterday = timezone.now() + timezone.timedelta(days=-1) if request.method == "POST" and 'send_reminder' in request.POST: try: pid = request.POST.get('send_reminder', '') project = ActiveProject.objects.get(id=pid) notification.edit_decision_notify(request, project, project.edit_logs.last(), reminder=True) project.latest_reminder = timezone.now() project.save() messages.success(request, 'The reminder email has been sent.') except (ValueError, ActiveProject.DoesNotExist): pass return render(request, 'console/editor_home.html', {'decision_projects': decision_projects, 'revision_projects': revision_projects, 'copyedit_projects': copyedit_projects, 'approval_projects': approval_projects, 'publish_projects': publish_projects, 'yesterday': yesterday, 'editor_home': True}) def submission_info_redirect(request, project_slug): return redirect('submission_info', project_slug=project_slug) @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def submission_info(request, project_slug): """ View information about a project under submission """ try: project = ActiveProject.objects.get(slug=project_slug) except ActiveProject.DoesNotExist: raise Http404() user = request.user authors, author_emails, storage_info, edit_logs, copyedit_logs, latest_version = project.info_card() data = request.POST or None reassign_editor_form = forms.ReassignEditorForm(user, data=data) passphrase = '' anonymous_url = project.get_anonymous_url() if 'generate_passphrase' in request.POST: anonymous_url, passphrase = project.generate_anonymous_access() elif 'remove_passphrase' in request.POST: project.anonymous.all().delete() anonymous_url, passphrase = '', 'revoked' elif 'reassign_editor' in request.POST and reassign_editor_form.is_valid(): project.reassign_editor(reassign_editor_form.cleaned_data['editor']) notification.editor_notify_new_project(project, user, reassigned=True) messages.success(request, 'The editor has been reassigned') LOGGER.info("The editor for the project {0} has been reassigned from " "{1} to {2}".format(project, user, reassign_editor_form.cleaned_data['editor'])) url_prefix = notification.get_url_prefix(request) return render(request, 'console/submission_info.html', {'project': project, 'authors': authors, 'author_emails': author_emails, 'storage_info': storage_info, 'edit_logs': edit_logs, 'copyedit_logs': copyedit_logs, 'latest_version': latest_version, 'passphrase': passphrase, 'anonymous_url': anonymous_url, 'url_prefix': url_prefix, 'reassign_editor_form': reassign_editor_form, 'project_info_nav': True}) @handling_editor def edit_submission(request, project_slug, *args, **kwargs): """ Page to respond to a particular submission, as an editor """ project = kwargs['project'] try: edit_log = project.edit_logs.get(decision_datetime__isnull=True) except EditLog.DoesNotExist: return redirect('editor_home') reassign_editor_form = forms.ReassignEditorForm(request.user) # The user must be the editor if project.submission_status not in [20, 30]: return redirect('editor_home') if request.method == 'POST': edit_submission_form = forms.EditSubmissionForm( resource_type=project.resource_type, instance=edit_log, data=request.POST) if edit_submission_form.is_valid(): # This processes the resulting decision edit_log = edit_submission_form.save() # Set the display labels for the quality assurance results edit_log.set_quality_assurance_results() # The original object will be deleted if the decision is reject if edit_log.decision == 0: project = ArchivedProject.objects.get(slug=project_slug) # Notify the authors notification.edit_decision_notify(request, project, edit_log) return render(request, 'console/edit_complete.html', {'decision': edit_log.decision, 'editor_home': True, 'project': project, 'edit_log': edit_log}) messages.error(request, 'Invalid response. See form below.') else: edit_submission_form = forms.EditSubmissionForm( resource_type=project.resource_type, instance=edit_log) authors, author_emails, storage_info, edit_logs, _, latest_version = project.info_card() url_prefix = notification.get_url_prefix(request) return render(request, 'console/edit_submission.html', {'project': project, 'edit_submission_form': edit_submission_form, 'authors': authors, 'author_emails': author_emails, 'storage_info': storage_info, 'edit_logs': edit_logs, 'latest_version': latest_version, 'url_prefix': url_prefix, 'editor_home': True, 'reassign_editor_form': reassign_editor_form}) @handling_editor def copyedit_submission(request, project_slug, *args, **kwargs): """ Page to copyedit the submission """ project = kwargs['project'] if project.submission_status != 40: return redirect('editor_home') copyedit_log = project.copyedit_logs.get(complete_datetime=None) reassign_editor_form = forms.ReassignEditorForm(request.user) # Metadata forms and formsets ReferenceFormSet = generic_inlineformset_factory(Reference, fields=('description',), extra=0, max_num=project_forms.ReferenceFormSet.max_forms, can_delete=False, formset=project_forms.ReferenceFormSet, validate_max=True) TopicFormSet = generic_inlineformset_factory(Topic, fields=('description',), extra=0, max_num=project_forms.TopicFormSet.max_forms, can_delete=False, formset=project_forms.TopicFormSet, validate_max=True) PublicationFormSet = generic_inlineformset_factory(Publication, fields=('citation', 'url'), extra=0, max_num=project_forms.PublicationFormSet.max_forms, can_delete=False, formset=project_forms.PublicationFormSet, validate_max=True) description_form = project_forms.ContentForm( resource_type=project.resource_type.id, instance=project) access_form = project_forms.AccessMetadataForm(instance=project) discovery_form = project_forms.DiscoveryForm(resource_type=project.resource_type.id, instance=project) description_form_saved = False access_form.set_license_queryset(access_policy=project.access_policy) reference_formset = ReferenceFormSet(instance=project) publication_formset = PublicationFormSet(instance=project) topic_formset = TopicFormSet(instance=project) copyedit_form = forms.CopyeditForm(instance=copyedit_log) if request.method == 'POST': if 'edit_content' in request.POST: description_form = project_forms.ContentForm( resource_type=project.resource_type.id, data=request.POST, instance=project) access_form = project_forms.AccessMetadataForm(data=request.POST, instance=project) discovery_form = project_forms.DiscoveryForm( resource_type=project.resource_type, data=request.POST, instance=project) reference_formset = ReferenceFormSet(data=request.POST, instance=project) publication_formset = PublicationFormSet(request.POST, instance=project) topic_formset = TopicFormSet(request.POST, instance=project) if (description_form.is_valid() and access_form.is_valid() and reference_formset.is_valid() and publication_formset.is_valid() and topic_formset.is_valid() and discovery_form.is_valid()): description_form.save() access_form.save() discovery_form.save() reference_formset.save() publication_formset.save() topic_formset.save() messages.success(request, 'The project metadata has been updated.') description_form_saved = True # Reload formsets reference_formset = ReferenceFormSet(instance=project) publication_formset = PublicationFormSet(instance=project) topic_formset = TopicFormSet(instance=project) else: messages.error(request, 'Invalid submission. See errors below.') access_form.set_license_queryset(access_policy=access_form.instance.access_policy) elif 'complete_copyedit' in request.POST: copyedit_form = forms.CopyeditForm(request.POST, instance=copyedit_log) if copyedit_form.is_valid(): copyedit_log = copyedit_form.save() notification.copyedit_complete_notify(request, project, copyedit_log) return render(request, 'console/copyedit_complete.html', {'project': project, 'copyedit_log': copyedit_log, 'editor_home': True}) else: messages.error(request, 'Invalid submission. See errors below.') else: # process the file manipulation post subdir = process_files_post(request, project) if 'subdir' not in vars(): subdir = '' authors, author_emails, storage_info, edit_logs, copyedit_logs, latest_version = project.info_card() (display_files, display_dirs, dir_breadcrumbs, _, file_error) = get_project_file_info(project=project, subdir=subdir) (upload_files_form, create_folder_form, rename_item_form, move_items_form, delete_items_form) = get_file_forms( project=project, subdir=subdir, display_dirs=display_dirs) edit_url = reverse('edit_content_item', args=[project.slug]) url_prefix = notification.get_url_prefix(request) response = render(request, 'console/copyedit_submission.html', { 'project': project, 'description_form': description_form, 'individual_size_limit': readable_size(ActiveProject.INDIVIDUAL_FILE_SIZE_LIMIT), 'access_form': access_form, 'reference_formset':reference_formset, 'publication_formset': publication_formset, 'topic_formset': topic_formset, 'storage_info': storage_info, 'upload_files_form':upload_files_form, 'create_folder_form': create_folder_form, 'rename_item_form': rename_item_form, 'move_items_form': move_items_form, 'delete_items_form': delete_items_form, 'subdir': subdir, 'display_files': display_files, 'display_dirs': display_dirs, 'dir_breadcrumbs': dir_breadcrumbs, 'file_error': file_error, 'editor_home': True, 'is_editor': True, 'files_editable': True, 'copyedit_form': copyedit_form, 'authors': authors, 'author_emails': author_emails, 'storage_info': storage_info, 'edit_logs': edit_logs, 'copyedit_logs': copyedit_logs, 'latest_version': latest_version, 'add_item_url': edit_url, 'remove_item_url': edit_url, 'discovery_form': discovery_form, 'url_prefix': url_prefix, 'reassign_editor_form': reassign_editor_form}) if description_form_saved: set_saved_fields_cookie(description_form, request.path, response) return response @handling_editor def awaiting_authors(request, project_slug, *args, **kwargs): """ View the authors who have and have not approved the project for publication. Also the page to reopen the project for copyediting. """ project = kwargs['project'] if project.submission_status != 50: return redirect('editor_home') authors, author_emails, storage_info, edit_logs, copyedit_logs, latest_version = project.info_card() outstanding_emails = ';'.join([a.user.email for a in authors.filter( approval_datetime=None)]) reassign_editor_form = forms.ReassignEditorForm(request.user) if request.method == 'POST': if 'reopen_copyedit' in request.POST: project.reopen_copyedit() notification.reopen_copyedit_notify(request, project) return render(request, 'console/reopen_copyedit_complete.html', {'project':project}) elif 'send_reminder' in request.POST: notification.copyedit_complete_notify(request, project, project.copyedit_logs.last(), reminder=True) messages.success(request, 'The reminder email has been sent.') project.latest_reminder = timezone.now() project.save() url_prefix = notification.get_url_prefix(request) yesterday = timezone.now() + timezone.timedelta(days=-1) return render(request, 'console/awaiting_authors.html', {'project': project, 'authors': authors, 'author_emails': author_emails, 'storage_info': storage_info, 'edit_logs': edit_logs, 'copyedit_logs': copyedit_logs, 'latest_version': latest_version, 'outstanding_emails': outstanding_emails, 'url_prefix': url_prefix, 'yesterday': yesterday, 'editor_home': True, 'reassign_editor_form': reassign_editor_form}) @handling_editor def publish_slug_available(request, project_slug, *args, **kwargs): """ Return whether a slug is available to use to publish an active project. """ desired_slug = request.GET['desired_slug'] # Slug belongs to this project if project_slug == desired_slug: result = True # Check if any project has claimed it else: result = not exists_project_slug(desired_slug) return JsonResponse({'available':result}) @handling_editor def publish_submission(request, project_slug, *args, **kwargs): """ Page to publish the submission """ project = kwargs['project'] if project.submission_status != 60: return redirect('editor_home') if settings.SYSTEM_MAINTENANCE_NO_UPLOAD: raise ServiceUnavailable() reassign_editor_form = forms.ReassignEditorForm(request.user) authors, author_emails, storage_info, edit_logs, copyedit_logs, latest_version = project.info_card() if request.method == 'POST': publish_form = forms.PublishForm(project=project, data=request.POST) if project.is_publishable() and publish_form.is_valid(): if project.version_order: slug = project.get_previous_slug() else: slug = publish_form.cleaned_data['slug'] published_project = project.publish(slug=slug, make_zip=int(publish_form.cleaned_data['make_zip'])) notification.publish_notify(request, published_project) # update the core and project DOIs with latest metadata if published_project.core_project.doi: core = published_project.core_project latest = core.publishedprojects.get(is_latest_version=True) payload_core = utility.generate_doi_payload(latest, core_project=True, event="publish") utility.update_doi(core.doi, payload_core) if published_project.doi: payload = utility.generate_doi_payload(published_project, core_project=False, event="publish") utility.update_doi(published_project.doi, payload) return render(request, 'console/publish_complete.html', {'published_project': published_project, 'editor_home': True}) publishable = project.is_publishable() url_prefix = notification.get_url_prefix(request) publish_form = forms.PublishForm(project=project) return render(request, 'console/publish_submission.html', {'project': project, 'publishable': publishable, 'authors': authors, 'author_emails': author_emails, 'storage_info': storage_info, 'edit_logs': edit_logs, 'copyedit_logs': copyedit_logs, 'latest_version': latest_version, 'publish_form': publish_form, 'max_slug_length': MAX_PROJECT_SLUG_LENGTH, 'url_prefix': url_prefix, 'reassign_editor_form': reassign_editor_form, 'editor_home': True}) def process_storage_response(request, storage_response_formset): """ Implement the response to a storage request. Helper function to view: storage_requests. """ storage_request_id = int(request.POST['storage_response']) for storage_response_form in storage_response_formset: # Only process the response that was submitted if storage_response_form.instance.id == storage_request_id: if storage_response_form.is_valid() and storage_response_form.instance.is_active: storage_request = storage_response_form.instance storage_request.responder = request.user storage_request.response_datetime = timezone.now() storage_request.is_active = False storage_request.save() if storage_request.response: core_project = storage_request.project.core_project core_project.storage_allowance = storage_request.request_allowance * 1024 ** 3 core_project.save() notification.storage_response_notify(storage_request) messages.success(request, 'The storage request has been {}'.format(notification.RESPONSE_ACTIONS[storage_request.response])) @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def storage_requests(request): """ Page for listing and responding to project storage requests """ StorageResponseFormSet = modelformset_factory(StorageRequest, fields=('response', 'response_message'), widgets={'response':Select(choices=forms.RESPONSE_CHOICES), 'response_message':Textarea()}, extra=0) if request.method == 'POST': storage_response_formset = StorageResponseFormSet(request.POST, queryset=StorageRequest.objects.filter(is_active=True)) process_storage_response(request, storage_response_formset) storage_response_formset = StorageResponseFormSet( queryset=StorageRequest.objects.filter(is_active=True)) return render(request, 'console/storage_requests.html', {'storage_response_formset': storage_response_formset, 'storage_requests_nav': True}) @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def unsubmitted_projects(request): """ List of unsubmitted projects """ projects = ActiveProject.objects.filter(submission_status=0).order_by( 'creation_datetime') projects = paginate(request, projects, 50) return render(request, 'console/unsubmitted_projects.html', {'projects': projects, 'unsubmitted_projects_nav': True}) @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def published_projects(request): """ List of published projects """ projects = PublishedProject.objects.all().order_by('-publish_datetime') projects = paginate(request, projects, 50) return render(request, 'console/published_projects.html', {'projects': projects, 'published_projects_nav': True}) @associated_task(PublishedProject, 'pid', read_only=True) @background() def send_files_to_gcp(pid): """ Schedule a background task to send the files to GCP. This function can be runned manually to force a re-send of all the files to GCP. It only requires the Project ID. """ project = PublishedProject.objects.get(id=pid) exists = utility.check_bucket_exists(project.slug, project.version) if exists: utility.upload_files(project) project.gcp.sent_files = True project.gcp.finished_datetime = timezone.now() if project.compressed_storage_size: project.gcp.sent_zip = True project.gcp.save() def manage_doi_request(request, project): """ Manage a request to register or update a Digital Object Identifier (DOI). Args: request (obj): The request object. project (obj): The project object. Returns: str: Message indicating outcome of the request. """ # No action needed if (1) the user is trying to register a DOI when one # already exists or (2) if there is no DATACITE_PREFIX if not settings.DATACITE_PREFIX: return """No action taken. To register or update a DOI, add your DATACITE_PREFIX to the Django environment file.""" elif project.core_project.doi and 'create_doi_core' in request.POST: return "The DOI was created." elif project.doi and 'create_doi_version' in request.POST: return "The DOI was created." if 'create_doi_core' in request.POST: payload = utility.generate_doi_payload(project, core_project=True, event="publish") utility.register_doi(payload, project.core_project) message = "The DOI was created." elif 'update_doi_core' in request.POST: payload = utility.generate_doi_payload(project, core_project=True, event="publish") utility.update_doi(project.core_project.doi, payload) message = "The DOI metadata was updated." elif 'create_doi_version' in request.POST: payload = utility.generate_doi_payload(project, event="publish") utility.register_doi(payload, project) message = "The DOI was created." elif 'update_doi_version' in request.POST: payload = utility.generate_doi_payload(project, event="publish") utility.update_doi(project.doi, payload) message = "The DOI metadata was updated." return message @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def manage_published_project(request, project_slug, version): """ Manage a published project - Set the DOI field (after doing it in datacite) - Create zip of files - Deprecate files - Create GCP bucket and send files """ try: project = PublishedProject.objects.get(slug=project_slug, version=version) except PublishedProject.DoesNotExist: raise Http404() user = request.user passphrase = '' anonymous_url = project.get_anonymous_url() topic_form = forms.TopicForm(project=project) topic_form.set_initial() deprecate_form = None if project.deprecated_files else forms.DeprecateFilesForm() has_credentials = os.path.exists(os.environ["GOOGLE_APPLICATION_CREDENTIALS"]) data_access_form = forms.DataAccessForm(project=project) contact_form = forms.PublishedProjectContactForm(project=project, instance=project.contact) legacy_author_form = forms.CreateLegacyAuthorForm(project=project) if request.method == 'POST': if any(x in request.POST for x in ['create_doi_core', 'create_doi_version', 'update_doi_core', 'update_doi_version']): message = manage_doi_request(request, project) messages.success(request, message) elif 'set_topics' in request.POST: topic_form = forms.TopicForm(project=project, data=request.POST) if topic_form.is_valid(): project.set_topics(topic_form.topic_descriptions) # Set the topics messages.success(request, 'The topics have been set') else: messages.error(request, 'Invalid submission. See form below.') elif 'make_checksum_file' in request.POST: if any(get_associated_tasks(project)): messages.error(request, 'Project has tasks pending.') elif settings.SYSTEM_MAINTENANCE_NO_UPLOAD: raise ServiceUnavailable() else: make_checksum_background( pid=project.id, verbose_name='Making checksum file - {}'.format(project)) messages.success( request, 'The files checksum list has been scheduled.') elif 'make_zip' in request.POST: if any(get_associated_tasks(project)): messages.error(request, 'Project has tasks pending.') elif settings.SYSTEM_MAINTENANCE_NO_UPLOAD: raise ServiceUnavailable() else: make_zip_background( pid=project.id, verbose_name='Making zip file - {}'.format(project)) messages.success( request, 'The zip of the main files has been scheduled.') elif 'deprecate_files' in request.POST and not project.deprecated_files: deprecate_form = forms.DeprecateFilesForm(data=request.POST) if settings.SYSTEM_MAINTENANCE_NO_UPLOAD: raise ServiceUnavailable() elif deprecate_form.is_valid(): project.deprecate_files( delete_files=int(deprecate_form.cleaned_data['delete_files'])) messages.success(request, 'The project files have been deprecated.') elif 'bucket' in request.POST and has_credentials: if any(get_associated_tasks(project, read_only=False)): messages.error(request, 'Project has tasks pending.') else: gcp_bucket_management(request, project, user) elif 'platform' in request.POST: data_access_form = forms.DataAccessForm(project=project, data=request.POST) if data_access_form.is_valid(): data_access_form.save() messages.success(request, "Stored method to access the files") elif 'data_access_removal' in request.POST and request.POST['data_access_removal'].isdigit(): try: data_access = DataAccess.objects.get(project=project, id=request.POST['data_access_removal']) data_access.delete() # Deletes the object if it exists for that specific project. except DataAccess.DoesNotExist: pass elif 'generate_passphrase' in request.POST: anonymous_url, passphrase = project.generate_anonymous_access() elif 'remove_passphrase' in request.POST: project.anonymous.all().delete() anonymous_url = '' elif 'set_contact' in request.POST: contact_form = forms.PublishedProjectContactForm( instance=project.contact, project=project, data=request.POST) if contact_form.is_valid(): contact_form.save() messages.success(request, 'The contact information has been updated') elif 'set_legacy_author' in request.POST: legacy_author_form = forms.CreateLegacyAuthorForm(project=project, data=request.POST) if legacy_author_form.is_valid(): legacy_author_form.save() legacy_author_form = forms.CreateLegacyAuthorForm(project=project) data_access = DataAccess.objects.filter(project=project) authors, author_emails, storage_info, edit_logs, copyedit_logs, latest_version = project.info_card() tasks = list(get_associated_tasks(project)) ro_tasks = [task for (task, read_only) in tasks if read_only] rw_tasks = [task for (task, read_only) in tasks if not read_only] url_prefix = notification.get_url_prefix(request) return render(request, 'console/manage_published_project.html', {'project': project, 'authors': authors, 'author_emails': author_emails, 'storage_info': storage_info, 'edit_logs': edit_logs, 'copyedit_logs': copyedit_logs, 'latest_version': latest_version, 'published': True, 'topic_form': topic_form, 'deprecate_form': deprecate_form, 'has_credentials': has_credentials, 'data_access_form': data_access_form, 'data_access': data_access, 'rw_tasks': rw_tasks, 'ro_tasks': ro_tasks, 'anonymous_url': anonymous_url, 'passphrase': <PASSWORD>, 'published_projects_nav': True, 'url_prefix': url_prefix, 'contact_form': contact_form, 'legacy_author_form': legacy_author_form}) def gcp_bucket_management(request, project, user): """ Create the database object and cloud bucket if they do not exist, and send the files to the bucket. """ is_private = True if project.access_policy == 0: is_private = False bucket_name, group = utility.bucket_info(project.slug, project.version) try: gcp_object = GCP.objects.get(bucket_name=bucket_name) messages.success(request, "The bucket already exists. Resending the \ files for the project {0}.".format(project)) except GCP.DoesNotExist: if utility.check_bucket_exists(project.slug, project.version): LOGGER.info("The bucket {0} already exists, skipping bucket and \ group creation".format(bucket_name)) else: utility.create_bucket(project.slug, project.version, project.title, is_private) messages.success(request, "The GCP bucket for project {0} was \ successfully created.".format(project)) GCP.objects.create(project=project, bucket_name=bucket_name, managed_by=user, is_private=is_private, access_group=group) if is_private: granted = utility.add_email_bucket_access(project, group, True) DataAccess.objects.create(project=project, platform=3, location=group) if not granted: error = "The GCP bucket for project {0} was successfully created, \ but there was an error granting read permissions to the \ group: {1}".format(project, group) messages.success(request, error) raise Exception(error) messages.success(request, "The access group for project {0} was \ successfully added.".format(project)) send_files_to_gcp(project.id, verbose_name='GCP - {}'.format(project), creator=user) @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def rejected_submissions(request): """ List of rejected submissions """ projects = ArchivedProject.objects.filter(archive_reason=3).order_by('archive_datetime') projects = paginate(request, projects, 50) return render(request, 'console/rejected_submissions.html', {'projects': projects, 'rejected_projects_nav': True}) @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def users(request, group='all'): """ List of users """ show_inactive = False if group == 'admin': admin_users = User.objects.filter(is_admin=True).order_by('username') return render(request, 'console/users_admin.html', { 'admin_users': admin_users, 'group': group, 'user_nav': True}) elif group == 'active': user_list = User.objects.filter(is_active=True).order_by('username') elif group == 'inactive': user_list = User.objects.filter(is_active=False).order_by('username') else: user_list = User.objects.all().order_by('username') show_inactive = True users = paginate(request, user_list, 50) return render(request, 'console/users.html', {'users': users, 'show_inactive': show_inactive, 'group': group, 'user_nav': True}) @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def user_management(request, username): """ Admin page for managing an individual user account. """ user = get_object_or_404(User, username__iexact=username) emails = {} emails['primary'] = AssociatedEmail.objects.filter(user=user, is_primary_email=True, is_verified=True) emails['other'] = AssociatedEmail.objects.filter(user=user, is_primary_email=False, is_verified=True) emails['unverified'] = AssociatedEmail.objects.filter(user=user, is_verified=False) projects = {} projects['Unsubmitted'] = ActiveProject.objects.filter(authors__user=user, submission_status=0).order_by('-creation_datetime') projects['Submitted'] = ActiveProject.objects.filter(authors__user=user, submission_status__gt=0).order_by('-submission_datetime') projects['Archived'] = ArchivedProject.objects.filter(authors__user=user).order_by('-archive_datetime') projects['Published'] = PublishedProject.objects.filter(authors__user=user).order_by('-publish_datetime') return render(request, 'console/user_management.html', {'subject': user, 'profile': user.profile, 'emails': emails, 'projects': projects}) @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def users_search(request, group): """ Search user list. Args: group (str): group of users to filter search. Either 'all' for all users or 'inactive' to filter to inactive users only. """ if request.method == 'POST': search_field = request.POST['search'] users = User.objects.filter(Q(username__icontains=search_field) | Q(profile__first_names__icontains=search_field) | Q(email__icontains=search_field)) if 'inactive' in group: users = users.filter(is_active=False) elif 'active' in group: users = users.filter(is_active=True) users = users.order_by('username') if len(search_field) == 0: users = paginate(request, users, 50) return render(request, 'console/users_list.html', {'users':users, 'group': group}) raise Http404() @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def known_references_search(request): """ Search credential applications and user list. """ if request.method == 'POST': search_field = request.POST['search'] applications = CredentialApplication.objects.filter( Q(reference_email__icontains=search_field) | Q(reference_name__icontains=search_field) | Q(user__profile__last_name__icontains=search_field) | Q(user__profile__first_names__icontains=search_field)) all_known_ref = applications.exclude( reference_contact_datetime__isnull=True).order_by( '-reference_contact_datetime') if len(search_field) == 0: all_known_ref = paginate(request, all_known_ref, 50) return render(request, 'console/known_references_list.html', { 'all_known_ref': all_known_ref}) raise Http404() @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def complete_credential_applications(request): """ KP's custom management page for credentialing. """ process_credential_form = forms.ProcessCredentialForm( responder=request.user) if request.method == 'POST': if 'contact_reference' in request.POST and \ request.POST['contact_reference'].isdigit(): application_id = request.POST.get('contact_reference', '') application = CredentialApplication.objects.get(id=application_id) if not application.reference_contact_datetime: application.reference_contact_datetime = timezone.now() application.save() # notification.contact_reference(request, application) if application.reference_category == 0: mailto = notification.mailto_supervisor(request, application) else: mailto = notification.mailto_reference(request, application) # messages.success(request, 'The reference contact email has # been created.') return render(request, 'console/generate_reference_email.html', {'application': application, 'mailto': mailto}) if 'process_application' in request.POST and \ request.POST['process_application'].isdigit(): application_id = request.POST.get('process_application', '') try: application = CredentialApplication.objects.get( id=application_id, status=0) except CredentialApplication.DoesNotExist: messages.error(request, """The application has already been processed. It may have been withdrawn by the applicant or handled by another administrator.""") return redirect('complete_credential_applications') process_credential_form = forms.ProcessCredentialForm( responder=request.user, data=request.POST, instance=application) if process_credential_form.is_valid(): application = process_credential_form.save() notification.process_credential_complete(request, application, comments=False) mailto = notification.mailto_process_credential_complete( request, application) return render(request, 'console/generate_response_email.html', {'application': application, 'mailto': mailto}) else: messages.error(request, 'Invalid submission. See form below.') applications = CredentialApplication.objects.filter(status=0) # TODO: Remove this step. Exclude applications that are being handled in # the credential processing workflow. Avoid toes. review_underway_list = [x[0] for x in CredentialReview.REVIEW_STATUS_LABELS if x[0] and x[0] > 10] review_underway = Q(credential_review__status__in=review_underway_list) applications = applications.exclude(review_underway) # Get list of references who have been contacted before # These are "known_refs" but using the ref_known_flag() method is slow known_refs_new = CredentialApplication.objects.filter( reference_contact_datetime__isnull=False).values_list( 'reference_email', flat=True) known_refs_legacy = LegacyCredential.objects.exclude( reference_email='').values_list('reference_email', flat=True) known_refs = set(known_refs_new).union(set(known_refs_legacy)) known_refs = [x.lower() for x in known_refs if x] # Group applications and sort by application date # 1. reference not contacted, but with reference known known_ref_no_contact = applications.filter( reference_contact_datetime__isnull=True, reference_email__lower__in=known_refs).order_by('application_datetime') # 2. reference not contacted, but with reference unknown unknown_ref_no_contact = applications.filter( reference_contact_datetime__isnull=True).exclude( reference_email__lower__in=known_refs).order_by('application_datetime') # 3. reference contacted contacted = applications.filter( reference_contact_datetime__isnull=False).order_by('application_datetime') applications = (list(known_ref_no_contact) + list(unknown_ref_no_contact) + list(contacted)) return render(request, 'console/complete_credential_applications.html', {'process_credential_form': process_credential_form, 'applications': applications, 'known_refs': known_refs, 'complete_credentials_nav': True}) @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def complete_list_credentialed_people(request): legacy_cred_user = LegacyCredential.objects.all().order_by('-mimic_approval_date') new_cred_user = CredentialApplication.objects.filter(status=2).order_by('-decision_datetime') credentialed_people = [] for item in legacy_cred_user: try: credentialed_people.append([item.first_names, item.last_name, item.email, item.country, datetime.strptime(item.mimic_approval_date, '%m/%d/%Y'), datetime.strptime(item.eicu_approval_date, '%m/%d/%Y'), item.info]) except ValueError: credentialed_people.append([item.first_names, item.last_name, item.email, item.country, datetime.strptime(item.mimic_approval_date, '%m/%d/%Y'), None, item.info]) for item in new_cred_user: credentialed_people.append([item.first_names, item.last_name, item.user.email, item.country, item.decision_datetime.replace(tzinfo=None), item.decision_datetime.replace(tzinfo=None), item.research_summary]) credentialed_people = sorted(credentialed_people, key = lambda x: x[4]) return render(request, 'console/complete_list_credentialed_people.html', {'credentialed_people': credentialed_people}) @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def process_credential_application(request, application_slug): """ Process a credential application. View details, advance to next stage, contact reference, and make final decision. """ try: application = CredentialApplication.objects.get(slug=application_slug, status=0) # create the review object if it does not exist CredentialReview.objects.get_or_create(application=application) except CredentialApplication.DoesNotExist: messages.error(request, """The application has already been processed. It may have been withdrawn by the applicant or handled by another administrator.""") return redirect('credential_applications', status='pending') process_credential_form = forms.ProcessCredentialReviewForm(responder=request.user, instance=application) ref_email = notification.contact_reference(request, application, send=False, wordwrap=False) contact_cred_ref_form = forms.ContactCredentialRefForm(initial=ref_email) page_title = None title_dict = {a: k for a, k in CredentialReview.REVIEW_STATUS_LABELS} page_title = title_dict[application.credential_review.status] if application.credential_review.status == 10: intermediate_credential_form = forms.InitialCredentialForm(responder=request.user, instance=application) if application.credential_review.status == 20: intermediate_credential_form = forms.TrainingCredentialForm(responder=request.user, instance=application) if application.credential_review.status == 30: intermediate_credential_form = forms.PersonalCredentialForm(responder=request.user, instance=application) if application.credential_review.status == 40: intermediate_credential_form = forms.ReferenceCredentialForm(responder=request.user, instance=application) if application.credential_review.status == 50: intermediate_credential_form = forms.ResponseCredentialForm(responder=request.user, instance=application) if application.credential_review.status == 60: intermediate_credential_form = forms.ProcessCredentialReviewForm(responder=request.user, instance=application) if request.method == 'POST': if 'approve_initial' in request.POST: intermediate_credential_form = forms.InitialCredentialForm( responder=request.user, data=request.POST, instance=application) if intermediate_credential_form.is_valid(): intermediate_credential_form.save() if intermediate_credential_form.cleaned_data['decision'] == '0': notification.process_credential_complete(request, application) return render(request, 'console/process_credential_complete.html', {'application':application}) page_title = title_dict[application.credential_review.status] intermediate_credential_form = forms.TrainingCredentialForm( responder=request.user, instance=application) else: messages.error(request, 'Invalid review. See form below.') elif 'approve_initial_all' in request.POST: if request.POST['decision'] == '0': messages.error(request, 'You selected Reject. Did you mean to Approve All?') else: data_copy = request.POST.copy() valid_fields = set(request.POST.keys()) valid_fields.difference_update({'csrfmiddlewaretoken', 'responder_comments', 'approve_initial_all'}) for field in valid_fields: data_copy[field] = '1' intermediate_credential_form = forms.InitialCredentialForm( responder=request.user, data=data_copy, instance=application) intermediate_credential_form.save() page_title = title_dict[application.credential_review.status] intermediate_credential_form = forms.TrainingCredentialForm( responder=request.user, instance=application) elif 'approve_training' in request.POST: intermediate_credential_form = forms.TrainingCredentialForm( responder=request.user, data=request.POST, instance=application) if intermediate_credential_form.is_valid(): intermediate_credential_form.save() if intermediate_credential_form.cleaned_data['decision'] == '0': notification.process_credential_complete(request, application) return render(request, 'console/process_credential_complete.html', {'application':application}) page_title = title_dict[application.credential_review.status] intermediate_credential_form = forms.PersonalCredentialForm( responder=request.user, instance=application) else: messages.error(request, 'Invalid review. See form below.') elif 'approve_training_all' in request.POST: if request.POST['decision'] == '0': messages.error(request, 'You selected Reject. Did you mean to Approve All?') else: data_copy = request.POST.copy() valid_fields = set(request.POST.keys()) valid_fields.difference_update({'csrfmiddlewaretoken', 'responder_comments', 'approve_training_all'}) for field in valid_fields: data_copy[field] = '1' intermediate_credential_form = forms.TrainingCredentialForm( responder=request.user, data=data_copy, instance=application) intermediate_credential_form.save() page_title = title_dict[application.credential_review.status] intermediate_credential_form = forms.PersonalCredentialForm( responder=request.user, instance=application) elif 'approve_personal' in request.POST: intermediate_credential_form = forms.PersonalCredentialForm( responder=request.user, data=request.POST, instance=application) if intermediate_credential_form.is_valid(): intermediate_credential_form.save() if intermediate_credential_form.cleaned_data['decision'] == '0': notification.process_credential_complete(request, application) return render(request, 'console/process_credential_complete.html', {'application':application}) page_title = title_dict[application.credential_review.status] intermediate_credential_form = forms.ReferenceCredentialForm( responder=request.user, instance=application) else: messages.error(request, 'Invalid review. See form below.') elif 'approve_personal_all' in request.POST: if request.POST['decision'] == '0': messages.error(request, 'You selected Reject. Did you mean to Approve All?') else: data_copy = request.POST.copy() valid_fields = set(request.POST.keys()) valid_fields.difference_update({'csrfmiddlewaretoken', 'responder_comments', 'approve_personal_all'}) for field in valid_fields: data_copy[field] = '1' intermediate_credential_form = forms.PersonalCredentialForm( responder=request.user, data=data_copy, instance=application) intermediate_credential_form.save() page_title = title_dict[application.credential_review.status] intermediate_credential_form = forms.ReferenceCredentialForm( responder=request.user, instance=application) elif 'approve_reference' in request.POST: intermediate_credential_form = forms.ReferenceCredentialForm( responder=request.user, data=request.POST, instance=application) if intermediate_credential_form.is_valid(): intermediate_credential_form.save() if intermediate_credential_form.cleaned_data['decision'] == '0': notification.process_credential_complete(request, application) return render(request, 'console/process_credential_complete.html', {'application':application}) page_title = title_dict[application.credential_review.status] intermediate_credential_form = forms.ResponseCredentialForm( responder=request.user, instance=application) else: messages.error(request, 'Invalid review. See form below.') elif 'approve_reference_all' in request.POST: if request.POST['decision'] == '0': messages.error(request, 'You selected Reject. Did you mean to Approve All?') else: data_copy = request.POST.copy() valid_fields = set(request.POST.keys()) valid_fields.difference_update({'csrfmiddlewaretoken', 'responder_comments', 'approve_reference_all'}) for field in valid_fields: data_copy[field] = '1' intermediate_credential_form = forms.ReferenceCredentialForm( responder=request.user, data=data_copy, instance=application) intermediate_credential_form.save() page_title = title_dict[application.credential_review.status] intermediate_credential_form = forms.ResponseCredentialForm( responder=request.user, instance=application) elif 'approve_response' in request.POST: intermediate_credential_form = forms.ResponseCredentialForm( responder=request.user, data=request.POST, instance=application) if intermediate_credential_form.is_valid(): intermediate_credential_form.save() if intermediate_credential_form.cleaned_data['decision'] == '0': notification.process_credential_complete(request, application) return render(request, 'console/process_credential_complete.html', {'application':application}) page_title = title_dict[application.credential_review.status] intermediate_credential_form = forms.ProcessCredentialReviewForm( responder=request.user, instance=application) else: messages.error(request, 'Invalid review. See form below.') elif 'approve_response_all' in request.POST: if request.POST['decision'] == '0': messages.error(request, 'You selected Reject. Did you mean to Approve All?') else: data_copy = request.POST.copy() valid_fields = set(request.POST.keys()) valid_fields.difference_update({'csrfmiddlewaretoken', 'responder_comments', 'approve_response_all'}) for field in valid_fields: data_copy[field] = '1' intermediate_credential_form = forms.ResponseCredentialForm( responder=request.user, data=data_copy, instance=application) intermediate_credential_form.save() page_title = title_dict[application.credential_review.status] intermediate_credential_form = forms.ProcessCredentialReviewForm( responder=request.user, instance=application) elif 'contact_reference' in request.POST: contact_cred_ref_form = forms.ContactCredentialRefForm( data=request.POST) if contact_cred_ref_form.is_valid(): application.reference_contact_datetime = timezone.now() application.save() subject = contact_cred_ref_form.cleaned_data['subject'] body = contact_cred_ref_form.cleaned_data['body'] notification.contact_reference(request, application, subject=subject, body=body) messages.success(request, 'The reference has been contacted.') elif 'skip_reference' in request.POST: application.update_review_status(60) application.save() elif 'process_application' in request.POST: process_credential_form = forms.ProcessCredentialReviewForm( responder=request.user, data=request.POST, instance=application) if process_credential_form.is_valid(): application = process_credential_form.save() notification.process_credential_complete(request, application) return render(request, 'console/process_credential_complete.html', {'application':application}) else: messages.error(request, 'Invalid submission. See form below.') return render(request, 'console/process_credential_application.html', {'application': application, 'app_user': application.user, 'intermediate_credential_form': intermediate_credential_form, 'process_credential_form': process_credential_form, 'processing_credentials_nav': True, 'page_title': page_title, 'contact_cred_ref_form': contact_cred_ref_form}) @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def credential_processing(request): """ Process applications for credentialed access. """ applications = CredentialApplication.objects.filter(status=0) # TODO: Remove this step. If KP has contacted the reference, exclude the # application from our list. Avoid toes. review_not_underway = (Q(credential_review__status__lte=10) | Q(credential_review__isnull=True)) ref_contacted = Q(reference_contact_datetime__isnull=False) applications = applications.exclude(review_not_underway, ref_contacted) # Awaiting initial review initial_1 = Q(credential_review__isnull=True) initial_2 = Q(credential_review__status=10) initial_applications = applications.filter( initial_1 | initial_2).order_by('application_datetime') # Awaiting training check training_applications = applications.filter( credential_review__status=20).order_by('application_datetime') # Awaiting ID check personal_applications = applications.filter( credential_review__status=30).order_by('application_datetime') # Awaiting reference check reference_applications = applications.filter( credential_review__status=40).order_by('application_datetime') # Awaiting reference response response_applications = applications.filter( credential_review__status=50).order_by('-reference_response', 'application_datetime') # Awaiting final review final_applications = applications.filter( credential_review__status=60).order_by('application_datetime') return render(request, 'console/credential_processing.html', {'applications': applications, 'initial_applications': initial_applications, 'training_applications': training_applications, 'personal_applications': personal_applications, 'reference_applications': reference_applications, 'response_applications': response_applications, 'final_applications': final_applications, 'processing_credentials_nav': True}) @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def view_credential_application(request, application_slug): """ View a credential application in any status. """ try: application = CredentialApplication.objects.get(slug=application_slug) except CredentialApplication.DoesNotExist: raise Http404() form = forms.AlterCommentsCredentialForm(initial={ 'responder_comments': application.responder_comments}) if request.method == 'POST': form = forms.AlterCommentsCredentialForm(data=request.POST, instance=application) if form.is_valid(): form.save() return render(request, 'console/view_credential_application.html', {'application': application, 'app_user': application.user, 'form': form, 'past_credentials_nav': True}) @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def credential_applications(request, status): """ Inactive credential applications. Split into successful and unsuccessful. """ if request.method == 'POST': if 'remove_credentialing' in request.POST: if request.POST['remove_credentialing'].isdigit(): cid = request.POST['remove_credentialing'] c_application = CredentialApplication.objects.filter(id=cid) if c_application: c_application = c_application.get() c_application.revoke() else: l_application = LegacyCredential.objects.filter(email=request.POST['remove_credentialing']) if l_application: l_application = l_application.get() l_application.revoke() elif 'manage_credentialing' in request.POST and request.POST['manage_credentialing'].isdigit(): cid = request.POST['manage_credentialing'] c_application = CredentialApplication.objects.filter(id=cid) if c_application: c_application = c_application.get() c_application.status = 0 c_application.save() elif "search" in request.POST: (all_successful_apps, unsuccessful_apps, pending_apps) = search_credential_applications(request) if status == 'successful': return render(request, 'console/credential_successful_user_list.html', {'applications': all_successful_apps, 'u_applications': unsuccessful_apps, 'p_applications': pending_apps}) elif status == 'unsuccessful': return render(request, 'console/credential_unsuccessful_user_list.html', {'applications': all_successful_apps, 'u_applications': unsuccessful_apps, 'p_applications': pending_apps}) elif status == 'pending': return render(request, 'console/credential_pending_user_list.html', {'applications': all_successful_apps, 'u_applications': unsuccessful_apps, 'p_applications': pending_apps}) legacy_apps = LegacyCredential.objects.filter(migrated=True, migrated_user__is_credentialed=True).order_by('-migration_date') successful_apps = CredentialApplication.objects.filter(status=2 ).order_by('-decision_datetime') unsuccessful_apps = CredentialApplication.objects.filter( status__in=[1, 3, 4]).order_by('-decision_datetime') pending_apps = CredentialApplication.objects.filter(status=0 ).order_by('-application_datetime') # Merge legacy applications and new applications all_successful_apps = list(chain(successful_apps, legacy_apps)) all_successful_apps = paginate(request, all_successful_apps, 50) unsuccessful_apps = paginate(request, unsuccessful_apps, 50) pending_apps = paginate(request, pending_apps, 50) return render(request, 'console/credential_applications.html', {'applications': all_successful_apps, 'past_credentials_nav': True, 'u_applications': unsuccessful_apps, 'p_applications': pending_apps}) def search_credential_applications(request): """ Search past credentialing applications. Args: request (obj): Django WSGIRequest object. """ if request.POST: search_field = request.POST['search'] legacy_apps = LegacyCredential.objects.filter(Q(migrated=True) & Q(migrated_user__is_credentialed=True) & (Q(migrated_user__username__icontains=search_field) | Q(migrated_user__profile__first_names__icontains=search_field) | Q(migrated_user__profile__last_name__icontains=search_field) | Q(migrated_user__email__icontains=search_field))).order_by('-migration_date') successful_apps = CredentialApplication.objects.filter( Q(status=2) & (Q(user__username__icontains=search_field) | Q(user__profile__first_names__icontains=search_field) | Q(user__profile__last_name__icontains=search_field) | Q(user__email__icontains=search_field))).order_by('-application_datetime') unsuccessful_apps = CredentialApplication.objects.filter( Q(status__in=[1, 3]) & (Q(user__username__icontains=search_field) | Q(user__profile__first_names__icontains=search_field) | Q(user__profile__last_name__icontains=search_field) | Q(user__email__icontains=search_field))).order_by('-application_datetime') pending_apps = CredentialApplication.objects.filter( Q(status=0) & (Q(user__username__icontains=search_field) | Q(user__profile__first_names__icontains=search_field) | Q(user__profile__last_name__icontains=search_field) | Q(user__email__icontains=search_field))).order_by('-application_datetime') # Merge legacy applications with new applications all_successful_apps = list(chain(successful_apps, legacy_apps)) if len(search_field) == 0: all_successful_apps = paginate(request, all_successful_apps, 50) unsuccessful_apps = paginate(request, unsuccessful_apps, 50) pending_apps = paginate(request, pending_apps, 50) return all_successful_apps, unsuccessful_apps, pending_apps @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def credentialed_user_info(request, username): try: c_user = User.objects.get(username__iexact=username) application = CredentialApplication.objects.get(user=c_user, status=2) except (User.DoesNotExist, CredentialApplication.DoesNotExist): raise Http404() return render(request, 'console/credentialed_user_info.html', {'c_user':c_user, 'application':application}) @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def news_console(request): """ List of news items """ news_items = News.objects.all().order_by('-publish_datetime') news_items = paginate(request, news_items, 50) return render(request, 'console/news_console.html', {'news_items': news_items, 'news_nav': True}) @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def news_add(request): if request.method == 'POST': form = forms.NewsForm(data=request.POST) if form.is_valid(): form.save() messages.success(request, 'The news item has been added') return set_saved_fields_cookie(form, request.path, redirect('news_console')) else: form = forms.NewsForm() return render(request, 'console/news_add.html', {'form': form, 'news_nav': True}) @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def news_search(request): """ Filtered list of news items """ if request.method == 'POST': search = request.POST['search'] news_items = News.objects.filter(title__icontains=search).order_by('-publish_datetime') return render(request, 'console/news_list.html', {'news_items':news_items}) raise Http404() @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def news_edit(request, news_id): try: news = News.objects.get(id=news_id) except News.DoesNotExist: raise Http404() saved = False if request.method == 'POST': if 'update' in request.POST: form = forms.NewsForm(data=request.POST, instance=news) if form.is_valid(): saved = True form.save() messages.success(request, 'The news item has been updated') elif 'delete' in request.POST: news.delete() messages.success(request, 'The news item has been deleted') return redirect('news_console') else: form = forms.NewsForm(instance=news) response = render(request, 'console/news_edit.html', {'news': news, 'form': form, 'news_nav': True}) if saved: set_saved_fields_cookie(form, request.path, response) return response @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def featured_content(request): """ List of news items """ if 'add' in request.POST: featured = PublishedProject.objects.filter(featured__isnull=False) mx = max(featured.values_list('featured', flat=True), default=1) project = PublishedProject.objects.filter(id=request.POST['id']).update(featured=mx+1) elif 'remove' in request.POST: project = PublishedProject.objects.filter(id=request.POST['id']).update(featured=None) elif 'up' in request.POST: # Get project to be moved idx = int(request.POST['up']) move = PublishedProject.objects.get(featured=idx) # Sets featured to 0 (avoid constraint violation) move.featured = 0 move.save() # Swap positions PublishedProject.objects.filter(featured=idx-1).update(featured=idx) move.featured = idx-1 move.save() elif 'down' in request.POST: # Get project to be moved idx = int(request.POST['down']) move = PublishedProject.objects.get(featured=idx) # Sets featured to 0 (avoid constraint violation) move.featured = 0 move.save() # Swap positions PublishedProject.objects.filter(featured=idx+1).update(featured=idx) move.featured = idx+1 move.save() featured_content = PublishedProject.objects.filter(featured__isnull=False).order_by('featured') return render(request, 'console/featured_content.html', {'featured_content': featured_content, 'featured_content_nav': True}) @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def add_featured(request): """ List of news items """ title, valid_search, projects = '', False, None # If we get a form submission, redirect to generate the querystring # in the url if 'title' in request.GET: form = forms.FeaturedForm(request.GET) if form.is_valid(): title = form.cleaned_data['title'] valid_search = True # Word boundary for different database engines wb = r'\b' if 'postgresql' in settings.DATABASES['default']['ENGINE']: wb = r'\y' projects = PublishedProject.objects.filter( title__iregex=r'{0}{1}{0}'.format(wb,title), featured__isnull=True ) else: form = forms.FeaturedForm() return render(request, 'console/add_featured.html', {'title': title, 'projects': projects, 'form': form, 'valid_search': valid_search, 'featured_content_nav': True}) @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def guidelines_review(request): """ Guidelines for reviewers. """ return render(request, 'console/guidelines_review.html', {'guidelines_review_nav': True}) @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def editorial_stats(request): """ Editorial stats for reviewers. """ # We only want the non-legacy projects since they contain the required # dates (editor assignment, submission date, etc.) projects = PublishedProject.objects.filter(is_legacy=False) years = [i.publish_datetime.year for i in projects] stats = OrderedDict() # Number published for y in sorted(set(years)): stats[y] = [years.count(y)] # Submission to editor assigned sub_ed = projects.annotate(tm=Cast(F('editor_assignment_datetime')-F('submission_datetime'), DurationField())).values_list('tm', flat=True) for y in stats: y_durations = sub_ed.filter(publish_datetime__year=y) days = [d.days for d in y_durations if d.days >= 0] try: stats[y].append(median(days)) except StatisticsError: stats[y].append(None) # Submission to publication sub_pub = projects.annotate(tm=Cast(F('publish_datetime')-F('submission_datetime'), DurationField())).values_list('tm', flat=True) for y in stats: y_durations = sub_pub.filter(publish_datetime__year=y) days = [d.days for d in y_durations if d.days >= 0] try: stats[y].append(median(days)) except StatisticsError: stats[y].append(None) return render(request, 'console/editorial_stats.html', {'stats_nav': True, 'submenu': 'editorial', 'stats': stats}) @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def credentialing_stats(request): """ Credentialing metrics. """ apps = CredentialApplication.objects.all() years = [a.application_datetime.year for a in apps] stats = OrderedDict() # Application count by year for y in sorted(set(years)): stats[y] = {} stats[y]['count'] = years.count(y) # Number processed (accepted or rejected) and proportion approved for y in stats: # accepted = 2. rejected = 1. acc_and_rej = apps.filter(application_datetime__year=y) a = acc_and_rej.filter(status=2).count() r = acc_and_rej.filter(status=1).count() stats[y]['processed'] = a + r stats[y]['approved'] = round((100 * a) / (a + r)) # Time taken to contact the reference time_to_ref = apps.annotate(tm=Cast(F('reference_contact_datetime') - F('application_datetime'), DurationField())).values_list('tm', flat=True) for y in stats: durations = time_to_ref.filter(application_datetime__year=y) try: days = [d.days for d in durations if d and d.days >= 0] stats[y]['time_to_ref'] = median(days) except (AttributeError, StatisticsError): stats[y]['time_to_ref'] = None # Time taken for the reference to respond time_to_reply = apps.annotate(tm=Cast(F('reference_response_datetime') - F('reference_contact_datetime'), DurationField())).values_list('tm', flat=True) for y in stats: durations = time_to_reply.filter(application_datetime__year=y) try: days = [d.days for d in durations if d and d.days >= 0] stats[y]['time_to_reply'] = median(days) except (AttributeError, StatisticsError): stats[y]['time_to_reply'] = None # Time taken to process the application time_to_decision = apps.annotate(tm=Cast(F('decision_datetime') - F('application_datetime'), DurationField())).values_list('tm', flat=True) for y in stats: durations = time_to_decision.filter(application_datetime__year=y) try: days = [d.days for d in durations if d and d.days >= 0] stats[y]['time_to_decision'] = median(days) except (AttributeError, StatisticsError): stats[y]['time_to_decision'] = None return render(request, 'console/credentialing_stats.html', {'stats_nav': True, 'submenu': 'credential', 'stats': stats}) @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def download_credentialed_users(request): """ CSV create and download for database access. """ # Create the HttpResponse object with the appropriate CSV header. project_access = DUASignature.objects.filter(project__access_policy = 2) added = [] dua_info_csv = [['First name', 'Last name', 'E-mail', 'Institution', 'Country', 'MIMIC approval date', 'eICU approval date', 'General research area for which the data will be used']] for person in project_access: application = person.user.credential_applications.last() mimic_signature_date = eicu_signature_date = None if 'mimic' in person.project.slug: mimic_signature_date = person.sign_datetime elif 'eicu' in person.project.slug: eicu_signature_date = person.sign_datetime if person.user.id in added: for indx, item in enumerate(dua_info_csv): if item[2] == person.user.email and item[5] == None: dua_info_csv[indx][5] = mimic_signature_date elif item[2] == person.user.email and item[6] == None: dua_info_csv[indx][6] = eicu_signature_date else: if application: dua_info_csv.append([person.user.profile.first_names, person.user.profile.last_name, person.user.email, application.organization_name, application.country, mimic_signature_date, eicu_signature_date, application.research_summary]) added.append(person.user.id) else: legacy = LegacyCredential.objects.filter(migrated_user_id=person.user.id) if legacy: legacy = legacy.get() dua_info_csv.append([person.user.profile.first_names, person.user.profile.last_name, person.user.email, 'Legacy User', legacy.country, legacy.mimic_approval_date, legacy.eicu_approval_date, legacy.info]) added.append(person.user.id) else: LOGGER.info("Failed locating information of user {}".format( person.user.id)) response = HttpResponse(content_type='text/csv') response['Content-Disposition'] = 'attachment; filename="credentialed_users.csv"' writer = csv.writer(response) for item in dua_info_csv: writer.writerow(item) return response @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def project_access(request): """ List all the people that has access to credentialed databases """ c_projects = PublishedProject.objects.filter(access_policy=2).annotate( member_count=Value(0, IntegerField())) for project in c_projects: project.member_count = DUASignature.objects.filter( project__access_policy = 2, project=project).count() return render(request, 'console/project_access.html', {'c_projects': c_projects, 'project_access_nav': True}) @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def project_access_manage(request, pid): c_project = PublishedProject.objects.filter(id=pid) if c_project: c_project = c_project.get() project_members = DUASignature.objects.filter( project__access_policy = 2, project=c_project) return render(request, 'console/project_access_manage.html', { 'c_project': c_project, 'project_members': project_members, 'project_access_nav': True}) class UserAutocomplete(autocomplete.Select2QuerySetView): def get_queryset(self): """ Get all active users with usernames that match the request string, excluding the user who is doing the search. """ qs = User.objects.filter(is_active=True) if self.q: qs = qs.filter(username__icontains=self.q) return qs @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def known_references(request): """ List all known references witht he option of removing the contact date """ user = request.user if 'remove_known_ref' in request.POST and \ request.POST['remove_known_ref'].isdigit(): try: application = CredentialApplication.objects.get( id=request.POST['remove_known_ref']) application.remove_contact_reference() LOGGER.info('User {0} removed reference contacted for application \ {1}'.format(user, application.id)) messages.success(request, 'The reference contacted has been removed.') except CredentialApplication.DoesNotExist: pass all_known_ref = CredentialApplication.objects.filter( reference_contact_datetime__isnull=False).order_by( '-reference_contact_datetime') all_known_ref = paginate(request, all_known_ref, 50) return render(request, 'console/known_references.html', { 'all_known_ref': all_known_ref, 'known_ref_nav': True}) @login_required @user_passes_test(is_admin, redirect_field_name='project_home') def complete_credential_applications_mailto(request): """ Return the mailto link to a credentialing applicant. """ app_id = request.GET['app_id'] try: app = CredentialApplication.objects.get(id=app_id) except CredentialApplication.DoesNotExist: return JsonResponse({'mailtolink': 'false'}) mailto = notification.mailto_process_credential_complete(request, app, comments=False) return JsonResponse({'mailtolink': mailto}) <file_sep>import os import pdb from django import forms from django.conf import settings from django.contrib.auth import forms as auth_forms from django.contrib.auth import password_validation from django.core.files.uploadedfile import UploadedFile from django.forms.widgets import FileInput from django.utils import timezone from django.utils.crypto import get_random_string from django.utils.translation import ugettext_lazy from django.db import transaction from project.models import PublishedProject from user.models import AssociatedEmail, User, Profile, CredentialApplication, CloudInformation from user.trainingreport import (find_training_report_url, TrainingCertificateError) from user.widgets import ProfilePhotoInput from user.validators import UsernameValidator, validate_name class AssociatedEmailChoiceForm(forms.Form): """ For letting users choose one of their AssociatedEmails. E.g. primary email, public email, corresponding email """ associated_email = forms.ModelChoiceField(queryset=None, to_field_name='email', label='Email') def __init__(self, user, selection_type, author=None, *args, **kwargs): # Email choices are those belonging to a user super(AssociatedEmailChoiceForm, self).__init__(*args, **kwargs) associated_emails = user.associated_emails.filter(is_verified=True).order_by('-is_primary_email') self.fields['associated_email'].queryset = associated_emails if selection_type == 'primary': self.fields['associated_email'].empty_label = None self.fields['associated_email'].initial = associated_emails.filter( is_primary_email=True).first() elif selection_type == 'public': # This might be None self.fields['associated_email'].initial = associated_emails.filter( is_public=True).first() self.fields['associated_email'].required = False elif selection_type == 'corresponding': self.fields['associated_email'].empty_label = None self.fields['associated_email'].initial = author.corresponding_email class AddEmailForm(forms.ModelForm): """ For adding new associated emails """ class Meta: model = AssociatedEmail fields = ('email',) widgets = { 'email': forms.EmailInput( attrs={'class': 'form-control dropemail'}), } def clean_email(self): """ Check that the email is unique for the user. Make the email lowercase """ data = self.cleaned_data['email'].lower() if AssociatedEmail.objects.filter(email=data).exists(): raise forms.ValidationError( 'The email is already registered') return data class LoginForm(auth_forms.AuthenticationForm): """ Form for logging in. """ username = auth_forms.UsernameField( label='Email or Username', max_length=254, widget=forms.TextInput(attrs={'autofocus': True, 'class': 'form-control', 'placeholder': 'Email or Username'}), ) password = forms.CharField( label='<PASSWORD>', strip=False, widget=forms.PasswordInput(attrs={'class': 'form-control', 'placeholder': '<PASSWORD>'}), ) remember = forms.BooleanField(label='Remember Me', required=False) error_messages = { 'invalid_login': ugettext_lazy( "Please enter a correct username/email and password. Note that the password " "field is case-sensitive." ), 'inactive': ugettext_lazy("This account has not been activated. Please check your " "email for the activation link."), } class UserChangeForm(forms.ModelForm): """A form for updating user objects in the admin interface. Includes all fields on the user, but replaces the password field with the password hash display field. Use the admin interface to change passwords. """ password = auth_forms.ReadOnlyPassword<PASSWORD>Field() class Meta: model = User fields = ('email', 'password', 'is_active', 'is_admin') def clean_password(self): # Regardless of what the user provides, return the initial value. # This is done here, rather than on the field, because the # field does not have access to the initial value return self.initial["password"] class UsernameChangeForm(forms.ModelForm): """ Updating the username filed """ class Meta: model = User fields = ('username',) widgets = { 'username':forms.TextInput(attrs={'class': 'form-control', 'validators':[UsernameValidator]}), } def clean_username(self): "Record the original username in case it is needed" self.old_username = self.instance.username self.old_file_root = self.instance.file_root() if User.objects.filter(username__iexact=self.cleaned_data['username']): raise forms.ValidationError("A user with that username already exists.") return self.cleaned_data['username'].lower() def save(self): """ Change the media file directory name and photo name if any, to match the new username """ new_username = self.cleaned_data['username'] if self.old_username != new_username: with transaction.atomic(): super().save() profile = self.instance.profile if profile.photo: name_components = profile.photo.name.split('/') name_components[1] = new_username profile.photo.name = '/'.join(name_components) profile.save() if os.path.exists(self.old_file_root): os.rename(self.old_file_root, self.instance.file_root()) class SaferImageField(forms.ImageField): """ A field for uploaded image files. This wraps Django's django.forms.fields.ImageField (not to be confused with django.db.models.fields.files.ImageField!) When a file is uploaded, it is required to be a valid JPEG or PNG image file. The filename specified by the client is ignored; the file is renamed to either 'image.png' or 'image.jpg' according to the detected type. The type is enforced both by checking the magic number before passing the file to ImageField.to_python (which invokes PIL.Image.open), and by checking the content type that Pillow reports. Since we check the magic number before calling PIL.Image.open, this means we avoid calling many of the possible image format parsers, which are historically sources of countless security bugs. Note, however, that this does not avoid calling *all* undesired parsers. If one parser fails, then Pillow will try again with the next one in the list. Most of the Pillow parsers will immediately reject files that don't start with an appropriate magic number, but some parsers may not. """ ACCEPT_TYPES = ['image/jpeg', 'image/png'] TYPE_SUFFIX = { 'image/jpeg': '.jpg', 'image/png': '.png', } TYPE_SIGNATURE = { 'image/jpeg': b'\xff\xd8', 'image/png': b'\x89PNG\x0d\x0a\x1a\x0a', } def to_python(self, data): if data in self.empty_values: return None if hasattr(data, 'temporary_file_path'): path = data.temporary_file_path() with open(path, 'rb') as f: signature = f.read(16) else: signature = data.read(16) data.seek(0) for content_type in self.ACCEPT_TYPES: if signature.startswith(self.TYPE_SIGNATURE[content_type]): break else: raise forms.ValidationError('Not a valid JPEG or PNG image file.') result = super().to_python(data) # check that the content type is what we expected if result.content_type != content_type: raise forms.ValidationError('Not a valid JPEG or PNG image file.') # set the name according to the content type result.name = 'image' + self.TYPE_SUFFIX[content_type] return result def widget_attrs(self, widget): attrs = super().widget_attrs(widget) if isinstance(widget, FileInput): attrs['accept'] = ','.join(self.ACCEPT_TYPES) return attrs class ProfileForm(forms.ModelForm): """ For editing the profile """ photo = SaferImageField(required=False, widget=ProfilePhotoInput( attrs={'template_name': 'user/profile_photo_input.html'})) class Meta: model = Profile fields = ('first_names', 'last_name', 'affiliation', 'location', 'website', 'photo') def clean_photo(self): data = self.cleaned_data['photo'] # Check size if file is being uploaded if data and isinstance(data, UploadedFile): if data.size > Profile.MAX_PHOTO_SIZE: raise forms.ValidationError('Exceeded maximum size: {0}'.format(Profile.MAX_PHOTO_SIZE)) # Save the existing file path in case it needs to be deleted. # After is_valid runs, the instance photo is already updated. if self.instance.photo: self.old_photo_path = self.instance.photo.path return data def save(self): # Delete the old photo if the user is uploading a new photo, and # they already had one (before saving the new photo) if 'photo' in self.changed_data and hasattr(self, 'old_photo_path'): os.remove(self.old_photo_path) super(ProfileForm, self).save() class RegistrationForm(forms.ModelForm): """A form for creating new users. Includes all the required fields, plus a repeated password. """ first_names = forms.CharField(max_length=100, label='First Names', widget=forms.TextInput(attrs={'class': 'form-control'}), validators=[validate_name]) last_name = forms.CharField(max_length=50, label='Last Name', widget=forms.TextInput(attrs={'class': 'form-control'}), validators=[validate_name]) class Meta: model = User fields = ('email','username',) widgets = { 'email': forms.EmailInput(attrs={'class': 'form-control'}), 'username': forms.TextInput(attrs={'class': 'form-control'}), } def clean_username(self): "Record the original username in case it is needed" if User.objects.filter(username__iexact=self.cleaned_data['username']): raise forms.ValidationError("A user with that username already exists.") return self.cleaned_data['username'].lower() def save(self): """ Process the registration form """ if self.errors: return user = super(RegistrationForm, self).save(commit=False) user.email = user.email.lower() with transaction.atomic(): user.save() # Save additional fields in Profile model Profile.objects.create(user=user, first_names=self.cleaned_data['first_names'], last_name=self.cleaned_data['last_name']) return user # Split the credential application forms into multiple forms class PersonalCAF(forms.ModelForm): """ Credential application form personal attributes """ class Meta: model = CredentialApplication fields = ('first_names', 'last_name', 'suffix', 'researcher_category', 'organization_name', 'job_title', 'city', 'state_province', 'zip_code', 'country', 'webpage') help_texts = { 'first_names': """Your first name(s). This can be edited in your profile settings.""", 'last_name': """Your last (family) name. This can be edited in your profile settings.""", 'suffix': """Please leave the suffix blank if your name does not include a suffix like "Jr." or "III". Do not list degrees. Do not put a prefix like "Mr" or "Ms". Do not put "not applicable".""", 'researcher_category': "Your research status.", 'organization_name': """Your employer or primary affiliation. Put "None" if you are an independent researcher.""", 'job_title': """Your job title or position (e.g., student) within your institution or organization.""", 'city': "The city where you live.", 'state_province': "The state or province where you live. (Required for residents of Canada or the US.)", 'zip_code': "The zip code of the city where you live.", 'country': "The country where you live.", 'webpage': """Please include a link to a webpage with your biography or other personal details (ORCID, LinkedIn, Github, etc.).""", 'research_summary': """Brief description of your proposed research. If you will be using the data for a class, please include course name and number in your description.""", } widgets = { 'research_summary': forms.Textarea(attrs={'rows': 3}), 'suffix': forms.TextInput(attrs={'autocomplete': 'off'}), } labels = { 'state_province': 'State/Province', 'first_names': 'First (given) name(s)', 'last_name': 'Last (family) name(s)', 'suffix': 'Suffix, if applicable:', 'job_title': 'Job title or position', 'zip_code': 'ZIP/postal code' } def __init__(self, user, *args, **kwargs): super().__init__(*args, **kwargs) self.user = user self.profile = user.profile self.fields['first_names'].disabled = True self.fields['last_name'].disabled = True self.initial = {'first_names':self.profile.first_names, 'last_name':self.profile.last_name, 'organization_name':self.profile.affiliation, 'webpage':self.profile.website} class ResearchCAF(forms.ModelForm): """ Credential application form research attributes """ class Meta: model = CredentialApplication fields = ('research_summary',) help_texts = { 'research_summary': """Brief description of your research. If you will be using the data for a class, please include course name and number in your description.""", } widgets = { 'research_summary': forms.Textarea(attrs={'rows': 2}), } labels = { 'research_summary': 'Research Topic' } class TrainingCAF(forms.ModelForm): """ Credential application form training course attributes """ class Meta: model = CredentialApplication fields = ('training_completion_report',) help_texts = { 'training_completion_report': """Do not upload the completion certificate. Upload the completion report from the CITI 'Data or Specimens Only Research' training program which lists all modules completed, with dates and scores. Expired reports will not be accepted.""", } def clean_training_completion_report(self): reportfile = self.cleaned_data['training_completion_report'] if reportfile and isinstance(reportfile, UploadedFile): if reportfile.size > CredentialApplication.MAX_REPORT_SIZE: raise forms.ValidationError( 'Completion report exceeds size limit') return reportfile class ReferenceCAF(forms.ModelForm): """ Credential application form reference attributes """ class Meta: model = CredentialApplication fields = ('reference_category', 'reference_name', 'reference_email', 'reference_organization', 'reference_title') help_texts = { 'reference_category': """Your reference's relationship to you. If you are a student or postdoc, this must be your supervisor. Otherwise, you may list a colleague. Do not list yourself or another student as reference. Remind your reference to respond promptly, as long response times will prevent approval of your application.""", 'reference_name': 'The full name of your reference.', 'reference_email': """The email address of your reference. It is strongly recommended that this be an institutional email address.""", 'reference_organization': """Your reference's employer or primary affiliation.""", 'reference_title': "Your reference's professional title or position." } labels = { 'reference_title': 'Reference job title or position' } def __init__(self, user, *args, **kwargs): """ This form is only for processing post requests. """ super().__init__(*args, **kwargs) self.user = user def clean_reference_name(self): reference_name = self.cleaned_data.get('reference_name') if reference_name: return reference_name.strip() def clean_reference_email(self): reference_email = self.cleaned_data.get('reference_email') if reference_email: if reference_email in self.user.get_emails(): raise forms.ValidationError("""You can not put yourself as a reference.""") else: return reference_email.strip() def clean_reference_title(self): reference_title = self.cleaned_data.get('reference_title') if reference_title: return reference_title.strip() class CredentialApplicationForm(forms.ModelForm): """ Form to apply for PhysioNet credentialling """ class Meta: model = CredentialApplication fields = ( # Personal 'first_names', 'last_name', 'suffix', 'researcher_category', 'organization_name', 'job_title', 'city', 'state_province', 'zip_code', 'country', 'webpage', # Training course 'training_course_name', 'training_completion_date', 'training_completion_report', # Reference 'reference_category', 'reference_name', 'reference_email', 'reference_organization', 'reference_title', # Research area 'research_summary') def __init__(self, user, *args, **kwargs): """ This form is only for processing post requests. """ super().__init__(*args, **kwargs) self.user = user self.profile = user.profile self.fields['first_names'].disabled = True self.fields['last_name'].disabled = True self.initial = {'first_names': self.profile.first_names, 'last_name': self.profile.last_name} def clean(self): data = self.cleaned_data if any(self.errors): return ref_details = [data['reference_category'] is not None, data['reference_name'], data['reference_email'], data['reference_organization'], data['reference_title']] ref_required = data['researcher_category'] in [0, 1, 6, 7] supervisor_required = data['researcher_category'] in [0, 1, 7] state_required = data['country'] in ['US', 'CA'] # Students and postdocs must provide their supervisor as a reference if supervisor_required and data['reference_category'] != 0: raise forms.ValidationError("""If you are a student or postdoc, you must provide your supervisor as a reference.""") # Check the full reference details are provided if appropriate if ref_required and not all(ref_details): raise forms.ValidationError("""A reference is required. Please provide full contact details, including a reference category.""") # if any reference fields are add, all fields must be completed if any(ref_details) and not all(ref_details): raise forms.ValidationError("""Please provide full details for your reference, including the reference category.""") # If applicant is from USA or Canada, the state must be provided if state_required and not data['state_province']: raise forms.ValidationError("Please add your state or province.") if not self.instance and CredentialApplication.objects.filter(user=self.user, status=0): raise forms.ValidationError('Outstanding application exists.') # Check for a recognized CITI verification link. try: reportfile = data['training_completion_report'] self.report_url = find_training_report_url(reportfile) except TrainingCertificateError: raise forms.ValidationError( 'Please upload the "Completion Report" file, ' 'not the "Completion Certificate".') def save(self): credential_application = super().save(commit=False) slug = get_random_string(20) while CredentialApplication.objects.filter(slug=slug): slug = get_random_string(20) credential_application.user = self.user credential_application.slug = slug credential_application.training_completion_report_url = self.report_url credential_application.save() return credential_application class CredentialReferenceForm(forms.ModelForm): """ Form to apply for PhysioNet credentialling. The name must match. """ class Meta: model = CredentialApplication fields = ('reference_response', 'reference_response_text') labels = { 'reference_response': 'I am familiar with the research and support this request.', 'reference_response_text': 'Please briefly describe your working relationship with the applicant.' } widgets = { 'reference_response_text':forms.Textarea(attrs={'rows': 3}), } def save(self): """ Process the decision """ application = super().save(commit=False) # Deny if self.cleaned_data['reference_response'] == 1: application.status = 1 application.reference_response_datetime = timezone.now() application.reference_response_text = self.cleaned_data['reference_response_text'] application.save() return application class ContactForm(forms.Form): """ For contacting PhysioNet support """ name = forms.CharField(max_length=100, widget=forms.TextInput( attrs={'class': 'form-control', 'placeholder': 'Name *'})) email = forms.EmailField(max_length=100, widget=forms.TextInput( attrs={'class': 'form-control', 'placeholder': 'Email *'})) subject = forms.CharField(max_length=100, widget=forms.TextInput( attrs={'class': 'form-control', 'placeholder': 'Subject *'})) message = forms.CharField(max_length=2000, widget=forms.Textarea( attrs={'class': 'form-control', 'placeholder': 'Message *'})) def clean_email(self): # Disallow addresses that look like they come from this machine. addr = self.cleaned_data['email'].lower() for domain in settings.EMAIL_FROM_DOMAINS: if addr.endswith('@' + domain) or addr.endswith('.' + domain): raise forms.ValidationError('Please enter your email address.') return self.cleaned_data['email'] class CloudForm(forms.ModelForm): """ Form to store the AWS ID, and point to the google GCP email. """ class Meta: model = CloudInformation fields = ('gcp_email','aws_id',) labels = { 'gcp_email': 'Google (Email)', 'aws_id': 'Amazon (ID)', } def __init__(self, *args, **kwargs): # Email choices are those belonging to a user super().__init__(*args, **kwargs) associated_emails = self.instance.user.associated_emails.filter(is_verified=True) self.fields['gcp_email'].queryset = associated_emails self.fields['gcp_email'].required = False # class ActivationForm(forms.ModelForm): class ActivationForm(forms.Form): """A form for creating new users. Includes all the required fields, plus a repeated password. """ username = forms.CharField(disabled=True, widget=forms.TextInput(attrs={ 'class': 'form-control'})) email = forms.EmailField(disabled=True, widget=forms.TextInput(attrs={ 'class': 'form-control'})) password1 = forms.CharField(label='<PASSWORD>', widget=forms.PasswordInput(attrs={'class': 'form-control'})) password2 = forms.CharField(label='Password Confirmation', widget=forms.PasswordInput(attrs={'class': 'form-control'})) def __init__(self, user, *args, **kwargs): """ This form is only for processing post requests. """ super().__init__(*args, **kwargs) self.fields['username'].initial = user.username self.fields['email'].initial = user.email self.user = user def clean_password2(self): # Check that the two password entries match password1 = self.cleaned_data.get('password1') password2 = self.cleaned_data.get('password2') if password1 and password2 and password1 != password2: raise forms.ValidationError("The passwords don't match") password_validation.validate_password( self.cleaned_data.get('password1'), user=self.user) return password1 <file_sep>""" Django settings for physionet project. Generated by 'django-admin startproject' using Django 1.11.5. For more information on this file, see https://docs.djangoproject.com/en/1.11/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/1.11/ref/settings/ """ import fcntl import sys import os from decouple import config import logging.config # Build paths inside the project like this: os.path.join(BASE_DIR, ...) BASE_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) # Quick-start development settings - unsuitable for production # See https://docs.djangoproject.com/en/1.11/howto/deployment/checklist/ SECRET_KEY = config('SECRET_KEY') # Application definition INSTALLED_APPS = [ 'dal', 'dal_select2', 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'django.contrib.sites', 'ckeditor', # 'django_cron', 'background_task', 'user', 'project', 'console', 'export', 'notification', 'search', 'lightwave', ] MIDDLEWARE = [ 'django.middleware.security.SecurityMiddleware', 'physionet.middleware.maintenance.SystemMaintenanceMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware', ] CRON_CLASSES = [ "physionet.cron.RemoveUnverifiedEmails", "physionet.cron.RemoveOutstandingInvites", ] ROOT_URLCONF = 'physionet.urls' TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [os.path.join(BASE_DIR,'templates')], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', ], }, }, ] WSGI_APPLICATION = 'physionet.wsgi.application' # Session management SESSION_COOKIE_SECURE = True # Password validation # https://docs.djangoproject.com/en/1.11/ref/settings/#auth-password-validators AUTH_PASSWORD_VALIDATORS = [ { 'NAME': 'user.validators.ComplexityValidator', }, ] AUTHENTICATION_BACKENDS = ['user.models.DualAuthModelBackend'] AUTH_USER_MODEL = 'user.User' LOGIN_URL = '/login/' LOGIN_REDIRECT_URL = '/projects/' LOGOUT_REDIRECT_URL = '/' # Internationalization # https://docs.djangoproject.com/en/1.11/topics/i18n/ LANGUAGE_CODE = 'en-us' TIME_ZONE = 'America/New_York' USE_I18N = True USE_L10N = True USE_TZ = True # Django background tasks max attempts MAX_ATTEMPTS = 5 # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/1.11/howto/static-files/ STATIC_URL = '/static/' STATICFILES_DIRS = [os.path.join(BASE_DIR,'static')] # Google Storge service account credentials os.environ["GOOGLE_APPLICATION_CREDENTIALS"] = os.path.join(BASE_DIR, 'PhysioNet-Data-credentials.json') # Maintenance mode # If true, disable all POSTs and other requests to make changes SYSTEM_MAINTENANCE_NO_CHANGES = config('SYSTEM_MAINTENANCE_NO_CHANGES', cast=bool, default=False) # If true, disable upload functions SYSTEM_MAINTENANCE_NO_UPLOAD = config('SYSTEM_MAINTENANCE_NO_UPLOAD', cast=bool, default=False) # HTML error message displayed during maintenance SYSTEM_MAINTENANCE_MESSAGE = config('SYSTEM_MAINTENANCE_MESSAGE', default=None) # Prevent new applications for credentialed access PAUSE_CREDENTIALING = config('PAUSE_CREDENTIALING', cast=bool, default=False) PAUSE_CREDENTIALING_MESSAGE = config('PAUSE_CREDENTIALING_MESSAGE', default=None) # Set the credentialing email address CREDENTIAL_EMAIL = 'PhysioNet Credentialing <<EMAIL>>' # Google G suite Groups service account and Private Key file SERVICE_ACCOUNT_EMAIL = '<EMAIL>' SERVICE_ACCOUNT_PKCS12_FILE_PATH = os.path.join(BASE_DIR, 'PhysioNet-Data-credentials.p12') GCP_DELEGATION_EMAIL = config('GCP_DELEGATION_EMAIL', default=False) GCP_SECRET_KEY = config('GCP_SECRET_KEY', default=False) GCP_BUCKET_PREFIX = "testing-delete." GCP_DOMAIN = "physionet.org" # Header tags for the AWS lambda function that grants access to S3 storage AWS_HEADER_KEY = config('AWS_KEY', default=False) AWS_HEADER_VALUE = config('AWS_VALUE', default=False) AWS_HEADER_KEY2 = config('AWS_KEY2', default=False) AWS_HEADER_VALUE2 = config('AWS_VALUE2', default=False) AWS_CLOUD_FORMATION = config('AWS_CLOUD_FORMATION', default=False) # Tags for the DataCite API used for DOI DATACITE_API_URL = 'https://api.test.datacite.org/dois' DATACITE_PREFIX = config('DATACITE_TEST_PREFIX', default=False) DATACITE_USER = config('DATACITE_TEST_USER', default=False) DATACITE_PASS = config('DATACITE_TEST_PASS', default=False) # Tags for the ORCID API ORCID_DOMAIN = 'https://sandbox.orcid.org' ORCID_REDIRECT_URI = 'http://127.0.0.1:8000/authorcid' ORCID_AUTH_URL = 'https://sandbox.orcid.org/oauth/authorize' ORCID_TOKEN_URL = 'https://sandbox.orcid.org/oauth/token' ORCID_CLIENT_ID = config('ORCID_TEST_CLIENT_ID', default=False) ORCID_CLIENT_SECRET = config('ORCID_TEST_CLIENT_SECRET', default=False) ORCID_SCOPE = config('ORCID_TEST_SCOPE', default=False) # Used to verify if we are running in the production environment PRODUCTION = False # List of permitted HTML tags and attributes for rich text fields. # The 'default' configuration permits all of the tags below. Other # configurations may be added that permit different sets of tags. # Attributes that can be added to any HTML tag _generic_attributes = ['lang', 'title'] # Inline/phrasing content _inline_tags = { 'a': {'attributes': ['href']}, 'abbr': True, 'b': True, 'bdi': True, 'cite': True, 'code': True, 'dfn': True, 'em': True, 'i': True, 'kbd': True, 'q': True, 'rb': True, 'rp': True, 'rt': True, 'rtc': True, 'ruby': True, 's': True, 'samp': True, 'span': True, 'strong': True, 'sub': True, 'sup': True, 'time': True, 'u': True, 'var': True, 'wbr': True, 'img': {'attributes': ['alt', 'src', 'height', 'width']}, } # Block/flow content _block_tags = { # Paragraphs, lists, quotes, line breaks 'blockquote': True, 'br': True, 'dd': True, 'div': True, 'dl': True, 'dt': True, 'li': {'attributes': ['value']}, 'ol': {'attributes': ['start', 'type']}, 'p': True, 'pre': True, 'ul': True, # Tables 'caption': True, 'col': {'attributes': ['span']}, 'colgroup': {'attributes': ['span']}, 'table': {'attributes': ['width']}, 'tbody': True, 'td': {'attributes': ['colspan', 'headers', 'rowspan', 'style'], 'styles': ['text-align']}, 'tfoot': True, 'th': {'attributes': ['abbr', 'colspan', 'headers', 'rowspan', 'scope', 'sorted', 'style'], 'styles': ['text-align']}, 'thead': True, 'tr': True, } # Math content (inline or block) _math_tags = { 'math': {'attributes': ['alttext', 'display']}, 'annotation': {'attributes': ['encoding']}, 'semantics': True, 'maligngroup': {'attributes': ['groupalign']}, 'malignmark': {'attributes': ['edge']}, 'menclose': {'attributes': ['notation']}, 'merror': True, 'mfenced': {'attributes': ['close', 'open', 'separators']}, 'mfrac': {'attributes': [ 'bevelled', 'numalign', 'denomalign', 'linethickness']}, 'mi': {'attributes': ['class', 'mathsize', 'mathvariant']}, 'mlabeledtr': {'attributes': ['rowalign', 'columnalign', 'groupalign']}, 'mmultiscripts': True, 'mn': {'attributes': ['class', 'mathsize', 'mathvariant']}, 'mo': {'attributes': [ 'class', 'accent', 'fence', 'form', 'largeop', 'linebreak', 'linebreakmultchar', 'linebreakstyle', 'lspace', 'mathsize', 'mathvariant', 'maxsize', 'minsize', 'movablelimits', 'rspace', 'separator', 'stretchy', 'symmetric']}, 'mover': {'attributes': ['accent', 'align']}, 'mpadded': {'attributes': [ 'depth', 'height', 'lspace', 'voffset', 'width']}, 'mphantom': True, 'mprescripts': True, 'mroot': True, 'mrow': {'attributes': ['class']}, 'ms': {'attributes': ['lquote', 'rquote']}, 'mspace': {'attributes': ['width', 'height', 'depth', 'linebreak']}, 'msqrt': True, 'mstyle': {'attributes': [ 'decimalpoint', 'displaystyle', 'infixlinebreakstyle', 'mathsize', 'mathvariant', 'scriptlevel', 'scriptsizemultiplier']}, 'msub': True, 'msubsup': True, 'msup': True, 'mtable': {'attributes': [ 'align', 'alignmentscope', 'columnalign', 'columnlines', 'columnspacing', 'columnwidth', 'displaystyle', 'equalcolumns', 'equalrows', 'frame', 'groupalign', 'rowalign', 'rowlines', 'rowspacing', 'side', 'width']}, 'mtd': {'attributes': [ 'rowspan', 'columnspan', 'rowalign', 'columnalign', 'groupalign']}, 'mtext': {'attributes': ['class', 'mathsize', 'mathvariant']}, 'mtr': {'attributes': ['rowalign', 'columnalign', 'groupalign']}, 'munder': {'attributes': ['accentunder', 'align']}, 'munderover': {'attributes': ['accent', 'accentunder', 'align']}, 'none': True, } # Classes used by MathJax (see toMathMLclass() in extensions/toMathML.js) _math_classes = [ 'MJX-TeXAtom-ORD', 'MJX-TeXAtom-OP', 'MJX-TeXAtom-BIN', 'MJX-TeXAtom-REL', 'MJX-TeXAtom-OPEN', 'MJX-TeXAtom-CLOSE', 'MJX-TeXAtom-PUNCT', 'MJX-TeXAtom-INNER', 'MJX-TeXAtom-VCENTER', 'MJX-fixedlimits', 'MJX-variant', 'MJX-tex-caligraphic', 'MJX-tex-caligraphic-bold', 'MJX-tex-oldstyle', 'MJX-tex-oldstyle-bold', 'MJX-tex-mathit', ] CKEDITOR_CONFIGS = { 'default': { 'toolbar': 'Custom', 'toolbar_Custom': [ ['Format'], ['Bold', 'Italic', 'Underline', 'Blockquote'], ['NumberedList', 'BulletedList'], ['InlineEquation', 'BlockEquation', 'CodeSnippet', 'Table'], ['Link', 'Unlink'], ['RemoveFormat', 'Source'], ], 'removeDialogTabs': 'link:advanced', 'disableNativeSpellChecker': False, 'width': '100%', 'autosave': {'messageType': 'no'}, # Show options "Heading 2" to "Heading 4" in the format menu, # but map these to <h3>, <h4>, <h5> tags 'format_tags': 'p;h2;h3;h4', 'format_h2': {'element': 'h3'}, 'format_h3': {'element': 'h4'}, 'format_h4': {'element': 'h5'}, 'extraPlugins': 'codesnippet,pnmathml,autosave', 'allowedContent': { **_inline_tags, **_block_tags, **_math_tags, 'h3': True, 'h4': True, 'h5': True, 'h6': True, 'img': {'attributes': ['src', 'alt', 'width', 'height']}, '*': {'attributes': _generic_attributes, 'classes': _math_classes}, }, 'mathJaxLib': ('/static/mathjax/MathJax.js' '?config=TeX-AMS-MML_HTMLorMML-full'), } } # True if the program is invoked as 'manage.py test' RUNNING_TEST_SUITE = (len(sys.argv) > 1 and sys.argv[1] == 'test') LOGGING_CONFIG = None LOGLEVEL = os.environ.get('LOGLEVEL', 'info').upper() if RUNNING_TEST_SUITE: _logfile = open(os.path.join(BASE_DIR, 'test.log'), 'w') else: _logfile = sys.stderr logging.config.dictConfig({ 'version': 1, 'disable_existing_loggers': False, 'filters': { 'require_debug_false': { '()': 'django.utils.log.RequireDebugFalse', }, }, 'formatters': { 'console': { 'format': '%(asctime)s %(name)-12s %(levelname)-8s %(message)s', }, 'simple': { 'format': '%(levelname)s %(asctime)-15s %(message)s' }, }, 'handlers': { 'console': { 'class': 'logging.StreamHandler', 'formatter': 'console', 'stream': _logfile, }, 'Custom_Logging': { 'level': 'INFO', 'class': 'logging.StreamHandler', 'formatter': 'simple', 'stream': _logfile, }, 'verbose_console': { 'class': 'physionet.log.VerboseStreamHandler', 'formatter': 'console', 'stream': _logfile, }, 'mail_admins': { 'level': 'ERROR', 'filters': ['require_debug_false'], 'class': 'physionet.log.SaferAdminEmailHandler', }, }, 'loggers': { '': { 'level': 'INFO', 'handlers': ['console'], }, 'user': { 'level': 'INFO', 'handlers': ['Custom_Logging'], 'propagate': False, }, 'django.security.DisallowedHost': { 'handlers': ['mail_admins'], 'level': 'CRITICAL', 'propagate': False, }, 'django.request': { 'handlers': ['verbose_console', 'mail_admins'], 'level': 'ERROR', 'propagate': False, }, 'physionet.error': { 'handlers': ['console', 'mail_admins', 'Custom_Logging'], 'level': 'ERROR', } }, }) # If this environment variable is set, acquire a shared lock on the # named file. The file descriptor is left open, but is # non-inheritable (close-on-exec), so the lock will be inherited by # forked child processes, but not by execed programs. if os.getenv('PHYSIONET_LOCK_FILE'): _lockfd = os.open(os.getenv('PHYSIONET_LOCK_FILE'), os.O_RDWR | os.O_CREAT, 0o660) # Note that Python has at least three different ways of locking # files. We want fcntl.flock (i.e. flock(2)), which is tied to # the file desciptor and inherited by child processes. In # contrast, fcntl.lockf uses fcntl(2) and os.lockf uses lockf(3), # both of which are tied to the PID. fcntl.flock(_lockfd, fcntl.LOCK_SH) <file_sep>from collections import OrderedDict import os import pdb import re from django import forms from django.forms.utils import ErrorList from django.contrib.contenttypes.forms import BaseGenericInlineFormSet from django.db.models.functions import Lower from django.template.defaultfilters import slugify from django.utils import timezone from django.utils.crypto import get_random_string from django.utils.html import format_html from project.models import (Affiliation, Author, AuthorInvitation, ActiveProject, CoreProject, StorageRequest, ProgrammingLanguage, License, Metadata, Reference, Publication, DataAccess, PublishedProject, Topic, exists_project_slug, ProjectType, AnonymousAccess, DataAccessRequest, DataAccessRequestReviewer) from project import utility from project import validators from user.models import User from dal import autocomplete INVITATION_CHOICES = ( (1, 'Accept'), (0, 'Decline') ) class CorrespondingAuthorForm(forms.Form): """ Select a corresponding author for a project """ author = forms.ModelChoiceField(queryset=None) def __init__(self, project, *args, **kwargs): super().__init__(*args, **kwargs) self.project = project project_authors = project.authors.all().order_by('display_order') self.fields['author'].queryset = project_authors self.fields['author'].initial = project_authors.get(is_corresponding=True) self.fields['author'].empty_label = None def update_corresponder(self): old_c = self.project.corresponding_author() new_c = self.cleaned_data['author'] if old_c != new_c: old_c.is_corresponding, new_c.is_corresponding = False, True old_c.save() new_c.save() class ActiveProjectFilesForm(forms.Form): """ Inherited form for manipulating project files/directories. Upload and create folders, move, rename, delete items. """ # The working subdirectory relative to the project root subdir = forms.CharField(widget=forms.HiddenInput(), required=False, validators=[validators.validate_subdir]) def __init__(self, project, *args, **kwargs): super(ActiveProjectFilesForm, self).__init__(*args, **kwargs) self.project = project def clean_subdir(self): """ Check that the subdirectory exists """ data = self.cleaned_data['subdir'] file_dir = os.path.join(self.project.file_root(), data) if not os.path.isdir(file_dir): raise forms.ValidationError('Invalid directory') self.file_dir = file_dir return data class UploadFilesForm(ActiveProjectFilesForm): """ Form for uploading multiple files to a project. `subdir` is the project subdirectory relative to the file root. """ file_field = forms.FileField(widget=forms.ClearableFileInput( attrs={'multiple': True, 'onchange': "check_upload_size_limit('upload');"}), required=False, allow_empty_file=True) def clean_file_field(self): """ Check for file name, size limits and whether they are readable """ files = self.files.getlist('file_field') for file in files: validators.validate_filename(file.name) # Special error if not file: raise forms.ValidationError('Could not read file: %(file_name)s', params={'file_name': file.name}) for file in files: if file.size > ActiveProject.INDIVIDUAL_FILE_SIZE_LIMIT: raise forms.ValidationError( 'File %(file_name)s is larger than the individual size limit: %(individual_size_limit)s', code='exceed_individual_limit', params={'file_name': file.name, 'individual_size_limit': utility.readable_size(ActiveProject.INDIVIDUAL_FILE_SIZE_LIMIT)} ) if sum(f.size for f in files) > self.project.core_project.storage_allowance - self.project.storage_used(): raise forms.ValidationError( 'Total upload volume exceeds remaining quota', code='exceed_remaining_quota', ) return files def perform_action(self): """ Upload the files """ errors = ErrorList() for file in self.files.getlist('file_field'): try: utility.write_uploaded_file( file=file, overwrite=False, write_file_path=os.path.join(self.file_dir, file.name)) except FileExistsError: errors.append(format_html( 'Item named <i>{}</i> already exists', file.name)) except OSError: errors.append(format_html( 'Unable to upload <i>{}</i>', file.name)) return 'Your files have been uploaded', errors class CreateFolderForm(ActiveProjectFilesForm): """ Form for creating a new folder in a directory """ folder_name = forms.CharField(max_length=validators.MAX_FILENAME_LENGTH, required=False, validators=[validators.validate_filename]) def perform_action(self): """ Create the folder """ errors = ErrorList() name = self.cleaned_data['folder_name'] try: os.mkdir(os.path.join(self.file_dir, name)) except FileExistsError: errors.append(format_html( 'Item named <i>{}</i> already exists', name)) except OSError: errors.append(format_html( 'Unable to create <i>{}</i>', name)) return 'Your folder has been created', errors class EditItemsForm(ActiveProjectFilesForm): """ Abstract form for manipulating existing files/directories. """ items = forms.Field(required=False) def clean_items(self): items = self.data.getlist('items') for item in items: validators.validate_oldfilename(item) return items class DeleteItemsForm(EditItemsForm): """ Form for deleting existing files/directories. """ def perform_action(self): """ Delete the items """ errors = ErrorList() for item in self.cleaned_data['items']: path = os.path.join(self.file_dir, item) try: utility.remove_items([path], ignore_missing=False) except OSError as e: if not os.path.exists(path): errors.append(format_html( 'Item named <i>{}</i> did not exist', item)) else: errors.append(format_html( 'Unable to delete <i>{}</i>', os.path.relpath(e.filename or path, self.file_dir))) return 'Your items have been deleted', errors class RenameItemForm(EditItemsForm): """ Form for renaming an item in a directory """ new_name = forms.CharField(max_length=validators.MAX_FILENAME_LENGTH, required=False, validators=[validators.validate_filename]) def clean_items(self): items = super(RenameItemForm, self).clean_items() if len(items) != 1: raise forms.ValidationError('Must specify one item to rename') return items def perform_action(self): """ Rename the items """ errors = ErrorList() old_name = self.cleaned_data['items'][0] new_name = self.cleaned_data['new_name'] try: utility.rename_file(os.path.join(self.file_dir, old_name), os.path.join(self.file_dir, new_name)) except FileExistsError: errors.append(format_html( 'Item named <i>{}</i> already exists', new_name)) except FileNotFoundError: errors.append(format_html( 'Item named <i>{}</i> does not exist', old_name)) except OSError: errors.append(format_html( 'Unable to rename <i>{}</i> to <i>{}</i>', old_name, new_name)) return 'Your item has been renamed', errors class MoveItemsForm(EditItemsForm): """ Form for moving items into a target folder """ destination_folder = forms.Field(required=False, widget=forms.Select) def __init__(self, project, subdir=None, display_dirs=None, *args, **kwargs): """ Set the choices for the destination folder """ super(MoveItemsForm, self).__init__(project, *args, **kwargs) # The choices are only set here for get requests if subdir is not None: choices = [(d.name, d.name) for d in display_dirs] if subdir: choices.insert(0, ('../', '(Parent directory)')) self.fields['destination_folder'].widget.choices = choices def clean(self): """ Selected destination folder: - May only be '..' if subdir is not the top level - Must not be one of the items selected to be moved """ cleaned_data = super(MoveItemsForm, self).clean() destination_folder = cleaned_data['destination_folder'] selected_items = cleaned_data['items'] subdir = cleaned_data['subdir'] if subdir: validators.validate_filename_or_parent(destination_folder) else: validators.validate_filename(destination_folder) if destination_folder in selected_items: raise forms.ValidationError(format_html( 'Cannot move folder <i>{}</i> into itself', destination_folder)) self.dest_dir = os.path.join(self.file_dir, destination_folder) if not os.path.isdir(self.dest_dir): raise forms.ValidationError(format_html( 'Destination folder <i>{}</i> does not exist', destination_folder)) return cleaned_data def perform_action(self): """ Move the items into the selected directory """ errors = ErrorList() dest = self.cleaned_data['destination_folder'] for item in self.cleaned_data['items']: path = os.path.join(self.file_dir, item) try: utility.move_items([path], self.dest_dir) except FileExistsError: errors.append(format_html( 'Item named <i>{}</i> already exists in <i>{}</i>', item, dest)) except OSError: if not os.path.exists(path): errors.append(format_html( 'Item named <i>{}</i> does not exist', item)) else: errors.append(format_html( 'Unable to move <i>{}</i> into <i>{}</i>', item, dest)) return 'Your items have been moved', errors class CreateProjectForm(forms.ModelForm): """ For creating projects """ def __init__(self, user, *args, **kwargs): super().__init__(*args, **kwargs) self.user = user self.fields['resource_type'].label_from_instance = lambda obj: obj.name class Meta: model = ActiveProject fields = ('resource_type', 'title', 'abstract',) def save(self): project = super().save(commit=False) # Set the core project and slug core_project = CoreProject.objects.create() project.core_project = core_project slug = get_random_string(20) while exists_project_slug(slug): slug = get_random_string(20) project.slug = slug project.save() # Create the author object for the user author = Author.objects.create(project=project, user=self.user, display_order=1, corresponding_email=self.user.get_primary_email(), is_submitting=True, is_corresponding=True) author.import_profile_info() # Create file directory os.mkdir(project.file_root()) return project class NewProjectVersionForm(forms.ModelForm): """ For creating new project versions """ # Enforce non-blank version version = forms.CharField(max_length=15) def __init__(self, user, latest_project, previous_projects, *args, **kwargs): super().__init__(*args, **kwargs) self.user = user self.latest_project = latest_project self.previous_projects = previous_projects class Meta: model = ActiveProject fields = ('version',) def clean_version(self): data = self.cleaned_data['version'] if data in [p.version for p in self.previous_projects]: raise forms.ValidationError('Please specify a new unused version.') return data def save(self): project = super().save(commit=False) # Direct copy over fields for attr in [f.name for f in Metadata._meta.fields]: if attr not in ['slug', 'version', 'creation_datetime']: setattr(project, attr, getattr(self.latest_project, attr)) # Set new fields slug = get_random_string(20) while exists_project_slug(slug): slug = get_random_string(20) project.slug = slug project.creation_datetime = timezone.now() project.version_order = self.latest_project.version_order + 1 project.is_new_version = True project.save() # Copy over the author/affiliation objects for p_author in self.latest_project.authors.all(): author = Author.objects.create(project=project, user=p_author.user, display_order=p_author.display_order, is_submitting=p_author.is_submitting, is_corresponding=p_author.is_corresponding, corresponding_email=self.user.get_primary_email(),) for p_affiliation in p_author.affiliations.all(): Affiliation.objects.create(name=p_affiliation.name, author=author) # Other related objects for p_reference in self.latest_project.references.all(): reference = Reference.objects.create( description=p_reference.description, project=project) for p_publication in self.latest_project.publications.all(): publication = Publication.objects.create( citation=p_publication.citation, url=p_publication.url, project=project) for parent_project in self.latest_project.parent_projects.all(): project.parent_projects.add(parent_project) for p_topic in self.latest_project.topics.all(): topic = Topic.objects.create(project=project, description=p_topic.description) # Create file directory os.mkdir(project.file_root()) current_file_root = project.file_root() older_file_root = self.latest_project.file_root() for (directory, subdirs, files) in os.walk(older_file_root): rel_dir = os.path.relpath(directory, older_file_root) destination = os.path.join(current_file_root, rel_dir) for d in subdirs: try: os.mkdir(os.path.join(destination, d)) except FileExistsError: pass for f in files: # Skip linking files that are automatically generated # during publication. if (directory == older_file_root and f in ('SHA256SUMS.txt', 'LICENSE.txt')): continue try: os.link(os.path.join(directory, f), os.path.join(destination, f)) except FileExistsError: pass return project class ContentForm(forms.ModelForm): """ Form for editing the content of a project. Fields, labels, and help texts may be defined differently for different resource types. """ FIELDS = ( # 0: Database ('title', 'abstract', 'background', 'methods', 'content_description', 'usage_notes', 'release_notes', 'acknowledgements', 'conflicts_of_interest', ), # 1: Software ('title', 'abstract', 'background', 'content_description', 'methods', 'installation', 'usage_notes', 'release_notes', 'acknowledgements', 'conflicts_of_interest', ), # 2: Challenge ('title', 'abstract', 'background', 'methods', 'content_description', 'usage_notes', 'release_notes', 'acknowledgements', 'conflicts_of_interest', ), # 3: Model ('title', 'abstract', 'background', 'methods', 'content_description', 'installation', 'usage_notes', 'release_notes', 'acknowledgements', 'conflicts_of_interest', ), ) HELP_TEXTS = ( # 0: Database {'methods': '* The methodology employed for the study or research. Describe how the data was collected.', 'content_description': '* Describe the data, and how the files are named and structured.', 'usage_notes': '* How the data is to be used. List external documentation pages. List related software developed for the dataset, and any special software required to use the data.'}, # 1: Software {'content_description': '* Describe the software in this project.', 'methods': 'Details on the technical implementation. ie. the development process, and the underlying algorithms.', 'usage_notes': '* How the software is to be used. List some example function calls or specify the demo file(s).'}, # 2: Challenge {'background': '* An introduction to the challenge and a description of the objective/s.', 'methods': '* A timeline for the challenge and rules for participation.', 'content_description': '* A description of the challenge data and access details.', 'usage_notes': '* Scoring details, information on submitting an entry, and a link to a sample submission.'}, # 3: Model {'background': '* Introduce the model, providing context.', 'content_description': '* Describe the model and any supporting data and software.', 'installation': '* Instructions on how to set up a software environment for using the model.', 'usage_notes': '* Describe how you intend others to (re)use the model.', 'methods': 'Details on the technical implementation. ie. the development process, and the underlying algorithms.', 'usage_notes': '* How the software is to be used. List some example function calls or specify the demo file(s).'}, ) class Meta: model = ActiveProject # This includes fields for all resource types. fields = ('title', 'abstract', 'background', 'methods', 'content_description', 'installation', 'usage_notes', 'acknowledgements', 'conflicts_of_interest', 'release_notes',) help_texts = { 'title': '* The title of the resource.', 'abstract': '* A brief description of the resource and the context in which it was created.', 'background': '* The content or research background.', 'installation': '* Instructions on how to install the software, along with the required dependencies. Or specify the files in which they are listed.', 'acknowledgements': 'Thank the people who helped with the research but did not qualify for authorship. In addition, provide any funding information.', 'conflicts_of_interest': '* List whether any authors have a financial, commercial, legal, or professional relationship with other organizations, or with the people working with them, that could influence this research. State explicitly if there are none.', 'release_notes': 'Important notes about the current release, and changes from previous versions.' } def __init__(self, resource_type, editable=True, **kwargs): super(ContentForm, self).__init__(**kwargs) self.fields = OrderedDict((k, self.fields[k]) for k in self.FIELDS[resource_type]) for l in ActiveProject.LABELS[resource_type]: self.fields[l].label = ActiveProject.LABELS[resource_type][l] for h in self.__class__.HELP_TEXTS[resource_type]: self.fields[h].help_text = self.__class__.HELP_TEXTS[resource_type][h] if not editable: for f in self.fields.values(): f.disabled = True # We require new versions of a previously published project to # share the same title if self.instance and self.instance.is_new_version: self.fields['title'].disabled = True def clean_version(self): data = self.cleaned_data['version'] if data in [p.version for p in self.instance.core_project.publishedprojects.all()]: raise forms.ValidationError('Please specify a new unused version.') return data class DiscoveryForm(forms.ModelForm): """ Add discovery information to the project """ programming_languages = forms.ModelMultipleChoiceField( queryset=ProgrammingLanguage.objects.all().order_by('name'), widget=forms.SelectMultiple(attrs={'size':'10'}), help_text='The programming languages used. Hold ctrl to select multiple. If your language is not listed here, <a href=/about>contact us</a>.', required=False) parent_projects = forms.ModelMultipleChoiceField( queryset=PublishedProject.objects.all().order_by(Lower('title'), 'version_order'), widget=autocomplete.ModelSelect2Multiple(url='project-autocomplete'), help_text='The existing PhysioNet project(s) this resource was derived from. Hold ctrl to select multiple.', required=False) class Meta: model = ActiveProject fields = ('version', 'short_description', 'project_home_page', 'parent_projects', 'programming_languages') help_texts = { 'version': "* The version number of the resource. <a href=https://semver.org/ target=_blank>Semantic versioning</a> is encouraged. If unsure, put '1.0.0'.", 'short_description': '* A brief description (at most 250 characters) of the project. ' 'This should be one or two complete sentences, and describe the ' 'contents of the project to a reader who is generally ' 'knowledgeable about the subject but is not specifically familiar ' 'with your research.', 'project_home_page': 'External home page for the project.' } widgets = {'short_description':forms.Textarea(attrs={'rows':'4'})} def __init__(self, resource_type, editable=True, **kwargs): super().__init__(**kwargs) if resource_type != 1: del(self.fields['programming_languages']) if not editable: for f in self.fields.values(): f.disabled = True def clean_short_description(self): data = self.cleaned_data['short_description'] return ' '.join(data.split()) def save(self, *args, **kwargs): result = super().save(*args, **kwargs) self.instance.content_modified() return result class AffiliationFormSet(forms.BaseInlineFormSet): """ Formset for adding an author's affiliations """ form_name = 'affiliations' item_label = 'Affiliations' max_forms = 3 def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.max_forms = AffiliationFormSet.max_forms self.help_text = 'Institutions you are affiliated with. Maximum of {}.'.format(self.max_forms) def clean(self): """ - Check max forms due to POST refresh issue - validate unique_together values because generic relations don't automatically check). """ if any(self.errors): return if len(set([a.id for a in self.instance.affiliations.all()] + [f.instance.id for f in self.forms])) > self.max_forms: raise forms.ValidationError('Maximum number of allowed items exceeded.') names = [] for form in self.forms: # This is to allow empty unsaved form if 'name' in form.cleaned_data: name = form.cleaned_data['name'] if name in names: raise forms.ValidationError('Affiliation names must be unique.') names.append(name) class ReferenceFormSet(BaseGenericInlineFormSet): """ Formset for adding a ActiveProject's references """ form_name = 'project-reference-content_type-object_id' item_label = 'References' max_forms = 50 def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.max_forms = ReferenceFormSet.max_forms self.help_text = 'Numbered references specified in the metadata. Article citations must be in <a href=http://www.bibme.org/citation-guide/apa/ target=_blank>APA</a> format. Maximum of {}.'.format(self.max_forms) def clean(self): """ - Check max forms due to POST refresh issue - validate unique_together values because generic relations don't automatically check). """ if any(self.errors): return if len(set([r.id for r in self.instance.references.all()] + [f.instance.id for f in self.forms])) > self.max_forms: raise forms.ValidationError('Maximum number of allowed items exceeded.') descriptions = [] for form in self.forms: # This is to allow empty unsaved form if 'description' in form.cleaned_data: description = form.cleaned_data['description'] if description in descriptions: raise forms.ValidationError('References must be unique.') descriptions.append(description) class PublicationFormSet(BaseGenericInlineFormSet): """ Formset for adding a ActiveProject's publication """ form_name = 'project-publication-content_type-object_id' item_label = 'Publication' max_forms = 1 def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.max_forms = PublicationFormSet.max_forms self.help_text = ('The article publication to be cited, alongside this ' 'resource, in <a href=http://www.bibme.org/citation-guide/apa/ ' 'target=_blank>APA</a> format. If the article is in ' 'press, leave the URL blank and contact us to update ' 'it once it is available. Maximum of {}.').format(self.max_forms) def clean(self): """ - Check max forms due to POST refresh issue """ if any(self.errors): return if len(set([p.id for p in self.instance.publications.all()] + [f.instance.id for f in self.forms])) > self.max_forms: raise forms.ValidationError('Maximum number of allowed items exceeded.') class TopicFormSet(BaseGenericInlineFormSet): """ Formset for adding a ActiveProject's topics """ form_name = 'project-topic-content_type-object_id' item_label = 'Topics' max_forms = 20 def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.max_forms = TopicFormSet.max_forms self.help_text = 'Keyword topics associated with the project. Increases the visibility of your project. Maximum of {}.'.format(self.max_forms) class LanguageFormSet(BaseGenericInlineFormSet): """ Formset for adding a ActiveProject's programming languages """ form_name = 'project-programminglanguage-content_type-object_id' item_label = 'Programming Languages' max_forms = 10 def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.max_forms = LanguageFormSet.max_forms self.help_text = 'Programming languages used in this software. Maximum of {}.'.format(self.max_forms) def clean(self): """ - Check max forms due to POST refresh issue - validate unique_together values because generic relations don't automatically check). """ if any(self.errors): return if len(set([r.id for r in self.instance.languages.all()] + [f.instance.id for f in self.forms])) > self.max_forms: raise forms.ValidationError('Maximum number of allowed items exceeded.') names = [] for form in self.forms: # This is to allow empty unsaved form if 'name' in form.cleaned_data: name = form.cleaned_data['name'] if name in names: raise forms.ValidationError('Languages must be unique.') names.append(name) class AccessMetadataForm(forms.ModelForm): """ For editing project access metadata """ class Meta: model = ActiveProject fields = ('access_policy', 'license') help_texts = {'access_policy': '* Access policy for files.', 'license': "* License for usage. <a href='/about/publish/#licenses' target='_blank'>View available.</a>"} def __init__(self, editable=True, **kwargs): """ Control the available access policies based on the existing licenses. The license queryset is set in the following `set_license_queryset` function. Each license has one access policy, and potentially multiple resource types. """ super().__init__(**kwargs) # Get licenses for this resource type licenses = License.objects.filter( resource_types__icontains=str(self.instance.resource_type.id)) # Set allowed access policies based on license policies available_policies = [a for a in range(len(Metadata.ACCESS_POLICIES)) if licenses.filter(access_policy=a)] self.fields['access_policy'].choices = tuple(Metadata.ACCESS_POLICIES[p] for p in available_policies) if not editable: for f in self.fields.values(): f.disabled = True def set_license_queryset(self, access_policy): """ Set the license queryset according to the set or selected access policy. """ self.fields['license'].queryset = License.objects.filter( resource_types__icontains=str(self.instance.resource_type.id), access_policy=access_policy) def clean(self): """ Ensure valid license access policy combinations """ data = super().clean() if (str(self.instance.resource_type.id) in data['license'].resource_types and data['access_policy'] == data['license'].access_policy): return data raise forms.ValidationError('Invalid policy license combination.') class AuthorCommentsForm(forms.Form): author_comments = forms.CharField(max_length=12000, required=False, label='Comments for editor (optional)', widget=forms.Textarea()) class InviteAuthorForm(forms.ModelForm): """ Form to invite new authors to a project. Field to fill in: email. """ def __init__(self, project, inviter, *args, **kwargs): super(InviteAuthorForm, self).__init__(*args, **kwargs) self.project = project self.inviter = inviter class Meta: model = AuthorInvitation fields = ('email',) def clean_email(self): "Ensure it is a fresh invite to a non-author" data = self.cleaned_data['email'].lower() for author in self.project.authors.all(): if data in author.user.get_emails(): raise forms.ValidationError( 'The user is already an author of this project', code='already_author') invitations = self.project.authorinvitations.filter(is_active=True) if data in [i.email for i in invitations]: raise forms.ValidationError( 'There is already an outstanding invitation to that email', code='already_invited') return data def save(self): invitation = super(InviteAuthorForm, self).save(commit=False) invitation.project = self.project invitation.inviter = self.inviter invitation.expiration_date = (timezone.now().date() + timezone.timedelta(days=21)) invitation.save() return invitation class StorageRequestForm(forms.ModelForm): """ Making a request for storage capacity for a project. Request allowance is in GB """ class Meta: model = StorageRequest # Storage request allowance in GB fields = ('request_allowance',) widgets = {'request_allowance': forms.NumberInput()} labels = {'request_allowance': 'Request allowance (GB)'} def __init__(self, project, *args, **kwargs): super(StorageRequestForm, self).__init__(*args, **kwargs) self.project = project def clean_request_allowance(self): """ Storage size must be reasonable """ data = self.cleaned_data['request_allowance'] # Comparing GB form field to bytes model field if data * 1024 ** 3 <= self.project.core_project.storage_allowance: raise forms.ValidationError('Project already has the requested allowance.', code='already_has_allowance') return data def clean(self): """ Must not have outstanding storage request """ cleaned_data = super().clean() if self.project.storagerequests.filter(is_active=True): raise forms.ValidationError( 'This project already has an outstanding storage request.') return cleaned_data class InvitationResponseForm(forms.ModelForm): """ For responding to an author invitation """ class Meta: model = AuthorInvitation fields = ('response',) widgets = {'response': forms.Select(choices=INVITATION_CHOICES)} def clean(self): """ Invitation must be active, user must be invited """ cleaned_data = super().clean() if not self.instance.is_active: raise forms.ValidationError('Invalid invitation.') if self.instance.email not in self.user.get_emails(): raise forms.ValidationError( 'You are not invited.') return cleaned_data class AnonymousAccessLoginForm(forms.ModelForm): """ Login for anonymous users """ class Meta: model = AnonymousAccess fields = ('passphrase',) widgets = { 'passphrase':forms.PasswordInput(attrs={'class': 'form-control', 'placeholder': 'Passphrase', 'label': 'Passphrase'}), } class DataAccessRequestForm(forms.ModelForm): class Meta: model = DataAccessRequest fields = ('data_use_title', 'data_use_purpose', 'agree_dua') help_texts = { 'data_use_title': """Title of the project you would like to use the data for""", 'data_use_purpose': """Detailed description of the data use.""", } labels = { 'data_use_title': 'Research Project Title', 'data_use_purpose': 'Research Project Details' } agree_dua = forms.BooleanField(required=True) def inline_fields(self): return [f for f in self.visible_fields() if f.field != self.fields['agree_dua']] def save(self): proj_request = super().save(commit=False) proj_request.project = self.project proj_request.requester = self.requester proj_request.save() return proj_request def __init__(self, project, requester, template, *args, **kwargs): kwargs.update(initial={ 'data_use_purpose': template }) super().__init__(*args, **kwargs) self.project = project self.requester = requester class DataAccessResponseForm(forms.ModelForm): class Meta: model = DataAccessRequest fields = ('status', 'responder_comments') help_texts = { 'responder_comments': """Brief justification in case of rejection or comment for the requester""", } widgets = { 'responder_comments': forms.Textarea(attrs={'rows': 3}), 'status': forms.Select(choices=DataAccessRequest.REJECT_ACCEPT) } labels = { 'status': 'Decision', 'responder_comments': 'Comment or Justification' } def save(self): r = super().save(commit=False) r.decision_datetime = timezone.now() r.responder_id = self.responder_id r.save() return r def __init__(self, responder_id, *args, **kwargs): super().__init__(*args, **kwargs) self.responder_id = responder_id class InviteDataAccessReviewerForm(forms.ModelForm): reviewer = forms.CharField(widget=forms.TextInput( attrs={'class': 'form-control'}), required=True, label='Physionet Username') class Meta: model = DataAccessRequestReviewer fields = ('reviewer',) def __init__(self, project, *args, **kwargs): super(InviteDataAccessReviewerForm, self).__init__(*args, **kwargs) self.project = project def clean_reviewer(self): reviewer_uname = self.cleaned_data['reviewer'] try: reviewer = User.objects.get(username=reviewer_uname) if self.project.can_approve_requests(reviewer): raise forms.ValidationError( f'User {reviewer_uname} is already allowed to review requests!') except User.DoesNotExist: raise forms.ValidationError( f'No user {reviewer_uname} found!', code='user_not_found') return reviewer def save(self): if self.errors: return reviewer = self.cleaned_data['reviewer'] invitation = DataAccessRequestReviewer() if DataAccessRequestReviewer.objects.filter(reviewer=reviewer, project=self.project).exists(): # updating existing row in case a revoked user gets readded again invitation = DataAccessRequestReviewer.objects.get( reviewer=reviewer, project=self.project) else: invitation.reviewer = reviewer invitation.project = self.project invitation.is_revoked = False invitation.added_date = timezone.now() invitation.save() return invitation <file_sep>{% extends "base.html" %} {% load static %} {% block title %}View Data Access Request{% endblock %} {% block content %} <div class="container col-md-8"> <h1>Data Access Request</h1> <form action="" method="post"> {% csrf_token %} <div class="modal-body"> <p> The user <a href="{% url 'public_profile' da_request.requester.username %}"> {{ da_request.requester.profile.first_names }} {{ da_request.requester.profile.lastname }}</a> requested access to {{ da_request.project.title }} on {{ da_request.request_datetime|date }}. </p> <p> {% if credentialing_data %} <div> <p> Credentialing Application Date: {{ credentialing_data.application_datetime|date }} </p> <p> Organization: {{ credentialing_data.organization_name }} </p> <p> Location: {{ credentialing_data.city }} {{ credentialing_data.country }} </p> <p>Job Title: {{ credentialing_data.job_title }} </p> {% if credentialing_data.webpage %} <p><a href="{{ credentialing_data.webpage }}">Webpage</a> </p> {% endif %} </div> {% elif legacy_credentialing_data %} <div> <p>Country: {{ legacy_credentialing_data.country }}</p> <p>MIMIC Approval Date: {{ legacy_credentialing_data.mimic_approval_date }}</p> </div> {% else %} {# should not happen #} No credentialing information found for this user. {% endif %} </p> <p> The purpose of the data use was stated as follows: </p> <div class="alert alert-secondary"> <h4>{{ da_request.data_use_title }}</h4> <div style="height: 300px; overflow: scroll"> {{ da_request.data_use_purpose | safe }} </div> </div> {% if da_request.is_pending %} {{ response_form.media }} {% include "descriptive_inline_form_snippet.html" with form=response_form %} <button class="btn btn-primary" name="data_access_response" type="button" data-toggle="modal" data-target="#check-modal" onclick="setCheckButtonText('{{ response_form.status.auto_id }}');"> <i class="fa fa-reply"></i> Submit Decision </button> {% elif da_request.is_accepted or da_request.is_rejected %} {{ da_request.responder }} decided {{ da_request.decision_datetime|date }} to {% if da_request.is_accepted %} accept{% else %}not grant{% endif %} this request. {% if da_request.responder_comments %} The response was: <hr/> <p> {{ da_request.responder_comments|safe }} </p> <hr/> {% endif %} {% elif da_request.is_withdrawn %} The requester withdrew the request on the {{ da_request.decision_datetime|date }} {% endif %} <div class="modal fade" id="check-modal" tabindex="-1" role="dialog" aria-labelledby="check-modal" aria-hidden="true"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title">Are you sure?</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">&times;</span> </button> </div> <div class="modal-footer"> <button id="check-button-submit" class="btn btn-danger" name="data_access_response" value="{{ da_request.id }}" type="submit">Yes </button> <button type="button" class="btn btn-secondary" data-dismiss="modal">No </button> </div> </div> </div> </div> <script type="application/javascript"> function setCheckButtonText(selector_id) { var selector = document.querySelector("#" + selector_id); var buttonText = "Yes, " + selector.options[selector .selectedIndex] .text; document.querySelector('#check-button-submit').innerHTML = buttonText; } </script> </form> <hr/> {% include "project/data_access_request_table_snippet.html" %} <a href="{% url 'data_access_requests_overview' da_request.project.slug da_request.project.version %}">Requests overview</a> </div> {% endblock %} {% block local_js_bottom %} <script src="{% static 'custom/js/enable-tooltip.js' %}"></script> <script src="{% static 'custom/js/resize-ck.js' %}"></script> {% endblock %} <file_sep># Example .env file for testing SECRET_KEY=secret ALLOWED_HOSTS=[] # System maintenance mode #SYSTEM_MAINTENANCE_NO_CHANGES=1 #SYSTEM_MAINTENANCE_NO_UPLOAD=1 #SYSTEM_MAINTENANCE_MESSAGE=PhysioNet is undergoing maintenance, and projects cannot be edited. The site will be back online at 16:00 GMT. # Credentialing PAUSE_CREDENTIALING=0 PAUSE_CREDENTIALING_MESSAGE=PhysioNet will not be taking new applications for credentialed access until 4 January 2021. We apologize for the inconvenience. # GCP # USED to store ALL the published projects to GCP Buckets and BigQuery # The delegation email, might be possible to change in the: # - GCP console -> IAM & Admin -> Identity & Organization # The Secret, can be changed under the: # - GCP console -> API & Services -> Credentials # Changing this incorrectly will cause that nothing will be sent to GCP GOOGLE_APPLICATION_CREDENTIALS=json GCP_DELEGATION_EMAIL=email GCP_SECRET_KEY=secret # AWS # Used to provide MIMIC through AWS, this will include S3, Redshift, Spark # Key and key2 are predefined by AWS, can be changed but IT WILL BREAK ALL # Value and Value2 can be changed in the AWS console under cloud formation. # IF the value is CHANGED, this will ALSO change the cloud formation URL. AWS_KEY=secret AWS_KEY2=secret AWS_VALUE=secret AWS_VALUE2=secret AWS_CLOUD_FORMATION=url # Datacite # Used to assign the DOIs # Changing the password can be done at the settings tab in DataCite website # - https://doi.datacite.org/ (For live) # - https://doi.test.datacite.org/ (For testing) # The API uses a base64 encoded string of USERNAME:PASSWORD # # IF the password is change renew the key of the changed password # The "DATACITE_TEST_PREFIX" is left empty to skip tests DATACITE_PREFIX=DOI prefix DATACITE_USER=SECRET DATACITE_PASS=<PASSWORD> DATACITE_TEST_PREFIX= DATACITE_TEST_USER=SECRET DATACITE_TEST_PASS=<PASSWORD> # Orcid information # These variables are required to request / exchange a token from ORCID in a effort to get a users ORCID iD, etc. # The _TEST_ variables are used by base.py while the variables without _TEST_ are used by staging.py and production.py. # For more details on setting the values for these variables and using the ORCID API please see the README file # on Github under the deploy folder in the physionet build repository. ORCID_CLIENT_ID=SECRET ORCID_CLIENT_SECRET=SECRET ORCID_SCOPE='/read-limited,/activities/update' ORCID_TEST_CLIENT_ID=SECRET ORCID_TEST_CLIENT_SECRET=SECRET ORCID_TEST_SCOPE='/authenticate' <file_sep>import re import pdb from django import forms from django.utils import timezone from django.core.validators import validate_integer, validate_email, URLValidator from google.cloud import storage from django.db import transaction from django.conf import settings from dal import autocomplete from notification.models import News from project.models import (ActiveProject, EditLog, CopyeditLog, Contact, PublishedProject, exists_project_slug, DataAccess, PublishedAffiliation, PublishedAuthor) from project.validators import validate_slug, MAX_PROJECT_SLUG_LENGTH, validate_doi from user.models import User, CredentialApplication, CredentialReview from console.utility import generate_doi_payload, register_doi RESPONSE_CHOICES = ( (1, 'Accept'), (0, 'Reject') ) SUBMISSION_RESPONSE_CHOICES = ( ('', '-----------'), (2, 'Accept'), (1, 'Resubmit with revisions'), (0, 'Reject'), ) REVIEW_RESPONSE_CHOICES = ( (1, 'Pass to Next Stage'), (0, 'Reject'), ) YES_NO = ( ('', '-----------'), (1, 'Yes'), (0, 'No') ) # See also RESPONSE_LABEL in project/models.py YES_NO_UNDETERMINED = ( ('', '-----------'), (1, 'Yes'), (0, 'No'), (None, 'Undetermined') ) YES_NO_UNDETERMINED_REVIEW = ( (1, 'Yes'), (0, 'No'), (None, 'Undetermined') ) YES_NO_NA_UNDETERMINED = ( (1, 'Yes'), (0, 'No'), (None, 'N/A or Undetermined') ) class AssignEditorForm(forms.Form): """ Assign an editor to a project under submission """ project = forms.IntegerField(widget = forms.HiddenInput()) editor = forms.ModelChoiceField(queryset=User.objects.filter( is_admin=True)) def clean_project(self): pid = self.cleaned_data['project'] validate_integer(pid) if ActiveProject.objects.get(id=pid) not in ActiveProject.objects.filter(submission_status=10): raise forms.ValidationError('Incorrect project selected.') return pid class ReassignEditorForm(forms.Form): """ Assign an editor to a project under submission """ editor = forms.ModelChoiceField(queryset=User.objects.filter( is_admin=True), widget=forms.Select(attrs={'onchange': 'set_editor_text()'})) def __init__(self, user, *args, **kwargs): """ Set the appropriate queryset """ super().__init__(*args, **kwargs) self.fields['editor'].queryset = self.fields['editor'].queryset.exclude( username=user.username) class EditSubmissionForm(forms.ModelForm): """ For an editor to make a decision regarding a submission. Fields are specified for each resource type The labels are stored in the model because it requires them to render results without using this form """ class Meta: # Populated with fields and labels for both data and software # fields. The __init__ function removes unnecessary fields and # renames fields model = EditLog fields = ('soundly_produced', 'well_described', 'open_format', 'data_machine_readable', 'reusable', 'no_phi', 'pn_suitable', 'editor_comments', 'auto_doi', 'decision') labels = EditLog.COMMON_LABELS auto_doi = forms.BooleanField(required=False, initial=True) widgets = { 'soundly_produced': forms.Select(choices=YES_NO_UNDETERMINED), 'well_described': forms.Select(choices=YES_NO_UNDETERMINED), 'open_format': forms.Select(choices=YES_NO_UNDETERMINED), 'data_machine_readable': forms.Select(choices=YES_NO_UNDETERMINED), 'reusable': forms.Select(choices=YES_NO_UNDETERMINED), 'no_phi': forms.Select(choices=YES_NO_UNDETERMINED), 'pn_suitable': forms.Select(choices=YES_NO_UNDETERMINED), 'editor_comments': forms.Textarea(), 'decision': forms.Select(choices=SUBMISSION_RESPONSE_CHOICES), 'auto_doi': forms.HiddenInput() } def __init__(self, resource_type, *args, **kwargs): """ Set the appropriate fields/labels for the given resource type, and make them required. Remove irrelevant fields. """ super().__init__(*args, **kwargs) self.resource_type = resource_type self.fields['auto_doi'].disabled = True if not settings.DATACITE_PREFIX: self.initial['auto_doi'] = False # This will be used in clean self.quality_assurance_fields = EditLog.QUALITY_ASSURANCE_FIELDS[resource_type.id] rm_fields = set(self.base_fields) - set(self.quality_assurance_fields) - set(EditLog.EDITOR_FIELDS) for f in rm_fields: del(self.fields[f]) for (f, lbl) in EditLog.LABELS[resource_type.id].items(): hints = EditLog.HINTS.get(f) if hints: lbl += '<ul><li>' + '</li><li>'.join(hints) + '</li></ul>' self.fields[f].label = lbl # Enforce the requirement of quality assurance fields for f in self.quality_assurance_fields: self.fields[f].required = True def clean(self): """ May not accept if the quality assurance fields are not all True """ if self.errors: return if self.cleaned_data['decision'] == 2: for field in self.quality_assurance_fields: if not self.cleaned_data[field]: raise forms.ValidationError( 'The quality assurance fields must all pass before you accept the project') def save(self): """ Process the editor decision """ with transaction.atomic(): edit_log = super().save(commit=False) project = edit_log.project now = timezone.now() # This object has to be saved first before calling reject, which # edits the related EditLog objects (this). edit_log.decision_datetime = now edit_log.save() # Reject if edit_log.decision == 0: project.reject() # Have to reload this object which is changed by the reject # function edit_log = EditLog.objects.get(id=edit_log.id) # Resubmit with revisions elif edit_log.decision == 1: project.submission_status = 30 project.revision_request_datetime = now project.latest_reminder = now project.save() # Accept else: project.submission_status = 40 project.editor_accept_datetime = now project.latest_reminder = now CopyeditLog.objects.create(project=project) project.save() if self.cleaned_data['auto_doi']: # register draft DOIs if not project.doi: payload = generate_doi_payload(project, event="draft") register_doi(payload, project) if not project.core_project.doi: payload = generate_doi_payload(project, event="draft", core_project=True) register_doi(payload, project.core_project) return edit_log class CopyeditForm(forms.ModelForm): """ Submit form to complete copyedit """ class Meta: model = CopyeditLog fields = ('made_changes', 'changelog_summary') widgets = { 'made_changes':forms.Select(choices=YES_NO), 'changelog_summary':forms.Textarea() } def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.fields['made_changes'].required = True def clean(self): if self.errors: return if self.cleaned_data['made_changes'] and not self.cleaned_data['changelog_summary']: raise forms.ValidationError('Describe the changes you made.') if not self.cleaned_data['made_changes'] and self.cleaned_data['changelog_summary']: raise forms.ValidationError('If you describe changes, you must state that changes were made.') def save(self): """ Complete the copyedit """ with transaction.atomic(): copyedit_log = super().save(commit=False) project = copyedit_log.project now = timezone.now() copyedit_log.complete_datetime = now project.submission_status = 50 project.copyedit_completion_datetime = now project.latest_reminder = now copyedit_log.save() project.save() project.create_license_file() return copyedit_log class PublishForm(forms.Form): """ Form for publishing a project """ slug = forms.CharField(max_length=MAX_PROJECT_SLUG_LENGTH, validators=[validate_slug]) make_zip = forms.ChoiceField(choices=YES_NO, label='Make zip of all files') def __init__(self, project, *args, **kwargs): super().__init__(*args, **kwargs) self.project = project # No option to set slug if publishing new version if self.project.version_order: del(self.fields['slug']) else: self.fields['slug'].initial = project.slug def clean_slug(self): """ Ensure that the slug is valid and not taken. """ data = self.cleaned_data['slug'] if data != self.project.slug: if exists_project_slug(data): raise forms.ValidationError('The slug is already taken by another project.') return data class TopicForm(forms.Form): """ Form to set tags for a published project """ topics = forms.CharField(required=False, max_length=800, label='Comma delimited topics') def __init__(self, project, *args, **kwargs): super().__init__(*args, **kwargs) self.project = project def set_initial(self): """ Set the initial topics char field from the project's existing topics. """ self.fields['topics'].initial = ','.join( t.description for t in self.project.topics.all()) def clean_topics(self): data = self.cleaned_data['topics'] # It is allowed to be blank, but not have multiple items # that include a blank if data == '': return data topics = [x.strip() for x in data.split(',')] if len(topics) != len(set(topics)): raise forms.ValidationError('Topics must be unique') for t in topics: if not re.fullmatch(r'[\w][\w\ -]*', t): raise forms.ValidationError('Each topic must contain letters, ' 'numbers, spaces, underscores, and hyphens only, and ' 'begin with a letter or number.') self.topic_descriptions = [t.lower() for t in topics] return data class DeprecateFilesForm(forms.Form): """ For deprecating a project's files """ delete_files = forms.ChoiceField(choices=YES_NO) class ContactCredentialRefForm(forms.Form): """ Contact the reference for a credentialing application. """ subject = forms.CharField(required=True) body = forms.CharField(widget=forms.Textarea) class ProcessCredentialForm(forms.ModelForm): """ Form to respond to a credential application """ class Meta: model = CredentialApplication fields = ('responder_comments', 'status') labels = { 'responder_comments':'Comments (required for rejected applications). This will be sent to the applicant.', 'status':'Decision', } # widgets = { # 'responder_comments': forms.Textarea(attrs={'rows': 5}), # } def __init__(self, responder, *args, **kwargs): super().__init__(*args, **kwargs) self.responder = responder self.fields['status'].choices = CredentialApplication.REJECT_ACCEPT_WITHDRAW[:3] def clean(self): if self.errors: return if self.cleaned_data['status'] == 1 and not self.cleaned_data['responder_comments']: raise forms.ValidationError('If you reject, you must explain why.') def save(self): application = super().save() if application.status == 1: application.reject(self.responder) elif application.status == 2: application.accept(self.responder) elif application.status == 3: application.withdraw(self.responder) else: raise forms.ValidationError('Application status not valid.') return application class ProcessCredentialReviewForm(forms.ModelForm): """ Form to respond to a credential application review """ class Meta: model = CredentialApplication fields = ('responder_comments', 'status') labels = { 'responder_comments':'Comments (required for rejected applications). This will be sent to the applicant.', 'status':'Decision', } widgets = { 'responder_comments': forms.Textarea(attrs={'rows': 5}), } def __init__(self, responder, *args, **kwargs): super().__init__(*args, **kwargs) self.responder = responder self.fields['status'].choices = CredentialApplication.REJECT_ACCEPT_WITHDRAW[:3] def clean(self): if self.errors: return if self.cleaned_data['status'] == 1 and not self.cleaned_data['responder_comments']: raise forms.ValidationError('If you reject, you must explain why.') def save(self): application = super().save() if application.status == 1: application.reject(self.responder) elif application.status == 2: application.accept(self.responder) elif application.status == 3: application.withdraw(self.responder) else: raise forms.ValidationError('Application status not valid.') return application class InitialCredentialForm(forms.ModelForm): """ Form to respond to a credential application in the initial review stage """ decision = forms.ChoiceField(choices=REVIEW_RESPONSE_CHOICES, widget=forms.RadioSelect) class Meta: model = CredentialReview fields = ('fields_complete', 'appears_correct', 'lang_understandable', 'responder_comments', 'decision') labels = { 'fields_complete': 'Are all of the required fields complete?', 'appears_correct': 'Does the application clearly avoid frivolous text such as "aa"?', 'lang_understandable': 'Is any non-English text (e.g. job titles) easily translated?', 'responder_comments': 'Comments (required for rejected applications). This will be sent to the applicant.', 'decision': 'Decision', } widgets = { 'fields_complete': forms.RadioSelect(choices=YES_NO_UNDETERMINED_REVIEW), 'appears_correct': forms.RadioSelect(choices=YES_NO_UNDETERMINED_REVIEW), 'lang_understandable': forms.RadioSelect(choices=YES_NO_UNDETERMINED_REVIEW), 'responder_comments': forms.Textarea(attrs={'rows': 5}), 'decision': forms.RadioSelect(choices=REVIEW_RESPONSE_CHOICES) } def __init__(self, responder, *args, **kwargs): super().__init__(*args, **kwargs) # This will be used in clean self.quality_assurance_fields = ('fields_complete', 'appears_correct', 'lang_understandable') self.responder = responder self.fields['decision'].choices = REVIEW_RESPONSE_CHOICES def clean(self): if self.errors: return if self.cleaned_data['decision'] == '1': for field in self.quality_assurance_fields: if not self.cleaned_data[field]: raise forms.ValidationError( 'The quality assurance fields must all pass ' 'before you approve the application') if self.cleaned_data['decision'] == '0' and not self.cleaned_data['responder_comments']: raise forms.ValidationError('If you reject, you must explain why.') def save(self): application = super().save() if self.cleaned_data['decision'] == '0': application.reject(self.responder) elif self.cleaned_data['decision'] == '1': application.update_review_status(20) else: raise forms.ValidationError('Application status not valid.') return application class TrainingCredentialForm(forms.ModelForm): """ Form to respond to a credential application in the training check stage """ decision = forms.ChoiceField(choices=REVIEW_RESPONSE_CHOICES, widget=forms.RadioSelect) class Meta: model = CredentialReview fields = ('citi_report_attached', 'training_current', 'training_all_modules', 'training_privacy_complete', 'training_name_match', 'responder_comments', 'decision') labels = { 'citi_report_attached': 'Is the CITI Completion Report attached?', 'training_current': 'Is the report up to date (i.e. not expired)?', 'training_all_modules': 'Are all of the required modules complete?', 'training_privacy_complete': 'Has the "Research and HIPAA Privacy Protections" module been completed?', 'training_name_match': 'Does the name on the training form match the name listed in the user profile?', 'responder_comments': 'Comments (required for rejected applications). This will be sent to the applicant.', 'decision': 'Decision', } widgets = { 'citi_report_attached': forms.RadioSelect(choices=YES_NO_UNDETERMINED_REVIEW), 'training_current': forms.RadioSelect(choices=YES_NO_UNDETERMINED_REVIEW), 'training_all_modules': forms.RadioSelect(choices=YES_NO_UNDETERMINED_REVIEW), 'training_privacy_complete': forms.RadioSelect(choices=YES_NO_UNDETERMINED_REVIEW), 'training_name_match': forms.RadioSelect(choices=YES_NO_UNDETERMINED_REVIEW), 'responder_comments': forms.Textarea(attrs={'rows': 5}), 'decision': forms.RadioSelect(choices=REVIEW_RESPONSE_CHOICES) } def __init__(self, responder, *args, **kwargs): super().__init__(*args, **kwargs) # This will be used in clean self.quality_assurance_fields = ('citi_report_attached', 'training_current', 'training_all_modules', 'training_privacy_complete', 'training_name_match') self.responder = responder self.fields['decision'].choices = REVIEW_RESPONSE_CHOICES def clean(self): if self.errors: return if self.cleaned_data['decision'] == '1': for field in self.quality_assurance_fields: if not self.cleaned_data[field]: raise forms.ValidationError( 'The quality assurance fields must all pass ' 'before you approve the application') if self.cleaned_data['decision'] == '0' and not self.cleaned_data['responder_comments']: raise forms.ValidationError('If you reject, you must explain why.') def save(self): application = super().save() if self.cleaned_data['decision'] == '0': application.reject(self.responder) elif self.cleaned_data['decision'] == '1': application.update_review_status(30) else: raise forms.ValidationError('Application status not valid.') return application class PersonalCredentialForm(forms.ModelForm): """ Form to respond to a credential application in the ID check stage """ decision = forms.ChoiceField(choices=REVIEW_RESPONSE_CHOICES, widget=forms.RadioSelect) class Meta: model = CredentialReview fields = ('user_searchable', 'user_has_papers', 'research_summary_clear', 'course_name_provided', 'user_understands_privacy', 'user_org_known', 'user_details_consistent', 'responder_comments', 'decision') labels = { 'user_searchable': 'Do you find search results for the applicant\'s name (possibly include their organization in the search query)?', 'user_has_papers': 'Can you find publications linked to the applicant (possibly include the reference in the search query)?', 'research_summary_clear': 'Is the research summary sufficiently descriptive?', 'course_name_provided': 'If applicable, does the research summary include course name and number?', 'user_understands_privacy': 'Does the research summary indicate an understanding that data must not be shared (e.g. no plural pronouns such as "we", "us", etc.)?', 'user_org_known': 'Does the organization have a website or other online presence (*not* "MIT Affiliates")?', 'user_details_consistent': 'Is the information consistent (independent researcher should not list an organization, obvious students should be listed as either "student" or "postdoc", MD\'s with a hospital as their organization should be "hospital researcher", the county and state mismatches, etc.)?', 'responder_comments': 'Comments (required for rejected applications). This will be sent to the applicant.', 'decision': 'Decision', } widgets = { 'user_searchable': forms.RadioSelect(choices=YES_NO_NA_UNDETERMINED), 'user_has_papers': forms.RadioSelect(choices=YES_NO_NA_UNDETERMINED), 'research_summary_clear': forms.RadioSelect(choices=YES_NO_UNDETERMINED_REVIEW), 'course_name_provided': forms.RadioSelect(choices=YES_NO_NA_UNDETERMINED), 'user_understands_privacy': forms.RadioSelect(choices=YES_NO_UNDETERMINED_REVIEW), 'user_org_known': forms.RadioSelect(choices=YES_NO_UNDETERMINED_REVIEW), 'user_details_consistent': forms.RadioSelect(choices=YES_NO_UNDETERMINED_REVIEW), 'responder_comments': forms.Textarea(attrs={'rows': 5}), 'decision': forms.RadioSelect(choices=REVIEW_RESPONSE_CHOICES) } def __init__(self, responder, *args, **kwargs): super().__init__(*args, **kwargs) # This will be used in clean self.quality_assurance_fields = ('research_summary_clear', 'user_understands_privacy', 'user_org_known', 'user_details_consistent') self.categorical_fields = ('user_searchable', 'user_has_papers', 'course_name_provided') self.responder = responder self.fields['decision'].choices = REVIEW_RESPONSE_CHOICES def clean(self): if self.errors: return if self.cleaned_data['decision'] == '1': for field in self.quality_assurance_fields: if not self.cleaned_data[field]: raise forms.ValidationError( 'The quality assurance fields must all pass ' 'before you approve the application') for field in self.categorical_fields: if self.cleaned_data[field] is False: raise forms.ValidationError( 'The quality assurance fields must all pass ' 'before you approve the application') if self.cleaned_data['decision'] == '0' and not self.cleaned_data['responder_comments']: raise forms.ValidationError('If you reject, you must explain why.') def save(self): application = super().save() if self.cleaned_data['decision'] == '0': application.reject(self.responder) elif self.cleaned_data['decision'] == '1': application.update_review_status(40) else: raise forms.ValidationError('Application status not valid.') return application class ReferenceCredentialForm(forms.ModelForm): """ Form to respond to a credential application in the reference check stage """ decision = forms.ChoiceField(choices=REVIEW_RESPONSE_CHOICES, widget=forms.RadioSelect) class Meta: model = CredentialReview fields = ('ref_appropriate', 'ref_searchable', 'ref_has_papers', 'ref_is_supervisor', 'ref_course_list', 'responder_comments', 'decision') labels = { 'ref_appropriate': 'Is the reference appropriate?', 'ref_searchable': 'Is the reference easily searchable?', 'ref_has_papers': 'Can you find publications linked to the reference?', 'ref_is_supervisor': 'If applicable (for students and postdocs only), is the reference in a supervisory position?', 'ref_course_list': 'If applicable (for students and postdocs only), is the applicant included in a list of course participants?', 'responder_comments': 'Comments (required for rejected applications). This will be sent to the applicant.', 'decision': 'Decision', } widgets = { 'ref_appropriate': forms.RadioSelect(choices=YES_NO_UNDETERMINED_REVIEW), 'ref_searchable': forms.RadioSelect(choices=YES_NO_NA_UNDETERMINED), 'ref_has_papers': forms.RadioSelect(choices=YES_NO_NA_UNDETERMINED), 'ref_is_supervisor': forms.RadioSelect(choices=YES_NO_NA_UNDETERMINED), 'ref_course_list': forms.RadioSelect(choices=YES_NO_NA_UNDETERMINED), 'responder_comments': forms.Textarea(attrs={'rows': 5}), 'decision': forms.RadioSelect(choices=REVIEW_RESPONSE_CHOICES) } def __init__(self, responder, *args, **kwargs): super().__init__(*args, **kwargs) # This will be used in clean self.quality_assurance_fields = ('ref_appropriate',) self.categorical_fields = ('ref_searchable', 'ref_has_papers', 'ref_is_supervisor', 'ref_course_list') self.responder = responder self.fields['decision'].choices = REVIEW_RESPONSE_CHOICES def clean(self): if self.errors: return if self.cleaned_data['decision'] == '1': for field in self.quality_assurance_fields: if not self.cleaned_data[field]: raise forms.ValidationError( 'The quality assurance fields must all pass ' 'before you approve the application') for field in self.categorical_fields: if self.cleaned_data[field] is False: raise forms.ValidationError( 'The quality assurance fields must all pass ' 'before you approve the application') if self.cleaned_data['decision'] == '0' and not self.cleaned_data['responder_comments']: raise forms.ValidationError('If you reject, you must explain why.') def save(self): application = super().save() if self.cleaned_data['decision'] == '0': application.reject(self.responder) elif self.cleaned_data['decision'] == '1': application.update_review_status(50) else: raise forms.ValidationError('Application status not valid.') return application class ResponseCredentialForm(forms.ModelForm): """ Form to respond to a credential application in the reference response check stage """ decision = forms.ChoiceField(choices=REVIEW_RESPONSE_CHOICES, widget=forms.RadioSelect) class Meta: model = CredentialReview fields = ('ref_knows_applicant', 'ref_approves', 'ref_understands_privacy', 'responder_comments', 'decision') labels = { 'ref_knows_applicant': 'Does the reference know the applicant?', 'ref_approves': 'Does the reference approve the applicant for use of restricted data?', 'ref_understands_privacy': 'Does the response indicate an understanding that data must not be shared (e.g. no plural pronouns such as "we", "us", etc.)?', 'responder_comments': 'Comments (required for rejected applications). This will be sent to the applicant.', 'decision': 'Decision', } widgets = { 'ref_knows_applicant': forms.RadioSelect(choices=YES_NO_UNDETERMINED_REVIEW), 'ref_approves': forms.RadioSelect(choices=YES_NO_UNDETERMINED_REVIEW), 'ref_understands_privacy': forms.RadioSelect(choices=YES_NO_UNDETERMINED_REVIEW), 'responder_comments': forms.Textarea(attrs={'rows': 5}), 'decision': forms.RadioSelect(choices=REVIEW_RESPONSE_CHOICES) } def __init__(self, responder, *args, **kwargs): super().__init__(*args, **kwargs) # This will be used in clean self.quality_assurance_fields = ('ref_knows_applicant', 'ref_approves', 'ref_understands_privacy') self.responder = responder self.fields['decision'].choices = REVIEW_RESPONSE_CHOICES def clean(self): if self.errors: return if self.cleaned_data['decision'] == '1': for field in self.quality_assurance_fields: if not self.cleaned_data[field]: raise forms.ValidationError( 'The quality assurance fields must all pass ' 'before you approve the application') if self.cleaned_data['decision'] == '0' and not self.cleaned_data['responder_comments']: raise forms.ValidationError('If you reject, you must explain why.') def save(self): application = super().save() if self.cleaned_data['decision'] == '0': application.reject(self.responder) elif self.cleaned_data['decision'] == '1': application.update_review_status(60) else: raise forms.ValidationError('Application status not valid.') return application class AlterCommentsCredentialForm(forms.ModelForm): """ Change the response comments on a processed application """ class Meta: model = CredentialReview fields = ('responder_comments',) labels = { 'responder_comments': 'Comments', } class NewsForm(forms.ModelForm): """ To add and edit news items """ project = forms.ModelChoiceField(queryset=PublishedProject.objects.order_by('title'), required=False) class Meta: model = News fields = ('title', 'content', 'url', 'project', 'front_page_banner') class FeaturedForm(forms.Form): """ To add featured projects """ title = forms.CharField(max_length=50, required=False, label='Title') class DataAccessForm(forms.ModelForm): """ To add all of the forms to access the data for a project. """ class Meta: model = DataAccess fields = ('platform', 'location') help_texts = { 'platform': 'Form to access the data.', 'location': """URL for aws-open-data:<br> https://URL<br><br> Bucket name for aws-s3:<br> s3://BUCKET_NAME<br><br> Organizational Google Group managing access for gcp-bucket:<br> EMAIL@ORGANIZATION<br><br> Organizational Google Group managing access for gcp-bigquery:<br> EMAIL@ORGANIZATION""", } def __init__(self, project, *args, **kwargs): super().__init__(*args, **kwargs) self.project = project def clean_location(self): platform = self.cleaned_data['platform'] location = self.cleaned_data['location'] if platform == 1: validate = URLValidator() validate(location) elif platform == 2: bucket = location.split('s3://') if len(bucket) != 2 or bucket[0] != '': raise forms.ValidationError('The AWS Bucket name is not valid') if not re.fullmatch(r'[\da-z][\da-z-.]+[\da-z]', bucket[1]): raise forms.ValidationError('The AWS Bucket name is not valid') elif platform in [3, 4]: validate_email(location) return location def save(self): data_access = super(DataAccessForm, self).save(commit=False) data_access.project = self.project data_access.save() return data_access class PublishedProjectContactForm(forms.ModelForm): class Meta: model = Contact fields = ('name', 'affiliations', 'email') def __init__(self, project, *args, **kwargs): super().__init__(*args, **kwargs) self.project = project def save(self): contact = super().save(commit=False) contact.project = self.project contact.save() return contact class CreateLegacyAuthorForm(forms.ModelForm): """ Create an author for a legacy project. """ author = forms.ModelChoiceField( queryset=User.objects.filter(is_active=True).order_by('username'), widget=autocomplete.ModelSelect2(url='user-autocomplete'), required=True, label="Author's username") class Meta: model = PublishedAffiliation fields = ('name',) labels = {'name': 'Affiliation', } def __init__(self, project, *args, **kwargs): super().__init__(*args, **kwargs) self.project = project def clean_author(self): author = self.cleaned_data['author'] if self.project.authors.filter(user=author): raise forms.ValidationError('The person is already an author.') return author def save(self): if self.errors: return author = self.cleaned_data['author'] affiliation = super().save(commit=False) display_order = self.project.authors.count() + 1 is_submitting = False is_corresponding = False corresponding_email = None if display_order == 1: is_submitting = True is_corresponding = True corresponding_email = author.email affiliation.author = PublishedAuthor.objects.create( first_names=author.profile.first_names, project=self.project, last_name=author.profile.last_name, user=author, display_order=display_order, is_submitting=is_submitting, is_corresponding=is_corresponding, corresponding_email=corresponding_email) affiliation.save() return affiliation <file_sep>import re from django.contrib.auth.validators import UnicodeUsernameValidator from django.core.exceptions import ValidationError from django.core.validators import RegexValidator from django.utils.translation import ugettext as _ from zxcvbn import zxcvbn _subword = re.compile(r'\d+|[^\W\d_]+') class ComplexityValidator(): """ Require at least one symbol """ def __init__(self): self.minimum_complexity = 2 def validate(self, password, user=None): # NOTE: Keep list of forbidden words in sync with # zxcvbn_ProgressBar_Register.js and # zxcvbn_ProgressBar_Change.js bad_words = ['physio', 'physionet'] try: fname = user.profile.first_names lname = user.profile.last_name except AttributeError: # new user, profile does not yet exist fname = user.first_names lname = user.last_name bad_words += re.findall(_subword, fname) bad_words += re.findall(_subword, lname) bad_words += re.findall(_subword, user.email) bad_words += re.findall(_subword, user.username) info = zxcvbn(password, bad_words) if info['score'] < self.minimum_complexity: raise ValidationError( _("This password is too weak."), code='password_weak_password', ) def get_help_text(self): return _( "Your password is too weak." ) class UsernameValidator(UnicodeUsernameValidator): regex = r'^[a-zA-Z][a-zA-Z0-9-]{3,49}$' message = _( 'The username must contain 4 to 50 characters. Letters, digits and - only. Must start with a letter.') def validate_name(value): """ Only accept words that start with an alphabetical character followed by alphanumeric characters incluiding spaces, underscores, hyphens, and apostrophes. """ if not re.fullmatch(r'[^\W_0-9]([\w\' -])+', value): raise ValidationError('Letters, numbers, spaces, underscores, hyphens, and apostrophes only. Must begin with a letter.') def validate_affiliation(value): """ Validate affiliation that start with an alphabetical characters followed by alphanumeric, spaces, underscores, hyphens, and apostrophes and the following special characters: ,()/&. """ if not re.fullmatch(r'[a-zA-Z][\w\',()/&. -]+', value) or '..' in value: raise ValidationError('Letters, numbers, spaces, apostrophes, underscores and [,()/&.-] characters only. Must begin with a letter.') def validate_location(value): """ Validate the location that start with an alphabetical character followed by alphanumeric characters, spaces, underscores, hyphens, apostrophes, periods and commas """ if not re.fullmatch(r'[^\W_0-9]([\w\',. -])+', value): raise ValidationError('Letters, numbers, spaces, hyphens, underscores, apostrophes, periods, and commas only. Must begin with a letter.') def validate_organization(value): """ Validate the organization that start with an alphabetical character followed by alphanumeric characters, spaces, underscores, hyphens, apostrophes, periods and commas """ if not re.fullmatch(r'[^\W_0-9]([\w\',. -])+', value): raise ValidationError('Letters, numbers, spaces, hyphens, underscores, apostrophes, periods, and commas only. Must begin with a letter.') def validate_job_title(value): """ Validate the job title that start with an alphabetical character followed by alphanumeric characters, spaces, underscores, hyphens, apostrophes, periods and commas """ if not re.fullmatch(r'[^\W_0-9]([\w\',. -])+', value): raise ValidationError('Letters, numbers, spaces, hyphens, underscores, apostrophes, periods, and commas only. Must begin with a letter.') def validate_city(value): """ Validate the city that start with an alphabetical character followed by alphanumeric characters, spaces, underscores, hyphens, apostrophes, periods and commas """ if not re.fullmatch(r'[^\W_0-9]([\w\',. -])+', value): raise ValidationError('Letters, numbers, spaces, hyphens, underscores, apostrophes, periods, and commas only. Must begin with a letter.') def validate_state(value): """ Validate the state that start with an alphabetical character followed by alphanumeric characters, spaces, underscores, hyphens, apostrophes, periods and commas """ if not re.fullmatch(r'[^\W_0-9]([\w\',. -])+', value): raise ValidationError('Letters, numbers, spaces, hyphens, underscores, apostrophes, periods, and commas only. Must begin with a letter.') def validate_zipcode(value): """ Validate the zip code that start with an alphabetical character followed by alphanumeric characters, spaces, underscores, hyphens, apostrophes, periods and commas """ if not re.fullmatch(r'[A-Za-z0-9-][A-Za-z0-9- ]*', value): raise ValidationError('Letters, numbers, spaces, hyphens, underscores, apostrophes, periods, and commas only. Must begin with a letter.') def validate_suffix(value): """ Validate the suffix that start with an alphanumerical character followed by alphanumeric characters, spaces, underscores, hyphens, apostrophes, periods and commas. It cannot be all numbers. """ if re.fullmatch(r'[0-9\-+()]*', value): raise ValidationError('Cannot be a number.') if not re.fullmatch(r'[a-zA-Z0-9][\w\',. -]+', value): raise ValidationError('Letters, numbers, spaces, hyphens, underscores, apostrophes, periods, and commas only. Must begin with a letter or number.') def validate_training_course(value): """ Validate the training course that start with an alphabetical character followed by alphanumeric characters, spaces, underscores, hyphens, apostrophes, periods and commas """ if not re.fullmatch(r'[^\W_0-9]([\w\',. -])+', value): raise ValidationError('Letters, numbers, spaces, hyphens, underscores, apostrophes, periods, and commas only. Must begin with a letter.') def validate_course(value): """ Validate the course that start with an alphanumerical character followed by alphanumeric characters, spaces, underscores, hyphens, apostrophes, periods and commas. """ if not re.fullmatch(r'[^\W_0-9]([\w\',. -])+', value): raise ValidationError('Letters, numbers, spaces, hyphens, underscores, apostrophes, periods, and commas only. Must begin with a letter.') def validate_reference_name(value): """ Validate the reference name that start with an alphabetical character followed by alphanumeric characters, spaces, underscores, hyphens, apostrophes, periods and commas. """ if not re.fullmatch(r'[a-zA-Z][\w\',. -]+', value): raise ValidationError('Letters, numbers, spaces, hyphens, underscores, apostrophes, periods, and commas only. Must begin with a letter.') def validate_reference_title(value): """ Validate the reference title that start with an alphabetical character followed by alphanumeric characters, spaces, underscores, hyphens, apostrophes, periods and commas. """ if not re.fullmatch(r'[^\W_0-9]([\w\',. -])+', value): raise ValidationError('Letters, numbers, spaces, hyphens, underscores, apostrophes, periods, and commas only. Must begin with a letter.') def validate_reference_response(value): """ Validate the reference response that start with an alphabetical character followed by alphanumeric characters, spaces, underscores, hyphens, apostrophes, periods and commas. """ if not re.fullmatch(r'[^\W_0-9]([\w\',. -])+', value): raise ValidationError('Letters, numbers, spaces, hyphens, underscores, apostrophes, periods, and commas only. Must begin with a letter.') def validate_research_summary(value): """ Validate the research summary e that start with an alphabetical character followed by alphanumeric characters, spaces, underscores, apostrophes and the following special characters: !@#$%&*()[]~+={};:"<>?,./`- """ if not re.fullmatch(r'[a-zA-Z][\w\'\[\]\n\r~!@#$%&*()+={};:"<>?,./` -]+', value): raise ValidationError('Letters, numbers, spaces, apostrophes and [!@#$%&*()[]~_+-={ };:"<>?,./`] characters only. Must begin with a letter.') def validate_nan(value): """ Validation to verify the input is NOT a number. """ if re.fullmatch(r'[0-9\-+()]*', value): raise ValidationError('Cannot be a number.') def validate_orcid_token(value): """ Validation to verify the token returned during views/auth_orcid is in the expected format """ if not re.fullmatch(r'^[a-z0-9]{8}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{12}$', value): raise ValidationError('ORCID token is not in expected format.') def validate_orcid_id(value): """ Validation to verify the ID returned during views/auth_orcid is in the expected format """ if not re.fullmatch(r'^[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}[0-9X]$', value): raise ValidationError('ORCID ID is not in expected format.') # DEPRECATED VALIDATIONS KEPT FOR MIGRATIONS def validate_alphaplus(value): """ This function has been deprecated, and should NOT be used. This function was kept for the moment to not touch the past migrations. """ if not re.fullmatch(r'[\w][\w\ -]*', value): raise ValidationError('Letters, numbers, spaces, underscores, and hyphens only. Must begin with a letter or number.') def validate_alphaplusplus(value): """ This function has been deprecated, and should NOT be used. This function was kept for the moment to not touch the past migrations. """ if not re.fullmatch(r'[\w][\'\,\.\w\ -]*', value): raise ValidationError('Letters, numbers, spaces, underscores, hyphens, apostrophes, periods, and commas only. Must begin with a letter or number.') <file_sep># PhysioNet Build The new PhysioNet platform built using Django. The new site is currently hosted at [https://physionet.org/](https://physionet.org/) Dev branch: [![Run Status](https://api.shippable.com/projects/59e7d1baaf0a170700d5b5b0/badge?branch=dev)](https://app.shippable.com/github/MIT-LCP/physionet-build) [![Coverage Badge](https://api.shippable.com/projects/59e7d1baaf0a170700d5b5b0/coverageBadge?branch=dev)](https://app.shippable.com/github/MIT-LCP/physionet-build) ## Running Local Instance Using Django Server - Install sqlite3: `sudo apt-get install sqlite3`. - Create python environment with python 3.6. - Activate virtual python environment. - Install python packages in `requirements.txt`. - Copy `.env.example` file to `.env`. - Within the `physionet-django` directory: - Run: `python manage.py resetdb` to reset the database. - Run: `python manage.py loaddemo` to load the demo fixtures set up example files. - Run: `python manage.py runserver` to run the server. ## Contribution Guidelines - Familiarise yourself with the [PEP8 style guidelines](https://www.python.org/dev/peps/pep-0008/). - Create a branch originating from the `dev` branch, titled after the new feature/change to be implemented. - Write tests for your code where possible (see "Testing" section below). Confirm that all tests pass before making a pull request. - If you create or alter any models or fields, you'll need to generate one or more accompanying migration scripts. Commit these scripts alongside your other changes. - Make a pull request to the `dev` branch with a clear title and description of the changes. Tips for a good pull request: http://blog.ploeh.dk/2015/01/15/10-tips-for-better-pull-requests/ ## Testing - Unit tests for each app are kept in their `test*.py` files. - To run the unit tests, change to the `physionet-django` directory and run `python manage.py test`. - To check test coverage, change to the `physionet-django` directory and run `coverage run --source='.' manage.py test`. Next run `coverage html` to generate an html output of the coverage results. You may need to `pip install coverage` beforehand. - To run the browser tests in the `test_browser.py` files, selenium and the [firefox driver](https://github.com/mozilla/geckodriver/releases) are required. If you want to see the test run in your browser, remove the `options.set_headless(True)` lines in the `setUpClass` of the browser testing modules. ## Database Content During Development During development, the following workflow is applied for convenience: - The database engine is sqlite3. The db.sqlite3 file will not be tracked by git, and hence will not be uploaded and shared between developers - Demo model instances will be specified in json files in the `fixtures` subdirectory of each app. Example file: `<BASE_DIR>/<appname>/fixtures/demo-<appname>.json` To conveniently obtain a clean database with the latest applied migrations, run:`python manage.py resetdb`. This does not populate the database with any data. ### Creating a branch with migrations If you need to add, remove, or modify any models or fields, your branch will also need to include the necessary migration script(s). In most cases, Django can generate these scripts for you automatically, but you should still review them to be sure that they are doing what you intend. After making a change (such as adding a field or changing options), run `./manage.py makemigrations` to generate a corresponding migration script. Then run `./manage.py migrate` to run that script on your local sqlite database. If you make changes and later decide to undo them without committing, the easiest way is to simply run `rm */migrations/*.py && git checkout */migrations` to revert to your current HEAD. Then run `./manage.py makemigrations` again if necessary, followed by `./manage.py resetdb && ./manage.py loaddemo`. If other migrations are committed to dev in the meantime, you will need to resolve the resulting conflicts before your feature branch can be merged back into dev. There are two ways to do this: #### Merging migrations If the two sets of changes are independent, they can be combined by merging `dev` into the feature branch and adding a "merge migration": * `git checkout my-new-feature && git pull && rm */migrations/*.py && git checkout */migrations` * `git merge --no-ff --no-commit origin/dev` * `./manage.py makemigrations --merge` The latter command will ask you to confirm that the changes do not conflict (it will *not* detect conflicts automatically.) Read the list of changes carefully before answering. If successful, you can then run: * `./manage.py migrate && ./manage.py test` * `git add */migrations/ && git commit` As with any pull request, have someone else review your changes before merging the result back into `dev`. #### Rebasing migrations If the migration behavior interacts with other changes that have been applied to dev in the meantime, the migration scripts will need to be rewritten. * Either rebase the feature branch onto origin/dev, or merge origin/dev into the feature branch. * Roll back migrations by running `rm */migrations/*.py; git checkout origin/dev */migrations` * Generate new migrations by running `./manage.py makemigrations` * `./manage.py migrate && ./manage.py test` * `git add */migrations/ && git commit` <file_sep>import datetime import logging import os import pdb import re import shutil from django.conf import settings from django.contrib.auth.models import AnonymousUser from django.contrib.messages.storage.fallback import FallbackStorage from django.core import mail from django.core.management import call_command from django.test import RequestFactory, TestCase from django.urls import reverse from django.utils import timezone from user.models import AssociatedEmail, Profile, User from user.views import (activate_user, edit_emails, edit_profile, edit_password_complete, public_profile, register, user_settings, verify_email) def prevent_request_warnings(original_function): """ Decorator to prevent request class from throwing warnings for 404s. """ def new_function(*args, **kwargs): # raise logging level to ERROR logger = logging.getLogger('django.request') previous_logging_level = logger.getEffectiveLevel() logger.setLevel(logging.ERROR) # trigger original function that would throw warning original_function(*args, **kwargs) # lower logging level back to previous logger.setLevel(previous_logging_level) return new_function class TestMixin(TestCase): """ Mixin for test methods Because the fixtures are installed and database is rolled back before each setup and teardown respectively, the demo test files will be created and destroyed after each test also. We want the demo files as well as the demo data reset each time, and individual test methods such as publishing projects may change the files. Note about inheriting: https://nedbatchelder.com/blog/201210/multiple_inheritance_is_hard.html """ def setUp(self): """ Copy demo media files to the testing media root. Copy demo static files to the testing effective static root. Does not run collectstatic. The StaticLiveServerTestCase should do that automatically for tests that need it. """ shutil.rmtree(settings.MEDIA_ROOT, ignore_errors=True) shutil.copytree(os.path.abspath(os.path.join(settings.DEMO_FILE_ROOT, 'media')), settings.MEDIA_ROOT) self.test_static_root = settings.STATIC_ROOT if settings.STATIC_ROOT else settings.STATICFILES_DIRS[0] shutil.rmtree(self.test_static_root, ignore_errors=True) shutil.copytree(os.path.abspath(os.path.join(settings.DEMO_FILE_ROOT, 'static')), self.test_static_root) # Published project files should have been made read-only at # the time of publication for topdir in (settings.MEDIA_ROOT, self.test_static_root): ppdir = os.path.join(topdir, 'published-projects') for dirpath, subdirs, files in os.walk(ppdir): if dirpath != ppdir: for f in files: os.chmod(os.path.join(dirpath, f), 0o444) for d in subdirs: os.chmod(os.path.join(dirpath, d), 0o555) def tearDown(self): """ Remove the testing media root """ for root, dirs, files in os.walk(settings.MEDIA_ROOT): for d in dirs: os.chmod(os.path.join(root, d), 0o755) for f in files: os.chmod(os.path.join(root, f), 0o755) for root, dirs, files in os.walk(self.test_static_root): for d in dirs: os.chmod(os.path.join(root, d), 0o755) for f in files: os.chmod(os.path.join(root, f), 0o755) shutil.rmtree(settings.MEDIA_ROOT) shutil.rmtree(self.test_static_root) def assertMessage(self, response, level): """ Assert that the max message level in the request equals `level`. Can use message success or error to test outcome, since there are different cases where forms are reloaded, not present, etc. The response code for invalid form submissions are still 200 so cannot use that to test form submissions. """ self.assertEqual(max(m.level for m in response.context['messages']), level) def make_get_request(self, viewname, reverse_kwargs=None): """ Helper Function. Create and set a get request - viewname: The view name - reverse_kwargs: kwargs of additional url parameters """ self.get_request = self.factory.get(reverse(viewname, kwargs=reverse_kwargs)) self.get_request.user = self.user def make_post_request(self, viewname, data, reverse_kwargs=None): """ Helper Function. Create and set a get request - viewname: The view name - data: Dictionary of post parameters - reverse_kwargs: Kwargs of additional url parameters """ self.post_request = self.factory.post(reverse(viewname, kwargs=reverse_kwargs), data) self.post_request.user = self.user # Provide the message object to the request because middleware # is not supported by RequestFactory setattr(self.post_request, 'session', 'session') messages = FallbackStorage(self.post_request) setattr(self.post_request, '_messages', messages) def tst_get_request(self, view, view_kwargs=None, status_code=200, redirect_viewname=None, redirect_reverse_kwargs=None): """ Helper Function. Test the get request with the view against the expected status code - view: The view function - view_kwargs: The kwargs dictionary of additional arguments to put into view function aside from request - status_code: expected status code of response - redirect_viewname: view name of the expected redirect - redirect_reverse_kwargs: kwargs dictionary of expected redirect """ if view_kwargs: response = view(self.get_request, **view_kwargs) else: response = view(self.get_request) self.assertEqual(response.status_code, status_code) if status_code == 302: # We don't use assertRedirects because the response has no client self.assertEqual(response['location'], reverse(redirect_viewname, kwargs=redirect_reverse_kwargs)) def tst_post_request(self, view, view_kwargs=None, status_code=200, redirect_viewname=None, redirect_reverse_kwargs=None): """ Helper Function. Test the post request with the view against the expected status code - view: The view function - view_kwargs: The kwargs dictionary of additional arguments to put into view function aside from request - status_code: expected status code of response - redirect_viewname: view name of the expected redirect - redirect_reverse_kwargs: kwargs dictionary of expected redirect """ if view_kwargs: response = view(self.post_request, **view_kwargs) else: response = view(self.post_request) self.assertEqual(response.status_code, status_code) if status_code == 302: self.assertEqual(response['location'], reverse(redirect_viewname, kwargs=redirect_reverse_kwargs)) class TestAuth(TestMixin): """ Test views that require authentication """ def setUp(self): super().setUp() self.factory = RequestFactory() self.user = User.objects.get(email='<EMAIL>') self.anonymous_user = AnonymousUser() def test_user_settings(self): self.make_get_request('user_settings') self.tst_get_request(user_settings, status_code=302, redirect_viewname='edit_profile') def test_edit_profile(self): self.make_get_request('edit_profile') self.tst_get_request(edit_profile) self.make_post_request('edit_profile', data={'first_names': 'Roger', 'last_name': 'Federer'}) self.tst_post_request(edit_profile) def test_edit_password_complete(self): self.make_get_request('edit_password_complete') self.tst_get_request(edit_password_complete) def test_edit_emails(self): """ Test all functions of the edit_emails view: - setting email public status - set primary email - add email - remove email In addition, also test verification of added email """ self.make_get_request('edit_emails') self.tst_get_request(edit_emails) # Test 0: login self.client.login(username='<EMAIL>', password='<PASSWORD>!') self.assertEqual(int(self.client.session['_auth_user_id']), self.user.pk) # Test 1: set public email self.make_post_request('edit_emails', data={'set_public_email': [''], 'associated_email': '<EMAIL>'}) self.tst_post_request(edit_emails) # order is <EMAIL>, <EMAIL>, <EMAIL> public_status = [ae.is_public for ae in AssociatedEmail.objects.filter(user=self.user).order_by('email')] self.assertEqual(public_status, [False, True, False]) # Test 2: set primary email self.make_post_request('edit_emails', data={'set_primary_email': [''], 'associated_email': '<EMAIL>'}) self.tst_post_request(edit_emails) self.assertEqual(self.user.email, '<EMAIL>') # Test 3: add email response = self.client.post(reverse('edit_emails'), data={ 'add_email': [''], 'email': '<EMAIL>'}) self.assertIsNotNone(AssociatedEmail.objects.filter(email='<EMAIL>')) # Test 4: remove email remove_id = AssociatedEmail.objects.get(email='<EMAIL>').id self.make_post_request('edit_emails', data={'remove_email': [str(remove_id)]}) self.tst_post_request(edit_emails) remaining_associated_emails = [ae.email for ae in AssociatedEmail.objects.filter(user=self.user)] self.assertNotIn('<EMAIL>', remaining_associated_emails) # Test 5: Verify the newly added email # Get the activation info from the sent email uidb64, token = re.findall('http://localhost:8000/verify/(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>[0-9A-Za-z]{20})/', mail.outbox[0].body)[0] request = self.client.get(reverse('verify_email', args=(uidb64, token))) self.assertTrue(AssociatedEmail.objects.get(email='<EMAIL>').is_verified) def test_purgeaccounts(self): # Test 0: login self.client.login(username='<EMAIL>', password='<PASSWORD>!') self.assertEqual(int(self.client.session['_auth_user_id']), self.user.pk) # Test 1: add email self.client.post(reverse('edit_emails'), data={ 'add_email': [''], 'email': '<EMAIL>'}) self.assertIsNotNone(AssociatedEmail.objects.filter(email='<EMAIL>')) # Test 2: add email to be removed self.client.post(reverse('edit_emails'), data={ 'add_email': [''], 'email': '<EMAIL>'}) self.assertIsNotNone(AssociatedEmail.objects.filter(email='<EMAIL>')) email1 = AssociatedEmail.objects.get(email='<EMAIL>') email1.added_date -= timezone.timedelta(days=30) email1.save() email1_id = email1.id email2 = AssociatedEmail.objects.get(email='<EMAIL>') email2_id = email2.id call_command('purgeaccounts') self.assertFalse(AssociatedEmail.objects.filter(id=email1_id).exists()) self.assertTrue(AssociatedEmail.objects.filter(id=email2_id).exists()) class TestPublic(TestMixin): """ Test views that do not require authentication """ def setUp(self): super().setUp() self.factory = RequestFactory() self.user = AnonymousUser() def test_public_profile(self): self.make_get_request('public_profile', {'username': 'admin'}) self.tst_get_request(public_profile, view_kwargs={'username': 'admin'}, status_code=200) def test_register_activate(self): """ Test user account registration and activation """ # Register the new user self.make_get_request('register') self.tst_get_request(register, status_code=200) self.make_post_request('register', data={'email': '<EMAIL>', 'username': 'awesomeness', 'first_names': 'Jack', 'last_name': 'Reacher', 'password1': '<PASSWORD>', 'password2': '<PASSWORD>'}) # Recall that register uses same view upon success, so not 302 self.tst_post_request(register, status_code=200) # Check user object was created self.assertIsNotNone(User.objects.filter(email='<EMAIL>')) self.assertFalse(User.objects.get(email='<EMAIL>').is_active) # Get the activation info from the sent email uidb64, token = re.findall('http://localhost:8000/activate/(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,20})/', mail.outbox[0].body)[0] # Visit the activation link response = self.client.get(reverse('activate_user', args=(uidb64, token))) self.assertEqual(response.status_code, 302) self.assertEqual(self.client.session['_activation_reset_token'], token) response = self.client.post(reverse('activate_user', args=(uidb64, 'user-activation')), data={'email': '<EMAIL>', 'username': 'awesomeness', 'password1': '<PASSWORD>', 'password2': '<PASSWORD>'}) # Test that the user is active self.assertTrue(User.objects.get(email='<EMAIL>').is_active) self.client.get(reverse('activate_user', args=(uidb64, token))) def test_purgeaccounts(self): """ Test automatic deletion of unactivated accounts. """ num_active_accounts = User.objects.filter(is_active=True).count() # Register two new user accounts without activating self.make_post_request('register', data={ 'email': '<EMAIL>', 'username': 'awesomeness', 'first_names': 'Jack', 'last_name': 'Reacher'}) self.tst_post_request(register, status_code=200) self.make_post_request('register', data={ 'email': '<EMAIL>', 'username': 'adminupr', 'first_names': 'admin', 'last_name': 'upr'}) self.tst_post_request(register, status_code=200) user1 = User.objects.get(email='<EMAIL>') user2 = User.objects.get(email='<EMAIL>') self.assertFalse(user1.is_active) self.assertFalse(user2.is_active) user1_id = user1.id profile1_id = user1.profile.id email1_id = user1.associated_emails.get().id user2_id = user2.id profile2_id = user2.profile.id email2_id = user2.associated_emails.get().id # Assume the first account was registered 30 days ago user1.join_date += datetime.timedelta(days=-30) user1.save() # Invoke the purgeaccounts command to remove old unactivated # accounts call_command('purgeaccounts') # purgeaccounts should have deleted user1 and the associated # Profile and AssociatedEmail objects self.assertFalse(User.objects.filter(id=user1_id).exists()) self.assertFalse(Profile.objects.filter(id=profile1_id).exists()) self.assertFalse(AssociatedEmail.objects.filter(id=email1_id).exists()) # purgeaccounts should not have deleted user2 self.assertTrue(User.objects.filter(id=user2_id).exists()) self.assertTrue(Profile.objects.filter(id=profile2_id).exists()) self.assertTrue(AssociatedEmail.objects.filter(id=email2_id).exists()) # active accounts should be unaffected self.assertEqual(num_active_accounts, User.objects.filter(is_active=True).count()) <file_sep>""" Module for generating notifications """ from urllib import parse from email.utils import formataddr from django.conf import settings from django.contrib.sites.shortcuts import get_current_site from django.core.mail import EmailMessage, send_mail, mail_admins from django.template import loader, defaultfilters from django.utils import timezone from project.models import DataAccessRequest, License RESPONSE_ACTIONS = {0:'rejected', 1:'accepted'} def mailto_url(*recipients, **params): """ Generate a 'mailto:' URL. The recipient address(es) are specified as positional arguments. Additional header fields (such as 'subject') and the special pseudo-header 'body' may be specified as keyword arguments. Note that RFC 6068 requires each recipient to be a simple address ("<EMAIL>"), while the older RFC 2368 permits the full RFC 822 mailbox syntax ("Root <<EMAIL>>"). Many, but not all, clients will accept the latter syntax. >>> mailto_url('<EMAIL>', '<EMAIL>') 'mailto:<EMAIL>,<EMAIL>' >>> mailto_url('fred&<EMAIL>', subject='Hello world') 'mailto:<EMAIL>%26<EMAIL>?subject=Hello%20world' """ encoded_addrs = (parse.quote(addr, safe='@') for addr in recipients) url = 'mailto:' + ','.join(encoded_addrs) if params: url += '?' + parse.urlencode(params, quote_via=parse.quote) return url def send_contact_message(contact_form): """ Send a message to the contact email """ subject = contact_form.cleaned_data['subject'] body = contact_form.cleaned_data['message'] mail_from = formataddr((contact_form.cleaned_data['name'], contact_form.cleaned_data['email'])) message = EmailMessage( subject=subject, body=body, from_email=settings.DEFAULT_FROM_EMAIL, # envelope sender to=[settings.CONTACT_EMAIL], headers={ 'From': mail_from, 'Sender': settings.DEFAULT_FROM_EMAIL }) message.send(fail_silently=False) # ---------- Project App ---------- # def get_url_prefix(request): """ Return a URL protocol and host, such as 'https://example.com'. django.contrib.sites.shortcuts is used to look up a "canonical" hostname, if one is defined. """ site = get_current_site(request) if request and not request.is_secure(): return 'http://' + site.domain else: return 'https://' + site.domain def email_signature(): """ Gets the signature for the emails """ signature = ("Regards,\n\n" "The PhysioNet Team,\n" "MIT Laboratory for Computational Physiology,\n" "Institute for Medical Engineering and Science,\n" "MIT, E25-505 77 Massachusetts Ave. Cambridge, MA 02139" ) return signature def email_project_info(project): """ Header for the email. e.g. Project ID, Project title, Submitting Author. """ header = ("Project title: {}\n" "Submission ID: {}\n" "Submitting author: {}" ).format(project.title, project.slug, project.submitting_author()) return header def email_footer(): """ Footer for the email. e.g. for privacy policy, link to update profile, etc. """ footer = "" return footer def invitation_notify(request, invite_author_form, target_email): """ Notify someone when they are invited to author a project """ inviter = invite_author_form.inviter project = invite_author_form.project subject = 'Invitation to author project: {}'.format(project.title) email_context = { 'inviter_name': inviter.get_full_name(), 'inviter_email': inviter.email, 'project': project, 'domain': get_current_site(request), 'url_prefix': get_url_prefix(request), 'signature': email_signature(), 'project_info': email_project_info(project), 'footer': email_footer(), 'target_email': target_email } body = loader.render_to_string('notification/email/invite_author.html', email_context) send_mail(subject, body, settings.DEFAULT_FROM_EMAIL, [target_email], fail_silently=False) def invitation_response_notify(invitation, affected_emails): """ Notify the submitting author when an invitation to join a project is processed. """ response = RESPONSE_ACTIONS[invitation.response] project = invitation.project subject = 'Authorship invitation {} for project: {}'.format(response, project.title) email, name = project.author_contact_info(only_submitting=True) email_context = { 'name': name, 'project': project, 'response': response, 'signature': email_signature(), 'project_info': email_project_info(project), 'footer': email_footer() } # Send an email for each email belonging to the accepting user for author_email in affected_emails: email_context['author_email'] = author_email body = loader.render_to_string( 'notification/email/author_response.html', email_context) send_mail(subject, body, settings.DEFAULT_FROM_EMAIL, [email], fail_silently=False) def submit_notify(project): """ Notify authors when a project is submitted """ subject = 'Submission of project: {}'.format(project.title) email_context = { 'project': project, 'signature': email_signature(), 'project_info': email_project_info(project), 'footer': email_footer() } for email, name in project.author_contact_info(): email_context['name'] = name body = loader.render_to_string( 'notification/email/submit_notify.html', email_context) send_mail(subject, body, settings.DEFAULT_FROM_EMAIL, [email], fail_silently=False) # notify editorial team subject = 'A new project has been submitted: {0}'.format(project.title) email_context['name'] = "Colleague" body = loader.render_to_string( 'notification/email/submit_notify_team.html', email_context) send_mail(subject, body, settings.DEFAULT_FROM_EMAIL, [settings.CONTACT_EMAIL], fail_silently=False) def resubmit_notify(project, comments): """ Notify authors and the editor when a project is resubmitted """ subject = 'Resubmission of project: {}'.format(project.title) email_context = { 'project': project, 'signature': email_signature(), 'project_info': email_project_info(project), 'footer': email_footer() } for email, name in project.author_contact_info(): email_context['name'] = name body = loader.render_to_string( 'notification/email/resubmit_notify.html', email_context) send_mail(subject, body, settings.DEFAULT_FROM_EMAIL, [email], fail_silently=False) # notify editorial team email_context['name'] = project.editor.get_full_name() email_context['author_comments'] = comments body = loader.render_to_string( 'notification/email/resubmit_notify_editor.html', email_context) send_mail(subject, body, settings.DEFAULT_FROM_EMAIL, [project.editor.email], fail_silently=False) # ---------- Console App ---------- # def assign_editor_notify(project): """ Notify authors when an editor is assigned """ subject = 'Editor assigned to submission of project: {0}'.format( project.title) for email, name in project.author_contact_info(): body = loader.render_to_string( 'notification/email/assign_editor_notify.html', { 'name': name, 'project': project, 'editor': project.editor, 'signature': email_signature(), 'project_info': email_project_info(project), 'footer': email_footer() }) send_mail(subject, body, settings.DEFAULT_FROM_EMAIL, [email], fail_silently=False) def editor_notify_new_project(project, assigner, reassigned=False): """ Notify authors when an editor is assigned """ subject = 'Assigned new project to review as editor ({0})'.format( project.title) body = loader.render_to_string( 'notification/email/editor_notify_new_project.html', { 'project': project, 'editor': project.editor.get_full_name(), 'signature': email_signature(), 'user': assigner.get_full_name(), 'project_info': email_project_info(project), 'footer': email_footer() }) if reassigned: send_mail(subject, body, settings.DEFAULT_FROM_EMAIL, [project.editor.email, assigner.email], fail_silently=False) else: send_mail(subject, body, settings.DEFAULT_FROM_EMAIL, [project.editor.email], fail_silently=False) def edit_decision_notify(request, project, edit_log, reminder=False): """ Notify authors when an editor makes a decision """ # Reject if edit_log.decision == 0: subject = 'Submission rejected for project {}'.format(project.title) template = 'notification/email/reject_submission_notify.html' # Resubmit with revisions elif edit_log.decision == 1: subject = 'Revisions requested for project {}'.format(project.title) template = 'notification/email/revise_submission_notify.html' # Accept else: subject = 'Submission accepted for project: {}'.format(project.title) template = 'notification/email/accept_submission_notify.html' # Prepend reminder to the subject if needed if reminder: subject = "Reminder - {}".format(subject) for email, name in project.author_contact_info(): body = loader.render_to_string(template, { 'name': name, 'project': project, 'edit_log': edit_log, 'domain': get_current_site(request), 'url_prefix': get_url_prefix(request), 'signature': email_signature(), 'project_info': email_project_info(project), 'footer': email_footer() }) send_mail(subject, body, settings.DEFAULT_FROM_EMAIL, [email], fail_silently=False) def copyedit_complete_notify(request, project, copyedit_log, reminder=False): """ Notify authors when the editor has finished copyediting """ subject = 'Your approval needed to publish: {0}'.format(project.title) # Prepend reminder to the subject if needed if reminder: subject = "Reminder - {}".format(subject) for person in project.author_list(): if not person.approval_datetime: body = loader.render_to_string( 'notification/email/copyedit_complete_notify.html', { 'name': person.get_full_name(), 'project': project, 'copyedit_log': copyedit_log, 'domain': get_current_site(request), 'url_prefix': get_url_prefix(request), 'signature': email_signature(), 'project_info': email_project_info(project), 'footer': email_footer() }) send_mail(subject, body, settings.DEFAULT_FROM_EMAIL, [person.user.email], fail_silently=False) def reopen_copyedit_notify(request, project): """ Notify authors when an editor reopens a project for copyediting """ subject = 'Project reopened for copyediting: {0}'.format(project.title) for email, name in project.author_contact_info(): body = loader.render_to_string( 'notification/email/reopen_copyedit_notify.html', { 'name': name, 'project': project, 'domain': get_current_site(request), 'url_prefix': get_url_prefix(request), 'signature': email_signature(), 'project_info': email_project_info(project), 'footer': email_footer() }) send_mail(subject, body, settings.DEFAULT_FROM_EMAIL, [email], fail_silently=False) def authors_approved_notify(request, project): """ Notify ... """ subject = 'All authors approved publication of project: {0}'.format( project.title) for email, name in project.author_contact_info(): body = loader.render_to_string( 'notification/email/authors_approved_notify.html', { 'name': name, 'project': project, 'domain': get_current_site(request), 'url_prefix': get_url_prefix(request), 'signature': email_signature(), 'project_info': email_project_info(project), 'footer': email_footer() }) send_mail(subject, body, settings.DEFAULT_FROM_EMAIL, [email], fail_silently=False) def publish_notify(request, published_project): """ Notify authors and administrators when a project is published """ subject = 'Your project has been published: {0}'.format( published_project.title) content = {'published_project': published_project, 'domain': get_current_site(request), 'url_prefix': get_url_prefix(request), 'signature': email_signature(), 'project_info': email_project_info(published_project), 'footer': email_footer()} for email, name in published_project.author_contact_info(): content['name'] = name body = loader.render_to_string( 'notification/email/publish_notify.html', content) send_mail(subject, body, settings.DEFAULT_FROM_EMAIL, [email], fail_silently=False) subject = 'A new project has been published: {0}'.format( published_project.title) content['name'] = "Colleague" body = loader.render_to_string( 'notification/email/publish_notify_team.html', content) send_mail(subject, body, settings.DEFAULT_FROM_EMAIL, [settings.CONTACT_EMAIL], fail_silently=False) def storage_request_notify(request, project): """ Notify administrators when a storage request is received """ subject = 'Storage request received: {0}'.format( project.title) content = {'project': project, 'domain': get_current_site(request), 'url_prefix': get_url_prefix(request), 'signature': email_signature(), 'project_info': email_project_info(project), 'footer': email_footer()} content['name'] = "Colleague" body = loader.render_to_string( 'notification/email/storage_request_notify_team.html', content) send_mail(subject, body, settings.DEFAULT_FROM_EMAIL, [settings.CONTACT_EMAIL], fail_silently=False) def storage_response_notify(storage_request): """ Notify submitting author when storage request is processed """ project = storage_request.project response = RESPONSE_ACTIONS[storage_request.response] subject = 'Storage request {0} for project: {1}'.format(response, project.title) email, name = project.author_contact_info(only_submitting=True) body = loader.render_to_string( 'notification/email/storage_response_notify.html', { 'name': name, 'project': project, 'response': response, 'allowance': storage_request.request_allowance, 'response_message': storage_request.response_message, 'signature': email_signature(), 'project_info': email_project_info(project), 'footer': email_footer() }) send_mail(subject, body, settings.DEFAULT_FROM_EMAIL, [email], fail_silently=False) def contact_applicant(request, application, comments): """ Request applicant feedback regarding their credentialing application """ applicant_name = ' '.join([application.first_names, application.last_name]) subject = 'Feedback regarding your PhysioNet credentialing application' respond_email = settings.CREDENTIAL_EMAIL body = loader.render_to_string( 'notification/email/contact_applicant.html', { 'application': application, 'applicant_name': applicant_name, 'comments': comments, 'url_prefix': get_url_prefix(request), 'signature': email_signature() }) send_mail(subject, body, respond_email, [application.user.email], fail_silently=False) def contact_reference(request, application, send=True, wordwrap=True, subject="", body=""): """ Request verification from a credentialing applicant's reference. Args: application : CredentialApplication object. send : If True, send the email. wordwrap : If True, wraps body at 70 characters. subject : Subject line. body : Body text. Returns: dict : email name, subject, body """ applicant_name = ' '.join([application.first_names, application.last_name]) if not subject: subject = 'Reference requested for {}'.format( applicant_name) if not body: body = loader.render_to_string( 'notification/email/contact_reference.html', { 'application': application, 'applicant_name': applicant_name, 'domain': get_current_site(request), 'url_prefix': get_url_prefix(request), 'signature': email_signature(), 'footer': email_footer() }) if wordwrap: body = defaultfilters.wordwrap(body, 70) if send: send_mail(subject, body, settings.CREDENTIAL_EMAIL, [application.reference_email], fail_silently=False) return {"subject": subject, "body": body} def contact_supervisor(request, application): """ Request verification from a credentialing applicant's reference """ applicant_name = ' '.join([application.first_names, application.last_name]) subject = 'Please verify {} for PhysioNet credentialing'.format( applicant_name) body = loader.render_to_string( 'notification/email/contact_supervisor.html', { 'application': application, 'applicant_name': applicant_name, 'domain': get_current_site(request), 'url_prefix': get_url_prefix(request), 'signature': email_signature(), 'footer': email_footer() }) send_mail(subject, body, settings.DEFAULT_FROM_EMAIL, [application.reference_email], fail_silently=False) def mailto_reference(request, application): """ Request verification from a credentialing applicant's reference """ applicant_name = application.get_full_name() subject = '{} -- PhysioNet clinical database access request'.format( applicant_name) body = loader.render_to_string( 'notification/email/mailto_contact_reference.html', { 'application': application, 'applicant_name': applicant_name, 'domain': get_current_site(request), 'url_prefix': get_url_prefix(request), 'signature': email_signature(), 'footer': email_footer() }) # rm comma to handle mailto issue with comma and special char. # ref https://github.com/MIT-LCP/physionet-build/issues/1028 to = formataddr((application.reference_name.replace(',', ''), application.reference_email)) bcc = 'credential-reference+{0}@{1}'.format( application.id, get_current_site(request)) return mailto_url(to, subject=subject, bcc=bcc, body=body) def mailto_supervisor(request, application): """ Request verification from a credentialing applicant's reference """ applicant_name = application.get_full_name() subject = '{} -- PhysioNet clinical database access request'.format( applicant_name) body = loader.render_to_string( 'notification/email/mailto_contact_supervisor.html', { 'application': application, 'applicant_name': applicant_name, 'domain': get_current_site(request), 'url_prefix': get_url_prefix(request), 'signature': email_signature(), 'footer': email_footer() }) # rm comma to handle mailto issue with comma and special char. # ref https://github.com/MIT-LCP/physionet-build/issues/1028 to = formataddr((application.reference_name.replace(',', ''), application.reference_email)) bcc = 'credential-reference+{0}@{1}'.format( application.id, get_current_site(request)) return mailto_url(to, subject=subject, bcc=bcc, body=body) def mailto_process_credential_complete(request, application, comments=True): """ Notify user of credentialing decision """ applicant_name = application.get_full_name() subject = 'PhysioNet clinical database access request for {}'.format(applicant_name) dua = License.objects.get(slug='physionet-credentialed-health-data-license-150') body = loader.render_to_string( 'notification/email/mailto_contact_applicant.html', { 'application': application, 'dua': dua.dua_text_content() }).replace('\n', '\n> ') if comments: body = 'Dear {0},\n\n{1}\n\n{2}'.format(application.first_names, application.responder_comments, body) else: body = 'Dear {0},\n\n{1}'.format(application.first_names, body) # rm comma to handle mailto issue with comma and special char. # Ref https://github.com/MIT-LCP/physionet-build/issues/1028 to = formataddr((application.get_full_name().replace(',', ''), application.user.email)) bcc = 'credential-reference+{0}@{1}'.format( application.id, get_current_site(request)) return mailto_url(to, subject=subject, bcc=bcc, body=body) def mailto_administrators(project, error): """ Request verification from a credentialing applicant's reference """ subject = 'Error sending files to GCP for {}'.format(project.slug) body = loader.render_to_string( 'notification/email/contact_administrators.html', { 'project': project, 'error': error, 'signature': email_signature(), 'footer': email_footer() }) send_mail(subject, body, settings.DEFAULT_FROM_EMAIL, [settings.CONTACT_EMAIL], fail_silently=False) def process_credential_complete(request, application, comments=True): """ Notify user of credentialing decision """ applicant_name = application.get_full_name() response = 'rejected' if application.status == 1 else 'accepted' subject = 'Your application for PhysioNet credentialing' body = loader.render_to_string( 'notification/email/process_credential_complete.html', { 'application': application, 'applicant_name': applicant_name, 'domain': get_current_site(request), 'url_prefix': get_url_prefix(request), 'comments': comments, 'signature': email_signature(), 'footer': email_footer() }) message = EmailMessage( subject=subject, body=body, from_email=settings.DEFAULT_FROM_EMAIL, to=[application.user.email], bcc=[settings.CREDENTIAL_EMAIL] ) message.send(fail_silently=False) def credential_application_request(request, application): """ Notify user of credentialing decision """ applicant_name = application.get_full_name() subject = 'PhysioNet credentialing application notification' dua = License.objects.get(slug='physionet-credentialed-health-data-license-150') body = loader.render_to_string( 'notification/email/notify_credential_request.html', { 'application': application, 'applicant_name': applicant_name, 'domain': get_current_site(request), 'url_prefix': get_url_prefix(request), 'dua': dua.dua_text_content(), 'signature': email_signature(), 'footer': email_footer() }) send_mail(subject, body, settings.DEFAULT_FROM_EMAIL, [application.user.email], fail_silently=False) def notify_gcp_access_request(data_access, user, project): """ Notify user of GCP access """ subject = 'PhysioNet Google Cloud Platform BigQuery access' email = user.cloud_information.gcp_email.email if data_access.platform == 3: subject = 'PhysioNet Google Cloud Platform storage read access' body = loader.render_to_string( 'notification/email/notify_gcp_access_request.html', { 'signature': email_signature(), 'data_access': data_access, 'user': user, 'project': project, 'footer': email_footer() }) send_mail(subject, body, settings.DEFAULT_FROM_EMAIL, [email], fail_silently=False) def notify_aws_access_request(user, project, data_access, successful): subject = 'PhysioNet Amazon Web Service storage access' body = loader.render_to_string( 'notification/email/notify_aws_access_request.html', { 'user': user, 'project': project, 'successful': successful, 'contact_email': settings.CONTACT_EMAIL, 'signature': email_signature(), 'footer': email_footer(), 'data_access': data_access }) send_mail(subject, body, settings.DEFAULT_FROM_EMAIL, [user.email], fail_silently=False) def notify_owner_data_access_request(users, data_access_request, request_protocol, request_host): subject = "PhysioNet New Data Access Request" for user in users: body = loader.render_to_string( 'notification/email/notify_owner_data_access_request.html', { 'user': user, 'data_access_request': data_access_request, 'signature': email_signature(), 'footer': email_footer(), 'request_host': request_host, 'request_protocol': request_protocol }) send_mail(subject, body, settings.DEFAULT_FROM_EMAIL, [user.email], fail_silently=False) def confirm_user_data_access_request(data_access_request, request_protocol, request_host): subject = "PhysioNet Data Access Request" due_date = timezone.now() + timezone.timedelta( days=DataAccessRequest.DATA_ACCESS_REQUESTS_DAY_LIMIT) body = loader.render_to_string( 'notification/email/confirm_user_data_access_request.html', { 'data_access_request': data_access_request, 'signature': email_signature(), 'footer': email_footer(), 'request_host': request_host, 'request_protocol': request_protocol, 'due_date': due_date }) send_mail(subject, body, settings.DEFAULT_FROM_EMAIL, [data_access_request.requester.email], fail_silently=False) def notify_user_data_access_request(data_access_request, request_protocol, request_host): subject = "PhysioNet Data Access Request Decision" body = loader.render_to_string( 'notification/email/notify_user_data_access_request.html', { 'data_access_request': data_access_request, 'signature': email_signature(), 'footer': email_footer(), 'request_host': request_host, 'request_protocol': request_protocol, }) send_mail(subject, body, settings.DEFAULT_FROM_EMAIL, [data_access_request.requester.email], fail_silently=False) def notify_user_invited_managing_requests(reviewer_invitation, request_protocol, request_host): subject = "PhysioNet Invitation to Review Requests" body = loader.render_to_string( 'notification/email/notify_user_invited_managing_requests.html', { 'invitation': reviewer_invitation, 'signature': email_signature(), 'footer': email_footer(), 'request_host': request_host, 'request_protocol': request_protocol, }) send_mail(subject, body, settings.DEFAULT_FROM_EMAIL, [reviewer_invitation.reviewer.email], fail_silently=False) def notify_owner_data_access_review_withdrawal(reviewer_invitation): subject = "PhysioNet Data Request Reviewer Withdrawal" project = reviewer_invitation.project for user in set([project.submitting_author().user, project.corresponding_author().user]): body = loader.render_to_string( 'notification/email/notify_owner_data_access_review_withdrawal.html', { 'owner': user, 'user': reviewer_invitation.reviewer, 'project': project, 'signature': email_signature(), 'footer': email_footer(), }) send_mail(subject, body, settings.DEFAULT_FROM_EMAIL, [user.email], fail_silently=False) def task_failed_notify(name, attempts, last_error, date_time, task_name, task_params): """ Notify when a task has failed and not rescheduled """ body = loader.render_to_string( 'notification/email/notify_failed_task.html', { 'name': name, 'attempts': attempts, 'last_error': last_error, 'date_time': date_time.strftime("%Y-%m-%d %H:%M:%S"), 'task_name': task_name, 'task_params': task_params, 'signature': email_signature() }) subject = name + " has failed" mail_admins(subject, body, settings.DEFAULT_FROM_EMAIL) def task_rescheduled_notify(name, attempts, last_error, date_time, task_name, task_params): """ Notify when a task has been rescheduled """ body = loader.render_to_string( 'notification/email/notify_rescheduled_task.html', { 'name': name, 'attempts': attempts, 'last_error': last_error, 'date_time': date_time.strftime("%Y-%m-%d %H:%M:%S"), 'task_name': task_name, 'task_params': task_params, 'signature': email_signature() }) subject = name + " has been rescheduled" mail_admins(subject, body, settings.DEFAULT_FROM_EMAIL) def notify_account_registration(request, user, uidb64, token): """ Send the registration email. """ # Send an email with the activation link subject = "PhysioNet Account Activation" context = { 'name': user.get_full_name(), 'domain': get_current_site(request), 'url_prefix': get_url_prefix(request), 'uidb64': uidb64, 'token': token } body = loader.render_to_string('user/email/register_email.html', context) # Not resend the email if there was an integrity error send_mail(subject, body, settings.DEFAULT_FROM_EMAIL, [user.email], fail_silently=False) <file_sep>import base64 import datetime import errno import os import shutil import pdb import uuid import logging import re import requests import json from django.contrib import auth, messages from django.contrib.sites.shortcuts import get_current_site from django.conf import settings from django.core.exceptions import (PermissionDenied, ValidationError) from django.http import HttpResponse, Http404 from django.utils.crypto import constant_time_compare from googleapiclient.errors import HttpError from console.utility import create_directory_service from user.models import User LOGGER = logging.getLogger(__name__) class FileInfo(): """ For displaying lists of files in project pages All attributes are human readable strings """ def __init__(self, name, size, last_modified): self.name = name self.size = size self.last_modified= last_modified class DirectoryInfo(): def __init__(self, name): self.name = name class DirectoryBreadcrumb(): """ For navigating through project file directories """ def __init__(self, name, rel_path, full_subdir, active=True): self.name = name self.rel_path = rel_path self.full_subdir = full_subdir self.active = active def get_dir_breadcrumbs(path, directory=True): """ Given a subdirectory, return all breadcrumb elements full_subdir for inputs: '' --> d1 --> ['', 'd1'] d1/ --> ['', 'd1'] d1/d2/d3 d1/d2/d3/ """ if path == '': return [DirectoryBreadcrumb(name='<base>', rel_path='', full_subdir='', active=False)] if path.endswith('/'): path = path[:-1] dirs = path.split('/') rel_path = '../' * len(dirs) if not directory: rel_path = (rel_path[3:] or './') dir_breadcrumbs = [DirectoryBreadcrumb(name='<base>', full_subdir='', rel_path=rel_path)] for i in range(len(dirs)): rel_path = (rel_path[3:] or './') dir_breadcrumbs.append(DirectoryBreadcrumb( name=dirs[i], rel_path=rel_path, full_subdir='/'.join([d.name for d in dir_breadcrumbs[1:]]+ [dirs[i]]))) dir_breadcrumbs[-1].active = False return dir_breadcrumbs class StorageInfo(): """ Object for storing display information about a project's storage. """ def __init__(self, allowance, used, include_remaining=True, main_used=None, compressed_used=None, published=0): """ Initialize fields with optional args for published and unpublished projects The include_remaining argument has no effect and is kept for compatibility. """ self.allowance = allowance self.readable_allowance = readable_size(allowance) self.published = published self.readable_published = readable_size(published) self.p_used_old = round(published * 100 / allowance) # Total used self.used = used if used is None: self.readable_used = 'unknown' self.remaining = None self.readable_remaining = 'unknown' self.p_used = '?' self.p_remaining = '?' self.p_used_new = '?' else: self.readable_used = readable_size(used) self.remaining = allowance - used self.readable_remaining = readable_size(self.remaining) self.p_used = round(used * 100 / allowance) self.p_remaining = round(self.remaining * 100 / allowance) self.p_used_new = self.p_used - self.p_used_old if main_used is not None: self.main_used = main_used self.readable_main_used = readable_size(main_used) if compressed_used is not None: self.compressed_used = compressed_used self.readable_compressed_used = readable_size(compressed_used) def list_files(directory): "List files in a directory" files = [] for ent in os.scandir(directory): if not ent.is_dir(): files.append(ent.name) return sorted(files) def list_directories(directory): "List directories in a directory" dirs = [] for ent in os.scandir(directory): if ent.is_dir(): dirs.append(ent.name) return sorted(dirs) def list_items(directory, return_separate=True): "List files and directories in a directory. Return separate or combine lists" if return_separate: dirs = [] files = [] for ent in os.scandir(directory): if ent.is_dir(): dirs.append(ent.name) else: files.append(ent.name) return (sorted(files), sorted(dirs)) else: return sorted(os.listdir(directory)) def remove_items(items, ignore_missing=True): """ Delete the list of (full file path) files/directories. Args: items: Is a list of files or directories to delete. ignore_missing: Flag to ignore missing files or directories. """ if isinstance(items,(tuple,list)): for item in items: try: os.unlink(item) except FileNotFoundError: if not ignore_missing: raise except OSError as e: if e.errno not in (errno.EISDIR, errno.EPERM): raise shutil.rmtree(item) else: LOGGER.info("Non list/tuple entered in remove items. The 'item' entered \ was: {0}".format(items)) raise TypeError def clear_directory(directory): """ Delete all files and folders in a directory. """ remove_items(os.path.join(directory, i) for i in os.listdir(directory)) def rename_file(old_path, new_path): """ Rename a file, without overwriting an existing file. If the destination path already exists, this will attempt to raise a FileExistsError. This is not guaranteed to work correctly in all cases. """ if os.path.exists(new_path): raise FileExistsError(errno.EEXIST, os.strerror(errno.EEXIST), old_path, new_path) os.rename(old_path, new_path) def move_items(items, target_folder): """ Move items (full path) into target folder (full path) """ for item in items: rename_file(item, os.path.join(target_folder, os.path.split(item)[-1])) def get_file_info(file_path): "Given a file path, get the information used to display it" name = os.path.split(file_path)[-1] size = readable_size(os.path.getsize(file_path)) last_modified = datetime.date.fromtimestamp(os.path.getmtime(file_path)).strftime("%Y-%m-%d") return FileInfo(name, size, last_modified) def get_directory_info(dir_path): "Given a directory path, get the information used to display it" return DirectoryInfo(os.path.split(dir_path)[-1]) def get_tree_size(path): """Return total size of files in given path and subdirs.""" total = 0 for entry in os.scandir(path): if entry.is_dir(follow_symlinks=False): total += get_tree_size(entry.path) else: total += entry.stat(follow_symlinks=False).st_size return total def readable_size(num, suffix='B'): "Display human readable size of byte number" for unit in ['','K','M','G','T','P','E','Z']: if abs(num) < 1024: readsize = '{0:g}'.format(num) if '.' not in readsize: return readsize+' '+unit+suffix else: return '{:3.1f} {:s}{:s}'.format(num, unit, suffix) num /= 1024.0 return '{:.1f}{:s}{:s}'.format(num, 'Y', suffix) def write_uploaded_file(file, write_file_path, overwrite=True): """ file: request.FILE write_file_path: full file path to be written """ if overwrite: try: os.unlink(write_file_path) except FileNotFoundError: pass with open(write_file_path, 'xb') as destination: for chunk in file.chunks(): destination.write(chunk) def get_form_errors(form): """ Extract all errors from a form eith errors """ all_errors = [] for field in form.errors: all_errors += form.errors[field] return all_errors def grant_aws_open_data_access(user, project): """ Function to grant a AWS ID access to the bukets in the Open Data AWS platform. Possible responses are: b'{"error": "Unexpected error: An error occurred (MalformedPolicy) when calling the PutBucketPolicy operation: Invalid principal in policy", "message": null}' b'{"error": "None", "message": "Accounts [\'XXXYYYZZZ\'] have been added, accounts [] have been skipped since already exist, accounts [] have been deleted since policy is too large"}' b'{"error": "None", "message": "No new accounts to add"}' """ url = settings.AWS_CLOUD_FORMATION # The payload has to be a string in an array payload = {'accountid': ["{}".format(user.cloud_information.aws_id)]} # Custom headers set as a key for a lambda function in AWS to grant access headers = {settings.AWS_HEADER_KEY: settings.AWS_HEADER_VALUE, settings.AWS_HEADER_KEY2: settings.AWS_HEADER_VALUE2} # Do a request to AWS and try to add the user ID to the bucket response = requests.post(url, data=json.dumps(payload), headers=headers) if response.status_code < 200 or response.status_code >= 300: LOGGER.info("Error sending adding the AWS ID to the Bucket Policy." "The request payload is {0}\nThe errror is the following: " "{1}\n".format(payload, response.content)) return "Access could not be granted." message = response.json()['message'] if message == "No new accounts to add": LOGGER.info("AWS response adding {0} to project {1}\n{2}".format( user.cloud_information.aws_id, project, message)) return message elif "Accounts ['{}'] have been added".format(user.cloud_information.aws_id) in message: LOGGER.info("AWS response adding {0} to project {1}\n{2}".format( user.cloud_information.aws_id, project, message)) return message.split(',')[0] LOGGER.info('Unknown response from AWS - {0}\nThe payload is {1}'.format( payload, response.content)) return "There was an error granting access." def grant_gcp_group_access(user, project, data_access): """ Add a specific email address to a organizational google group in G Suite Possible access types would be: - 3 is for the GCP Bucket - 4 is for the GCP Big Query """ email = user.cloud_information.gcp_email.email service = create_directory_service(settings.GCP_DELEGATION_EMAIL) access = "" if data_access.platform == 3: access = "Access to the GCP bucket" elif data_access.platform == 4: access = "Access to the GCP BigQuery" else: return False try: group_members = service.members() outcome = group_members.insert(groupKey=data_access.location, body={ "email": email, "delivery_settings": "NONE"}).execute() if outcome['role'] == "MEMBER": message = '{0} has been granted to {1} for project: {2}'.format( access, email, project) LOGGER.info("{0} email {1}".format(message, data_access.location)) return message raise Exception('Wrong access granted to {0} in GCP email {1}'.format( email, data_access.location)) except HttpError as error: if json.loads(error.content)['error']['message'] == 'Member already exists.': return '{0} was previously awarded to {1} for project: {2}'.format( access, email, project) raise error # The following regular expression defines user agents that are # permitted to use HTTP authentication for accessing protected # databases. This list should not include web browsers. (If you are # writing a new program for accessing protected databases, please use # a distinctive UA string so that your program can be whitelisted # here. Do not use the generic UA string provided by your HTTP client # library.) HTTP_AUTH_USER_AGENT = re.compile('|'.join(( 'Wget/', 'libwfdb/', ))) def http_auth_allowed(request): """ Check if HTTP authentication is permitted for the given request. Web browsers typically don't implement HTTP authentication in a very user-friendly or secure way, so this mechanism is only permitted for specific non-interactive user agents. For safety, HTTP authentication is only permitted for GET and HEAD requests, and (unless settings.DEBUG is set) only via HTTPS. """ if request.method not in ('GET', 'HEAD'): return False if not request.is_secure() and not settings.DEBUG: return False ua = request.META.get('HTTP_USER_AGENT', '') if HTTP_AUTH_USER_AGENT.match(ua): return True else: return False def check_http_auth(request): """ Check if a request includes HTTP authentication. If HTTP authentication is permitted for the given request, and a valid username and password are provided, set request.user to the corresponding user object. Otherwise, the request is not modified. For safety, HTTP authentication is only used for certain requests from non-interactive user agents; see http_auth_allowed(). This should be invoked at the start of the view before checking user credentials, and should be paired with require_http_auth(). """ if 'HTTP_AUTHORIZATION' in request.META: # If an Authorization header is supplied, but this request is # not allowed to use HTTP authentication, ignore the header. if not http_auth_allowed(request): return # If the user is already authenticated, ignore the header. if request.user.is_authenticated: return try: uid = request.session['pn_httpauth_uid'] authhash = request.session['pn_httpauth_hash'] user = User.objects.get(id=uid) except (KeyError, User.DoesNotExist): pass else: # Existing session is valid only if the password has not # changed. if constant_time_compare(user.get_session_auth_hash(), authhash) and user.is_active: request.user = user return tokens = request.META['HTTP_AUTHORIZATION'].split() if len(tokens) == 2 and tokens[0].lower() == 'basic': try: data = base64.b64decode(tokens[1], validate=True).decode() username, password = data.split(':', 1) except Exception: return user = auth.authenticate(request=request, username=username, password=<PASSWORD>) if user and user.is_active: request.user = user # If the client supports cookies, save the state so # that we don't have to verify the password on # subsequent requests. If the client doesn't support # cookies, don't bother. if request.COOKIES: # We don't invoke auth.login() here, specifically # so that this session ID cannot be reused to # access URLs that don't permit HTTP # authentication. request.session['pn_httpauth_uid'] = user.id request.session['pn_httpauth_hash'] \ = user.get_session_auth_hash() def require_http_auth(request): """ Ask the client to authenticate itself and retry the request. For safety, HTTP authentication is only allowed for certain requests from non-interactive user agents; see http_auth_allowed(). If this request is not allowed, or if the user is already authenticated, raise PermissionDenied. Otherwise, return an HttpResponse with status 401 (Unauthorized), which indicates the client should repeat the request with a username and password. This should be invoked after check_http_auth(), if the user is unknown or is not authorized to view the given resource. """ if http_auth_allowed(request) and not request.user.is_authenticated: site = get_current_site(request) response = HttpResponse(status=401) response['WWW-Authenticate'] = ( 'Basic realm="{}", charset="UTF-8"'.format(site.name) ) # Check whether the client supports cookies. response.set_cookie('testcookie', '1', secure=(not settings.DEBUG), httponly=True, samesite='Lax') return response else: raise PermissionDenied()
d42c94cda2345d02a502e1878f3824a791d15fcc
[ "Markdown", "Python", "HTML", "Shell" ]
32
Python
tompollard/physionet-build
e7c8ed0b07a4c9a1b4007f6089f59aafa6a3ac57
3318539d16b39d0ca4ff92067919aef367774329
refs/heads/master
<repo_name>larrytech7/popularmoviesapp<file_sep>/app/src/main/java/nanodegree/android/com/popularmoviesapp/model/Reviewer.java package nanodegree.android.com.popularmoviesapp.model; /** * Project Popularmoviesapp * Created by <NAME> on 10/19/15 2:27 PM. */ public class Reviewer { private String author, content, url; public Reviewer(String author, String content, String url) { this.author = author; this.content = content; this.url = url; } public String getAuthor() { return this.author; } public String getContent() { return this.content; } public String getUrl() { return this.url; } } <file_sep>/app/src/main/java/nanodegree/android/com/popularmoviesapp/model/Trailer.java package nanodegree.android.com.popularmoviesapp.model; /** * Project Popularmoviesapp * Created by <NAME> on 10/17/15 1:54 PM. */ public class Trailer { private String trailer_title; //name parameter private String trailer_synopsis; //type/size parameter private String trailer_url; //source parameter public Trailer(String ttitle, String tsynopsis, String turl) { this.trailer_title = ttitle; this.trailer_synopsis = tsynopsis; this.trailer_url = turl; } public String getTrailer_title() { return this.trailer_title; } public String getTrailer_synopsis() { return this.trailer_synopsis; } public String getTrailer_url() { return this.trailer_url; } } <file_sep>/README.md # popularmoviesapp Help users discover and watch trending/popular movies right on their mobile devices. Place your API key in the MoviesFragment file where you see the variable name for it. This app is built using Android Studio 1.1.0 <file_sep>/app/src/main/java/nanodegree/android/com/popularmoviesapp/model/Movie.java package nanodegree.android.com.popularmoviesapp.model; import android.os.Parcel; import android.os.Parcelable; /** * Created by <NAME> on 10/14/15. * Represents the movie class for a movie on the api */ public class Movie implements Parcelable{ private long movie_id; private String movie_poster_url; private String movie_title; private String movie_overview; private float movie_rating; private String movie_release_date; public Movie(long id, String poster, String title, String overview, float rating,String releasedate){ this.movie_id = id; this.movie_poster_url = poster; this.movie_title = title; this.movie_overview = overview; this.movie_rating = rating; this.movie_release_date = releasedate; } public Movie(long id){ this.movie_id = id; } //parcel constructor public Movie(Parcel parcel){ this.movie_id = parcel.readLong(); this.movie_poster_url = parcel.readString(); this.movie_title = parcel.readString(); this.movie_overview = parcel.readString(); this.movie_rating = parcel.readFloat(); this.movie_release_date = parcel.readString(); } public long getMovie_id() { return this.movie_id; } public void setMovie_id(long movie_id) { this.movie_id = movie_id; } public String getMovie_poster_url() { return this.movie_poster_url; } public void setMovie_poster_url(String movie_poster_url) { this.movie_poster_url = movie_poster_url; } public String getMovie_title() { return this.movie_title; } public void setMovie_title(String movie_title) { this.movie_title = movie_title; } public String getMovie_overview() { return this.movie_overview; } public void setMovie_overview(String movie_overview) { this.movie_overview = movie_overview; } public float getMovie_rating() { return this.movie_rating; } public void setMovie_rating(float movie_rating) { this.movie_rating = movie_rating; } public String getMovie_release_date() { return this.movie_release_date; } public void setMovie_release_date(String movie_release_date) { this.movie_release_date = movie_release_date; } @Override public int describeContents() { return 0; } @Override public void writeToParcel(Parcel parcel, int flags) { parcel.writeLong(movie_id); parcel.writeString(movie_poster_url); parcel.writeString(movie_title); parcel.writeString(movie_overview); parcel.writeFloat(movie_rating); parcel.writeString(movie_release_date); } public static final Creator<Movie> CREATOR = new Creator<Movie>(){ @Override public Movie createFromParcel(Parcel parcel) { return new Movie(parcel); } @Override public Movie[] newArray(int i) { return new Movie[i]; } }; } <file_sep>/app/src/main/java/nanodegree/android/com/popularmoviesapp/DetailsActivity.java package nanodegree.android.com.popularmoviesapp; import android.annotation.TargetApi; import android.content.Intent; import android.os.Build; import android.os.Bundle; import android.support.v7.app.ActionBarActivity; import android.view.Menu; import android.view.MenuItem; import nanodegree.android.com.popularmoviesapp.fragments.DetailsFragment; public class DetailsActivity extends ActionBarActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_details); if (savedInstanceState == null) { getSupportFragmentManager().beginTransaction() .add(R.id.detail_container, new DetailsFragment()) .commit(); } } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. //getMenuInflater().inflate(R.menu.menu_details, menu); return false; } @Override public boolean onOptionsItemSelected(MenuItem item) { return false; } @TargetApi(Build.VERSION_CODES.JELLY_BEAN) @Override public Intent getSupportParentActivityIntent() { return super.getSupportParentActivityIntent().addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); } } <file_sep>/app/src/main/java/nanodegree/android/com/popularmoviesapp/model/MovieColumns.java package nanodegree.android.com.popularmoviesapp.model; import net.simonvt.schematic.annotation.AutoIncrement; import net.simonvt.schematic.annotation.DataType; import net.simonvt.schematic.annotation.NotNull; import net.simonvt.schematic.annotation.PrimaryKey; /** * Project Popularmoviesapp * Created by <NAME> on 10/21/15 11:00 PM. */ public interface MovieColumns { @DataType(DataType.Type.INTEGER) @PrimaryKey String MOVIE_ID = "_id"; @DataType(DataType.Type.TEXT) @NotNull String MOVIE_TITLE = "title"; @DataType(DataType.Type.BLOB) @NotNull String MOVIE_POSTER = "posterurl"; @DataType(DataType.Type.TEXT) @NotNull String MOVIE_SYNOPSIS = "synopsis"; @DataType(DataType.Type.REAL) @NotNull String MOVIE_RATING = "rating"; @DataType(DataType.Type.TEXT) @NotNull String MOVIE_RELEASE_DATE = "release_date"; }
c5924c84623dfacde6ca3b64475077b52957b61a
[ "Markdown", "Java" ]
6
Java
larrytech7/popularmoviesapp
7256b1d93257ef57d192627f57211c79d864cd08
2eb5af3e32cdd8e947c30b0d01985c2870c250c0
refs/heads/master
<file_sep>from django.db import models from django.contrib.gis.db import models # Create your models here. class Accident(models.Model): name = models.CharField(max_length=20) location = models.PointField(srid=4326) objects = models.Manager() def __unicode__(self): return self.name<file_sep>from django.shortcuts import render, get_object_or_404 from .models import Accident # Create your views here. def accidentDetails(request, pk): accident = get_object_or_404(Accident, pk=pk) return render(request, 'reporter/accident.html', {'accident': accident})<file_sep>from django.contrib import admin from .models import Accident from leaflet.admin import LeafletGeoAdmin # Register your models here. class AccidentAdmin(LeafletGeoAdmin): list_display = ('name', 'location') admin.site.register(Accident, AccidentAdmin)<file_sep>from django.urls import path, include from . import views urlpatterns = [ path('details/<int:pk>/', views.accidentDetails, name='accidentDetails'), ]
8cb42aa3342176ddb920cb5db72c12197fcbd0a3
[ "Python" ]
4
Python
jvsg6/djangoGIS
b551288ae29ea48f4653f3a91043a7c2b62abe2c
fe43ca3e3e2fe69374cfb2d9995cec01c580b829
refs/heads/master
<file_sep>package fragment.iView; import basemvp.BaseView; /** * Created by dhl on 2016/9/6. */ public interface IHomeView extends BaseView{ void dismissRefreshLayout(boolean is); void dismissLoadingLayout(boolean is); void getDatas(boolean isReload); } <file_sep>package mvp.me; import basemvp.BaseModel; /** * Created by dhl on 2016/9/6. */ public class MeModel implements BaseModel { } <file_sep>package mvp.news; import basemvp.BaseModel; /** * Created by dhl on 2016/9/6. */ public class NewsModel implements BaseModel { } <file_sep>package cqut.edu.cn.bangke; import android.content.DialogInterface; import android.content.Intent; import android.support.v7.app.AlertDialog; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.LinearLayout; import com.avos.avoscloud.AVException; import com.avos.avoscloud.AVUser; import com.avos.avoscloud.RequestMobileCodeCallback; import com.avos.avoscloud.UpdatePasswordCallback; import com.orhanobut.logger.Logger; import java.util.Timer; import java.util.TimerTask; import butterknife.BindView; import butterknife.ButterKnife; import butterknife.OnClick; import cn.pedant.SweetAlert.SweetAlertDialog; import utils.Constants; public class ModifyPwdActivity extends AppCompatActivity { @BindView(R.id.et_new_pwd) EditText et_new_pwd; @BindView(R.id.et_auth_code) EditText et_auth_code; @BindView(R.id.btn_auth_rpwd) Button btn_auth_rpwd; @BindView(R.id.btn_do_modify) Button btn_do_modify; @BindView(R.id.ly_error_rpwd) LinearLayout ly_error_rpwd; @BindView(R.id.ly_error_code) LinearLayout ly_error_code; Timer timer = new Timer(); TimerTask timerTask = new TimerTask() { @Override public void run() { runOnUiThread(new Runnable() { @Override public void run() { timer.cancel(); dialog.dismiss(); } }); } }; AlertDialog dialog; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_modify_pwd); ButterKnife.bind(this); } @OnClick(R.id.btn_auth_rpwd) public void getAuthCode(View view) { String username = AVUser.getCurrentUser().getUsername(); AVUser.requestPasswordResetBySmsCodeInBackground(username, new RequestMobileCodeCallback() { @Override public void done(AVException e) { if (e == null) { } else { e.printStackTrace(); } } }); } public void doCheck(String newPassword, String verifyCode) { if (newPassword == null) { ly_error_rpwd.setVisibility(View.VISIBLE); } if (verifyCode == null) { ly_error_code.setVisibility(View.VISIBLE); } } @OnClick(R.id.btn_do_modify) public void doModify(View view) { final String verifyCode = et_auth_code.getText().toString(); final String newPassword = et_new_pwd.getText().toString(); doCheck(newPassword,verifyCode); AVUser.resetPasswordBySmsCodeInBackground(verifyCode, newPassword, new UpdatePasswordCallback() { @Override public void done(AVException e) { if (e == null) { dialog = new AlertDialog.Builder(ModifyPwdActivity.this) .setMessage("修改成功") .setIcon(R.mipmap.ic_success) .create(); dialog.show(); timer.schedule(timerTask,2000); Intent intent = new Intent(ModifyPwdActivity.this, MainActivity.class); setResult(Constants.REQUEST_CODE_LOGOUT, intent); ModifyPwdActivity.this.finish(); } else { e.printStackTrace(); } } }); } } <file_sep>package cqut.edu.cn.bangke; import android.content.Intent; import android.os.Bundle; import android.support.v4.app.Fragment; import android.support.v4.app.FragmentManager; import android.support.v4.app.FragmentTransaction; import android.support.v7.app.AppCompatActivity; import android.support.v7.widget.Toolbar; import android.view.KeyEvent; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.widget.EditText; import android.widget.ImageView; import android.widget.LinearLayout; import android.widget.TextView; import com.avos.avoscloud.AVUser; import com.orhanobut.logger.Logger; import butterknife.BindView; import butterknife.ButterKnife; import fragment.CircleFragment; import fragment.HomeFragment; import fragment.MainFragment; import fragment.MeFragment; import fragment.NewsFragment; import utils.AVObjectTransform; import utils.Constants; public class MainActivity extends AppCompatActivity implements View.OnClickListener { @BindView(R.id.panel_home) LinearLayout panel_home; @BindView(R.id.panel_news) LinearLayout panel_news; @BindView(R.id.panel_circle) LinearLayout panel_circle; @BindView(R.id.panel_me) LinearLayout panel_me; @BindView(R.id.tv_home) TextView tv_home; @BindView(R.id.iv_home) ImageView iv_home; @BindView(R.id.tv_news) TextView tv_news; @BindView(R.id.iv_news) ImageView iv_news; @BindView(R.id.tv_circle) TextView tv_circle; @BindView(R.id.iv_circle) ImageView iv_circle; @BindView(R.id.tv_me) TextView tv_me; @BindView(R.id.iv_me) ImageView iv_me; FragmentManager fragmentManager; MainFragment fragment = null; int mPreviousItem = 0; int mCurrentItem; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); ButterKnife.bind(this); Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); setSupportActionBar(toolbar); if (getSupportActionBar() != null) { getSupportActionBar().hide(); } fragmentManager = getSupportFragmentManager(); Logger.i("fragmentManager = null ? " + (fragmentManager == null)); if (savedInstanceState == null) { fragment = MainFragment.newInstance(); } else { fragment = (MainFragment) fragmentManager.findFragmentByTag(Constants.FRAG_MAIN); } replaceFragment(fragment); panel_home.setOnClickListener(this); panel_news.setOnClickListener(this); panel_circle.setOnClickListener(this); panel_me.setOnClickListener(this); /* FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab); fab.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG) .se tAction("Action", null).show(); } });*/ } @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { Logger.i("resultCode = " + resultCode); Logger.i("resultCode = " + RESULT_OK); if (resultCode == Constants.REQUEST_CODE_LOGOUT) { MeFragment.avUser = AVUser.getCurrentUser(); MeFragment.user = null; } else if (resultCode == Constants.REQUEST_COED_LOGIN) { MeFragment.avUser = AVUser.getCurrentUser(); MeFragment.user = AVObjectTransform.avUserToUser(MeFragment.avUser); } } @Override public boolean onKeyDown(int keyCode, KeyEvent event) { if (keyCode == KeyEvent.KEYCODE_BACK) { Intent home = new Intent(Intent.ACTION_MAIN); home.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); home.addCategory(Intent.CATEGORY_HOME); startActivity(home); return true; } return super.onKeyDown(keyCode, event); } public void initFragment() { replaceFragment(fragment); } public void replaceFragment(Fragment fragment) { FragmentManager fm = getSupportFragmentManager(); FragmentTransaction ft = fm.beginTransaction(); if (fragment instanceof MainFragment) { ft.replace(R.id.main_frame, fragment, Constants.FRAG_MAIN); } else if (fragment instanceof HomeFragment) { ft.replace(R.id.main_frame, fragment, Constants.FRAG_HOME); } else if (fragment instanceof NewsFragment) { ft.replace(R.id.main_frame, fragment, Constants.FRAG_NEWS); } else if (fragment instanceof CircleFragment) { ft.replace(R.id.main_frame, fragment, Constants.FRAG_CIRCLE); } else if (fragment instanceof MeFragment) { ft.replace(R.id.main_frame, fragment, Constants.FRAG_ME); } ft.show(fragment); ft.commit(); } @Override protected void onDestroy() { super.onDestroy(); //unregisterReceiver(mRefreshBroadcastReceiver); } @Override public void onBackPressed() { super.onBackPressed(); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.menu_main, menu); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify a parent activity in AndroidManifest.xml. int id = item.getItemId(); //noinspection SimplifiableIfStatement if (id == R.id.action_settings) { return true; } return super.onOptionsItemSelected(item); } @Override protected void onSaveInstanceState(Bundle outState) { super.onSaveInstanceState(outState); } @Override public void onClick(View view) { int id = view.getId(); int currentPosition = fragment.setCurrentPager(mPreviousItem); switch (id) { case R.id.panel_home: int disPos = Constants.HOME - mPreviousItem; mCurrentItem = currentPosition + disPos; fragment.setCurrentPager(mCurrentItem); mPreviousItem = mCurrentItem; break; case R.id.panel_news: disPos = Constants.NEWS - mPreviousItem; mCurrentItem = currentPosition + disPos; fragment.setCurrentPager(mCurrentItem); mPreviousItem = mCurrentItem; break; case R.id.panel_circle: disPos = Constants.CIRCLE - mPreviousItem; mCurrentItem = currentPosition + disPos; fragment.setCurrentPager(mCurrentItem); mPreviousItem = mCurrentItem; break; case R.id.panel_me: disPos = Constants.ME - mPreviousItem; mCurrentItem = currentPosition + disPos; fragment.setCurrentPager(mCurrentItem); mPreviousItem = mCurrentItem; break; } } } <file_sep>package mvp.news; import basemvp.BasePresenter; /** * Created by dhl on 2016/9/6. */ public class NewsPresenter implements BasePresenter { } <file_sep>apply plugin: 'com.android.application' apply plugin: 'android-apt' apply plugin: 'android-apt' buildscript { repositories { jcenter() //这里是 LeanCloud 的包仓库 maven { url "http://mvn.leancloud.cn/nexus/content/repositories/releases" } maven { url "https://jitpack.io" } } dependencies { classpath 'com.android.tools.build:gradle:1.0.0' classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8' } } allprojects { repositories { jcenter() //这里是 LeanCloud 的包仓库 maven { url "http://mvn.leancloud.cn/nexus/content/repositories/releases" } maven { url "https://jitpack.io" } } } android { compileSdkVersion 24 buildToolsVersion "23.0.3" defaultConfig { applicationId "cqut.edu.cn.bangke" minSdkVersion 15 targetSdkVersion 24 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } //为了解决部分第三方库重复打包了META-INF的问题 packagingOptions { exclude 'META-INF/LICENSE.txt' exclude 'META-INF/NOTICE.txt' } lintOptions { abortOnError false } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:24.0.0-beta1' compile 'com.android.support:design:24.0.0-beta1' compile('com.android.support:support-v4:21.0.3') // LeanCloud 基础包 compile('cn.leancloud.android:avoscloud-sdk:v3.+') // 推送与实时聊天需要的包 compile('cn.leancloud.android:avoscloud-push:v3.+@aar') { transitive = true } // LeanCloud 统计包 compile('cn.leancloud.android:avoscloud-statistics:v3.+') // LeanCloud 用户反馈包 compile('cn.leancloud.android:avoscloud-feedback:v3.+@aar') // avoscloud-sns:LeanCloud 第三方登录包 compile('cn.leancloud.android:avoscloud-sns:v3.+@aar') compile('cn.leancloud.android:qq-sdk:1.6.1-leancloud') // 目前新浪微博官方只提供 jar 包的集成方式 // 请手动下载新浪微博 SDK 的 jar 包,将其放在 libs 目录下进行集成 // LeanCloud 应用内搜索包 compile('cn.leancloud.android:avoscloud-search:v3.+@aar') compile 'com.jakewharton:butterknife:8.4.0' apt 'com.jakewharton:butterknife-compiler:8.4.0' // compile 'com.jakewharton:butterknife:8.1.0' compile 'com.orhanobut:logger:1.15' compile 'com.facebook.fresco:fresco:0.10.0' compile 'cn.pedant.sweetalert:library:1.3' compile 'com.github.dmytrodanylyk.android-process-button:library:1.0.4' //compile 'me.yokeyword:fragmentation:0.7.10' // 如果想使用SwipeBack 滑动边缘退出Fragment/Activity功能,请再添加下面的库 // compile 'me.yokeyword:fragmentation-swipeback:0.7.9' //compile 'org.greenrobot:eventbus:3.0.0' compile 'com.github.Aspsine:FragmentNavigator:1.0.2' compile 'com.facebook.fresco:fresco:0.12.0' compile 'com.jakewharton:butterknife:8.4.0' apt 'com.jakewharton:butterknife-compiler:8.4.0' // compile 'com.jakewharton:butterknife:8.1.0' compile 'com.orhanobut:logger:1.15' compile 'com.facebook.fresco:fresco:0.10.0' compile 'cn.pedant.sweetalert:library:1.3' compile 'com.github.dmytrodanylyk.android-process-button:library:1.0.4' //compile 'me.yokeyword:fragmentation:0.7.10' // 如果想使用SwipeBack 滑动边缘退出Fragment/Activity功能,请再添加下面的库 // compile 'me.yokeyword:fragmentation-swipeback:0.7.9' //compile 'org.greenrobot:eventbus:3.0.0' compile 'com.github.Aspsine:FragmentNavigator:1.0.2' compile 'com.facebook.fresco:fresco:0.12.0' } <file_sep>package cqut.edu.cn.bangke; import android.content.Context; import android.content.Intent; import android.graphics.Color; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.util.Log; import android.view.View; import android.view.inputmethod.InputMethodManager; import android.widget.EditText; import com.avos.avoscloud.AVException; import com.avos.avoscloud.AVMobilePhoneVerifyCallback; import com.avos.avoscloud.AVOSCloud; import com.avos.avoscloud.AVQuery; import com.avos.avoscloud.AVUser; import com.avos.avoscloud.FindCallback; import com.avos.avoscloud.LogInCallback; import com.avos.avoscloud.RequestMobileCodeCallback; import com.avos.avoscloud.SignUpCallback; import com.dd.processbutton.iml.ActionProcessButton; import com.orhanobut.logger.Logger; import java.util.List; import butterknife.BindView; import butterknife.ButterKnife; import butterknife.OnClick; import cn.pedant.SweetAlert.SweetAlertDialog; import utils.Constants; import utils.NetWorkUtils; import utils.ToastDialog; public class LoginActivity extends AppCompatActivity{ @BindView(R.id.et_username) EditText et_username; @BindView(R.id.et_password) EditText et_passwd; SweetAlertDialog mProgress; @BindView(R.id.btn_login_In) ActionProcessButton btn_login; boolean verifyFlag = false; //判断手机号码是否已注册过了 boolean isExsit = false; Context mContext = LoginActivity.this; AVUser avUser; InputMethodManager inputMethodManager = (InputMethodManager)mContext.getSystemService(Context.INPUT_METHOD_SERVICE); @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_login); ButterKnife.bind(this); avUser = AVUser.getCurrentUser(); if (getSupportActionBar() != null) { getSupportActionBar().hide(); } mProgress = new SweetAlertDialog(this, SweetAlertDialog.PROGRESS_TYPE); mProgress.getProgressHelper().setBarColor(Color.parseColor("#A5DC86")); mProgress.setTitleText("Loading"); mProgress.setCancelable(true); } /** * 登录 * * @param view */ @OnClick(R.id.btn_login_In) public void doLogin(View view) { inputMethodManager.hideSoftInputFromWindow(view.getWindowToken(), 0); btn_login.setMode(ActionProcessButton.Mode.PROGRESS); final String username = et_username.getText().toString(); final String password = et_passwd.getText().toString(); Logger.i("username = " + username); Logger.i("password = " + password); final AVQuery<AVUser> query = new AVQuery<>("_User"); query.whereEqualTo("username", username); query.findInBackground(new FindCallback<AVUser>() { @Override public void done(List<AVUser> list, AVException e) { if (list == null) { SweetAlertDialog dialog = new SweetAlertDialog(mContext, SweetAlertDialog.PROGRESS_TYPE) .setTitleText("手机号不存在!"); dialog.show(); if (e != null) { e.printStackTrace(); } isExsit = false; } else { //登录前验证网络状态 if (NetWorkUtils.isNetworkAvailable(mContext)) { //mProgress.show(); Logger.i("come here ...."); AVUser.loginByMobilePhoneNumberInBackground(username, password, new LogInCallback<AVUser>() { @Override public void done(AVUser avUser, AVException e) { if (e == null) { //mProgress.dismiss(); btn_login.setMode(ActionProcessButton.Mode.ENDLESS); Intent intent = new Intent(mContext, MainActivity.class); setResult(Constants.REQUEST_COED_LOGIN,intent); LoginActivity.this.finish(); } else { mProgress.dismiss(); Logger.e("这里"); e.printStackTrace(); } } }); } } } }); } @OnClick(R.id.tv_do_register) public void toRegisterPage(View view) { Intent intent = new Intent(mContext, RegisterActivity.class); startActivity(intent); } } <file_sep>package mvp.home; import android.content.Context; import mvp.home.iHome.IHomeModel; import mvp.home.iHome.IHomePresenter; /** * Created by dhl on 2016/9/6. */ public class HomeModel implements IHomeModel { IHomePresenter presenter; Context context; public HomeModel(Context context, HomePresenter presenter) { this.context = context; this.presenter = presenter; } } <file_sep>package basemvp; import android.support.v7.app.AppCompatActivity; /** * Created by dhl on 2016/9/5. */ public abstract class BaseActivity extends AppCompatActivity { /** * Created by dhl on 2016/9/5. */ } <file_sep>package bean; import java.util.Date; /** * Created by dhl on 2016/9/7. * 职位类 */ public class Offer { int recr_id; int offer_id; int offer_pub_uId;//发布者id String offer_name;//招聘标题 String offer_wage;//薪资 String avatar;//头像 String recr_requ;//应职要求 String exp_limit;//工作经验 String edu_limit;//教育经历 String position;//城市 String comp_name;//公司名称 String comp_type;//公司类型 String finance;//融资 String need;//招聘人数 Date createdAt;//创建时间 Date updatedAt;//更新时间 public int getRecr_id() { return recr_id; } public void setRecr_id(int recr_id) { this.recr_id = recr_id; } public int getOffer_id() { return offer_id; } public void setOffer_id(int offer_id) { this.offer_id = offer_id; } public int getOffer_pub_uId() { return offer_pub_uId; } public void setOffer_pub_uId(int offer_pub_uId) { this.offer_pub_uId = offer_pub_uId; } public String getOffer_name() { return offer_name; } public void setOffer_name(String offer_name) { this.offer_name = offer_name; } public String getOffer_wage() { return offer_wage; } public void setOffer_wage(String offer_wage) { this.offer_wage = offer_wage; } public String getAvatar() { return avatar; } public void setAvatar(String avatar) { this.avatar = avatar; } public String getRecr_requ() { return recr_requ; } public void setRecr_requ(String recr_requ) { this.recr_requ = recr_requ; } public String getPosition() { return position; } public void setPosition(String position) { this.position = position; } public String getComp_name() { return comp_name; } public void setComp_name(String comp_name) { this.comp_name = comp_name; } public String getComp_type() { return comp_type; } public void setComp_type(String comp_type) { this.comp_type = comp_type; } public String getFinance() { return finance; } public void setFinance(String finance) { this.finance = finance; } public String getNeed() { return need; } public void setNeed(String need) { this.need = need; } public Date getCreatedAt() { return createdAt; } public void setCreatedAt(Date createdAt) { this.createdAt = createdAt; } public Date getUpdatedAt() { return updatedAt; } public void setUpdatedAt(Date updatedAt) { this.updatedAt = updatedAt; } public String getExp_limit() { return exp_limit; } public void setExp_limit(String exp_limit) { this.exp_limit = exp_limit; } public String getEdu_limit() { return edu_limit; } public void setEdu_limit(String edu_limit) { this.edu_limit = edu_limit; } } <file_sep>package adapter; import android.net.Uri; import android.support.v7.widget.RecyclerView; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ImageView; import android.widget.ProgressBar; import android.widget.TextView; import com.facebook.drawee.view.SimpleDraweeView; import java.util.Date; import java.util.List; import bean.Offer; import cqut.edu.cn.bangke.R; import utils.Constants; /** * Created by dhl on 2016/9/6. */ public class RecruitAdapter extends RecyclerView.Adapter<RecruitAdapter.MyViewHolder> { List<Offer> list; OnItemClickListener listener; boolean isNoMoreDatas = false; public RecruitAdapter(List<Offer> list) { this.list = list; } public OnItemClickListener getListener() { return listener; } public void setListener(OnItemClickListener listener) { this.listener = listener; } public void isNoMoreDatas(boolean is) { if (is) { isNoMoreDatas = is; this.notifyDataSetChanged(); } } @Override public MyViewHolder onCreateViewHolder(ViewGroup parent, int viewType) { LayoutInflater inflater = LayoutInflater.from(parent.getContext()); View view = null; MyViewHolder holder = null; if (viewType == Constants.COMMON_TYPE) { view = inflater.inflate(R.layout.home_item, parent, false); holder = new MyViewHolder(view); } else if (viewType == Constants.FOOT_TYPE) { view = inflater.inflate(R.layout.loading_more, parent, false); holder = new MyViewHolder(view); } return holder; } @Override public void onBindViewHolder(MyViewHolder holder, int position) { if (position < list.size()) { holder.bindData(list.get(position), listener, position); } else { holder.setIsNoMoreDatas(isNoMoreDatas); } } @Override public int getItemViewType(int position) { if (position < list.size()) { return Constants.COMMON_TYPE; } else { return Constants.FOOT_TYPE; } } @Override public int getItemCount() { return list.size(); } static class MyViewHolder extends RecyclerView.ViewHolder { //ImageView sdv_recruit_avatar; SimpleDraweeView sdv_recruit_avatar; //头像 TextView tv_title;//标题 如Android开发工程师 TextView tv_wage;//薪资 TextView tv_comp_name;//公司名称 TextView tv_position;//地址 TextView tv_exp_limit;//工作经验 TextView tv_edu_limit;//教育经历 TextView tv_pub_time;//发布时间 TextView tv_finance;//融资信息 TextView tv_need;//招聘人数 TextView tv_comp_type;//公司类型 ProgressBar pb_loading;//进度条 TextView tv_loading;//加载提示 public void setIsNoMoreDatas(boolean isNoMoreDatas) { if (isNoMoreDatas) { pb_loading.setVisibility(View.GONE); tv_loading.setText("没有更多了~~"); } else { pb_loading.setVisibility(View.VISIBLE); tv_loading.setText("拼命加载中..."); } } public MyViewHolder(View itemView) { super(itemView); sdv_recruit_avatar = (SimpleDraweeView) itemView.findViewById(R.id.sdv_recruit_avatar); tv_title = (TextView) itemView.findViewById(R.id.tv_title); tv_wage = (TextView) itemView.findViewById(R.id.tv_wage); tv_comp_name = (TextView) itemView.findViewById(R.id.tv_comp_name); tv_position = (TextView) itemView.findViewById(R.id.tv_position); tv_exp_limit = (TextView) itemView.findViewById(R.id.tv_exp_limit); tv_edu_limit = (TextView) itemView.findViewById(R.id.tv_edu_limit); tv_pub_time = (TextView) itemView.findViewById(R.id.tv_pub_time); tv_finance = (TextView) itemView.findViewById(R.id.tv_finance); tv_need = (TextView) itemView.findViewById(R.id.tv_need); tv_comp_type = (TextView) itemView.findViewById(R.id.tv_comp_type); pb_loading = (ProgressBar) itemView.findViewById(R.id.pb_load); tv_loading = (TextView) itemView.findViewById(R.id.tv_load); } public void bindData(Offer offer, final OnItemClickListener listener, final int position) { Uri path = Uri.parse(offer.getAvatar()); sdv_recruit_avatar.setImageURI(path); //sdv_recruit_avatar.setImageResource(R.mipmap.ic_feedback); tv_title.setText(offer.getOffer_name()); tv_wage.setText(offer.getOffer_wage()); tv_comp_name.setText(offer.getComp_name()); tv_position.setText(offer.getPosition()); tv_exp_limit.setText(offer.getExp_limit()); tv_edu_limit.setText(offer.getEdu_limit()); Date createAt = offer.getCreatedAt(); //有点莫名其妙 tv_pub_time.setText((createAt.getMonth() + 1) + "月" + createAt.getDate() + "日"); tv_finance.setText(offer.getFinance()); tv_need.setText(offer.getNeed()); tv_comp_type.setText(offer.getComp_type()); //点击监听 if (listener != null) { itemView.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { listener.itemClick(position); } }); } } } public interface OnItemClickListener { void itemClick(int position); } } <file_sep>package utils; import com.avos.avoscloud.AVObject; import com.avos.avoscloud.AVUser; import java.util.ArrayList; import java.util.Date; import java.util.List; import bean.Offer; import bean.User; /** * Created by dhl on 2016/9/7. * 将AVObject格式对象转换成自定义的格式 ,如: AVObject --> Offer */ public class AVObjectTransform { /** * 将AVObject对象转换成Offer对象 * @param object * @return */ public static Offer avObjectToOffer(AVObject object) { Offer offer = new Offer(); offer.setRecr_id(object.getInt("recr_id")); offer.setOffer_id(object.getInt("offer_id")); offer.setOffer_pub_uId(object.getInt("offer_pub_uId")); offer.setOffer_name(object.getString("offer_name")); offer.setOffer_wage(object.getString("offer_wage")); offer.setAvatar(object.getString("avatar")); offer.setComp_name(object.getString("comp_name")); offer.setComp_type(object.getString("comp_type")); offer.setExp_limit(object.getString("exp_limit")); offer.setEdu_limit(object.getString("edu_limit")); offer.setRecr_requ(object.getString("recr_requ")); offer.setFinance(object.getString("finance")); offer.setNeed(object.getString("need")); offer.setPosition(object.getString("position")); offer.setCreatedAt((Date) object.get("createdAt")); offer.setUpdatedAt((Date) object.get("updatedAt")); return offer; } /** * 将 AVObject 列表转换成 Offer 列表 * @param objects * @return */ public static List<Offer> toOfferList(List<AVObject> objects) { List<Offer> offers = new ArrayList<>(); for (int i = 0; i < objects.size(); i++) { offers.add(avObjectToOffer(objects.get(i))); } return offers; } /** * AVObject 对象转换成 User对象 * @param avUser * @return */ public static User avUserToUser(AVUser avUser){ User user = new User(); user.setUsername(avUser.getUsername()); user.setEmail(avUser.getEmail()); user.setMobilePhoneNumber(avUser.getMobilePhoneNumber()); user.setMobilePhoneVerified(avUser.isMobilePhoneVerified()); user.setEmailVerified(avUser.getBoolean("emailVerified")); user.setU_avatar(avUser.getString("u_avatar")); user.setU_id(avUser.getInt("u_id")); user.setU_sex(avUser.getInt("u_sex")); user.setCreatedAt(avUser.getCreatedAt()); user.setUpdatedAt(avUser.getUpdatedAt()); return user; } } <file_sep>package basemvp; /** * Created by dhl on 2016/9/3. */ public interface BasePresenter { } <file_sep>package fragment.iView; import basemvp.BaseView; /** * Created by dhl on 2016/9/6. */ public interface INewsView extends BaseView { void dismissRefreshLayout(boolean is); void getDatas(); } <file_sep># BangKe 课程设计 <file_sep>package cqut.edu.cn.bangke; import android.content.Context; import android.content.Intent; import android.graphics.Color; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.EditText; import com.avos.avoscloud.AVException; import com.avos.avoscloud.AVMobilePhoneVerifyCallback; import com.avos.avoscloud.AVOSCloud; import com.avos.avoscloud.AVQuery; import com.avos.avoscloud.AVUser; import com.avos.avoscloud.FindCallback; import com.avos.avoscloud.LogInCallback; import com.avos.avoscloud.RequestMobileCodeCallback; import com.avos.avoscloud.SignUpCallback; import com.orhanobut.logger.Logger; import java.util.List; import butterknife.BindView; import butterknife.ButterKnife; import butterknife.OnClick; import cn.pedant.SweetAlert.SweetAlertDialog; import utils.BaseUtil; import utils.NetWorkUtils; import utils.ToastDialog; public class RegisterActivity extends AppCompatActivity { @BindView(R.id.et_reg_username) EditText et_username; /* @BindView(R.id.et_reg_passwd) EditText et_passwd; @BindView(R.id.et_reg_rpwd) EditText et_rpwd;*/ @BindView(R.id.et_auth_code) EditText et_verify_code; SweetAlertDialog mProgress; AVUser user; String username; String verifyCode; boolean isExsit = false; Context mContext = RegisterActivity.this; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_register); ButterKnife.bind(this); user = new AVUser(); mProgress = new SweetAlertDialog(this, SweetAlertDialog.PROGRESS_TYPE); mProgress.getProgressHelper().setBarColor(Color.parseColor("#A5DC86")); mProgress.setTitleText("Loading"); mProgress.setCancelable(true); } /** * 注册 * * @param view */ @OnClick(R.id.btn_register) public void doRegister(View view) { getInputContent(); if (viabilityCheck(username)) if (!(verifyCode.equals(""))) { mProgress.show(); //注册是再次检验网络状态 if (NetWorkUtils.isNetworkAvailable(mContext)) { user.setUsername(username); user.put("mobilePhoneNumber", username); Logger.e("username = " + username); AVUser.signUpOrLoginByMobilePhoneInBackground(username, verifyCode, new LogInCallback<AVUser>() { @Override public void done(AVUser avUser, AVException e) { if (e == null) { /*AVUser.verifyMobilePhoneInBackground(verifyCode, new AVMobilePhoneVerifyCallback() { @Override public void done(AVException e) { if (e == null) { mProgress.dismiss(); Logger.i("为啥子不跳呢?????"); Intent intent = new Intent(mContext, MainActivity.class); startActivity(intent); } else { mProgress.dismiss(); ToastDialog.toast_short(mContext, "验证码错误!"); return; } } });*/ Intent intent = new Intent(mContext, MainActivity.class); startActivity(intent); } else { mProgress.dismiss(); mProgress = new SweetAlertDialog(mContext, SweetAlertDialog.ERROR_TYPE) .setTitleText("注册失败!"); mProgress.dismiss(); e.printStackTrace(); } } }); } } } /** * 获取用户输入的内容 */ public void getInputContent() { verifyCode = et_verify_code.getText().toString(); username = et_username.getText().toString(); } /** * 注册查询 查询账号是否已被注册 * * @param username 手机号 * @return boolean */ public boolean doRegisterQuery(final String username) { final AVQuery<AVUser> query = new AVQuery<>("_User"); query.whereEqualTo("username", username); query.findInBackground(new FindCallback<AVUser>() { @Override public void done(List<AVUser> list, AVException e) { if (list != null) { if (e != null) { e.printStackTrace(); } isExsit = true; } else { isExsit = false; } } }); return isExsit; } /** * 获取验证码 * * @param view */ @OnClick(R.id.btn_auth) public void getVerifyCode(View view) { getInputContent(); if (!username.equals("")) { if (BaseUtil.checkMobilePhoneNumber(username)) requestVerifyCode(username); else new SweetAlertDialog(this, SweetAlertDialog.CUSTOM_IMAGE_TYPE) .setTitleText("手机号码不合法!") .setContentText("请输入正确的手机号码!") .setCustomImage(R.drawable.ic_launcher) .show(); } else { new SweetAlertDialog(this, SweetAlertDialog.CUSTOM_IMAGE_TYPE) .setTitleText("手机号码为空!") .setContentText("请输入您的手机号码!") .setCustomImage(R.drawable.ic_launcher) .show(); } } /** * 请求发送验证码 * * @param username 手机号 */ public void requestVerifyCode(String username) { Logger.e("username = " + username); AVOSCloud.requestSMSCodeInBackground(username, new RequestMobileCodeCallback() { @Override public void done(AVException e) { if (e == null) { ToastDialog.toast_short(mContext, "验证码已发送,请注意查收!"); } else { ToastDialog.toast_short(mContext, "发送失败!"); e.printStackTrace(); } } }); } /** * 可行性检查 检查注册信息是否满足注册要求 * * @param username 手机号 * @return */ public boolean viabilityCheck(String username) { boolean flag; if (!username.equals("") && BaseUtil.checkMobilePhoneNumber(username) && !doRegisterQuery(username)) { flag = true; } else { flag = false; if (NetWorkUtils.isNetworkAvailable(mContext)) { if (doRegisterQuery(username)) new SweetAlertDialog(this, SweetAlertDialog.WARNING_TYPE) .setTitleText("该手机号已注册,请直接登录!") .show(); } else if (!BaseUtil.checkMobilePhoneNumber(username)) { new SweetAlertDialog(this, SweetAlertDialog.WARNING_TYPE) .setTitleText("请输入正确的手机号码!") .show(); } else { new SweetAlertDialog(this, SweetAlertDialog.WARNING_TYPE) .setTitleText("手机号码为空!") .show(); } } return flag; } } <file_sep>package utils; /** * Created by dhl on 2016/9/5. */ public class Constants { public static String FRAG_TYPE = "frag_type"; public static String FRAG_MAIN = "FRAG_MAIN"; public static String FRAG_HOME = "FRAG_HOME"; public static String FRAG_NEWS = "FRAG_NEWS"; public static String FRAG_CIRCLE = "FRAG_CIRCLE"; public static String FRAG_ME = "FRAG_ME"; public static int COMMON_TYPE = 0; public static int FOOT_TYPE = 1; public static int LIMIT = 10; public static int SKIP = 10; public static String OFFER_ID = "OFFER_ID"; public static final int HOME = 0; public static final int NEWS = 1; public static final int CIRCLE = 2; public static final int ME = 3; public static final int REQUEST_COED_LOGIN = 55220; public static final int REQUEST_CODE_LOGOUT = 55221; public static final String REFRESH_USER = "REFRESH_USER"; } <file_sep>package cqut.edu.cn.bangke; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import com.avos.avoscloud.AVException; import com.avos.avoscloud.AVObject; import com.avos.avoscloud.AVQuery; import com.avos.avoscloud.FindCallback; import com.orhanobut.logger.Logger; import java.util.Date; import java.util.List; public class Test extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_test); Date now = new Date(); AVQuery<AVObject> query = new AVQuery<>("offer"); query.whereLessThanOrEqualTo("createAT", now); query.limit(10); query.findInBackground(new FindCallback<AVObject>() { @Override public void done(List<AVObject> list, AVException e) { Logger.i("到这里了。。。。"); //将获取的数据加到dataList中 for (int i = 0; i < list.size(); i++) { Logger.i("第" + i + "个:" + list.get(i).getString("offer_name")); } //dataList.addAll(list); } }); } } <file_sep>package cqut.edu.cn.bangke; import android.content.Intent; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.LinearLayout; import android.widget.TextView; import com.avos.avoscloud.AVException; import com.avos.avoscloud.AVUser; import com.avos.avoscloud.RequestMobileCodeCallback; import com.avos.avoscloud.UpdatePasswordCallback; import bean.User; import butterknife.BindView; import butterknife.ButterKnife; import butterknife.OnClick; import fragment.MeFragment; import utils.AVObjectTransform; import utils.Constants; import utils.ToastDialog; public class UserInfoActivity extends AppCompatActivity { @BindView(R.id.btn_log_out) TextView btn_logOut; @BindView(R.id.ly_mobile_phone_verified) LinearLayout ly_mobile_phone_verified; @BindView(R.id.ly_email_verified) LinearLayout ly_email_verified; @BindView(R.id.tv_email_verified) TextView tv_email_verified; @BindView(R.id.tv_mobile_phone_verified) TextView tv_mobile_phone_verified; User user = null; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_user_info); ButterKnife.bind(this); } @Override protected void onResume() { super.onResume(); AVUser avUser = AVUser.getCurrentUser(); user = AVObjectTransform.avUserToUser(avUser); initView(avUser); } public void initView(AVUser user) { if (user.isMobilePhoneVerified()) tv_mobile_phone_verified.setText(user.getMobilePhoneNumber()); else { tv_mobile_phone_verified.setText("未验证"); ly_mobile_phone_verified.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { ToastDialog.toast_short(UserInfoActivity.this,"尚未验证手机号"); } }); } if (user.getBoolean("emailVerified") == true) tv_email_verified.setText(user.getEmail()); else { tv_email_verified.setText("未验证"); ly_email_verified.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { ToastDialog.toast_short(UserInfoActivity.this, "尚未验证邮箱"); } }); } } @OnClick(R.id.tv_modify_password) public void doModifyPassword(View view) { Intent intent = new Intent(UserInfoActivity.this, ModifyPwdActivity.class); startActivityForResult(intent, Constants.REQUEST_CODE_LOGOUT); //overridePendingTransition(R.anim.push_top_in2,R.anim.push_top_out2); } @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { if (resultCode == Constants.REQUEST_CODE_LOGOUT) { AVUser.logOut(); MeFragment.avUser = AVUser.getCurrentUser(); MeFragment.user = null; } } @OnClick(R.id.btn_log_out) public void logOut(View view) { AVUser.logOut();// 清除缓存用户对象 Intent intent = new Intent(UserInfoActivity.this, MainActivity.class); setResult(Constants.REQUEST_CODE_LOGOUT, intent); UserInfoActivity.this.finish(); } }
9bc934c9f2a5e74f52e3c1b5aacdb1163262f9ce
[ "Markdown", "Java", "Gradle" ]
20
Java
daihailong/Bangke
d4c3d96ce670d9f969b6809da83ef90f25c16a4c
7a9eb9824d224894665be3cfae79d5c1df0eaf92
refs/heads/master
<repo_name>flagrant/shorty<file_sep>/stats.go package main import ( "fmt" "log" "os" "os/signal" "path" "strconv" "syscall" "time" "github.com/boltdb/bolt" ) func stats(db *bolt.DB, out func(string)) { sigch := make(chan os.Signal, 1) signal.Notify(sigch, syscall.SIGUSR1, syscall.SIGUSR2) for { s := <-sigch var sum int64 var kvpairs string err := db.View(func(tx *bolt.Tx) error { bucket := tx.Bucket([]byte("shorty")) return bucket.ForEach(func(k, v []byte) error { sum++ if s == syscall.SIGUSR2 { kvpairs += fmt.Sprintf("\nkey=%s, value=%s", k, v) } return nil }) }) if err != nil { log.Printf("Error collecting stats: %v", err) } out(fmt.Sprintf("Serving %d URLs%s", sum, kvpairs)) } } func collectStats(dbDir string, statch <-chan []byte) { db, err := bolt.Open(path.Join(dbDir, "shorty_stats.db"), 0600, &bolt.Options{Timeout: 1 * time.Second}) if err != nil { log.Fatal("Error opening Bolt DB for stats: ", err) } defer func() { closeerr := db.Close() if err != nil { log.Printf("Error closing stats DB: %v", closeerr) } }() for { url := <-statch err = db.Update(func(tx *bolt.Tx) error { bucket, berr := tx.CreateBucketIfNotExists([]byte("views")) if berr != nil { return fmt.Errorf("Error opening/creating bucket 'views': %v", berr) } viewBytes := bucket.Get(url) var views uint64 if viewBytes != nil { views, err = strconv.ParseUint(string(viewBytes), 10, 64) if err != nil { return fmt.Errorf("Error decoding views for %s: %v", string(url), err) } } else { views = 0 } views++ err = bucket.Put(url, []byte(strconv.FormatUint(views, 10))) return err }) if err != nil { log.Println(err) } } } <file_sep>/main.go package main import ( "io" "log" "math/rand" "net" "net/http" "os" "path" "regexp" "strings" "time" "github.com/boltdb/bolt" ) func unshorten(db DB, statch chan<- []byte) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { key := []byte(r.URL.Path[1:][strings.LastIndex(r.URL.Path[1:], "/")+1:]) if len(key) == 0 { w.WriteHeader(http.StatusBadRequest) return } var err error url, err := db.GetURL(key) if err != nil { log.Println(err) w.WriteHeader(http.StatusInternalServerError) } if url == nil { w.WriteHeader(http.StatusNotFound) return } w.Header().Add("Location", string(url)) w.WriteHeader(http.StatusMovedPermanently) _, err = w.Write(url) statch <- url } } func shorten(protocol string, host string, keybuffer <-chan []byte, db DB) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { var newkey []byte values := r.URL.Query() url := values.Get("url") if url == "" { w.WriteHeader(http.StatusBadRequest) return } m, _ := regexp.Match("^http(s?)://", []byte(url)) if !m { url = "http://" + url } _key := values.Get("key") if _key == "" { newkey = <-keybuffer } else { newkey = []byte(_key) } key, err := db.SaveURL(url, newkey) if err != nil { log.Println(err) w.WriteHeader(http.StatusInternalServerError) return } _, err = io.WriteString(w, protocol+"://"+host+"/s/"+key+"\n") if err != nil { log.Printf("Error returning shortened URL: %v", err) } } } func main() { serveHost := os.Getenv("SERVE_HOST") if serveHost == "" { serveHost = "localhost" } listenHost := os.Getenv("LISTEN_HOST") if listenHost == "" { listenHost = "localhost" } listenPort := os.Getenv("LISTEN_PORT") if listenPort == "" { listenPort = "3002" } serveProtocol := os.Getenv("SERVE_PROTOCOL") if serveProtocol == "" { serveProtocol = "https" } dbDir := os.Getenv("DB_DIR") rand.Seed(time.Now().UnixNano()) keybuffer := make(chan []byte, 1000) go keygen(keybuffer) boltDb, err := bolt.Open(path.Join(dbDir, "shorty.db"), 0600, &bolt.Options{Timeout: 1 * time.Second}) if err != nil { log.Fatal("Error opening Bolt DB: ", err) } defer func() { closeerr := boltDb.Close() if closeerr != nil { log.Printf("Error closing DB: %v", closeerr) } }() go stats(boltDb, func(stats string) { log.Println(stats) }) statch := make(chan []byte) go collectStats(dbDir, statch) db := NewBoltDB(boltDb) fs := http.FileServer(http.Dir("assets")) http.Handle("/", fs) http.HandleFunc("/shorten", shorten(serveProtocol, serveHost, keybuffer, db)) http.HandleFunc("/s/", unshorten(db, statch)) listener, err := net.Listen("tcp", listenHost+":"+listenPort) if err != nil { log.Fatal("Error starting HTTP server", err) } log.Printf("Shorty listening on %s:%s\n", listenHost, listenPort) err = http.Serve(listener, nil) if err != nil { log.Panic(err) } } <file_sep>/README.md # Shorty [![Build Status](https://travis-ci.org/makkes/shorty.svg?branch=master)](https://travis-ci.org/makkes/shorty) A very simple URL shortener with an even simpler UI. ## Installation To install Shorty, run ``` go get github.com/makkes/shorty ``` or grab the binary of the [most current release](https://github.com/makkes/shorty/releases). ## Running To start Shorty, simply call `shorty` (assuming that `$GOPATH/bin` is on your `$PATH`), passing the parameters fit to your environment (see below). ## Configuration/Persistence The startup configuration of Shorty is provided via environment variables: |Variable|Description|Default |---|---|--- |LISTEN_HOST|The IP address/hostname to listen on|localhost |LISTEN_PORT|The port to listen on|3002 |SERVE_HOST|The host used by users to reach Shorty|localhost |SERVE_PROTOCOL|One of 'http' or 'https'|https |DB_DIR|The directory used to store Shorty's database files|the current directory Shorty uses Bolt for persisting all shortened URLs, so no need to setup a database server. However, this implies that you cannot distribute Shorty onto multiple nodes. ## Running Docker image There are Docker images available at https://hub.docker.com/r/makkes/shorty/. ## License This software is distributed under the BSD 2-Clause License, see [LICENSE](LICENSE) for more information. <file_sep>/db.go package main import ( "fmt" "github.com/boltdb/bolt" ) // DB is the interface for bundling all database operations. type DB interface { SaveURL(url string, key []byte) (string, error) GetURL(key []byte) ([]byte, error) } // A BoltDB uses Bolt to persist URLs. type BoltDB struct { *bolt.DB } // NewBoltDB returns a BoltDB that uses db as database. func NewBoltDB(db *bolt.DB) *BoltDB { return &BoltDB{db} } func (db *BoltDB) GetURL(key []byte) ([]byte, error) { var url []byte err := db.View(func(tx *bolt.Tx) error { bucket := tx.Bucket([]byte("shorty")) if bucket == nil { return nil } url = bucket.Get(key) return nil }) return url, err } // SaveURL saves the given url using a key from the keybuffer as short URL. func (db *BoltDB) SaveURL(url string, key []byte) (string, error) { err := db.Update(func(tx *bolt.Tx) error { invbucket, err := tx.CreateBucketIfNotExists([]byte("invshorty")) if err != nil { return err } existantKey := invbucket.Get([]byte(url)) if existantKey != nil { return nil } bucket, err := tx.CreateBucketIfNotExists([]byte("shorty")) if err != nil { return err } if bucket.Get(key) != nil { return fmt.Errorf("Key collision: %s", key) } err = invbucket.Put([]byte(url), key) if err != nil { return err } err = bucket.Put(key, []byte(url)) return err }) return string(key), err }
2aab926797784bcb862dc2b2fb8bd0b0298b034d
[ "Markdown", "Go" ]
4
Go
flagrant/shorty
795cf19d6bace9328962dd7dcb1ecec6046ee44e
0dea3f70c0f3de1e6452974e4b0075a90ae6e65b
refs/heads/main
<repo_name>Abhijeet05061998/movie_searching<file_sep>/src/Home.js import React, { useState } from "react"; import Movies from "./Movies"; import Toprated from "./Toprated"; import Upcoming from "./Upcoming"; import { Switch } from "react-router-dom"; import VideoPlayer from "./Videoplayer"; function Home() { return ( <div> <Movies /> <br/> <br/> <Toprated /> <br/> <br/> <Upcoming /> <br/> {/* <VideoPlayer/> */} </div> ); } export default Home; <file_sep>/src/Videoplayer.js import React, { useState, useEffect } from "react"; import YouTube from "react-youtube"; import Jumbotron from "react-bootstrap/Jumbotron"; import Container from "react-bootstrap/Container"; function VideoPlayer({ match }) { const [video, setVideo] = useState({}); const [detail, setDetail] = useState({}); async function playVideo() { const result1 = await fetch( `https://api.themoviedb.org/3/movie/${match.params.id}/videos?api_key=578cb25fbe005df502d4c65de0db071e` ); const data1 = await result1.json(); // console.log(data1.results); setVideo(data1.results); const result2 = await fetch( `https://api.themoviedb.org/3/movie/${match.params.id}?api_key=578cb25fbe005df502d4c65de0db071e` ); const data2 = await result2.json(); // console.log(data2.overview) setDetail(data2); // console.log(match); } useEffect(() => { playVideo(); }, []); // console.log(video[0] && video[0].key) console.log(detail) // console.log(video); const opts = { height: "390", width: "640", playerVars: { autoplay: 0, }, }; const onReady = (event) => event.target.pauseVideo(); return ( <div> {video && video.length !== 0 ? ( <div> <YouTube videoId={video[0] && video[0].key} opts={opts} onReady={onReady} /> <Jumbotron fluid> <Container> <h1>Overview</h1> <p> {detail && detail.overview} </p> </Container> </Jumbotron> </div> ) : ( <h1>Video is unavailable..</h1> )} </div> ); } export default VideoPlayer; <file_sep>/src/Header.js import React, { useState } from "react"; import Navbar from "react-bootstrap/Navbar"; import { FormControl, Form, Button } from "react-bootstrap"; import { Link } from "react-router-dom"; function Header() { const [value, setValue] = useState(""); const setParams = () => { let params = new URLSearchParams(window.location.search); params.set("query", value); params = params.toString(); console.log(params); }; return ( <div> <Navbar bg="dark" variant="dark"> <Navbar.Brand href="/">MovieDB</Navbar.Brand> <Form inline> <FormControl type="text" value={value} onChange={(e) => setValue(e.target.value)} placeholder="Search" className="mr-sm-2" /> <Link to={`/search?query=${value}`}> {" "} <Button variant="outline-info" onClick={setParams}> Search </Button> </Link> </Form> </Navbar> </div> ); } export default Header; <file_sep>/src/App.js import React from "react"; import "./App.css"; import Header from "./Header"; import "bootstrap/dist/css/bootstrap.min.css"; import Home from "./Home"; import { Switch, Route } from "react-router-dom"; import VideoPlayer from "./Videoplayer"; import Search from "./Search"; function App() { return ( <div className="App"> <Header /> <Switch> <Route exact path="/" component={Home} /> <Route path="/videoplayer/:id" component={VideoPlayer} /> <Route exact path="/search" component={Search} /> <Route path="/videoplayer/search" component={Search} /> </Switch> </div> ); } export default App;
c35f49f79fb2e8250faf346d22501685f69382c2
[ "JavaScript" ]
4
JavaScript
Abhijeet05061998/movie_searching
6784afbd94aeb9c77949996ddd6f939d01a7f0da
7523569c0b4caa48b24a9608084dcb90d9787a74
refs/heads/master
<file_sep>python serveur.py & python react.py & python Voice.py &<file_sep>#!/bin/python # -*- coding: utf-8 -*- ''' Faire un programme qui se connecte à la web-camera, envoie les images sur angus.ai et affiche une publicité homme /ou/ femme selon le sexe de la personne qui se présente devant la caméra. Site développeur angus.ai: http://angus-doc.readthedocs.io/en/latest/ ''' #!/usr/bin/env python import StringIO import angus import numpy as np import cv2 import Queue import StringIO import wave import time import tornado.httpclient import urllib http_client = tornado.httpclient.HTTPClient() def handle_request(): pass def post(gender): post_data = { 'react': gender } #A dictionary of your post data body = urllib.urlencode(post_data) #Make it into a post request http_client.fetch("http://localhost:8889/data/", method='POST', headers=None, body=body) if __name__ == '__main__': ### Web cam index might be different from 0 on your setup. stream_index = 0 cap = cv2.VideoCapture(stream_index) ### Index will differ depending on your system INDEX = 4 # USB Cam if not cap.isOpened(): print "Cannot open stream of index " + str(stream_index) exit(1) print "Video stream is of resolution " + str(cap.get(3)) + " x " + str(cap.get(4)) conn = angus.connect() service = conn.services.get_service("age_and_gender_estimation", version=1) service.enable_session() """ p = pyaudio.PyAudio() streamaudio = p.open(format=FORMAT, channels=CHANNELS, rate=RATE, input=True, frames_per_buffer=CHUNK, input_device_index=INDEX, stream_callback=callback) conn1 = angus.connect() service1 = conn.services.get_service('sound_detection', version=1) service1.enable_session() stream_queue = Queue.Queue() streamaudio.start_stream() """ while(cap.isOpened()): ret, frame = cap.read() if not frame == None: gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY) ret, buff = cv2.imencode(".png", gray) buff = StringIO.StringIO(np.array(buff).tostring()) job = service.process({"image": buff}) res = job.result if res['nb_faces'] > 0: for i in range(0,res['nb_faces']): roi = res['faces'][i]['roi'] cv2.rectangle(frame, (int(roi[0]), int(roi[1])), (int(roi[0] + roi[2]), int(roi[1] + roi[3])), (0,255,0)) age = res['faces'][i]['age'] gender = res['faces'][i]['gender'] cv2.putText(frame, "(age, gender) = (" + '%.1f'%age + ", " + str(gender) + ")", (int(roi[0]), int(roi[1])), cv2.FONT_HERSHEY_SIMPLEX, 0.8, (255, 255, 255)) post(gender) """ if gender == "male": img = cv2.imread("homme.jpg",0) cv2.imshow("pub",img ) elif gender == "female": img1 = cv2.imread("femme.jpg",0) cv2.imshow("pub",img1 ) """ cv2.imshow('Original', frame) if cv2.waitKey(1) & 0xFF == ord('q'): break service.disable_session() cap.release() cv2.destroyAllWindows() <file_sep># Serveur je suis une camera<file_sep>import tornado.ioloop import tornado.web import logging import time import cv2 # import video import StringIO import wave import time import angus import base64 import zlib import subprocess import os def decode_output(sound, filename): sound = base64.b64decode(sound) sound = zlib.decompress(sound) with open(filename, "wb") as f: f.write(sound) conn = angus.connect() service = conn.services.get_service('text_to_speech', version=1) class MainHandler(tornado.web.RequestHandler): # self.last_react=0 # self.last_voice=0 # self.gender="" def initialize(self, database): self.database = database def post(self): r= self.request.body req, value= r.split("=") if req == "react": self.database["last_react"]=time.time() self.database["gender"]=value else: self.database["last_voice"]=time.time() diff = self.database["last_react"] - self.database["last_voice"] diff=abs(diff) # print "last_react", self.database["last_react"] # print "last_voice", self.database["last_voice"] # print diff # print req if diff < 10 and self.database["last_voice"] != 0 and self.database["last_react"] != 0: t= time.time() timediff= t - self.database["timeout"] # print "timediff",timediff if timediff < 5 : return self.database["timeout"]=t print "SYNC",self.database["gender"] if self.database["gender"] == "male": img = cv2.imread("homme.jpg",0) cv2.imshow("pub",img ) phrase= "Hi man, Look at this beautiful watch!! I'm sure it look very good on you! You have to buy it!" elif self.database["gender"] == "female": img1 = cv2.imread("femme.jpg",0) cv2.imshow("pub",img1 ) phrase= "Hi girl, Look at this beautiful watch!! I'm sure it look very good on you! You have to buy it!" cv2.waitKey(1) if self.database["lastgender"] != self.database["gender"] : job = service.process({'text': phrase, 'lang' : "en-US"}) decode_output(job.result["sound"], "output.wav") subprocess.Popen(["/usr/bin/aplay","./output.wav"]) # video.play() subprocess.Popen(["python", "video.py"]) # os.system("python video.py") self.database["lastgender"]= self.database["gender"] mydatabase = dict() mydatabase["last_react"]=0 mydatabase["last_voice"]=0 mydatabase["gender"]="" mydatabase["timeout"]=0 mydatabase["lastgender"]="" def make_app(): return tornado.web.Application( [(r"/data/", MainHandler, dict(database=mydatabase) )] ) if __name__ == "__main__": logging.basicConfig() app = make_app() app.listen(8889) tornado.ioloop.IOLoop.current().start() <file_sep>#!/usr/bin/env python # -*- coding: utf-8 -*- import Queue import StringIO import wave import time import angus import pyaudio import base64 import zlib import subprocess CHUNK = 8192 FORMAT = pyaudio.paInt16 CHANNELS = 1 RATE = 48000 RECORD_SECONDS = 2 def decode_output(sound, filename): sound = base64.b64decode(sound) sound = zlib.decompress(sound) with open(filename, "wb") as f: f.write(sound) ### Index will differ depending on your system INDEX = 4 # USB Cam p = pyaudio.PyAudio() conn = angus.connect() service1 = conn.services.get_service('sound_detection', version=1) service1.enable_session() stream_queue = Queue.Queue() conn1 = angus.connect() service2 = conn.services.get_service('text_to_speech', version=1) def callback(in_data, frame_count, time_info, status): stream_queue.put(in_data) return (in_data, pyaudio.paContinue) stream = p.open(format=FORMAT, channels=CHANNELS, rate=RATE, input=True, frames_per_buffer=CHUNK, input_device_index=INDEX, stream_callback=callback) stream.start_stream() while(True): nb_buffer_available = stream_queue.qsize() if nb_buffer_available > 0: print "nb buffer available" + str(nb_buffer_available) if nb_buffer_available == 0: time.sleep(0.01) continue data = stream_queue.get() buff = StringIO.StringIO() wf = wave.open(buff, 'wb') wf.setnchannels(CHANNELS) wf.setsampwidth(p.get_sample_size(FORMAT)) wf.setframerate(RATE) wf.writeframes(data) wf.close() job = service1.process( {'sound': StringIO.StringIO(buff.getvalue()), 'sensitivity': 0.7}) if job.result["nb_events"]>0: print job.result job = service2.process({'text': "Hi guys, how are you today?", 'lang' : "en-US"}) decode_output(job.result["sound"], "output.wav") subprocess.call(["/usr/bin/aplay", "./output.wav"]) <file_sep>import cv2,random videolist = ["TAGHeuer.avi","TAGHeuer2.avi","TAGHeuer3.avi"] def playfile(filename): video = cv2.VideoCapture(filename) print "Could not open video file" while True: ret, frame = video.read() if ret == True: gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY) cv2.imshow('frame',gray) if cv2.waitKey(30) & 0xFF == ord('q'): break else: break video.release() cv2.destroyAllWindows() def play(): i= random.randint(0,len(videolist)-1) f=videolist[i] print f playfile(f) play()<file_sep>#!/usr/bin/env python # -*- coding: utf-8 -*- import Queue import StringIO import wave import time import angus import pyaudio CHUNK = 8192 FORMAT = pyaudio.paInt16 CHANNELS = 1 RATE = 48000 RECORD_SECONDS = 2 import tornado.httpclient import urllib http_client = tornado.httpclient.HTTPClient() def post(): post_data = { 'data': 'test data' } #A dictionary of your post data body = urllib.urlencode(post_data) #Make it into a post request http_client.fetch("http://localhost:8889/data/", method='POST', headers=None, body=body) print "ok" def decode_output(sound, filename): sound = base64.b64decode(sound) sound = zlib.decompress(sound) with open(filename, "wb") as f: f.write(sound) ### Index will differ depending on your system INDEX = 5 # USB Cam p = pyaudio.PyAudio() info = p.get_host_api_info_by_index(0) numdevices = info.get('deviceCount') #for each audio device, determine if is an input or an output and add it to the appropriate list and dictionary for i in range (0,numdevices): if p.get_device_info_by_host_api_device_index(0,i).get('maxInputChannels')>0: print "Input Device id ", i, " - ", p.get_device_info_by_host_api_device_index(0,i).get('name') if p.get_device_info_by_host_api_device_index(0,i).get('maxOutputChannels')>0: print "Output Device id ", i, " - ", p.get_device_info_by_host_api_device_index(0,i).get('name') devinfo = p.get_device_info_by_index(1) INDEX=i print "Selected device is ",devinfo.get('name') conn = angus.connect() service = conn.services.get_service('sound_detection', version=1) service.enable_session() stream_queue = Queue.Queue() def callback(in_data, frame_count, time_info, status): stream_queue.put(in_data) return (in_data, pyaudio.paContinue) stream = p.open(format=FORMAT, channels=CHANNELS, rate=RATE, input=True, frames_per_buffer=CHUNK, input_device_index=INDEX, stream_callback=callback) stream.start_stream() while(True): nb_buffer_available = stream_queue.qsize() if nb_buffer_available > 0: print "nb buffer available" + str(nb_buffer_available) if nb_buffer_available == 0: time.sleep(0.01) continue data = stream_queue.get() buff = StringIO.StringIO() wf = wave.open(buff, 'wb') wf.setnchannels(CHANNELS) wf.setsampwidth(p.get_sample_size(FORMAT)) wf.setframerate(RATE) wf.writeframes(data) wf.close() job = service.process( {'sound': StringIO.StringIO(buff.getvalue()), 'sensitivity': 0.7}) if job.result["nb_events"]>0: print job.result post() stream.stop_stream() stream.close() p.terminate()
82f2a6224b201c461c60115b9daea8a7d859c4e0
[ "Markdown", "Python", "Shell" ]
7
Shell
BTZEDbalthazar/Serveur
a8cc12b83900f27ba616a55c96daa882ba02e65e
d9bef1a9b65b6de15aaf8a76d34135d2a8a14d04
refs/heads/master
<file_sep>package simple_example; import org.springframework.context.ApplicationContext; import org.springframework.context.annotation.AnnotationConfigApplicationContext; public class MainClass { public static void main(String[] args) { /** * Я так понимаю, что в данном случае контекст спринга * будет формироваться по нашим аннотациям. * Альтернативный вариант - подложить xml и тогда * будет другой креатор контекста */ ApplicationContext context = new AnnotationConfigApplicationContext("simple_example"); Cat cat = context.getBean(Cat.class); Dog dog = context.getBean(Dog.class); System.out.println(cat.name); System.out.println(dog.name); } }
382ce750091caef16abd6d61fe00ef517743b191
[ "Java" ]
1
Java
ciscoff/sy_spring_test
71e0630693bd241e000f86df0e2cf88110b62eda
fbb123185515378a22ae5c0a52ef782256c27281
refs/heads/master
<repo_name>ericasu33/snake-client<file_sep>/constants.js const IP = "192.168.3.11"; const PORT = "50542"; const moves = { "w": "Move: up", "a": "Move: left", "s": "Move: down", "d": "Move: right", "z": "Say: Hellooo", }; module.exports = { IP, PORT, moves };
a5f845743d86fc7b284c00e360e736bd0247e229
[ "JavaScript" ]
1
JavaScript
ericasu33/snake-client
8a9efe2d164623246f5c7db5b2bd18cdc3d416c9
4d20c44380a3c751a02a7efbe6c79d3a48defd04
refs/heads/master
<file_sep>target 'DWFlashFlow' do pod 'DWNetworkAFNManager', '~> 1.0.0' end <file_sep>Pod::Spec.new do |s| s.name = 'DWFlashFlow' s.version = '1.0.2.4' s.license = { :type => 'MIT', :file => 'LICENSE' } s.summary = '网络请求库,核心基于AFN3.0,实现批量请求、链请求及依赖请求。Network request library, core based on AFN3.0, implements batch request, chain request and dependency request.' s.homepage = 'https://github.com/CodeWicky/DWFlashFlow' s.authors = { 'codeWicky' => '<EMAIL>' } s.source = { :git => 'https://github.com/CodeWicky/DWFlashFlow.git', :tag => s.version.to_s } s.requires_arc = true s.ios.deployment_target = '7.0' s.source_files = 'DWFlashFlow/**/{DWFlashFlow,DWFlashFlowManager,DWFlashFlowBaseLinker,DWFlashFlowAFNLinker,DWFlashFlowAbstractRequest,DWFlashFlowRequest,DWFlashFlowBatchRequest,DWFlashFlowChainRequest,DWFlashFlowCache}.{h,m}' s.frameworks = 'UIKit' s.dependency 'DWNetworkAFNManager', '~> 1.0.0' end
1456bb6c136b186215e3481a018336275d82164b
[ "Ruby" ]
2
Ruby
wobangnidashui/DWFlashFlow
e492e99f7bf17cc916c33a5176855107d7902559
cbbe2efbd0c2f0986ed74f722864cb4ee3c26778
refs/heads/master
<file_sep>import React, { Component } from 'react'; import grapesjs from 'grapesjs'; import basic from 'grapesjs-blocks-basic' import forms from 'grapesjs-plugin-forms' import exportTemplate from 'grapesjs-plugin-export' import './Gjs.css'; class Gjs extends Component { render() { this.do = grapesjs.init({ container : '#gjs', components: '<div class="txt-red">Hello world!</div>', height: '100%', style: '.txt-red{color: red}', plugins: ['gjs-blocks-basic','gjs-plugin-forms', 'gjs-plugin-export'], pluginsOpts: { 'gjs-blocks-basic': {}, 'gjs-plugin-forms': {}, 'gjs-plugin-export': { btnLabel: 'EXPORT', preHtml: '<!doctype><html><head><link rel="stylesheet" href="./css/style.css"></head><body>' } }, storageManager: {autoload: 0} }); return ( <div ref="this.do"></div> ); } } export default Gjs;
0f70adf29776f76a7c779bdd033b7319b58b1b30
[ "JavaScript" ]
1
JavaScript
pranalipatil209/grapesReact
dc86a7fd11e7793a424a40f0b1391f37abfc91b5
d1ded860d1394a0a37884e7c93cb6413dfab7af3
refs/heads/master
<file_sep>import {CommonValidationMessagesService, FormErrorsUtil, FormGroupFinalErrorsMessages, FormGroupValidationErrorsMessages} from '@abpe/core'; import {Component, OnDestroy, OnInit} from '@angular/core'; import {FormBuilder, FormControl, FormGroup, ValidationErrors, Validators} from '@angular/forms'; import {merge, Observable, of, Subject, Subscription, zip} from 'rxjs'; import {debounceTime, distinctUntilChanged, map, mergeMap, tap} from 'rxjs/operators'; import { DEBOUNCE_TIME, INTEGER_PATTERN, MAX_POSSIBLE_AGE, MIN_POSSIBLE_AGE, PWD_MIN_LENGTH, USERNAME_PATTERN, } from '../../connection.constant'; import {ConnectionService} from '../../services'; import {ConnectionFacade} from '../../state'; import {PasswordValidators, PasswordValidatorsMessagesService, UsernameValidatorsMessagesService} from '../../validators'; import {UsernameValidators} from '../../validators/username/username-validators'; @Component({ selector: 'cnx-page-one', templateUrl: './page-one.component.html', styleUrls: ['./page-one.component.scss'], }) export class PageOneComponent implements OnInit, OnDestroy { display: string; // Form information form: FormGroup; username: FormControl; password: FormControl; age: FormControl; // contains the error messages related to the form inputs validationErrorMessages: FormGroupValidationErrorsMessages; // listeners over some form values that will avoid // to trigger action after each key strike private usernameSubject = new Subject<string>(); private passwordSubject = new Subject<string>(); private ageSubject = new Subject<number>(); // boolean to indicate whether the form was sumitted sucessfully isFormSubmittedSuccessfully = false; // object containing the different form errors formErrors: {[key: string]: string}; // password suffix for validation pwdSuffix = 'py'; // username string to be contained for validation usernameContent = 'ngx'; // we add all the subscriptions here to unsubscribe them at once // when destroying the component private subscriptions: Subscription = new Subscription(); //////////////////////////////////////////////////////////////////////////////// /////////////////////////////// Constructor /////////////////////// //////////////////////////////////////////////////////////////////////////////// constructor( private connectionService: ConnectionService, private formBuilder: FormBuilder, private commonValidationMessages: CommonValidationMessagesService, private facade: ConnectionFacade, private passwordValidatorsMessagesService: PasswordValidatorsMessagesService, private usernameValidatorsMessagesService: UsernameValidatorsMessagesService ) {} //////////////////////////////////////////////////////////////////////////////// /////////////////////////////// Component hooks /////////////////////// //////////////////////////////////////////////////////////////////////////////// ngOnInit(): void { // just to demonstrate the use of an Injectable service this.display = this.connectionService.calculate(); // initialize the form this.initForm(); // we initialize the subjects this.initSubjects(); } ngOnDestroy(): void { this.subscriptions.unsubscribe(); } //////////////////////////////////////////////////////////////////////////////// /////////////////////////////// Form initialisation /////////////////////// //////////////////////////////////////////////////////////////////////////////// private initFormControls(): void { this.username = this.formBuilder.control(null, [ Validators.required, Validators.pattern(USERNAME_PATTERN), UsernameValidators.containsValidator(this.usernameContent), ]); this.password = this.formBuilder.control(null, [ Validators.required, Validators.minLength(PWD_MIN_LENGTH), PasswordValidators.beginWithValidator(this.pwdSuffix), ]); this.age = this.formBuilder.control(null, [ Validators.required, Validators.min(MIN_POSSIBLE_AGE), Validators.max(MAX_POSSIBLE_AGE), Validators.pattern(INTEGER_PATTERN), ]); } /** * Building all the needed validation messages for each form control * that needs it */ private buildValidationErrors(): void { const usernameValidatorMessagesObservable: Observable<{ contains: (validationErrors: ValidationErrors) => string; }> = this.usernameValidatorsMessagesService.contains(); const passwordValidatorsMessagesBeginsWithObservable: Observable<{ beginsWith: (validationErrors: ValidationErrors) => string; }> = this.passwordValidatorsMessagesService.beginsWith(); const validationMessagesObservable: Observable<{[key: string]: any}> = this.commonValidationMessages.validationMessages; const buildValidationErrorsSubscription: Subscription = zip( usernameValidatorMessagesObservable, passwordValidatorsMessagesBeginsWithObservable, validationMessagesObservable ).subscribe(([usernameValidatorMessages, passwordValidatorsMessagesBeginsWith, validationMessages]) => { this.validationErrorMessages = { username: { ...validationMessages.required, ...validationMessages.invalid, contains: usernameValidatorMessages.contains({ value: this.username ? this.username.value : null, content: this.usernameContent, }), }, password: { ...validationMessages.required, minlength: validationMessages.length.minlength.minlength({requiredLength: PWD_MIN_LENGTH}), ...passwordValidatorsMessagesBeginsWith, }, age: { ...validationMessages.required, ...validationMessages.numbers.integer.pattern, ...validationMessages.numbers.min, ...validationMessages.numbers.max, }, }; }); this.subscriptions.add(buildValidationErrorsSubscription); } /** * Initializes the errors listener */ initErrorsListener(): void { const errorsSubscription = merge(this.form.statusChanges, this.form.valueChanges) .pipe( mergeMap(() => of(FormErrorsUtil.aggregateErrorsMessages(this.form, this.validationErrorMessages))), mergeMap((errorMessages: FormGroupFinalErrorsMessages) => { // we process the error message to return, for each formcontrol, // only a string containing the first error message const newErrorMessages = {}; Object.keys(errorMessages).map((key: string) => { newErrorMessages[key] = errorMessages[key][0]; }); return of(newErrorMessages); }) ) .subscribe(formErrors => { this.formErrors = formErrors; }); this.subscriptions.add(errorsSubscription); } private initForm(): void { // initialize the validation error messages this.buildValidationErrors(); this.initFormControls(); // we initialize the Group from this.form = this.formBuilder.group({ username: this.username, password: <PASSWORD>, age: this.age, }); // initialize the errors listener this.initErrorsListener(); // force the value update of formErrors => by being into the subscribe this.form.updateValueAndValidity(); } //////////////////////////////////////////////////////////////////////////////// /////////////////////////////// Input changes /////////////////////// //////////////////////////////////////////////////////////////////////////////// onChangeUsername(): void { // we reset isFormSubmittedSuccessfully at any change this.isFormSubmittedSuccessfully = false; if (this.username.valid) { const newUsernameValue = this.username.value; this.usernameSubject.next(newUsernameValue); } } onChangePassword(): void { // we reset isFormSubmittedSuccessfully at any change this.isFormSubmittedSuccessfully = false; if (this.password.valid) { const newPasswordValue = this.password.value; this.passwordSubject.next(newPasswordValue); } } onChangeAge(): void { // we reset isFormSubmittedSuccessfully at any change this.isFormSubmittedSuccessfully = false; if (this.age.valid) { const newAgeValue = this.age.value; this.ageSubject.next(newAgeValue); } } //////////////////////////////////////////////////////////////////////////////// /////////////////////////////// Initialize subjects /////////////////////// //////////////////////////////////////////////////////////////////////////////// commonInitSubject(subject: Subject<any>): Observable<number | string> { return subject.pipe( // wait 400ms after each keystroke before considering the term debounceTime(DEBOUNCE_TIME), // ignore new term if same as previous term distinctUntilChanged() ); } /** * Initialize the different subjects for every input */ private initSubjects(): void { this.initUsernameSubject(); this.initPasswordSubject(); this.initAgeSubject(); } initAgeSubject(): void { const subscription = this.commonInitSubject(this.ageSubject).subscribe((age: number) => { // update the state this.facade.updateAge(age); }); this.subscriptions.add(subscription); } initPasswordSubject(): void { const subscription = this.commonInitSubject(this.passwordSubject).subscribe((password: string) => { // update the state this.facade.updatePassword(password); }); this.subscriptions.add(subscription); } initUsernameSubject(): void { const subscription = this.commonInitSubject(this.usernameSubject).subscribe((username: string) => { // update the state this.facade.updateUsername(username); }); this.subscriptions.add(subscription); } //////////////////////////////////////////////////////////////////////////////// /////////////////////////////// Form submission /////////////////////// //////////////////////////////////////////////////////////////////////////////// onSubmit(): void { // force the value update of formErrors => by being into the subscribe this.form.updateValueAndValidity(); if (this.form.valid) { this.isFormSubmittedSuccessfully = true; } else { this.isFormSubmittedSuccessfully = false; } } //////////////////////////////////////////////////////////////////////////////// /////////////////////////////// Navigation /////////////////////// //////////////////////////////////////////////////////////////////////////////// goToPageTwo() { this.facade.goToPageTwo(); } } <file_sep>export * from './common-validation-messages.service'; <file_sep>export * from './form-errors.util'; <file_sep>import {async, TestBed} from '@angular/core/testing'; import {FormControl, ValidationErrors} from '@angular/forms'; import * as TRANSLATIONS_EN from '@i18n/common/en.json'; import {TranslateTestingModule} from 'ngx-translate-testing'; import {PasswordValidators, PasswordValidatorsMessagesService} from './password-validators'; const prefix = 'my-prefix'; describe('PasswordValidators', () => { describe('#beginWithValidator', () => { test('should return null for valid control', async(() => { const formValue = `${prefix}-my-value`; const validFormControl: FormControl = new FormControl(formValue, PasswordValidators.beginWithValidator(prefix)); expect(validFormControl.errors).toEqual(null); })); test('should return the invalid control information', () => { const formValue = `uncorrect-value`; const expectedErrors = { beginsWith: { value: formValue, prefix, }, }; const validFormControl: FormControl = new FormControl(formValue, PasswordValidators.beginWithValidator(prefix)); expect(validFormControl.errors).toEqual(expectedErrors); }); }); }); describe('PasswordValidatorsMessages', () => { let passwordValidatorsMessagesService: PasswordValidatorsMessagesService; beforeEach(async(() => { TestBed.configureTestingModule({ imports: [TranslateTestingModule.withTranslations('fr', TRANSLATIONS_EN)], providers: [PasswordValidatorsMessagesService], }); })); // initialize services beforeEach(() => { passwordValidatorsMessagesService = TestBed.get(PasswordValidatorsMessagesService); }); describe('#beginsWith', () => { test('should match snapshot when value inquired', async(() => { const value = 'my-value'; const validationErrors: ValidationErrors = { value, prefix, }; passwordValidatorsMessagesService .beginsWith() .subscribe((passwordValidatorsMessages: {beginsWith: (validationErrors: ValidationErrors) => string}) => { expect(passwordValidatorsMessages.beginsWith(validationErrors)).toMatchSnapshot(); }); })); test('should match snapshot when value not inquired', async(() => { const validationErrors: ValidationErrors = { prefix, }; passwordValidatorsMessagesService .beginsWith() .subscribe((passwordValidatorsMessages: {beginsWith: (validationErrors: ValidationErrors) => string}) => { expect(passwordValidatorsMessages.beginsWith(validationErrors)).toMatchSnapshot(); }); })); }); }); <file_sep>import {LanguageUtilsService} from './language-utils.service'; describe('LanguageUtilsService', () => { describe('#httpLoaderFactory', () => { test('should return a function', () => { const httpLoaderFactory = LanguageUtilsService.httpLoaderFactory(); expect(httpLoaderFactory).toEqual(jasmine.any(Function)); }); test('should call multiHttpLoaderFactory with one parameter', () => { const translateDirectory = 'custom-module'; spyOn(LanguageUtilsService, 'multiHttpLoaderFactory'); LanguageUtilsService.httpLoaderFactory(translateDirectory); expect(LanguageUtilsService.multiHttpLoaderFactory).toHaveBeenNthCalledWith(1, [translateDirectory]); }); }); describe('#multiHttpLoaderFactory', () => { test('should return a function', () => { const multiHttpLoaderFactory = LanguageUtilsService.multiHttpLoaderFactory(); expect(multiHttpLoaderFactory).toEqual(jasmine.any(Function)); }); }); }); <file_sep>import {async, ComponentFixture, TestBed} from '@angular/core/testing'; import {RouterTestingModule} from '@angular/router/testing'; import * as TRANSLATIONS_EN from '@i18n/connection/en.json'; import {Store} from '@ngxs/store'; import {TranslateTestingModule} from 'ngx-translate-testing'; import {CONNECTION_PATH} from '../../services/token'; import {ConnectionFacade} from '../../state'; import {PageTwoComponent} from './page-two.component'; describe('PageTwoComponent', () => { let component: PageTwoComponent; let fixture: ComponentFixture<PageTwoComponent>; beforeEach(async(() => { const storeMock = jest.fn(); const facadeMock = jest.fn(); TestBed.configureTestingModule({ imports: [RouterTestingModule, TranslateTestingModule.withTranslations('fr', TRANSLATIONS_EN)], declarations: [PageTwoComponent], providers: [ { provide: CONNECTION_PATH, useValue: '', }, { provide: Store, useValue: storeMock, }, { provide: ConnectionFacade, useValue: facadeMock, }, ], }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(PageTwoComponent); component = fixture.componentInstance; fixture.detectChanges(); }); test('should create', () => { expect(component).toBeTruthy(); }); test('should match snapshot', () => { expect(fixture).toMatchSnapshot(); }); }); <file_sep>import {async, TestBed} from '@angular/core/testing'; import {Navigate} from '@ngxs/router-plugin'; import {Store} from '@ngxs/store'; import {ROUTES_PATHS} from '../connection.constant'; import {CONNECTION_PATH} from '../services'; import {UpdateAge, UpdatePassword, UpdateUsername} from './connection.action'; import {ConnectionFacade} from './connection.facade'; describe('ConnectionFacade', () => { let connectionFacade: ConnectionFacade; let store: Store; const connectionPath = 'connection'; beforeEach(async(() => { // we mock the store => no need to inject the Ngxs module const storeMock = jest.fn(() => ({ dispatch: jest.fn(), }))(); TestBed.configureTestingModule({ providers: [{provide: CONNECTION_PATH, useValue: connectionPath}, {provide: Store, useValue: storeMock}, ConnectionFacade], }); })); beforeEach(async(() => { connectionFacade = TestBed.get(ConnectionFacade); store = TestBed.get(Store); })); test('should create', () => { expect(connectionFacade).toBeTruthy(); }); describe('State update', () => { describe('updateUsername', () => { test('should dispatch UpdateUsername', () => { const username = 'username'; connectionFacade.updateUsername(username); expect(store.dispatch).toBeCalledTimes(1); expect(store.dispatch).toBeCalledWith(new UpdateUsername(username)); }); }); describe('updatePassword', () => { test('should dispatch UpdatePassword', () => { const password = '<PASSWORD>'; connectionFacade.updatePassword(password); expect(store.dispatch).toBeCalledTimes(1); expect(store.dispatch).toBeCalledWith(new UpdatePassword(password)); }); }); describe('updateAge', () => { test('should dispatch UpdateAge', () => { const age = 13; connectionFacade.updateAge(age); expect(store.dispatch).toBeCalledTimes(1); expect(store.dispatch).toBeCalledWith(new UpdateAge(age)); }); }); }); describe('Navigation', () => { describe('goToPageOne', () => { test('should dispatch Navigate with page one path', () => { connectionFacade.goToPageOne(); expect(store.dispatch).toBeCalledTimes(1); expect(store.dispatch).toBeCalledWith(new Navigate([connectionPath, ROUTES_PATHS.pageOne])); }); }); describe('goToPageTwo', () => { test('should dispatch Navigate with page two path', () => { connectionFacade.goToPageTwo(); expect(store.dispatch).toBeCalledTimes(1); expect(store.dispatch).toBeCalledWith(new Navigate([connectionPath, ROUTES_PATHS.pageTwo])); }); }); }); }); <file_sep>import {ConnectionModule} from '@abpe/connection'; import {CoreModule, InitializeCurrentLanguage, LanguageState, LanguageUtilsService} from '@abpe/core'; import {HttpClient} from '@angular/common/http'; import {CUSTOM_ELEMENTS_SCHEMA, NgModule} from '@angular/core'; import {BrowserModule} from '@angular/platform-browser'; import {TranslateLoader, TranslateModule, TranslateService} from '@ngx-translate/core'; import {NgxsReduxDevtoolsPluginModule} from '@ngxs/devtools-plugin'; import {NgxsLoggerPluginModule} from '@ngxs/logger-plugin'; import {NgxsRouterPluginModule} from '@ngxs/router-plugin'; import {NgxsModule, Store} from '@ngxs/store'; import {environment} from '../environments/environment'; import {AppRoutingModule} from './app-routing.module'; import {AppComponent} from './app.component'; @NgModule({ declarations: [AppComponent], imports: [ BrowserModule, AppRoutingModule, CoreModule, ConnectionModule.forRoot({...environment.connection, basePath: ''}), NgxsModule.forRoot([], {developmentMode: !environment.production}), NgxsLoggerPluginModule.forRoot({disabled: environment.production}), NgxsReduxDevtoolsPluginModule.forRoot({disabled: environment.production}), NgxsRouterPluginModule.forRoot(), TranslateModule.forRoot({ loader: { provide: TranslateLoader, useFactory: LanguageUtilsService.multiHttpLoaderFactory(['common', 'connection']), deps: [HttpClient], }, }), ], providers: [], bootstrap: [AppComponent], schemas: [CUSTOM_ELEMENTS_SCHEMA], }) export class AppModule { constructor(private translationService: TranslateService, private store: Store) { // we dispatch an action to insitalize the language state this.store.dispatch(new InitializeCurrentLanguage()); const defaultLanguage: string = this.store.selectSnapshot(LanguageState.defaultLanguage); this.translationService.setDefaultLang(defaultLanguage); this.store.select(LanguageState.currentLanguage).subscribe((currentLanguage: string) => { this.translationService.use(currentLanguage); }); } } <file_sep>This project is aimed to be the support example of a [tutorial](https://github.com/haythem-ouederni/ng-best-practices/issues/1) walking you through best practices of front-end development (web/mobile) with a concrete example based on an [Angular](https://angular.io/) project. To see **tutorial** come as soon as possible you can [vote here](https://github.com/haythem-ouederni/ng-best-practices/issues/1). # Introduction This project is the result of my experience working on helping startups and more traditional industries (in finance and aerospatial) defining and developing their front-end projects (web and mobule). I have noticed, that every time, one of the most difficult parts when launching a product is defining the best practices and finding the best tools to put in place the development workflow. So I have decided to create this project, to be a concentrate of best practices ready to use out of the box and that may save developers and spetially tech-leads/technical-architects days and even months of hard work to find and define the best workflow for their projects. This project/tutorial main focus is development best practices. So, for the beginning, it won't include any material related to [Continuous Integration](https://fr.atlassian.com/continuous-delivery/continuous-integration) or application deployment. **Notice 1:** Many of the best practices present in this project are, as mentioned before, general to front-end development and even to development in general (not only front-end), so even if you are not using Angular in your project you can walk through it to get some interesting ideas. **Notice 2:** You can see the content of different project commits to have an idea of the evolution of the project and the steps to add/include a specific tool, library or pattern to the project. # Angular Best Practices Example project This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 7.3.1. For this project I mainly use [Yarn](https://yarnpkg.com). But you can run the same scripts/commands using [npm](https://www.npmjs.com/). For example to start the project using `yarn` you run `yarn start`. To do the same thing using `npm` you can run `npm run start`. ## Before you start: Prerequisites To be able to launch this project you need to install: - [Node.js](https://nodejs.org) (mandatory) - [npm](https://www.npmjs.com/): it can be installed with NodeJs (mandatory) - [yarn](https://yarnpkg.com): if you want to use is instead of `npm` to run different scripts. (optional) - the IDE or Code editor of you choice. I can suggest you the use of [VS Code](https://code.visualstudio.com/) which is Free and very practical for front-end development and comes with many helpful plugins. You may also want to use [WebStorm](https://www.jetbrains.com/webstorm/) which is **not free**. At the same time you have a free 30-day trial to test it. There is an other option which is [Atom](https://atom.io/). So it is up to you to choose which tool suits you most. Before being able to start the project, you have to install the different dependencies/libraries. To do so run: ```` script # if npm npm install # if yarn yarn ```` ## Optional tools Here is a list of optional tools you may need in general for your projects' development: - [git](https://git-scm.com/): for source control and be able to share code with other co-workers or just store your code and have access to the history of your project evolution - [SourceTree](https://www.sourcetreeapp.com/): a very user friendly and visual tool to handle your source control ## Git Branches The main branch where you can find the latest working and tested code is the [master](https://github.com/haythem-ouederni/ng-best-practices). You can follow the day to day commits and development on the [develop](https://github.com/haythem-ouederni/ng-best-practices/tree/develop) branch. A tagging system will come along different upgrades and releases of the project. ## Development server Run `yarn start` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files. ## Code scaffolding Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`. ## Build Run `yarn build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build. ## Running unit tests Actually, a default [angular-cli](https://cli.angular.io/) generated project uses [Karma](https://karma-runner.github.io/latest/index.html) tool for unit testing. The problem with Karma (it can be an advantage in some cases), is that it needs to launch a browser to run a test which in many cases is not necessary and at the same time extends the test execution time. In addition, you may have Continuous Integration integrated to you development/delivery process that runs on an environment where you can have a browser. There is an interesting alternative to `Karma` which is [Jest](https://jestjs.io/). It makes it faster and easier to write tests. No browser is needed. It comes with built-in mocking and assertion abilities. In addition, Jest runs your tests concurrently in parallel, providing a smoother, faster test run. [jest-preset-angular](https://github.com/thymikee/jest-preset-angular) : Used to make the jest configuration easier. The actual used version is 6.0.2, so documentation and the configuration will be different for the futur versions of this library. Run `yarn test:all` to execute the unit tests via Jest on the whole project. If you want to run unit tests in a specific project like the `connection` project run `yarn test:connection`. Don't forget to add the needed script to your `package.json` file in addiion to the matching jest configuration file to be able to launch test on a new library. You can take the example of how it is done for the `connection` library. You can also launch you tests and watch for changes by running for exmaple `yarn test:all:watch`. **VS Code and Jest debug:** If you use [VS Code](https://code.visualstudio.com/), you can debug your Jest based unit tests by adding a `launch.json` file under your `.vscode` folder (you can find an example file in the actual repo). The debugger will use the built-in Node debugger. A more complete documentation can be fond [here](https://github.com/Microsoft/vscode-recipes/tree/master/debugging-jest-tests). ## Running end-to-end tests Run `yarn e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/). ## Imports If we want to import a component from `connection` library we can use the `@connection` annotation. Example : `import { ConnectionModule } from '@connection'`; This is possible thanks to the adding of the `paths` attribute to the `tsconfig.json` file. ```` json "compilerOptions": { ..., "paths": { "@connection": [ "projects/connection/src/public_api" ], ... }, ... } ```` If we want to get more specific about the path (for example in case of a circular dependancy), we can add an other path to the `tsconfig.json` file like follow : ```` json "compilerOptions": { ..., "paths": { "@connection": [ "projects/connection/src/public_api" ], "@connection/*": [ "projects/connection/src/*" ] ... }, ... } ```` It will allow as to import components or other angular exported functionalities like the following example : Example : `import { ConnectionComponent } from '@connection/lib/modules/main/pages';`; ## Git To make sure that developers follow a precise worklow while commiting and pushing the code, so that you don't have to do verfications and run scripts manually, the following tools are very useful : * [cz-cli](https://github.com/commitizen/cz-cli): When you commit with Commitizen, you'll be prompted to fill out any required commit fields at commit time In `package.json` you add : ```` json "scripts" { "commit": "git-cz", ... } ```` So when you run `yarn commit` the `cz-cli` is used. So no more direct `git commit`. * [cz-customizable](https://github.com/leonardoanalista/cz-customizable): The customizable Commitizen plugin to help achieve consistent commit messages like the AngularJS team. It comes to complete the `cz-cli` plugin. In `package.json` you add : ```` json "config": { "commitizen": { "path": "node_modules/cz-customizable" }, "cz-customizable": { "config": "path/to/custom/cz-config.js" } }, ... ```` If you don't give any custom file in the configuration (`config.cz-customizable.config`), the `.cz-config.js` file present at the root of the project will be used. **Note:** To be able to use [VS Code](https://code.visualstudio.com/) to edit git commit comments or other file manipulation tasks instead of default `vim` you can run `git config --global core.editor "code --wait"` at the condiction that VS Code is available from commande line (you can check it by running `code --help`). More information [here](https://stackoverflow.com/questions/30024353/how-to-use-visual-studio-code-as-default-editor-for-git). * [husky](https://github.com/typicode/husky): to easily edit git hooks Add the `husky` configuration at the root of the `package.json` file : ```` json "husky": { "hooks": { "pre-commit": "yarn lintstaged", "prepush": "yarn prod" } } ```` If you want to skip the hools just add the `--no-verify` flag to your git command. Example: `git push --no-verify` * [commitlint/cli](https://github.com/conventional-changelog/commitlint): As its name incdicates, this tool gives you the possibility to add an other check on the commit messages and if the meet the [conventional commit format](https://www.conventionalcommits.org/en/v1.0.0-beta.3/) or the conventions you have defined yourself. So to the already defined `husky` hooks configuration, you can add the `commit-msg` hook : ```` json "husky": { "hooks": { ..., "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } } ```` `commit-msg` hook allows you to lint commits before they are created. You can add a `commitlint.config.js` file at the root of the project, to define linting rules/conventions. `commitlint.config.js` example: ```` javascript module.exports = { // we use the default @commitlint/config-conventional rules. // you have to install @commitlint/config-conventional library to be able to use it. extends: ['@commitlint/config-conventional'], // Any rules defined here will override rules from @commitlint/config-conventional // => custom rules rules: { 'header-max-length': [2, 'always', 100], 'subject-case': [ 2, 'never', ['sentence-case', 'start-case', 'pascal-case', 'upper-case'] ], ... } }; ```` **Note:** If you want to retry a commit so that you don't have to re-enter the same information again just run `yarn commit:retry`. ## Routing The angular's [RouterModule](https://angular.io/api/router/RouterModule) was used. The [angular's documentation](https://angular.io/tutorial/toh-pt5) is very complete and I advise you to take a look at it. In this project, I have made the choice that for the `app` (standalone) project(s), I use the direct routing/loading. In the other hand, for the main app (root app) the module are lazy loaded and it affects the way the routing works. To see how how, the lzay loading is dealt with you can take a look at the `src/app/lazy` directory where the lazy loaded modules are defined. Then these modules are "really" lazy loaded within the `src/app/app-routing.module.ts` file. For each lazy loaded module, a path is defined. This path must preceed all the paths defined in the original module. Exemple: Suppose that in your orignal module you access the `page-one` content via the url `localhost:4200/page-one` when you direct load it (like in the app/standalone project). At the same time, the path you have defined to lazy load the same module is `my-lazy-loaded-path`. So to access the same content/page, you should use the url `localhost:4200/my-lazy-loaded-path/page-one` instead. And here to make my module work while lazy loaded or direct loaded, a combination of `forRoot` method over the loaded module and environment variables is used. ## Reactive forms When it comes to manipulating forms, in angular you have the choice between [Reactive forms](https://angular.io/guide/reactive-forms) and [Template-driven forms](https://angular.io/guide/forms). In the official [Angular documentation](https://angular.io/guide/forms-overview) you can find: - Reactive forms are more robust: they're more scalable, reusable, and testable. If forms are a key part of your application, or you're already using reactive patterns for building your application, use reactive forms. - Template-driven forms are useful for adding a simple form to an app, such as an email list signup form. They're easy to add to an app, but they don't scale as well as reactive forms. If you have very basic form requirements and logic that can be managed solely in the template, use template-driven forms. You can find a table of key differences [here](https://angular.io/guide/forms-overview#key-differences). For this project, I have chosen to use [Reactive forms](https://angular.io/guide/reactive-forms) for all the advantages it comes with like having a strcutered data model or taking advantage of synchronicity between your template (view/html) and you controller (component class/model). Besides, generally, in big projects you may have complex forms and the `reactive forms` makes the task build them easier for you. ## Styling: Bootstrap When you launch your project you can base it first on an already existing styling library. It helps you save time when styling your application. Here are some examples of libraries you can use : * [Bootstrap](https://getbootstrap.com/): it is not specific to Angular. You can use whatever framework you use. And to make using it easier in Angular projects you may use [ng-bootstrap](https://ng-bootstrap.github.io/#/home) library. * [Angular Material](https://material.angular.io/): Angular specific. Gives acces to material deisgn components for Angular. * [Zurb Foundation](https://foundation.zurb.com/): examples of Foundation components for sites [here](https://foundation.zurb.com/sites/docs/kitchen-sink.html). * [Material](https://material.io/develop/web/components/animation/). Actually, for this project it is `bootstrap` which was used (not `ng-boostrap`). ## NGXS and Facade pattern ### NGXS Most libraries like React, Angular, etc. are built with a way for components to internally manage their state without any need for an external library or tool. It does well for applications with few components but as the application grows bigger, managing states shared across components becomes a chore. In an app where data is shared among components, it might be confusing to actually know where a state should live. Ideally, the data in a component should live in just one component. So sharing data among sibling components becomes difficult ([source](https://blog.logrocket.com/why-use-redux-reasons-with-clear-examples-d21bffd5835)). The way a state management library works is simple. There is a central store that holds the entire state of the application. Each component can access the stored state without having to send down props from one component to another. For example, for [React](https://reactjs.org/) one of the most used state management libraries is [Redux](https://redux.js.org/). And the use of the [react-redux](https://github.com/reduxjs/react-redux) package makes it easier. For sure, you have other state management libraries for `react` like [facebook's flux](https://github.com/facebook/flux). So choose what suits you most knwoing that `redux` is more used that `flux` because it is not centred on `react` and can be used with any other view library. For `angular` you have many options for state management like: * [NGXS](https://github.com/ngxs/store): NGXS is a state management pattern + library for Angular. It acts as a single source of truth for your application's state, providing simple rules for predictable state mutations. * [NGRX](https://ngrx.io/): Store is RxJS powered state management for Angular applications, inspired by Redux. Store is a controlled state container designed to help write performant, consistent applications on top of Angular. * [datorama/akita](https://github.com/datorama/akita): Akita is a state management pattern, built on top of RxJS, which takes the idea of multiple data stores from Flux and the immutable updates from Redux, along with the concept of streaming data, to create the Observable Data Store model. For `Angular`, after studying the different options, I find that `ngxs` is the best option. It is written for `Angular` at the first place so it is implemented following the Angular's code style and takes andvantage of the `Dependency Injection` provided by `Angular`. In addition, it is less verbose then other libraries. For these reasons we have made the choice to use it in many companies I worked with. **[You can find here](https://medium.com/@amcdnl/why-another-state-management-framework-for-angular-b4b4c19ef664)** of a complete explanation of why to use `ngxs`. Used `ngxs` plugins for this repo: * [Logger](https://ngxs.gitbook.io/ngxs/plugins/logger): A simple console log plugin to log actions as they are processed. * [Devtools](https://ngxs.gitbook.io/ngxs/plugins/devtools): Plugin with integration with the [Redux Devtools extension](http://extension.remotedev.io/). * [Router](https://ngxs.gitbook.io/ngxs/plugins/router): To help you handle navigation. ### Facade pattern The facade pattern is a [software-design pattern](https://en.wikipedia.org/wiki/Software_design_pattern) commonly used in [object-oriented programming](https://en.wikipedia.org/wiki/Object-oriented_programming). Analogous to a [facade](https://en.wikipedia.org/wiki/Facade) in architecture, a facade is an object that serves as a front-facing interface masking more complex underlying or structural code. A facade can: * improve the readability and usability of a software library by masking interaction with more complex components behind a single (and often simplified) API; * provide a context-specific interface to more generic functionality (complete with context-specific input validation); * serve as a launching point for a broader refactor of monolithic or tightly-coupled systems in favor of more loosely-coupled code. While this seems like a rather trivial change (and an extra layer), the Facade has a huge positive impact of developer productivity and yields significantly less complexity in the view layers ([source](https://medium.com/ngxs/ngxs-facade-3aa90c41497b)). An other advantage is that it makes your controllers (Angular components for example), independant from the state management library you have chosen to use. ## Internationalization For the internationalization you have two options: 1 - Use the Angular's [i18n](https://angular.io/guide/i18n) system 2 - Use [ngx-translate](http://www.ngx-translate.com/) library. I won't go into details, but the choice for this project and many other production like projects was to use `ngx-translate`. The main reasons are that, for the same result, it is simpler to use and develop with and `Angular i18n` forces you to build the application per language and it reloads the application on language change. ## Further help To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md). ## VS Code plugins If you are using [VS Code](https://code.visualstudio.com/) you may find the following plugins very helpful: * [ts-barrelr](https://marketplace.visualstudio.com/items?itemName=mikerhyssmith.ts-barrelr): automates the production of index.ts barrel files. * [Jest Runner](https://marketplace.visualstudio.com/items?itemName=firsttris.vscode-jest-runner): Simple way to run or debug a single or multiple Jest-Tests from context menu. As it is possible in IntelliJ / Webstorm * [TSLint](https://marketplace.visualstudio.com/items?itemName=ms-vscode.vscode-typescript-tslint-plugin): Adds tslint to VS Code using the TypeScript TSLint language service plugin. * [TypeScript Importer](https://marketplace.visualstudio.com/items?itemName=pmneo.tsimporter): Automatically searches for TypeScript definitions in workspace files and provides all known symbols as completion item to allow code completion. ## License Copyright by @haythem-ouederni. All project sources are released under the [Apache License](https://github.com/haythem-ouederni/ng-best-practices/blob/master/LICENSE) license.<file_sep>export * from './components'; // export * from './lazy-modules'; => should not be added to the barrel we have an unexpected exception export * from './app-routing.module'; export * from './app.module'; <file_sep>export * from './environments'; <file_sep>import {FormErrorsUtil} from '@abpe/core'; import {SharedModule} from '@abpe/shared'; import {async, ComponentFixture, TestBed} from '@angular/core/testing'; import {ReactiveFormsModule, ValidationErrors} from '@angular/forms'; import {RouterTestingModule} from '@angular/router/testing'; import * as TRANSLATIONS_EN from '@i18n/app/en.json'; import {Store} from '@ngxs/store'; import {ComponentTester, speculoosMatchers, TestButton, TestInput} from 'ngx-speculoos'; import {TranslateTestingModule} from 'ngx-translate-testing'; import {of, Subject, Subscription} from 'rxjs'; import {ConnectionService} from '../../services'; import {CONNECTION_PATH} from '../../services/token'; import {ConnectionFacade} from '../../state'; import {PasswordValidatorsMessagesService, UsernameValidatorsMessagesService} from '../../validators'; import {PageOneComponent} from './page-one.component'; class PageOneComponentTester extends ComponentTester<PageOneComponent> { constructor() { super(PageOneComponent); } getUsernameInput(): TestInput { return this.input('#username'); } getPasswordInput(): TestInput { return this.input('#<PASSWORD>'); } getAgeInput(): TestInput { return this.input('#age'); } getSubmitBtn(): TestButton { return this.button('#submit'); } } /** * Here is an example of a test file where I tried to go through many examples. At the same time, it does * not test all the method and case of PageOneComponent. It will be enriched when the need is felt or when other * developer ask for it. * TODO : complete with tests when needed */ describe('PageOneComponent', () => { let component: PageOneComponent; let fixture: ComponentFixture<PageOneComponent>; let tester: PageOneComponentTester; let connectionService: ConnectionService; // spies let calculateSpy: jest.SpyInstance; let initFormSpy: jest.SpyInstance; let initSubjectsSpy: jest.SpyInstance; let ngOnInitSpy: jest.SpyInstance; let initFormControlsSpy: jest.SpyInstance; let buildValidationErrorsSpy: jest.SpyInstance; let initErrorsListenerSpy: jest.SpyInstance; let initAgeSubjectSpy: jest.SpyInstance; let initPasswordSubjectSpy: jest.SpyInstance; let initUsernameSubjectSpy: jest.SpyInstance; beforeEach(async(() => { const storeMock = jest.fn(); const facadeMock = jest.fn(); const passwordValidatorsMessagesServiceMock = jest.fn(() => ({ beginsWith: jest.fn().mockReturnValue( of({ beginsWith: (_: ValidationErrors) => 'passwordValidatorsMessage beginsWith', }) ), }))(); const usernameValidatorsMessagesServiceMock = jest.fn(() => ({ contains: jest.fn().mockReturnValue( of({ contains: (_: ValidationErrors) => 'usernameValidatorsMessagesService contains', }) ), }))(); TestBed.configureTestingModule({ imports: [RouterTestingModule, ReactiveFormsModule, SharedModule, TranslateTestingModule.withTranslations('fr', TRANSLATIONS_EN)], declarations: [PageOneComponent], providers: [ { provide: CONNECTION_PATH, useValue: 'base-path', }, { provide: Store, useValue: storeMock, }, { provide: ConnectionFacade, useValue: facadeMock, }, { provide: PasswordValidatorsMessagesService, useValue: passwordValidatorsMessagesServiceMock, }, { provide: UsernameValidatorsMessagesService, useValue: usernameValidatorsMessagesServiceMock, }, ], }).compileComponents(); })); // initialize components and services beforeEach(() => { jasmine.addMatchers(speculoosMatchers); tester = new PageOneComponentTester(); fixture = tester.fixture; component = tester.componentInstance; connectionService = TestBed.get(ConnectionService); // spies calculateSpy = jest.spyOn<ConnectionService, 'calculate'>(connectionService, 'calculate'); // the use of the "any" type is to avoid typescript warning/error due to private methods initFormSpy = jest.spyOn<any, 'initForm'>(component, 'initForm'); initSubjectsSpy = jest.spyOn<any, 'initSubjects'>(component, 'initSubjects'); ngOnInitSpy = jest.spyOn<PageOneComponent, 'ngOnInit'>(component, 'ngOnInit'); initFormControlsSpy = jest.spyOn<any, 'initFormControls'>(component, 'initFormControls'); buildValidationErrorsSpy = jest.spyOn<any, 'buildValidationErrors'>(component, 'buildValidationErrors'); initErrorsListenerSpy = jest.spyOn<PageOneComponent, 'initErrorsListener'>(component, 'initErrorsListener'); initAgeSubjectSpy = jest.spyOn<PageOneComponent, 'initAgeSubject'>(component, 'initAgeSubject'); initPasswordSubjectSpy = jest.spyOn<PageOneComponent, 'initPasswordSubject'>(component, 'initPasswordSubject'); initUsernameSubjectSpy = jest.spyOn<PageOneComponent, 'initUsernameSubject'>(component, 'initUsernameSubject'); tester.detectChanges(); }); test('should create', () => { expect(component).toBeTruthy(); }); test('should match snapshot', () => { expect(fixture).toMatchSnapshot(); }); describe('component initialization', () => { test('should call the intialization methods', () => { expect(ngOnInitSpy).toHaveBeenCalledTimes(1); expect(calculateSpy).toHaveBeenCalledTimes(1); expect(initFormSpy).toHaveBeenCalledTimes(1); expect(initSubjectsSpy).toHaveBeenCalledTimes(1); }); test('should call the form intialization sub-methods', () => { expect(initFormControlsSpy).toHaveBeenCalledTimes(1); expect(buildValidationErrorsSpy).toHaveBeenCalledTimes(1); expect(initErrorsListenerSpy).toHaveBeenCalledTimes(1); }); test('should call the subjects intialization sub-methods', () => { expect(initAgeSubjectSpy).toHaveBeenCalledTimes(1); expect(initPasswordSubjectSpy).toHaveBeenCalledTimes(1); expect(initUsernameSubjectSpy).toHaveBeenCalledTimes(1); }); }); describe('#initFormControls', () => { test('should initialize the username form control', () => { expect(component.username).not.toBeNull(); expect(component.username.value).toEqual(null); }); test('should initialize the password form control', () => { expect(component.password).not.toBeNull(); expect(component.password.value).toEqual(null); }); test('should initialize the age form control', () => { expect(component.age).not.toBeNull(); expect(component.age.value).toEqual(null); }); }); describe('#buildValidationErrors', () => { test('should build validationErrorMessages', async(() => { expect(component.validationErrorMessages).toMatchSnapshot(); })); }); describe('#initErrorsListener', () => { test('should call FormErrorsUtil.aggregateErrorsMessages', () => { FormErrorsUtil.aggregateErrorsMessages = jest.fn().mockReturnValue(of({})); component.form.updateValueAndValidity(); expect(FormErrorsUtil.aggregateErrorsMessages).toHaveBeenNthCalledWith(1, component.form, component.validationErrorMessages); }); }); describe('#onChangeUsername', () => { test('should be called on username change', () => { const onChangeUsernameSpy: jest.SpyInstance = jest.spyOn<PageOneComponent, 'onChangeUsername'>(component, 'onChangeUsername'); tester.getUsernameInput().fillWith('username'); expect(onChangeUsernameSpy).toBeCalledTimes(1); expect(component.isFormSubmittedSuccessfully).toEqual(false); }); test('should call usernameSubject.next when valid username', () => { const username = `username${component.usernameContent}`; const usernameSubjectNextSpy: jest.SpyInstance = jest.spyOn<Subject<string>, 'next'>(component['usernameSubject'], 'next'); component.username.setValue(username); component.username.updateValueAndValidity(); component.onChangeUsername(); expect(component.username.valid).toEqual(true); expect(usernameSubjectNextSpy).toHaveBeenNthCalledWith(1, username); }); test('should not call usernameSubject.next when unvalid username', () => { const username = null; const usernameSubjectNextSpy: jest.SpyInstance = jest.spyOn<Subject<string>, 'next'>(component['usernameSubject'], 'next'); component.username.setValue(username); component.onChangeUsername(); expect(component.username.valid).toEqual(false); expect(usernameSubjectNextSpy).toBeCalledTimes(0); }); }); describe('#ngOnDestroy', () => { test('should call the unsubscribe on subscriptions', () => { const unsubscribeSpy = jest.spyOn<Subscription, 'unsubscribe'>(component['subscriptions'], 'unsubscribe'); component.ngOnDestroy(); expect(unsubscribeSpy).toHaveBeenCalledTimes(1); }); }); describe('#onSubmit', () => { test('should set isFormSubmittedSuccessfully to false if the form is not valid', () => { component.onSubmit(); expect(component.isFormSubmittedSuccessfully).toEqual(false); }); test('should set isFormSubmittedSuccessfully to true if the form is valid', () => { component.form.patchValue({ username: `username${component.usernameContent}`, password: <PASSWORD>`, age: 15, }); component.form.updateValueAndValidity(); component.onSubmit(); expect(component.isFormSubmittedSuccessfully).toEqual(true); }); }); describe('View', () => { test('should call #onSubmit on submit-button click', () => { const onSubmitSpy = jest.spyOn<PageOneComponent, 'onSubmit'>(component, 'onSubmit'); const submitBtn: TestButton = tester.getSubmitBtn(); submitBtn.click(); expect(onSubmitSpy).toHaveBeenCalledTimes(1); }); }); /** * TODO : complete tests */ }); <file_sep>export * from './language.action'; export * from './language.state'; <file_sep>import {Component, Inject, OnInit} from '@angular/core'; import {ROUTES_PATHS} from '../../connection.constant'; import {CONNECTION_PATH} from '../../services/token'; import {Observable} from 'rxjs'; import {ConnectionStateModel, ConnectionFacade} from '../../state'; @Component({ selector: 'cnx-page-two', templateUrl: './page-two.component.html', styleUrls: ['./page-two.component.scss'], }) export class PageTwoComponent implements OnInit { username$: Observable<string>; password$: Observable<string>; age$: Observable<number>; userInformation$: Observable<ConnectionStateModel>; constructor(private facade: ConnectionFacade) {} ngOnInit() { this.username$ = this.facade.username$; this.password$ = <PASSWORD>$; this.age$ = this.facade.age$; this.userInformation$ = this.facade.userInformation$; } //////////////////////////////////////////////////////////////////////////////// /////////////////////////////// Navigation /////////////////////// //////////////////////////////////////////////////////////////////////////////// goToPageOne() { this.facade.goToPageOne(); } } <file_sep>// importing jest-preset-angular is very important else we can have the following error // TypeError: Cannot read property 'getComponentFromError' of null import 'jest-preset-angular'; import './jestGlobalMocks'; // browser mocks globally available for every test <file_sep>export * from './path-env.model'; <file_sep>export * from './password'; export * from './username'; <file_sep>import {Injectable} from '@angular/core'; import {AbstractControl, ValidationErrors, ValidatorFn} from '@angular/forms'; import {TranslateService} from '@ngx-translate/core'; import {Observable} from 'rxjs'; import {map} from 'rxjs/operators'; export class UsernameValidators { static containsValidator(content: string): ValidatorFn { return (control: AbstractControl): {[key: string]: any} | null => { const contains = control.value && control.value.indexOf(content) > -1; return !contains ? {contains: {value: control.value, content}} : null; }; } } @Injectable() export class UsernameValidatorsMessagesService { constructor(private tanslateService: TranslateService) {} contains(): Observable<{contains: (validationErrors: ValidationErrors) => string}> { // the call to stream with placeholder key (which is a fake key) is used to be sure we // have a translation when calling instant return this.tanslateService.stream('fake-placehold').pipe( map(() => ({ contains: (validationErrors: ValidationErrors) => validationErrors.value ? this.tanslateService.instant('common.validators.contains.1', { value: validationErrors.value, content: validationErrors.content, }) : this.tanslateService.instant('common.validators.contains.2', { content: validationErrors.content, }), })) ); } } <file_sep>import {FormGroup} from '@angular/forms'; import {FormGroupFinalErrorsMessages, FormGroupValidationErrorsMessages, ErrorMessageFunction} from '../../models'; export class FormErrorsUtil { /** * Aggregates multiple validation errors messages. * For each formControl it will return a list of the related errors message * @param form : formGroup * @param validationErrorsMessages : An object containing the different errors messages for each field of the formgroup * @return a formErrors * * example of a validationMessages: * validationMessages = { * age: { * required: 'Age required.', * min: (validationErrors: ValidationErrors) => `Age at least ${validationErrors.min}`, * } * */ static aggregateErrorsMessages( form: FormGroup, validationErrorsMessages: FormGroupValidationErrorsMessages ): FormGroupFinalErrorsMessages { const formErrors: FormGroupFinalErrorsMessages = {}; if (form && validationErrorsMessages) { Object.keys(validationErrorsMessages) .filter((key: string) => form.controls[key] && !form.controls[key].pending && form.controls[key].invalid) .forEach((key: string) => { formErrors[key] = []; Object.keys(form.controls[key].errors).forEach((error: string) => { let msg = ''; if (typeof validationErrorsMessages[key][error] === 'function') { const msgFunction: ErrorMessageFunction = validationErrorsMessages[key][error] as ErrorMessageFunction; msg = msgFunction(form.controls[key].errors[error]); } else { msg = validationErrorsMessages[key][error] as string; } if (formErrors[key] && formErrors[key].length > 0) { formErrors[key].push(msg); } else { formErrors[key] = [msg]; } }); }); } return formErrors; } } <file_sep>export enum LanguageActionTypes { InitializeCurrentLanguage = '[Language] Initialize current language', UpdateDefaultLanguage = '[Language] Update default language', UpdateCurrentLanguage = '[Language] Update current language', } export class InitializeCurrentLanguage { static readonly type = LanguageActionTypes.InitializeCurrentLanguage; } export class UpdateDefaultLanguage { static readonly type = LanguageActionTypes.UpdateDefaultLanguage; constructor(public defaultLanguage: string) {} } export class UpdateCurrentLanguage { static readonly type = LanguageActionTypes.UpdateCurrentLanguage; constructor(public currentLanguage: string) {} } <file_sep>export * from './models'; export * from './connection.constant'; export * from './services'; export * from './pages'; export * from './connection.route'; export * from './connection-routing.module'; export * from './connection.module'; <file_sep>export * from './welcome'; export * from './main'; <file_sep>import {Inject, Injectable} from '@angular/core'; import {Navigate} from '@ngxs/router-plugin'; import {Select, Store} from '@ngxs/store'; import {Observable} from 'rxjs'; import {ROUTES_PATHS} from '../connection.constant'; import {CONNECTION_PATH} from '../services/token'; import {UpdateAge, UpdatePassword, UpdateUsername} from './connection.action'; import {ConnectionState, ConnectionStateModel} from './connection.state'; @Injectable({ providedIn: 'root', }) export class ConnectionFacade { constructor(private store: Store, @Inject(CONNECTION_PATH) private connectionPath: string) {} //////////////////////////////////////////////////////////////////////////////// /////////////////////////////// Selects /////////////////////// //////////////////////////////////////////////////////////////////////////////// @Select(ConnectionState.username) username$: Observable<string>; @Select(ConnectionState.password) password$: Observable<string>; @Select(ConnectionState.age) age$: Observable<number>; @Select(ConnectionState.userInformation) userInformation$: Observable<ConnectionStateModel>; //////////////////////////////////////////////////////////////////////////////// /////////////////////////////// Services /////////////////////// //////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////// /////////////////////////////// State update /////////////////////// //////////////////////////////////////////////////////////////////////////////// updateUsername(username: string) { this.store.dispatch(new UpdateUsername(username)); } updatePassword(password: string) { this.store.dispatch(new UpdatePassword(password)); } updateAge(age: number) { this.store.dispatch(new UpdateAge(age)); } //////////////////////////////////////////////////////////////////////////////// /////////////////////////////// Navigation /////////////////////// //////////////////////////////////////////////////////////////////////////////// goToPageOne() { this.store.dispatch(new Navigate([this.connectionPath, ROUTES_PATHS.pageOne])); } goToPageTwo() { this.store.dispatch(new Navigate([this.connectionPath, ROUTES_PATHS.pageTwo])); } } <file_sep>export interface PathEnv { // to base path to navigate to the module different pages basePath: string; } <file_sep>export interface KeysModel { key: any; value: any; } <file_sep>export * from './keys.model'; <file_sep>export * from './keys-and-values-from-object.pipe'; <file_sep>const baseConfig = require('../../../jest.config'); module.exports = { ...baseConfig, globals: { ...baseConfig.globals, 'ts-jest': { ...baseConfig.globals['ts-jest'], tsConfigFile: '<rootDir>/projects/core/tsconfig.spec.json', } }, rootDir: '../../..', roots: ['<rootDir>/projects/core/src'], coverageDirectory: 'coverage/core' }; <file_sep>import {Action, Selector, State, StateContext} from '@ngxs/store'; import {CONNECTION_STATE_NAME} from '../connection.constant'; import {UpdateAge, UpdatePassword, UpdateUsername} from './connection.action'; export interface ConnectionStateModel { username: string; password: string; age: number; } const DEFAULT_CONNECTION_STATE_MODEL: ConnectionStateModel = { username: null, password: <PASSWORD>, age: null, }; @State<ConnectionStateModel>({ name: CONNECTION_STATE_NAME, defaults: DEFAULT_CONNECTION_STATE_MODEL, }) export class ConnectionState { //////////////////////////////////////////////////////////////////////////////// /////////////////////////////// Selectors /////////////////////// //////////////////////////////////////////////////////////////////////////////// @Selector() static username(state: ConnectionStateModel): string { return state.username; } @Selector() static password(state: ConnectionStateModel): string { return state.password; } @Selector() static age(state: ConnectionStateModel): number { return state.age; } @Selector() static userInformation(state: ConnectionStateModel): ConnectionStateModel { return state; } //////////////////////////////////////////////////////////////////////////////// /////////////////////////////// Actions /////////////////////// //////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////// /////////////////////////////// User information /////////////////////// //////////////////////////////////////////////////////////////////////////////// @Action(UpdateUsername) updateUsername({patchState}: StateContext<ConnectionStateModel>, action: UpdateUsername) { patchState({username: action.username}); } @Action(UpdatePassword) updatePassword({patchState}: StateContext<ConnectionStateModel>, action: UpdatePassword) { patchState({password: action.password}); } @Action(UpdateAge) updateAge({patchState}: StateContext<ConnectionStateModel>, action: UpdateAge) { patchState({age: action.age}); } } <file_sep>import {HttpClient} from '@angular/common/http'; import {TranslateLoader} from '@ngx-translate/core'; import * as merge from 'deepmerge'; import {forkJoin, Observable, throwError} from 'rxjs'; import {catchError, map} from 'rxjs/operators'; export interface ITranslationResource { prefix: string; suffix: string; } export const TRANSLATION_FILE_NOT_FOUND = 'Could not find translation file:'; /** * @credits : https://github.com/denniske/ngx-translate-multi-http-loader */ export class MultiTranslateHttpLoader implements TranslateLoader { constructor(private http: HttpClient, private resources: ITranslationResource[]) {} public getTranslation(lang: string): Observable<any> { const requests = this.resources.map(resource => { const path = resource.prefix + lang + resource.suffix; return this.http.get(path).pipe( catchError(() => { return throwError(`${TRANSLATION_FILE_NOT_FOUND} : ${path}`); }) ); }); return forkJoin(requests).pipe(map(response => merge.all(response))); } } <file_sep>import {HttpClient} from '@angular/common/http'; import {HttpClientTestingModule, HttpTestingController} from '@angular/common/http/testing'; import {TestBed} from '@angular/core/testing'; import {ITranslationResource, MultiTranslateHttpLoader, TRANSLATION_FILE_NOT_FOUND} from './multi-translate-http-loader'; describe('MultiTranslateHttpLoader', () => { let httpClient: HttpClient; let httpTestingController: HttpTestingController; const language = 'fr'; const suffix = '.json'; const prefixBase = './assets/i18n'; const translationResource1: ITranslationResource = { prefix: prefixBase + 'dir1/', suffix, }; const translationResource2: ITranslationResource = { prefix: prefixBase + 'dir2/', suffix, }; const trasnaltion1 = { translation1: { test: 'test', }, }; const trasnaltion2 = { translation2: { test: 'test', }, }; beforeEach(() => { TestBed.configureTestingModule({ imports: [HttpClientTestingModule], }); }); beforeEach(() => { // Inject the http service and test controller for each test httpClient = TestBed.get(HttpClient); httpTestingController = TestBed.get(HttpTestingController); }); afterEach(() => { // After every test, assert that there are no more pending requests. httpTestingController.verify(); }); describe('#getTranslation', () => { test('should return a single translation when asking for one file', done => { const multiTranslateHttpLoader = new MultiTranslateHttpLoader(httpClient, [translationResource1]); multiTranslateHttpLoader.getTranslation(language).subscribe((traduction: any) => { expect(traduction).toEqual(trasnaltion1); done(); }); const request = httpTestingController.expectOne(translationResource1.prefix + language + translationResource1.suffix); // Assert that the request is a GET. expect(request.request.method).toEqual('GET'); // send mocked data request.flush(trasnaltion1); }); test('should return a multiple translations when asking for mutlpiple files', done => { const multiTranslateHttpLoader = new MultiTranslateHttpLoader(httpClient, [translationResource1, translationResource2]); multiTranslateHttpLoader.getTranslation(language).subscribe((traductions: any) => { expect(traductions).toEqual({...trasnaltion1, ...trasnaltion2}); done(); }); const request1 = httpTestingController.expectOne(translationResource1.prefix + language + translationResource1.suffix); // Assert that the request is a GET. expect(request1.request.method).toEqual('GET'); // send mocked data request1.flush(trasnaltion1); const request2 = httpTestingController.expectOne(translationResource2.prefix + language + translationResource2.suffix); // Assert that the request is a GET. expect(request2.request.method).toEqual('GET'); // send mocked data request2.flush(trasnaltion2); }); test('should return empty object when file not found', done => { const multiTranslateHttpLoader = new MultiTranslateHttpLoader(httpClient, [translationResource1]); const path: string = translationResource1.prefix + language + translationResource1.suffix; multiTranslateHttpLoader.getTranslation(language).subscribe( traductions => { expect(true).toEqual(false); done(); }, error => { expect(error).toEqual(`${TRANSLATION_FILE_NOT_FOUND} : ${path}`); done(); } ); const request1 = httpTestingController.expectOne(path); // Respond with mock error request1.flush('getting files error', {status: 404, statusText: 'Not Found'}); }); }); }); <file_sep>import {InjectionToken} from '@angular/core'; export const CONNECTION_PATH = new InjectionToken<string>('CONNECTION_PATH'); <file_sep>export interface PageOneInformation { username: string; password: <PASSWORD>; age: number; } <file_sep>import {async, TestBed} from '@angular/core/testing'; import {KeysModel} from '../../models'; import {KeysAndValuesFromObjectPipe} from './keys-and-values-from-object.pipe'; describe('KeysAndValuesFromObjectPipe', () => { let pipe: KeysAndValuesFromObjectPipe; beforeEach(async(() => { TestBed.configureTestingModule({ providers: [KeysAndValuesFromObjectPipe], }); })); beforeEach(() => { pipe = TestBed.get(KeysAndValuesFromObjectPipe); }); test('should return a list of keys', () => { const listKeys: string[] = ['toto', 'titi', 'tata']; const objectToTrasnform = {}; listKeys.forEach(key => { objectToTrasnform[key] = key + key; }); const transformedObjectList: KeysModel[] = pipe.transform(objectToTrasnform); const listKeysAfterTransformation: string[] = transformedObjectList.map( (transformedObject: KeysModel) => transformedObject.key as string ); expect(listKeysAfterTransformation).toEqual(listKeys); }); test('should return a list of values', () => { const listKeys: string[] = ['toto', 'titi', 'tata']; const listValues: string[] = ['totototo', 'titititi', 'tatatata']; const objectToTrasnform = {}; listKeys.forEach(key => { objectToTrasnform[key] = key + key; }); const transformedObjectList: KeysModel[] = pipe.transform(objectToTrasnform); const listValuiesAfterTransformation: string[] = transformedObjectList.map( (transformedObject: KeysModel) => transformedObject.value as string ); expect(listValuiesAfterTransformation).toEqual(listValues); }); test('should return empty list when empty object', () => { expect(pipe.transform({})).toEqual([]); }); test('should return empty list when null', () => { expect(pipe.transform(null)).toEqual([]); }); }); <file_sep>export * from './error-message-function.model'; export * from './form-control-validation-errors-messages.model'; export * from './form-group-final-errors-messages.model'; export * from './form-group-validation-errors-messages.model'; <file_sep>export enum ConnectionActionTypes { // user information UpdateUsername = '[Connection] Update username', UpdatePassword = <PASSWORD>', UpdateAge = '[Connection] Update age', // navigation GoToPageOne = '[Connection Navigation] Go to page one', GoToPageTwo = '[Connection Navigation] Go to page two', } export class UpdateUsername { static readonly type = ConnectionActionTypes.UpdateUsername; constructor(public username: string) {} } export class UpdatePassword { static readonly type = ConnectionActionTypes.UpdatePassword; constructor(public password: string) {} } export class UpdateAge { static readonly type = ConnectionActionTypes.UpdateAge; constructor(public age: number) {} } export class GoToPageOne { static readonly type = ConnectionActionTypes.GoToPageOne; } export class GoToPageTwo { static readonly type = ConnectionActionTypes.GoToPageTwo; } <file_sep>/* * Public API Surface of core */ export * from './lib/core.constant'; export * from './lib/models'; export * from './lib/utils'; export * from './lib/services'; export * from './lib/states'; export * from './lib/core.module'; <file_sep>import {Routes} from '@angular/router'; import {ROUTES_PATHS} from './connection.constant'; import {PageOneComponent, PageTwoComponent} from './pages'; export const CONNECTION_ROUTES: Routes = [ { path: ROUTES_PATHS.pageOne, component: PageOneComponent, }, { path: ROUTES_PATHS.pageTwo, component: PageTwoComponent, }, ]; <file_sep>import {async, ComponentFixture, TestBed} from '@angular/core/testing'; import {RouterTestingModule} from '@angular/router/testing'; import * as TRANSLATIONS_EN from '@i18n/app/en.json'; import {Store} from '@ngxs/store'; import {TranslateTestingModule} from 'ngx-translate-testing'; import {WelcomeComponent} from './welcome.component'; describe('WelcomeComponent', () => { let component: WelcomeComponent; let fixture: ComponentFixture<WelcomeComponent>; beforeEach(async(() => { const storeMock = jest.fn(); TestBed.configureTestingModule({ imports: [RouterTestingModule, TranslateTestingModule.withTranslations('fr', TRANSLATIONS_EN)], declarations: [WelcomeComponent], providers: [ { provide: Store, useValue: storeMock, }, ], }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(WelcomeComponent); component = fixture.componentInstance; fixture.detectChanges(); }); test('should create', () => { expect(component).toBeTruthy(); }); test('should match snapshot', () => { expect(fixture).toMatchSnapshot(); }); }); <file_sep>import {HttpClient} from '@angular/common/http'; import {isNullOrUndefined} from 'util'; import {I18N_BASE_URL} from '../../core.constant'; import {ITranslationResource, MultiTranslateHttpLoader} from './multi-translate-http-loader'; export class LanguageUtilsService { /** * Calculates the path of the json file to be used for internationalization and returns the adequate * Http Loader. * @param libName : * the library's name we want to have internationalization for. Matches a name of repo under general/assets/i18n. * Example : libName = 'connection'. * @returns : * A function to define the Http Loader to be used for internationalization to get the json files containing different texts. */ static httpLoaderFactory(libName?: string): (http: HttpClient) => MultiTranslateHttpLoader { // No check on libName is done because we can't throw an exception due // to the signature of the loader and that we won't use a common internationalization // json file on the other hand return LanguageUtilsService.multiHttpLoaderFactory([libName]); } /** * Calculates the path of the different json files to be used for internationalization and returns the adequate * Http Loader. * @param listLibNames : * A list of the libraries names we want to have internationalization for. * Each elements matches a name of repo under general/assets/i18n. * Example : listLibName = ['connection', 'profile']. * @returns : * A function to define the Http Loader to be used for internationalization to get the json files containing different texts. */ static multiHttpLoaderFactory(listLibNames?: string[]): (http: HttpClient) => MultiTranslateHttpLoader { // No check on listLibNames is done because we can't throw an exception due // to the signature of the loader and that we won't use a common internationalization // json file on the other hand const listTranslationResources: ITranslationResource[] = []; if (!isNullOrUndefined(listLibNames)) { listLibNames.map((libName: string) => { listTranslationResources.push({ prefix: `${I18N_BASE_URL}${libName}/`, suffix: '.json', }); }); } return (http: HttpClient): MultiTranslateHttpLoader => { return new MultiTranslateHttpLoader(http, listTranslationResources); }; } /** * This method return the default navigator language */ static getBrowserLanguage(): string { return navigator.language || navigator['userLanguage']; } } <file_sep>import {FormControl, FormGroup, ValidationErrors, Validators} from '@angular/forms'; import {ErrorMessageFunction, FormControlValidationErrorsMessages, FormGroupValidationErrorsMessages} from '../../models'; import {FormErrorsUtil} from './form-errors.util'; describe('FormErrorsUtil', () => { let form: FormGroup; const messages: FormControlValidationErrorsMessages = { required: 'Required Message', number: 'ça doit être un entier', minValue: (validationErrors: ValidationErrors) => `La valeur minimale est ${validationErrors.min}`, }; const validationMessages: FormGroupValidationErrorsMessages = { controlField1: { required: messages.required, min: messages.minValue, pattern: messages.number, }, controlField2: { required: messages.required, }, }; const minValue = 3; beforeEach(() => { // initialize the form group form = new FormGroup({ controlField1: new FormControl(8, [Validators.required, Validators.pattern('^[0-9]+$'), Validators.min(minValue)]), controlField2: new FormControl('value', [Validators.required]), }); }); describe('#aggregateErrors', () => { test('should return empty errors', () => { const formErrors = FormErrorsUtil.aggregateErrorsMessages(form, validationMessages); expect(formErrors).toEqual({}); }); describe('when test on one field', () => { test('should return required error', () => { form.controls['controlField1'].setValue(null); const formErrors = FormErrorsUtil.aggregateErrorsMessages(form, validationMessages); const expected = {controlField1: [messages.required]}; expect(formErrors).toEqual(expected); }); test('should return min and pattern error', () => { form.controls['controlField1'].setValue('1h2'); const formErrors = FormErrorsUtil.aggregateErrorsMessages(form, validationMessages); const expected = {controlField1: [messages.number, (messages.minValue as ErrorMessageFunction)({min: minValue})]}; expect(formErrors).toEqual(expected); }); }); describe('when test on multiple fields', () => { test('should return required error', () => { form.controls['controlField1'].setValue(null); form.controls['controlField2'].setValue(null); const formErrors = FormErrorsUtil.aggregateErrorsMessages(form, validationMessages); const expected = {controlField1: [messages.required], controlField2: [messages.required]}; expect(formErrors).toEqual(expected); }); }); }); }); <file_sep>import {CoreModule, InitializeCurrentLanguage, LanguageState, LanguageUtilsService} from '@abpe/core'; import {HttpClient} from '@angular/common/http'; import {NgModule} from '@angular/core'; import {BrowserModule} from '@angular/platform-browser'; import {TranslateLoader, TranslateModule, TranslateService} from '@ngx-translate/core'; import {NgxsReduxDevtoolsPluginModule} from '@ngxs/devtools-plugin'; import {NgxsLoggerPluginModule} from '@ngxs/logger-plugin'; import {NgxsRouterPluginModule} from '@ngxs/router-plugin'; import {NgxsModule, Store} from '@ngxs/store'; import {environment} from '../environments/environment'; import {AppRoutingModule} from './app-routing.module'; import {AppComponent} from './components'; import {WelcomeComponent} from './components/welcome/welcome.component'; @NgModule({ declarations: [AppComponent, WelcomeComponent], imports: [ BrowserModule, AppRoutingModule, CoreModule, NgxsModule.forRoot([], {developmentMode: !environment.production}), NgxsLoggerPluginModule.forRoot({disabled: environment.production}), NgxsReduxDevtoolsPluginModule.forRoot({disabled: environment.production}), NgxsRouterPluginModule.forRoot(), TranslateModule.forRoot({ loader: { provide: TranslateLoader, // if you want to include only one json file for internationalization // you can use LanguageUtilsService.httpLoaderFactory method : // exmaple : LanguageUtilsService.httpLoaderFactory('app') useFactory: LanguageUtilsService.multiHttpLoaderFactory(['app', 'common']), deps: [HttpClient], }, }), ], providers: [], bootstrap: [AppComponent], }) export class AppModule { constructor(private translationService: TranslateService, private store: Store) { // we dispatch an action to insitalize the language state this.store.dispatch(new InitializeCurrentLanguage()); const defaultLanguage: string = this.store.selectSnapshot(LanguageState.defaultLanguage); this.translationService.setDefaultLang(defaultLanguage); this.store.select(LanguageState.currentLanguage).subscribe((currentLanguage: string) => { this.translationService.use(currentLanguage); }); } } <file_sep># Shared SharedModule should have anything but services and be imported in all modules that need the shared stuff (which could also be the AppModule of the root application or the standalone application). Here is an [interesting link](https://stackoverflow.com/questions/42695931/angular2-coremodule-vs-sharedmodule) about Shared and Core modules. This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 7.2.0. ## Code scaffolding Run `ng generate component component-name --project shared` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project shared`. > Note: Don't forget to add `--project shared` or else it will be added to the default project in your `angular.json` file. ## Build Run `ng build shared` to build the project. The build artifacts will be stored in the `dist/` directory. ## Publishing After building your library with `ng build shared`, go to the dist folder `cd dist/shared` and run `npm publish`. ## Running unit tests Run `ng test shared` to execute the unit tests via [Karma](https://karma-runner.github.io). ## Further help To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md). <file_sep>export * from './keys-and-values-from-object'; <file_sep>import * as common from '@abpe/general/environments/env.common'; import * as connection from '@abpe/general/environments/env.connection'; // This file can be replaced during build by using the `fileReplacements` array. // `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. // The list of file replacements can be found in `angular.json`. export const environment = { ...common.prod, connection: connection.prod, }; <file_sep>export * from './lazy-connection.module'; <file_sep>import {ROUTES_PATHS} from '@abpe/connection/lib/modules'; import {Component, OnInit, OnDestroy} from '@angular/core'; import {TranslateService} from '@ngx-translate/core'; import {Navigate} from '@ngxs/router-plugin'; import {Store} from '@ngxs/store'; import {environment} from '../../../environments/environment'; import {Subscription} from 'rxjs'; @Component({ selector: 'app-welcome', templateUrl: './welcome.component.html', styleUrls: ['./welcome.component.scss'], }) export class WelcomeComponent implements OnInit, OnDestroy { title = this.translateService.instant('app.title_2'); env = environment.production; subscriptions: Subscription = new Subscription(); //////////////////////////////////////////////////////////////////////////////// /////////////////////////////// Constructor /////////////////////// //////////////////////////////////////////////////////////////////////////////// constructor(private store: Store, private translateService: TranslateService) {} //////////////////////////////////////////////////////////////////////////////// /////////////////////////////// Life cycle /////////////////////// //////////////////////////////////////////////////////////////////////////////// ngOnInit(): void { // Notice : here using the translateService stream instead of get to listen to the keys change // when changing the language const translationSubscription: Subscription = this.translateService.stream('app.title_2').subscribe((translation: string) => { this.title = translation; }); this.subscriptions.add(translationSubscription); } ngOnDestroy(): void { this.subscriptions.unsubscribe(); } //////////////////////////////////////////////////////////////////////////////// /////////////////////////////// Navigayion /////////////////////// //////////////////////////////////////////////////////////////////////////////// goToPageOne() { this.store.dispatch(new Navigate([environment.connection.basePath, ROUTES_PATHS.pageOne])); } } <file_sep>import {ErrorMessageFunction} from './error-message-function.model'; export interface FormControlValidationErrorsMessages { [key: string]: string | ErrorMessageFunction; } <file_sep>export * from './token'; export * from './connection.service'; <file_sep>/* * Public API Surface of connection */ export * from './lib/modules/main/connection.module'; <file_sep>import {Injectable} from '@angular/core'; import {ValidationErrors} from '@angular/forms'; import {TranslateService} from '@ngx-translate/core'; import {Observable, pipe} from 'rxjs'; import {map} from 'rxjs/operators'; /** * CommonValidatorMessagesService must be provided at each using module. * And tha calling module must load the common/fr.json file in addiction * to its own traduction files * * IMPORTANT : at the actual state of the service no need to add specific * unit test for it. Orignally, it simply returns a constant with fixed value. * It was transformed to a service just to be able to use the translation. * */ @Injectable({ providedIn: 'root', }) export class CommonValidationMessagesService { private _validationMessages: Observable<{[key: string]: any}>; get validationMessages() { if (!this._validationMessages) { this.initializeValidationMessage(); } return this._validationMessages; } constructor(private translateService: TranslateService) {} /** * Method called to initialize the common validation messages */ private initializeValidationMessage() { // the call to stream with placeholder key (which is a fake key) is used to be sure we // have a translation when calling instant this._validationMessages = this.translateService.stream('fake-placehold').pipe( map(() => ({ required: { required: this.translateService.instant('common.validators.required'), }, invalid: { pattern: this.translateService.instant('common.validators.invalid'), }, length: { minlength: { minlength: (validationErrors: ValidationErrors) => this.translateService.instant('common.validators.length.min', {min: validationErrors.requiredLength}), }, maxlength: { maxlength: (validationErrors: ValidationErrors) => this.translateService.instant('common.validators.length.max', {max: validationErrors.requiredLength}), }, }, numbers: { decimal: { pattern: { pattern: this.translateService.instant('common.validators.numbers.decimal.pattern'), }, }, integer: { pattern: { pattern: this.translateService.instant('common.validators.numbers.integer.pattern'), }, }, min: { min: (validationErrors: any) => this.translateService.instant('common.validators.numbers.min', {min: validationErrors.min}), }, max: { max: (validationErrors: any) => this.translateService.instant('common.validators.numbers.max', {max: validationErrors.max}), }, }, })) ); } } <file_sep>import {LanguageState, ListLanguages, UpdateCurrentLanguage} from '@abpe/core'; import {Component, OnInit} from '@angular/core'; import {Select, Store} from '@ngxs/store'; import {Observable} from 'rxjs'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.scss'], }) export class AppComponent implements OnInit { listAvailableLanguage: string[]; @Select(LanguageState.currentLanguage) currentLanguage: Observable<string>; selectedLanguage: string; listLanguages = ListLanguages; constructor(private store: Store) {} ngOnInit(): void { this.listAvailableLanguage = Object.keys(ListLanguages); this.selectedLanguage = this.store.selectSnapshot(LanguageState.defaultLanguage); } /** * Method called when the user changes the current language */ changeLanguage(language: string): void { const languageCode: string = this.listLanguages[language]; this.selectedLanguage = languageCode; this.store.dispatch(new UpdateCurrentLanguage(languageCode)); } } <file_sep>import {async, TestBed} from '@angular/core/testing'; import {NgxsModule, Store} from '@ngxs/store'; import {CONNECTION_STATE_NAME} from '../connection.constant'; import {UpdateAge, UpdatePassword, UpdateUsername} from './connection.action'; import {ConnectionState, ConnectionStateModel} from './connection.state'; const DEFAULT_CONNECTION_STATE_MODEL_1: ConnectionStateModel = { username: 'my-username', password: '<PASSWORD>', age: 13, }; describe('ConnectionState', () => { let store: Store; let dispatchSpy: jest.SpyInstance; beforeEach(async(() => { TestBed.configureTestingModule({ imports: [NgxsModule.forRoot([ConnectionState])], }); })); beforeEach(() => { store = TestBed.get(Store); // spies dispatchSpy = jest.spyOn<Store, 'dispatch'>(store, 'dispatch'); }); describe('Selectors', () => { describe('#username', () => { test('should return right username', () => { const username = ConnectionState.username(DEFAULT_CONNECTION_STATE_MODEL_1); expect(username).toEqual(DEFAULT_CONNECTION_STATE_MODEL_1.username); }); }); describe('#password', () => { test('should return right password', () => { const password = ConnectionState.password(DEFAULT_CONNECTION_STATE_MODEL_1); expect(password).toEqual(DEFAULT_CONNECTION_STATE_MODEL_1.password); }); }); describe('#age', () => { test('should return right username', () => { const age = ConnectionState.age(DEFAULT_CONNECTION_STATE_MODEL_1); expect(age).toEqual(DEFAULT_CONNECTION_STATE_MODEL_1.age); }); }); describe('#userInformation', () => { test('should return right user information', () => { const userInformation = ConnectionState.userInformation(DEFAULT_CONNECTION_STATE_MODEL_1); expect(userInformation).toEqual(DEFAULT_CONNECTION_STATE_MODEL_1); }); }); }); describe('Actions', () => { describe('User information', () => { describe('#UpdateUsername', () => { test('should update username', async(() => { const newUsername = 'new-username'; store.reset({[CONNECTION_STATE_NAME]: {...DEFAULT_CONNECTION_STATE_MODEL_1}}); store.dispatch(new UpdateUsername(newUsername)); store .selectOnce(state => state[CONNECTION_STATE_NAME]) .subscribe((state: ConnectionStateModel) => { expect(dispatchSpy).toBeCalledTimes(1); expect(dispatchSpy).toBeCalledWith({username: newUsername}); expect(state.username).toEqual(newUsername); }); })); }); describe('#UpdatePassword', () => { test('should update password', async(() => { const newPassword = '<PASSWORD>'; store.reset({[CONNECTION_STATE_NAME]: {...DEFAULT_CONNECTION_STATE_MODEL_1}}); store.dispatch(new UpdatePassword(newPassword)); store .selectOnce(state => state[CONNECTION_STATE_NAME]) .subscribe((state: ConnectionStateModel) => { expect(dispatchSpy).toBeCalledTimes(1); expect(dispatchSpy).toBeCalledWith({password: <PASSWORD>}); expect(state.password).toEqual(<PASSWORD>); }); })); }); describe('#UpdateAge', () => { test('should update the age', async(() => { const newAge = 35; store.reset({[CONNECTION_STATE_NAME]: {...DEFAULT_CONNECTION_STATE_MODEL_1}}); store.dispatch(new UpdateAge(newAge)); store .selectOnce(state => state[CONNECTION_STATE_NAME]) .subscribe((state: ConnectionStateModel) => { expect(dispatchSpy).toBeCalledTimes(1); expect(dispatchSpy).toBeCalledWith({age: newAge}); expect(state.age).toEqual(newAge); }); })); }); }); }); }); <file_sep>export const dev = { production: false, }; export const prod = { production: true, }; <file_sep>import {async, TestBed, TestModuleMetadata} from '@angular/core/testing'; // @ts-ignore global.CSS = null; const webStorageMock = () => { let storage = {}; return { getItem: key => (key in storage ? storage[key] : null), setItem: (key, value) => (storage[key] = value || ''), removeItem: key => delete storage[key], clear: () => (storage = {}), }; }; Object.defineProperty(window, 'localStorage', {value: webStorageMock()}); Object.defineProperty(window, 'sessionStorage', {value: webStorageMock()}); Object.defineProperty(document, 'doctype', { value: '<!DOCTYPE html>', }); Object.defineProperty(window, 'getComputedStyle', { value: () => { return { display: 'none', appearance: ['-webkit-appearance'], }; }, }); /** * ISSUE: https://github.com/angular/material2/issues/7101 * Workaround for JSDOM missing transform property */ Object.defineProperty(document.body.style, 'transform', { value: () => { return { enumerable: true, configurable: true, }; }, }); const preventAngularFromResetting = () => (TestBed.resetTestingModule = () => TestBed); const resetTestingModule = TestBed.resetTestingModule; // @ts-ignore global.setupTestBed = (moduleDef: TestModuleMetadata) => { beforeAll(async(async () => { resetTestingModule(); preventAngularFromResetting(); TestBed.configureTestingModule(moduleDef); await TestBed.compileComponents(); })); afterAll(() => resetTestingModule()); }; <file_sep>import {LanguageState, LanguageUtilsService} from '@abpe/core'; import {ConnectionLibEnv} from '@abpe/general/environments/env.connection'; import {SharedModule} from '@abpe/shared'; import {CommonModule} from '@angular/common'; import {HttpClient} from '@angular/common/http'; import {CUSTOM_ELEMENTS_SCHEMA, ModuleWithProviders, NgModule} from '@angular/core'; import {ReactiveFormsModule} from '@angular/forms'; import {TranslateLoader, TranslateModule, TranslateService} from '@ngx-translate/core'; import {NgxsModule, Store} from '@ngxs/store'; import {ConnectionRoutingModule} from './connection-routing.module'; import {PageOneComponent} from './pages'; import {PageTwoComponent} from './pages/page-two/page-two.component'; import {CONNECTION_PATH} from './services/token'; import {ConnectionFacade, ConnectionState} from './state'; import {PasswordValidatorsMessagesService, UsernameValidatorsMessagesService} from './validators'; @NgModule({ declarations: [PageOneComponent, PageTwoComponent], imports: [ ConnectionRoutingModule, ReactiveFormsModule, CommonModule, SharedModule, NgxsModule.forFeature([ConnectionState]), TranslateModule.forChild({ loader: { provide: TranslateLoader, useFactory: LanguageUtilsService.multiHttpLoaderFactory(['common', 'connection']), deps: [HttpClient], }, isolate: true, }), ], providers: [ConnectionFacade, UsernameValidatorsMessagesService, PasswordValidatorsMessagesService], schemas: [CUSTOM_ELEMENTS_SCHEMA], }) export class ConnectionModule { constructor(private translationService: TranslateService, private store: Store) { const defaultLanguage: string = this.store.selectSnapshot(LanguageState.defaultLanguage); this.translationService.setDefaultLang(defaultLanguage); this.store.select(LanguageState.currentLanguage).subscribe((currentLanguage: string) => { this.translationService.use(currentLanguage); }); } public static forRoot(connectionEnv: ConnectionLibEnv): ModuleWithProviders { return { ngModule: ConnectionModule, providers: [ { provide: CONNECTION_PATH, useValue: connectionEnv.basePath, }, ], }; } } <file_sep>export * from './page-one.component'; <file_sep>export * from './username-validators'; <file_sep>import {PathEnv} from './models'; export interface ConnectionLibEnv extends PathEnv { connection: { api: any; }; } export const dev: ConnectionLibEnv = { basePath: 'connection', connection: { api: 'path-to-api/in/dev', }, }; export const prod: ConnectionLibEnv = { basePath: 'connection', connection: { api: 'path-to-api/in/prod', }, }; <file_sep>import {async, TestBed} from '@angular/core/testing'; import * as TRANSLATIONS_EN from '@i18n/common/en.json'; import {TranslateTestingModule} from 'ngx-translate-testing'; import {CommonValidationMessagesService} from './common-validation-messages.service'; describe('CommonValidationMessages', () => { let service: CommonValidationMessagesService; beforeEach(async(() => { TestBed.configureTestingModule({ imports: [TranslateTestingModule.withTranslations('fr', TRANSLATIONS_EN)], }); })); beforeEach(() => { service = TestBed.get(CommonValidationMessagesService); }); test('should be created', () => { expect(service).toBeTruthy(); }); test('#validationMessages should match snapshot', async(() => { service.validationMessages.subscribe((validationMessages: {[key: string]: any}) => { expect(validationMessages).toMatchSnapshot(); }); })); }); <file_sep>import {Injectable} from '@angular/core'; import {AbstractControl, ValidationErrors, ValidatorFn} from '@angular/forms'; import {TranslateService} from '@ngx-translate/core'; import {Observable} from 'rxjs'; import {map} from 'rxjs/operators'; export class PasswordValidators { static beginWithValidator(prefix: string): ValidatorFn { return (control: AbstractControl): {[key: string]: any} | null => { const beginsWith = control.value && control.value.indexOf(prefix) === 0; return !beginsWith ? {beginsWith: {value: control.value, prefix}} : null; }; } } @Injectable() export class PasswordValidatorsMessagesService { constructor(private tanslateService: TranslateService) {} beginsWith(): Observable<{beginsWith: (validationErrors: ValidationErrors) => string}> { // the call to stream with placeholder key (which is a fake key) is used to be sure we // have a translation when calling instant return this.tanslateService.stream('fake-placeholder').pipe( map(() => ({ beginsWith: (validationErrors: ValidationErrors) => validationErrors.value ? this.tanslateService.instant('common.validators.begins_with.1', { value: validationErrors.value, prefix: validationErrors.prefix, }) : this.tanslateService.instant('common.validators.begins_with.2', { prefix: validationErrors.prefix, }), })) ); } } <file_sep>export * from './forms'; export * from './language'; <file_sep>import {Action, Selector, State, StateContext, Store} from '@ngxs/store'; import {Observable} from 'rxjs'; import {LANGUAGE_STATE_NAME, ListLanguages} from '../../core.constant'; import {LanguageUtilsService} from '../../utils/language/language-utils.service'; import {InitializeCurrentLanguage, UpdateCurrentLanguage, UpdateDefaultLanguage} from './language.action'; export interface LanguageStateModel { defaultLanguage: string; currentLanguage: string; } export const DEFAULT_LANGUAGE_STATE = { defaultLanguage: ListLanguages.EN, currentLanguage: null, }; @State<LanguageStateModel>({ name: LANGUAGE_STATE_NAME, defaults: DEFAULT_LANGUAGE_STATE, }) export class LanguageState { constructor(private store: Store) {} //////////////////////////////////////////////////////////////////////////////// /////////////////////////////// Selectors /////////////////////// //////////////////////////////////////////////////////////////////////////////// @Selector() static defaultLanguage(state: LanguageStateModel): string { return state.defaultLanguage; } @Selector() static currentLanguage(state: LanguageStateModel): string { return state.currentLanguage; } //////////////////////////////////////////////////////////////////////////////// /////////////////////////////// Actions /////////////////////// //////////////////////////////////////////////////////////////////////////////// @Action(InitializeCurrentLanguage) initializeCurrentLanguage(): Observable<any> { const browserLanguage: string = LanguageUtilsService.getBrowserLanguage(); return this.store.dispatch(new UpdateCurrentLanguage(browserLanguage)); } @Action(UpdateDefaultLanguage) updateDefaultLanguage({patchState}: StateContext<LanguageStateModel>, action: UpdateDefaultLanguage): void { patchState({defaultLanguage: action.defaultLanguage}); } @Action(UpdateCurrentLanguage) updateCurrentLanguage({patchState}: StateContext<LanguageStateModel>, action: UpdateCurrentLanguage): void { patchState({currentLanguage: action.currentLanguage}); } } <file_sep>import {Pipe, PipeTransform} from '@angular/core'; import {KeysModel} from '../../models'; /** * Given an object, this pipe returns the list of its keys and their associated value */ @Pipe({name: 'keysAndValuesFromObject'}) export class KeysAndValuesFromObjectPipe implements PipeTransform { transform(value: any): KeysModel[] { const keys: KeysModel[] = []; for (const key in value) { if (key) { keys.push({key, value: value[key]}); } } return keys; } } <file_sep>export * from './page-one-information.model'; <file_sep>import {TestBed} from '@angular/core/testing'; import {ConnectionService} from './'; describe('ConnectionService', () => { let service: ConnectionService; beforeEach(() => { TestBed.configureTestingModule({}); }); beforeEach(() => { service = TestBed.get(ConnectionService); }); test('should be created', () => { expect(service).toBeTruthy(); }); describe('#calculate', () => { test(`should return testing`, () => { expect(service.calculate()).toEqual(service.calculated); }); }); }); <file_sep>import {async, TestBed} from '@angular/core/testing'; import {FormControl, ValidationErrors} from '@angular/forms'; import * as TRANSLATIONS_EN from '@i18n/common/en.json'; import {TranslateTestingModule} from 'ngx-translate-testing'; import {UsernameValidators, UsernameValidatorsMessagesService} from './username-validators'; const content = 'my-content'; describe('UsernameValidators', () => { describe('#containsValidator', () => { test('should return null for valid control', async(() => { const formValue = `my-value-${content}`; const validFormControl: FormControl = new FormControl(formValue, UsernameValidators.containsValidator(content)); expect(validFormControl.errors).toEqual(null); })); test('should return the invalid control information', () => { const formValue = `uncorrect-value`; const expectedErrors = { contains: { value: formValue, content, }, }; const validFormControl: FormControl = new FormControl(formValue, UsernameValidators.containsValidator(content)); expect(validFormControl.errors).toEqual(expectedErrors); }); }); }); describe('UsernameValidatorsMessages', () => { let usernameValidatorsMessagesService: UsernameValidatorsMessagesService; beforeEach(async(() => { TestBed.configureTestingModule({ imports: [TranslateTestingModule.withTranslations('fr', TRANSLATIONS_EN)], providers: [UsernameValidatorsMessagesService], }); })); // initialize services beforeEach(() => { usernameValidatorsMessagesService = TestBed.get(UsernameValidatorsMessagesService); }); describe('#contains', () => { test('should match snapshot when value inquired', async(() => { const value = 'my-value'; const validationErrors: ValidationErrors = { value, content, }; usernameValidatorsMessagesService .contains() .subscribe((usernameValidatorsMessages: {contains: (validationErrors: ValidationErrors) => string}) => { expect(usernameValidatorsMessages.contains(validationErrors)).toMatchSnapshot(); }); })); test('should match snapshot when value not inquired', async(() => { const validationErrors: ValidationErrors = { content, }; usernameValidatorsMessagesService .contains() .subscribe((usernameValidatorsMessages: {contains: (validationErrors: ValidationErrors) => string}) => { expect(usernameValidatorsMessages.contains(validationErrors)).toMatchSnapshot(); }); })); }); }); <file_sep>const baseConfig = require('../../../jest.config'); module.exports = { ...baseConfig, globals: { ...baseConfig.globals, 'ts-jest': { ...baseConfig.globals['ts-jest'], tsConfigFile: '<rootDir>/projects/connection/tsconfig.spec.json', } }, rootDir: '../../..', roots: ['<rootDir>/projects/connection/src'], coverageDirectory: 'coverage/connection' }; <file_sep>import {FormControlValidationErrorsMessages} from './form-control-validation-errors-messages.model'; export interface FormGroupValidationErrorsMessages { [key: string]: FormControlValidationErrorsMessages; } <file_sep>import {ValidationErrors} from '@angular/forms'; export type ErrorMessageFunction = (validationErrors: ValidationErrors) => string; <file_sep>import {ConnectionModule} from '@abpe/connection/lib/modules'; import {NgModule} from '@angular/core'; import {environment} from '../../environments/environment'; @NgModule({ imports: [ConnectionModule.forRoot(environment.connection)], exports: [ConnectionModule], }) export class LazyConnectionModule {} <file_sep>export * from './page-two.component'; <file_sep>import {NgModule} from '@angular/core'; import {RouterModule} from '@angular/router'; import {CONNECTION_ROUTES} from './connection.route'; @NgModule({ imports: [RouterModule.forChild(CONNECTION_ROUTES)], exports: [RouterModule], }) export class ConnectionRoutingModule {} <file_sep>export * from './connection.action'; export * from './connection.state'; export * from './connection.facade'; <file_sep>import {async, ComponentFixture, TestBed} from '@angular/core/testing'; import {RouterTestingModule} from '@angular/router/testing'; import {Store} from '@ngxs/store'; import {AppComponent} from './app.component'; import {ListLanguages} from '@abpe/core'; describe('AppComponent', () => { let component: AppComponent; let fixture: ComponentFixture<AppComponent>; beforeEach(async(() => { const storeMock = jest.fn(() => ({ selectSnapshot: jest.fn().mockReturnValue(ListLanguages.EN), }))(); TestBed.configureTestingModule({ imports: [RouterTestingModule], declarations: [AppComponent], providers: [{provide: Store, useValue: storeMock}], }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(AppComponent); component = fixture.debugElement.componentInstance; fixture.detectChanges(); }); test('should be created', () => { expect(component).toBeTruthy(); }); test('should match snapshot', () => { expect(fixture).toMatchSnapshot(); }); }); <file_sep>import {HttpClientModule} from '@angular/common/http'; import {NgModule} from '@angular/core'; import {NgxsModule} from '@ngxs/store'; import {LanguageState} from './states'; @NgModule({ imports: [HttpClientModule, NgxsModule.forFeature([LanguageState])], }) export class CoreModule {} <file_sep>export * from './page-one'; export * from './page-two'; <file_sep>export * from './language-utils.service'; export * from './multi-translate-http-loader'; <file_sep>import {Injectable} from '@angular/core'; @Injectable({ providedIn: 'root', }) export class ConnectionService { calculated = 'testing'; calculate(): string { return this.calculated; } } <file_sep>{ "compileOnSave": false, "compilerOptions": { "baseUrl": "./", "outDir": "./dist/out-tsc", "sourceMap": true, "declaration": false, "module": "es2015", "moduleResolution": "node", "emitDecoratorMetadata": true, "experimentalDecorators": true, "importHelpers": true, "target": "es5", "typeRoots": [ "node_modules/@types" ], "lib": [ "es2018", "dom" ], "paths": { "@angular/*": [ "node_modules/@angular/*" ], "@i18n/*": [ "general/assets/i18n/*" ], // abpe for angular-best-practices-example "@abpe/root/*": [ "src/*" ], "@abpe/general": [ "general" ], "@abpe/general/*": [ "general/*" ], "@abpe/connection": [ "projects/connection/src/public_api" ], "@abpe/connection/*": [ "projects/connection/src/*" ], "@abpe/connection-standalone-app/*": [ "projects/connection-standalone-app/src/*" ], "@abpe/shared": [ "projects/shared/src/public_api" ], "@abpe/shared/*": [ "projects/shared/src/*" ], "@abpe/core": [ "projects/core/src/public_api" ], "@abpe/core/*": [ "projects/core/src/*" ] } } }
d5d70e87baf5c320cdf61d1b253118bca37cf2f6
[ "Markdown", "TypeScript", "JavaScript", "JSON with Comments" ]
80
TypeScript
haythem-ouederni/ng-best-practices
40efa4b4d47502acf65d3a2831af587785c7e9b0
550c029e6766781426df456485df16770dd09764
refs/heads/master
<repo_name>Nimfell/OOAP_stack<file_sep>/2.cs /* Задание 4. Приведите пример иерархии классов (словесное описание), где применяется принцип Открыт-Закрыт, и обоснуйте, почему одни классы (модули) выбраны открытыми, а другие закрытыми. Нашла ну просто бомбезную статью! Вроде бы даже по данной теме: https://habr.com/ru/company/tinkoff/blog/472186/ Из неё: Модули, отвечающие принципу открытости-закрытости, имеют два главных признака: 1. Открыты для расширения. Это означает, что поведение модуля может быть расширено. То есть мы можем добавить модулю новое поведение в соответствии с изменившимися требованиями к приложению или для удовлетворения нужд новых приложений. 2. Закрыты для изменений. Исходный код такого модуля неприкасаем. Никто не вправе вносить в него изменения. После прочтения статьи меня посетили такие мысли, что обдумывать структуру проекта и выстраивать иерархию классов можно только исходя из проекта, его задач и его предполагаемой сложности. (Типа как Ваши слова, что проект на 100 строк, на 3 тысячи или на 10 тысяч строк – пишется принципиально по-разному). Так как требования могут изменяться, то всё равно может возникнуть такой случай, что придется переписать половину кода, но это только если мы заранее не продумали, что требования могут измениться и что придется впоследствии дополнять проект (или модуль) новым функционалом. Если правильно оценить изначально поставленную задачу и учесть грядущие изменения в новом модуле(классе), то можно внедрить принцип ОС и намутить всех этих абстракций и интерфейсов, что бы большая часть была закрытой и не подлежала изменениям при расширении данного модуля. НО! Всего учесть нереально и не нужно, а так как времени каждый учет уйдет прилично и к тому же как правильно сказано в статье полной закрытости в программе не достичь. Хотя у меня это ещё не вполне укладывается в голове. Ну… такой пример из моей работы. Например, есть управляющая панель с кнопками и тумблерами. И есть другая панель, почти такая же (функционал к примеру тот же), но с другими тумблерами по конструкции и с другими кнопками. И при повторном использовании кода со старой панели для новой панели нужно расширить классы (модули) для работы с другими тумблерами и кнопками. Если класс (модуль) работы с кнопками написан в «макаронном» стиле, то соответственно тут нет возможности его расширить не прибегая к его изменению, а если предусмотренно переключение на другой вид кнопок с помощью абстракции, как указано в статье, но можно отдельно написать класс-наследник Новый_Тумблер : база «Тумблер» и дать на него ссылку. В итоге сам модуль закрыт, но мы может к нему подключать любые новые кнопки, не меняя его внутреннюю организацию. Задание 5. Какие из пяти принципов повторного использования модуля поддерживаются в используемом вами языке программирования (в дополнение к классам как базовой синтаксической единице)? 1ый, 2ой, 3ий, 4ый(но везде указано, что это нежелательно). 5ый… эм… Вообще не понимаю что бы это могло значит и как может быть реализовано. Задание 6. Существуют ли ситуации, когда связи между модулями должны делаться публичными? Нет. Думаю, что связи можно делать закрытыми и менять их по функционалу самих модулей, тогда сами связи останутся приватными. Какие метрики вы бы предложили для количественной оценки принципов организации модулей? Если вы разрабатывали программы, в которых было хотя бы 3-5 классов, как бы вы оценили их модульность по этим метрикам? Ну… Может быть наличие повторяющегося кода и функционала реализованного в разных частях проекта, может говорить о его непродуманности. Насчет количественной оценки… Процентное соотношение только если)). * */ <file_sep>/TwoWayList.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; /* public class ParentList<T> where T : IComparable<T> { public const int HEAD_STATUS = 0; public const int TAIL_STATUS = 1; public const int RIGHT_STATUS = 2; public const int LEFT_STATUS = 3; public const int PUT_RIGHT_STATUS = 4; public const int PUT_LEFT_STATUS = 5; public const int REMOVE_STATUS = 6; public const int ADD_TAIL_STATUS = 7; public const int REPLACE_STATUS = 8; public const int FIND_STATUS = 9; public const int REMOVE_ALL_STATUS = 10; public const int GET_COMMAND_STATUS = 11; public const int NIL = 0; // команда не вызывалась public const int OK = 1; // команда отработала нормально public const int ERR = 2; // ошибка при выполнении команды // конструктор: public ParentList() // постусловие: создан новый пустой лист // команды: // предусловие: лист не пустой // постусловие: курсор установлен на первый узел public void head() // предусловие: лист не пустой // постусловие: курсор установлен на последний узел public void tail() // предусловие: справа есть узел // постусловие: курсор установлен на один узел вправо public void right() // предусловие: курсор установлен // постусловие: вставлен новый узел следом за текущим узлом с заданным значением; public void put_right(T val) // предусловие: курсор установлен // постусловие: вставлен новый узел перед за текущим узлом с заданным значением; public void put_left(T val) // предусловие: курсор установлен // постусловие: удален текущий элемент, // курсор переставлен на левый или правый узел или убран, если лист пуст. public void remove() // постусловие: лист пуст, все значения выставлены в первоначальные public void clear() //-------------------- // постусловие: в хвост добавлен новый узел с заданным значением public void add_tail(T val) // предусловие: курсор установлен // постусловие: значение текущего узла заменено на заданное; public void replace(T val) // предусловие: курсор установлен // постусловие: курсор установлен на следующий узел с искомым значением (по отношению к текущему узлу) public void find(T val) // предусловие: в листе есть хотя бы один узел с заданным значением // постусловия: удалены все узлы с заданным значением, // если на удаленном узле стоял курсор, то он смещается по правилу remove() public void remove_all(T val) // напечатан список public void print_list() // ================================================ // запросы: // предусловие: курсор установлен public T get() //-- получить значение текущего узла; public int size() //-- посчитать количество узлов в списке. //-------------------- public bool is_head() //-- находится ли курсор в начале списка? public bool is_tail() //-- находится ли курсор в конце списка? public bool is_value() //-- установлен ли курсор на какой-либо узел в списке (по сути, непустой ли список) // предусловие: запрашиваемый статус команды есть в перечислении public int get_command_status(int COMMAND) // возвращает статус выполнения запрашиваемой команды. public bool last_command_is_success() // возвращает статус выполнения запрашиваемой команды. } public class LinkedList<T> : ParentList<T> where T : IComparable<T> { public LinkedList() } public class TwoWayList<T> : ParentList<T> where T : IComparable<T> { public TwoWayList() // предусловие: слева есть узел // постусловие: курсор установлен на один узел вправо public void left() } */ namespace LinkedLists { public class ParentList<T> where T : IComparable<T> { protected class Node<T> { public T value; public Node<T> next; public Node<T> prev; public Node(T val) { value = val; next = null; prev = null; } }; protected Node<T> Head; protected Node<T> Tail; protected Node<T> Cursor; public const int HEAD_STATUS = 0; public const int TAIL_STATUS = 1; public const int RIGHT_STATUS = 2; public const int LEFT_STATUS = 3; public const int PUT_RIGHT_STATUS = 4; public const int PUT_LEFT_STATUS = 5; public const int REMOVE_STATUS = 6; public const int ADD_TAIL_STATUS = 7; public const int REPLACE_STATUS = 8; public const int FIND_STATUS = 9; public const int REMOVE_ALL_STATUS = 10; public const int GET_COMMAND_STATUS = 11; protected const int count_of_commands = 12; protected int[] status_table; protected int last_command; public const int NIL = 0; // команда не вызывалась public const int OK = 1; // команда отработала нормально public const int ERR = 2; // ошибка при выполнении команды // конструктор: public ParentList() // постусловие: создан новый пустой лист { Head = null; Tail = null; Cursor = null; status_table = new int[count_of_commands]; for (int i = 0; i < count_of_commands; i++) { status_table[i] = NIL; } } // команды: // предусловие: лист не пустой // постусловие: курсор установлен на первый узел public void head() { if (Head != null) { Cursor = Head; set_new_status(HEAD_STATUS, OK); } else set_new_status(HEAD_STATUS, ERR); } // предусловие: лист не пустой // постусловие: курсор установлен на последний узел public void tail() { if (Tail != null) { Cursor = Tail; set_new_status(TAIL_STATUS, OK); } else set_new_status(TAIL_STATUS, ERR); } // предусловие: справа есть узел // постусловие: курсор установлен на один узел вправо public void right() { if (Cursor != null && Cursor.next != null) { Cursor = Cursor.next; set_new_status(RIGHT_STATUS, OK); } else set_new_status(RIGHT_STATUS, ERR); } // предусловие: курсор установлен // постусловие: вставлен новый узел следом за текущим узлом с заданным значением; public void put_right(T val) { if (Cursor != null) { if (Cursor == Tail) add_tail(val); else { Node<T> NODE = new Node<T>(val); NODE.next = Cursor.next; NODE.prev = Cursor; Cursor.next = NODE; NODE.next.prev = NODE; } set_new_status(PUT_RIGHT_STATUS, OK); } else set_new_status(PUT_RIGHT_STATUS, ERR); } // предусловие: курсор установлен // постусловие: вставлен новый узел перед за текущим узлом с заданным значением; public void put_left(T val) { if (Cursor != null) { Node<T> NODE = new Node<T>(val); if (Cursor == Head) Head = NODE; else { NODE.prev = Cursor.prev; NODE.prev.next = NODE; } NODE.next = Cursor; Cursor.prev = NODE; set_new_status(PUT_LEFT_STATUS, OK); } else set_new_status(PUT_LEFT_STATUS, ERR); } // предусловие: курсор установлен // постусловие: удален текущий элемент, // курсор переставлен на левый или правый узел или убран, если лист пуст. public void remove() { if (Cursor != null) { if (Head == Tail) clear(); else { if (Cursor == Head) { Head = Cursor.next; Head.prev = null; Cursor = Head; } else { if (Cursor == Tail) { Tail = Cursor.prev; Tail.next = null; Cursor = Tail; } else { Cursor.prev.next = Cursor.next; Cursor.next.prev = Cursor.prev; Cursor = Cursor.prev; } } } set_new_status(REMOVE_STATUS, OK); } else set_new_status(REMOVE_STATUS, ERR); // удалить узел на котором стоял курсор, если нужно, но не тут } // постусловие: лист пуст, все значения выставлены в первоначальные public void clear() { Head = null; Tail = null; Cursor = null; status_table = new int[count_of_commands]; for (int i = 0; i < count_of_commands; i++) { status_table[i] = NIL; } } //-------------------- // постусловие: в хвост добавлен новый узел с заданным значением public void add_tail(T val) { Node<T> NODE = new Node<T>(val); if (Head == null) { Head = NODE; Head.next = null; Head.prev = null; Cursor = Head; // курсор ставим на единственный элемент } else { Tail.next = NODE; NODE.prev = Tail; } Tail = NODE; } // предусловие: курсор установлен // постусловие: значение текущего узла заменено на заданное; public void replace(T val) { if (Cursor != null) { Cursor.value = val; set_new_status(REPLACE_STATUS, OK); } else set_new_status(REPLACE_STATUS, ERR); } // предусловие: курсор установлен // постусловие: курсор установлен на следующий узел с искомым значением (по отношению к текущему узлу) public void find(T val) { Node<T> remembed = Cursor; if (Cursor != null) { while (Cursor != null) { if (Cursor.value.CompareTo(val) == 0) { // если значения равны set_new_status(FIND_STATUS, OK); return; } Cursor = Cursor.next; } set_new_status(FIND_STATUS, ERR); // от курсора до конца списка искомых значений не найдено } else set_new_status(FIND_STATUS, ERR); // курсор не выставлен - список пуст Cursor = remembed; } // предусловие: в листе есть хотя бы один узел с заданным значением // постусловия: удалены все узлы с заданным значением, // если на удаленном узле стоял курсор, то он смещается по правилу remove() public void remove_all(T val) { set_new_status(REMOVE_STATUS, NIL); Cursor = Head; while (Cursor != Tail) { find(val); if (get_command_status(FIND_STATUS) == ERR) break; remove(); } if (get_command_status(REMOVE_STATUS) == OK) set_new_status(REMOVE_ALL_STATUS, OK); else set_new_status(REMOVE_ALL_STATUS, ERR); } // ================================================ // запросы: // предусловие: курсор установлен public T get() //-- получить значение текущего узла; { return Cursor.value; } public int size() //-- посчитать количество узлов в списке. { Node<T> Temp = Head; int i = 0; while (Temp != Tail) { Temp = Temp.next; i++; } return i; } //-------------------- public bool is_head() //-- находится ли курсор в начале списка? { return (Cursor == Head); } public bool is_tail() //-- находится ли курсор в конце списка? { return (Cursor == Tail); } public bool is_value() //-- установлен ли курсор на какой-либо узел в списке (по сути, непустой ли список). { return (Cursor != null); } // предусловие: запрашиваемый статус команды есть в перечислении public int get_command_status(int COMMAND) // возвращает статус выполнения запрашиваемой команды. { if (COMMAND > 0 && COMMAND < count_of_commands) { set_new_status(GET_COMMAND_STATUS, OK); } else { set_new_status(GET_COMMAND_STATUS, ERR); return NIL; } return status_table[COMMAND]; } protected void set_new_status(int COMMAND, int STATUS) { last_command = COMMAND; status_table[COMMAND] = STATUS; } public bool last_command_is_success() // возвращает статус выполнения запрашиваемой команды. { if (last_command != -1) return (status_table[last_command] == OK); else return false; } public void print_list() { head(); int Size = size(); for (int i = 0; i <= Size; i++) { Console.WriteLine(get()); right(); } Console.WriteLine(); } } public class LinkedList<T> : ParentList<T> where T : IComparable<T> { public LinkedList() { Head = null; Tail = null; Cursor = null; last_command = -1; status_table = new int[count_of_commands]; for (int i = 0; i < count_of_commands; i++) { status_table[i] = NIL; } } } public class TwoWayList<T> : ParentList<T> where T : IComparable<T> { public TwoWayList() { Head = null; Tail = null; Cursor = null; last_command = -1; status_table = new int[count_of_commands]; for (int i = 0; i < count_of_commands; i++) { status_table[i] = NIL; } } // предусловие: слева есть узел // постусловие: курсор установлен на один узел вправо public void left() { if (Cursor != null && Cursor.prev != null) { Cursor = Cursor.prev; set_new_status(LEFT_STATUS, OK); } else set_new_status(LEFT_STATUS, ERR); } } /* class Program { static void Main(string[] args) { LinkedList<int> list = new LinkedList<int>(); int test = 0; list.put_left(10); if( list.get_command_status(LinkedList<int>.PUT_LEFT_STATUS) != LinkedList<int>.ERR ) test++; list.put_right(11); if( list.last_command_is_success() ) test++; list.remove(); if( list.last_command_is_success() ) test++; list.right(); if( list.last_command_is_success() ) test++; list.replace(5); if( list.last_command_is_success() ) test++; list.tail(); if( list.last_command_is_success() ) test++; if (!list.is_tail()) test++; list.head(); if( list.last_command_is_success() ) test++; if( !list.is_head()) test++; list.find(5); if( list.last_command_is_success() ) test++; list.add_tail(1); list.add_tail(4); list.head(); if (!list.last_command_is_success()) test++; if (!list.is_head()) test++; list.put_right(2); if (!list.last_command_is_success()) test++; list.head(); if (!list.last_command_is_success()) test++; list.put_left(0); if (!list.last_command_is_success()) test++; list.tail(); if (!list.last_command_is_success()) test++; if (!list.is_tail()) test++; list.put_right(5); if (!list.last_command_is_success()) test++; list.put_left(3); if (!list.last_command_is_success()) test++; list.print_list(); //курсор в хвосте list.head(); list.replace(4); if (!list.last_command_is_success()) test++; list.put_left(4); if (!list.last_command_is_success()) test++; list.put_right(4); if (!list.last_command_is_success()) test++; list.add_tail(4); list.print_list(); list.head(); list.remove_all(4); if (!list.last_command_is_success()) test++; list.print_list(); list.remove_all(4); if (list.last_command_is_success()) test++; //================================================== TwoWayList<int> list2 = new TwoWayList<int>(); list2.add_tail(1); list2.add_tail(4); list2.head(); list2.put_right(2); list2.head(); list2.put_left(0); list2.tail(); list2.put_right(5); list2.put_left(3); list2.tail(); for (int i = 5; i >= 0; i--) { Console.WriteLine(list2.get()); if (list2.get() != i) test++; list2.left(); } Console.WriteLine(); } }*/ } <file_sep>/BloomFilter.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace OOAP {/* class ATD_BloomFilter { // конструктор? public ATD_BloomFilter(int size); // команда: // предусловия - нет // постусловие: в нулевые поля забиты единицы по 2м адресам public void add(string str1); // запрос: public bool is_value(string str1); // есть или нет значение } * */ public class BloomFilter { private int filter_len; private long filter; //конструктор:=================== public BloomFilter(int f_len) { filter_len = f_len; // filter size - m filter = 0; // filter } //команда:====================== void add(string str1) { filter |= hash1(str1); filter |= hash2(str1); } // запрос:===================== bool is_value(string str1) { long mask = 0; mask |= hash1(str1); mask |= hash2(str1); if ( (filter & mask) == mask ) return true; return false; } //============================ private long hash1(string str1) { int number = 17; int iteration = 0; for (int i = 0; i < str1.Length; i++) { int code = str1[i]; iteration = (iteration * number + code) % filter_len; if (iteration < 0) iteration *= -1; } long mask = 1 << iteration; return mask; } private long hash2(string str1) { int number = 223; int iteration = 0; for (int i = 0; i < str1.Length; i++) { int code = str1[i]; iteration = (iteration * number + code) % filter_len; if (iteration < 0) iteration *= -1; } long mask = 1 << iteration; return mask; } public static int Bloom_test() { int test = 0; BloomFilter Filter = new BloomFilter(32); Filter.add("Filter"); Filter.add("Bloom"); if (!Filter.is_value("Bloom")) test++; if (!Filter.is_value("Filter")) test++; if (Filter.is_value("0231589674")) test++; return test; } }; } <file_sep>/1.0.cs  /***Задание 1.********************************************************************************************* Напишите небольшой пример кода с комментариями, где применяются наследование, композиция и полиморфизм. Композиция: В классе Tribe использован класс Human, таким образом, что объекты используемого класса создаются при инициализации объектов класса Tribe и удаляются при его удалении. Наследование: Есть базовый класс Human от которого наследуют классы: Woman, Man, Child. Полиморфизм: Класс Tribe при использовании своих методов может одинаково обрабатывать объекты класса Human и всех его наследников(Woman, Man, Child). ***Задание 2.********************************************************************************************* Напишите небольшой пример кода с комментариями, где в наследовании применяется как расширение класса-родителя, так и специализация класса-родителя. Расширение класса-родителя: Классы Woman и Man были созданы посредствам расширения базового класса Human. Специализация класса-родителя: Класс TribeOfAmazons был создан введением строгой типизации класса Human. Наследование нескольких родительских классов в С# - не поддерживается. ***Задание 3.********************************************************************************************* Расскажите, как в выбранном вами языке программирования поддерживается концепция "класс как модуль". Можно каждый класс хранить в отдельном файле, отдельном пространстве имен и т.д. А ещё есть такая штука как interface она может работать как синтаксическая единица и к модулю больше подходит, если его определение такогго: "Модуль по сути предоставляет некоторый абстрактный интерфейс -- когда мы используем сам модуль в целом, а не запрятанный в нём код." ***********************************************************************************************************/ using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace TribeSharp { class Tribe // композиция { private List<Human> People; public Tribe() { People = new List<Human>(); } public void add_resident(Human NewResident) { People.Add(NewResident); } // полиморфизм при использовании зависимых классов от Human public int get_population() {return People.Count; } //public object get_Human(string name, int age, string gender) //{ return People[People.IndexOf(new Human(name, age, gender))]; } } class TribeOfAmazons : Tribe { private override List<Woman> People; // урезаем возможности базового класса, исключая полиморфизм public TribeOfAmazons() { People = new List<Woman>(); } public override void add_resident(Woman NewResident) { People.Add(NewResident); } } class Human // базовый класс { private string Gender; private string Name; private int Age; public string get_name() {return Name;} public string get_gender() {return Gender;} public int get_age() {return Age;} public Human(string name, int age, string gender) { Name = name; Age = age; Gender = gender; } } class Woman : Human // класс - наследник { private string Profession; public Woman(string name, int age, string prof) : base(name, age, "Woman") { Profession = prof; } void set_prof(string prof) { Profession = prof;} string get_prof() { return Profession; } } class Man : Human { public string Profession; public Man(string name, int age, string prof) : base(name, age, "Man") { Profession = prof; } void set_prof(string prof) { Profession = prof; } string get_prof() { return Profession; } } class Child : Human // класс - наследник { private string Mother; private string Father; public Child(string name, int age, string gender, string mom, string dad) : base(name, age, gender) { Mother = mom; Father = dad; } } class Program // класс - наследник { static void Main(string[] args) { const string M = "Man"; const string W = "Woman"; Tribe TribeOfHorn = new Tribe(); TribeOfHorn.add_resident(new Man("Mike", 34, "prof_1")); TribeOfHorn.add_resident(new Woman("Lisa", 25, "prof_2")); TribeOfHorn.add_resident(new Child("Alice", 8, W, "Mike", "Lisa")); } } } <file_sep>/Deque.cs //============ I задание: АТД Deque и его реализация ============== /* class ATD_Deque<T> { //=== Конструктор: ============================ public Deque(); //=== Команды: ================================ // Предусловие: Очерендь не пуста // Постусловие: Удаляет объект из начала очереди public void remove_head(); // Добавляет объект в конец очереди public void add_tail(T value); // Предусловие: Очерендь не пуста // Постусловие: Удаляет объект с конца очереди public void remove_tail(); // Добавляет объект в начало очереди. public void add_head(T value); // Постусловие: Удаляет все объекты из Queue<T>. public void clear(); //=== Запросы: =============================== // Предусловие: Очерендь не пуста public T get_head(); // Предусловие: Очерендь не пуста public T get_tail(); public int size(); public bool is_remove_head(); public bool is_remove_tail(); public bool is_get_head(); public bool is_get_tail(); } */ using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace OOAP { class Deque<T> { private List<T> deque; private bool get_head_STATUS; private bool get_tail_STATUS; private bool remove_head_STATUS; private bool remove_tail_STATUS; //=== Конструктор: ============================ public Deque() { deque = new List<T>(); get_head_STATUS = false; get_tail_STATUS = false; remove_head_STATUS = false; remove_tail_STATUS = false; } //=== Команды: ================================ public void add_tail(T value) { deque.Add(value); } public void add_head(T value) { deque.Insert(0, value); } public void clear() { deque.Clear(); } public void remove_head() { if (deque.Count() != 0) { deque.RemoveRange(0, 1); remove_head_STATUS = true; } else remove_head_STATUS = false; } public void remove_tail() { if (deque.Count() != 0) { deque.RemoveRange( deque.Count() - 1, 1); remove_tail_STATUS = true; } else remove_tail_STATUS = false; } //=== Запросы: =============================== public T get_head() { if (deque.Count() != 0) { get_head_STATUS = true; return deque.ElementAt(0); } else get_head_STATUS = false; return default(T); } public T get_tail() { if (deque.Count() != 0) { get_tail_STATUS = true; return deque.ElementAt(deque.Count() - 1); } else get_tail_STATUS = false; return default(T); } public int size() { return deque.Count(); } public bool is_remove_head() { return remove_head_STATUS; } public bool is_remove_tail() { return remove_tail_STATUS; } public bool is_get_head() { return get_head_STATUS; } public bool is_get_tail() { return get_tail_STATUS; } /* static public int Deque_Test() { int test = 0; Deque<int> D = new Deque<int>(); if (D.size() != 0) test++; D.remove_head(); if (D.is_remove_head()) test++; D.add_tail(1); if (D.size() != 1) test++; D.add_tail(2); if (D.size() != 2) test++; D.add_tail(3); if (D.size() != 3) test++; D.add_tail(4); if (D.size() != 4) test++; int t; D.remove_head(); if (!D.is_remove_head()) test++; D.remove_head(); if (!D.is_remove_head()) test++; D.remove_head(); if (!D.is_remove_head()) test++; t = D.get_head(); if (!D.is_get_head()) test++; if (t != 4) test++; D.remove_head(); if (!D.is_remove_head()) test++; if (D.size() != 0) test++; t = D.get_head(); if (D.is_get_head()) test++; if (t != 0) test++; D.remove_tail(); if (D.is_remove_tail()) test++; D.add_head(1); if (D.size() != 1) test++; D.add_head(2); if (D.size() != 2) test++; D.add_head(3); if (D.size() != 3) test++; D.add_head(4); if (D.size() != 4) test++; D.remove_tail(); if (!D.is_remove_tail()) test++; D.remove_tail(); if (!D.is_remove_tail()) test++; D.remove_tail(); if (!D.is_remove_tail()) test++; t = D.get_tail(); if (!D.is_get_tail()) test++; if (t != 4) test++; D.remove_tail(); if (!D.is_remove_tail()) test++; if (D.size() != 0) test++; t = D.get_tail(); if (D.is_get_tail()) test++; if (t != 0) test++; return test; } */ } } //============ II задание: Создание иерархии классов Deque и Queue ============== /* class ParentQueue<T> { //=== Конструктор: ============================ public ParentQueue(); //=== Команды: ================================ // Предусловие: Очерендь не пуста // Постусловие: Удаляет объект из начала очереди public void remove_head(); // Добавляет объект в конец очереди public void add_tail(T value); // Постусловие: Удаляет все объекты из Queue<T>. public void clear(); //=== Запросы: =============================== // Предусловие: Очерендь не пуста public T get_head(); public int size(); public bool is_remove_head(); public bool is_get_head(); } class ATD_Queue<T> : ParentQueue<T> { //=== Конструктор: ============================ public ATD_Queue(); } class ATD_Deque<T> : ParentQueue<T> { //=== Конструктор: ============================ public ATD_Deque(); //=== Команды: ================================ // Предусловие: Очерендь не пуста // Постусловие: Удаляет объект с конца очереди public void remove_tail(); // Добавляет объект в начало очереди. public void add_head(T value); //=== Запросы: =============================== // Предусловие: Очерендь не пуста public T get_tail(); public bool is_remove_tail(); public bool is_get_tail(); } */ <file_sep>/PowerSet.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace OOAP { /* class ATD_HashTable<T> { //конструктор:============ public ATD_HashTable(int size); // команды:=============== // предусловие: есть место для нового значения // постусловие: добавлен новый элемент public void put(T Value); // предусловие: значение присутствует в таблице // постусловие: значение удалено public void delete(T Value); //запросы:=============== public bool contained(T Value); // проверка входимости public bool is_put(); // проверка статуса PUT public bool is_delete(); // проверка статуса DELETE } class ATD_PowerSet<T> : ATD_HashTable<T> { //конструктор:============ public ATD_PowerSet(int size); // команды:=============== // предусловие: есть место для нового значения // постусловие: добавлен новый элемент public void put(T Value); // запросы:=============== // постусловие: создает и возращает пересечение текущего множества и set2 public ATD_PowerSet<T> Intersection(ATD_PowerSet<T> set2); // постусловие: создает и возращает объединение текущего множества и set2 public ATD_PowerSet<T> Union(ATD_PowerSet<T> set2); // постусловие: создает и возращает разницу текущего множества и set2 public ATD_PowerSet<T> Difference(ATD_PowerSet<T> set2); public bool IsSubset(ATD_PowerSet<T> set2); // возвращает true, если set2 есть подмножество текущего множества, иначе false } */ public class HashTable { protected int size; protected int step; protected string[] slots; protected bool put_STATUS; protected bool delete_STATUS; //конструктор:============ public HashTable(int new_size) { size = new_size; step = 3; slots = new string[size]; put_STATUS = false; delete_STATUS = false; } // команды:=============== public void put(string Value) { int index = seekSlot(Value); if (index == -1) { put_STATUS = false; return; } slots[index] = Value; put_STATUS = true; } public void delete(string Value) { int index = find(Value); if (index == -1) delete_STATUS = false; else { slots[index] = null; delete_STATUS = true; } } //запросы:=============== public bool contained(string Value) { if (find(Value) != -1) return true; return false; } public bool is_put() { return put_STATUS; } public bool is_delete() { return delete_STATUS; } //================================================ protected int seekSlot(string value) { int index = hashFun(value); if (index == -1) return -1; for (int i = 0; i < 3; i++) { while (index < size) { if (slots[index] == null) return index; index += step; } index = index - size; } for (int i = 0; i < size; i++) if (slots[i] == null) return i; return -1; } protected int find(string Value) { int index = 0; if (Value != null) index = hashFun(Value); if (index == -1) return -1; for (int i = 0; i < 3; i++) { while (index < size) { if (slots[index] == Value) return index; index += step; } index = index - size; } for (int i = 0; i < size; i++) if (slots[i] == Value) return index; return -1; } protected int hashFun(string value) { int index = 0; for (int i = 0; i < value.Length; i++) // adder of symbols index += (int)value[i]; if (index < 0) index *= -1; // number modulus while (index >= size) // if larger that the size index /= 3; return index; } } public class PowerSet : HashTable { //конструктор:============ public PowerSet(int new_size) : base(new_size) { } // команды:=============== public void put(string Value) { int index = find(Value); if (index != -1) { slots[index] = Value; put_STATUS = true; return; } index = seekSlot(Value); if (index == -1) { put_STATUS = false; return; } slots[index] = Value; put_STATUS = true; } // запросы: public bool is_subset(PowerSet set2) { for (int i = 0; i < set2.size; i++) { for (int j = 0; j < size; j++) { if (this.slots[j] == set2.slots[i]) break; if (j == size - 1) // дошло до конца set2 и совпадений не найдено return false; } } return true; } // постусловие: создает и возращает пересечение текущего множества и set2 (новое множество) public PowerSet Intersection(PowerSet set2) { PowerSet new_set = new PowerSet(size); for (int j = 0; j < size; j++) for (int i = 0; i < set2.size; i++) if (this.slots[j] == set2.slots[i]) new_set.put(slots[j]); return new_set; } // постусловие: создает и возращает объединение текущего множества и set2 (новое множество) public PowerSet Union(PowerSet set2) { PowerSet new_set = new PowerSet(size*2); for (int i = 0; i < size; i++) //copy set to new_set new_set.put(slots[i]); for (int j = 0; j < set2.size; j++) //copy set2 to new_set new_set.put(set2.slots[j]); return new_set; } // постусловие: создает и возращает разницу текущего множества и set2 (новое множество) public PowerSet Difference(PowerSet set2) { PowerSet new_set = new PowerSet(size); for (int i = 0; i < set2.size; i++) { for (int j = 0; j < size; j++) { if (this.slots[i] == set2.slots[j]) break; if (j == size - 1) // дошло до конца set2 и совпадений не найдено new_set.put(slots[i]); } } return new_set; } public static int PowerSet_test() { PowerSet Table = new PowerSet(5); PowerSet Table2 = new PowerSet(5); int test = 0; for (int i = 49; i <= 100; i++) // fill the entire array { string h = "light " + (char)i; Table.put( h ); } string h1 = "light 0"; if (Table.contained("light 1") != true) test++; Table.delete("light 1"); if (Table.is_delete() != true ) test++; Table.delete("light 1"); if (Table.is_delete() != false ) test++; if (Table.contained("light 1") != false) test++; if (Table.contained("dark") != false) test++; PowerSet Table6 = Table2.Union(Table); for (int i = 48; i <= 59; i++) // fill the entire array { string h = "light " + (char)i; Table2.put( h ); } PowerSet Table3 = Table.Intersection(Table2); if (Table3.contained("light 0") != false ) test++; if (Table3.contained("light 2") != true ) test++; if (Table3.contained("light F") != false ) test++; PowerSet Table4 = Table.Union(Table2); if (Table4.contained("light 2") != true ) test++; if (Table4.contained("light F") != false) test++; if (Table4.contained("light 0") != true ) test++; if (Table.is_subset(Table3) != true ) test++; if (Table.is_subset(Table2) != false ) test++; PowerSet set2 = new PowerSet(5); string str = "l "; for (int i = 48; i <= 59; i++) // fill the entire array { string str1 = str + (char)i; set2.put( str1 ); } PowerSet set1 = new PowerSet(5); for (int i = 48; i <= 59; i++) // fill the entire array { string str1 = str + (char)i; set1.put( str1 ); } PowerSet set7 = set1.Intersection(set2); PowerSet set5 = set2.Intersection(set1); string str2 = "m 0"; for (int i = 48; i <= 59; i++) // fill the entire array { string str1 = str2 + (char)i; set1.put( str1 ); } PowerSet set6 = set2.Intersection(set1); PowerSet set8 = set1.Intersection(set2); PowerSet set3 = set1.Difference(set2); PowerSet set4 = set2.Difference(set1); return test; } } } <file_sep>/DynArray.cs /*======= ATD: ========= public class DynArray<T> { // конструктор public DynArray(); // команды: // постусловие: список обнулен public void reset(); // постусновие: добавлен новый элемент в конец массива, // возможно увеличение емкости массава public void append(int value); // предусловие: индекс элемента входит в размерность массива count. включительно // постусновие: добавлен новый элемент в позицию index, // элементы справа сдвинуты на один вправо // возможно увеличение емкости массава public void insert(int value, int index); // предусловие: индекс элемента входит в размерность массива count. включительно // постусновие: удален объект из позиции index, // возможно сжатие буфера capacity. public void remove(int index); // предусловие: индекс элемента входит в размерность массива count. включительно // постусновие: изменено значение i-ого элемента public void change(int value, int index); //запросы: // предусловие: индекс элемента входит в размерность массива count. включительно public int get_item(int index); public int get_count(); public int capacity(); public bool get_insert_status(); public bool get_remove_status(); public bool get_item_status(); public bool get_change_status(); }*/ using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace DynArray { public class DynArray<T> { private int count; private int capacity; private int[] array; //link to the array private bool GET_ITEM_STATUS; private bool INSERT_STATUS; private bool REMOVE_STATUS; private bool CHANGE_STATUS; // конструктор: ----------------------------- public DynArray() { count = 0; make_array(16); GET_ITEM_STATUS = false; INSERT_STATUS = false; REMOVE_STATUS = false; CHANGE_STATUS = false; } // команды: --------------------------------- public void reset() { count = 0; make_array(16); GET_ITEM_STATUS = false; INSERT_STATUS = false; REMOVE_STATUS = false; } private void make_array(int new_capacity) { if (new_capacity < 16) new_capacity = 16; int[] new_array = new int[new_capacity]; for (int i = 0; i < count; i++) // copy array into new array to the 'count' new_array[i] = array[i]; capacity = new_capacity; array = new_array; } public void append(int value) { if (count == capacity) make_array(capacity * 2); array[count] = value; count++; } public void insert(int value, int index) { if (index > count) INSERT_STATUS = false; //item was not found else { if (index == count) append(value); else { if (count == capacity) make_array(capacity * 2); for (int i = count; i > index; i--) //copy to the right array[i] = array[i - 1]; array[index] = value; count++; } INSERT_STATUS = true; } } public void remove(int index) { if (index >= count) INSERT_STATUS = false; //item was not found else { for (int i = index; i < count; i++) //copy to the left array[i] = array[i + 1]; if (count <= capacity / 2 && capacity != 16) //if less than 50% make_array(capacity * 2 / 3); count--; INSERT_STATUS = true; } } public void change(int value, int index) { if (index >= count) CHAHGE_STATUS = false; //item was not found else { array[index] = value; CHAHGE_STATUS = true; } } //запросы: ---------------------------------- public int get_item(int index) { if (index >= count) { GET_ITEM_STATUS = false; return -1; } GET_ITEM_STATUS = true; return array[index]; } public int get_count() { return count; } public int get_capacity() { return capacity; } public bool get_append_status() { return GET_ITEM_STATUS; } public bool get_insert_status() { return INSERT_STATUS; } public bool get_remove_ststus() { return REMOVE_STATUS; } public bool get_change_status() { return CHANGE_STATUS; } } } <file_sep>/HashTable.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; /* class ATD_HashTable<T> { //конструктор:============ public ATD_HashTable(int size); // команды:=============== // предусловие: есть место для нового значения // постусловие: добавлен новый элемент public void put(T Value); // предусловие: значение присутствует в таблице // постусловие: значение удалено public void delete(T Value); //запросы:=============== public bool contained(T Value); public bool is_put(); public bool is_delete(); } */ namespace OOAP { class HashTable { private int size; private int step; private string[] slots; private bool put_STATUS; private bool delete_STATUS; //конструктор:============ public HashTable(int new_size) { size = new_size; step = 3; slots = new string[size]; put_STATUS = false; delete_STATUS = false; } // команды:=============== public void put(string Value) { int index = seekSlot(Value); if (index == -1) { put_STATUS = false; return; } slots[index] = Value; put_STATUS = true; } public void delete(string Value) { int index = find(Value); if (index == -1) delete_STATUS = false; else { slots[index] = null; delete_STATUS = true; } } //запросы:=============== public bool contained(string Value) { if (find(Value) != -1) return true; return false; } public bool is_put() { return put_STATUS; } public bool is_delete() { return delete_STATUS; } //================================================ private int seekSlot(string value) { int index = hashFun(value); if (index == -1) return -1; for (int i = 0; i < 3; i++) { while (index < size) { if (slots[index] == null) return index; index += step; } index = index - size; } for (int i = 0; i < size; i++) if (slots[i] == null) return i; return -1; } private int find(string Value) { int index = 0; if (Value != null) index = hashFun(Value); if (index == -1) return -1; for (int i = 0; i < 3; i++) { while (index < size) { if (slots[index] == Value) return index; index += step; } index = index - size; } for (int i = 0; i < size; i++) if (slots[i] == Value) return index; return -1; } private int hashFun(string value) { int index = 0; for (int i = 0; i < value.Length; i++) // adder of symbols index += (int)value[i]; if (index < 0) index *= -1; // number modulus while (index >= size) // if larger that the size index /= 3; return index; } //======================================================== static public int test_hash_table() { HashTable Table = new HashTable(17); string value = "It’s better to light a candle than curse the darkness"; string val_2 = "You can’t make bricks without straw"; int Step = Table.step; int test = 0; // CONTAINED if (Table.contained(null) != true) test++; // checking the filling of the empty table if (Table.contained("I") != false) test++; // this value is not in the table - don't work // PUT int index = Table.hashFun(value); // index = 6 for (int i = 0; i < Table.size - 1; i++) // fill the entire array except for one cell { index = (index <= Table.size - 1) ? index : index - Table.size; Table.put(value); if (Table.put_STATUS != true) test++; index += Step; } // the last empty data cell index = (index <= Table.size - 1) ? index : index - Table.size; Table.put(val_2); if (Table.put_STATUS != true) test++; Table.put(val_2); if (Table.put_STATUS != false) test++; //the table is full return test; } } } <file_sep>/Queue.cs  /* class ATD_Queue<T> { //=== Конструктор: ============================ public Queue(); //=== Команды: ================================ // Предусловие: Очерендь не пуста // Постусловие: Удаляет объект из начала очереди Queue<T> public void Dequeue(); // Добавляет объект в конец коллекции Queue<T>. public void Enqueue(T value); // Постусловие: Удаляет все объекты из Queue<T>. public void Clear(); //=== Запросы: =============================== public int size(); // Предусловие: Очерендь не пуста public T Peek(); // Возвращает объект, находящийся в начале очереди Queue<T>, но не удаляет его. public bool is_dequeue(); public bool is_peek(); } */ using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace OOAP { class Queue<T> { private List<T> queue; private bool Dequeue_STATUS; private bool Peek_STATUS; //=== Конструктор: ============================ public Queue() { queue = new List<T>(); Peek_STATUS = false; Dequeue_STATUS = false; } //=== Команды: ================================ // Предусловие: Очерендь не пуста // Постусловие: Удаляет объект из начала очереди Queue<T> public void Dequeue() { if (queue.Count() != 0) { queue.RemoveRange(0,1); Dequeue_STATUS = true; } else Dequeue_STATUS = false; } // Добавляет объект в конец коллекции Queue<T>. public void Enqueue(T value) { queue.Add(value); } // Постусловие: Удаляет все объекты из Queue<T>. public void Clear() { queue.Clear(); } //=== Запросы: =============================== public int size() { return queue.Count(); } // Предусловие: Очерендь не пуста public T Peek() // Возвращает объект, находящийся в начале очереди Queue<T>, но не удаляет его. { if (queue.Count() != 0) { Peek_STATUS = true; return queue.ElementAt(0); } else Peek_STATUS = false; return default(T); } public bool is_dequeue() { return Dequeue_STATUS; } public bool is_peek() { return Peek_STATUS; } static public int Queue_Test() { int test = 0; Queue<int> Q = new Queue<int>(); if (Q.size() != 0) test++; Q.Dequeue(); if (Q.is_dequeue()) test++; Q.Enqueue(1); if (Q.size() != 1) test++; Q.Enqueue(2); if (Q.size() != 2) test++; Q.Enqueue(3); if (Q.size() != 3) test++; Q.Enqueue(4); if (Q.size() != 4) test++; int t; Q.Dequeue(); if (!Q.is_dequeue()) test++; Q.Dequeue(); if (!Q.is_dequeue()) test++; Q.Dequeue(); if (!Q.is_dequeue()) test++; t = Q.Peek(); if (!Q.is_peek()) test++; if (t != 4) test++; Q.Dequeue(); if (!Q.is_dequeue()) test++; if (Q.size() != 0) test++; t = Q.Peek(); if (Q.is_peek()) test++; if (t != 0) test++; return test; } } } <file_sep>/NativeDictionary.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace OOAP { /* public class ATD_NativeDictionary<T> { // конструктор public ATD_NativeDictionary(int sz); // команды: // предусловие: есть место // постусловие: значение добавлено public void put(string key, T value); // предусловие: есть значение // постусловие: значение удалено public void delete; // запросы: // предусловие: значение присутствует в словаре public T get(string key); public bool is_key(string key); // возвращает true если ключ имеется, иначе false public bool put_status(); public bool get_status(); public bool delete_status(); } */ public class NativeDictionary<T> { private string[] slots; private T[] values; private int size; private int step; private bool put_STATUS; private bool get_STATUS; private bool delete_STATUS; public NativeDictionary(int Size) { step = 3; size = Size; slots = new string[size]; values = new T[size]; } public void put(string key, T value) { int index = find(key); if (index != -1) { values[index] = value; put_STATUS = true; return; } index = seekSlot(key); if (index == -1) { put_STATUS = false; return; } values[index] = value; slots[index] = key; put_STATUS = true; } public void delete(string Key) { int index = find(Key); if (index == -1) delete_STATUS = false; else { slots[index] = null; values[index] = default(T); delete_STATUS = true; } } //запросы:=============== public bool is_key(string Key) { if (find(Key) != -1) return true; return false; } T get(string key) { int index = find(key); if (index != -1) { get_STATUS = true; return values[index]; } get_STATUS = false; return default(T); } public bool put_status() { return put_STATUS; } public bool get_status() { return get_STATUS; } public bool delete_status() { return delete_STATUS; } //====================================================== private int seekSlot(string key) { int index = hashFun(key); if (index == -1) return -1; for (int i = 0; i < 3; i++) { while (index < size) { if (slots[index] == null) return index; index += step; } index = index - size; } for (int i = 0; i < size; i++) if (slots[i] == null) return i; return -1; } private int find(string key) { int index = 0; if (key != null) index = hashFun(key); if (index == -1) return -1; for (int i = 0; i < 3; i++) { while (index < size) { if (slots[index] == key) return index; index += step; } index = index - size; } for (int i = 0; i < size; i++) if (slots[i] == key) return i; return -1; } private int hashFun(string value) { int index = 0; for (int i = 0; i < value.Length; i++) // adder of symbols index += (int)value[i]; if (index < 0) index *= -1; // number modulus while (index >= size) // if larger that the size index /= 3; return index; } public static int test_NativeDictionary() { NativeDictionary<int> item = new NativeDictionary<int>(6); int test = 0; item.put("key 1", 1); if (item.hashFun("key 1") != 5) test++; item.put("key 2", 2); if (item.is_key("key 8")) test++; if (item.get("key 8") != 0) test++; item.put("key 4", 4); item.put("key 5", 5); if (!(item.is_key("key 4"))) test++; if (item.get("key 4") != 4) test++; item.put("key 4", 104); if (item.get("key 4") != 104) test++; if (!(item.is_key("key 5"))) test++; if (item.get("key 5") != 5) test++; item.put("key 5", 105); if (item.get("key 5") != 105) test++; item.put("key 3", 3); item.put("key 6", 6); item.put("key 7", 7); item.put("key 8", 8); if (item.is_key("key 8")) test++; if (item.get("key 8") != 0) test++; return test; } } } <file_sep>/Program.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; /* class BoundedStack<T> { public const int POP_NIL = 0; // pop() ещё не вызывалась public const int POP_OK = 1; // последняя pop() отработала нормально public const int POP_ERR = 2; // стек пуст public const int PEEK_NIL = 0; // peek() ещё не вызывалась public const int PEEK_OK = 1; // последняя peek() вернула корректное значение public const int PEEK_ERR = 2; // стек пуст public const int PUSH_NIL = 0; // push() ещё не вызывалась public const int PUSH_OK = 1; // последняя push() отработала нормально public const int PUSH_ERR = 2; // стек переполнен // конструкторы public BoundedStack<T> BoundedStack(); // постусловие: создан новый пустой стек с макимальным размером по умолчанию public BoundedStack<T> BoundedStack(int size); // постусловие: создан новый пустой стек с заданным максимальным размером // команды: // предусловие: в стеке есть свободное место // постусловие: в стек добавлено новое значение public void push(T value); // предусловие: стек не пустой; // постусловие: из стека удалён верхний элемент public void pop(); // постусловие: из стека удалятся все значения public void clear(); // запросы: public T peek(); // предусловие: стек не пустой public int size(); // дополнительные запросы: public int get_pop_status(); // возвращает значение POP_* public int get_peek_status(); // возвращает значение PEEK_* public int get_push_status(); // возвращает значение PUSH_* } */ namespace Stack { class BoundedStack <T> { // константы private const int MAX_SIZE = 32; // размер по умолчанию // скрытые поля private List<T> stack; private int peek_status; private int pop_status; private int push_status; // статус команды add() private int stack_size; // ограничение размера стека // интерфейс класса, реализующий АТД Stack public const int POP_NIL = 0; public const int POP_OK = 1; public const int POP_ERR = 2; public const int PEEK_NIL = 0; public const int PEEK_OK = 1; public const int PEEK_ERR = 2; public const int PUSH_NIL = 0; // без статуса public const int PUSH_OK = 1; // добавление выполнено public const int PUSH_ERR = 2; // стек переполнен public BoundedStack() // конструктор { clear(); stack_size = MAX_SIZE; } public BoundedStack(int size) // конструктор { clear(); stack_size = size; } public void push(T value) { if (size() < stack_size) // если стек не заполнен { stack.Add(value); push_status = PUSH_OK; } else push_status = PUSH_ERR; } public void pop() { if (size() > 0) { stack.RemoveAt( size()-1 ); // удаление с хвоста pop_status = POP_OK; } else pop_status = POP_ERR; } public void clear() { stack = new List<T>(stack_size); // пустой список/стек // начальные статусы для предусловий peek(), pop() и push() peek_status = PEEK_NIL; pop_status = POP_NIL; push_status = PUSH_NIL; } public T peek() { T result = stack.ElementAtOrDefault( size()-1 ); // возвращаем хвост либо значение по умолчанию для типа T if (size() > 0) peek_status = PEEK_OK; else peek_status = PEEK_ERR; return result; } public int size() { return stack.Count; } // запросы статусов public int get_pop_status() { return pop_status; } public int get_peek_status() { return peek_status; } public int get_push_status() { return push_status; } } /* class Program { static void Main(string[] args) { int test = 0; BoundedStack<int> stack1 = new BoundedStack<int>(3); // Заполнение stack1.push(1); if (stack1.peek() == 1 && stack1.get_push_status() == BoundedStack<int>.PUSH_OK) test++; stack1.push(2); if (stack1.peek() == 2 && stack1.get_push_status() == BoundedStack<int>.PUSH_OK) test++; stack1.push(3); if (stack1.peek() == 3 && stack1.get_push_status() == BoundedStack<int>.PUSH_OK) test++; stack1.push(4); // переполнен if (stack1.peek() == 3 && stack1.get_push_status() == BoundedStack<int>.PUSH_ERR) test++; // Опустошение stack1.pop(); // удалить 3 if ( stack1.peek() == 2 && stack1.get_peek_status() == BoundedStack<int>.PEEK_OK && stack1.get_pop_status() == BoundedStack<int>.POP_OK) test++; stack1.pop(); // удалить 2 if ( stack1.peek() == 1 && stack1.get_peek_status() == BoundedStack<int>.PEEK_OK && stack1.get_pop_status() == BoundedStack<int>.POP_OK) test++; stack1.pop(); // удалить 1 if ( stack1.peek() == 0 && stack1.get_peek_status() == BoundedStack<int>.PEEK_ERR && stack1.get_pop_status() == BoundedStack<int>.POP_OK) test++; stack1.pop(); // стек пуст if ( stack1.peek() == 0 && stack1.get_peek_status() == BoundedStack<int>.PEEK_ERR && stack1.get_pop_status() == BoundedStack<int>.POP_ERR) test++; if (test == 8) Console.WriteLine("Тест прошел успешно"); } }*/ } <file_sep>/LinkedList_ATD.cs  // ======================================================== // 2.1 Опишите АТД LinkedList с предложенным набором операций. // ======================================================== abstract class LinkedList<T> { // ================================================ // статусы: public enum status_cmd { HEAD, TAIL, RIGHT, PUT_RIGHT, PUT_LEFT, REMOVE, ADD_TAIL, REPLACE, FIND, REMOVE_ALL, GET_COMMAND } public const int NIL = 0; // команда не вызывалась public const int OK = 1; // команда отработала нормально public const int ERR = 2; // ошибка при выполнении команды // ================================================ // конструктор: public LinkedList<T> BoundedStack(); // постусловие: создан новый пустой лист // ================================================ // команды: // предусловие: лист не пустой // постусловие: курсор установлен на первый узел public void head(); // предусловие: лист не пустой // постусловие: курсор установлен на последний узел public void tail(); // предусловие: справа есть узел // постусловие: курсор установлен на один узел вправо public void right(); // предусловие: курсор установлен // постусловие: вставлен новый узел следом за текущим узлом с заданным значением; public void put_right(T val); // предусловие: курсор установлен // постусловие: вставлен новый узел перед за текущим узлом с заданным значением; public void put_left(T val); // предусловие: курсор установлен // постусловие: удален текущий элемент, // курсов переставлен на левый или правый узел или убран, если лист пуст. public void remove(); // постусловие: лист пуст, все значения выставлены в первоначальные public void clear(); //-------------------- // постусловие: в хвост добавлен новый узел с заданным значением public void add_tail(T val); // предусловие: курсор установлен // постусловие: значение текущего узла заменено на заданное; public void replace(T val); // предусловие: курсор установлен // постусловие: курсор установлен на следующий узел с искомым значением (по отношению к текущему узлу) public void find(T val); // предусловие: в листе есть хотя бы один узел с заданным значением // постусловия: удалены все узлы с заданным значением, // если на удаленном узле стоял курсор, то он смещается по правилу remove() public void remove_all(T val); // ================================================ // запросы: // предусловие: курсор установлен public T get(); //-- получить значение текущего узла; public int size(); //-- посчитать количество узлов в списке. //-------------------- public bool is_head; //-- находится ли курсор в начале списка? public bool is_tail; //-- находится ли курсор в конце списка? public bool is_value; //-- установлен ли курсор на какой-либо узел в списке (по сути, непустой ли список). // предусловие: запрашиваемый статус команды есть в перечислении public int get_command_status(int command); // возвращает статус выполнения запрашиваемой команды. } /* // ======================================================== 2.2 Почему операция tail не сводима к другим операциям (если исходить из эффективной реализации)? * Потому что она очень проста и tail должен быть в шаговой доступности (не требуется других операций для поиска и т.д.). * Потому что есть команда add_tail(), где другими операциями её не заменить * // ======================================================== 2.3 Операция поиска всех узлов с заданным значением, выдающая список таких узлов, уже не нужна. Почему? * Потому что можно вне класса создать лист со значениями и заполнять его по циклу, используя имеющийся интерфейс данной реализации */
c70a6ffbe403f6208a47aaf17bf1962a7b307873
[ "C#" ]
12
C#
Nimfell/OOAP_stack
c8e79758fca9946f0bdc328f34d201d4dba80307
4a43039dd2e70fb42e3bab990edbcfc5c946c2d2
refs/heads/master
<file_sep>// // QuestionsNumber.swift // Songs Quiz // // Created by Laurent on 23/08/2017. // Copyright © 2017 Laurent68k. All rights reserved. // import Foundation enum QuestionsNumberError: Error { case invalidNumberOfQuestions(count:Int) } public enum QuestionsNumber: Int { case questions15 = 0 case questions25 = 1 case questions50 = 2 public func getStringTranslated() -> String { var result = String.empty switch self { case .questions15: result = NSLocalizedString("15 Questions", comment: "") case .questions25: result = NSLocalizedString("25 Questions", comment: "") case .questions50: result = NSLocalizedString("50 Questions", comment: "") } return result } public func wheelRow() -> Int { return self.rawValue } public func asIntValue() -> Int { var result : Int = 0 switch self { case .questions15: result = 15 case .questions25: result = 25 case .questions50: result = 50 } return result } public static func valueFrom(questionsCount count : Int ) throws -> QuestionsNumber { var result : QuestionsNumber = .questions15 switch count { case 15: result = .questions15 case 25: result = .questions25 case 50: result = .questions50 default: throw QuestionsNumberError.invalidNumberOfQuestions(count: count) } return result } } <file_sep>// // TopScoreViewController.swift // Songs Quiz // // Created by Laurent on 23/08/2017. // Copyright © 2017 Laurent68k. All rights reserved. // import UIKit public class TopScoreViewController: UIViewController, UITableViewDelegate, UITableViewDataSource { @IBOutlet weak var tableView: UITableView! /// --------------------------------------------------------------------------------------------------------------------------------------------- var topScores = [Score]() /// --------------------------------------------------------------------------------------------------------------------------------------------- override public func viewDidLoad() { super.viewDidLoad() self.tableView.delegate = self self.tableView.dataSource = self // Dummy values for testing // self.topScores.append(Score(forCount: QuestionsNumber.questions15, goodAnswer: 9, inDuration: 120)) // self.topScores.append(Score(forCount: QuestionsNumber.questions15, goodAnswer: 8, inDuration: 120)) // self.topScores.append(Score(forCount: QuestionsNumber.questions15, goodAnswer: 7, inDuration: 120)) } override public func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() } /// --------------------------------------------------------------------------------------------------------------------------------------------- /// --------------------------------------------------------------------------------------------------------------------------------------------- public func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return self.topScores.count } /// --------------------------------------------------------------------------------------------------------------------------------------------- public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { // Ask the table view to create a cell for us to use to show a person. guard let cell = self.tableView.dequeueReusableCell(withIdentifier: "ScoreCell", for: indexPath) as? ScoreCell else { fatalError("Internal Error: Expected ScoreCell type in dequeueReusableCell() ") } cell.score = self.topScores[indexPath.row] return cell } /// --------------------------------------------------------------------------------------------------------------------------------------------- @IBAction func removeAllScoresAction(_ sender: Any) { NotificationCenter.default.post(name: Notification.Name(rawValue: "removeAllTopScores"), object: nil) // Clear the local array and reload the tableview self.topScores.removeAll() self.tableView.reloadData() } } <file_sep>// // MusicPlayerViewController.swift // Songs Quiz // // Created by Laurent on 05/08/2017. // Copyright © 2017 Laurent68k. All rights reserved. // // +++ // In loving memory to my cat Chipie, 2017 August 09. // +++ import UIKit import MediaPlayer import RxSwift class MusicPlayerViewControler: UIViewController, CAAnimationDelegate { /// --------------------------------------------------------------------------------------------------------------------------------------------- private let CountScores = 50 private let Animation3DEnter = "3dAnimation1" private let Animation3DExit = "3dAnimation2" /// --------------------------------------------------------------------------------------------------------------------------------------------- private var mediaQuery : MPMediaQuery? private var viewToAnimate : UIView? private var gameDateTimeStart : Date? private var timerGameRunning : Timer? /// --------------------------------------------------------------------------------------------------------------------------------------------- // Using RxSwift var countGoodAnswer : Variable<Int> = Variable(-1) var countAnswer : Variable<Int> = Variable(-1) var topScores = [Score]() var lastScore : Variable<Score?> = Variable( nil ) var isNewRecord : Variable<Bool> = Variable( false ) var currentProposition = Variable<[(MPMediaItem,Bool)]>( [(MPMediaItem,Bool)]() ) var gameStart : Observable<Bool> { return Observable.combineLatest(countGoodAnswer.asObservable(), countAnswer.asObservable(), resultSelector: { countGoodAnswer, countAnswer in (countAnswer == SettingsViewController.getQuestionsNumber().asIntValue() && countGoodAnswer == 0) } ) } var gameCanceled : Variable<Bool> = Variable( false ) private var songsAvailableCount : Int { get { return self.mediaQuery?.items?.count ?? 0 } } var totalTimeRunning : Variable<TimeInterval> = Variable( 0.0 ) var questionTimeRunning : Variable<TimeInterval> = Variable( 0.0 ) /// --------------------------------------------------------------------------------------------------------------------------------------------- // public var musicPlayer : MPMusicPlayerController { get { return MPMusicPlayerController.applicationMusicPlayer } } /// --------------------------------------------------------------------------------------------------------------------------------------------- override public func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view, typically from a nib. self.topScores = SettingsViewController.loadScores() self.stopMedia() self.addAllObservers() self.initQuizGame() } override func viewDidAppear(_ animated: Bool) { super.viewDidAppear(animated) // Create a fake proposition to fix the bug with the very first song not played. let result = self.createNewProposition() if let mediaItem = result?.1 { // play this song as awelcome in the App self.playMedia(this:mediaItem) } } override public func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() // Dispose of any resources that can be recreated. } private func addAllObservers() { NotificationCenter.default.addObserver(forName: NSNotification.Name(rawValue: "removeAllTopScores"), object: nil, queue: OperationQueue.main) { _ in self.removeAllScores() } } func delay(delay: Double, closure: @escaping () -> ()) { DispatchQueue.main.asyncAfter(deadline: .now() + delay) { closure() } } /// --------------------------------------------------------------------------------------------------------------------------------------------- private func initQuizGame() { self.gameInit() // Create the query all songs from music library self.mediaQuery = MPMediaQuery.songs() } /// --------------------------------------------------------------------------------------------------------------------------------------------- /// Methods to override to handle the UI /// --------------------------------------------------------------------------------------------------------------------------------------------- func gameInit() { // To be override } func gameAnswerSatus(answerIsCorrect:Bool, wasProposition: Int, mediaItem: MPMediaItem) { // To be override } /// --------------------------------------------------------------------------------------------------------------------------------------------- /// /// --------------------------------------------------------------------------------------------------------------------------------------------- func startNewQuiz() { // Game is possible if we have at least 10 songs in the library. if self.songsAvailableCount >= QuestionsNumber.questions15.asIntValue() { self.countAnswer.value = SettingsViewController.getQuestionsNumber().asIntValue() self.countGoodAnswer.value = 0 self.totalTimeRunning.value = 0 let result = self.createNewProposition() if let proposition = result?.0 { self.currentProposition.value = proposition if let mediaItem = result?.1 { self.playMedia(this:mediaItem) if #available(iOS 10.0, *) { self.gameDateTimeStart = Date() } self.timeQuestionOverHandled = false self.questionTimeRunning.value = 0 self.timerGameRunning = Timer.scheduledTimer(timeInterval: 1.0, target: self, selector: #selector(self.timerGameRunningNotification), userInfo: nil, repeats: true) } } } else { if self.songsAvailableCount > 0 { self.showModalAlert("Not enough songs", message: NSLocalizedString("Expected at least " + String(QuestionsNumber.questions15.asIntValue()) + " songs to play", comment: "")) } else { self.showModalAlert("Library", message: NSLocalizedString("No songs availalable or library access denied. Go to Settings to authorize.", comment: "")) } } } func giveAnswer(answer: Int) { // Check if time to answer is not raised if !self.timeQuestionOverHandled { self.timeQuestionOverHandled = true let index = answer - 1 if self.currentProposition.value[index].1 { self.incrementScore(answerIsCorrect: true) self.gameAnswerSatus(answerIsCorrect: true, wasProposition: answer, mediaItem: self.currentProposition.value[index].0 ) } else { self.incrementScore(answerIsCorrect: false) // Find the correct proposition var goodAnswer : Int = 1 goodAnswer = ( self.currentProposition.value[1].1 ? 2 : goodAnswer ) goodAnswer = ( self.currentProposition.value[2].1 ? 3 : goodAnswer ) goodAnswer = ( self.currentProposition.value[3].1 ? 4 : goodAnswer ) self.gameAnswerSatus(answerIsCorrect: false, wasProposition: answer, mediaItem: self.currentProposition.value[goodAnswer-1].0) } } } public var timeQuestionOverHandled = false // Time to answer ellapsed, show what was the correct answer func timeToAnswerOver() { // Check if time to answer is not raised if !self.timeQuestionOverHandled { self.timeQuestionOverHandled = true self.incrementScore(answerIsCorrect: false) // Find the correct proposition var goodAnswer : Int = 1 goodAnswer = ( self.currentProposition.value[1].1 ? 2 : goodAnswer ) goodAnswer = ( self.currentProposition.value[2].1 ? 3 : goodAnswer ) goodAnswer = ( self.currentProposition.value[3].1 ? 4 : goodAnswer ) self.gameAnswerSatus(answerIsCorrect: true, wasProposition: goodAnswer, mediaItem: self.currentProposition.value[goodAnswer-1].0) } } func cancelGame() { self.timerGameRunning?.invalidate() self.stopMedia() self.gameCanceled.value = true } func requestNewProposition() { // continue with the next question if self.countAnswer.value > 0 { let result = self.createNewProposition() if let proposition = result?.0, let mediaItem = result?.1 { self.currentProposition.value = proposition self.playMedia(this: mediaItem) self.timeQuestionOverHandled = false self.questionTimeRunning.value = 0 } } // Otherwise, it's over else { var interval = TimeInterval(0) self.timerGameRunning?.invalidate() self.stopMedia() if #available(iOS 10.0, *) { let gameDateTimeEnd = Date() interval = DateInterval(start:self.gameDateTimeStart!, end:gameDateTimeEnd).duration } else { // Fallback on earlier versions interval = TimeInterval(0).advanced(by: self.totalTimeRunning.value) } let score = Score(forCount: SettingsViewController.getQuestionsNumber(), goodAnswer:self.countGoodAnswer.value, inDuration: interval) self.lastScore.value = score self.isNewRecord.value = self.addInTopScores( score: score ) if self.isNewRecord.value { SettingsViewController.saveScores(topScores:self.topScores) } } } /// --------------------------------------------------------------------------------------------------------------------------------------------- private func playMedia(this mediaItem:MPMediaItem) { // On iPhone 6 I have some issues with the playing song not corresponding to the mediaItem selected. // On iPhone SE never reproduced // By the way, they are running the same iOS version ! if let query = self.mediaQuery { self.musicPlayer.pause() self.musicPlayer.stop() self.musicPlayer.setQueue(with: query) if #available(iOS 10.1, *) { self.musicPlayer.prepareToPlay(completionHandler: { error in self.musicPlayer.nowPlayingItem = mediaItem // self.musicPlayer.currentPlaybackTime = self.getRandomTimeBegin(forMediaItem: mediaItem) self.musicPlayer.play() self.delay(delay: 0.5, closure: { self.musicPlayer.currentPlaybackTime = self.getRandomTimeBegin(forMediaItem: mediaItem) }) }) } else { // Fallback on earlier versions self.musicPlayer.nowPlayingItem = mediaItem self.musicPlayer.currentPlaybackTime = self.getRandomTimeBegin(forMediaItem: mediaItem) // IOS 9.x: Seems better to send on the main thread queue de playing request. DispatchQueue.main.async { self.musicPlayer.play() } } } } private func stopMedia() { self.musicPlayer.pause() self.musicPlayer.stop() } /// --------------------------------------------------------------------------------------------------------------------------------------------- // Return the text to display for the proposition: song title, artist or album depending the game level func textToDisplay(proposition:(MPMediaItem,Bool), previous:[(MPMediaItem,Bool)]) -> String { var text = String.empty switch SettingsViewController.getGameLevel() { case .easy: text = (proposition.0.title ?? String.empty) case .middle: if Int( arc4random_uniform(2)) == 0 { text = NSLocalizedString("Title: ", comment:"") + (proposition.0.title ?? String.empty) } else if !self.isUsed(artist: proposition.0.artist, inPrevious:previous) { text = NSLocalizedString("Artist: ", comment:"") + (proposition.0.artist ?? String.empty) } else { text = NSLocalizedString("Title: ", comment:"") + (proposition.0.title ?? String.empty) } case .high: let random = Int( arc4random_uniform(3) ) if random == 0 { text = NSLocalizedString("Title: ", comment:"") + (proposition.0.title ?? String.empty) } else if random == 1 && !self.isUsed(artist: proposition.0.artist, inPrevious:previous) { text = NSLocalizedString("Artist: ", comment:"") + (proposition.0.artist ?? String.empty) } else if random == 2 && !self.isUsed(album: proposition.0.albumTitle, inPrevious:previous) { text = NSLocalizedString("Album: ", comment:"") + (proposition.0.albumTitle ?? String.empty) } else { text = NSLocalizedString("Title: ", comment:"") + (proposition.0.title ?? String.empty) } } return text } /// --------------------------------------------------------------------------------------------------------------------------------------------- private func isUsed(artist: String?, inPrevious:[(MPMediaItem,Bool)]) -> Bool { var isUsed = false if let artist = artist { for tuple in inPrevious { isUsed = ( tuple.0.albumArtist?.uppercased() == artist.uppercased() ) if isUsed { break } } } else { // Consider that the song file has no artist set => Not propose the artist name ! isUsed = true } return isUsed } /// --------------------------------------------------------------------------------------------------------------------------------------------- private func isUsed(album: String?, inPrevious:[(MPMediaItem,Bool)]) -> Bool { var isUsed = false if let album = album { for tuple in inPrevious { isUsed = ( tuple.0.albumTitle?.uppercased() == album.uppercased() ) if isUsed { break } } } else { // Consider that the song file has no album title set => Not propose the album title ! isUsed = true } return isUsed } /// --------------------------------------------------------------------------------------------------------------------------------------------- @objc private func timerGameRunningNotification() { self.totalTimeRunning.value = self.totalTimeRunning.value + 1 if !self.timeQuestionOverHandled { self.questionTimeRunning.value = self.questionTimeRunning.value + 1 } } /// --------------------------------------------------------------------------------------------------------------------------------------------- /// /// --------------------------------------------------------------------------------------------------------------------------------------------- // Add the score in the top list if the score is better than the lowest. keep only the 10 better scores internal func addInTopScores(score newScore: Score) -> Bool { var shouldBeSaved = false if newScore.isHit() { // First score, insert it if self.topScores.count == 0 { self.topScores.append( newScore ) } else { // New score, check if the new one is better than the previous stored. Enumerate each tuple var inserted = false for (index, score) in self.topScores.enumerated() { if newScore.timeElapsed < score.timeElapsed { self.topScores.insert( newScore, at: index ) inserted = true break } } // This new score worst of all already present scores: Insert it if we have less than 10 scores recoreded. if !inserted && self.topScores.count <= CountScores - 1 { self.topScores.append( newScore ) } } // keep only the top 10 if self.topScores.count > CountScores { let top10 = self.topScores[0...CountScores - 1] self.topScores.removeAll() self.topScores.append(contentsOf: top10) } shouldBeSaved = true } return shouldBeSaved } /// /// --------------------------------------------------------------------------------------------------------------------------------------------- // Increment the number of questions and correct answers private func incrementScore(answerIsCorrect: Bool ) { // Increment the total answers given Observable() self.countAnswer.value -= 1 if answerIsCorrect { // Increment the correct answers counter Observable() self.countGoodAnswer.value += 1 } } /// /// --------------------------------------------------------------------------------------------------------------------------------------------- // Obtain a new question/proposition returned in a tuple which is the 4 propositions and the media item to play private func createNewProposition() -> ( [(MPMediaItem,Bool)]?, MPMediaItem )? { if self.songsAvailableCount > 0 { // Get a random number inside the total number of songs to select 4 propositions let songIndex1 = self.getRandomIndex( previous: [] ) let songIndex2 = self.getRandomIndex( previous: [ songIndex1 ] ) let songIndex3 = self.getRandomIndex( previous: [ songIndex1, songIndex2 ] ) let songIndex4 = self.getRandomIndex( previous: [ songIndex1, songIndex2, songIndex3 ] ) if let mediaItem1 = self.mediaQuery?.items?[songIndex1] { if let mediaItem2 = self.mediaQuery?.items?[songIndex2] { if let mediaItem3 = self.mediaQuery?.items?[songIndex3] { if let mediaItem4 = self.mediaQuery?.items?[songIndex4] { // Get a random song which will be the expected answer let indexGoodAnswer = Int( arc4random_uniform(4) ) var propositions = [ (mediaItem1, false), (mediaItem2, false),(mediaItem3, false),(mediaItem4, false) ] // It's possible to have several time the same proposition: In this case loop and tag the dupplicate proposition as correct for index in 0..<propositions.count { if propositions[index].0 === propositions[indexGoodAnswer].0 { propositions[index].1 = true } } print("Correct anwser: \(indexGoodAnswer+1)") return (propositions, propositions[indexGoodAnswer].0 ) } } } } } return nil } private func getRandomIndex( previous:[Int] ) -> Int { var index = Int( arc4random_uniform(UInt32(self.songsAvailableCount)) ) if previous.count > 0 { var trial = 0 var isPresent = false repeat { for element in previous { isPresent = ( index == element) if isPresent { index = Int( arc4random_uniform(UInt32(self.songsAvailableCount)) ) break } } trial += 1 } while trial < 5 && isPresent } return index } /// --------------------------------------------------------------------------------------------------------------------------------------------- // Return an random starting playback time // Rule: Time will be [0, duration/2] private func getRandomTimeBegin(forMediaItem mediaItem: MPMediaItem) -> TimeInterval { // get a random value between 0 and the mid of songs let timeSecondsBegin = TimeInterval( arc4random_uniform(UInt32(mediaItem.playbackDuration / 2)) ) print("random time position: \(timeSecondsBegin)") return timeSecondsBegin } /// --------------------------------------------------------------------------------------------------------------------------------------------- /// /// --------------------------------------------------------------------------------------------------------------------------------------------- public func enterRotation(_ viewToAnimate: UIView) { self.viewToAnimate = viewToAnimate self.performRotation(viewToAnimate, animateName:Animation3DEnter, fromValue: 0.0, toValue: (.pi * 2.0), repeatTour :Float.greatestFiniteMagnitude, duration: 5.0) } private func performRotation(_ viewToAnimate: UIView, animateName:String, fromValue: Double, toValue:Double, repeatTour: Float, duration: TimeInterval = 3) { if viewToAnimate.layer.animation(forKey: animateName) == nil { let discAnimation = CABasicAnimation(keyPath: "transform.rotation.y") discAnimation.fromValue = fromValue discAnimation.toValue = toValue discAnimation.duration = duration discAnimation.repeatCount = repeatTour discAnimation.delegate = self // Receiver stays visible in tits final state at the animation end discAnimation.fillMode = kCAFillModeForwards // Don't remove at the end the Animation discAnimation.isRemovedOnCompletion = false viewToAnimate.layer.add(discAnimation, forKey: animateName) } } func removeAllScores() { self.topScores.removeAll() SettingsViewController.saveScores(topScores:self.topScores) } /// --------------------------------------------------------------------------------------------------------------------------------------------- /// --------------------------------------------------------------------------------------------------------------------------------------------- public func showModalAlert(_ title: String, message: String ) { let alert = UIAlertController(title: title, message: message, preferredStyle: UIAlertControllerStyle.alert) alert.addAction(UIAlertAction(title: NSLocalizedString("OK", comment: ""), style: UIAlertActionStyle.default, handler: nil)) self.present(alert, animated: true, completion: nil) } } <file_sep># FAVARD Laurent pod file for Songs Quiz project platform :ios, '9.0' target 'Songs Quiz' do # Comment the next line if you're not using Swift and don't want to use dynamic frameworks use_frameworks! # Pods for Songs Quiz pod 'RxSwift' target 'Songs QuizTests' do inherit! :search_paths # Pods for testing end end <file_sep>// // ViewController.swift // Songs Quiz // // Created by Laurent on 05/08/2017. // Copyright © 2017 Laurent68k. All rights reserved. // // +++ // In loving memory to my cat Chipie, 2017 August 09. // +++ import Foundation import UIKit import MediaPlayer import RxSwift class MainViewController : MusicPlayerViewControler { @IBOutlet weak var totalGoodAnswersLabel: UILabel! @IBOutlet weak var totalAnswersLabel: UILabel! @IBOutlet weak var timeRunningLabel: UILabel! @IBOutlet weak var questionTimeView: UIProgressView! @IBOutlet weak var totalGoodAnswersTextLabel: UILabel! @IBOutlet weak var totalAnswersTextLabel: UILabel! @IBOutlet weak var illustrationImage: UIImageView! @IBOutlet weak var artistLabel: UILabel! @IBOutlet weak var titleLabel: UILabel! @IBOutlet weak var playOrNewQuizItem: UIImageView! @IBOutlet weak var proposition1Item: UIButton! @IBOutlet weak var proposition2Item: UIButton! @IBOutlet weak var proposition3Item: UIButton! @IBOutlet weak var proposition4Item: UIButton! @IBOutlet weak var checkMark1Image: UIImageView! @IBOutlet weak var checkMark2Image: UIImageView! @IBOutlet weak var checkMark3Image: UIImageView! @IBOutlet weak var checkMark4Image: UIImageView! @IBOutlet weak var scoreFinal: UILabel! @IBOutlet weak var scoreFinalDuration: UILabel! @IBOutlet weak var newRecord: UIImageView! @IBOutlet weak var starImage1: UIImageView! @IBOutlet weak var starImage2: UIImageView! @IBOutlet weak var starImage3: UIImageView! @IBOutlet weak var viewCadre4: UIView! @IBOutlet weak var viewCadre3: UIView! @IBOutlet weak var viewCadre2: UIView! @IBOutlet weak var viewCadre1: UIView! @IBOutlet weak var settingsItem: UIButton! @IBOutlet weak var topScoresItem: UIButton! @IBOutlet weak var cancelImage: UIImageView! /// --------------------------------------------------------------------------------------------------------------------------------------------- //private var currentProposition = [(MPMediaItem,Bool)]() private var timer : Timer? private var illustrationSize : CGSize? private let disposeBag = DisposeBag() /// --------------------------------------------------------------------------------------------------------------------------------------------- override public func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view, typically from a nib. } override public func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() // Dispose of any resources that can be recreated. } /// --------------------------------------------------------------------------------------------------------------------------------------------- @IBAction func backToMainController( _ segue:UIStoryboardSegue ) { } /// --------------------------------------------------------------------------------------------------------------------------------------------- /// /// --------------------------------------------------------------------------------------------------------------------------------------------- override public func prepare(for segue: UIStoryboardSegue, sender: Any?) { // Perpare the ViewController for the Add action if segue.identifier == "segueOpenTopScore" { if let destinationController = segue.destination as? TopScoreViewController { destinationController.topScores = self.topScores } } } /// --------------------------------------------------------------------------------------------------------------------------------------------- // Called to initialize the UI to begin a new quiz override func gameInit() { super.gameInit() self.playOrNewQuizItem.isUserInteractionEnabled = true self.playOrNewQuizItem.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(imageTapped(recognizer:)))) self.cancelImage.isUserInteractionEnabled = true self.cancelImage.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(imageTapped(recognizer:)))) self.addRxSwiftObservers() self.initUIForNewGame() } /// --------------------------------------------------------------------------------------------------------------------------------------------- private func addRxSwiftObservers() { // Add RxSwift observers self.countAnswer.asObservable().subscribe(onNext: { counter in self.totalAnswersLabel.text = String(counter) } ).disposed(by: self.disposeBag) self.countGoodAnswer.asObservable().subscribe(onNext: { counter in self.totalGoodAnswersLabel.text = String(counter) } ).disposed(by: self.disposeBag) self.totalTimeRunning.asObservable().subscribe(onNext: { totalTimeRunning in self.timeRunningLabel.text = totalTimeRunning.durationAsString() } ).disposed(by: self.disposeBag) self.questionTimeRunning.asObservable().subscribe(onNext: { questionTimeRunning in if SettingsViewController.getTimeMaxToAnswer() { if questionTimeRunning >= SettingsViewController.TimeToAnswer && (!self.timeQuestionOverHandled) { self.timeToAnswerOver() } // Update the progress view in pourcentage: Reverse to a countdown value AND value must be in [0..1] DispatchQueue.main.async { let pourcentage = (100 - (100 * questionTimeRunning / 10) ) / 100 self.questionTimeView.setProgress(Float(pourcentage), animated: true) } } } ).disposed(by: self.disposeBag) self.lastScore.asObservable().subscribe( onNext: { score in if let score = score { self.initUIForNewGame() self.playOrNewQuizItem.isHidden = false self.settingsItem.isHidden = false self.topScoresItem.isHidden = false self.scoreFinal.text = NSLocalizedString("Score: ", comment:"") + String(score.goodAnswer) + "/" + String(score.countQuestions.asIntValue()) self.scoreFinalDuration.text = NSLocalizedString("Duration: ", comment:"") + score.timeElapsed.durationAsString() self.starImage1.isHidden = !score.isHit() self.starImage2.isHidden = !score.isHit() self.starImage3.isHidden = !score.isHit() self.starImage1.alpha = 1.0 self.starImage2.alpha = ( score.stars() >= 2 ? 1.0 : 0.5) self.starImage3.alpha = ( score.stars() >= 3 ? 1.0 : 0.5) } }).disposed(by: self.disposeBag) self.gameCanceled.asObservable().subscribe( onNext: { isCanceled in if isCanceled { self.initUIForNewGame() self.playOrNewQuizItem.isHidden = false self.settingsItem.isHidden = false self.topScoresItem.isHidden = false self.scoreFinal.text = String.empty self.scoreFinalDuration.text = String.empty self.starImage1.isHidden = true self.starImage2.isHidden = true self.starImage3.isHidden = true } }).disposed(by: self.disposeBag) self.isNewRecord.asObservable().subscribe( onNext: { isNewRecord in self.newRecord.isHidden = !isNewRecord }).disposed(by: self.disposeBag) // Observer on a proposition self.currentProposition.asObservable().subscribe(onNext: { propositions in if propositions.count > 0 { // Then set the fake propositions self.proposition1Item.setTitle(self.textToDisplay(proposition: propositions[0], previous:[]), for: .normal) self.proposition2Item.setTitle(self.textToDisplay(proposition: propositions[1], previous:[ propositions[0] ]), for: .normal) self.proposition3Item.setTitle(self.textToDisplay(proposition: propositions[2], previous:[ propositions[0], propositions[1] ]), for: .normal) self.proposition4Item.setTitle(self.textToDisplay(proposition: propositions[3], previous:[ propositions[0], propositions[1], propositions[2]]), for: .normal) } } ).disposed( by: self.disposeBag ) // Observer on Computed Property to handle when the game start self.gameStart.subscribe(onNext: { gameStarted in if gameStarted { self.gameStarting() } } ).disposed( by: self.disposeBag ) } /// --------------------------------------------------------------------------------------------------------------------------------------------- private func gameStarting() { self.scoreFinal.text = String.empty self.scoreFinalDuration.text = String.empty self.starImage1.isHidden = true self.starImage2.isHidden = true self.starImage3.isHidden = true self.newRecord.isHidden = true self.illustrationImage.isHidden = false self.cancelImage.isHidden = false self.playOrNewQuizItem.isHidden = true self.settingsItem.isHidden = true self.topScoresItem.isHidden = true self.viewCadre4.isHidden = false self.viewCadre3.isHidden = false self.viewCadre2.isHidden = false self.viewCadre1.isHidden = false self.questionTimeView.isHidden = !SettingsViewController.getTimeMaxToAnswer() self.totalAnswersTextLabel.text = NSLocalizedString("Lap", comment: "") self.totalGoodAnswersTextLabel.text = NSLocalizedString("Good", comment: "") self.enterRotation(self.illustrationImage) } /// --------------------------------------------------------------------------------------------------------------------------------------------- override func gameAnswerSatus(answerIsCorrect:Bool, wasProposition: Int, mediaItem: MPMediaItem) { var checkMark : UIImageView! switch( wasProposition ) { case 1: checkMark = self.checkMark1Image case 2: checkMark = self.checkMark2Image case 3: checkMark = self.checkMark3Image case 4: checkMark = self.checkMark4Image default: checkMark = self.checkMark4Image } checkMark.image = ( answerIsCorrect ? UIImage(named: "goodAnswer" ) : UIImage(named: "badAnswer" ) ) checkMark.isHidden = false self.artistLabel.text = mediaItem.artist self.titleLabel.text = mediaItem.title if let image = mediaItem.artwork?.image(at: self.illustrationSize!) { self.illustrationImage.image = image } else { self.illustrationImage.image = UIImage(named: "unknownIllustration") } // Raise a timer to shutdonw the displaying after a delay let timerDuration = ( answerIsCorrect ? 1.0 : 2.5) self.timer = Timer.scheduledTimer(timeInterval: timerDuration, target: self, selector: #selector(self.timerNotification), userInfo: nil, repeats: false) } /// --------------------------------------------------------------------------------------------------------------------------------------------- @objc private func timerNotification() { self.checkMark1Image.isHidden = true self.checkMark2Image.isHidden = true self.checkMark3Image.isHidden = true self.checkMark4Image.isHidden = true self.illustrationImage.image = UIImage(named:"questionMark") self.artistLabel.text = String.empty self.titleLabel.text = String.empty self.requestNewProposition() } /// --------------------------------------------------------------------------------------------------------------------------------------------- private func initUIForNewGame() { self.illustrationImage.image = UIImage(named: "questionMark") self.illustrationImage.isHidden = true self.cancelImage.isHidden = true self.checkMark1Image.isHidden = true self.checkMark2Image.isHidden = true self.checkMark3Image.isHidden = true self.checkMark4Image.isHidden = true self.viewCadre4.isHidden = true self.viewCadre3.isHidden = true self.viewCadre2.isHidden = true self.viewCadre1.isHidden = true self.proposition1Item.setTitle(String.empty, for: .normal) self.proposition2Item.setTitle(String.empty, for: .normal) self.proposition3Item.setTitle(String.empty, for: .normal) self.proposition4Item.setTitle(String.empty, for: .normal) self.totalAnswersLabel.text = String.empty self.totalGoodAnswersLabel.text = String.empty self.totalAnswersTextLabel.text = String.empty self.totalGoodAnswersTextLabel.text = String.empty self.timeRunningLabel.text = String.empty self.questionTimeView.isHidden = true self.artistLabel.text = String.empty self.titleLabel.text = String.empty self.scoreFinal.text = String.empty self.scoreFinalDuration.text = String.empty self.starImage1.isHidden = true self.starImage2.isHidden = true self.starImage3.isHidden = true self.newRecord.isHidden = true self.illustrationSize = CGSize(width: self.illustrationImage.frame.width, height:self.illustrationImage.frame.height) } /// --------------------------------------------------------------------------------------------------------------------------------------------- @objc private func imageTapped(recognizer: UITapGestureRecognizer) { let tappedImage = recognizer.view as? UIImageView if tappedImage === self.playOrNewQuizItem { self.startNewQuiz() } else if tappedImage === self.cancelImage { self.cancelGame() } else { } } @IBAction func proposition1Action(_ sender: UIButton) { self.giveAnswer(answer: 1) } @IBAction func proposition2Action(_ sender: UIButton) { self.giveAnswer(answer: 2) } @IBAction func proposition3Action(_ sender: UIButton) { self.giveAnswer(answer: 3) } @IBAction func proposition4Action(_ sender: UIButton) { self.giveAnswer(answer: 4) } } extension String { public static let empty = "" } <file_sep>// // Songs_QuizTests.swift // Songs QuizTests // // Created by Laurent on 30/08/2017. // Copyright © 2017 Laurent68k. All rights reserved. // import UIKit import MediaPlayer import XCTest class Songs_QuizTests: XCTestCase { override func setUp() { super.setUp() // Put setup code here. This method is called before the invocation of each test method in the class. } override func tearDown() { // Put teardown code here. This method is called after the invocation of each test method in the class. super.tearDown() } func test001() { let mpViewController = MusicPlayerViewControler() let score = Score(forCount: QuestionsNumber.questions15, goodAnswer: 15, inDuration: 60) XCTAssert(mpViewController.addInTopScores(score: score), "test001 failed: addInTopScores should return True" ) XCTAssert(mpViewController.topScores.count == 1, "test001 failed: Expected 1 element in top score" ) } func test002() { let mpViewController = MusicPlayerViewControler() let score1 = Score(forCount: QuestionsNumber.questions15, goodAnswer: 15, inDuration: 60) let score2 = Score(forCount: QuestionsNumber.questions15, goodAnswer: 15, inDuration: 120) XCTAssertTrue( mpViewController.addInTopScores(score: score1) ) XCTAssert(mpViewController.addInTopScores(score: score2), "test0012 failed: addInTopScores should return True" ) XCTAssert(mpViewController.topScores.count == 2, "test002 failed: Expected 2 elements in top score" ) } func test003() { let mpViewController = MusicPlayerViewControler() let score1 = Score(forCount: QuestionsNumber.questions15, goodAnswer: 15, inDuration: 120) let score2 = Score(forCount: QuestionsNumber.questions15, goodAnswer: 15, inDuration: 130) let score3 = Score(forCount: QuestionsNumber.questions15, goodAnswer: 15, inDuration: 100) XCTAssertTrue( mpViewController.addInTopScores(score: score1) ) XCTAssertTrue( mpViewController.addInTopScores(score: score2) ) XCTAssert(mpViewController.addInTopScores(score: score3), "test003 failed: addInTopScores should return True" ) XCTAssert(mpViewController.topScores.count == 3, "test003 failed: Expected 3 elements in top score" ) } func test004() { let mpViewController = MusicPlayerViewControler() for _ in 1...15 { let score = Score(forCount: QuestionsNumber.questions15, goodAnswer: 15, inDuration: 120) XCTAssertTrue( mpViewController.addInTopScores(score: score) ) } XCTAssert(mpViewController.topScores.count == 15, "test004 failed: Top list should be full with 15 elements" ) XCTAssert(mpViewController.addInTopScores(score: Score(forCount: QuestionsNumber.questions15, goodAnswer: 15, inDuration: 120)), "test004 failed: addInTopScores should return True") XCTAssert(mpViewController.topScores.count == 16, "test004 failed: Top list should be fill up with 16 elements" ) } func test005() { let mpViewController = MusicPlayerViewControler() for _ in 1...15 { let score = Score(forCount: QuestionsNumber.questions15, goodAnswer: 15, inDuration: 120) XCTAssertTrue( mpViewController.addInTopScores(score: score) ) } XCTAssert(mpViewController.topScores.count == 15, "test005 failed: Top list should be full with 15 elements" ) XCTAssert(mpViewController.addInTopScores(score: Score(forCount: QuestionsNumber.questions15, goodAnswer: 15, inDuration: 60)), "test005 failed: addInTopScores should return True") XCTAssert(mpViewController.topScores.count == 16, "test005 failed: Top list should be fill up with 16 elements" ) let score = mpViewController.topScores[0] XCTAssert(score.timeElapsed == 60, "test005 failed: Top list should be fill up with 10 elements" ) } func test006() { let mpViewController = MusicPlayerViewControler() for _ in 1...9 { let score = Score(forCount: QuestionsNumber.questions15, goodAnswer: 15, inDuration: 120) XCTAssertTrue( mpViewController.addInTopScores(score: score) ) } XCTAssert(mpViewController.topScores.count == 9, "test006 failed: Top list should be fill up with 9 elements" ) XCTAssert(mpViewController.addInTopScores(score: Score(forCount: QuestionsNumber.questions15, goodAnswer: 15, inDuration: 130)), "test006 failed: addInTopScores should return True") XCTAssert(mpViewController.topScores.count == 10, "test006 failed: Top list should be fill up with 10 elements" ) let score = mpViewController.topScores[9] XCTAssert(score.timeElapsed == 130, "test006 failed: Top list should be fill up with 15 elements" ) } func test007() { let mpViewController = MusicPlayerViewControler() for _ in 1...5 { let score = Score(forCount: QuestionsNumber.questions15, goodAnswer: 15, inDuration: 60) XCTAssertTrue( mpViewController.addInTopScores(score: score) ) } for _ in 1...5 { let score = Score(forCount: QuestionsNumber.questions15, goodAnswer: 15, inDuration: 120) XCTAssertTrue( mpViewController.addInTopScores(score: score) ) } XCTAssert(mpViewController.topScores.count == 10, "test007 failed: Top list should be fill up with 10 elements" ) XCTAssert(mpViewController.addInTopScores(score: Score(forCount: QuestionsNumber.questions15, goodAnswer: 15, inDuration: 90)), "test007 failed: addInTopScores should return True") XCTAssert(mpViewController.topScores.count == 11, "test007 failed: Top list should be fill up with 11 elements" ) let score = mpViewController.topScores[5] XCTAssert(score.timeElapsed == 90, "test007 failed: Top list should be fill up with 10 elements" ) } // func test008() { // // let mpViewController = MusicPlayerViewControler() // // for _ in 1...5 { // // let score = Score(forCount: QuestionsNumber.questions15, goodAnswer: 15, inDuration: 60) // XCTAssertTrue( mpViewController.addInTopScores(score: score) ) // // } // // for _ in 1...5 { // // let score = Score(forCount: QuestionsNumber.questions15, goodAnswer: 15, inDuration: 120) // XCTAssertTrue( mpViewController.addInTopScores(score: score) ) // // } // // mpViewController.saveScores() // mpViewController.topScores.removeAll() // XCTAssert(mpViewController.topScores.count == 0, "test008 failed: Top list should be empty" ) // // // mpViewController.loadScores() // XCTAssert(mpViewController.topScores.count == 10, "test008 failed: Top list should be full with 10 elements" ) // // // } func testPerformanceExample() { // This is an example of a performance test case. self.measure { // Put the code you want to measure the time of here. } } } <file_sep>// // SettingsViewController.swift // Songs Quiz // // Created by Laurent on 23/08/2017. // Copyright © 2017 Laurent68k. All rights reserved. // import UIKit public class SettingsViewController: UIViewController, UIPickerViewDelegate, UIPickerViewDataSource { @IBOutlet weak var numberQuestionsPicker: UIPickerView! @IBOutlet weak var gameLevelPicker: UIPickerView! @IBOutlet weak var timeMaxSwitch : UISwitch! /// --------------------------------------------------------------------------------------------------------------------------------------------- private var pickerQuestionsContent: [String] = [ QuestionsNumber.questions15.getStringTranslated(), QuestionsNumber.questions25.getStringTranslated(), QuestionsNumber.questions50.getStringTranslated(), ] private var pickerGameLevelContent: [String] = [ GameLevel.easy.getStringTranslated(), GameLevel.middle.getStringTranslated(), GameLevel.high.getStringTranslated(), ] /// --------------------------------------------------------------------------------------------------------------------------------------------- private static let AppVersion = "VERSION" private static let QuestionsNumberSelected = "QuestionsNumberSelected" private static let QuestionsNumberDefault = QuestionsNumber.questions15.rawValue private static let GameLevelSelected = "GameLevelSelected" private static let GameLevelDefault = GameLevel.easy.rawValue private static let TimeMaxToAnswerSelected = "TimeMaxToAnswerSelected" private static let TimeMaxToAnswerDefault = false public static let TopScores = "TopScores" public static let TimeToAnswer : TimeInterval = 10.0 /// --------------------------------------------------------------------------------------------------------------------------------------------- override public func viewDidLoad() { super.viewDidLoad() } override public func viewWillAppear(_ animated: Bool) { self.numberQuestionsPicker.delegate = self self.numberQuestionsPicker.dataSource = self self.gameLevelPicker.delegate = self self.gameLevelPicker.dataSource = self self.loadUserDefaults() } override public func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() } /// --------------------------------------------------------------------------------------------------------------------------------------------- /// /// --------------------------------------------------------------------------------------------------------------------------------------------- override public func prepare(for segue: UIStoryboardSegue, sender: Any?) { if segue.identifier == "validateSegue" { self.saveUserDefaults() } } override public func shouldPerformSegue(withIdentifier identifier: String, sender: Any?) -> Bool { return true } /// --------------------------------------------------------------------------------------------------------------------------------------------- /// UIPIckerView delegate implementation /// --------------------------------------------------------------------------------------------------------------------------------------------- // The numberOfComponentsInPickerView method asks for the number of columns in your picker element. For example, if you wanted to do a picker for // selecting time, you might have 3 components; one for each of hour, minutes and seconds. public func numberOfComponents(in pickerView: UIPickerView) -> Int { return 1 } /// --------------------------------------------------------------------------------------------------------------------------------------------- // The numberOfRowsInComponent method asks for the number of rows of data in your UIPickerView element so we return the array count. public func pickerView(_ pickerView: UIPickerView, numberOfRowsInComponent component: Int) -> Int { if pickerView === self.numberQuestionsPicker { return self.pickerQuestionsContent.count } else { return self.pickerGameLevelContent.count } } /// --------------------------------------------------------------------------------------------------------------------------------------------- // The pickerView:titleForRow:forComponent: method asks for the data for a specific row and specific component. public func pickerView(_ pickerView: UIPickerView, titleForRow row: Int, forComponent component: Int) -> String? { if pickerView === self.numberQuestionsPicker { return pickerQuestionsContent[row] } else { return pickerGameLevelContent[row] } } /// --------------------------------------------------------------------------------------------------------------------------------------------- public func pickerView(_ pickerView: UIPickerView, viewForRow row: Int, forComponent component: Int, reusing view: UIView?) -> UIView { var pickerLabel = view as? UILabel if pickerLabel == nil { pickerLabel = UILabel() pickerLabel?.font = UIFont.boldSystemFont(ofSize: 20) pickerLabel?.textColor = .blue pickerLabel?.textAlignment = NSTextAlignment.center } if pickerView === self.numberQuestionsPicker { pickerLabel?.text = pickerQuestionsContent[row] } else { pickerLabel?.text = pickerGameLevelContent[row] } return pickerLabel! } /// --------------------------------------------------------------------------------------------------------------------------------------------- /// --------------------------------------------------------------------------------------------------------------------------------------------- /// Create an userDefaults with the expected values for this BundleVersion, typically for a new installation. public class func createUserDefaultsIfany() { let defaults = UserDefaults.standard // If no version is stored => This is fresh installation if self.getStoredVersion() == String.empty { defaults.set( SettingsViewController.QuestionsNumberDefault, forKey: SettingsViewController.QuestionsNumberSelected ) defaults.set( SettingsViewController.GameLevelDefault, forKey: SettingsViewController.GameLevelSelected ) defaults.set( SettingsViewController.TimeMaxToAnswerDefault, forKey: SettingsViewController.TimeMaxToAnswerSelected ) defaults.set( SettingsViewController.getBundleVersion(), forKey: SettingsViewController.AppVersion ) } } /// --------------------------------------------------------------------------------------------------------------------------------------------- func loadUserDefaults() { let defaults = UserDefaults.standard var questionsNumber = QuestionsNumber.questions15 var gameLevel = GameLevel.easy var timeMaxActivate = false if SettingsViewController.getStoredVersion() == SettingsViewController.getBundleVersion() { questionsNumber = QuestionsNumber( rawValue: defaults.integer(forKey: SettingsViewController.QuestionsNumberSelected)) ?? QuestionsNumber.questions15 gameLevel = GameLevel( rawValue: defaults.integer(forKey: SettingsViewController.GameLevelSelected)) ?? GameLevel.easy timeMaxActivate = defaults.bool(forKey: SettingsViewController.TimeMaxToAnswerSelected) } // For further version, I will need to update this part to reload previous version parameters and add the new one with the defaults value else { questionsNumber = QuestionsNumber( rawValue: SettingsViewController.QuestionsNumberDefault )! gameLevel = GameLevel( rawValue: defaults.integer(forKey: SettingsViewController.GameLevelSelected)) ?? GameLevel.easy timeMaxActivate = defaults.bool(forKey: SettingsViewController.TimeMaxToAnswerSelected) } self.numberQuestionsPicker.selectRow(Int(questionsNumber.wheelRow()), inComponent: 0, animated: false) self.gameLevelPicker.selectRow(Int(gameLevel.wheelRow()), inComponent: 0, animated: false) self.timeMaxSwitch.isOn = timeMaxActivate } /// --------------------------------------------------------------------------------------------------------------------------------------------- /// Save in the userDefaults private func saveUserDefaults() { let defaults = UserDefaults.standard let indexNumberQuestions = self.numberQuestionsPicker.selectedRow(inComponent: 0) let indexGameLevel = self.gameLevelPicker.selectedRow(inComponent: 0) let timeMaxActivate = self.timeMaxSwitch.isOn defaults.set( indexNumberQuestions, forKey: SettingsViewController.QuestionsNumberSelected ) defaults.set( indexGameLevel, forKey: SettingsViewController.GameLevelSelected ) defaults.set( timeMaxActivate, forKey: SettingsViewController.TimeMaxToAnswerSelected ) defaults.set( SettingsViewController.getBundleVersion(), forKey: SettingsViewController.AppVersion ) } /// --------------------------------------------------------------------------------------------------------------------------------------------- /// Save/Restore/Clear high scores recoreded /// --------------------------------------------------------------------------------------------------------------------------------------------- class func saveScores(topScores:[Score]) { let dataObject = NSKeyedArchiver.archivedData(withRootObject: topScores) UserDefaults.standard.set(dataObject, forKey: SettingsViewController.TopScores) } class func loadScores() -> [Score] { if let dataObject = UserDefaults.standard.data(forKey: SettingsViewController.TopScores) { // retrieving a value for a key if let unserialized = NSKeyedUnarchiver.unarchiveObject(with: dataObject) as? [Score] { // unserialized.forEach( { // // print( $0.goodAnswer, $0.countQuestions, $0.timeElapsed) // }) return unserialized } } return [Score]() } /// --------------------------------------------------------------------------------------------------------------------------------------------- /// --------------------------------------------------------------------------------------------------------------------------------------------- private class func getBundleVersion() -> String { let bundleInfos = Bundle.main.infoDictionary! if let version = bundleInfos["CFBundleShortVersionString"] as? String { return version } return "" } /// --------------------------------------------------------------------------------------------------------------------------------------------- private class func getStoredVersion() -> String { return UserDefaults.standard.string(forKey: SettingsViewController.AppVersion) ?? "" } /// --------------------------------------------------------------------------------------------------------------------------------------------- public class func getQuestionsNumber() -> QuestionsNumber { let value = UserDefaults.standard.integer( forKey: SettingsViewController.QuestionsNumberSelected ) return QuestionsNumber(rawValue: value) ?? QuestionsNumber.questions15 } /// --------------------------------------------------------------------------------------------------------------------------------------------- public class func getGameLevel() -> GameLevel { let value = UserDefaults.standard.integer( forKey: SettingsViewController.GameLevelSelected ) return GameLevel(rawValue: value) ?? GameLevel.easy } public class func getTimeMaxToAnswer() -> Bool { return UserDefaults.standard.bool(forKey: SettingsViewController.TimeMaxToAnswerSelected ) } } <file_sep>// // ScoreCell // Songs Quiz // // Created by Laurent on 25/08/2017. // Copyright © 2017 Laurent68k. All rights reserved. // import UIKit public class ScoreCell : UITableViewCell { @IBOutlet weak var starImage1: UIImageView! @IBOutlet weak var starImage2: UIImageView! @IBOutlet weak var starImage3: UIImageView! @IBOutlet weak var goodAnswersLabel: UILabel! @IBOutlet weak var timeLabel: UILabel! public var score: Score? { didSet { self.goodAnswersLabel.text = String(score!.goodAnswer) + "/" + String(score!.countQuestions.asIntValue()) self.timeLabel.text = score!.timeElapsed.durationAsString() self.starImage1.isHidden = !(score!.stars() >= 1) self.starImage2.isHidden = !(score!.stars() >= 2) self.starImage3.isHidden = !(score!.stars() >= 3) } } } <file_sep>// // GameLevel.swift // Songs Quiz // // Created by Laurent on 03/09/2017. // Copyright © 2017 Laurent68k. All rights reserved. // import Foundation enum GameLevelError: Error { case invalidGameLevel(count:Int) } public enum GameLevel: Int { case easy = 0 case middle = 1 case high = 2 public func getStringTranslated() -> String { var result = String.empty switch self { case .easy: result = NSLocalizedString("Song title", comment: "") case .middle: result = NSLocalizedString("Title or Artist", comment: "") case .high: result = NSLocalizedString("Title, Artist or Album", comment: "") } return result } public func wheelRow() -> Int { return self.rawValue } } <file_sep>// // Score.swift // Songs Quiz // // Created by Laurent on 23/08/2017. // Copyright © 2017 Laurent68k. All rights reserved. // import Foundation public class Score: NSObject, NSCoding { private(set) var goodAnswer : Int = 0 private(set) var countQuestions : QuestionsNumber = QuestionsNumber.questions15 private(set) var timeElapsed : TimeInterval /// --------------------------------------------------------------------------------------------------------------------------------------------- init(forCount count:QuestionsNumber, goodAnswer:Int, inDuration timeElapsed:TimeInterval ) { self.goodAnswer = goodAnswer self.countQuestions = count self.timeElapsed = timeElapsed } deinit { } /// --------------------------------------------------------------------------------------------------------------------------------------------- /// Serializarion methods from NSCoding /// --------------------------------------------------------------------------------------------------------------------------------------------- required public convenience init?(coder decoder: NSCoder) { self.init(forCount: QuestionsNumber.questions15, goodAnswer: 0, inDuration: 0) let goodAnswer = decoder.decodeInteger(forKey: "goodAnswer") let countQuestions = decoder.decodeInteger(forKey: "countQuestions") let timeElapsed = decoder.decodeDouble(forKey: "timeElapsed") self.goodAnswer = goodAnswer self.countQuestions = QuestionsNumber(rawValue: countQuestions ) ?? QuestionsNumber.questions15 self.timeElapsed = timeElapsed } public func encode(with coder: NSCoder) { coder.encode(self.goodAnswer, forKey: "goodAnswer") coder.encode(self.countQuestions.asIntValue(), forKey: "countQuestions") coder.encode(self.timeElapsed, forKey: "timeElapsed") } /// --------------------------------------------------------------------------------------------------------------------------------------------- /// --------------------------------------------------------------------------------------------------------------------------------------------- public func isHit() -> Bool { return self.stars() > 0 } /// --------------------------------------------------------------------------------------------------------------------------------------------- // return the number of stars following the number of good questions/count of questions public func stars() -> UInt { var starsCount : UInt switch self.countQuestions { case QuestionsNumber.questions15: if self.goodAnswer >= 14 { starsCount = 3 } else if self.goodAnswer >= 10 { starsCount = 2 } else if self.goodAnswer >= 8 { starsCount = 1 } else { starsCount = 0 } case QuestionsNumber.questions25: if self.goodAnswer >= 24 { starsCount = 3 } else if self.goodAnswer >= 18 { starsCount = 2 } else if self.goodAnswer >= 12 { starsCount = 1 } else { starsCount = 0 } case QuestionsNumber.questions50: if self.goodAnswer >= 45 { starsCount = 3 } else if self.goodAnswer >= 35 { starsCount = 2 } else if self.goodAnswer >= 25 { starsCount = 1 } else { starsCount = 0 } } return starsCount } } extension TimeInterval { public func durationAsString() -> String { let ti = Int(self) let seconds = ti % 60 let minutes = (ti / 60) % 60 //let hours = (ti / 3600) return String(format: "%0.2d:%0.2d",minutes,seconds) } }
0297487eeecbce0e42dd65ff5ee51a720d8ea47c
[ "Swift", "Ruby" ]
10
Swift
laurent68k/Songs-Quiz
81aefc7fed7ad7193b9458d8769fc4316c414a3d
2bcc8e156a15eb7098e9b68ed410ffb61d78871a
refs/heads/master
<repo_name>pforret/wp_cleanup<file_sep>/archive/cleanup_html.sh #!/bin/bash PATTERN="<script type='text/javascript' src='https://snippet.adsformarket.com/same.js'></script>" if [[ "$1" == "" ]] ; then # print usage echo "Usage: $0 [folder]" echo " with [folder] the root folder of all your websites (e.g. {whatever}/vhosts" echo " start this script in a folder where you can write files" echo " will look for [$PATTERN]" exit 0 fi remove_from_file(){ # $1 = file # $2 = pattern orig_file="$1" temp_file="$1.tmp" old_file="$1.hacked" size1=$(wc -c $orig_file | cut -d' ' -f1) < "$orig_file" sed "s|$2||g" > "$temp_file" size2=$(wc -c $temp_file | cut -d' ' -f1) if [[ $size1 -ne $size2 ]] ; then # replace by cleaned version mv "$orig_file" "$old_file" mv "$temp_file" "$orig_file" else # undo cleanup rm "$temp_file" fi } STARTDIR=$(pwd) pushd $1 SITES=$STARTDIR/sites.txt if [[ ! -f "$SITES" ]] ; then find . -mindepth 1 -maxdepth 1 -type d > "$SITES" fi for SITE in $(cat $SITES) ; do BSITE=$(basename "$SITE") INFECTED=$STARTDIR/infected.$BSITE.txt if [[ ! -f $INFECTED ]]; then echo searching $SITE ... grep -rl --include=\*.php --include=\*.htm --include=\*.html "$PATTERN" $SITE > $INFECTED 2> /dev/null fi NBHACKED=$(wc -l $INFECTED | cut -d' ' -f1) if [[ $NBHACKED -gt 0 ]] ; then echo "found: $SITE: $NBHACKED files!" for FILE in $(cat $INFECTED) ; do remove_from_file "$FILE" "$PATTERN" done fi done echo "If the results are good, your can delete the disabled hacked files with 'rm -r $1/*.hacked'" popd <file_sep>/README.md ![GH stars](https://img.shields.io/github/stars/pforret/wp_cleanup) ![GH tag](https://img.shields.io/github/v/tag/pforret/wp_cleanup) ![Shellcheck CI](https://github.com/pforret/wp_cleanup/workflows/Shellcheck%20CI/badge.svg) ![GH Language](https://img.shields.io/github/languages/top/pforret/wp_cleanup) ![GH License](https://img.shields.io/github/license/pforret/wp_cleanup) [![basher install](https://img.shields.io/badge/basher-install-white?logo=gnu-bash&style=flat)](https://basher.gitparade.com/package/) # WP CLEANUP Script to clean up infected WordPress installations ![](assets/cleanup.jpg) ## When to use this When your WordPress installation has been hacked, and one or more WordPress source code files have been changed. The effect could be that * your site is still accessible, but when you try to access `/wp-admin` you get an 403 (access denied) error * your site is off-line, gives an error 500 (server error), or shows an empty page, or a WordPress error "_There has been a critical error on this website._" * your site is still accessible but inserts malicious code that generates popup advertising or redirects to other websites You should go and check the WordPress files with a SSH console or through an (s)FTP connection. Files that were installed by WordPress might have been changed by malicious code (virus/trojan/infection, whatever you want to call it). A typical example is the `./index.php` file. Normally it should only contain ```php <?php /** comments don't really matter, there are only 2 lines of real code to be executed */ define( 'WP_USE_THEMES', true ); require __DIR__ . '/wp-blog-header.php'; ``` Some viruses insert extra hard-to-read PHP code in to `index.php`: ```php <?php $PxzcQOgNk = function($jWC9KOqRQtX9 ,$MDafuOVYz) { $lKnbe="_Qf5zyRU"; } return $lKnbe; (...) evAL($XG51n);; ?><?php define('WP_USE_THEMES', true );require(__DIR__. '/wp-blog-header.php' ); ?> ``` They might also create new files (like `admin.php`, which sounds official, but is not part of a normal WP installation), or new folders (like `psp/`, which again is not part of a normal WP installation). What you want to do in this case, is restore all WordPress source code files to their original state. This is what this script does. ## Installation * log in to your hacked server (via ssh) * cd to a folder where you have 'write' permissions ```bash git clone https://github.com/pforret/wp_cleanup cd wp_cleanup ./wp_cleanup -W [WP folder] fix ✅ WordPress installation moved to [_infected.20230412_1643] ✴️: # this folder should not be in a WP install -- remove it! ✴️: # rm -fr '.../unusualdir' ✅ Wordpress 6.2 downloaded! ✅ Wordpress system restored! ✅ Copied from themes: testtheme ✅ Copied from plugins: testplugin ✅ Wordpress settings copied! ✅ Wordpress .htaccess set! ✅ --- Wordpress cleanup was done Do you want to compress the infected files? [y/N] Y ✅ old WordPress moved to _infected.20230412_1643.zip ``` This will * move your current (infected) WordPress files to a backup folder * replace your `wp-admin` and `wp-includes` folders with those of a fresh WordPress install * replace your wp-*.php files with those of a fresh WordPress install * recover your original `wp-config.php` file * recover your original `wp-content`: themes,plugins,uploads * reset your `.htaccess` file ## Usage ``` Program : wp_cleanup by <EMAIL> Version : v0.1.5 (2023-04-12 16:49) Purpose : clean up infected WordPress installations Usage : wp_cleanup [-h] [-q] [-v] [-f] [-l <log_dir>] [-t <tmp_dir>] [-W <WP>] [-M <MULTI>] <action> Flags, options and parameters: -h|--help : [flag] show usage [default: off] -q|--quiet : [flag] no output [default: off] -v|--verbose : [flag] also show debug messages [default: off] -f|--force : [flag] do not ask for confirmation (always yes) [default: off] -l|--log_dir <?> : [option] folder for log files [default: /home/pforret/.wp_cleanup/log] -t|--tmp_dir <?> : [option] folder for temp files [default: /home/pforret/.wp_cleanup/tmp] -W|--WP <?> : [option] WordPress installation folder [default: .] -M|--MULTI <?> : [option] Multi-site setup: subdomain/subfolder <action> : [choice] action to perform [options: detect,fix,check,env,update] ### TIPS & EXAMPLES * use wp_cleanup detect to check if there is an infected WP installation in that folder wp_cleanup -W /home/sites/wp_1 detect * use wp_cleanup fix to run the cleanup (reinstall WP) wp_cleanup -W /home/sites/wp_1 fix * use wp_cleanup check to check if this script is ready to execute and what values the options/flags are wp_cleanup check * use wp_cleanup env to generate an example .env file wp_cleanup env > .env * use wp_cleanup update to update to the latest version wp_cleanup update * >>> bash script created with pforret/bashew * >>> for bash development, also check IO:print pforret/setver and pforret/IO:progressbar ``` ## Valuable articles * [RESOLVED: cutwin Javascript injection (WordPress)](https://wordpress.org/support/topic/resolved-cutwin-javascript-injection/) * [FAQ My site was hacked (WordPress)](https://wordpress.org/support/article/faq-my-site-was-hacked/) * [Removing Malicious Redirects From Your Site (WordFence)](https://www.wordfence.com/learn/removing-malicious-redirects-site/) * [How To Completely Clean Your Hacked WordPress Installation](https://smackdown.blogsblogsblogs.com/2008/06/24/how-to-completely-clean-your-hacked-wordpress-installation/) ## Test your site * https://sitecheck.sucuri.net/ (site keeps a cached version of your site, used a random parameter ?test=7763 after the URL to get a new scan) * http://www.unmaskparasites.com/ * https://www.virustotal.com/gui/home/url ## Check if your site has been flagged as unsafe * https://transparencyreport.google.com/safe-browsing/search * https://global.sitesafety.trendmicro.com/ * https://www.trustedsource.org/<file_sep>/archive/cleanup_wp.sh #!/bin/bash if [[ "$1" == "" ]] ; then # print usage echo "Usage: $0 [folder] [mode]" echo " [folder]: root folder of all your websites (e.g. {whatever}/vhosts or of 1 specific WP installation" echo " [mode]: 'soft' (default) : test for infection first, ask confirmation for each WP, and 'hard': always fix" echo " always start this script in a folder where you can write files (it will download and use a fresh WP copy)" exit 0 fi MODE="soft" force=0 if [[ "$2" == "hard" || "$2" == "HARD" ]] ; then MODE="hard" force=1 fi ## define handy function for later confirm() { (($force)) && return 0; read -p "$1 [y/N] " -n 1; echo " "; [[ $REPLY =~ ^[Yy]$ ]];} remove_from_file(){ # $1 = file # $2 = pattern orig_file="$1" temp_file="$1.tmp" old_file="$1.hacked" size1=$(wc -c $orig_file | cut -d' ' -f1) < "$orig_file" sed "s|$2||g" > "$temp_file" size2=$(wc -c $temp_file | cut -d' ' -f1) if [[ $size1 -ne $size2 ]] ; then # replace by cleaned version mv "$orig_file" "$old_file" mv "$temp_file" "$orig_file" else # undo cleanup rm "$temp_file" fi } find_suspects(){ # $1 = folder # $2 = pattern to look for ### what we are trying to detect: ## var pl = String.fromCharCode(104,116,116,112,115,58,47,47,115,110,105,112,112,101,116,46,97,100,115,102,111,114,109,97,114,107,101,116,46,99,111,109,47,115,97,109,101,46,106,115,63,118,61,51); s.src=pl; #pattern="String.fromCharCode(104,116,116,112" pattern="$2" if [[ "$pattern" == "" ]] ; then # used for JS injection hacks pattern="s.src=pl;" fi nbsuspect=$(grep -rl "$pattern" "$1" | wc -l) echo $nbsuspect } overwrite_folder(){ # e.g. $1 = <fresh WP>/wp-content/plugins # e.g. $2 = <hacked WP>/wp-content/ source="$1" bname=$(basename "$1") destin="$2/$bname" nbinfected=$(find_suspects "$destin") if [[ $MODE == "force" || $nbinfected -gt 0 ]] ; then echo ". overwrite [$destin] with fresh WP files" nbrsync=$(rsync -rva "$1" "$2" | wc -l) echo ". $nbrsync files overwritten!" fi } replace_folder(){ # e.g. $1 = <fresh WP>/wp-content/plugins # e.g. $2 = <hacked WP>/wp-content/ source="$1" bname=$(basename "$1") destin="$2/$bname" nbinfected=$(find_suspects "$destin") # move existing folder to new, unused name if [[ -d "$destin" && ! -d "${destin}-hacked" ]] ; then echo ". move hacked files to [${destin}-hacked]" mv "$destin" "${destin}-hacked" fi # write folder with clean, original files if [[ $MODE == "force" || $nbinfected -gt 0 ]] ; then echo ". replace [$destin] with fresh WP files" nbrsync=$(rsync -rva "$1" "$2" | wc -l) echo ". $nbrsync files written!" fi } list_subdirs(){ find "$1" -type d -mindepth 1 -maxdepth 1 \ | while read folder; do basename "$folder" done } ######################################################################################################### ## first check if fresh installation of Wordpress is present if [[ ! -f "wordpress/wp-config-sample.php" ]] ; then WP_URL="https://wordpress.org/latest.zip" WP_ZIP=$(basename $WP_URL) echo "DOWNLOAD: clean install version of Wordpress: $WP_URL" wget -q $WP_URL if [[ ! -f $WP_ZIP ]] ; then echo "Download did not work. Are you sure you have write permission in this folder [$(pwd)]?" exit 1 fi du -h $WP_ZIP nbunzip=$(unzip $WP_ZIP | wc -l) if [[ ! -f "wordpress/wp-config-sample.php" ]] ; then echo "Unzip did not work. Are you sure you have write permission in this folder [$(pwd)]?" exit 1 fi fi nbfiles=$(find wordpress/ -type f | wc -l) echo "WORDPRESS: $nbfiles files in clean install of WP (Jan 2020: 1930 files)" # then find all Wordpress installations and go through them find "$1" -type f -name wp-config.php 2> /dev/null \ | while read file ; do WPROOT=$(dirname "$file") echo "## WORDPRESS: [$WPROOT]" if confirm "## Check this Wordpress installation?" ; then echo "## $(find_suspects $WPROOT) suspect files" overwrite_folder "wordpress/wp-admin" "$WPROOT/" overwrite_folder "wordpress/wp-includes" "$WPROOT/" installed_themes=$(list_subdirs "$WPROOT/wp-content/themes") replace_folder "wordpress/wp-content/themes" "$WPROOT/wp-content/" echo "! don't forget to reinstall the following themes (or at least the one you used)" echo $installed_themes installed_plugins=$(list_subdirs "$WPROOT/wp-content/plugins") replace_folder "wordpress/wp-content/plugins" "$WPROOT/wp-content/" echo "! don't forget to reinstall the following plugins, if you used them" echo $installed_plugins fi done
f601c34dea5620f4f35a52f2fb92283ef98234e5
[ "Markdown", "Shell" ]
3
Shell
pforret/wp_cleanup
c965b46d606c835946daeb4b59254e0d0cf80048
e7562270f49231ed463f3e625fa68887c4506c7f
refs/heads/master
<repo_name>muham772/React-demo<file_sep>/src/components/forms/index.js import React, { PureComponent } from 'react' class Form extends PureComponent { constructor(props) { super(props) this.state = { value: '' } this.handleSubmit = this.handleSubmit.bind(this); this.handleChange = this.handleChange.bind(this); } handleChange(e) { this.setState({ value: e.target.value }); } handleSubmit(e) { alert('this name is submitted: ' + this.state.value); } render() { return ( <form onSubmit={this.handleSubmit}> <label> Name: <select value={this.state.value} onChange={this.handleChange}> <option value='lift'>lift</option> <option value='liftdc'>liftdc</option> <option>liftzsq</option> <option>liftce</option> <option>lifcet</option> </select> </label> <input type='submit' value='Submit' /> </form> ) } } export default Form<file_sep>/src/App.js import React, { Component } from 'react'; import Form from './components/forms/index'; import Multiple from './components/multiple/index'; import Calculator from './components/bolling-vertict/index' import Calculator1 from './components/temperature' export default class App extends Component { render() { return ( <div className="App"> <Form /> <Multiple /> <Calculator /> <Calculator1 /> </div> ) } }
c2b203f045c7b6fddbe513e8c2e76e74f177cba5
[ "JavaScript" ]
2
JavaScript
muham772/React-demo
9c3ad0464fec276a0af358c872755221aac05259
7db860099e98c7b6af29b43fba5adeaae21e574a
refs/heads/master
<file_sep>package com.qingshixun.project.dao; import java.util.List; import com.qingshixun.project.model.PageBean; import com.qingshixun.project.model.UserModel; public interface IUserDao extends BaseDao<UserModel, Integer>{ /** * 添加用户信息 * * @param user * @return */ public boolean addUser(UserModel user); /** * 查找所有的用户信息 * * @return */ public List<UserModel> findUser(); /** * 用户登录 * * @param username * 用户名 * @param password * 密码 * @return */ public UserModel loginUser(String username, String password); /** * 删除用户 * * @param id * @return */ public boolean deleteUser(int id); /** * 通过id来查找用户 * * @param id * @return */ public UserModel findByIdUser(int id); /** * 通过id来查找用户 * * @param id * @return */ public boolean updateUser(UserModel user); public List<UserModel> queryByPage(String hql, int offset, int pageSize); public int getAllRowCount(String hql); } <file_sep>package com.qingshixun.project.hibernate; import org.hibernate.HibernateException; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.Transaction; import org.hibernate.boot.registry.StandardServiceRegistryBuilder; import org.hibernate.cfg.Configuration; import org.hibernate.service.ServiceRegistry; import org.junit.Test; import com.qingshixun.project.model.UserModel; import com.qingshixun.project.model.UserModel.Gender; public class HibernateTest { @Test public void testHibernate(){ Configuration cfg = null; SessionFactory sf = null; Session session = null; Transaction tx = null; try{ cfg = new Configuration().configure(); ServiceRegistry registry = new StandardServiceRegistryBuilder().configure().build(); sf = cfg.buildSessionFactory(registry); session = sf.openSession(); tx = session.beginTransaction(); UserModel user = new UserModel(); user.setName("咪咪"); user.setPassword("<PASSWORD>"); user.setGender(Gender.female); session.save(user); //6.提交事务 tx.commit(); }catch (Exception e) { e.printStackTrace(); //回滚事务 tx.rollback(); throw new HibernateException(e.getCause()); }finally{ //7.关闭session if(session!=null&&session.isOpen()) session.close(); sf.close(); } } }<file_sep>package com.qingshixun.project.model; import java.util.Date; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EnumType; import javax.persistence.Enumerated; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.Table; import javax.persistence.Transient; import org.hibernate.annotations.Cache; import org.hibernate.annotations.CacheConcurrencyStrategy; import org.springframework.format.annotation.DateTimeFormat; import org.springframework.format.annotation.DateTimeFormat.ISO; @Entity @Table(name = "t_user") //@Cache(usage = CacheConcurrencyStrategy.READ_WRITE) public class UserModel { // 实体主键(自增长) @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private int id; // 性别(枚举值) public enum Gender { male, female; } // 用户名称(不可以为空) @Column(length = 100, nullable = false) private String name; // 用户性别(不可以为空) @Column(nullable = false) @Enumerated(EnumType.ORDINAL) private Gender gender = Gender.male; // 用户登录密码(不可以为空) @Column(length = 100, nullable = false) private String password; // 再次输入登录密码 @Transient // 不作为数据库持久化字段 private String passwordAgain; // 用户邮箱(可以为空) @Column(length = 200, nullable = true) private String email; // 创建时间(updateable=false表示编辑后,不更新此字段) @Column(nullable = true, length = 19) @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss", iso = ISO.DATE) private Date creatTime = new Date(System.currentTimeMillis()); // 最后更新时间 @Column(nullable = true, length = 19) @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss", iso = ISO.DATE) private Date updateTime = new Date(System.currentTimeMillis()); public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getPassword() { return password; } public void setPassword(String password) { this.password = <PASSWORD>; } public Gender getGender() { return gender; } public void setGender(Gender gender) { this.gender = gender; } public String getPasswordAgain() { return passwordAgain; } public void setPasswordAgain(String passwordAgain) { this.passwordAgain = passwordAgain; } public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } public Date getCreatTime() { return creatTime; } public void setCreatTime(Date creatTime) { this.creatTime = creatTime; } public Date getUpdateTime() { return updateTime; } public void setUpdateTime(Date updateTime) { this.updateTime = updateTime; } @Override public String toString() { return "UserModel [id=" + id + ", name=" + name + ", gender=" + gender + ", password=" + password + ", passwordAgain=" + passwordAgain + ", email=" + email + ", creatTime=" + creatTime + ", updateTime=" + updateTime + "]"; } }<file_sep>package com.qingshixun.project.service.impl; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.qingshixun.project.dao.IUserDao; import com.qingshixun.project.model.PageBean; import com.qingshixun.project.model.UserModel; import com.qingshixun.project.service.IUserService; @Service("userService") public class UserServiceImpl implements IUserService { @Autowired IUserDao userDao; @Override public boolean addUser(UserModel user) { // TODO Auto-generated method stub return userDao.addUser(user); } @Override public List<UserModel> findUser() { // TODO Auto-generated method stub return userDao.findUser(); } @Override public UserModel loginUser(String username, String password) { // TODO Auto-generated method stub return userDao.loginUser(username, password); } @Override public boolean deleteUser(int id) { // TODO Auto-generated method stub return userDao.deleteUser(id); } @Override public UserModel findByIdUser(int id) { // TODO Auto-generated method stub return userDao.findByIdUser(id); } @Override public boolean updateUser(UserModel user) { // TODO Auto-generated method stub return userDao.updateUser(user); } /** * pageSize为每页显示的记录数 * page为当前显示的网页 */ @Override public PageBean getPageBean(int pageSize, int page) { PageBean pageBean=new PageBean(); String hql="from UserModel"; int allRows=userDao.getAllRowCount(hql); int totalPage=pageBean.getTotalPages(pageSize, allRows); int currentPage=pageBean.getCurPage(page); int offset=pageBean.getCurrentPageOffset(pageSize, currentPage); List<UserModel> list=userDao.queryByPage(hql, offset, pageSize); pageBean.setList(list); pageBean.setAllRows(allRows); pageBean.setCurrentPage(currentPage); pageBean.setTotalPage(totalPage); return pageBean; } @Override public UserModel load(Integer id) { // TODO Auto-generated method stub return null; } /** * 通过id来查找用户 */ @Override public UserModel get(Integer id) { // TODO Auto-generated method stub return userDao.get(id); } /** * 查找所有的用户 */ @Override public List<UserModel> findAll() { return userDao.findAll(); } /** * 插入数据到数据库 */ @Override public void persist(UserModel entity) { userDao.persist(entity); } /** * 保存数据到数据库 */ @Override public Integer save(UserModel entity) { return userDao.save(entity); } /** * 保存并更新数据到数据库 */ @Override public void saveOrUpdate(UserModel entity) { userDao.saveOrUpdate(entity); } @Override public void delete(Integer id) { userDao.delete(id); } @Override public void flush() { userDao.flush(); } /* public IUserDao getUserDao() { return userDao; } public void setUserDao(IUserDao userDao) { this.userDao = userDao; }*/ } <file_sep><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.lyc.test</groupId> <artifactId>helloWorld</artifactId> <packaging>war</packaging> <version>0.0.1-SNAPSHOT</version> <name>helloWorld Maven Webapp</name> <url>http://maven.apache.org</url> <properties> <struts.version>2.5.10.1</struts.version> <!-- hibernate版本号 --> <hibernate.version>5.2.0.Final</hibernate.version> <spring.version>4.3.0.RELEASE</spring.version> </properties> <dependencies> <!-- servlet-api --> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.0.1</version> <scope>provided</scope> </dependency> <!-- jsp-api --> <dependency> <groupId>javax.servlet.jsp</groupId> <artifactId>jsp-api</artifactId> <version>2.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.2</version> <scope>test</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> <version>1.2</version> </dependency> <!-- Struts2的核心包 --> <dependency> <groupId>org.apache.struts</groupId> <artifactId>struts2-core</artifactId> <version>${struts.version}</version> </dependency> <!-- Struts2整合Spring插件 --> <dependency> <groupId>org.apache.struts</groupId> <artifactId>struts2-spring-plugin</artifactId> <version>${struts.version}</version> </dependency> <!-- 使用这个jar包可以使用Action注解替换掉Struts2,Action标签 --> <dependency> <groupId>org.apache.struts</groupId> <artifactId>struts2-convention-plugin</artifactId> <version>${struts.version}</version> </dependency> <!-- mysql驱动包 --> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.29</version> </dependency> <!--druid数据源 --> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>1.0.21</version> </dependency> <!-- hibernate核心jar包 --> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> <version>${hibernate.version}</version> </dependency> <!-- hibernate注解 --> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-annotations</artifactId> <version>3.5.0-Final</version> </dependency> <!-- Javassist是一款字节码编辑工具 --> <dependency> <groupId>org.javassist</groupId> <artifactId>javassist</artifactId> <version>3.21.0-GA</version> </dependency> <!-- Antlr 是一个基于 Java 开发的功能强大的语言识别工具 --> <dependency> <groupId>antlr</groupId> <artifactId>antlr</artifactId> <version>2.7.6</version> </dependency> <!-- commons-collections 为Java标准的Collections API提供了相当好的补充 --> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>3.2.2</version> </dependency> <!-- dom4j是一个Java的XML API --> <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> <version>1.6.1</version> </dependency> <!-- 1、ORM映射元数据 2、JPA 的API 用来操作实体对象,执行CRUD操作,框架在后台替我们完成所有的事情,开发者从繁琐的JDBC和SQL代码中解 脱出来。 3、查询语言 --> <dependency> <groupId>org.hibernate.javax.persistence</groupId> <artifactId>hibernate-jpa-2.0-api</artifactId> <version>1.0.0.Final</version> </dependency> <!-- spring需要的包 --> <!-- spring核心包 --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>${spring.version}</version> </dependency> <!-- Spring,beans包 --> <!-- spring-orm --> <!-- <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>${spring.version}</version> </dependency> --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>${spring.version}</version> </dependency> <!-- Spring上下文 --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>${spring.version}</version> </dependency> <!-- spring-test for Unit Test --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-orm</artifactId> <version>${spring.version}</version> </dependency> <!-- 跟SpringAOP一起使用的,Aspect --> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> <version>1.8.9</version> </dependency> </dependencies> <build> <finalName>maven-hibernate-demo</finalName> <plugins> <!-- define the project compile level --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build> </project>
d258345bfeed3a015f477d276eb96c6070cc2aed
[ "Java", "Maven POM" ]
5
Java
TomismeZ/SSH-annotation-
d371d2f672c414dff4927b014e244f5df22f29c9
0695db4de81767453d0e240e14b89c662f622677
refs/heads/master
<repo_name>adityasrivastava1411/SpecialCharacterKeyboard<file_sep>/SpecialCharacterKeyboard/SpecialTextField.swift // // SpecialTextField.swift // // Created by <NAME> on 27/10/18. // Copyright © 2018 Veridian Dynamics. All rights reserved. // import UIKit open class SpecialTextField: UITextField { var specialCharacters : [String] = [] { willSet { accessoryVw.keyboardOptions = newValue accessoryVw.collectionView.reloadData() } } var accessoryVw = NumberKeyboardAccessVw.init(frame: CGRect.init(x: 0, y: 0, width: UIScreen.main.bounds.width, height: 45)) //MARK: init required public init?(coder aDecoder: NSCoder) { super.init(coder: aDecoder) setupTextView() } func setupTextView() { self.backgroundColor = UIColor.white self.inputAccessoryView = accessoryVw accessoryVw.collectionView.delegate = self } } //MARK: TextView and CollectionView Delegates extension SpecialTextField: UICollectionViewDelegateFlowLayout { public func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) { let cell = collectionView.cellForItem(at: indexPath) as? NumberKeyboardCell insertText(cell?.textLabel.text ?? "") UIDevice.current.playInputClick() } public func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize { return CGSize(width: collectionView.frame.size.width/10 , height: collectionView.bounds.height) } } <file_sep>/SpecialCharacterKeyboard/NumberKeyboardCell.swift // // AlphabetsWithNumberVw.swift // // Created by <NAME> on 27/10/18. // Copyright © 2018 Veridian Dynamics. All rights reserved. // import UIKit class NumberKeyboardCell: UICollectionViewCell { @IBOutlet weak var textLabel: UILabel! override func awakeFromNib() { super.awakeFromNib() } } <file_sep>/SpecialCharacterKeyboard/NumberKeyboardAccessVw.swift // // AlphabetsWithNumberVw.swift // // Created by <NAME> on 27/10/18. // Copyright © 2018 Veridian Dynamics. All rights reserved. // import UIKit class NumberKeyboardAccessVw: UIView { @IBOutlet var contentView: UIView! @IBOutlet weak var clearButton: UIButton! @IBOutlet weak var collectionView: UICollectionView! var keyboardOptions = ["0","1","2","3","4","5","6","7","8","9"] override init(frame: CGRect) { super.init(frame: frame) setupUI() } var enableInputClicksWhenVisible: Bool { return true } func setupUI() { Bundle.main.loadNibNamed("NumberKeyboardAccessVw", owner: self, options: nil) contentView.frame = self.bounds addSubview(contentView) setupCollectionView() } func setupCollectionView(){ collectionView.dataSource = self collectionView.register(UINib.init(nibName: "NumberKeyboardCell", bundle: nil), forCellWithReuseIdentifier: "NumberKeyboardCell") collectionView.allowsMultipleSelection = false } required init?(coder aDecoder: NSCoder) { super.init(coder: aDecoder) setupUI() } } extension NumberKeyboardAccessVw: UICollectionViewDelegateFlowLayout, UICollectionViewDataSource { func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { return keyboardOptions.count } func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "NumberKeyboardCell", for: indexPath) as! NumberKeyboardCell cell.textLabel.text = keyboardOptions[indexPath.row] return cell } }
1f94f01378b6bc32b5066c015bd2d51f061a684a
[ "Swift" ]
3
Swift
adityasrivastava1411/SpecialCharacterKeyboard
73c1abda631d151449cad33a38d0fb9f2d3140e8
855ab61ab710f54fdceec02f8742a307e44349b4
refs/heads/master
<repo_name>lmaharas/commenting<file_sep>/js/main.js // Config RequireJs requirejs.config({ //By default load any module IDs from lib baseUrl: 'lib', //except, if the module ID starts with "app", //"model" or "view" load it from the //corresponding js/ directory. paths //config is relative to the baseUrl, and //never includes a ".js" extension since //the paths config could be for a directory. paths: { app: '../js/app', model: '../js/model', view: '../js/view' }, shim: { 'underscore': { exports: '_' }, 'backbone': { deps: ["underscore", "jquery"], exports: 'Backbone' } } }); // Start the main app logic. requirejs( ['jquery', 'underscore', 'json2', 'backbone', 'mustache', 'app/app' ], function ($, _, JSON, Backbone, Mustache, App) { //jQuery, canvas and the app/sub module are all //loaded and can be used here now. new App({ el: $('#application') }); } );<file_sep>/js/view/formview.js /** * Comment form controller and view * * @class FormView * @extends Backbone.View * @author <NAME> <<EMAIL>> */ /*global Mustache, CommentView, CommentModel */ define(["backbone","view/commentview"], function(Backbone, CommentView) { var FormView = Backbone.View.extend( /** @lends FormView.prototype */ { /** * Html tag name of the container element that'll be created when initializing new instance. * This container is then accessible via the this.el (native DOM node) or this.$el (jQuery node) * variables. * @type String */ tagName: 'div', /** * CSS class name of the container element * @type String */ className: 'commentform edit-comment', /** * The map of delegated event handlers * @type Object */ events: { 'click .submit': 'submitBtn', 'click .cancel': 'cancelBtn', 'click .yes': 'yesBtn', 'click .no': 'noBtn' }, /** * View init method, subscribing to model events */ initialize: function () { this.model.on('update', this.updateFields, this); this.model.on('clear', this.remove, this); }, /** * Render form element from a template using Mustache * @returns {FormView} Returns the view instance itself, to allow chaining view commands. */ render: function () { var template = $('#form-template').text(), $appWrapper = $('#application'), template_vars = { author: this.model.get('author'), text: this.model.get('text'), title: this.model.get('title'), wrapperClass: this.model.get('wrapperClass') }; this.$el.html(Mustache.to_html(template, template_vars)).hide(); this.$el.fadeIn(); // addclass formOpen to application wrapper $appWrapper.addClass('form-open'); return this; }, /** * Submit button click handler * Sets new values from form on model, triggers a success event and cleans up the form * @returns {Boolean} Returns false to stop propagation */ submitBtn: function (e) { e.preventDefault(); var name = this.$el.find('.author').val(), text = this.$el.find('.text').val(); if (name === '' || text === '') { // variables var $notification = $('.notification'), icon = '<span class="icon icon-warning"></span>', errorText = 'Whoops! You must enter both a name and comment.'; $notification.html(icon + errorText).addClass('error').fadeIn('slow'); } else { // set values from form on model this.model.set({ author: name, text: text }); // set an id if model was a new instance // note: this is usually done automatically when items are stored in an API if (this.model.isNew()) { this.model.id = Math.floor(Math.random() * 1000); } // trigger the 'success' event on form, with the returned model as the only parameter this.trigger('success', this.model); // trigger the 'clear' event to trigger the remove method this.model.trigger('clear', this); } }, /** * Cancel button click handler * Cleans up form view from DOM * @returns {Boolean} Returns false to stop propagation */ cancelBtn: function (e) { e.preventDefault(); var text = this.$el.find('.text').val(), author = this.$el.find('.author').val(), title = this.$el.find('.title').html(), createTitle = 'New Comment'; // if the text and author fields are empty // or this is a New Comment, remove the node from the DOM if (text === '' && author === '' || title === createTitle){ // trigger the 'clear' event to trigger the remove method this.model.trigger('clear', this); } else { // Otherwise this is an Edit Comment // set values from form on model this.model.set({ author: author, text: text }); // trigger the 'cancel' event on form, // with the returned model form as the only parameter this.trigger('cancel', this.$el); } }, /** * No button click handler * Cleans up form view from DOM * @returns {Boolean} Returns false to stop propagation */ noBtn: function (e) { e.preventDefault(); // trigger the 'cancel' event on form, with the returned model form as the only parameter this.trigger('cancelNo', this.$el); }, /** * Yes button click handler * Cleans up form view from DOM * @returns {Boolean} Returns false to stop propagation */ yesBtn: function (e) { e.preventDefault(); var self = this, $editOpen = $('.edit-comment'), appWrapper = $('#application'), $editParentComment = this.$el.closest('.comment'), $createComment = $('.create-comment'); if ( $editOpen.length === 0 ) { console.log('yesBtn if'); this.$el.fadeOut(400, function() { // trigger the 'clear' event to trigger the remove method self.model.trigger('clear', self); }); } else { console.log('yesBtn else'); // removeClass formOpen to application wrapper appWrapper.removeClass('form-open'); this.model.id = undefined; this.model.trigger('clear', this); if ($createComment === 0 ){ $editParentComment.remove(); } } }, /** * Update view if the model changes, helps keep two edit forms for the same model in sync * @returns {Boolean} Returns false to stop propagation */ updateFields: function (e) { // update the fields e.find('.byline').html(this.model.get('author')); e.find('.text').html(this.model.get('text')); return false; }, /** * Override the default view remove method with custom actions */ remove: function () { var appWrapper = $('#application'); // removeClass formOpen to application wrapper appWrapper.removeClass('form-open'); // delete container form DOM this.$el.remove(); // unsubscribe from all model events with this context this.model.off(null, null, this); // call backbones default view remove method Backbone.View.prototype.remove.call(this); } } ); return FormView; });<file_sep>/js/app/app.js /** * Application controller view * Starts application, inits a new CommentCollection collection, assigns the empty list to * a CommentlistView controller, also inits a NewButtonView instance to handle new comment insertion. * * Check index.html to find the place where App is initialized, it's right after the container * DOM node is rendered. * * @class App * @extends Backbone.View * @author <NAME> <<EMAIL>> */ /*global CommentCollection, CommentlistView, FormView, NewButtonView, RandomButtonView */ /** * In lieu of adding additional comments about performance optimization, as that is not my specialty, * I have instead removed all html from the js and reworked the markup to be more semantic. * In addition, I have improved the user experience to be more intuitive and less jarring, * as well as enhanced the design, look and feel and added a custom icon font. * Let me know if you have any questions. * Thanks! * Lynn * <EMAIL> */ define( ['backbone', 'model/commentcollection', 'view/listview', 'view/formview', 'view/newbuttonview', 'view/randombuttonview' ], function (Backbone, CommentCollection, CommentlistView, FormView, NewButtonView, RandomButtonView) { var App = Backbone.View.extend( /** @lends App.prototype */ { /** * Initialize new application instance */ initialize: function () { // create empty comment collection var collection = new CommentCollection(); // bind the NewButtonView to the already rendered 'newcomment' DOM element, we'll need to know the // collection to work with so FormView can insert the new comment properly new NewButtonView({collection: collection, el: this.$el.find('.newcomment')}); // bind the RandomButtonView to the already rendered 'randomcomment' DOM element new RandomButtonView({collection: collection, el: this.$el.find('.randomcomment')}); // create comment list view, assign our empty collection var listview = new CommentlistView({collection: collection, el: this.$el.find('.commentlist')}); listview.render(); $('.randomcomment').trigger('click'); } } ); return App; } ); /** * Documentation related comments */ /** * @name Backbone * @class Backbone * Application is a Backbone based application * @link http://documentcloud.github.com/backbone/ */ /** * @name Backbone.Model * @class Backbone.Model * Backbone model superclass * @link http://documentcloud.github.com/backbone/ */ /** * @name Backbone.Collection * @class Backbone.Collection * Backbone collection superclass * @link http://documentcloud.github.com/backbone/ */ /** * @name Backbone.View * @class Backbone.View * By default all views extend Backbone.View * @link http://documentcloud.github.com/backbone/ */
f36f6cac18d496cd95112cc968a502c7e44fd9b3
[ "JavaScript" ]
3
JavaScript
lmaharas/commenting
fe27b8a61d4dd44ea33120a4fd85438992d57ed2
093266930a9e462a1f95c7d63716d3bff5747da5
refs/heads/master
<repo_name>cterrazas2/battle-of-the-compilers<file_sep>/DataStructures/queue/QueueTestSuite.sh #!/bin/bash echo "g++ queue file executing..." ./queue_gcc 2>buf.txt echo "clang++ queue file executing..." ./queue_clang 2>buf.txt echo "icpc queue file executing..." ./queue_intel 2>buf.txt <file_sep>/Algorithms/bfs/bfs.cpp /* Author: <NAME> Partially based on https://www.geeksforgeeks.org/breadth-first-search-or-bfs-for-a-graph/ */ #include<iostream> #include <list> #include <chrono> #include <random> using namespace std; class Graph { int num_vertices; list<int>* adj_list; public: Graph(int num_vertices); void addEdge(int v, int w); bool BFS(int start, int end); }; // Constructor intializes the Graph with the number of vertices. Graph::Graph(int num_vertices) { this->num_vertices = num_vertices; adj_list = new list<int>[num_vertices]; } // Adds an edge to the Graph. void Graph::addEdge(int v, int w) { adj_list[v].push_back(w); } // Breadth First Search Algorithm bool Graph::BFS(int start, int end) { bool *visited = new bool[num_vertices]; for(int i = 0; i < num_vertices; i++) visited[i] = false; list<int> queue; // Mark the current node as visited and push it onto the queue visited[start] = true; queue.push_back(start); list<int>::iterator it; // Traverse graph and mark adjacent nodes as visited. while(!queue.empty()) { start = queue.front(); if (start == end && end != -1){ return true; } std::cerr << start << endl; queue.pop_front(); for (it = adj_list[start].begin(); it != adj_list[start].end(); it++) { if (!visited[*it]) { visited[*it] = true; queue.push_back(*it); } } } return true; } int main() { auto start = chrono::high_resolution_clock::now(); int max_vertices = 3000; // Create a random graph. default_random_engine re(0); uniform_int_distribution<int> vertices_dist(10, max_vertices); int num_vertices = vertices_dist(re); // A dense graph can have N(N-1)/2 edges. int max_edges = (num_vertices * (num_vertices - 1)) / 2; // Initialize graph. Graph graph(num_vertices); uniform_int_distribution<int> gen_edges_dist(0, num_vertices - 1); for (int i = 0; i < max_edges; i++) { int v = gen_edges_dist(re); int w = gen_edges_dist(re); graph.addEdge(v, w); } auto end = chrono::high_resolution_clock::now(); auto duration = chrono::duration_cast<chrono::milliseconds>(end - start).count(); cout << "Random graph generation took time: " << duration << " milliseconds" << endl; start = chrono::high_resolution_clock::now(); graph.BFS(1, -1); end = chrono::high_resolution_clock::now(); duration = chrono::duration_cast<chrono::milliseconds>(end - start).count(); cout << "BFS entire graph traversal took time: " << duration << " milliseconds" << endl; start = chrono::high_resolution_clock::now(); bool value = graph.BFS(0, num_vertices-1); end = chrono::high_resolution_clock::now(); duration = chrono::duration_cast<chrono::milliseconds>(end - start).count(); cout << "Breadth First Search took time: " << duration << " milliseconds and found value: " << (value ? "true" : "false") << endl; return 0; } <file_sep>/Algorithms/isort/IsortTestSuite.sh #!/bin/bash echo "g++ isort file executing..." ./isort_gcc 2>buf.txt echo "clang++ isort file executing..." ./isort_clang 2>buf.txt echo "icpc isort file executing..." ./isort_intel 2>buf.txt <file_sep>/DataStructures/list/Makefile executables = list_gcc list_clang list_intel .PHONY: default default: $(executables) list_gcc: list.cpp time g++ -std=c++17 -O2 list.cpp -o list_gcc g++ -std=c++17 -O2 -S list.cpp -o list_gcc.s list_clang: list.cpp time clang++ -std=c++17 -O2 list.cpp -o list_clang clang++ -std=c++17 -O2 -S list.cpp -o list_clang.s list_intel: list.cpp time icpc -std=c++17 -O2 list.cpp -o list_intel icpc -std=c++17 -O2 -S list.cpp -o list_intel.s .PHONY: clean clean: rm -f list_gcc* list_clang* list_intel* buf.txt .PHONY: suites suites: sh ListTestSuite.sh .PHONY: all all: clean default <file_sep>/Threading/ThreadingTestSuite.sh #!/bin/bash echo "g++ threading file executing..." ./threading_gcc 2>buf.txt echo "clang++ threading file executing..." ./threading_clang 2>buf.txt echo "icpc threading file executing..." ./threading_intel 2>buf.txt <file_sep>/Documentation/threading/threading_doc.md #### File - threading.cpp #### Function: generateRandom ```cpp template<typename T> void generateRandom(unordered_set<T>& rs, const int MAX, const int N) ``` 1) Generates a unique set of random integers. This function will utilize an unordered set for generating unique random integers. The find operation will be useful due to constant time on average. **Parameters** - `rs` , the random set utilized to store random integers. - `MAX` bound, the value set for the highest range for the distribution. - `N` bound, the value set for the number of random integers to generate. **Return Value** 1) `void`, however will output to stderr for measurements. **Complexity:** At most `(N*MAX)` steps #### Function: insert ```cpp template<typename T> void insert(const unordered_set<T> us, vector<T>& vec) ``` 1) Inserts elements from a randomly unsorted set into a vector. **Parameters** - `us`, the random set to be iterated on. - `vec`, the vector to be inserted into. **Return Value** 1) `void`, however will output to stderr for measurements. **Complexity:** At most `(N)` steps #### Function: InsertionSort ```cpp template<typename T> void InsertionSort(vector<T>& vec) ``` 1) Sorts a vector of elements utilizing insertion sort. This function will sort all elements within a vector and utilizes `auto` to handle multiple types such as integers and strings. **Parameters** - `vec`, the vector to sort. **Return Value** 1) `void`, however will output to stderr for measurements. **Complexity:** At most `(N^2)` steps #### Function: print ```cpp template<typename T> void print(T v) ``` 1) Prints all elements from a container. **Parameters** - `v`, the container to print. **Return Value** 1) `void`, however will output to stderr for measurements. **Complexity:** At most `(N)` steps **Example of all functions within threading.cpp (#includes excluded):** ```cpp int main() { int MAX = 1000000; int N = 100000; // Default num integers. unordered_set<int> rs; vector<int> vec; std::thread t1(generateRandom<int>, std::ref(rs), std::ref(MAX), std::ref(N) ); t1.join(); std::thread t2(insert<int>, std::ref(rs), std::ref(vec) ); t2.join(); std::thread t3(InsertionSort<int>, std::ref(vec) ); t3.join(); print(vec); std::thread t4(erase<int>, std::ref(vec) ); t4.join(); return 0; } ``` <file_sep>/Documentation/algos/dfs_doc.md <NAME> #### File - dfs.cpp #### Class - Graph #### Class Helper Functions: ```cpp Graph::Graph(int num_vertices); void Graph::addEdge(int v, int w); ``` Adjacency list Graph representation where adj_list[v] is the list of vertex v. #### Function: DFSHelper ```cpp void Graph::DFSHelper(int start, std::vector<bool>* visited) ``` 1) Helper function marks the current node as visited and recurs for all the vertices adjacent to start **Parameters** - `start`, the vertex to begin the search at. - `visited`, Pointer to vector<bool> of visited nodes. visited[v] is true if vertex v has been visited. **Return Value** 1) `void`, Function recurses until all vertices have been visited. **Complexity:** `O(V+E)` where V is number of vertices in the graph and E is number of edges. #### Function: ```cpp void Graph::DFS(int start) ``` 1) Depth First Traversal of a graph. Calls DFSHelper to recurse. **Parameters** - `start`, the vertex to begin the search at. **Return Value** 1) `void`, prints nodes as they are visited. **Example of all functions within dfs.cpp:** ```cpp int main() { int max_vertices = 3000; // Create a random graph. default_random_engine re(0); uniform_int_distribution<int> vertices_dist(10, max_vertices); int num_vertices = vertices_dist(re); int max_edges = (num_vertices * (num_vertices - 1)) / 2; // Initialize graph. Graph graph(num_vertices); uniform_int_distribution<int> gen_edges_dist(0, num_vertices - 1); for (int i = 0; i < max_edges; i++) { int v = gen_edges_dist(re); int w = gen_edges_dist(re); graph.addEdge(v, w); } graph.DFS(0); return 0; } ``<file_sep>/Documentation/algos/binarysearch_doc.md #### File - binarysearch.cpp #### Function: insert ```cpp template<typename T> void insert(list<T>& lis, T MAX) ``` 1) Inserts `MAX` number elements in into a list. **Parameters** - `lis`, the list to insert elements. - `MAX`, the maximum amount of elements to insert. **Return Value** 1) `void`, however will output to stderr for measurements. **Complexity:** At most `(N)` steps #### Function: BinarySearch ```cpp template<typename T> bool BinarySearch(list<T>& lis, T target) ``` 1) Finds a target within a list utilizing binary search. This function will return a boolean based on whether or not target is within list. **Parameters** - `lis`, the list to search in. - `target`, the desired element. **Return Value** 1) `bool`, `1` if element is in list `0` otherwise. **Complexity:** At most `(log N)` steps **Example of all functions within binarysearch.cpp:** ```cpp int main() { list<int> lis; int target = -1; int MAX = 10000000; insert(lis,MAX); auto start = system_clock::now(); auto result = BinarySearch(lis,target); auto end = system_clock::now(); auto time_trial = duration_cast<milliseconds>(end-start).count(); cerr << "BinarySearch Time: " << time_trial << "ms\n"; cerr << target << " in vector? : " << result << "\n"; return 0; } ``` <file_sep>/DataStructures/set/Makefile executables = set_gcc set_clang set_intel .PHONY: default default: $(executables) set_gcc: set.cpp time g++ -std=c++17 -O2 set.cpp -o set_gcc g++ -std=c++17 -O2 -S set.cpp -o set_gcc.s set_clang: set.cpp time clang++ -std=c++17 -O2 set.cpp -o set_clang clang++ -std=c++17 -O2 -S set.cpp -o set_clang.s set_intel: set.cpp time icpc -std=c++17 -O2 set.cpp -o set_intel icpc -std=c++17 -O2 -S set.cpp -o set_intel.s .PHONY: clean clean: rm -f set_gcc* set_clang* set_intel* buf.txt .PHONY: suites suites: sh SetTestSuite.sh .PHONY: all all: clean default <file_sep>/DataStructures/stack/stack.cpp /* * author: <NAME> * uni: ct2856 * stack.cpp: file for insert, access and erase for stack data structure. * Used following resources: * Tour of C++ - Bjarne Stroustrup * https://en.cppreference.com */ #include <iostream> #include <stack> #include <random> #include <unordered_set> #include <chrono> using namespace::std; using namespace std::chrono; /* * generateRandom - Generates a random set of integers based on MAX and N. * params: unordered set, max bound, N bound * return: void */ template<typename T> void generateRandom(unordered_set<T>& rs, const int MAX, const int N) { random_device rd; default_random_engine dr(rd()); uniform_int_distribution<int> ud(0,MAX); int rando = 0; for (int i=0; i<N; i++) { rando = ud(dr); auto f = rs.find(rando); if (f != rs.end()) { // found a duplicate int tmp = rando; for (int i = 0; i<MAX; i++) { if (i != tmp) { rando = ud(dr); auto f = rs.find(rando); if (f == rs.end()) { rs.insert(rando); // generate the first unique random and break, must insert each loop break; } } } } else { rs.insert(rando); } } cerr << rs.size(); } /* * insert - inserts elements in non-decreasing order into a stack. * params: unordered set, stack * return: void */ template<typename T> void insert(const unordered_set<T> us, stack<T>& st) { stack<T> tmp; for (auto i = us.begin(); i!=us.end(); i++) { if (i == us.begin()) { // push first element st.push(*us.begin()); } else { if (*i > st.top() ) { st.push(*i); } else { while ( !st.empty() ) { // shift all the way left if (*i < st.top() ) tmp.push( st.top() ); else break; st.pop(); } st.push(*i); while ( !tmp.empty() ) { st.push( tmp.top() ); tmp.pop(); } } } } cerr << st.size(); } /* * erase - Erases all elements in a stack. * params: stack * return: void */ template<typename T> void erase(stack<T>& st) { while (!st.empty()) st.pop(); cerr << st.size(); } /* * find - Finds an element in a sorted stack. * params: stack, target * return: bool for if element is in sorted stack. */ template<typename T> bool find(stack<T>& stk, T target) { stack<T> tmp; bool result; while (!stk.empty()) { if (target == stk.top()) { result = true; break; } else { tmp.push( stk.top() ); } stk.pop(); } while (!tmp.empty()) { stk.push( tmp.top() ); tmp.pop(); } return result; } int main() { int MAX = 100000000; int N = 10000; // Default num integers. unordered_set<int> rs; generateRandom(rs,MAX,N); stack<int> stk; // Cold Cache auto start = system_clock::now(); insert(rs,stk); find(stk,*rs.begin()); erase(stk); auto end = system_clock::now(); auto time_trial = duration_cast<milliseconds>(end-start).count(); cout << "Cold Cache Time: " << time_trial << "ms\n"; // Warm Cache start = system_clock::now(); insert(rs,stk); find(stk,*rs.begin()); erase(stk); end = system_clock::now(); time_trial = duration_cast<milliseconds>(end-start).count(); cout << "Warm Cache Time: " << time_trial << "ms\n"; return 0; } <file_sep>/DataStructures/set/SetTestSuite.sh #!/bin/bash echo "g++ set file executing..." ./set_gcc 2>buf.txt echo "clang++ set file executing..." ./set_clang 2>buf.txt echo "icpc set file executing..." ./set_intel 2>buf.txt <file_sep>/Algorithms/binarysearch/binarysearch.cpp /* * author: <NAME> * uni: ct2856 * binarysearch.cpp: file for utilizing binarysearch on a list. * Used following resources: * Tour of C++ - Bjarne Stroustrup * https://en.cppreference.com */ #include <iostream> #include <list> #include <algorithm> #include <chrono> using namespace::std; using namespace std::chrono; /* * insert - inserts elements into a list. * params: list, N elements * return: void */ template<typename T> void insert(list<T>& lis, T N) { for (int i=0;i<=N;i++) { lis.push_back(i); } cerr << lis.size(); } /* * BinarySearch - finds element in list using binary search from <alorithm> * params: list, target * return: boolean */ template<typename T> bool BinarySearch(list<T>& lis, T target) { return binary_search(lis.begin(),lis.end(),target); } int main() { list<int> lis; int target = -1; int MAX = 10000000; insert(lis,MAX); auto start = system_clock::now(); auto result = BinarySearch(lis,target); auto end = system_clock::now(); cerr << result << endl; auto time_trial = duration_cast<milliseconds>(end-start).count(); cout << "BinarySearch Time: " << time_trial << "ms\n"; return 0; } <file_sep>/Documentation/datastructures/map_doc.md #### File - map.cpp #### Function: map_access ```cpp void map_access(const std::vector<int>& rands, std::map<int, int>* map) ``` 1) Fills a map with random elements and then tests deletion and lookup. **Parameters** - `rands` , the random vector utilized to store random integers. - `map`, the pointer to the initialized map. **Return Value** 1) `void`, however will output to stderr for measurements. #### Function: time ```cpp void time(void (*fn)(const std::vector<int>&, std::map<int, int>*), const std::vector<int>& rands, std::map<int, int>*map) ``` 1) Times the map access function. **Parameters** - `fn` , the function pointer to map_access. - `rands` , the random vector utilized to store random integers. - `map`, the pointer to the initialized map. **Return Value** 1) `void`, however will output to stdout for measurements. **Example of all functions within map.cpp:** ```cpp int main() { default_random_engine re(0); uniform_int_distribution<int> dist(0, 100000000); int size = 10000; std::vector<int> rands(size); for (int i=0; i < size; ++i){ rands.push_back(dist(re)); } std::map<int, int> map; time(map_access, rands, &map); return 0; } ``` <file_sep>/DataStructures/stack/Makefile executables = stack_gcc stack_clang stack_intel .PHONY: default default: $(executables) stack_gcc: stack.cpp time g++ -std=c++17 -O2 stack.cpp -o stack_gcc g++ -std=c++17 -O2 -S stack.cpp -o stack_gcc.s stack_clang: stack.cpp time clang++ -std=c++17 -O2 stack.cpp -o stack_clang clang++ -std=c++17 -O2 -S stack.cpp -o stack_clang.s stack_intel: stack.cpp time icpc -std=c++17 -O2 stack.cpp -o stack_intel icpc -std=c++17 -O2 -S stack.cpp -o stack_intel.s .PHONY: clean clean: rm -f stack_gcc* stack_clang* stack_intel* buf.txt .PHONY: suites suites: sh StackTestSuite.sh .PHONY: all all: clean default <file_sep>/Documentation/datastructures/queue_doc.md #### File - queue.cpp #### Function: generateRandom ```cpp template<typename T> void generateRandom(unordered_set<T>& rs, const int MAX, const int N) ``` 1) Generates a unique set of random integers. This function will utilize an unordered set for generating unique random integers. The find operation will be useful due to constant time on average. **Parameters** - `rs` , the random set utilized to store random integers. - `MAX` bound, the value set for the highest range for the distribution. - `N` bound, the value set for the number of random integers to generate. **Return Value** 1) `void`, however will output to stderr for measurements. **Complexity:** At most `(N*MAX)` steps #### Function: insert ```cpp template<typename T> void insert(const unordered_set<T> us, queue<T>& q) ``` 1) Inserts elements from a randomly unsorted set in non-decreasing order into a queue. This function will iterate over an unordered set and sorting in place in non-decreasing order into a queue. **Parameters** - `us`, the random set iterated on. - `q`, the queue to be inserted into. **Return Value** 1) `void`, however will output to stderr for measurements. **Complexity:** At most `(N*M)` steps #### Function: erase ```cpp template<typename T> void erase(queue<T>& q) ``` 1) Erases all elements within a queue. **Parameters** - `q`, the queue used to delete elements until empty. **Return Value** 1) `void`, however will output to stderr for measurements. **Complexity:** At most `(N)` steps #### Function: find ```cpp template<typename T> bool find(queue<T>& q, T target) ``` 1) Finds a target within a sorted non-decreasing queue utilizing a second temporary queue. This function will return a boolean based on whether or not target is within queue. Note that the original queue size will remain unchanged. **Parameters** - `q`, the queue to search in. - `target`, the desired element. **Return Value** 1) `bool`, `1` if element is in queue `0` otherwise. **Complexity:** At most `(N)` steps **Example of all functions within queue.cpp (#includes excluded):** ```cpp int main() { int MAX = 100000000; int N = 5000; // Default num integers. unordered_set<int> rs; generateRandom(rs,MAX,N); queue<int> q; auto start = system_clock::now(); insert(rs,q); find(q,*rs.begin()); erase(q); auto end = system_clock::now(); auto time_trial = duration_cast<milliseconds>(end-start).count(); cerr << "Queue Time: " << time_trial << "ms\n"; return 0; } ``` <file_sep>/Documentation/datastructures/vector_doc.md #### File - vector.cpp #### Function: testVec ```cpp void testVec(int* a, int* x, int n) ``` 1) Tests multiple insertions and deletions in a vector. **Parameters** - `a` , array of random integers. - `x` , pointer to array of random indices to remove - `n` bound, the size of the vector . **Return Value** 1) `void`, however will output to stderr for measurements. **Example of all functions within vector.cpp:** ```cpp int main() { for (int seed=0; seed<2; seed++) { default_random_engine re(seed); uniform_real_distribution<double> dist(0.0, 100000000); int a[10000]; for (int i = 0; i < 10000; i++) { a[i] = dist(re); } int x[10000]; for (int i=0; i<10000; i++) { uniform_real_distribution<double> dist2(0,10000-i); x[i] = dist2(re); } testVec(a,x,10000); } return 0; } ``` <file_sep>/DataStructures/map/MapTestSuite.sh #!/bin/bash echo "g++ map file executing..." ./map_gcc 2>buf.txt echo "clang++ map file executing..." ./map_clang 2>buf.txt echo "icpc map file executing..." ./map_intel 2>buf.txt <file_sep>/Algorithms/binarysearch/Makefile executables = binarysearch_gcc binarysearch_clang binarysearch_intel .PHONY: default default: $(executables) binarysearch_gcc: binarysearch.cpp time g++ -std=c++17 -O2 binarysearch.cpp -o binarysearch_gcc g++ -std=c++17 -O2 -S binarysearch.cpp -o binarysearch_gcc.s binarysearch_clang: binarysearch.cpp time clang++ -std=c++17 -O2 binarysearch.cpp -o binarysearch_clang clang++ -std=c++17 -O2 -S binarysearch.cpp -o binarysearch_clang.s binarysearch_intel: binarysearch.cpp time icpc -std=c++17 -O2 binarysearch.cpp -o binarysearch_intel icpc -std=c++17 -O2 -S binarysearch.cpp -o binarysearch_intel.s .PHONY: clean clean: rm -f binarysearch_gcc* binarysearch_clang* binarysearch_intel* buf.txt .PHONY: suites suites: sh BinarysearchTestSuite.sh .PHONY: all all: clean default <file_sep>/Threading/Makefile executables = threading_gcc threading_clang threading_intel .PHONY: default default: $(executables) threading_gcc: threading.cpp time g++ -std=c++17 -O2 threading.cpp -o threading_gcc g++ -std=c++17 -O2 -S threading.cpp -o threading_gcc.s threading_clang: threading.cpp time clang++ -std=c++17 -O2 threading.cpp -o threading_clang clang++ -std=c++17 -O2 -S threading.cpp -o threading_clang.s threading_intel: threading.cpp time icpc -std=c++17 -O2 threading.cpp -o threading_intel icpc -std=c++17 -O2 -S threading.cpp -o threading_intel.s .PHONY: clean clean: rm -f threading_gcc* threading_clang* threading_intel* buf.txt .PHONY: suites suites: sh ThreadingTestSuite.sh .PHONY: all all: clean default <file_sep>/DataStructures/list/ListTestSuite.sh #!/bin/bash echo "g++ list file executing..." ./list_gcc 2>buf.txt echo "clang++ list file executing..." ./list_clang 2>buf.txt echo "icpc list file executing..." ./list_intel 2>buf.txt <file_sep>/DataStructures/queue/queue.cpp /* * author: <NAME> * uni: ct2856 * queue.cpp: file for insert, access and erase for queue data structure. * Used following resources: * Tour of C++ - Bjarne Stroustrup * https://en.cppreference.com */ #include <iostream> #include <queue> #include <random> #include <unordered_set> #include <chrono> using namespace::std; using namespace std::chrono; /* * generateRandom - Generates a random set of integers based on MAX and N. * params: unordered set, max bound, N bound * return: void */ template<typename T> void generateRandom(unordered_set<T>& rs, const int MAX, const int N) { random_device rd; default_random_engine dr(rd()); uniform_int_distribution<int> ud(0,MAX); int rando = 0; for (int i=0; i<N; i++) { rando = ud(dr); auto f = rs.find(rando); if (f != rs.end()) { // found a duplicate int tmp = rando; for (int i = 0; i<MAX; i++) { if (i != tmp) { rando = ud(dr); auto f = rs.find(rando); if (f == rs.end()) { rs.insert(rando); // generate the first unique random and break, must insert each loop break; } } } } else { rs.insert(rando); } } cerr << rs.size(); } /* * insert - inserts elements in non-decreasing order into a queue. * params: unordered set, queue * return: void */ template<typename T> void insert(const unordered_set<T> us, queue<T>& q) { queue<T> grtr; queue<T> smlr; for (auto i = us.begin(); i!=us.end(); i++) { if (i == us.begin()) { // push first element q.push(*us.begin()); } else { if (*i > q.back() ) { q.push(*i); } else { while ( !q.empty() ) { if ( *i < q.front() ) grtr.push( q.front() ); else smlr.push( q.front() ); q.pop(); } while ( !smlr.empty() ) { q.push( smlr.front() ); smlr.pop(); } q.push(*i); while ( !grtr.empty() ) { q.push( grtr.front() ); grtr.pop(); } } } } cerr << q.size(); } /* * erase - Erases all elements in a queue. * params: queue * return: void */ template<typename T> void erase(queue<T>& q) { while (!q.empty()) q.pop(); cerr << q.size(); } /* * find - Finds an element in a sorted queue. * params: queue, target * return: bool for if element is in sorted queue. */ template<typename T> bool find(queue<T>& q, T target) { queue<T> tmp; bool result; while (!q.empty()) { if (target == q.front() || target == q.back()) { result = true; break; } else { tmp.push( q.front() ); } q.pop(); } while (!tmp.empty()) { q.push( tmp.front() ); tmp.pop(); } return result; } int main() { int MAX = 100000000; int N = 5000; // Default num integers. unordered_set<int> rs; generateRandom(rs,MAX,N); queue<int> q; // Cold Cache auto start = system_clock::now(); insert(rs,q); find(q,*rs.begin()); erase(q); auto end = system_clock::now(); auto time_trial = duration_cast<milliseconds>(end-start).count(); cout << "Cold Cache Time: " << time_trial << "ms\n"; // Warm Cache start = system_clock::now(); insert(rs,q); find(q,*rs.begin()); erase(q); end = system_clock::now(); time_trial = duration_cast<milliseconds>(end-start).count(); cout << "Warm Cache Time: " << time_trial << "ms\n"; return 0; } <file_sep>/DataStructures/stack/StackTestSuite.sh #!/bin/bash echo "g++ stack file executing..." ./stack_gcc 2>buf.txt echo "clang++ stack file executing..." ./stack_clang 2>buf.txt echo "icpc stack file executing..." ./stack_intel 2>buf.txt <file_sep>/Documentation/algos/bfs_doc.md <NAME> #### File - bfs.cpp #### Class - Graph #### Class Helper Functions: ```cpp Graph::Graph(int num_vertices); void Graph::addEdge(int v, int w); int Graph::getNumVertices(); ``` Adjacency list Graph representation where adj_list[v] is the list of vertex v. #### Function: BFS ```cpp bool Graph::BFS(int start, int end) ``` 1) Traverses through entire graph if end = -1 and returns false. If end is not -1, returns true if end is found or false if not found. **Parameters** - `start`, the vertex to begin the search at. - `end`, the vertex to end the search at. If -1, BFS traverses entire graph. **Return Value** 1) `bool`, returns true if end is found, false otherwise. **Complexity:** `O(V+E)` where V is number of vertices in the graph and E is number of edges. #### Function: ```cpp Graph genRandomGraph() ``` 1) Returns a random Graph of 3000 vertices or less. **Return Value** 1) `Graph`, returns a random graph. **Example of all functions within bfs.cpp:** ```cpp int main() { int max_vertices = 30; // Create a random graph. default_random_engine re(0); uniform_int_distribution<int> vertices_dist(10, max_vertices); int num_vertices = vertices_dist(re); // A dense graph can have N(N-1)/2 edges. int max_edges = (num_vertices * (num_vertices - 1)) / 2; // Initialize graph. Graph graph(num_vertices); uniform_int_distribution<int> gen_edges_dist(0, num_vertices - 1); for (int i = 0; i < max_edges; i++) { int v = gen_edges_dist(re); int w = gen_edges_dist(re); graph.addEdge(v, w); } graph.BFS(1, -1); bool value = graph.BFS(0, num_vertices-1); cout << (value ? "true" : "false") << endl; return 0; } ```<file_sep>/README.md Battle of the Compilers: A Survey of C++ Compilers ------------ ### Authors - <NAME> - <NAME> - <NAME> Battle of the Compilers is written in C++ and surveys four top C++ compilers: G++, Clang, Intel C++, Microsoft C++. We measure three aspects of the compilers performance: `compile time`, `run time`, and `executable file size`. To be able to understand this tutorial, first read the Design Document to understand the previous research, design decisions, and structure of the test suites. Then read the [documentation](Documentation/) of all of the files in our test suite in the documentation folder. ### Requirements - [G++ Compiler](https://gcc.gnu.org/)<br/> - [Clang Compiler](https://clang.llvm.org/get_started.html) - [Intel C++ Compiler](https://software.intel.com/en-us/c-compilers) - [Microsoft C++ Compiler](https://visualstudio.microsoft.com/vs/features/cplusplus/) All source code was tested and compiled with `C++17`. The testing system currently utilizes `Makefiles` in each target directory along with `Shell` scripts. ### Documentation There is substantial documentation for each of the data structures and algorithms tested. Within these documents you can view the numerous functions utilized along with their specifics. You can find the documentation [here](Documentation/). ### Data We have collected various amounts of data utilizing the [Intel SDE](https://software.intel.com/en-us/articles/intel-software-development-emulator) along with our own analysis via the test suites. All data is stored in the `IntelSDE_Data` directory. You can find all the data [here](IntelSDE_Data/). ### Running Test Suites There are two options to run the test suites.<br/> - Run individual test suites within a specific directory:<br/> `$ make` for compilation. <br/> `$ make suites` for execution of program. <br/> - Run all test suites from top level of project directory:<br/> `$ sh RunTestSuites.sh` for compilation and execution of all test suites. <br/> - No test suites were written for the Microsoft compiler. Those tests must be compiled and executed manually in the Developer Command Prompt for VS with the following commands:<br/> `cl /std:c++17 /O2 /d2cgsummary /FAs /Fa<assemblyFile> <sourceFile>` for compilation. <br/> `<program_name> 2>buf.txt` for exectution of program. <br/> ### Running Intel SDE There are two main tools we use in the Intel SDE. We use the [Histogram Tool](https://software.intel.com/en-us/articles/intel-software-development-emulator#inpage-nav-1-4) and the [XED Disassembler](https://software.intel.com/en-us/articles/intel-software-development-emulator#inpage-nav-1-9). Here is an example of how to to generate the necessary files for the `list` data structure into the `IntelSDE_Data` directory on MacOS: ``` ### For the Histogram File ### $ ./sde -mix -omix ~/cpp-class-project/IntelSDE_Data/DataStructures/list/g++list/sde-mix-out-g++_list.txt -iform -- ~/cpp-class-project/DataStructures/list/list_gcc $ ./sde -mix -omix ~/cpp-class-project/IntelSDE_Data/DataStructures/list/clangg++list/sde-mix-out-clangg++_list.txt -iform -- ~/cpp-class-project/DataStructures/list/list_clang $ ./sde -mix -omix ~/cpp-class-project/IntelSDE_Data/DataStructures/list/icpclist/sde-mix-out-icpc-list.txt -iform -- ~/cpp-class-project/DataStructures/list/list_intel ### For the XED Disassembler File ### $ ./xed -i ~/cpp-class-project/DataStructures/list/list_gcc > ~/cpp-class-project/IntelSDE_Data/DataStructures/list/g++list/g++dis-list.txt $ ./xed -i ~/cpp-class-project/DataStructures/list/list_clang > ~/cpp-class-project/IntelSDE_Data/DataStructures/list/clang++list/clang++dis-list.txt $ ./xed -i ~/cpp-class-project/DataStructures/list/list_intel > ~/cpp-class-project/IntelSDE_Data/DataStructures/list/icpclist/icpcdis-list.txt ``` On Windows 10: ``` ### For the Histogram File ### sde -mix -omix "C:\Users\<username>\cpp-class-project\IntelSDE_Data\DataStructures\list\msvc\sde-list-ms.txt" -iform -- "C:\Users\<username>\cpp-class-project\DataStructures\list\list.exe" ### For the XED Disassembler File ### xed -i "C:\Users\<username>\cpp-class-project\DataStructures\list\list.exe" > "C:\Users\<username>\cpp-class-project\IntelSDE_Data\DataStructures\list\msvc\xed-list-ms.txt" ``` <file_sep>/DataStructures/uset/Makefile executables = uset_gcc uset_clang uset_intel .PHONY: default default: $(executables) uset_gcc: unordered_set.cpp time g++ -std=c++17 -O2 unordered_set.cpp -o uset_gcc g++ -std=c++17 -O2 -S unordered_set.cpp -o uset_gcc.s uset_clang: unordered_set.cpp time clang++ -std=c++17 -O2 unordered_set.cpp -o uset_clang clang++ -std=c++17 -O2 -S unordered_set.cpp -o uset_clang.s uset_intel: unordered_set.cpp time icpc -std=c++17 -O2 unordered_set.cpp -o uset_intel icpc -std=c++17 -O2 -S unordered_set.cpp -o uset_intel.s .PHONY: clean clean: rm -f uset_gcc* uset_clang* uset_intel* buf.txt .PHONY: suites suites: sh UsetTestSuite.sh .PHONY: all all: clean default <file_sep>/Documentation/datastructures/set_doc.md #### File - set.cpp #### Function: set_access ```cpp void set_access(const vector<string>& rands, set<string>* set){ ``` 1) Fills a set with random elements and then tests deletion and swap. **Parameters** - `rands` , the random vector utilized to store random strings. - `set`, the pointer to the initialized set. **Return Value** 1) `void`, however will output to stderr for measurements. #### Function: time ```cpp void time(void (*fn)(const std::vector<string>&, std::set<string>*), const std::vector<string>& rands, std::set<string>* set) ``` 1) Times the set access function. **Parameters** - `fn` , the function pointer to set_access. - `rands` , the random vector utilized to store random strings. - `set`, the pointer to the initialized set. **Return Value** 1) `void`, however will output to stdout for measurements. **Example of all functions within set.cpp:** ```cpp int main() { default_random_engine re(0); uniform_int_distribution<int> dist(0, 100000000); int size = 5000; std::vector<string> rands(size); for (int i=0; i < size; ++i){ rands.push_back(to_string(dist(re))); } std::cout << rands[0]; std::set<string> set; time(set_access, rands, &set); return 0; } ``` <file_sep>/Documentation/datastructures/list_doc.md #### File - list.cpp #### Function: generateRandom ```cpp template<typename T> void generateRandom(unordered_set<T>& rs, const int MAX, const int N) ``` 1) Generates a unique set of random integers. This function will utilize an unordered set for generating unique random integers. The find operation will be useful due to constant time on average. **Parameters** - `rs` , the random set utilized to store random integers. - `MAX` bound, the value set for the highest range for the distribution. - `N` bound, the value set for the number of random integers to generate. **Return Value** 1) `void`, however will output to stderr for measurements. **Complexity:** At most `(N*MAX)` steps #### Function: insert ```cpp template<typename T> void insert(const unordered_set<T> us, list<T>& lis); ``` 1) Inserts elements from a randomly unsorted set in non-decreasing order into a list. This function will iterate over an unordered set and sorting in place in non-decreasing order into a list by utilizing an offset. **Parameters** - `us`, the random set iterated on. - `lis`, the list to be inserted into. **Return Value** 1) `void`, however will output to stderr for measurements. **Complexity:** At most `(N*M)` steps #### Function: erase ```cpp template<typename T> void erase(list<T>& lis) ``` 1) Erases random elements within a list. This function creates a random integer based on a distribution sized by the shrinking list size. An iterator will be generated on the list to use as an offset for deletion. **Parameters** - `lis`, the list to be used to randomly delete elements until empty. **Return Value** 1) `void`, however will output to stderr for measurements. **Complexity:** At most `(N)` steps #### Function: find ```cpp template<typename T> bool find(list<T>& lis, T target) ``` 1) Finds a target within a sorted list utilizing binary search. This function will return a boolean based on whether or not target is within list. **Parameters** - `lis`, the list to search in. - `target`, the desired element. **Return Value** 1) `bool`, `1` if element is in list `0` otherwise. **Complexity:** At most `(log N)` steps **Example of all functions within list.cpp:** ```cpp int main() { int MAX = 1000000; int N = 10000; // Default num integers. unordered_set<int> rs; generateRandom(rs,MAX,N); list<int> lis; auto start = system_clock::now(); insert(rs,lis); find(lis.begin(),lis.end(),*rs.begin()); erase(lis); auto end = system_clock::now(); auto time_trial = duration_cast<milliseconds>(end-start).count(); cerr << "List Time: " << time_trial << "ms\n"; return 0; } ``` <file_sep>/Documentation/datastructures/stack_doc.md #### File - stack.cpp #### Function: generateRandom ```cpp template<typename T> void generateRandom(unordered_set<T>& rs, const int MAX, const int N) ``` 1) Generates a unique set of random integers. This function will utilize an unordered set for generating unique random integers. The find operation will be useful due to constant time on average. **Parameters** - `rs` , the random set utilized to store random integers. - `MAX` bound, the value set for the highest range for the distribution. - `N` bound, the value set for the number of random integers to generate. **Return Value** 1) `void`, however will output to stderr for measurements. **Complexity:** At most `(N*MAX)` steps #### Function: insert ```cpp template<typename T> void insert(const unordered_set<T> us, stack<T>& st) ``` 1) Inserts elements from a randomly unsorted set in non-decreasing order into a stack. This function will iterate over an unordered set and sorting in place in non-decreasing order into a stack. **Parameters** - `us`, the random set iterated on. - `st`, the stack to be inserted into. **Return Value** 1) `void`, however will output to stderr for measurements. **Complexity:** At most `(N*M)` steps #### Function: erase ```cpp template<typename T> void erase(stack<T>& st) ``` 1) Erases all elements within a stack. **Parameters** - `st`, the stack to be used to delete elements until empty. **Return Value** 1) `void`, however will output to stderr for measurements. **Complexity:** At most `(N)` steps #### Function: find ```cpp template<typename T> bool find(stack<T>& stk, T target) ``` 1) Finds a target within a sorted non-decreasing stack utilizing a second temporary stack. This function will return a boolean based on whether or not target is within stack. Note that the original stack size will remain unchanged. **Parameters** - `stk`, the stack to search in. - `target`, the desired element. **Return Value** 1) `bool`, `1` if element is in queue `0` otherwise. **Complexity:** At most `(N)` steps **Example of all functions within stack.cpp:** ```cpp int main() { int MAX = 100000000; int N = 10000; // Default num integers. unordered_set<int> rs; generateRandom(rs,MAX,N); stack<int> stk; auto start = system_clock::now(); insert(rs,stk); find(stk,*rs.begin()); erase(stk); auto end = system_clock::now(); auto time_trial = duration_cast<milliseconds>(end-start).count(); cerr << "Stack Time: " << time_trial << "ms\n"; return 0; } ``` <file_sep>/Threading/threading.cpp /* * author: <NAME> * uni: ct2856 * threading.cpp: file for testing multiple threads. * Used following resources: * Tour of C++ - Bjarne Stroustrup * https://en.cppreference.com */ #include <iostream> #include <vector> #include <random> #include <algorithm> #include <unordered_set> #include <chrono> #include <thread> using namespace::std; using namespace std::chrono; /* * generateRandom - Generates a random set of integers based on MAX and N. * params: unordered set, max bound, N bound * return: void */ template<typename T> void generateRandom(unordered_set<T>& rs, const int MAX, const int N) { random_device rd; default_random_engine dr(rd()); uniform_int_distribution<int> ud(0,MAX); int rando = 0; for (int i=0;i<N;i++) { rando = ud(dr); auto f = rs.find(rando); if (f != rs.end()) { // found a duplicate int tmp = rando; for (int i = 0;i<MAX;i++) { if (i != tmp) { rando = ud(dr); auto f = rs.find(rando); if (f == rs.end()) { rs.insert(rando); // generate the first unique random and break, must insert each loop break; } } } } else { rs.insert(rando); } } cerr << rs.size(); } /* * insert - inserts elements into a vector. * params: unordered set, vector * return: void */ template<typename T> void insert(const unordered_set<T> rs, vector<T>& vec) { for (auto i = rs.begin();i!=rs.end();i++) vec.push_back(*i); cerr << vec.size(); } /* * erase - Erases elements in a vector. * params: vector * return: void */ template<typename T> void erase(vector<T>& vec) { while(!vec.empty()) vec.pop_back(); cerr << vec.size(); } template<typename T> void print(T v) { if (v.size()) { cerr << "["; for (auto n: v) { cerr << n << "," ; } cerr << "]\n"; } else { cerr << "[]\n"; } } /* * InsertionSort - sorts elements in vector using insertion sort * params: vector * return: void */ template<typename T> void InsertionSort(vector<T>& vec) { for (int i=1;i<vec.size();i++) { auto k = vec[i]; auto j = i-1; while (j >= 0 && vec[j] > k) { vec[j+1] = vec[j]; j = j-1; } vec[j+1] = k; } cerr << vec.size(); } int main() { int MAX = 1000000; int N = 100000; // Default num integers. auto start = system_clock::now(); unordered_set<int> rs; vector<int> vec; std::thread t1(generateRandom<int>, std::ref(rs), std::ref(MAX), std::ref(N) ); t1.join(); std::thread t2(insert<int>, std::ref(rs), std::ref(vec) ); t2.join(); std::thread t3(InsertionSort<int>, std::ref(vec) ); t3.join(); //print(vec); std::thread t4(erase<int>, std::ref(vec) ); t4.join(); auto end = system_clock::now(); auto time_trial = duration_cast<milliseconds>(end-start).count(); cout << "Multiple Threads Time: " << time_trial << "ms\n"; return 0; } <file_sep>/Algorithms/binarysearch/BinarysearchTestSuite.sh #!/bin/bash echo "g++ binarysearch file executing..." ./binarysearch_gcc 2>buf.txt echo "clang++ binarysearch file executing..." ./binarysearch_clang 2>buf.txt echo "icpc binarysearch file executing..." ./binarysearch_intel 2>buf.txt <file_sep>/DataStructures/vector/vector.cpp #include <iostream> #include <chrono> #include <vector> #include <random> using namespace::std; using namespace std::chrono; void testVec(int* a, int* x, int n) { vector<int> v; // test performance of intel with preallocation // v.reserve(n); for (int i=0; i<n; i++) { auto it=v.begin(); if (i != 0) { while(*it < a[i]) { if (it == v.end()) break; it++; } } v.insert(it,a[i]); } cerr << v.size(); for (int i=0; i<n; i++) { auto it=v.begin(); int pos = 0; while(pos < x[i]) { it++; pos++; } v.erase(it); } cerr << v.size(); } //main function int main() { //run twice: once for warm, once for cold cache for (int seed=0; seed<2; seed++) { default_random_engine re(seed); uniform_real_distribution<double> dist(0.0, 100000000); //reduce chance of collision int a[10000]; for (int i = 0; i < 10000; i++) { a[i] = dist(re); } //construct array of random indices to remove int x[10000]; for (int i=0; i<10000; i++) { uniform_real_distribution<double> dist2(0,10000-i); x[i] = dist2(re); } auto start = system_clock::now(); testVec(a,x,10000); auto end = system_clock::now(); auto dur = duration_cast<milliseconds>(end-start).count(); cerr << dur << endl; if (seed == 0) cout << "runtime (cold):" << dur << endl; else if (seed == 1) cout << "runtime (warm):" << dur << endl; } return 0; } <file_sep>/RunTestSuites.sh #!/bin/bash # Run this Script to test all test suites all at once dir=$(pwd) # Make/Test DataStructures cd $dir/DataStructures/list/ make make suites cd ../map make make suites cd ../queue make make suites cd ../set make make suites cd ../stack make make suites cd ../uset make make suites cd ../vector make make suites # Clean Up DataStructures cd $dir/DataStructures/list/ make clean cd ../map make clean cd ../queue make clean cd ../set make clean cd ../stack make clean cd ../uset make clean cd ../vector make clean # Make/Test Algos cd $dir/Algorithms/bfs make make suites cd ../binarysearch make make suites cd ../dfs make make suites cd ../isort make make suites # Clean Up Algos cd $dir/Algorithms/bfs make clean cd ../binarysearch make clean cd ../dfs make clean cd ../isort make clean # Make/Test Threading cd $dir/Threading make make suites # Clean Threading cd $dir/Threading make clean <file_sep>/DataStructures/uset/UsetTestSuite.sh #!/bin/bash echo "g++ uset file executing..." ./uset_gcc 2>buf.txt echo "clang++ uset file executing..." ./uset_clang 2>buf.txt echo "icpc uset file executing..." ./uset_intel 2>buf.txt <file_sep>/Documentation/algos/insertionsort_doc.md #### File - insertionsort.cpp #### Function: generateRandom ```cpp template<typename T> void generateRandom(unordered_set<T>& rs, const int MAX, const int N) ``` 1) Generates a unique set of random integers. This function will utilize an unordered set for generating unique random integers. The find operation will be useful due to constant time on average. **Parameters** - `rs` , the random set utilized to store random integers. - `MAX` bound, the value set for the highest range for the distribution. - `N` bound, the value set for the number of random integers to generate. **Return Value** 1) `void`, however will output to stderr for measurements. **Complexity:** At most `(N*MAX)` steps #### Function: insert ```cpp template<typename T> void insert(const unordered_set<T> us, vector<T>& vec) ``` 1) Inserts elements from a randomly unsorted set into a vector. **Parameters** - `us`, the random set to be iterated on. - `vec`, the vector to be inserted into. **Return Value** 1) `void`, however will output to stderr for measurements. **Complexity:** At most `(N)` steps #### Function: InsertionSort ```cpp template<typename T> void InsertionSort(vector<T>& vec) ``` 1) Sorts a vector of elements utilizing insertion sort. This function will sort all elements within a vector and utilizes `auto` to handle multiple types such as integers and strings. **Parameters** - `vec`, the vector to sort. **Return Value** 1) `void`, however will output to stderr for measurements. **Complexity:** At most `(N^2)` steps **Example of all functions within insertionsort.cpp (#includes excluded):** ```cpp int main() { int MAX = 1000000; int N = 10000; // Default num integers. unordered_set<int> rs; vector<int> vec; generateRandom(rs,MAX,N); insert(rs,vec); auto start = system_clock::now(); InsertionSort(vec); auto end = system_clock::now(); auto time_trial = duration_cast<milliseconds>(end-start).count(); cerr << "Insertion Sort Time: " << time_trial << "ms\n"; return 0; } ``` <file_sep>/DataStructures/vector/VectorTestSuite.sh #!/bin/bash echo "g++ vector file executing..." ./vector_gcc 2>buf.txt echo "clang++ vector file executing..." ./vector_clang 2>buf.txt echo "icpc vector file executing..." ./vector_intel 2>buf.txt <file_sep>/DataStructures/map/Makefile executables = map_gcc map_clang map_intel .PHONY: default default: $(executables) map_gcc: map.cpp time g++ -std=c++17 -O2 map.cpp -o map_gcc g++ -std=c++17 -O2 -S map.cpp -o map_gcc.s map_clang: map.cpp time clang++ -std=c++17 -O2 map.cpp -o map_clang clang++ -std=c++17 -O2 -S map.cpp -o map_clang.s map_intel: map.cpp time icpc -std=c++17 -O2 map.cpp -o map_intel icpc -std=c++17 -O2 -S map.cpp -o map_intel.s .PHONY: clean clean: rm -f map_gcc* map_clang* map_intel* buf.txt .PHONY: suites suites: sh MapTestSuite.sh .PHONY: all all: clean default <file_sep>/DataStructures/list/list.cpp /* * author: <NAME> * uni: ct2856 * list.cpp: file for insert, access and erase for list data structure. * Used following resources: * Tour of C++ - Bjarne Stroustrup * https://en.cppreference.com */ #include <iostream> #include <list> #include <random> #include <algorithm> #include <unordered_set> #include <chrono> using namespace::std; using namespace std::chrono; /* * generateRandom - Generates a random set of integers based on MAX and N. * params: unordered set, max bound, N bound * return: void */ template<typename T> void generateRandom(unordered_set<T>& rs, const int MAX, const int N) { random_device rd; default_random_engine dr(rd()); uniform_int_distribution<int> ud(0,MAX); int rando = 0; for (int i=0;i<N;i++) { rando = ud(dr); auto f = rs.find(rando); if (f != rs.end()) { // found a duplicate int tmp = rando; for (int i = 0;i<MAX;i++) { if (i != tmp) { rando = ud(dr); auto f = rs.find(rando); if (f == rs.end()) { rs.insert(rando); // generate the first unique random and break, must insert each loop break; } } } } else { rs.insert(rando); } } cerr << rs.size(); } /* * insert - inserts elements in non-decreasing order into a list. * params: unordered set, list * return: void */ template<typename T> void insert(const unordered_set<T> us, list<T>& lis) { for (auto i = us.begin();i!=us.end();i++) { if (i == us.begin()) { // push first element lis.push_back(*us.begin()); } else { auto l = lis.begin(); int count = 0; for (;l!=lis.end();l++) { if (*i < *l) break; count++; } int offset = count > 0 ? count : 0; auto pos = lis.begin(); while ( offset-- > 0) pos++; lis.insert(pos,*i); count = 0; } } cerr << lis.size(); } /* * erase - Erases all elements in a list. * params: list * return: void */ template<typename T> void erase(list<T>& lis) { random_device rd; default_random_engine dr(rd()); int size = lis.size()-1; int shrinking = size; int listIndex = 0; while (size-- >= 0) { uniform_int_distribution<int> aa(0,shrinking--); listIndex = aa(dr); auto pos = lis.begin(); while ( listIndex-- > 0) pos++; lis.erase(pos); } cerr << lis.size(); } /* * find - Finds an element in a sorted list. * params: list, target * return: bool for if element is in sorted list. */ template<typename T> bool find(list<T>& lis, T target) { return std::binary_search(lis.begin(),lis.end(),target); } int main() { int MAX = 1000000; int N = 10000; // Default num integers. unordered_set<int> rs; generateRandom(rs,MAX,N); list<int> lis; // Cold Cache auto start = system_clock::now(); insert(rs,lis); find(lis.begin(),lis.end(),*rs.begin()); erase(lis); auto end = system_clock::now(); auto time_trial = duration_cast<milliseconds>(end-start).count(); cout << "Cold Cache Time: " << time_trial << "ms\n"; // Warm Cache start = system_clock::now(); insert(rs,lis); find(lis.begin(),lis.end(),*rs.begin()); erase(lis); end = system_clock::now(); time_trial = duration_cast<milliseconds>(end-start).count(); cout << "Warm Cache Time: " << time_trial << "ms\n"; return 0; } <file_sep>/Algorithms/isort/Makefile executables = isort_gcc isort_clang isort_intel .PHONY: default default: $(executables) isort_gcc: insertionsort.cpp time g++ -std=c++17 -O2 insertionsort.cpp -o isort_gcc g++ -std=c++17 -O2 -S insertionsort.cpp -o isort_gcc.s isort_clang: insertionsort.cpp time clang++ -std=c++17 -O2 insertionsort.cpp -o isort_clang clang++ -std=c++17 -O2 -S insertionsort.cpp -o isort_clang.s isort_intel: insertionsort.cpp time icpc -std=c++17 -O2 insertionsort.cpp -o isort_intel icpc -std=c++17 -O2 -S insertionsort.cpp -o isort_intel.s .PHONY: clean clean: rm -f isort_gcc* isort_clang* isort_intel* buf.txt .PHONY: suites suites: sh IsortTestSuite.sh .PHONY: all all: clean default <file_sep>/Algorithms/dfs/dfs.cpp /* Author: <NAME> */ #include<iostream> #include <list> #include <chrono> #include <vector> #include <random> using namespace std; class Graph { int num_vertices; list<int>* adj_list; public: Graph(int num_vertices); void addEdge(int v, int w); void DFS(int start); void DFSHelper(int start, std::vector<bool>* visited); }; // Constructor intializes the Graph with the number of vertices. Graph::Graph(int num_vertices) { this->num_vertices = num_vertices; adj_list = new list<int>[num_vertices]; } // Adds an edge to the Graph. void Graph::addEdge(int v, int w) { adj_list[v].push_back(w); } void Graph::DFSHelper(int start, std::vector<bool>* visited) { (*visited)[start] = true; std::cerr << start << endl; list<int>::iterator it; for (it = adj_list[start].begin(); it != adj_list[start].end(); it++) if (!(*visited)[*it]) DFSHelper(*it, visited); } // DFS traversal of the vertices. void Graph::DFS(int start) { // Mark all the vertices as not visited std::vector<bool> visited(num_vertices); for (int i = 0; i < num_vertices; i++){ visited[i] = false; } // recurse DFSHelper(start, &visited); } int main() { int max_vertices = 3000; // Create a random graph. default_random_engine re(0); uniform_int_distribution<int> vertices_dist(10, max_vertices); int num_vertices = vertices_dist(re); // A dense graph can have N(N-1)/2 edges. int max_edges = (num_vertices * (num_vertices - 1)) / 2; // Initialize graph. Graph graph(num_vertices); uniform_int_distribution<int> gen_edges_dist(0, num_vertices - 1); for (int i = 0; i < max_edges; i++) { int v = gen_edges_dist(re); int w = gen_edges_dist(re); graph.addEdge(v, w); } auto start = chrono::high_resolution_clock::now(); graph.DFS(0); auto end = chrono::high_resolution_clock::now(); auto duration = chrono::duration_cast<chrono::milliseconds>(end - start).count(); cout << "DFS entire graph traversal took time: " << duration << " milliseconds" << endl; return 0; } <file_sep>/Algorithms/dfs/DfsTestSuite.sh #!/bin/bash echo "g++ dfs file executing..." ./dfs_gcc 2>buf.txt echo "clang++ dfs file executing..." ./dfs_clang 2>buf.txt echo "icpc dfs file executing..." ./dfs_intel 2>buf.txt <file_sep>/DataStructures/map/map.cpp #include <iostream> #include <chrono> #include <vector> #include <map> #include <random> using namespace std; /* Fills a map with random elements and then randomly removes elements from the map. */ void map_access(const std::vector<int>& rands, std::map<int, int>* map){ // Test insertion for (const auto& elem: rands) { (*map)[elem] = 0; } std::cerr << map->size() << "\n"; default_random_engine real(0); uniform_int_distribution<int> distribution(0, map->size()); // Test deletion for (int i=0; i < map->size();){ int pos = distribution(real); if (pos < map->size()){ auto it = map->begin(); for (int z = 0; z < pos; z++){ it++; } map->erase(it); ++i; } } std::cerr << map->size() << "\n"; map->clear(); std::cerr << map->size() << "\n"; for (const auto& elem: rands) { (*map)[elem] = 0; } // Test map lookup for (int i=0; i < 10; i++){ int key = distribution(real); auto search = map->find(key); if (search != map->end()) { (*map)[key] = 1; } } std::cerr << map->size() << "\n"; } /* Times map function */ void time(void (*fn)(const std::vector<int>&, std::map<int, int>*), const std::vector<int>& rands, std::map<int, int>* map){ auto start = chrono::high_resolution_clock::now(); fn(rands, map); auto end = chrono::high_resolution_clock::now(); auto duration = chrono::duration_cast<chrono::milliseconds>(end - start).count(); cout << "cold cache took time: " << duration << " milliseconds" << endl; start = chrono::high_resolution_clock::now(); fn(rands, map); end = chrono::high_resolution_clock::now(); duration = chrono::duration_cast<chrono::milliseconds>(end - start).count(); cout << "warm cache took time: " << duration << " milliseconds" << endl; } int main() { default_random_engine re(0); uniform_int_distribution<int> dist(0, 100000000); int size = 10000; std::vector<int> rands(size); for (int i=0; i < size; ++i){ rands.push_back(dist(re)); } std::map<int, int> map; time(map_access, rands, &map); return 0; }<file_sep>/Algorithms/bfs/Makefile executables = bfs_gcc bfs_clang bfs_intel .PHONY: default default: $(executables) bfs_gcc: bfs.cpp time g++ -std=c++17 -O2 bfs.cpp -o bfs_gcc g++ -std=c++17 -O2 -S bfs.cpp -o bfs_gcc.s bfs_clang: bfs.cpp time clang++ -std=c++17 -O2 bfs.cpp -o bfs_clang clang++ -std=c++17 -O2 -S bfs.cpp -o bfs_clang.s bfs_intel: bfs.cpp time icpc -std=c++17 -O2 bfs.cpp -o bfs_intel icpc -std=c++17 -O2 -S bfs.cpp -o bfs_intel.s .PHONY: clean clean: rm -f bfs_gcc* bfs_clang* bfs_intel* buf.txt .PHONY: suites suites: sh BfsTestSuite.sh .PHONY: all all: clean default <file_sep>/DataStructures/queue/Makefile executables = queue_gcc queue_clang queue_intel .PHONY: default default: $(executables) queue_gcc: queue.cpp time g++ -std=c++17 -O2 queue.cpp -o queue_gcc g++ -std=c++17 -O2 -S queue.cpp -o queue_gcc.s queue_clang: queue.cpp time clang++ -std=c++17 -O2 queue.cpp -o queue_clang clang++ -std=c++17 -O2 -S queue.cpp -o queue_clang.s queue_intel: queue.cpp time icpc -std=c++17 -O2 queue.cpp -o queue_intel icpc -std=c++17 -O2 -S queue.cpp -o queue_intel.s .PHONY: clean clean: rm -f queue_gcc* queue_clang* queue_intel* buf.txt .PHONY: suites suites: sh QueueTestSuite.sh .PHONY: all all: clean default <file_sep>/DataStructures/uset/unordered_set.cpp #include <iostream> #include <chrono> #include <vector> #include <unordered_set> #include <random> #include <string> using namespace std; /* Fills an unordered_set with random strings and then randomly removes elements from the unordered_set. */ void set_access(const vector<string>& rands, unordered_set<string>* unordered_set){ // Test insertion for (const auto& elem: rands) { unordered_set->insert(elem); } std::cerr << unordered_set->size() << "\n"; default_random_engine real(0); uniform_int_distribution<int> distribution(0, unordered_set->size()); std::cerr << unordered_set->size() << "\n"; // Test deletion for (int i=0; i < unordered_set->size();){ int pos = distribution(real); if (pos < unordered_set->size()){ auto it = unordered_set->begin(); for (int z = 0; z < pos; z++){ it++; } unordered_set->erase(it); ++i; } } std::cerr << unordered_set->size() << "\n"; unordered_set->clear(); std::cerr << unordered_set->size() << "\n"; std::unordered_set<string> tempset; for (const auto& elem: rands) { tempset.insert(elem); } std::cerr << tempset.size() << "\n"; // Test swap unordered_set->swap(tempset); std::cerr << unordered_set->size() << "\n"; } /* Times unordered_set function */ void time(void (*fn)(const std::vector<string>&, std::unordered_set<string>*), const std::vector<string>& rands, std::unordered_set<string>* unordered_set){ auto start = chrono::high_resolution_clock::now(); fn(rands, unordered_set); auto end = chrono::high_resolution_clock::now(); auto duration = chrono::duration_cast<chrono::milliseconds>(end - start).count(); cout << "cold cache took time: " << duration << " milliseconds" << endl; start = chrono::high_resolution_clock::now(); fn(rands, unordered_set); end = chrono::high_resolution_clock::now(); duration = chrono::duration_cast<chrono::milliseconds>(end - start).count(); cout << "warm cache took time: " << duration << " milliseconds" << endl; } int main() { default_random_engine re(0); uniform_int_distribution<int> dist(0, 100000000); int size = 5000; std::vector<string> rands(size); for (int i=0; i < size; ++i){ rands.push_back(to_string(dist(re))); } std::cout << rands[0]; std::unordered_set<string> unordered_set; time(set_access, rands, &unordered_set); return 0; }<file_sep>/Algorithms/bfs/BfsTestSuite.sh #!/bin/bash echo "g++ bfs file executing..." ./bfs_gcc 2>buf.txt echo "clang++ bfs file executing..." ./bfs_clang 2>buf.txt echo "icpc bfs file executing..." ./bfs_intel 2>buf.txt <file_sep>/Algorithms/dfs/Makefile executables = dfs_gcc dfs_clang dfs_intel .PHONY: default default: $(executables) dfs_gcc: dfs.cpp time g++ -std=c++17 -O2 dfs.cpp -o dfs_gcc g++ -std=c++17 -O2 -S dfs.cpp -o dfs_gcc.s dfs_clang: dfs.cpp time clang++ -std=c++17 -O2 dfs.cpp -o dfs_clang clang++ -std=c++17 -O2 -S dfs.cpp -o dfs_clang.s dfs_intel: dfs.cpp time icpc -std=c++17 -O2 dfs.cpp -o dfs_intel icpc -std=c++17 -O2 -S dfs.cpp -o dfs_intel.s .PHONY: clean clean: rm -f dfs_gcc* dfs_clang* dfs_intel* buf.txt .PHONY: suites suites: sh DfsTestSuite.sh .PHONY: all all: clean default <file_sep>/DataStructures/vector/Makefile executables = vector_gcc vector_clang vector_intel .PHONY: default default: $(executables) vector_gcc: vector.cpp time g++ -std=c++17 -O2 vector.cpp -o vector_gcc g++ -std=c++17 -O2 -S vector.cpp -o vector_gcc.s vector_clang: vector.cpp time clang++ -std=c++17 -O2 vector.cpp -o vector_clang clang++ -std=c++17 -O2 -S vector.cpp -o vector_clang.s vector_intel: vector.cpp time icpc -std=c++17 -O2 vector.cpp -o vector_intel icpc -std=c++17 -O2 -S vector.cpp -o vector_intel.s .PHONY: clean clean: rm -f vector_gcc* vector_clang* vector_intel* buf.txt .PHONY: suites suites: sh VectorTestSuite.sh .PHONY: all all: clean default
33032e097ac15b04044d7093e8e2bf6dc36b9120
[ "Markdown", "Makefile", "C++", "Shell" ]
47
Shell
cterrazas2/battle-of-the-compilers
14620d09065f0eee3412ec8a308e4b5f08350d51
170c5ec0932d12afa2eda7a45f231e676fee0356
refs/heads/master
<file_sep> ## test data: XTest<- read.table("UCI HAR Dataset/test/X_test.txt") YTest<- read.table("UCI HAR Dataset/test/Y_test.txt") SubjectTest <-read.table("UCI HAR Dataset/test/subject_test.txt") ## train data: XTrain<- read.table("UCI HAR Dataset/train/X_train.txt") YTrain<- read.table("UCI HAR Dataset/train/Y_train.txt") SubjectTrain <-read.table("UCI HAR Dataset/train/subject_train.txt") ## features and activity features<-read.table("UCI HAR Dataset/features.txt") activity<-read.table("UCI HAR Dataset/activity_labels.txt") ##Part1 - merges train and test data in one dataset (full dataset at the end) X<-rbind(XTest, XTrain) Y<-rbind(YTest, YTrain) Subject<-rbind(SubjectTest, SubjectTrain) index<-grep("mean\\(\\)|std\\(\\)", features[,2]) ##getting features indeces which contain mean() and std() in their name length(index) X<-X[,index] ## getting only variables with mean/stdev Y[,1]<-activity[Y[,1],2] ## replacing numeric values with lookup value from activity.txt; won't reorder Y set names<-features[index,2] ## getting names for variables names(X)<-names ## updating colNames for new dataset names(Subject)<-"SubjectID" names(Y)<-"Activity" CleanedData<-cbind(Subject, Y, X) head(CleanedData[,c(1:4)]) ## first 5 columns CleanedData<-data.table(CleanedData) TidyData <- CleanedData[, lapply(.SD, mean), by = 'SubjectID,Activity'] ## features average by Subject and by activity write.table(TidyData, file = "Tidy.txt", row.names = FALSE)
b1f7829be5259e4a9e060e79714bfd30384ec096
[ "R" ]
1
R
kfous/Data_Science_Week4_Programming_Assignment
9beed7636b4e7e61ad6b143ce137464e6d17d1b7
307accaae8dd932dc6a7430e84c59a22e6e97dbf
refs/heads/master
<repo_name>jddeffendall/HelloPieChart<file_sep>/src/main/java/DataExtractor.java import com.google.gson.JsonArray; import com.google.gson.JsonElement; import com.google.gson.JsonObject; import com.google.gson.JsonParser; import org.javatuples.Pair; import java.util.ArrayList; import java.util.List; import java.util.Map; import java.util.Set; public class DataExtractor { public static List<Pair<String, Integer>> extractDataFromJSON(String rawJson) { JsonParser jsonParser = new JsonParser(); JsonElement rootElement = jsonParser.parse(rawJson); JsonObject rootObject = rootElement.getAsJsonObject(); // rootObject.entrySet() will give you a list of Key-Value for the data in JSON. // Basically, go over each entry in a for loop and add a Pair to a resulting list for each. List<Pair<String, Integer>> resultList = new ArrayList<>(); for (Map.Entry<String, JsonElement> e : rootObject.entrySet()) { resultList.add(new Pair<String, Integer>(e.getKey(), e.getValue().getAsInt())); } return resultList; } }
1c95b5edf755afec02d6686643353fda90baf99d
[ "Java" ]
1
Java
jddeffendall/HelloPieChart
b31298d557e09addb2d20d8e1c48b05cbf9e3ff6
2be657d583dcd0d62b9487bd45f677ba0a14ea60
refs/heads/master
<repo_name>cafeTechne/litiengine<file_sep>/src/de/gurkenlabs/litiengine/graphics/Spritesheet.java package de.gurkenlabs.litiengine.graphics; import java.awt.Point; import java.awt.image.BufferedImage; import java.awt.image.RasterFormatException; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.List; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.CopyOnWriteArrayList; import java.util.function.Predicate; import java.util.logging.Level; import java.util.logging.Logger; import java.util.stream.Collectors; import de.gurkenlabs.litiengine.Resources; import de.gurkenlabs.litiengine.SpritesheetInfo; import de.gurkenlabs.litiengine.environment.tilemap.ITileset; import de.gurkenlabs.litiengine.util.ImageProcessing; import de.gurkenlabs.litiengine.util.io.FileUtilities; public final class Spritesheet { private static final Map<String, int[]> customKeyFrameDurations = new ConcurrentHashMap<>(); private static final Map<String, Spritesheet> spritesheets = new ConcurrentHashMap<>(); private static final Logger log = Logger.getLogger(Spritesheet.class.getName()); private static final String SPRITE_INFO_COMMENT_CHAR = "#"; private final List<Integer> emptySprites = new CopyOnWriteArrayList<>(); private final int hashCode; private final BufferedImage image; private final String name; private final ImageFormat imageFormat; private BufferedImage[] sprites; private int columns; private int rows; private int spriteHeight; private int spriteWidth; private boolean loaded; private Spritesheet(final BufferedImage image, final String path, final int spriteWidth, final int spriteHeight) { checkImage(image, path); checkDimension(spriteHeight, "height"); checkDimension(spriteWidth, "width"); this.image = image; this.name = FileUtilities.getFileName(path); this.spriteWidth = spriteWidth; this.spriteHeight = spriteHeight; this.imageFormat = ImageFormat.get(FileUtilities.getExtension(path)); this.hashCode = this.getName().hashCode(); this.updateRowsAndCols(); this.sprites = new BufferedImage[this.getTotalNumberOfSprites()]; spritesheets.put(this.name.toLowerCase(), this); this.loaded = true; ImageCache.SPRITES.onCleared(cache -> { this.emptySprites.clear(); this.sprites = new BufferedImage[this.getTotalNumberOfSprites()]; }); } private Spritesheet(final ITileset tileset) { this(Resources.getImage(tileset.getImage().getAbsoluteSourcePath(), true), tileset.getImage().getSource(), tileset.getTileDimension().width, tileset.getTileDimension().height); } private Spritesheet(final String path, final int spriteWidth, final int spriteHeight) { this(Resources.getImage(path, true), path, spriteWidth, spriteHeight); } public static Collection<Spritesheet> getSpritesheets() { return spritesheets.values(); } /** * Finds Spritesheets that were previously loaded by any load method or by the * sprites.info file. * * @param path * The path of the spritesheet. * @return The {@link Spritesheet} assotiated with the path or null if not * loaded yet */ public static Spritesheet find(final String path) { if (path == null || path.isEmpty()) { return null; } final String name = FileUtilities.getFileName(path).toLowerCase(); return spritesheets.get(name); } public static Collection<Spritesheet> find(Predicate<Spritesheet> pred) { if (pred == null) { return new ArrayList<>(); } return spritesheets.values().stream().filter(pred).collect(Collectors.toList()); } public static int[] getCustomKeyFrameDurations(final String name) { return customKeyFrameDurations.getOrDefault(FileUtilities.getFileName(name).toLowerCase(), new int[0]); } public static int[] getCustomKeyFrameDurations(final Spritesheet sprite) { return getCustomKeyFrameDurations(sprite.getName()); } public static Spritesheet load(final BufferedImage image, final String path, final int spriteWidth, final int spriteHeight) { return new Spritesheet(image, path, spriteWidth, spriteHeight); } public static Spritesheet load(final ITileset tileset) { if (tileset == null || tileset.getImage() == null) { return null; } if (tileset.getImage().getAbsoluteSourcePath() == null) { return null; } return new Spritesheet(tileset); } public static Spritesheet load(final SpritesheetInfo info) { Spritesheet sprite = null; if (info.getImage() == null || info.getImage().isEmpty()) { log.log(Level.SEVERE, "Sprite {0} could not be loaded because no image is defined.", new Object[] { info.getName() }); return null; } else { sprite = Spritesheet.load(ImageProcessing.decodeToImage(info.getImage()), info.getName(), info.getWidth(), info.getHeight()); } if (info.getKeyframes() != null && info.getKeyframes().length > 0) { customKeyFrameDurations.put(sprite.getName().toLowerCase(), info.getKeyframes()); } return sprite; } /** * The sprite info file must be located under the * GameInfo#getSpritesDirectory() directory. * * @param spriteInfoFile * The path to the sprite info file. * @return A list of spritesheets that were loaded from the info file. */ public static List<Spritesheet> load(final String spriteInfoFile) { final ArrayList<Spritesheet> sprites = new ArrayList<>(); final InputStream fileStream = FileUtilities.getGameResource(spriteInfoFile); if (fileStream == null) { return sprites; } try (BufferedReader br = new BufferedReader(new InputStreamReader(fileStream))) { String line; while ((line = br.readLine()) != null) { if (line.isEmpty() || line.startsWith(SPRITE_INFO_COMMENT_CHAR)) { continue; } final String[] parts = line.split(";"); if (parts.length == 0) { continue; } final List<String> items = Arrays.asList(parts[0].split("\\s*,\\s*")); if (items.size() < 3) { continue; } getSpriteSheetFromSpriteInfoLine(FileUtilities.getParentDirPath(spriteInfoFile), sprites, items, parts); } log.log(Level.INFO, "{0} spritesheets loaded from {1}", new Object[] { sprites.size(), spriteInfoFile }); } catch (final IOException e) { log.log(Level.SEVERE, e.getMessage(), e); } return sprites; } public static Spritesheet load(final String path, final int spriteWidth, final int spriteHeight) { return new Spritesheet(path, spriteWidth, spriteHeight); } public static Spritesheet remove(final String path) { Spritesheet spriteToRemove = spritesheets.remove(path.toLowerCase()); if (spriteToRemove != null) { spriteToRemove.loaded = false; } customKeyFrameDurations.remove(path); return spriteToRemove; } public static void update(final SpritesheetInfo info) { if (info == null || info.getName() == null) { return; } final String spriteName = info.getName().toLowerCase(); Spritesheet spriteToRemove = spritesheets.remove(spriteName); if (spriteToRemove != null) { customKeyFrameDurations.remove(spriteName); if (info.getHeight() == 0 && info.getWidth() == 0) { spriteToRemove.loaded = false; return; } load(info); spriteToRemove.loaded = false; } } /** * Gets the sprites per row. * * @return the sprites per row */ public int getColumns() { return this.columns; } public BufferedImage getPreview(int dimension) { final BufferedImage img = this.getSprite(0); BufferedImage scaled = null; String cacheKey = "iconx" + dimension + this.getName(); if (ImageCache.SPRITES.containsKey(cacheKey)) { scaled = ImageCache.SPRITES.get(cacheKey); } else { if (img != null) { scaled = ImageProcessing.scaleImage(img, dimension, dimension, true); } else { scaled = ImageProcessing.getCompatibleImage(dimension, dimension); } ImageCache.SPRITES.put(cacheKey, scaled); } return scaled; } public BufferedImage getImage() { return this.image; } public ImageFormat getImageFormat() { return this.imageFormat; } /** * The unique name of this spritesheet. A spritesheet can always be identified * by this name within a game project. * * @return The name of the spritesheet. */ public String getName() { return this.name; } public int getRows() { return this.rows; } public BufferedImage getSprite(final int index) { return this.getSprite(index, 0, 0); } public BufferedImage getSprite(final int index, final int margin, final int spacing) { if (this.emptySprites.contains(index)) { return null; } if (this.sprites[index] != null) { return this.sprites[index]; } if (this.getImage() == null) { log.warning("no image defined for sprite '" + this.getName() + "'"); return null; } final Point position = this.getLocation(index, margin, spacing); try { final BufferedImage sprite = this.getImage().getSubimage(position.x, position.y, this.spriteWidth, this.spriteHeight); if (ImageProcessing.isEmpty(sprite)) { emptySprites.add(index); return null; } this.sprites[index] = sprite; return sprite; } catch (final RasterFormatException rfe) { log.warning("could not read sprite of size [" + this.spriteWidth + "x" + this.spriteHeight + " at position [" + position.x + "," + position.y + "] from sprite'" + this.getName() + "'"); return null; } } /** * Gets the sprite height. * * @return the sprite height */ public int getSpriteHeight() { return this.spriteHeight; } /** * Gets the sprite width. * * @return the sprite width */ public int getSpriteWidth() { return this.spriteWidth; } /** * Gets the total sprites. * * @return the total sprites */ public int getTotalNumberOfSprites() { return this.getRows() * this.getColumns(); } public boolean isLoaded() { return this.loaded; } @Override public int hashCode() { return this.hashCode; } @Override public boolean equals(Object object) { if (object instanceof Spritesheet) { return object.hashCode() == this.hashCode(); } return super.equals(object); } public void setSpriteHeight(final int spriteHeight) { checkDimension(spriteHeight, "height"); this.spriteHeight = spriteHeight; this.updateRowsAndCols(); } public void setSpriteWidth(final int spriteWidth) { checkDimension(spriteWidth, "width"); this.spriteWidth = spriteWidth; this.updateRowsAndCols(); } private static void getSpriteSheetFromSpriteInfoLine(String baseDirectory, ArrayList<Spritesheet> sprites, List<String> items, String[] parts) { try { final String name = baseDirectory + items.get(0); final int width = Integer.parseInt(items.get(1)); final int height = Integer.parseInt(items.get(2)); final Spritesheet sprite = load(name, width, height); sprites.add(sprite); if (parts.length >= 2) { final List<String> keyFrameStrings = Arrays.asList(parts[1].split("\\s*,\\s*")); if (!keyFrameStrings.isEmpty()) { final int[] keyFrames = new int[keyFrameStrings.size()]; for (int i = 0; i < keyFrameStrings.size(); i++) { final int keyFrame = Integer.parseInt(keyFrameStrings.get(i)); keyFrames[i] = keyFrame; } customKeyFrameDurations.put(sprite.getName().toLowerCase(), keyFrames); } } } catch (final NumberFormatException e) { log.log(Level.SEVERE, e.getMessage(), e); } } private static void checkDimension(int spriteHeight, String dimension) { if (spriteHeight <= 0) { throw new IllegalArgumentException("Invalid sprite dimensions! Sprite " + dimension + " must to be greater than 0."); } } private static void checkImage(BufferedImage image, String name) { if (image == null) { throw new IllegalArgumentException("The image for the spritesheet '" + name + "' is null!"); } if (image.getWidth() <= 0 || image.getHeight() <= 0) { String error = String.format("Invalid image dimensions for spritesheet %s! Width and height must be greater than 0 (actual dimensions: %dx%d).", name, image.getWidth(), image.getHeight()); throw new IllegalArgumentException(error); } } private Point getLocation(final int index, final int margin, final int spacing) { final int row = index / this.getColumns(); final int column = index % this.getColumns(); return new Point(margin + column * (this.getSpriteWidth() + spacing), margin + row * (this.getSpriteHeight() + spacing)); } private void updateRowsAndCols() { final BufferedImage sprite = this.getImage(); this.columns = sprite.getWidth() / this.spriteWidth; this.rows = sprite.getHeight() / this.spriteHeight; } }<file_sep>/src/de/gurkenlabs/litiengine/environment/EmitterMapObjectLoader.java package de.gurkenlabs.litiengine.environment; import java.util.ArrayList; import java.util.Collection; import java.util.List; import de.gurkenlabs.litiengine.Align; import de.gurkenlabs.litiengine.Valign; import de.gurkenlabs.litiengine.entities.IEntity; import de.gurkenlabs.litiengine.environment.tilemap.IMapObject; import de.gurkenlabs.litiengine.environment.tilemap.MapObjectProperty; import de.gurkenlabs.litiengine.environment.tilemap.MapObjectType; import de.gurkenlabs.litiengine.environment.tilemap.xml.MapObject; import de.gurkenlabs.litiengine.graphics.emitters.Emitter; import de.gurkenlabs.litiengine.graphics.emitters.particles.ParticleType; import de.gurkenlabs.litiengine.graphics.emitters.xml.CustomEmitter; import de.gurkenlabs.litiengine.graphics.emitters.xml.EmitterData; import de.gurkenlabs.litiengine.graphics.emitters.xml.ParticleColor; import de.gurkenlabs.litiengine.graphics.emitters.xml.ParticleParameter; import de.gurkenlabs.litiengine.physics.CollisionType; import de.gurkenlabs.litiengine.util.ArrayUtilities; public class EmitterMapObjectLoader extends MapObjectLoader { protected EmitterMapObjectLoader() { super(MapObjectType.EMITTER); } public static List<ParticleColor> getColors(IMapObject emitter) { List<ParticleColor> particleColors = new ArrayList<>(); String colorsString = emitter.getStringProperty(MapObjectProperty.Emitter.COLORS, ""); if (colorsString != null && !colorsString.isEmpty()) { String[] colors = colorsString.split(","); for (String color : colors) { ParticleColor particleColor = ParticleColor.decode(color); if (particleColor != null) { particleColors.add(particleColor); } } } return particleColors; } @Override public Collection<IEntity> load(IEnvironment environment, IMapObject mapObject) { if (MapObjectType.get(mapObject.getType()) != MapObjectType.EMITTER) { throw new IllegalArgumentException("Cannot load a mapobject of the type " + mapObject.getType() + " with a loader of the type " + EmitterMapObjectLoader.class); } EmitterData data = createEmitterData(mapObject); CustomEmitter emitter = this.createCustomEmitter(data); loadDefaultProperties(emitter, mapObject); Collection<IEntity> entities = new ArrayList<>(); entities.add(emitter); return entities; } protected CustomEmitter createCustomEmitter(EmitterData data) { return new CustomEmitter(data); } public static EmitterData createEmitterData(IMapObject mapObject) { EmitterData data = new EmitterData(); // emitter data.setWidth(mapObject.getWidth()); data.setHeight(mapObject.getHeight()); data.setSpawnRate(mapObject.getIntProperty(MapObjectProperty.Emitter.SPAWNRATE)); data.setSpawnAmount(mapObject.getIntProperty(MapObjectProperty.Emitter.SPAWNAMOUNT)); data.setUpdateRate(mapObject.getIntProperty(MapObjectProperty.Emitter.UPDATERATE, Emitter.DEFAULT_UPDATERATE)); data.setEmitterTTL(mapObject.getIntProperty(MapObjectProperty.Emitter.TIMETOLIVE)); data.setMaxParticles(mapObject.getIntProperty(MapObjectProperty.Emitter.MAXPARTICLES)); data.setParticleType(mapObject.getEnumProperty(MapObjectProperty.Emitter.PARTICLETYPE, ParticleType.class, ParticleType.RECTANGLE)); data.setColorDeviation(mapObject.getFloatProperty(MapObjectProperty.Emitter.COLORDEVIATION)); data.setAlphaDeviation(mapObject.getFloatProperty(MapObjectProperty.Emitter.ALPHADEVIATION)); data.setOriginAlign(mapObject.getEnumProperty(MapObjectProperty.Emitter.ORIGIN_ALIGN, Align.class, Align.LEFT)); data.setOriginValign(mapObject.getEnumProperty(MapObjectProperty.Emitter.ORIGIN_VALIGN, Valign.class, Valign.TOP)); data.setColors(getColors(mapObject)); data.setColorProbabilities(mapObject.getStringProperty(MapObjectProperty.Emitter.COLORPROBABILITIES, "")); // particle data.setParticleX(new ParticleParameter(mapObject.getFloatProperty(MapObjectProperty.Particle.MINX), mapObject.getFloatProperty(MapObjectProperty.Particle.MAXX, ParticleParameter.MAX_VALUE_UNDEFINED))); data.setParticleY(new ParticleParameter(mapObject.getFloatProperty(MapObjectProperty.Particle.MINY), mapObject.getFloatProperty(MapObjectProperty.Particle.MAXY, ParticleParameter.MAX_VALUE_UNDEFINED))); data.setParticleWidth(new ParticleParameter(mapObject.getFloatProperty(MapObjectProperty.Particle.MINSTARTWIDTH), mapObject.getFloatProperty(MapObjectProperty.Particle.MAXSTARTWIDTH, ParticleParameter.MAX_VALUE_UNDEFINED))); data.setParticleHeight(new ParticleParameter(mapObject.getFloatProperty(MapObjectProperty.Particle.MINSTARTHEIGHT), mapObject.getFloatProperty(MapObjectProperty.Particle.MAXSTARTHEIGHT, ParticleParameter.MAX_VALUE_UNDEFINED))); data.setDeltaX(new ParticleParameter(mapObject.getFloatProperty(MapObjectProperty.Particle.MINDELTAX), mapObject.getFloatProperty(MapObjectProperty.Particle.MAXDELTAX, ParticleParameter.MAX_VALUE_UNDEFINED))); data.setDeltaY(new ParticleParameter(mapObject.getFloatProperty(MapObjectProperty.Particle.MINDELTAY), mapObject.getFloatProperty(MapObjectProperty.Particle.MAXDELTAY, ParticleParameter.MAX_VALUE_UNDEFINED))); data.setGravityX(new ParticleParameter(mapObject.getFloatProperty(MapObjectProperty.Particle.MINGRAVITYX), mapObject.getFloatProperty(MapObjectProperty.Particle.MAXGRAVITYX, ParticleParameter.MAX_VALUE_UNDEFINED))); data.setGravityY(new ParticleParameter(mapObject.getFloatProperty(MapObjectProperty.Particle.MINGRAVITYY), mapObject.getFloatProperty(MapObjectProperty.Particle.MAXGRAVITYY, ParticleParameter.MAX_VALUE_UNDEFINED))); data.setDeltaWidth(new ParticleParameter(mapObject.getFloatProperty(MapObjectProperty.Particle.MINDELTAWIDTH), mapObject.getFloatProperty(MapObjectProperty.Particle.MAXDELTAWIDTH, ParticleParameter.MAX_VALUE_UNDEFINED))); data.setDeltaHeight(new ParticleParameter(mapObject.getFloatProperty(MapObjectProperty.Particle.MINDELTAHEIGHT), mapObject.getFloatProperty(MapObjectProperty.Particle.MAXDELTAHEIGHT, ParticleParameter.MAX_VALUE_UNDEFINED))); data.setParticleMinTTL(mapObject.getIntProperty(MapObjectProperty.Particle.MINTTL)); data.setParticleMaxTTL(mapObject.getIntProperty(MapObjectProperty.Particle.MAXTTL)); data.setCollisionType(mapObject.getEnumProperty(MapObjectProperty.Particle.COLLISIONTYPE, CollisionType.class, CollisionType.NONE)); data.setParticleText(mapObject.getStringProperty(MapObjectProperty.Particle.TEXT)); data.setSpritesheet(mapObject.getStringProperty(MapObjectProperty.Particle.SPRITE)); data.setAnimateSprite(mapObject.getBoolProperty(MapObjectProperty.Particle.ANIMATESPRITE)); data.setFade(mapObject.getBoolProperty(MapObjectProperty.Particle.FADE)); return data; } public static IMapObject createMapObject(EmitterData emitterData) { MapObject newMapObject = new MapObject(); newMapObject.setType(MapObjectType.EMITTER.toString()); // emitter newMapObject.setWidth(emitterData.getWidth()); newMapObject.setHeight(emitterData.getHeight()); newMapObject.setProperty(MapObjectProperty.Emitter.SPAWNRATE, emitterData.getSpawnRate()); newMapObject.setProperty(MapObjectProperty.Emitter.SPAWNAMOUNT, emitterData.getSpawnAmount()); newMapObject.setProperty(MapObjectProperty.Emitter.UPDATERATE, emitterData.getUpdateRate()); newMapObject.setProperty(MapObjectProperty.Emitter.TIMETOLIVE, emitterData.getEmitterTTL()); newMapObject.setProperty(MapObjectProperty.Emitter.MAXPARTICLES, emitterData.getMaxParticles()); newMapObject.setProperty(MapObjectProperty.Emitter.PARTICLETYPE, emitterData.getParticleType()); newMapObject.setProperty(MapObjectProperty.Emitter.COLORDEVIATION, emitterData.getColorDeviation()); newMapObject.setProperty(MapObjectProperty.Emitter.ALPHADEVIATION, emitterData.getAlphaDeviation()); newMapObject.setProperty(MapObjectProperty.Emitter.ORIGIN_ALIGN, emitterData.getOriginAlign()); newMapObject.setProperty(MapObjectProperty.Emitter.ORIGIN_VALIGN, emitterData.getOriginValign()); String commaSeperatedColors = ArrayUtilities.getCommaSeparatedString(emitterData.getColors()); newMapObject.setProperty(MapObjectProperty.Emitter.COLORS, commaSeperatedColors); newMapObject.setProperty(MapObjectProperty.Emitter.PARTICLETYPE, ArrayUtilities.getCommaSeparatedString(emitterData.getColorProbabilities())); newMapObject.setProperty(MapObjectProperty.Particle.MINX, emitterData.getParticleX().getMinValue()); newMapObject.setProperty(MapObjectProperty.Particle.MINY, emitterData.getParticleY().getMinValue()); newMapObject.setProperty(MapObjectProperty.Particle.MINSTARTWIDTH, emitterData.getParticleWidth().getMinValue()); newMapObject.setProperty(MapObjectProperty.Particle.MINSTARTHEIGHT, emitterData.getParticleHeight().getMinValue()); newMapObject.setProperty(MapObjectProperty.Particle.MINDELTAX, emitterData.getDeltaX().getMinValue()); newMapObject.setProperty(MapObjectProperty.Particle.MINDELTAY, emitterData.getDeltaY().getMinValue()); newMapObject.setProperty(MapObjectProperty.Particle.MINGRAVITYX, emitterData.getGravityX().getMinValue()); newMapObject.setProperty(MapObjectProperty.Particle.MINGRAVITYY, emitterData.getGravityY().getMinValue()); newMapObject.setProperty(MapObjectProperty.Particle.MINDELTAWIDTH, emitterData.getDeltaWidth().getMinValue()); newMapObject.setProperty(MapObjectProperty.Particle.MINDELTAHEIGHT, emitterData.getDeltaHeight().getMinValue()); newMapObject.setProperty(MapObjectProperty.Particle.MAXX, emitterData.getParticleX().getMaxValue()); newMapObject.setProperty(MapObjectProperty.Particle.MAXY, emitterData.getParticleY().getMaxValue()); newMapObject.setProperty(MapObjectProperty.Particle.MAXSTARTWIDTH, emitterData.getParticleWidth().getMaxValue()); newMapObject.setProperty(MapObjectProperty.Particle.MAXSTARTHEIGHT, emitterData.getParticleHeight().getMaxValue()); newMapObject.setProperty(MapObjectProperty.Particle.MAXDELTAX, emitterData.getDeltaX().getMaxValue()); newMapObject.setProperty(MapObjectProperty.Particle.MAXDELTAY, emitterData.getDeltaY().getMaxValue()); newMapObject.setProperty(MapObjectProperty.Particle.MAXGRAVITYX, emitterData.getGravityX().getMaxValue()); newMapObject.setProperty(MapObjectProperty.Particle.MAXGRAVITYY, emitterData.getGravityY().getMaxValue()); newMapObject.setProperty(MapObjectProperty.Particle.MAXDELTAWIDTH, emitterData.getDeltaWidth().getMaxValue()); newMapObject.setProperty(MapObjectProperty.Particle.MAXDELTAHEIGHT, emitterData.getDeltaHeight().getMaxValue()); // particle newMapObject.setProperty(MapObjectProperty.Particle.MINTTL, emitterData.getParticleMinTTL()); newMapObject.setProperty(MapObjectProperty.Particle.MAXTTL, emitterData.getParticleMaxTTL()); newMapObject.setProperty(MapObjectProperty.Particle.COLLISIONTYPE, emitterData.getCollisionType()); newMapObject.setProperty(MapObjectProperty.Particle.TEXT, emitterData.getParticleText()); newMapObject.setProperty(MapObjectProperty.Particle.SPRITE, emitterData.getSpritesheet()); newMapObject.setProperty(MapObjectProperty.Particle.ANIMATESPRITE, emitterData.isAnimateSprite()); newMapObject.setProperty(MapObjectProperty.Particle.FADE, emitterData.isFading()); return newMapObject; } }<file_sep>/utiliti/src/de/gurkenlabs/utiliti/Icons.java package de.gurkenlabs.utiliti; import javax.swing.Icon; import javax.swing.ImageIcon; import de.gurkenlabs.litiengine.Resources; public final class Icons { public static final Icon ADD = new ImageIcon(Resources.getImage("addx12.png")); public static final Icon ASSET = new ImageIcon(Resources.getImage("asset.png")); public static final Icon BLUEPRINT = new ImageIcon(Resources.getImage("blueprint.png")); public static final Icon COLLAPSE = new ImageIcon(Resources.getImage("collapse.png")); public static final Icon COLLISIONBOX = new ImageIcon(Resources.getImage("collisionbox.png")); public static final Icon COLOR = new ImageIcon(Resources.getImage("button-color.png")); public static final Icon COLORX16 = new ImageIcon(Resources.getImage("button-colorx16.png")); public static final Icon CONSOLE = new ImageIcon(Resources.getImage("console.png")); public static final Icon COPY = new ImageIcon(Resources.getImage("button-copy.png")); public static final Icon COPYX16 = new ImageIcon(Resources.getImage("button-copyx16.png")); public static final Icon CREATE = new ImageIcon(Resources.getImage("button-create.png")); public static final Icon CREATURE = new ImageIcon(Resources.getImage("creature.png")); public static final Icon CUBE = new ImageIcon(Resources.getImage("object_cube-10x10.png")); public static final Icon CUT = new ImageIcon(Resources.getImage("button-cut.png")); public static final Icon CUTX16 = new ImageIcon(Resources.getImage("button-cutx16.png")); public static final Icon DEFAULT_NODE = new ImageIcon(Resources.getImage("bullet.png")); public static final Icon DELETE = new ImageIcon(Resources.getImage("button-deletex12.png")); public static final Icon DELETEX16 = new ImageIcon(Resources.getImage("button-deletex16.png")); public static final Icon DELETE_X7 = new ImageIcon(Resources.getImage("button-deletex7.png")); public static final Icon DELETE_X7_DISABLED = new ImageIcon(Resources.getImage("button-delete-disabledx7.png")); public static final Icon DOC_BLUEPRINT = new ImageIcon(Resources.getImage("document-blueprint.png")); public static final Icon DOC_EMITTER = new ImageIcon(Resources.getImage("document-emitter.png")); public static final Icon DOC_TILESET = new ImageIcon(Resources.getImage("document-tsx.png")); public static final Icon EDIT = new ImageIcon(Resources.getImage("button-edit.png")); public static final Icon EMITTER = new ImageIcon(Resources.getImage("emitter.png")); public static final Icon EXPORT = new ImageIcon(Resources.getImage("export.png")); public static final Icon FOLDER = new ImageIcon(Resources.getImage("object_cube-10x10.png")); public static final Icon HIDEOTHER = new ImageIcon(Resources.getImage("button-hideother.png")); public static final Icon LAYER = new ImageIcon(Resources.getImage("layer.png")); public static final Icon LIFT = new ImageIcon(Resources.getImage("button-lift.png")); public static final Icon LIGHT = new ImageIcon(Resources.getImage("bulb.png")); public static final Icon LOAD = new ImageIcon(Resources.getImage("button-load.png")); public static final Icon LOWER = new ImageIcon(Resources.getImage("button-lower.png")); public static final Icon MAP_DELETE = new ImageIcon(Resources.getImage("button-deletex16.png")); public static final Icon MAP_EXPORT = new ImageIcon(Resources.getImage("button-map-exportx16.png")); public static final Icon MAPAREA = new ImageIcon(Resources.getImage("maparea.png")); public static final Icon MISC = new ImageIcon(Resources.getImage("misc.png")); public static final Icon MOVE = new ImageIcon(Resources.getImage("button-move.png")); public static final Icon PAUSE = new ImageIcon(Resources.getImage("button-pause.png")); public static final Icon PASTE = new ImageIcon(Resources.getImage("button-pastex16.png")); public static final Icon PASTEX16 = new ImageIcon(Resources.getImage("button-paste.png")); public static final Icon PENCIL = new ImageIcon(Resources.getImage("pencil.png")); public static final Icon PLACEOBJECT = new ImageIcon(Resources.getImage("button-placeobject.png")); public static final Icon PLAY = new ImageIcon(Resources.getImage("button-play.png")); public static final Icon PROP = new ImageIcon(Resources.getImage("entity.png")); public static final Icon REDO = new ImageIcon(Resources.getImage("button-redo.png")); public static final Icon RENAMEX16 = new ImageIcon(Resources.getImage("button-renamex16.png")); public static final Icon SAVE = new ImageIcon(Resources.getImage("button-save.png")); public static final Icon SEARCH = new ImageIcon(Resources.getImage("search.png")); public static final Icon SHADOWBOX = new ImageIcon(Resources.getImage("shadowbox.png")); public static final Icon SPAWNPOINT = new ImageIcon(Resources.getImage("spawnpoint.png")); public static final Icon SPRITESHEET = new ImageIcon(Resources.getImage("spritesheet.png")); public static final Icon TILESET = new ImageIcon(Resources.getImage("tileset.png")); public static final Icon TRIGGER = new ImageIcon(Resources.getImage("trigger.png")); public static final Icon UNDO = new ImageIcon(Resources.getImage("button-undo.png")); private Icons() { } } <file_sep>/src/de/gurkenlabs/litiengine/environment/IEntitySpawner.java package de.gurkenlabs.litiengine.environment; import java.util.List; import de.gurkenlabs.litiengine.IUpdateable; import de.gurkenlabs.litiengine.entities.IEntity; import de.gurkenlabs.litiengine.entities.Spawnpoint; public interface IEntitySpawner<T extends IEntity> extends IUpdateable { public enum SpawnMode { /** * Spawns the amount of mobs for all the spawnpoints available. */ ALLSPAWNPOINTS, /** * Spawns the amount of mobs on one random spawnpoint. */ ONERANDOMSPAWNPOINT, /** * Spawns the amount of mobs, distributed to random spawnpoints. */ RANDOMSPAWNPOINTS } public T createNew(); public int getAmount(); public int getInterval(); public int getSpawnDelay(); public SpawnMode getSpawnMode(); public List<Spawnpoint> getSpawnPoints(); public void setAmount(int amount); public void setInterval(int interval); public void setSpawnDelay(int delay); public void setSpawnMode(SpawnMode mode); }
7996c9514310fae96ba45b8b078b5e53bcb9b0fb
[ "Java" ]
4
Java
cafeTechne/litiengine
60837545d4fd6d569c42495d48ed3c91bef14f26
72ada3181298e02a204c546deb08de5f69d92947
refs/heads/master
<repo_name>zwily/redmine_zendesk<file_sep>/init.rb # Redmine sample plugin require 'redmine' require File.dirname(__FILE__) + '/lib/zendesk' RAILS_DEFAULT_LOGGER.info 'Zendesk integration' Redmine::Plugin.register :zendesk_plugin do name 'Zendesk plugin' author '<NAME>' description 'Updates associated Zendesk tickets when Redmine issues are updated' version '0.0.1' settings :default => { 'zendesk_url' => 'http://support.zendesk.com/', 'zendesk_username' => 'zendeskuser', 'zendesk_password' => '<PASSWORD>', 'field' => nil, 'redmine_url' => 'https://your.redmine.url/' }, :partial => 'settings/zendesk_plugin_settings' end <file_sep>/lib/zendesk.rb require 'redmine' module Zendesk module Rest class Ticket < ActiveResource::Base end end end class ZendeskListener < Redmine::Hook::Listener # We need this helper for rendering the detail stuff, and the accessors to fake it out include ActionView::Helpers::IssuesHelper attr_accessor :controller, :request def controller_issues_edit_after_save(context) puts context.inspect self.controller = context[:controller] self.request = context[:request] custom_field = CustomField.find(Setting.plugin_zendesk_plugin['field']) return unless custom_field journal = context[:journal] return unless journal issue = context[:issue] return unless issue && issue.custom_value_for(custom_field) zendesk_id_value = issue.custom_value_for(custom_field) return unless zendesk_id_value zendesk_ids = zendesk_id_value.to_s.split(',').map(&:strip) return if zendesk_ids.empty? Zendesk::Rest::Ticket.site = Setting.plugin_zendesk_plugin['zendesk_url'] Zendesk::Rest::Ticket.user = Setting.plugin_zendesk_plugin['zendesk_username'] Zendesk::Rest::Ticket.password = Setting.plugin_zendesk_plugin['zendesk_password'] zendesk_ids.each do |zendesk_id| issue_url = "#{Setting.plugin_zendesk_plugin['redmine_url']}/issues/#{issue.id}" comment = "Redmine ticket #{issue_url} was updated by #{journal.user.name}:\n\n" for detail in journal.details comment << show_detail(detail, true) rescue "" comment << "\n" end if journal.notes && !journal.notes.empty? comment << journal.notes end ticket = Zendesk::Rest::Ticket.new(:id => zendesk_id) ticket.comment = { :is_public => false, :value => comment } ticket.save rescue nil end end end
53e16e88c3153e1a16e1f5348ac11fc30835fc1e
[ "Ruby" ]
2
Ruby
zwily/redmine_zendesk
37aeafe5445bd85ef61a059e6ef45b6a1c571100
96b9693f1571a7fc5fe05fae3726e4d8a279d7c8
refs/heads/master
<repo_name>DimitraMitsi/EmployeeManagement<file_sep>/src/EmployeeManagement.java public class EmployeeManagement { public static void takeCareOfEmployee(int num) { switch (num) { case 1: AddEmployee.add(); break; case 2: DeleteEmployee.deleteEmployee(); break; case 3: UpdateEmployee.updateTool(); break; case 0: { MainEMS.runMain(); } } } }<file_sep>/src/DeleteEmployee.java public class DeleteEmployee { public static void deleteEmployee() { String answer; do { System.out.println("Please provide the employee's id number!"); int idNumber = UserInterface.readNumber(); boolean foundIt = false; Employee bardia = null; for (Employee e : MainEMS.employee1) { if (e.getId() == (idNumber)) { foundIt = true; System.out.println("Are you sure you want to delete? (Y/N)"); answer = UserInterface.readText(); if (answer.equalsIgnoreCase("Y")) { bardia = e; System.out.println("Employee deleted!"); System.out.println(); } } } MainEMS.employee1.remove(bardia); if(foundIt == false){ System.out.println("ID " + idNumber +" not found."); } System.out.println("Do you want to delete another employee? (Y/N)"); answer = UserInterface.readText(); } while (answer.equalsIgnoreCase("y")); int num = UserInterface.employeeManagementMenu(); EmployeeManagement.takeCareOfEmployee(num); } } <file_sep>/src/Programmer.java public class Programmer extends Employee { public Programmer(String firstName, String lastName, String dateOfBirth, int salary, int gender, boolean companyPhone) { super(firstName, lastName, dateOfBirth, salary, gender, companyPhone); } @Override public int calculateBonus(int salary) { int bonus = (int)(salary*0.1); return bonus; } } <file_sep>/src/MainEMS.java import java.util.ArrayList; import java.util.Scanner; public class MainEMS { static ArrayList<Employee> employee1 = new ArrayList<>(); public static void main(String[] args) { /* adding some employees */ employee1.add(new Programmer("Tom", "Boll", "850328", 30000, 2, false)); employee1.add(new Technician("Paul", "Pot", "790728", 200, 3, true)); employee1.add(new Programmer("Pia", "Lim", "900428", 35000, 1, false)); employee1.add(new Administrator("Ann", "Kan", "790328", 40000, 1, true)); runMain(); System.out.println("Goodbye!"); } public static void runMain(){ boolean loop = true; while (loop) { int choice = UserInterface.mainMenu(); switch (choice) { case 1: int num = UserInterface.employeeManagementMenu(); EmployeeManagement.takeCareOfEmployee(num); break; case 2: num = UserInterface.employeeStatisticsMenu(); EmployeeStatistics.employeeStats(num); break; case 0: loop = false; } } } }
ec8ed1b315634a5d4e6f26e5f4cd057676ec320a
[ "Java" ]
4
Java
DimitraMitsi/EmployeeManagement
4618ccffe63f2d76c174fb014831d6cc1f6a671b
390b9c7f5da73630ecb69dfb79a392463d791be1
refs/heads/master
<repo_name>sinyubin/react-homework<file_sep>/src/elements/Input.js import React from "react"; import styled from "styled-components"; import { Text, Grid } from "./index"; const Input = (props) => { const { label, placeholder, _onChange, type, multiLine, value, is_submit, onsubmit, } = props; if (multiLine) { return ( <Grid> {label && <Text margin="0px">{label}</Text>} <ElTextarea row={10} value={value} placeholder={placeholder} onChange={_onChange} ></ElTextarea> </Grid> ); } };
6fa1876320073c3ed300100db251db8e8d3aa7c4
[ "JavaScript" ]
1
JavaScript
sinyubin/react-homework
6a880e61a726a4db6e64c0d0aa7bf4decaeb15bb
f2c8da84245ec0ebc0268fd9d176572df0cfe9c2
refs/heads/master
<file_sep>using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Parcial2Proxy.Parcial_WS; namespace Parcial2Proxy { public class Proxy { private static WSParcial2 instance = null; private Proxy() { instance = new Parcial_WS.WSParcial2(); } public static WSParcial2 getService() { if (instance == null) { instance = new Parcial_WS.WSParcial2(); } return instance; } } } <file_sep>using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using Parcial2Proxy; using Parcial2Proxy.Parcial_WS; namespace Parcial2PWD { public partial class Default : System.Web.UI.Page { WSParcial2 Service = Proxy.getService(); protected void Page_Load(object sender, EventArgs e) { txtFecha.Text = DateTime.Now.ToShortDateString(); } protected void btnGuardar_Click(object sender, EventArgs e) { test myTest = new test(); myTest.ENTERO = int.Parse(txtEntero.Text); myTest.CADENA = txtCadena.Text; myTest.FECHA = txtFecha.Text; Service.crearTest(myTest); } } }
1361a135a5af3aa59d97b089ff87af6092cb0ab0
[ "C#" ]
2
C#
joseplaza98/PARCIAL2PWD
b34f90177668c542380dcbef9ebcdb75740e3392
36e5363498415d652ffc7ee7149d7b7838f0fb64
refs/heads/master
<file_sep>import {Component, OnInit} from '@angular/core'; import {NewsFeedService} from './news-feed.service'; @Component({ selector: 'app-news-feed', templateUrl: './news-feed.component.html', styleUrls: ['./news-feed.component.css'] }) export class NewsFeedComponent implements OnInit { NewsFeed: any; temp: Array<any> = []; img: Array<any> = []; imgArraylenght: number = 0; numbers: number; constructor(private newsfeed: NewsFeedService) { } ngOnInit() { this.newsfeed.getNewsFeed().subscribe( (newsfeed)=> { this.NewsFeed = newsfeed; console.log(this.NewsFeed); for (var x = 0; x < newsfeed.length; x++) { this.temp.push(newsfeed[x][1]); this.img.push(this.temp[x].split(",")); if (this.imgArraylenght < this.img[x].length) this.imgArraylenght = this.img[x].length; } this.numbers = Array(this.imgArraylenght).fill().map((x, i)=>i); console.log(this.img); } , (error)=> { console.log("Can not load Donuts : " + error); } ); } } <file_sep>import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { LandingPageComponent } from './landing-page.component'; import {MainRouting} from '../app.routes'; @NgModule({ imports: [ CommonModule, MainRouting ], declarations: [LandingPageComponent], exports:[LandingPageComponent] }) export class LandingPageModule { } <file_sep>/** * Created by ObadaDarwish on 13/12/2016. */ import {ModuleWithProviders} from '@angular/core'; import {Routes, RouterModule} from '@angular/router'; import {LandingPageComponent} from './landing-page/landing-page.component'; import {NewsFeedComponent} from './news-feed/news-feed.component'; const MainRoute: Routes = [ {path: '', redirectTo: 'Home', pathMatch: 'full'}, {path: 'Home', component:LandingPageComponent }, {path: 'NewsFeed', component:NewsFeedComponent} ]; export const MainRouting: ModuleWithProviders = RouterModule.forRoot(MainRoute); <file_sep>import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { NewsFeedComponent } from './news-feed.component'; import {MainRouting} from '../app.routes'; import {NewsFeedService}from './news-feed.service'; import {SafePipe} from '../pipes/safeUrl'; @NgModule({ imports: [ CommonModule, MainRouting ], declarations: [NewsFeedComponent,SafePipe], exports:[NewsFeedComponent], providers:[NewsFeedService] }) export class NewsFeedModule { }
ef498506f02cbf2f9000b782177b56c0e0f75db6
[ "TypeScript" ]
4
TypeScript
ObadaDarwish/Hamoudafarm
2419eedb3c78434b4ad3cd0f546774b35aa2803c
8981fc499d54e7fee19c39c78e71d5d927207461
refs/heads/master
<file_sep>import React from 'react'; import { Link } from 'gatsby'; import { FaTelegramPlane } from 'react-icons/fa'; import { FaWhatsapp } from 'react-icons/fa'; import { FaInstagram } from 'react-icons/fa'; import { FaHeart } from 'react-icons/fa'; const currentYear = new Date().getFullYear(); const Footer = class extends React.Component { render() { return ( <footer className='ftco-footer ftco-section img'> <div className='overlay'></div> <div className='container'> <div className='row mb-5'> <div className='col-lg-3 col-md-6 mb-5 mb-md-5 '> <div className='ftco-footer-widget mb-4'> <h1 className='logo'><NAME></h1> </div> </div> <div className='col-lg col-md-6 mb-5 mb-md-5 '> <div className='ftco-footer-widget mb-4'> <h2 className='location'> Нижняя Красносельская улица, 4, Москва </h2> </div> </div> <div className='col-lg-3 col-md-6 mb-5 mb-md-5'> <div className='ftco-footer-widget mb-4'> <ul className='ftco-footer-social list-unstyled float-md-left float-lft'> <li className=''> <a href='https://t.me/andrei_astakhov_' target='_blank'> <span> <FaTelegramPlane /> </span> </a> </li> <li className=''> <a href='https://wa.me/79654177613' target='_blank'> <span> <FaWhatsapp /> </span> </a> </li> <li className=''> <a href='https://instagram.com/andrei_astakhov_/' target='_blank' > <span> <FaInstagram /> </span> </a> </li> </ul> </div> </div> </div> <div className='row'> <div className='col-md-12 text-center'> <nav className='nav justify-content-center mb-3'> <Link to='/' className='nav-link'> Главная </Link> <Link className='nav-link' to='/about'> Обо мне </Link> <Link className='nav-link' to='/products'> Услуги </Link> <Link className='nav-link' to='/contact/schedule'> Расписание </Link> <Link className='nav-link' to='/blog'> Статьи </Link> <Link className='nav-link' to='/contact'> Контакты </Link> <a className='nav-link' href='/admin/' target='_blank' rel='noopener noreferrer' > Кабинет </a> </nav> </div> </div> <div className='row'> <div className='col-md-12 text-center'> <p> Copyright &copy; {currentYear} All rights reserved | This website is made with {''} <i style={{ position: 'relative', bottom: '2px', }} > <FaHeart /> </i>{' '} by {''} <a href='https://vitaly.im' target='_blank'> Vitaly </a> </p> </div> </div> </div> </footer> ); } }; export default Footer; <file_sep>import React from 'react'; import { Link } from 'gatsby'; import { Navbar as BsNavbar, Nav, Container } from 'react-bootstrap'; import { FaBars } from 'react-icons/fa'; class Navbar extends React.Component { constructor() { super(); this.state = { classNav: '', }; this.handleScroll = this.handleScroll.bind(this); } componentDidMount() { window.addEventListener('scroll', this.handleScroll); } componentWillUnmount() { window.removeEventListener('scroll', this.handleScroll); } handleScroll() { if (window.scrollY > 200) { this.setState({ classNav: ' scrolled awake' }); } else { this.setState({ classNav: '' }); } } render() { return ( <div> <BsNavbar expand='lg' onScroll={this.handleScroll} className={`ftco-navbar-light ${this.state.classNav}`} > <Container> <BsNavbar.Brand href='/'><NAME></BsNavbar.Brand> <BsNavbar.Toggle aria-controls='basic-navbar-nav'> <span> <FaBars /> </span>{' '} Меню </BsNavbar.Toggle> <BsNavbar.Collapse id='basic-navbar-nav'> <Nav className='ml-auto'> <Nav.Item> <Link className='nav-link' activeClassName='active' to='/'> Главная </Link> </Nav.Item> <Nav.Item> <Link className='nav-link' activeClassName='active' to='/products' > Услуги </Link> </Nav.Item> <Nav.Item> <Link className='nav-link' activeClassName='active' to='/contact/schedule' > Расписание </Link> </Nav.Item> <Nav.Item> <Link className='nav-link' activeClassName='active' to='/about' > Обо мне </Link> </Nav.Item> <Nav.Item> <Link className='nav-link' activeClassName='active' to='/blog' > Статьи </Link> </Nav.Item> <Nav.Item> <Link className='nav-link' activeClassName='active' to='/contact' > Контакты </Link> </Nav.Item> </Nav> </BsNavbar.Collapse> </Container> </BsNavbar> </div> ); } } export default Navbar; <file_sep>import React from 'react'; import Link from 'gatsby-link'; import Layout from '../../components/Layout'; import Table from 'react-bootstrap/Table'; export default class Index extends React.Component { render() { return ( <Layout> {/* Hero section */} <section className='hero-wrap' style={{ backgroundImage: `url(${'/img/bg_3.jpg'})`, }} > <div className='overlay'></div> <div className='container'> <div className='row no-gutters slider-text js-fullheight align-items-center justify-content-center'> <div className='col-md-9 text-center'> <h1 className='mb-3 bread'>Моё расписание</h1> <p className='breadcrumbs'> <span className='mr-2'> <Link to='/'>Главная</Link> </span>{' '} <span>Расписание</span> </p> </div> </div> </div> </section> {/* Schedule section */} <section className='ftco-section'> <div className='container'> <div className='row'> <div className='col-md-12 '> <div className='sched-list'> <Table className='table'> <thead className='thead-primary'> <tr className='text-center'> <th>&nbsp;</th> <th> Пн </th> <th> Вт </th> <th> Ср </th> <th> Чт </th> <th> Пт </th> <th> Сб </th> <th> Вс </th> </tr> </thead> <tbody> <tr className='text-center'> <td className='color'> <p className='time'>9:00</p> </td> <td className='color-1'> <h3> <a href='#'>Morning Flow</a> </h3> <span className='at'>Advanced Sequence</span> <p className='time'>9:00 - 10:30</p> <span className='trainer'><NAME></span> </td> <td className='color-1'> <h3> <a href='#'>Cardio Program</a> </h3> <span className='at'>Weight Loss</span> <p className='time'>9:00 - 10:30</p> <span className='trainer'><NAME></span> </td> <td className='color-2'> <h3> <a href='#'>Body Building</a> </h3> <span className='at'>Weight Loss</span> <p className='time'>9:00 - 10:30</p> <span className='trainer'><NAME></span> </td> <td className='color-3'> <h3> <a href='#'>Bicep Pro</a> </h3> <span className='at'>Weight Loss</span> <p className='time'>9:00 - 10:30</p> <span className='trainer'><NAME></span> </td> <td className='color-1'> <h3> <a href='#'>Leg Strengthening</a> </h3> <span className='at'>Weight Loss</span> <p className='time'>9:00 - 10:30</p> <span className='trainer'><NAME></span> </td> <td className='color-4'> <h3> <a href='#'>Muscle Relax</a> </h3> <span className='at'>Weight Loss</span> <p className='time'>9:00 - 10:30</p> <span className='trainer'><NAME></span> </td> <td className='color-5'> <h3> <a href='#'>Yoga Program</a> </h3> <span className='at'>Weight Loss</span> <p className='time'>9:00 - 10:30</p> <span className='trainer'><NAME></span> </td> </tr> {/* END TR */} <tr className='text-center'> <td className='color'> <p className='time'>9:00</p> </td> <td className='color-1'></td> <td className='color-2'> <h3> <a href='#'>Cardio Program</a> </h3> <span className='at'>Weight Loss</span> <p className='time'>9:00 - 10:30</p> <span className='trainer'><NAME></span> </td> <td className='color-3'> <h3> <a href='#'>Body Building</a> </h3> <span className='at'>Weight Loss</span> <p className='time'>9:00 - 10:30</p> <span className='trainer'><NAME></span> </td> <td className='color-3'></td> <td className='color-1'> <h3> <a href='#'>Leg Strengthening</a> </h3> <span className='at'>Weight Loss</span> <p className='time'>9:00 - 10:30</p> <span className='trainer'><NAME></span> </td> <td className='color-5'> <h3> <a href='#'>Muscle Relax</a> </h3> <span className='at'>Weight Loss</span> <p className='time'>9:00 - 10:30</p> <span className='trainer'><NAME></span> </td> <td className='color-4'> <h3> <a href='#'>Yoga Program</a> </h3> <span className='at'>Weight Loss</span> <p className='time'>9:00 - 10:30</p> <span className='trainer'><NAME></span> </td> </tr> {/* END TR */} <tr className='text-center'> <td className='color'> <p className='time'>9:00</p> </td> <td className='color-3'> <h3> <a href='#'>Morning Flow</a> </h3> <span className='at'>Advanced Sequence</span> <p className='time'>9:00 - 10:30</p> <span className='trainer'><NAME></span> </td> <td className='color-1'> <h3> <a href='#'>Cardio Program</a> </h3> <span className='at'>Weight Loss</span> <p className='time'>9:00 - 10:30</p> <span className='trainer'><NAME></span> </td> <td className='color-2'> <h3> <a href='#'>Body Building</a> </h3> <span className='at'>Weight Loss</span> <p className='time'>9:00 - 10:30</p> <span className='trainer'><NAME></span> </td> <td className='color-1'> <h3> <a href='#'>Bicep Pro</a> </h3> <span className='at'>Weight Loss</span> <p className='time'>9:00 - 10:30</p> <span className='trainer'><NAME></span> </td> <td className='color-1'> <h3> <a href='#'>Leg Strengthening</a> </h3> <span className='at'>Weight Loss</span> <p className='time'>9:00 - 10:30</p> <span className='trainer'><NAME></span> </td> <td className='color-4'> <h3> <a href='#'>Muscle Relax</a> </h3> <span className='at'>Weight Loss</span> <p className='time'>9:00 - 10:30</p> <span className='trainer'><NAME></span> </td> <td className='color-5'> <h3> <a href='#'>Yoga Program</a> </h3> <span className='at'>Weight Loss</span> <p className='time'>9:00 - 10:30</p> <span className='trainer'><NAME></span> </td> </tr> {/* END TR */} </tbody> </Table> </div> </div> </div> </div> </section> </Layout> ); } } <file_sep>import React from 'react'; import { Link } from 'gatsby'; import Layout from '../components/Layout'; const NotFoundPage = () => ( <Layout> {/* Hero section */} <section className='hero-wrap' style={{ backgroundImage: `url(${'/img/bg_3.jpg'})`, }} > <div className='overlay'></div> <div className='container'> <div className='row no-gutters slider-text js-fullheight align-items-center justify-content-center'> <div className='col-md-9 text-center'> <h1 className='mb-3 bread'>Страница не найдена (404)</h1> <p className='breadcrumbs'> <span className='mr-2'> <Link to='/'>На главную</Link> </span> </p> </div> </div> </div> </section> </Layout> ); export default NotFoundPage; <file_sep>--- templateKey: 'product-page' path: /products title: Услуги image: /img/image_3.jpg heading: Доступные виды массажа description: >- Kaldi is the ultimate spot for coffee lovers who want to learn about their java’s origin and support the farmers that grew it. We take coffee production, roasting and brewing seriously and we’re glad to pass that knowledge to anyone. intro: blurbs: - image: /img/program-1.jpg heading: Медицинский массаж text: > Рядом с ними протекает небольшая речка Дуден, снабжающая его необходимыми регелиалами. Это райская страна. - image: /img/program-2.jpg heading: Медицинский массаж text: > Рядом с ними протекает небольшая речка Дуден, снабжающая его необходимыми регелиалами. Это райская страна. - image: /img/program-3.jpg heading: Медицинский массаж text: > Рядом с ними протекает небольшая речка Дуден, снабжающая его необходимыми регелиалами. Это райская страна. - image: /img/program-4.jpg heading: Медицинский массаж text: > Рядом с ними протекает небольшая речка Дуден, снабжающая его необходимыми регелиалами. Это райская страна. - image: /img/program-5.jpg heading: Медицинский массаж text: > Рядом с ними протекает небольшая речка Дуден, снабжающая его необходимыми регелиалами. Это райская страна. - image: /img/program-6.jpg heading: Медицинский массаж text: > Рядом с ними протекает небольшая речка Дуден, снабжающая его необходимыми регелиалами. Это райская страна. - image: /img/program-1.jpg heading: Медицинский массаж text: > Рядом с ними протекает небольшая речка Дуден, снабжающая его необходимыми регелиалами. Это райская страна. - image: /img/program-2.jpg heading: Медицинский массаж text: > Рядом с ними протекает небольшая речка Дуден, снабжающая его необходимыми регелиалами. Это райская страна. - image: /img/program-3.jpg heading: Медицинский массаж text: > Рядом с ними протекает небольшая речка Дуден, снабжающая его необходимыми регелиалами. Это райская страна. - image: /img/program-4.jpg heading: Медицинский массаж text: > Рядом с ними протекает небольшая речка Дуден, снабжающая его необходимыми регелиалами. Это райская страна. - image: /img/program-5.jpg heading: Медицинский массаж text: > Рядом с ними протекает небольшая речка Дуден, снабжающая его необходимыми регелиалами. Это райская страна. - image: /img/program-6.jpg heading: Медицинский массаж text: > Рядом с ними протекает небольшая речка Дуден, снабжающая его необходимыми регелиалами. Это райская страна. heading: What we offer description: > Kaldi is the ultimate spot for coffee lovers who want to learn about their java’s origin and support the farmers that grew it. We take coffee production, roasting and brewing seriously and we’re glad to pass that knowledge to anyone. This is an edit via identity... --- <file_sep>import React from 'react'; import PropTypes from 'prop-types'; import { Link, graphql } from 'gatsby'; import Layout from '../components/Layout'; import Features from '../components/Features'; import BlogRoll from '../components/BlogRoll'; import Testimonials from '../components/Testimonials'; import { IoIosCheckmarkCircle, IoLogoInstagram } from 'react-icons/io'; import { GiHeartOrgan, GiLotus, GiMeditation, GiAquarium, } from 'react-icons/gi'; export const IndexPageTemplate = ({ image, title, heading, subheading, mainpitch, description, intro, }) => ( <div> {/* Hero section */} <section className='hero-wrap' style={{ backgroundImage: `url(${ !!image.childImageSharp ? image.childImageSharp.fluid.src : image })`, }} > <div className='overlay'></div> <div className='container'> <div className='row no-gutters slider-text js-fullheight align-items-center justify-content-start'> <div className='col-md-8'> <h1 className='typewrite mb-3'>{heading}</h1> <h2 className='mb-5'>{subheading}</h2> <p> <Link to='#' className='btn btn-primary p-3 px-4'> Записаться </Link> </p> </div> </div> </div> </section> {/* Intro section */} <section className='ftco-section ftco-intro' style={{ backgroundImage: `url(${ !!image.childImageSharp ? mainpitch.image.childImageSharp.fluid.src : mainpitch.image })`, }} > <div className='container'> <div className='row justify-content-end'> <div className='col-md-6'> <div className='heading-section '> <h2 className='mb-4'>{mainpitch.title}</h2> </div> <p className=''>{mainpitch.description}</p> <ul className='mt-5 do-list'> <li className=''> <a href='#'> <span className='mr-3'> <IoIosCheckmarkCircle /> </span> Повышает умственные способности </a> </li> <li className=''> <a href='#'> <span className='mr-3'> <IoIosCheckmarkCircle /> </span> Помогает лучше дышать </a> </li> <li className=''> <a href='#'> <span className='mr-3'> <IoIosCheckmarkCircle /> </span> Улучшает твою силу </a> </li> <li className=''> <a href='#'> <span className='mr-3'> <IoIosCheckmarkCircle /> </span> Помогает вам сосредоточиться </a> </li> <li className=''> <a href='#'> <span className='mr-3'> <IoIosCheckmarkCircle /> </span> Помогает придать смысл вашему дню </a> </li> </ul> </div> </div> </div> </section> {/* Benefits section */} <section className='ftco-section ftco-section-services bg-light'> <div className='container'> <div className='row'> <div className='col-md-3'> <div className='services'> <div className='icon d-flex justify-content-center align-items-center'> <span> <GiHeartOrgan /> </span> </div> <div className='text mt-4'> <h3>Здоровый образ жизни</h3> <p> Рядом с ними протекает небольшая речка Дуден, снабжающая его необходимыми регелиалами. Это райская страна </p> </div> </div> </div> <div className='col-md-3'> <div className='services'> <div className='icon d-flex justify-content-center align-items-center'> <span> <GiLotus /> </span> </div> <div className='text mt-4'> <h3>Баланс тела и разума</h3> <p> Рядом с ними протекает небольшая речка Дуден, снабжающая его необходимыми регелиалами. Это райская страна </p> </div> </div> </div> <div className='col-md-3'> <div className='services'> <div className='icon d-flex justify-content-center align-items-center'> <span> <GiMeditation /> </span> </div> <div className='text mt-4'> <h3>Практика медитации</h3> <p> Рядом с ними протекает небольшая речка Дуден, снабжающая его необходимыми регелиалами. Это райская страна </p> </div> </div> </div> <div className='col-md-3'> <div className='services'> <div className='icon d-flex justify-content-center align-items-center'> <span> <GiAquarium /> </span> </div> <div className='text mt-4'> <h3>Эдеология</h3> <p> Рядом с ними протекает небольшая речка Дуден, снабжающая его необходимыми регелиалами. Это райская страна </p> </div> </div> </div> </div> </div> </section> {/* Services section */} <section className='ftco-section'> <div className='container'> <div className='row justify-content-center mb-5 pb-3'> <div className='col-md-12 heading-section text-center'> <h3 className='subheading'>Услуги</h3> <h2 className='mb-1'>Выберите тип массажа</h2> </div> </div> <Features gridItems={intro.blurbs} /> </div> </section> {/* Testimonials section */} <section className='ftco-section testimony-section'> <div className='container'> <div className='row justify-content-center mb-5 pb-3'> <div className='col-md-7 heading-section text-center'> <h3 className='subheading'>Отзывы</h3> <h2 className='mb-1'>Довольные клиенты</h2> </div> </div> <Testimonials /> </div> </section> {/* Latest posts section */} <section className='ftco-section bg-light'> <div className='container'> <div className='row justify-content-center mb-5 pb-3'> <div className='col-md-7 heading-section text-center'> <h3 className='subheading'>Статьи</h3> <h2 className='mb-1'>Последние статьи</h2> </div> </div> <BlogRoll /> </div> </section> {/* Instagram section */} <section className='ftco-gallery ftco-section'> <div className='container'> <div className='row justify-content-center mb-5 pb-3'> <div className='col-md-7 heading-section text-center'> <h3 className='subheading'>Инстаграм</h3> <h2 className='mb-1'>Галерея релакса</h2> </div> </div> <div className='row'> <div className='col-md-3 '> <a href='https://www.instagram.com/andrei_astakhov_/' target='_blank' className='gallery image-popup img d-flex align-items-center' style={{ backgroundImage: `url(${'/img/instagram-1.jpg'})`, }} > <div className='icon mb-4 d-flex align-items-center justify-content-center'> <span className=''> <IoLogoInstagram /> </span> </div> </a> </div> <div className='col-md-3 '> <a href='https://www.instagram.com/andrei_astakhov_/' target='_blank' className='gallery image-popup img d-flex align-items-center' style={{ backgroundImage: `url(${'/img/instagram-2.jpg'})`, }} > <div className='icon mb-4 d-flex align-items-center justify-content-center'> <span className=''> <IoLogoInstagram /> </span> </div> </a> </div> <div className='col-md-3 '> <a href='https://www.instagram.com/andrei_astakhov_/' target='_blank' className='gallery image-popup img d-flex align-items-center' style={{ backgroundImage: `url(${'/img/instagram-3.jpg'})`, }} > <div className='icon mb-4 d-flex align-items-center justify-content-center'> <span className=''> <IoLogoInstagram /> </span> </div> </a> </div> <div className='col-md-3 '> <a href='https://www.instagram.com/andrei_astakhov_/' target='_blank' className='gallery image-popup img d-flex align-items-center' style={{ backgroundImage: `url(${'/img/instagram-4.jpg'})`, }} > <div className='icon mb-4 d-flex align-items-center justify-content-center'> <span className=''> <IoLogoInstagram /> </span> </div> </a> </div> </div> </div> </section> </div> ); IndexPageTemplate.propTypes = { image: PropTypes.oneOfType([PropTypes.object, PropTypes.string]), title: PropTypes.string, heading: PropTypes.string, subheading: PropTypes.string, mainpitch: PropTypes.object, description: PropTypes.string, intro: PropTypes.shape({ blurbs: PropTypes.array, }), }; const IndexPage = ({ data }) => { const { frontmatter } = data.markdownRemark; return ( <Layout> <IndexPageTemplate image={frontmatter.image} title={frontmatter.title} heading={frontmatter.heading} subheading={frontmatter.subheading} mainpitch={frontmatter.mainpitch} description={frontmatter.description} intro={frontmatter.intro} /> </Layout> ); }; IndexPage.propTypes = { data: PropTypes.shape({ markdownRemark: PropTypes.shape({ frontmatter: PropTypes.object, }), }), }; export default IndexPage; export const pageQuery = graphql` query IndexPageTemplate { markdownRemark(frontmatter: { templateKey: { eq: "index-page" } }) { frontmatter { title image { childImageSharp { fluid(maxWidth: 2048, quality: 100) { ...GatsbyImageSharpFluid } } } heading subheading mainpitch { title description image { childImageSharp { fluid(maxWidth: 2048, quality: 100) { ...GatsbyImageSharpFluid } } } } description intro { blurbs { image { childImageSharp { fluid(maxWidth: 500, quality: 80) { ...GatsbyImageSharpFluid } } } heading text } heading description } } } } `; <file_sep>import React from 'react'; import PropTypes from 'prop-types'; import { kebabCase } from 'lodash'; import { Helmet } from 'react-helmet'; import { graphql, Link } from 'gatsby'; import Layout from '../components/Layout'; import Content, { HTMLContent } from '../components/Content'; import BlogRoll from '../components/BlogRoll'; export const BlogPostTemplate = ({ content, contentComponent, description, tags, title, featuredimage, helmet, }) => { const PostContent = contentComponent || Content; return ( <div> {helmet || ''} {/* Hero section */} <section className='hero-wrap' style={{ backgroundImage: `url(${ !!featuredimage.childImageSharp ? featuredimage.childImageSharp.fluid.src : featuredimage })`, }} > <div className='overlay'></div> <div className='container'> <div className='row no-gutters justify-content-center mb-5 pb-3'> <div className='heading-section text-center'> <h2 className='mb-3'>{title}</h2> </div> </div> </div> </section> {/* Page content */} <section className='ftco-section'> <div className='container'> <div className='row no-gutters'> <PostContent className='content' content={content} /> <div className='tag-widget post-tag-container mb-5 mt-5'> {tags && tags.length ? ( <div className='tagcloud'> {tags.map((tag) => ( <span key={tag + `tag`}> <Link to={`/tags/${kebabCase(tag)}/`} className='tag-cloud-link' > {tag} </Link> </span> ))} </div> ) : null} </div> </div> </div> </section> {/* Latest posts section */} <section className='ftco-section bg-light'> <div className='container'> <div className='row justify-content-center mb-5 pb-3'> <div className='col-md-7 heading-section text-center'> <h2 className='mb-1'>Последние статьи</h2> </div> </div> <BlogRoll /> </div> </section> </div> ); }; BlogPostTemplate.propTypes = { image: PropTypes.oneOfType([PropTypes.object, PropTypes.string]), content: PropTypes.node.isRequired, contentComponent: PropTypes.func, description: PropTypes.string, title: PropTypes.string, helmet: PropTypes.object, }; const BlogPost = ({ data }) => { const { markdownRemark: post } = data; return ( <Layout> <BlogPostTemplate content={post.html} contentComponent={HTMLContent} description={post.frontmatter.description} helmet={ <Helmet titleTemplate='%s | Статьи'> <title>{`${post.frontmatter.title}`}</title> <meta name='description' content={`${post.frontmatter.description}`} /> </Helmet> } tags={post.frontmatter.tags} title={post.frontmatter.title} featuredimage={post.frontmatter.featuredimage} /> </Layout> ); }; BlogPost.propTypes = { data: PropTypes.shape({ markdownRemark: PropTypes.object, }), }; export default BlogPost; export const pageQuery = graphql` query BlogPostByID($id: String!) { markdownRemark(id: { eq: $id }) { id html frontmatter { title description date(formatString: "DD MMMM YYYY", locale: "ru") featuredimage { childImageSharp { fluid(maxWidth: 2048, quality: 100) { ...GatsbyImageSharpFluid } } } tags } } } `; <file_sep>import React from 'react'; import PropTypes from 'prop-types'; import { graphql, StaticQuery } from 'gatsby'; import { v4 } from 'uuid'; import Slider from 'react-slick'; import 'slick-carousel/slick/slick.css'; import 'slick-carousel/slick/slick-theme.css'; import { FaQuoteLeft } from 'react-icons/fa'; class Testimonials extends React.Component { render() { const { data } = this.props; const testimonials = data.allMarkdownRemark.edges[0].node.frontmatter.testimonials; var settings = { arrows: false, dots: true, infinite: true, speed: 500, slidesToShow: 3, slidesToScroll: 1, initialSlide: 0, responsive: [ { breakpoint: 1200, settings: { slidesToShow: 2, slidesToScroll: 1, initialSlide: 0, }, }, { breakpoint: 990, settings: { slidesToShow: 1, slidesToScroll: 1, initialSlide: 0, }, }, ], }; return ( <div className='row'> <div className='col-md-12'> <Slider className='carousel-testimony' {...settings}> {testimonials && testimonials.map((testimonial) => ( <div key={v4()} className='item'> <div className='testimony-wrap p-4 pb-5'> <div className='text'> <div className='line pl-5'> <p className='mb-4 pb-1'>{testimonial.quote}</p> <span className='quote d-flex align-items-center justify-content-center'> <FaQuoteLeft /> </span> </div> <div className='d-flex align-items-center'> <div className='user-img' style={{ backgroundImage: `url(${ !!testimonial.image.childImageSharp ? testimonial.image.childImageSharp.fluid.src : null })`, }} ></div> <div className='ml-4'> <p className='name'>{testimonial.author}</p> <span className='position'> {testimonial.position} </span> </div> </div> </div> </div> </div> ))} </Slider> </div> </div> ); } } Testimonials.propTypes = { data: PropTypes.shape({ allMarkdownRemark: PropTypes.shape({ edges: PropTypes.array, }), }), }; export default () => ( <StaticQuery query={graphql` query TestimonialsQuery { allMarkdownRemark( filter: { frontmatter: { templateKey: { eq: "index-page" } } } ) { edges { node { frontmatter { testimonials { author image { childImageSharp { fluid(maxWidth: 240, quality: 64) { ...GatsbyImageSharpFluid } } } position quote } } } } } } `} render={(data) => <Testimonials data={data} />} /> ); <file_sep>import React from 'react'; import { Link } from 'gatsby'; import { navigate } from 'gatsby-link'; import Layout from '../../components/Layout'; import { YMaps, Map, Placemark, ZoomControl } from 'react-yandex-maps'; function encode(data) { return Object.keys(data) .map((key) => encodeURIComponent(key) + '=' + encodeURIComponent(data[key])) .join('&'); } export default class Index extends React.Component { constructor(props) { super(props); this.state = { isValidated: false }; } handleChange = (e) => { this.setState({ [e.target.name]: e.target.value }); }; handleSubmit = (e) => { e.preventDefault(); const form = e.target; fetch('/', { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded' }, body: encode({ 'form-name': form.getAttribute('name'), ...this.state, }), }) .then(() => navigate(form.getAttribute('action'))) .catch((error) => alert(error)); }; render() { return ( <Layout> {/* Hero section */} <section className='hero-wrap' style={{ backgroundImage: `url(${'/img/bg_3.jpg'})`, }} > <div className='overlay'></div> <div className='container'> <div className='row no-gutters slider-text js-fullheight align-items-center justify-content-center'> <div className='col-md-9 text-center'> <h1 className='mb-3 bread'>Контактная информация</h1> <p className='breadcrumbs'> <span className='mr-2'> <Link to='/'>Главная</Link> </span>{' '} <span>Контакты</span> </p> </div> </div> </div> </section> {/* Contact section */} <section className='ftco-section contact-section'> <div className='container'> <div className='row block-9'> {/* Contact information */} <div className='col-md-4 contact-info bg-light p-4'> <div className='row'> <div className='col-md-12 mb-4'> <h2 className='h4'>Информация</h2> </div> <div className='col-md-12 mb-3'> <p> Нижняя Красносельская улица, 4, Москва, Россия, 107140 </p> </div> <div className='col-md-12 mb-3'> <p> <a href='tel://1234567920'>+ 1235 2355 98</a> </p> </div> <div className='col-md-12 mb-3'> <p> <a href='mailto:<EMAIL>'><EMAIL></a> </p> </div> <div className='col-md-12 mb-3'> <p> <a href='#'>yoursite.com</a> </p> </div> </div> </div> <div className='col-md-1'></div> {/* Contact form */} <div className='col-md-6 '> <form className='contact-form' name='contact' method='post' action='/contact/thanks/' data-netlify='true' data-netlify-honeypot='bot-field' onSubmit={this.handleSubmit} > <div className='row'> <div className='col-md-6'> <div className='form-group'> <input className='form-control' placeholder='имя' type={'text'} name={'name'} onChange={this.handleChange} id={'name'} required={true} /> </div> </div> <div className='col-md-6'> <div className='form-group'> <input className='form-control' placeholder='электронная почта' type={'email'} name={'email'} onChange={this.handleChange} id={'email'} required={true} /> </div> </div> </div> <div className='form-group'> <textarea className='form-control' placeholder='сообщение' name={'message'} onChange={this.handleChange} id={'message'} required={true} cols='30' rows='7' /> </div> {/* The `form-name` hidden field is required to support form submissions without JavaScript */} <input type='hidden' name='form-name' value='contact' /> <div hidden> <label> Don’t fill this out:{' '} <input name='bot-field' onChange={this.handleChange} /> </label> </div> <div className='form-group'> <button className='btn btn-primary py-3 px-5' type='submit'> Отправить </button> </div> </form> </div> </div> </div> </section> {/* Map */} <YMaps id='map' className='map'> <Map defaultState={{ center: [55.778801, 37.6668], zoom: 16, controls: [], behaviors: 'rightMouseButtonMagnifier', }} width='100%' height={400} > <Placemark defaultGeometry={[55.778801, 37.6668]} options={{ iconColor: '#90d1a6' }} /> <ZoomControl options={{ float: 'right' }} /> </Map> </YMaps> </Layout> ); } } <file_sep>--- templateKey: index-page title: Эффективная терапия против стресса image: /img/bg_2.jpg heading: Эффективная терапия против стресса. subheading: Массаж – эффективный метод лечения различных травм и заболеваний mainpitch: title: Почему стоит сходить на массаж image: /img/intro.jpg description: > Далеко-далеко, за словесными горами, вдали от стран Vokalia и Consonantia живут слепые тексты. Отдельно они живут в Bookmarksgrove прямо на берегу Семантики, большой языковой океан. description: >- Kaldi is the ultimate spot for coffee lovers who want to learn about their java’s origin and support the farmers that grew it. We take coffee production, roasting and brewing seriously and we’re glad to pass that knowledge to anyone. intro: blurbs: - image: /img/program-1.jpg heading: Медицинский массаж text: > Рядом с ними протекает небольшая речка Дуден, снабжающая его необходимыми регелиалами. Это райская страна. - image: /img/program-2.jpg heading: Медицинский массаж text: > Рядом с ними протекает небольшая речка Дуден, снабжающая его необходимыми регелиалами. Это райская страна. - image: /img/program-3.jpg heading: Медицинский массаж text: > Рядом с ними протекает небольшая речка Дуден, снабжающая его необходимыми регелиалами. Это райская страна. - image: /img/program-4.jpg heading: Медицинский массаж text: > Рядом с ними протекает небольшая речка Дуден, снабжающая его необходимыми регелиалами. Это райская страна. - image: /img/program-5.jpg heading: Медицинский массаж text: > Рядом с ними протекает небольшая речка Дуден, снабжающая его необходимыми регелиалами. Это райская страна. - image: /img/program-6.jpg heading: Медицинский массаж text: > Рядом с ними протекает небольшая речка Дуден, снабжающая его необходимыми регелиалами. Это райская страна. heading: What we offer description: > Kaldi is the ultimate spot for coffee lovers who want to learn about their java’s origin and support the farmers that grew it. We take coffee production, roasting and brewing seriously and we’re glad to pass that knowledge to anyone. This is an edit via identity... main: heading: Great coffee with no compromises description: > We hold our coffee to the highest standards from the shrub to the cup. That’s why we’re meticulous and transparent about each step of the coffee’s journey. We personally visit each farm to make sure the conditions are optimal for the plants, farmers and the local environment. image1: alt: A close-up of a paper filter filled with ground coffee image: /img/products-grid3.jpg image2: alt: A green cup of a coffee on a wooden table image: /img/products-grid2.jpg image3: alt: Coffee beans image: /img/products-grid1.jpg testimonials: - author: <NAME> image: /img/person_2.jpg position: Клиент quote: >- Я очень благодарна Андрею. Более года у меня каждый день болела шея, обращалась к различным врачам, делала массаж, ничего не помогало. Обратилась к Андрею и за одно посещение я навсегда забыла о боли в шее. Спасибо Вам! - author: <NAME>. image: /img/person_1.jpg position: Клиент quote: >- Была на приеме и не однажды! Очень квалифицированный и хороший врач! Помог сразу же поднять ферритин и прогестерон. Очень довольна. - author: Алексей image: /img/person_4.jpg position: Клиент quote: >- Андрей внимательный, вдумчивый и интересный специалист. Он меня замечательно обследовал, определил болевые точки, мы составили план лечения и я начал его выполнять. Лечение уже выявило свой эффект, так, что рекомендую данного врача. - author: <NAME> image: /img/person_2.jpg position: Клиент quote: >- Я очень благодарна Андрею. Более года у меня каждый день болела шея, обращалась к различным врачам, делала массаж, ничего не помогало. Обратилась к Андрею и за одно посещение я навсегда забыла о боли в шее. Спасибо Вам! - author: <NAME>. image: /img/person_1.jpg position: Клиент quote: >- Была на приеме и не однажды! Очень квалифицированный и хороший врач! Помог сразу же поднять ферритин и прогестерон. Очень довольна. --- <file_sep># template made with gatsby and netlify cms [![Netlify Status](https://api.netlify.com/api/v1/badges/dfd7c6fc-7784-4f22-a82c-a083d748cd02/deploy-status)](https://app.netlify.com/sites/astrah/deploys) **Note:** This starter uses [Gatsby v2](https://www.gatsbyjs.org/blog/2018-09-17-gatsby-v2/). ## Features - bootstrap (design by colorlib) - landing, about, products, blog, contact, schedule and tags pages - manage blog posts with netlify cms - netlify forms - SEO, Slick carousel, deploy configuration, etc ## Prerequisites - Node (I recommend using v8.2.0 or higher) - [Gatsby CLI](https://www.gatsbyjs.org/docs/) - [Netlify CLI](https://github.com/netlify/cli) ## Getting Started ``` $ gatsby new [SITE_DIRECTORY_NAME] https://github.com/vitalikda/astrahov/ $ cd [SITE_DIRECTORY_NAME] $ npm run build $ npm run serve ``` ### Setting up the CMS Follow the [Netlify CMS Quick Start Guide](https://www.netlifycms.org/docs/quick-start/#authentication) to set up authentication, and hosting. ### Access Locally Pulldown a local copy of the Github repository Netlify created for you, with the name you specified in the previous step ``` $ git clone https://github.com/[GITHUB_USERNAME]/[REPO_NAME].git $ cd [REPO_NAME] $ yarn $ netlify dev # or ntl dev ``` This uses the new [Netlify Dev](https://www.netlify.com/products/dev/?utm_source=blog&utm_medium=netlifycms&utm_campaign=devex) CLI feature to serve any functions you have in the `lambda` folder. To test the CMS locally, you'll need to run a production build of the site: ``` $ npm run build $ netlify dev # or ntl dev ``` ### Media Libraries (installed, but optional) Media Libraries have been included in this starter as a default. If you are not planning to use `Uploadcare` or `Cloudinary` in your project, you **can** remove them from module import and registration in `src/cms/cms.js`. Here is an example of the lines to comment or remove them your project. ```javascript import CMS from 'netlify-cms-app'; // import uploadcare from 'netlify-cms-media-library-uploadcare' // import cloudinary from 'netlify-cms-media-library-cloudinary' import AboutPagePreview from './preview-templates/AboutPagePreview'; import BlogPostPreview from './preview-templates/BlogPostPreview'; import ProductPagePreview from './preview-templates/ProductPagePreview'; import IndexPagePreview from './preview-templates/IndexPagePreview'; // CMS.registerMediaLibrary(uploadcare); // CMS.registerMediaLibrary(cloudinary); CMS.registerPreviewTemplate('index', IndexPagePreview); CMS.registerPreviewTemplate('about', AboutPagePreview); CMS.registerPreviewTemplate('products', ProductPagePreview); CMS.registerPreviewTemplate('blog', BlogPostPreview); ``` Note: Don't forget to also remove them from `package.json` / `package-lock.json` using `npm`. During the build netlify-cms-app will bundle the media libraries as well, having them removed will save you build time. Example: ``` npm remove netlify-cms-media-library-uploadcare ``` OR ``` npm remove netlify-cms-media-library-cloudinary ``` ## Debugging Windows users might encounter `node-gyp` errors when trying to npm install. To resolve, make sure that you have both Python 2.7 and the Visual C++ build environment installed. ``` npm config set python python2.7 npm install --global --production windows-build-tools ``` [Full details here](https://www.npmjs.com/package/node-gyp 'NPM node-gyp page') MacOS users might also encounter some errors, for more info check [node-gyp](https://github.com/nodejs/node-gyp). We recommend using the latest stable node version. ## Purgecss This plugin uses [gatsby-plugin-purgecss](https://www.gatsbyjs.org/packages/gatsby-plugin-purgecss/) and [react-bootstrap](https://github.com/react-bootstrap/react-bootstrap/).
95e3b4e162aa2bf7b7ccc695c5927b8519ac370f
[ "JavaScript", "Markdown" ]
11
JavaScript
vitalikda/astrahov
46bc5175bc09325f66ab43a401ca372191f322b9
caae388b17ca72d53c928d4d8bab14f860da5c20
refs/heads/master
<file_sep>## INTRO Tech test for FreeWheel ## Dependencies * .net core 2.1 ## How to The solution has been implemented as per directions. The only liberty I took regarding the endpoints returning user specific data, is to drive the identity using a bearer token. For test sake the API accept unsigned tokens. The following can be used OOB ``` <KEY> ``` The `uid` parameter can be changed in the token to test different users.<file_sep>using System; using System.Collections.Generic; using System.Text; namespace FreeWheel.Logic.Models { public class MovieProjection { public string Title { get; set; } public int YearOfRelease { get; set; } public string Genre { get; set; } public double AverageRating { get; set; } } } <file_sep>using System.ComponentModel.DataAnnotations; namespace FreeWheel.Logic.Models { public class MovieQuery { public MovieQuery() { this.Genre = new string[] { }; } public string Title { get; set; } public int? Year { get; set; } public string[] Genre { get; set; } public bool AssertIsValid() { return !( string.IsNullOrEmpty(Title) && Year == null && Genre.Length == 0); } } } <file_sep>using System; using System.Collections.Generic; using System.Text; namespace FreeWheel.Logic.Models { public class RatingUpdateCommand { public int MovieId { get; set; } public int Rating { get; set; } public int UserId { get; set; } } } <file_sep>using Microsoft.EntityFrameworkCore; using FreeWheel.Logic.Models; namespace FreeWheel.DataAccess { public class MovieContext : DbContext { public MovieContext(DbContextOptions<MovieContext> options) : base(options) { } public DbSet<Movie> Movies { get; set; } public DbSet<Rating> Ratings { get; set; } } } <file_sep>using FreeWheel.Extensions; using FreeWheel.Logic.DataAccess; using FreeWheel.Logic.Models; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using System.Linq; using System.Threading.Tasks; using RouteAttribute = Microsoft.AspNetCore.Mvc.RouteAttribute; namespace FreeWheel.Controllers { [ApiController] [Route("api/movies")] public class MoviesController : ControllerBase { private IMoviesRepository _movieRepository; public MoviesController(IMoviesRepository movieRepo) { _movieRepository = movieRepo; } public async Task<ActionResult> Get([FromQuery]MovieQuery query) { if (!query.AssertIsValid()) return BadRequest(); var results = await _movieRepository.GetMoviesByQuery(query); if (results.Count() == 0) return NotFound(); return Ok(results); } [Route("byRating")] [HttpGet] public async Task<ActionResult> GetByRating() { int? uId = null; if (User.Identity.IsAuthenticated) uId = User.GetUserId(); var results = await _movieRepository.GetTopMoviesByRating(5, uId); return Ok(results); } [Route("ratings")] [HttpPost] [Authorize] public async Task<ActionResult> GetByRating([FromBody]RatingCommand update) { if (!ModelState.IsValid) return BadRequest(); var movie = await _movieRepository.GetMovieById(update.MovieId); if (movie == null) return NotFound(); await _movieRepository.UpsertRating(new RatingUpdateCommand() { MovieId = update.MovieId, Rating = update.Rating, UserId = User.GetUserId() }); return Ok(); } } } <file_sep>using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace FreeWheel.Logic.Models { public class RatingCommand { [Required] public int MovieId { get; set; } [Required] public int Rating { get; set; } } } <file_sep>using FreeWheel.Logic.Models; using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace FreeWheel.Logic.DataAccess { public interface IMoviesRepository { Task<Movie> GetMovieById(int iId); Task<IEnumerable<MovieProjection>> GetMoviesByQuery(MovieQuery query); Task<IEnumerable<MovieProjection>> GetTopMoviesByRating(int iMax, int? iUserId); Task UpsertRating(RatingUpdateCommand rUpdate); } } <file_sep>using FreeWheel.Logic.Models; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.TestHost; using Microsoft.Extensions.Configuration; using Microsoft.VisualStudio.TestTools.UnitTesting; using System.Collections.Generic; using System.Net.Http; using System.Threading.Tasks; using System.Linq; using System.IdentityModel.Tokens.Jwt; using System.Security.Claims; namespace FreeWheel.Acceptance { [TestClass] public class MoviesApiAcceptanceTests { private HttpClient _client; private IWebHostBuilder CreateWebHostBuilder() { var config = new ConfigurationBuilder().Build(); var host = new WebHostBuilder() .UseConfiguration(config) .UseStartup<Startup>(); return host; } public MoviesApiAcceptanceTests() { var testServer = new TestServer(CreateWebHostBuilder()); _client = testServer.CreateClient(); } [TestMethod] public async Task GivenRequestWithoutFiltersThenApiReturns400() { var results = await _client.GetAsync("api/movies"); Assert.AreEqual(400, (int)results.StatusCode); } [TestMethod] public async Task GivenRequestNotMatchingMovingThenApiReturns404() { var results = await _client.GetAsync("api/movies?title=3"); Assert.AreEqual(404, (int)results.StatusCode); } [TestMethod] public async Task GivenMatchingQueryThenApiReturns200() { var results = await _client.GetAsync("api/movies?title=1"); Assert.AreEqual(200, (int)results.StatusCode); } [TestMethod] public async Task GivenGlobalRatingsQueryThenApiReturnsAsExpected() { var results = await (await _client.GetAsync("api/movies/byRating")) .Content .ReadAsStringAsync(); var dResults = Newtonsoft.Json.JsonConvert.DeserializeObject<List<MovieProjection>>(results); Assert.AreEqual("Test1", dResults.First().Title); } [TestMethod] public async Task GivenUserScopedRatingQueryThenApiReturnsOnlyScopedResults() { var jwt = new JwtSecurityTokenHandler() .WriteToken( new JwtSecurityToken(claims: new List<Claim> { new Claim("uid", "1"), })); var request = new HttpRequestMessage(HttpMethod.Get, "api/movies/byRating"); request.Headers.Authorization = new System.Net.Http.Headers.AuthenticationHeaderValue("Bearer", jwt); var results = await (await _client.SendAsync(request)) .Content .ReadAsStringAsync(); var dResults = Newtonsoft.Json.JsonConvert.DeserializeObject<List<MovieProjection>>(results); Assert.AreEqual(3, dResults.Count); } } } <file_sep>using System.IdentityModel.Tokens.Jwt; using FreeWheel.DataAccess; using FreeWheel.Logic.DataAccess; using Microsoft.AspNetCore.Authentication.JwtBearer; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Mvc; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.IdentityModel.Tokens; namespace FreeWheel { public class Startup { public Startup(IConfiguration configuration) { Configuration = configuration; } public IConfiguration Configuration { get; } // This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { services .AddAuthentication(JwtBearerDefaults.AuthenticationScheme) .AddJwtBearer(opt => { opt.TokenValidationParameters = new TokenValidationParameters { ValidIssuer = "local", ValidAudience = "local", RequireSignedTokens = false, ValidateAudience = false, ValidateIssuer = false, ValidateLifetime = false, ValidateIssuerSigningKey = false, RequireExpirationTime = false, SignatureValidator = delegate (string token, TokenValidationParameters parameters) { var jwt = new JwtSecurityToken(token); return jwt; }, }; }); services.AddDbContext<MovieContext>(opt => opt.UseInMemoryDatabase()); services.AddTransient<IMoviesRepository, EFMovieRepository>(); services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1); } // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IHostingEnvironment env) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } app.UseAuthentication(); app.UseMvc(); using (var serviceScope = app.ApplicationServices.CreateScope()) { SeedTestData(serviceScope.ServiceProvider.GetService<MovieContext>()); } } private void SeedTestData(MovieContext db) { db.Movies.Add(new Logic.Models.Movie() { Id= 1, Title = "Test1", Genre = "Action", YearOfRelease = 2000 }); db.Movies.Add(new Logic.Models.Movie() { Id = 2, Title = "Test2", Genre = "Romance", YearOfRelease = 2000 }); db.Movies.Add(new Logic.Models.Movie() { Id = 3, Title = "Test3", Genre = "Drama", YearOfRelease = 2001 }); db.Movies.Add(new Logic.Models.Movie() { Id = 4, Title = "Test4", Genre = "Drama", YearOfRelease = 2001 }); db.Ratings.Add(new Logic.Models.Rating { MovieId = 2, UserId = 2, Rate = 5 }); db.Ratings.Add(new Logic.Models.Rating { MovieId = 1, UserId = 1, Rate = 5 }); db.Ratings.Add(new Logic.Models.Rating { MovieId = 2, UserId = 1, Rate = 5 }); db.Ratings.Add(new Logic.Models.Rating { MovieId = 3, UserId = 1, Rate = 3 }); db.Ratings.Add(new Logic.Models.Rating { MovieId = 3, UserId = 2, Rate = 4 }); db.SaveChanges(); } } } <file_sep>using FreeWheel.Logic.DataAccess; using FreeWheel.Logic.Models; using System; using System.Collections.Generic; using System.Threading.Tasks; using System.Linq; using Microsoft.EntityFrameworkCore; namespace FreeWheel.DataAccess { public class EFMovieRepository : IMoviesRepository { private MovieContext _db; public EFMovieRepository(MovieContext db) { _db = db; } public async Task<IEnumerable<MovieProjection>> GetMoviesByQuery(MovieQuery query) { var ratings = GetMovieRatingsQuerable(null); return await (from movie in _db.Movies where (string.IsNullOrEmpty(query.Title) || movie.Title.ToLower().Contains(query.Title.ToLower().Trim())) && (query.Year == null || movie.YearOfRelease == query.Year) && (query.Genre.Length == 0 || query.Genre.Contains(movie.Genre)) join rating in ratings on movie.Id equals rating.Id into pRatings from rating in pRatings.DefaultIfEmpty() select new MovieProjection { Title = movie.Title, AverageRating = RoundToClosest(rating != null ? rating.Avg : 0, .5), Genre = movie.Genre, YearOfRelease = movie.YearOfRelease } ).ToListAsync(); } public async Task<IEnumerable<MovieProjection>> GetTopMoviesByRating(int iMax, int? iUserId) { var ratings = GetMovieRatingsQuerable(iUserId); var movies = await (from rating in ratings join movie in _db.Movies on rating.Id equals movie.Id select new MovieProjection { Title = movie.Title, AverageRating = RoundToClosest(rating.Avg, .5), Genre = movie.Genre, YearOfRelease = movie.YearOfRelease } ) .OrderByDescending(x => x.AverageRating) .ThenBy(x => x.Title) .Take(iMax) .ToListAsync(); return movies; } private IQueryable<RatingAverageProjection> GetMovieRatingsQuerable(int? iUserId) { var ratings = (from rating in _db.Ratings where iUserId == null || rating.UserId == iUserId group rating by rating.MovieId into gRating select new RatingAverageProjection { Id = gRating.First().MovieId, Avg = gRating.Average(x => x.Rate) } ); return ratings; } public Task<Movie> GetMovieById(int iId) { return _db.Movies.FirstOrDefaultAsync(x => x.Id == iId); } public async Task UpsertRating(RatingUpdateCommand rUpdate) { var rating = _db .Ratings .SingleOrDefault(x => x.MovieId == rUpdate.MovieId && x.UserId == rUpdate.UserId); if (rating == null) { rating = new Rating(); _db.Ratings.Add(rating); } rating.MovieId = rUpdate.MovieId; rating.UserId = rUpdate.UserId; rating.Rate = rUpdate.Rating; await _db.SaveChangesAsync(); } private double RoundToClosest(double value, double closest) { return Math.Round(value / closest) * closest; } private class RatingAverageProjection { public int Id { get; set; } public double Avg { get; set; } } } } <file_sep>using System; using System.Security.Claims; namespace FreeWheel.Extensions { public static class UserExtensions { public static int GetUserId(this ClaimsPrincipal user) { return Convert.ToInt32(((ClaimsIdentity)user.Identity).FindFirst("uid").Value); } } }
acd16e022ec6f6c0d12500143592c95a7f2ad0a4
[ "Markdown", "C#" ]
12
Markdown
federicobarera/freewheel
2b4effd60dc469b479a2d82043a1fedf1657a8c4
5455f84448b684f5ae66681c55888001f23a5e00
refs/heads/master
<file_sep>using System; namespace Lab4 { public abstract class Shape{ public abstract double getArea(); public abstract double printPerimeter(); } } <file_sep>using System; namespace Lab4 { public class Circle { double radius=1; double pi=Math.PI; Point point = new Point(); public double Radius{ get { return radius; } set { radius = value; } } public Point pointPos{ get { return point; } } public Circle (){ point.setValue(0,0); } public Circle (double r){ setRad(r); point.setValue(0,0); } public Circle (double x,double y,double r){ setRad(r); point.setValue(x,y); } public Circle (Circle a){ setRad(a.radius); setPoint(a.point); } public double getArea(){ return pi*radius*radius; } public Point getPoint(){ return point; } public void setRad(double r){ if(r<0){ radius=1; } else{ radius=r; } } public void setPoint(Point a){ point.setValue(a.xpos,a.ypos); } public void setXYPos(double x, double y){ point.setValue(x,y); } public override string ToString(){ return "[Circle: " + point + ", radius=" + radius + ", area= "+getArea(); } } } <file_sep>using System; namespace Lab4 { public class Cylinder { Circle circle = new Circle(); double height=1.0; double pi=Math.PI; public Cylinder (){ height=1.0; } public Cylinder (double r,double h){ height=h; circle.setRad(r); } public Cylinder (double x,double y, double r, double h){ height=h; circle.setRad(r); circle.setXYPos(x,y); } public Cylinder (Circle a){ circle.setRad(a.Radius); circle.setPoint(a.getPoint()); } public Cylinder (Cylinder a){ circle.setRad(a.getRad()); circle.setPoint(a.getPoint()); height=a.height; } public double getRad(){ return circle.Radius; } public Point getPoint(){ return circle.pointPos; } public double getArea(){ return (2*pi*getRad()*height) + (2*circle.getArea()); } public double getVolume(){ return (height*circle.getArea()); } public override string ToString(){ return "[Cylinder: " + getPoint() + ", radius=" + getRad() + ", height="+ height + ",surface=" + getArea() +", volume= "+getVolume(); } } } <file_sep>using System; namespace Lab4 { public class Point { double x=0,y=0; public double xpos{ get { return x; } set { x = value; } } public double ypos{ get { return y; } set { y = value; } } public Point(){ //basic form x=0; y=0; } public Point(Point a){ setValue(a.x,a.y); } public Point(double a, double b){ setValue(a,b); } public void setValue(double xpos,double ypos){ x=xpos; y=ypos; } public override string ToString(){ return "center(" + x + "," + y + ")"; } } } <file_sep>using System; namespace Lab4 { public class Rectangle : Shape { double width=1.0,height=1.0; string color="gold"; public double Width{ get { return width; } set { if (value>=0) width = value; else width=1; } } public double Height{ get { return height; } set { if (value>=0) height = value; else height=1; } } public string Color{ get { return color; } } public Rectangle(){ //basic form setValue(1,1); setColor("gold"); } public Rectangle(string a,double w,double h){ setValue(w,h); setColor(a); } public Rectangle(Rectangle a){ setValue(a.width,a.height); setColor(a.color); } public void setValue(double w,double h){ if(w<=0) width=1; else width=w; if(h<=0) height=1; else height=h; } public void setColor(string a){ color =a; } public override double getArea(){ return width*height; } public override double printPerimeter(){ return (Width + Height) * 2.0; } public override string ToString(){ return "[Rectangle: width="+width+", height="+height+", area="+getArea()+", color=\""+color+"\"]"; } } }
5c319af5e68c3b09c011789c5c9ba54fbc522709
[ "C#" ]
5
C#
cpe200-158-sec2-0600/week-4
0148984a12cf1898dbc3409efa32c29090292023
beafd2906d9ec3d2596754f304c9591f2e6cc55e
refs/heads/master
<file_sep># README ### Project assessing NYC ratings by borough and neighborhood. - Restaurant data from [NYC Open Data](https://data.cityofnewyork.us/Health/DOHMH-New-York-City-Restaurant-Inspection-Results/43nn-pn8j) - [Borough spatial data](https://data.cityofnewyork.us/City-Government/Borough-Boundaries/tqmj-j8zm) and [neighborhood population data](https://data.cityofnewyork.us/City-Government/New-York-City-Population-By-Neighborhood-Tabulatio/swpk-hqdp) from the City of New York - Neighborhood spatial data from [pediacities](http://data.beta.nyc/dataset/pediacities-nyc-neighborhoods/resource/35dd04fb-81b3-479b-a074-a27a37888ce7) ### Dataset Information - [How restaurants are graded](https://www1.nyc.gov/assets/doh/downloads/pdf/rii/how-we-score-grade.pdf) - [Scoring details](https://www.ehagroup.com/food-safety/new-york-abc-restaurant-grading/) ### Geocoding Geocoding by [here](https://developer.here.com/)<file_sep># ____________________________________________________________________________ # 1-import_clean.R #### ## ............................................................................ ## Setup #### # Library loading library(tidyverse) library(magrittr) library(lubridate) library(janitor) library(purrr) library(glue) library(maptools) library(viridis) library(httr) library(jsonlite) library(rvest) library(broom) library(rgdal) library(feather) library(leaflet) library(RANN) # ggplot2 customization theme_set(theme_minimal()) scale_fill_continuous <- function(...) scale_fill_viridis() # metadata environment meta <- new.env() ## ............................................................................ ## Restaurant data from nyc domh #### # Load in the data nyc_in <- read_csv("data/DOHMH_New_York_City_Restaurant_Inspection_Results.csv") %>% # Make names more manageable clean_names() %>% # Initial data parsing from data dictionary # Let's rename cuisine_desciption to cuisine rename(cuisine = cuisine_description) %>% mutate(dba = str_to_title(dba), boro = str_to_title(boro) %>% fct_relevel(c("Manhattan", "Bronx", "Brooklyn", "Queens", "Staten Island")), street = str_to_title(street), cuisine = ifelse(cuisine == "Café/Coffee/Tea", "Cafe/Coffee/Tea", cuisine), inspection_date = mdy(inspection_date), grade_date = mdy(grade_date), record_date = mdy(record_date), critical_flag = critical_flag == "Critical") %>% # Sort by unique restaurant id (camis) and inpsection date arrange(camis, inspection_date) %>% # From the data dictionary: # inspection_dates of 1/1/1900 have not yet been inspected filter(inspection_date != mdy("1/1/1900")) %>% # Drop 'Missing' Boroughs (there's only 7 of the > 25,000) filter(boro != "Missing") # Some columns (grade) don't hold fidelity within inspection dates fix_na_cols <- nyc_in %>% filter(!is.na(grade)) %>% select(camis, inspection_date, grade, grade_date) # Do some minimal cleaning nyc <- nyc_in %>% # Deselect grade and grade date for correction select(-grade, -grade_date) %>% left_join(fix_na_cols) %>% # Filter to restaurants with a current grade filter(!is.na(grade) & grade != "Not Yet Graded") %>% mutate( boro = boro %>% as.character() %>% fct_relevel("Manhattan", "Bronx", "Brooklyn", "Queens", "Staten Island"), street = str_replace_all(street, "\\s{2,}", " "), place = str_c(building, street, sep = " "), address = str_c(place, boro, "NY", zipcode, sep = ", "), grade = case_when( str_detect(action, "(C|c)losed") ~ "X", T ~ grade ), grade_date = case_when( grade == "X" ~ inspection_date, T ~ grade_date ), no_grade = is.na(grade) %>% ifelse("Missing", "Graded") ) %>% # Finally, count violations and critical violations group_by(camis, inspection_date) %>% mutate(viol = n(), viol_crit = sum(critical_flag)) %>% ungroup() %>% # We're only going to look at the most recent health rating group_by(camis) %>% arrange(desc(inspection_date)) %>% slice(1) %>% ungroup() %>% # From the guidelines: 0 < A < 13 < B < 28 < C. Grade pending: Z filter((grade == "A" & score < 14) | (grade == "B" & score > 13) | (grade == "C" & score > 27) | (grade == "Z")) ## ............................................................................ ## City of New York borough spatial data #### # Read Geospatial data of boroughs boro_sp <- readOGR("sandbox/geo_export_bf24ed11-bed6-49a3-8af5-009cdbec9260.shp") # Extract rownames boro_sp@data$id <- rownames(boro_sp@data) # Create mapping dataframe boro_map <- fortify(boro_sp) %>% mutate(boro_code = group %>% as.character() %>% as.numeric() %>% ceiling() %>% as_factor()) %>% as_tibble() %>% # Correct for cityofnewyork.us data codes left_join(tibble( boro_code = as_factor(c(1, 2, 3, 4, 5)), boro = c("Manhattan", "Bronx", "Staten Island", "Brooklyn", "Queens") %>% fct_relevel("Manhattan", "Bronx", "Brooklyn", "Queens", "Staten Island") )) ## ............................................................................ ## HERE Geocoding #### # Load api keys from private directory source("private/api_key.R") # Only run if it hasn't been run before if(!file.exists("data/nyc_locs.csv")) { here_url <- "https://geocoder.api.here.com/6.2/geocode.json" nyc_locs_list <- pmap( list(nyc$camis, nyc$address), function(id, addr) { here_req <- GET( here_url, query = list( app_id = here_creds[["app_id"]], app_code = here_creds[["app_code"]], searchtext = addr ) ) here_json <- here_req %>% content("text") %>% fromJSON() latlng <- here_json$Response$View$Result[[1]]$Location$DisplayPosition #%>% list(id = id, latlng = latlng) }) nyc_locs <- nyc_locs_list %>% map_df(function(ll){ tibble( camis = ll$id, lat = ll$latlng$Latitude, long = ll$latlng$Longitude ) }) %>% distinct(camis, .keep_all = T) # Write geocoded locations to disk write_csv(nyc_locs, "data/nyc_locs.csv") } else { nyc_locs <- read_csv("data/nyc_locs.csv") } ## ............................................................................ ## Pediacities neighborhood spatial data #### # Read GeoJSON data into Spatial Polygon data frame nbhd_geojson <- readOGR( "sandbox/nyc_neighborhoods.geojson", "OGRGeoJSON", verbose = F ) ## ............................................................................ ## Neighborhood coding using sp::over #### nyc_sp <- nyc_locs coordinates(nyc_sp) <- ~ long + lat proj4string(nyc_sp) <- proj4string(nbhd_geojson) nyc_map <- nyc %>% left_join(nyc_locs) %>% mutate(nbhd = over(nyc_sp, nbhd_geojson)$ntaname, boro = droplevels(boro, "Missing")) %>% filter(long <= -73.70001, long >= -74.25559, lat <= 40.91553, lat >= 40.49612) ## ............................................................................ ## Subway Stop Data #### # https://data.ny.gov/widgets/i9wp-a4ja subway <- read_csv("data/subway_stops.csv") %>% clean_names() %>% rename(long = station_longitude, lat = station_latitude) %>% # Staten Island Railway Stops (from Wikipedia) bind_rows(tribble( ~lat, ~long, ~station_name, 40.54043, -74.17840, "Annadale", 40.5168, -74.2416, "<NAME>", 40.55658, -74.13663, "Bay Terrace", 40.6215, -74.0715, "Clifton", 40.5890, -74.0959, "<NAME>", 40.5444, -74.1651, "Eltingville", 40.55125, -74.15132, "Great Kills", 40.5793, -74.1093, "Grant City", 40.60347, -74.08378, "Grasmere", 40.5336, -74.1919, "Huguenot", 40.5838, -74.1030, "<NAME>", 40.5736, -74.1171, "New Dorp", 40.5647, -74.1269, "Oakwood Heights", 40.5964, -74.0875, "Old Town", 40.5224, -74.2179, "Pleasant Plains", 40.5254, -74.2003, "<NAME>", 40.5196, -74.2293, "<NAME>", 40.643333, -74.074167, "<NAME>", 40.627889, -74.075139, "Stapleton", 40.6368, -74.0748, "Tompkinsville", 40.5125, -74.2523, "Tottenville" )) # The NYC Open Data subway dataset doesn't provide a UID # We'll need to seed our RNG then generate and assign an identifier set.seed(1738) subway$station_uid <- ids::random_id(nrow(subway), bytes = 3, use_openssl = F) subway <- subway %>% select(station_uid, everything()) # Confirmation: #> (subway %>% distinct(station_uid) %>% nrow()) == nrow(subway) #[1] TRUE ## ............................................................................ ## Distance to nearest subway stop #### # Many thanks to aichao on StackOverflow: # https://stackoverflow.com/questions/39454249/checking-whether-coordinates-fall-within-a-given-radius long2UTM <- function(long) { (floor((long + 180)/6) %% 60) + 1 } ## Assuming that all points are within a zone (within 6 degrees in longitude), ## we use the first FSE's longitude to get the zone. z <- long2UTM(nyc_map[1,"long"]) ## convert the bus lat/long coordinates to UTM for the computed zone ## using the other Josh O'Brien linked answer subway_sp <- subway coordinates(subway_sp) <- c("long", "lat") proj4string(subway_sp) <- CRS("+proj=longlat +datum=WGS84") subway_xy <- spTransform(subway_sp, CRS(paste0("+proj=utm +zone=",z," ellps=WGS84"))) ## convert the FSE lat/long coordinates to UTM for the computed zone nyc_map_sp <- nyc_map coordinates(nyc_map_sp) <- c("long", "lat") proj4string(nyc_map_sp) <- CRS("+proj=longlat +datum=WGS84") nyc_map_xy <- spTransform(nyc_map_sp, CRS(paste0("+proj=utm +zone=", z, " ellps=WGS84"))) ## find the nearest neighbor in subway_xy@coords for each nyc_map_sp@coords nyc_nn <- nn2(subway_xy@coords, nyc_map_xy@coords, 1) # nn2 returns a list with the subway stop index and distance in meters for each # restaurant distance <- tibble( camis = nyc_map$camis, station_uid = subway$station_uid[nyc_nn$nn.idx], dist_m = nyc_nn$nn.dists ) nyc_full <- nyc_map %>% left_join(distance, by = "camis") %>% left_join(subway, by = "station_uid") ## ............................................................................ ## Summarize to neighborhood level #### ## ............................................................................ ## Neighborhood Population Data #### # https://data.cityofnewyork.us/City-Government/New-York-City-Population-By-Neighborhood-Tabulatio/swpk-hqdp nbhd_pop <- read_csv( "sandbox/New_York_City_Population_By_Neighborhood_Tabulation_Areas.csv" ) %>% clean_names() %>% arrange(desc(year), nta_name) %>% distinct(nta_name, .keep_all = T) %>% filter(nta_code %in% nbhd_geojson@data$ntacode) %>% select(population, nta_code, nta_name) %>% mutate(nbhd_code = fct_relevel(nta_code, nbhd_geojson@data$ntacode %>% as.character()), nbhd = fct_relevel(nta_name, nbhd_geojson@data$ntaname %>% as.character())) # Creating summary data frame nbhd_summary <- nyc_map %>% filter(grade %in% c(LETTERS[1:3], "Z")) %>% mutate(nbhd = fct_explicit_na(nbhd)) %>% group_by(boro) %>% mutate(boro_rest_n = n(), boro_pct_a = sum(grade == "A", na.rm = T) / boro_rest_n) %>% ungroup() %>% # group_by(boro_rest_n, boro, nbhd) %>% group_by(nbhd) %>% summarize( # Carry forward boro summary data boro = boro[1], boro_rest_n = boro_rest_n[1], boro_pct_a = boro_pct_a[1], # Total nyc restaurants nyc_rest_n = nrow(nyc_map), # Restaurants in neighborhood nbhd_rest_n = n(), # Total # Violations and critical violations nbhd_viol_mean = mean(viol, na.rm = T), # Total nbhd_crit_mean = mean(viol_crit, na.rm = T), # Total\ # Percent A Grade Rating nbhd_pct_a = sum(grade == "A", na.rm = T) / nbhd_rest_n, # Mean Score nbhd_score_mean = mean(score, na.rm = T), # Cuisine nbhd_cuisine_variety = unique(cuisine) %>% length() %>% divide_by(nbhd_rest_n), # Top 10 Cuisine Types, Count nbhd_american_n = sum(cuisine == "American"), nbhd_chinese_n = sum(cuisine == "Chinese"), nbhd_cafe_n = sum(cuisine == "Cafe/Coffee/Tea"), nbhd_pizza_n = sum(cuisine == "Pizza"), nbhd_italian_n = sum(cuisine == "Italian"), nbhd_mexican_n = sum(cuisine == "Mexican"), nbhd_japanese_n = sum(cuisine == "Japanese"), nbhd_latin_n = sum(cuisine == "Latin (Cuban, Dominican, Puerto Rican, South & Central American)"), nbhd_bakery_n = sum(cuisine == "Bakery"), nbhd_caribbean_n = sum(cuisine == "Caribbean"), # Top 10 Cuisine Types, Percent nbhd_american_pct = sum(cuisine == "American") / nbhd_rest_n, # nbhd_american_pct nbhd_chinese_pct = sum(cuisine == "Chinese") / nbhd_rest_n, # nbhd_chinese_pct nbhd_cafe_pct = sum(cuisine == "Cafe/Coffee/Tea") / nbhd_rest_n, # nbhd_cafe_pct nbhd_pizza_pct = sum(cuisine == "Pizza") / nbhd_rest_n, # nbhd_pizza_pct nbhd_italian_pct = sum(cuisine == "Italian") / nbhd_rest_n, # nbhd_italian_pct nbhd_mexican_pct = sum(cuisine == "Mexican") / nbhd_rest_n, # nbhd_mexican_pct nbhd_japanese_pct = sum(cuisine == "Japanese") / nbhd_rest_n, # nbhd_japanese_pct nbhd_latin_pct = sum(cuisine == "Latin (Cuban, Dominican, Puerto Rican, South & Central American)") / nbhd_rest_n, # nbhd_latin_pct nbhd_bakery_pct = sum(cuisine == "Bakery") / nbhd_rest_n, # nbhd_bakery_pct nbhd_caribbean_pct = sum(cuisine == "Caribbean") / nbhd_rest_n # nbhd_caribbean_pct ) %>% ungroup() %>% select(nbhd, nyc_rest_n, starts_with("nbhd_"), everything()) %>% filter(!is.na(nbhd)) %>% left_join(nbhd_pop) <file_sep>--- title: "Introduction" author: "<NAME>" date: "4/7/2019" output: html_document --- ```{r setup, include=FALSE} knitr::opts_chunk$set(echo = T, message = F, warning = F) ``` # Introduction Food! Cuisine! Public Health! Data analysis and plots and stuff! All gravy, I dig them all a bunch. I haven't been doing data analysis work for a living for a while and I miss it, so I've been looking for (and starting, and not quite finishing) a project that I can use to dive back in. Since this is the first post on my [new blog](https://adam-garcia.net), I thought I'd make this a part walkthrough, part process notes, part overview. As a New Yorker for about a year and a half now, one point those interests have all intersected is my curiosity from the A-B-C restaurant grades posted on all (brick and mortar[^1]) food establishments across the five boroughs. They're a tiered letter grade that just about all of us are familiar with: A is better than B. B is better than C. "Pending" means a shop is trying to contest an unfavorable score and might be offering cheaper food? But it's not clear *how* those grades are distinguished? What aspects--good or bad--about an establishment's infrastructure and cleanliness contriubte to that final grade, and are there any grade differences between boroughs, neighborhoods, or cuisine types? I'm so glad you asked, let's find out. # The Plan [<NAME>](https://en.wikipedia.org/wiki/Nathan_for_You) among some others (say, biostats classes and work experience) have distilled in me the importance of going into any project with a comprehensive, well-thought-out plan. The analysis process can sometimes get iterative and cyclical, but there are some key processes we can outline from the start: 1) Identifying the necessary data and sources, 2) Importing, cleaning, and preparing the data for analysis 3) Analyzing the data, reporting our findings [^1]: The NYC Health Department [recently rolled out](https://www1.nyc.gov/site/doh/about/press/pr2019/letter-grades-for-food-carts-and-trucks.page) the same A-B-C letter grade system, but it's not the exact same as the scoring system used for restaurants, so we'll hold off on them for now.<file_sep># ____________________________________________________________________________ # 3-plot.R #### # Initial setup theme_set(theme_minimal()) ## ............................................................................ ## Descriptive Stats #### # Cuisine nyc %>% count(cuisine) %>% ggplot(aes(x = reorder(cuisine, n), y = n)) + geom_bar(stat = "identity") + coord_flip() ## ............................................................................ ## Maps #### # Base NYC map with neighborhood boundaries nbhd_map %>% ggplot(aes(long, lat, group = group, fill = nbhd_boro)) + geom_polygon() # Chloropleth of restaurant counts manbx_freqs <- manbx_map %>% group_by(boro) %>% mutate(boro_tot = n()) %>% ungroup() %>% group_by(nbhd) %>% mutate(nbhd_tot = n(), boronbhd_pct = nbhd_tot / boro_tot, neighborhood = nbhd) %>% ungroup() %>% distinct(boro, nbhd, .keep_all = T) %>% select(boro, nbhd, boro_tot, nbhd_tot, boronbhd_pct) nbhd_map %>% left_join(manbx_freqs) %>% filter(boroughCode %in% 1:2) %>% ggplot(aes(long, lat, group = group, fill = boronbhd_pct)) + geom_polygon() + # geom_point(data = manbx_map, aes(long, lat, group = NA, fill = as.numeric(NA))) + scale_fill_viridis() + coord_map() <file_sep># ____________________________________________________________________________ # 2-data_inspect.R #### ## ............................................................................ ## Data inspection #### # First, let's explore our dataset nyc_skim <- skimr::skim(nyc) print(nyc_skim) # Next, let's get into missing data nyc_skim %>% as_tibble() %>% filter(stat == "missing" | stat == "n") %>% select(variable, stat, value) %>% spread(stat, value) %>% mutate(pct_missing = missing / n) %>% arrange(desc(pct_missing)) # Restaurant grades is one of the variables we're most interested in # Let's take a look at the nature of those missing values nyc %>% mutate(no_grade = is.na(grade) %>% ifelse("Missing", "Graded")) %>% count(boro, no_grade) %>% ggplot(aes(x = boro, y = n, fill = no_grade)) + geom_bar(stat = "identity", position = "fill") + scale_y_continuous(labels = scales::percent) + labs( title = "Missing grades by borough", x = "Borough", y = "Percent", fill = "Restaurant Grade" ) # There doesn't seem to be too much difference # Between missingness across boroughs. Let's test! nyc %>% count(boro, no_grade) %>% spread(no_grade, n) %>% select(Graded, Missing) %>% chisq.test() # Looks like there's a *statistically significant* difference # In rating fidelity across brough. What are the numbers, though? nyc %>% count(boro, no_grade) %>% spread(no_grade, n) %>% clean_names() %>% mutate(total = graded + missing, missing_pct = scales::percent(missing / total)) %>% arrange(desc(missing_pct)) %>% select(boro, missing_pct) %>% rename(Borough = boro, `Percent Missing` = missing_pct) %>% DT::datatable( options = list(paging = FALSE, searching = FALSE) ) ## ............................................................................ ## Cuisine is pretty messy, let’s look closer #### nyc %>% count(cuisine, sort = T)
9e585006bd3a08b5dace6f125718d438db3f17bb
[ "Markdown", "R", "RMarkdown" ]
5
Markdown
adam-garcia/nyc_restaurants
b6f9230d7b0d06758ed86c2349910ceb68152e6b
7754bc31b461290c2a10a275f28456d6333d1eb1
refs/heads/main
<file_sep># taf-dummy <file_sep>let a=9; let b =8; <file_sep>package myPackage; public class JmeterTest { public int sum(int a, int b) { return (a+b); } public void print() { System.out.println("Hello this is my first jmeter testing"); } }
474ea403ff4c816a75c7dc7f7eb19edd66871e98
[ "Markdown", "Java", "JavaScript" ]
3
Markdown
ajayshuklacap/taf-dummy
1249dc19e0a5df73e29648c58051edd4e598cf1f
9e925ac88b78e81b5303cdd46c01c86e55dfe7d9
refs/heads/master
<file_sep># Mooooooo ไฟล์ Mooooo งาน 5 ตาราง ไฟล์ create2 งาน Netbean <file_sep># ---------------------------------------------------------------------- # # Script generated with: DeZign for Databases V9.0.0 # # Target DBMS: MySQL 5 # # Project file: Moooo (1).dez # # Project name: # # Author: # # Script type: Database creation script # # Created on: 2015-11-26 22:47 # # ---------------------------------------------------------------------- # # ---------------------------------------------------------------------- # # Add tables # # ---------------------------------------------------------------------- # # ---------------------------------------------------------------------- # # Add table "Productdetail" # # ---------------------------------------------------------------------- # CREATE TABLE `Productdetail` ( `Code_Name` VARCHAR(40) NOT NULL, `Brand` VARCHAR(40), `Version` VARCHAR(40), `Price` VARCHAR(40), PRIMARY KEY (`Code_Name`) ); # ---------------------------------------------------------------------- # # Add table "Sender" # # ---------------------------------------------------------------------- # CREATE TABLE `Sender` ( `S_Name` VARCHAR(40), `S_Adderss` VARCHAR(200), `Company` VARCHAR(40), `Deliver` VARCHAR(40), `S_Id` VARCHAR(40) NOT NULL, PRIMARY KEY (`S_Id`) ); # ---------------------------------------------------------------------- # # Add table "Deliverdetail" # # ---------------------------------------------------------------------- # CREATE TABLE `Deliverdetail` ( `Code_Number` CHAR(40) NOT NULL, `Customer_Receiver` VARCHAR(40), `Customer_Name` VARCHAR(40), `Customer_Adderss` VARCHAR(40), `Code_Name` VARCHAR(40), `S_Id` VARCHAR(40), PRIMARY KEY (`Code_Number`) ); # ---------------------------------------------------------------------- # # Add table "customer" # # ---------------------------------------------------------------------- # INSERT INTO <customer> VALUES (<Pongsakon Jaroemsuk,bag,17/4 Village No.5 Bamroongrat Road Pibulsongkram Sub-district Muang District Chiang Rai,1001,9001>) CREATE TABLE `customer` ( `C_Name` VARCHAR(40), `C_Product` VARCHAR(40), `C_Address` VARCHAR(200), `C_Id` VARCHAR(40) NOT NULL, `S_Id` VARCHAR(40) NOT NULL, PRIMARY KEY (`C_Id`, `S_Id`) ); # ---------------------------------------------------------------------- # # Add table "Paid" # # ---------------------------------------------------------------------- # CREATE TABLE `Paid` ( `Account_Number` VARCHAR(40) NOT NULL, `amount` VARCHAR(40), `C_Id` VARCHAR(40) NOT NULL, `S_Id` VARCHAR(40) NOT NULL, PRIMARY KEY (`Account_Number`, `C_Id`, `S_Id`) ); # ---------------------------------------------------------------------- # # Add foreign key constraints # # ---------------------------------------------------------------------- # ALTER TABLE `customer` ADD CONSTRAINT `Sender_customer` FOREIGN KEY (`S_Id`) REFERENCES `Sender` (`S_Id`); ALTER TABLE `Deliverdetail` ADD CONSTRAINT `Productdetail_Deliverdetail` FOREIGN KEY (`Code_Name`) REFERENCES `Productdetail` (`Code_Name`); ALTER TABLE `Deliverdetail` ADD CONSTRAINT `Sender_Deliverdetail` FOREIGN KEY (`S_Id`) REFERENCES `Sender` (`S_Id`); ALTER TABLE `Paid` ADD CONSTRAINT `customer_Paid` FOREIGN KEY (`C_Id`, `S_Id`) REFERENCES `customer` (`C_Id`,`S_Id`);
7e6380cc4bfa113599aaed9a0b4ab55ca7720f01
[ "Markdown", "SQL" ]
2
Markdown
pongsakonjaroensuk/Mooooooo
5388e387f302837657c5ef8cad890d94ede45b67
6d9e09894879d634c094463614a4ebfd4fa25e2b
refs/heads/master
<file_sep>require "csv" class Invoice < ActiveRecord::Base validates :invoiced_on, :presence => true after_initialize do if !persisted? current_year_2_digits = Date.current.year.to_s[2,3] last_invoice = Invoice.first number_if_first_in_year = "F" + current_year_2_digits + "001" self.number = unless Invoice.count.zero? # if there is at least one invoices in the DB if last_invoice.number[1,2] == current_year_2_digits # if last invoice was numbered this year last_invoice.number.next else # if last invoice was numbered last year number_if_first_in_year end else # if there is are no invoices in the DB number_if_first_in_year end end end # Assocations ############# belongs_to :client has_many :lines, :class_name => "InvoiceLine" has_many :contracts, :through => :lines # Scopes ######## default_scope :order => "number DESC" def self.import(path) arrays = CSV.read(path) arrays[1..-1].each do |ary| row = CSV::Row.new(arrays.first, ary) Invoice.new(row.to_hash).save end end # Class methods ############### def self.sales(invoices, incl_vat = true) method = incl_vat ? :amount_incl_vat : :amount_excl_vat invoices.map(&method).sum end # Instance methods ################## delegate :name, :to => :client, :prefix => true delegate :title, :to => :contract, :prefix => true, :allow_nil => true def amount_excl_vat lines.map(&:amount_excl_vat).sum end def amount_incl_vat amount_excl_vat * (1+vat) end end <file_sep>class ClientsController < ApplicationController # Filters ######### before_filter :get_record, :only => [:edit] # Actions ######### def index @clients = Client.all end def new @client = Client.new end def edit end def create @client = Client.new(params[:client]) if @client.save redirect_to clients_path end end # Private methods ################# private def get_record @client = Client.find(params[:id]) end end <file_sep>class MissingDbIndexInvoiceClientId < ActiveRecord::Migration def self.up add_index :invoices, :client_id end def self.down remove_index :invlices, :client_id end end <file_sep>class Contract < ActiveRecord::Base # Assocations ############# belongs_to :client has_many :invoice_lines has_many :invoices, :through => :invoice_lines # Scopes ######## default_scope :order => "issued_on desc" # Instance methods ################## delegate :name, :to => :client, :prefix => true def amount_incl_vat amount_excl_vat * (1+vat) end def balance amount_incl_vat - invoice_lines.map(&:amount_incl_vat).sum end end <file_sep>module InvoiceLinesHelper def invoice_line_contract_link(line) return unless line.contract link_to line.contract.title, edit_contract_path(line.contract) end end <file_sep>class CreateInvoiceLines < ActiveRecord::Migration def self.up create_table :invoice_lines do |t| t.integer :contract_id t.text :description t.decimal :amount_excl_vat t.integer :invoice_id t.timestamps end add_index :invoice_lines, :contract_id add_index :invoice_lines, :invoice_id end def self.down drop_table :invoice_lines end end <file_sep>require 'spec_helper' describe Invoice do subject {FactoryGirl.build(:invoice)} its(:number) { should == "F11001" } context "when one invoice was created last year" do before { FactoryGirl.create(:invoice, :number => "F10001") } its(:number) { should == "F11001" } end context "when 2 invoices exist for the same year" do before do ["F11001", "F11002"].each do |e| FactoryGirl.create(:invoice, :number => e) end end its(:number) { should == "F11003" } end describe "invoiced_on" do it "should be present" do Invoice.new.should have(1).error_on(:invoiced_on) end end end<file_sep>class InvoiceAtRenamedToInvoicedOn < ActiveRecord::Migration def self.up rename_column :invoices, :invoiced_at, :invoiced_on end def self.down rename_column :invoices, :invoiced_on, :invoiced_at end end <file_sep>class RemoveAmoutExclVatFromInvoices < ActiveRecord::Migration def self.up Invoice.all.each do |invoice| invoice.lines.create( :amount_excl_vat => invoice.read_attribute(:amount_excl_vat), :contract_id => invoice.contract_id ) end remove_column :invoices, :amount_excl_vat remove_column :invoices, :contract_id end def self.down add_column :invoices, :amount_excl_vat, :decimal add_column :invoices, :contract_id, :integer add_index :invoices, :contract_id InvoiceLine.all.each do |line| line.invoice.update_attributes( :contract_id => line.contract_id, :amount_excl_vat => line.amount_excl_vat ) end InvoiceLine.destroy_all end end <file_sep>class CreateInvoices < ActiveRecord::Migration def self.up create_table :invoices do |t| t.string :number t.decimal :amount_excl_vat t.decimal :vat t.integer :client_id t.date :invoiced_at t.string :state t.timestamps end end def self.down drop_table :invoices end end <file_sep>FactoryGirl.define do factory :invoice do invoiced_on { Date.today } end end<file_sep>class InvoicesController < ApplicationController # Filters ######### before_filter :get_record, :only => [:update] # Actions ######### def index @invoices = Invoice.includes(:client, :lines) @invoices = @invoices & Client.where(:id => params[:client_id]) if params[:client_id] @invoices = @invoices & InvoiceLine.where(:contract_id => params[:contract_id]) if params[:contract_id] @invoices = @invoices.where(:invoiced_on => (Date.parse(params[:from])..Date.parse(params[:to]))) if params[:from] end def new @invoice = Invoice.new end def edit @invoice = Invoice.where(:id => params[:id]).includes(:lines => :contract).first end def create @invoice = Invoice.new(params[:invoice]) if @invoice.save redirect_to invoices_path end end def update if @invoice.update_attributes(params[:invoice]) redirect_to invoices_path end end # Private methods ################# private def get_record @invoice = Invoice.find(params[:id]) end end <file_sep>class ContractsController < ApplicationController # Filters ######### before_filter :get_record, :only => [:edit, :update] # Actions ######### def index @contracts = Contract.includes(:client, :invoice_lines => :invoice) @contracts = @contracts & Client.where(:id => params[:client_id]) if params[:client_id] @contracts = @contracts.find_all {|contract| contract.balance <= 0} if params[:complete] @contracts = @contracts.find_all {|contract| contract.balance > 0} if params[:incomplete] end def new @contract = Contract.new end def edit end def create @contract = Contract.new params[:contract] if @contract.save redirect_to contracts_path end end def update if @contract.update_attributes(params[:contract]) redirect_to contracts_path end end # Private methods ################# private def get_record @contract = Contract.find(params[:id]) end end <file_sep>module InvoicesHelper def sales(invoices, incl_vat = true) sales = Invoice.sales(@invoices, incl_vat) suffix = incl_vat ? "TTC" : "HT" [number_to_currency(sales), suffix].join(' ') end end <file_sep>class CreateContracts < ActiveRecord::Migration def self.up create_table :contracts do |t| t.integer :client_id t.decimal :amount_excl_vat t.decimal :vat t.date :issued_on t.timestamps end add_index :contracts, :client_id end def self.down drop_table :contracts end end <file_sep>class Client < ActiveRecord::Base # Assocations ############# has_many :invoices has_many :contracts # Scopes ######## default_scope :order => :name end <file_sep>class InvoiceLinesController < ApplicationController # Filters ######### before_filter :get_invoice def new @invoice_line = @invoice.lines.build end def create @invoice_line = @invoice.lines.build(params[:invoice_line]) if @invoice_line.save redirect_to edit_invoice_path(@invoice) else render :new end end def edit @invoice_line = InvoiceLine.find params[:id] end def update @invoice_line = InvoiceLine.find(params[:id]) if @invoice_line.update_attributes(params[:invoice_line]) redirect_to edit_invoice_path(@invoice) else render :edit end end # Private methods ################# def get_invoice @invoice = Invoice.find params[:invoice_id] end end
357a6f06c66cfa78a5ce5192dc118b4388963194
[ "Ruby" ]
17
Ruby
bastienrua/compta
8881459462968f02312a714db7a0dfce843a605c
79d9d20a04b0136e8eb31d045b55487685d95f67
refs/heads/master
<repo_name>priyeshjain35/usersReactSagaApp<file_sep>/src/components/Users/Users.js // import React, {useState, useEffect} from 'react'; // import ApiService from "../../Services/ApiService"; import React, { Component } from "react"; // const handleUserRowClick = (user, props) => { // const id = user.id; // props.history.push(`/user/${id}`); // } const UserTableHeader = ["Email", "First Name", "Last Name"]; // const Users = (props) => { // const [users, setUsers] = useState([]); // const [next, setNext] = useState(1); // useEffect(() => { // let response = []; // let url = `/api/users?page=${next}`; // async function fetchUsers() { // response = await ApiService(url); // if(response && response.data && response.data.length > 0) { // setUsers(response.data); // } // } // fetchUsers(); // }, [next]); // return ( // <React.Fragment> // {users && users.length && // <table> // <thead> // <tr> // {UserTableHeader.map((item, key) => <th key={key}>{item}</th>)} // </tr> // </thead> // <tbody> // {users.map((user, key) => { // return( // <tr key={key} onClick={(e) => handleUserRowClick(user, props)}> // <td>{user.email}</td> // <td>{user.first_name}</td> // <td>{user.last_name}</td> // </tr> // ); // })} // </tbody> // </table> // } // <div className="icon-container"> // <i className='far fa-arrow-alt-circle-left' onClick={() => setNext(1)}></i> // <i className='far fa-arrow-alt-circle-right' onClick={() => setNext(2)}></i> // </div> // </React.Fragment> // ) // } // export default Users; // import React, { Component } from "react"; class Users extends Component { constructor(props) { super(props); } componentDidMount = () => { this.props.getUsersRequest(1); } handleRowClick = (user) => { this.props.setSelectedUser(user); let {id} = user; this.props.history.push(`/user/${id}`); } handleArrowButtonClick = (num) => { this.props.getUsersRequest(num); } render() { const {users} = this.props; return ( <React.Fragment> {users && users.length && <table> <thead> <tr> {UserTableHeader.map((item, key) => <th key={key}>{item}</th>)} </tr> </thead> <tbody> {users.map((user, key) => { return( <tr key={key} onClick={() => this.handleRowClick(user)}> <td>{user.email}</td> <td>{user.first_name}</td> <td>{user.last_name}</td> </tr> ); })} </tbody> </table> } <div className="icon-container"> <i className='far fa-arrow-alt-circle-left' onClick={() => this.handleArrowButtonClick(1)}></i> <i className='far fa-arrow-alt-circle-right' onClick={() => this.handleArrowButtonClick(2)}></i> </div> </React.Fragment> ) } } export default Users;<file_sep>/src/redux/reducers/UserReducer.js import USERS_ACTION_TYPES from "../actionTypes/UserActionTypes"; const initialState = { loggedInUser: {}, allUsers: [], selectedUser: {} }; const UserReducer = (state = initialState, {type, payload}) => { switch(type) { case USERS_ACTION_TYPES.FETCH_USERS_SUCCESS: { return { ...state, allUsers: payload } } case USERS_ACTION_TYPES.FETCH_USERS_FAILED: { return { ...state, allUsers: [] } } case USERS_ACTION_TYPES.LOGGED_IN_SUCCESS: { return { ...state, loggedInUser: payload.user } } case USERS_ACTION_TYPES.SET_SELECTED_USER: { return { ...state, selectedUser: payload } } default: return state; } } export default UserReducer;<file_sep>/src/redux/actionTypes/UserActionTypes.js const FETCH_USERS_REQUEST = "FETCH_USERS_REQUEST"; const FETCH_USERS_SUCCESS = "FETCH_USERS_SUCCESS"; const FETCH_USERS_FAILED = "FETCH_USERS_FAILED"; const LOGIN_IN_REQUEST = "LOGIN_IN_REQUEST"; const LOGGED_IN_SUCCESS = "LOGGED_IN_SUCCESS"; const SET_SELECTED_USER = "SET_SELECTED_USER"; const USERS_ACTION_TYPES = { FETCH_USERS_REQUEST, FETCH_USERS_SUCCESS, FETCH_USERS_FAILED, LOGIN_IN_REQUEST, LOGGED_IN_SUCCESS, SET_SELECTED_USER } export default USERS_ACTION_TYPES;<file_sep>/src/components/Login/Login.js import React, { useCallback } from 'react'; import { useDispatch } from 'react-redux'; import "./index.css"; import USERS_ACTION_TYPES from '../../redux/actionTypes/UserActionTypes'; const Login = (props) => { const dispatch = useDispatch(); const loginAction = useCallback( (user) => dispatch({type: USERS_ACTION_TYPES.LOGIN_IN_REQUEST, payload: user }), [dispatch] ) const handleSubmitLogin = async (e, props) => { e.preventDefault(); const user = {}, elms = e.target.elements; for(let i=0; i < elms.length; i++) { const cur_el = elms[i]; const _name = cur_el.name || ""; const _value = cur_el.value || ""; if(_name !== "" && _value !== "") { user[_name] = _value; } } loginAction(user); props.history.push("/users"); } const handleLinkClick = () => { props.history.push("/signup"); } return ( <form className="FormContainer" onSubmit={(e) => handleSubmitLogin(e, props)}> <label> React JS </label> <input type="email" name="email" placeholder="Email" /> <input type="password" name="password" placeholder="<PASSWORD>" /> <button type="submit"> Login </button> <button className="link" onClick={(e) => handleLinkClick(e, props)}> Don't Have Account? </button> </form> ) }; export default Login;<file_sep>/src/components/Users/UsersContainer.js import { connect } from "react-redux"; import Users from "./Users"; import { getUsersRequest, setSelectedUser } from "../../redux/actions/UserActions"; // import { bindActionCreators } from "redux"; const mapStateToProps = (state) => ({ users: state.users.allUsers || [] }); const mapDispatchToProps = (dispatch) => ({ setSelectedUser: (user) => dispatch(setSelectedUser(user)), // getUsersRequest: bindActionCreators(getUsersRequest, dispatch) getUsersRequest: (num) => dispatch(getUsersRequest(num)) }); const UsersContainer = connect(mapStateToProps, mapDispatchToProps)(Users); export default UsersContainer;<file_sep>/src/Services/UsersService.js import ApiService from "./ApiService"; export const fetchUsersService = (page) => { let url = `/api/users?page=${page}`; return ApiService(url); } export const loginUserService = (user) => { let url = `/api/login`; return ApiService(url, { method: "post", body: { ...user } }); }<file_sep>/src/components/Modal/Modal.js import React from 'react'; import "./Modal.css"; const Modal = (props) => { return( // The Modal <div className="modal" style={{display: `${props.open ? 'block' : 'none'}`}}> <div className="modalContent"> <span className="close" onClick={props.handleClose}>&times;</span> <h1>Alert</h1> {props.children} <div className="modalFooter"> <button onClick={props.handleConfirm}>OK</button> <button onClick={props.handleClose}>Cancel</button> </div> </div> </div> ); } export default Modal;<file_sep>/src/redux/sagas/UsersSaga.js import { call, put, takeEvery, fork } from "redux-saga/effects"; import * as userActions from "../actions/UserActions"; import USERS_ACTION_TYPES from "../actionTypes/UserActionTypes"; import * as userServices from "../../Services/UsersService"; function* getUsers({payload}) { try { const {num} = payload; const results = yield call(userServices.fetchUsersService, num); yield put(userActions.fetchUsersSuccess({ users: results.data })); } catch (e) { console.log(e); } } function* watchGetUsersRequest() { yield takeEvery(USERS_ACTION_TYPES.FETCH_USERS_REQUEST, getUsers); } function* loginUser({payload}) { try { const results = yield call(userServices.loginUserService, payload); yield put(userActions.loginUserSuccess({ token: results.token, user: payload })); } catch(e) { console.log(e); } } function* watchLoginUserRequest() { yield takeEvery(USERS_ACTION_TYPES.LOGIN_IN_REQUEST, loginUser); } const UsersSaga = [ fork(watchGetUsersRequest), fork(watchLoginUserRequest) ] export default UsersSaga;<file_sep>/src/redux/actions/UserActions.js import USERS_ACTION_TYPES from "../actionTypes/UserActionTypes"; export const getUsersRequest = (num) => ({ type: USERS_ACTION_TYPES.FETCH_USERS_REQUEST, payload: { num } }); export const fetchUsersSuccess = ({users}) => ({ type: USERS_ACTION_TYPES.FETCH_USERS_SUCCESS, payload: users }); export const fetchUsersFailed = () => ({ type: USERS_ACTION_TYPES.FETCH_USERS_FAILED, payload: {} }); export const loginUserRequest = (user) => ({ type: USERS_ACTION_TYPES.LOGIN_IN_REQUEST, payload: { user } }); export const loginUserSuccess = (payload) => { console.log(payload); return ({ type: USERS_ACTION_TYPES.LOGGED_IN_SUCCESS, payload: payload }) }; export const setSelectedUser = (user) => ({ type: USERS_ACTION_TYPES.SET_SELECTED_USER, payload: user });<file_sep>/src/components/UnkonwnPath/UnkonwnPath.js import React from 'react' export default function UnkonwnPath() { return ( <div> From UnkonwnPath Component... </div> ) }; <file_sep>/src/components/Users/UserDetails.js import React from 'react'; import {useStore} from 'react-redux'; const UserDetails = () => { const curr_state = useStore().getState(); const { selectedUser } = curr_state.users; return ( <div className="card"> <img src={selectedUser.avatar} alt="John" style={{width:"100%"}} /> <p>{selectedUser.email}</p> <h1>{selectedUser.first_name}</h1> <p>{selectedUser.last_name}</p> </div> ) } export default UserDetails;<file_sep>/src/components/Login/SignUp.js import React from 'react'; import "./index.css"; const handleSignUpClick = (e, props) => { e.preventDefault(); props.history.push("/"); } const SignUp = (props) => { return ( <form className="FormContainer"> <label> React JS </label> <input placeholder="Email" /> <input placeholder="<PASSWORD>" /> <button onClick={(e) => handleSignUpClick(e, props)}> Sign Up </button> </form> ) } export default SignUp;<file_sep>/src/routes/routes.js import React from "react"; import { BrowserRouter as Router, Switch, Route } from "react-router-dom"; import {Login, SignUp} from "../components/Login"; import {Users, UserDetails} from "../components/Users"; import UsersContainer from "../components/Users/UsersContainer"; import UnkonwnPath from "../components/UnkonwnPath/UnkonwnPath"; import Header from "../components/Header/Header"; const Routes = () => { return ( <Router> <Header /> <Switch> <Route path="/" exact component={Login}></Route> <Route path="/signup" component={SignUp}></Route> <Route path="/users" component={UsersContainer}></Route> <Route path="/user/:id" component={UserDetails}></Route> <Route path="*" component={UnkonwnPath} /> </Switch> </Router> ); } export default Routes;<file_sep>/src/redux/store/store.js import { createStore } from "redux"; import rootReducer from "../reducers"; import rootSaga from "../sagas"; import { sagaMiddleware } from "../middleware/StoreMiddleware"; import storeMiddleware from "../middleware/StoreMiddleware"; const store = createStore(rootReducer, storeMiddleware); sagaMiddleware.run(rootSaga); export default store;
c49c1b7778b4c9bb7155277dce814fa66cc359c9
[ "JavaScript" ]
14
JavaScript
priyeshjain35/usersReactSagaApp
42d910a739673a3d0b973102f436bb45e9a074ad
999cec38849935bb3a6675979ae05c5afa58225d
refs/heads/master
<repo_name>anantajitjg/imad-2016-app<file_sep>/ui/main.js var rootURL = window.location.protocol + "//" + window.location.host;//http://anantajitjg.imad.hasura-app.io console.log(rootURL); //display logged in username function displayUser(userData) { var user_area = $("#user_area"); if (user_area.length > 0) { var username = escapeHtml(userData.username); if ($(window).width() < 430 && username.length >= 12) { username = username.substring(0, 9) + "..."; } user_area.html("<strong><img src='/img/user_logo/" + userData.user_logo + "' alt='user_logo' /> " + username + "</strong>&nbsp;&nbsp;<button id='logout_btn' onclick=\"window.location='/logout';\" class='btn_primary responsive_btn'><span class='glyphicon glyphicon-log-out' aria-hidden='true'></span><span class='responsive_text'>Logout</span></button>"); } } //functions for managing cookies function setCookie(n, v, t) { var d = new Date(); d.setTime(d.getTime() + (t * 24 * 60 * 60 * 1000)); var expires = "expires=" + d.toUTCString(); document.cookie = n + "=" + v + ";" + expires + ";path=/"; } function getCookie(n) { var name = n + "="; var arr = document.cookie.split(';'); for (var i = 0; i < arr.length; i++) { var c = arr[i]; while (c.charAt(0) == ' ') { c = c.substring(1); } if (c.indexOf(name) == 0) { return c.substring(name.length, c.length); } } return ""; } //escape html var entityMap = { '&': '&amp;', '<': '&lt;', '>': '&gt;', '"': '&quot;', "'": '&#39;', '/': '&#x2F;', '`': '&#x60;', '=': '&#x3D;' }; function escapeHtml(string) { return String(string).replace(/[&<>"'`=\/]/g, function fromEntityMap(s) { return entityMap[s]; }); } $(function () { //serialize object $.fn.serializeObject = function () { var obj = {}; $.each(this.serializeArray(), function (i, o) { var n = o.name, v = o.value; obj[n] = obj[n] === undefined ? v : $.isArray(obj[n]) ? obj[n].concat(v) : [obj[n], v]; }); return obj; }; }); <file_sep>/server.js var express = require('express'); var morgan = require('morgan'); var path = require('path'); var ArticleTemplate = require('./template/article'); var DBConfig = require('./config/db'); var Pool=require('pg').Pool; var crypto=require('crypto'); var bodyParser=require('body-parser'); var session=require('express-session'); var app = express(); app.use(morgan('combined')); app.use(bodyParser.json()); //session specific app.use(session({ secret: 'AjIMADWebApplicationOfYear2016', cookie: {maxAge: 1000*60*60*24*30}, resave: true, saveUninitialized: true })); //db specific var dbconfig=new DBConfig(); var pool=new Pool(dbconfig.setup.prod); //template specific var articleTemplate=new ArticleTemplate(); //login specific function pwd_hash(password,salt){ var key=crypto.pbkdf2Sync(password,salt,10000,512,'sha512'); return ["pbkdf2","10000",salt,key.toString('hex')].join("$"); } function pwd_verify(password,hash){ var salt=hash.split("$")[2]; var hashedPassword=pwd_hash(password,salt); if(hashedPassword===hash){ return true; } return false; } function get_auth_status(req){ var status=""; if(req.session && req.session.userAuth && req.session.userAuth.id && req.session.userAuth.role){ status=req.session.userAuth.role; } return status; } function get_random_number(min,max){ return Math.floor(Math.random() * (max - min + 1)) + min; } app.get("/login-template",function(req,res){ res.send(articleTemplate.loginTemplate()); }); app.post("/login",function(req,res){ var username=req.body.un; var password=req.body.pwd; var un_pattern=/^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$/; if(username.trim()===""||password.trim()===""||!un_pattern.test(username)||username.length>25){ res.status(400).send("Invalid input values!"); }else{ pool.query("SELECT * FROM users WHERE username=$1",[username],function(err,result){ if(err){ res.status(500).send(err.toString()); }else{ if(result.rows.length===0){ res.status(403).send("Username/Password is invalid!"); }else{ var db_pass=result.rows[0].password; if(pwd_verify(password,db_pass)){ req.session.userAuth={id:result.rows[0].id,role:result.rows[0].role}; res.send(result.rows[0].role); }else{ res.status(403).send("Username/Password is invalid!"); } } } }); } }); app.post("/register",function(req,res){ var username=req.body.un; var password=<PASSWORD>; var email=req.body.email; var un_pattern=/^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$/; if(username.trim()===""||password.trim()===""||email.trim()==""||!un_pattern.test(username)||username.length>25){ res.status(400).send("Invalid input values!"); }else{ var salt = crypto.randomBytes(128).toString('hex'); var hashed_pwd= pwd_hash(password,salt); var user_logo="user_logo.png"; var user_first_char=(username.charAt(0)).toLowerCase(); if(/[a-zA-Z0-9]/.test(user_first_char)){ user_logo=user_first_char+"_"+get_random_number(1,3)+".png"; } pool.query("INSERT INTO users(username,<PASSWORD>,email,user_logo) VALUES($1,$2,$3,$4)",[username,<PASSWORD>_pwd,email,user_logo],function(err,result){ if(err){ res.status(500).send(err.toString()); }else{ res.send("Successfully Registered!"); } }); } }); app.get("/get-user-details",function(req,res){ if(get_auth_status(req)!==""){ pool.query("SELECT username,user_logo FROM users WHERE id=$1",[req.session.userAuth.id],function(err,result){ if(err){ res.status(500).send(err.toString()); }else{ res.status(200).send(JSON.stringify(result.rows[0])); } }); }else{ res.status(400).send("Not logged in!"); } }); app.get("/logout",function(req,res){ delete req.session.userAuth; res.sendFile(path.join(__dirname, "ui", "logout.html")); }); //admin specific routes app.get('/admin',function(req,res){ if(get_auth_status(req)!=="admin"){ res.redirect("/"); }else{ res.sendFile(path.join(__dirname, "ui/admin/", "index.html")); } }); app.get('/admin/:page',function(req,res){ if(get_auth_status(req)!=="admin"){ res.redirect("/"); }else{ res.sendFile(path.join(__dirname, "ui/admin/", req.params.page+".html")); } }); //like button specific app.get('/like-article/:articleName',function(req,res){ if(get_auth_status(req)!==""){ var articleName=req.params.articleName; var userId=req.session.userAuth.id; pool.query("SELECT * FROM article WHERE article_name=$1",[articleName],function(err,result){ if(err){ res.status(500).send(err.toString()); }else{ if(result.rows.length===0){ res.status(404).send("No article found!"); }else{ var articleId=result.rows[0].id; pool.query("INSERT INTO likes(article_id, user_id) VALUES($1, $2)",[articleId,userId],function(err,result){ if(err){ res.status(500).send("Not allowed to like more than once!"); }else{ res.status(200).send("Liked"); } }); } } }); }else{ res.status(403).send("Please login to like article!"); } }); app.get('/get-likes/:articleName',function(req,res){ var likes={count:0,status:""}; var articleName=req.params.articleName; pool.query("SELECT COUNT(likes.*) FROM article,likes WHERE article.article_name=$1 AND article.id=likes.article_id GROUP BY likes.article_id",[articleName],function(err,result){ if(err){ res.status(500).send(err.toString()); }else{ if(result.rows.length!==0){ likes.count=result.rows[0].count; if(get_auth_status(req)!==""){ var userId=req.session.userAuth.id; pool.query("SELECT users.username FROM article,users,likes WHERE article.article_name=$1 AND article.id=likes.article_id AND likes.user_id=$2",[articleName,userId],function(err,result){ if(err){ res.status(500).send(err.toString()); }else{ if(result.rows.length===0){ likes.status="not liked"; }else{ likes.status="liked"; } res.status(200).send(JSON.stringify(likes)); } }); }else{ res.status(200).send(JSON.stringify(likes)); } }else{ res.send(JSON.stringify(likes)); } } }); }); //comments specific app.post('/submit-comment/:articleName',function(req,res){ if(get_auth_status(req)!==""){ var articleName=req.params.articleName; var comment=req.body.comment; var userId=req.session.userAuth.id; if(comment.trim()===""){ res.status(400).send("Not a valid comment!"); }else{ pool.query("SELECT * FROM article WHERE article_name=$1",[articleName],function(err,result){ if(err){ res.status(500).send(err.toString()); }else{ if(result.rows.length===0){ res.status(404).send("No article found!"); }else{ var articleId=result.rows[0].id; pool.query("INSERT INTO comments(article_id, user_id, comment) VALUES($1, $2, $3)",[articleId,userId,comment],function(err,result){ if(err){ res.status(500).send(err.toString()); }else{ res.status(200).send("Comment successfully inserted!"); } }); } } }); } }else{ res.status(403).send("Please login to comment!"); } }); app.get("/get-comment/:articleName",function(req,res){ var articleName=req.params.articleName; pool.query("SELECT comments.comment,comments.comment_date,users.username,users.user_logo FROM article,comments,users WHERE article.article_name=$1 AND article.id=comments.article_id AND comments.user_id=users.id ORDER BY comments.comment_date DESC",[articleName],function(err,result){ if(err){ res.status(500).send(err.toString()); }else{ res.send(JSON.stringify(result.rows)); } }); }); //articles specifc app.get("/blog",function(req,res){ res.sendFile(path.join(__dirname, "ui/", "blog.html")); }); app.post('/add-page',function(req,res){ if(get_auth_status(req)==="admin"){ var articleTitle=req.body.title; var articleName=(articleTitle.replace(/\s+/g,"-")).toLowerCase(); var article=req.body.content; var articleType=req.body.type; if(articleType==="blog"){ article=article+"<div class='blog_link'><a href='/blog' title='Return to blog'>Return to Blog</a></div>"; } pool.query("INSERT INTO article(title,date,article_name,content,article_type) VALUES($1,now(),$2,$3,$4)",[articleTitle,articleName,article,articleType],function(err,result){ if(err){ res.status(500).send("Error: "+err.toString()); }else{ res.status(200).send("Successfully added!"); } }); }else{ res.status(403).send("Not authorized!"); } }); app.post('/update-page',function(req,res){ if(get_auth_status(req)==="admin"){ var article=req.body.content; var articleID=req.body.id; pool.query("UPDATE article SET content=$1 WHERE id=$2",[article,articleID],function(err,result){ if(err){ res.status(500).send("Error: "+err.toString()); }else{ res.status(200).send("Successfully Updated!"); } }); }else{ res.status(403).send("Not authorized!"); } }); app.get('/get-articles',function(req,res){ pool.query("SELECT title,article_name FROM article ORDER By date DESC",function(err,result){ if(err){ res.status(500).send("Error: "+err.toString()); }else{ if(result.rows.length===0){ res.status(404).send("Not Found!"); }else{ res.send(JSON.stringify(result.rows)); } } }); }); app.get('/get-article',function(req,res){ var articleName=req.query.articleName; pool.query("SELECT * FROM article WHERE article_name=$1",[articleName],function(err,result){ if(err){ res.status(500).send("Error: "+err.toString()); }else{ if(result.rows.length===0){ res.status(404).send("Not Found!"); }else{ res.send(JSON.stringify(result.rows)); } } }); }); app.get('/blog-posts',function(req,res){ pool.query("SELECT * FROM article WHERE article_type='blog' ORDER BY date DESC",function(err,result){ if(err){ res.status(500).send("Error: "+err.toString()); }else{ if(result.rows.length===0){ res.status(404).send("Not Found!"); }else{ for(var i=0;i<result.rows.length;i++){ var content=result.rows[i].content; result.rows[i].content=content.substr(content.indexOf("<p>"),content.indexOf("</p>")+4); } res.send(JSON.stringify(result.rows)); } } }); }); app.get('/articles/:articleName',function(req,res){ var artName=req.params.articleName; pool.query("SELECT * FROM article WHERE article_name=$1",[artName],function(err,result){ if(err){ res.status(500).send("Error: "+err.toString()); }else{ if(result.rows.length===0){ res.status(404).sendFile(path.join(__dirname, 'ui', '404.html')); }else{ var artData=result.rows[0]; res.send(articleTemplate.create(artData)); } } }); }); //menu specific app.get('/menu',function(req,res){ pool.query("SELECT title,article_name FROM article WHERE article_type='main' ORDER BY id",function(err,result){ if(err){ res.status(500).send("Error: "+err.toString()); }else{ if(result.rows.length===0){ res.status(404).send("Not Found!"); }else{ var menu_data=result.rows; res.send(JSON.stringify(menu_data)); } } }); }); //loading static files app.use(express.static(path.join(__dirname, 'ui'))); var port = 8080; // Use 8080 for local development because you might already have apache running on 80 app.listen(port, function () { console.log(`IMAD course app listening on port ${port}!`); }); <file_sep>/config/db.js var DBConfig=function(){ var me=this; me.setup={ dev:{ user: 'postgres', database: 'imad', host: '127.0.0.1', port: '5432', password: <PASSWORD> }, prod:{ user: 'anantajitjg', database: 'anantajitjg', host: 'db.imad.hasura-app.io', port: '5432', password: <PASSWORD> } }; }; module.exports=DBConfig; <file_sep>/ui/js/home.js $(function () { //logo specific var rotate; var angle = 0; var logo = $("#logo"); function logoRotate() { angle = angle + 45; var rtVal = "rotate(" + angle + "deg)"; logo.css({"transform": rtVal, "-webkit-transform": rtVal, "-moz-transform": rtVal, "-ms-transform": rtVal, "-o-transform": rtVal}); if (angle >= 1080) { clearInterval(rotate); } } if (logo) { logo.mouseover(function () { angle = 0; rotate = setInterval(logoRotate, 50); }); logo.mouseout(function () { angle = 0; clearInterval(rotate); }); } //menu specific //alert($(window).width()); var menu_btn = $("#menu_btn"); var menu = $("#menu"); var menu_left = -(menu.outerWidth()); var menu_state = getCookie("menu_status"); if (menu_state == "active") { menu.css("left", "0"); menu_btn.addClass("active"); } else { if ($(window).width() > 877) { menu.css("left", "0"); menu_btn.addClass("active"); } else { menu.css("left", menu_left + "px"); menu_btn.removeClass("active"); } } menu_btn.click(function () { if (menu_btn.hasClass("active")) { setCookie("menu_status", "off", 30); menu.stop(true,false).animate({left: menu_left}, 500); menu_btn.removeClass("active"); } else { setCookie("menu_status", "active", 30); menu_btn.addClass("active"); menu.stop(true,false).animate({left: "0"}, 500); } }); //personal var embtn = $("#embtn"); if (embtn) { $("#embtn").attr("href", "mailto:<EMAIL>"); } }); <file_sep>/ui/js/emoji.js /* Created on : Dec 03, 2016 Author : Anantajit */ //creating emoji var emojiMap = {":angry:": "angry", ":astonished:": "astonished", ":confused:": "confused", ":disappointed:": "disappointed", ":grin:": "grin", ":grinning:": "grinning", ":joy:": "joy", ":laughing:": "laughing", ":nerd:": "nerd", ":neutral_face:": "neutral_face", ":open_mouth:": "open_mouth", ":relieved:": "relieved", ":slight_smile:": "slight_smile", ":smile:": "smile", ":smiley:": "smiley", ":sunglasses:": "sunglasses", ":thinking:": "thinking", ":thumbsdown:": "thumbsdown", ":thumbsup:": "thumbsup", ":unamused:": "unamused", ":wink:": "wink", ":-))": "laughing", ":)": "slight_smile", ":-)": "smiley", ":->": "grin", "=D": "grinning", ">:(": "angry", "B-)": "sunglasses", ",-)": "wink"}; var emoji = new Array(); var metachars = /[[\]{}()*+?.\\|^$\-,&#\s]/g; $.each(emojiMap, function (i) { if (emojiMap.hasOwnProperty(i)) { emoji.push('(' + i.replace(metachars, "\\$&") + ')'); } }); function createEmoji(string) { var regEx = new RegExp(emoji.join("|"), "g"); return String(string).replace(regEx, function (s) { return "<img src='/img/emoji/" + emojiMap[s] + ".png' alt='" + s + "' class='emoji' title=':" + emojiMap[s] + ":' />"; }); } <file_sep>/ui/js/user.js var articleName; //menu specific function getMenuDetails(){ var menu_nav=$("#menu_nav"); if(menu_nav.length>0){ $.getJSON(rootURL+"/menu",function(data){ $("#loader_menu").fadeOut('fast',function(){ for(var i=0;i<data.length;i++){ menu_nav.append("<li class='menu_title' style='display:none;'><a href='"+rootURL+"/articles/"+data[i].article_name+"'>"+data[i].title+"</a></li>"); } menu_nav.append("<li class='menu_title' style='display:none;'><a href='"+rootURL+"/blog'>Blog</a></li>"); menu_nav.find(".menu_title").fadeIn(500); }); }); } } //likes specific function submitLike(){ var likeBtn=$("#likeBtn"); likeBtn.click(function(){ $.get(rootURL+"/like-article/"+articleName).done(function(){ getLikes(); $(this).off("click").addClass("active"); $(".like_icon").hide().fadeIn(); }).fail(function(){ $(this).off("click"); }); }); } function getLikes(){ $.getJSON(rootURL+"/get-likes/"+articleName).done(function(data){ $("#like_count").text(data.count); if(data.status==="liked"){ $("#likeBtn").off("click").addClass("active"); } }); } //comments specific function displayComments(){ var comment_list=$("#comment_list"); var comments_loader=$("#loader_comments"); comments_loader.show(); $.getJSON(rootURL+"/get-comment/"+articleName).done(function(data){ if(data.length>0){ var list=""; for(var i=0;i<data.length;i++){ var comment_date=new Date(data[i].comment_date); var escaped_comment=escapeHtml(data[i].comment); if(escaped_comment.indexOf(":")!==-1){ escaped_comment=createEmoji(escaped_comment); } list+="<li><div class='user_picture float_left'><img src='/img/user_logo/"+data[i].user_logo+"' alt='user_logo' /></div><div class='comment_body float_left'><div class='comment_user'>"+escapeHtml(data[i].username)+"</div><div class='comment_message'>"+escaped_comment+"</div><div class='comment_detail'><span class='glyphicon glyphicon-calendar' aria-hidden='true'></span> "+comment_date.toDateString()+"&nbsp;&nbsp;&nbsp;<span class='glyphicon glyphicon-time' aria-hidden='true'></span> "+comment_date.toLocaleTimeString()+"</div></div><div class='clear_fix'></div></li>"; } comment_list.html(list); } }).fail(function(){ comment_list.html("<li><div class='alert-error'><span class='glyphicon glyphicon-exclamation-sign' aria-hidden='true'></span> Error loading comments!<div></li>"); }).always(function(){ comments_loader.fadeOut("slow"); }); } function displayCommentsForm(){ var content=`<textarea id="comment" placeholder="your comments here..." rows="3"></textarea><br /> <input type="submit" id="submit_comment" value="Submit Comment" class="btn_primary" /> <strong id="loader_comments"><span class='glyphicon glyphicon-comment' aria-hidden='true'></span> Loading...</strong>`; $("#comment_form").html(content); $("#commentWrapper").show(); var comment=$("#comment"); var submit_comment=$("#submit_comment"); submit_comment.click(function(){ var comment_value=comment.val(); if(comment_value.trim().length>0){ $("#loader_comments").show(); var data=JSON.stringify({comment: comment_value}); comment.css("outline","none"); $.ajax({ method: "POST", url: rootURL+"/submit-comment/"+articleName, data: data, contentType: "application/json" }).done(function(res){ comment.val(""); displayComments(); }).fail(function(xhr){ $("#comment_list").html("<li><div class='alert-error'><span class='glyphicon glyphicon-exclamation-sign' aria-hidden='true'></span> Error: Could not submit comment!<div></li>"); }); }else{ comment.focus(); comment.css("outline","1px solid #9b302e"); } }); } //get authenticated user details function getAuthUserDetails(){ $.getJSON(rootURL+"/get-user-details").done(function(data){ displayUser(data); var commentWrapper=$("#commentWrapper"); if(commentWrapper){ $("#visiter_message").remove(); submitLike(); displayCommentsForm(); } var loginWrapper=$("#loginWrapper"); if(loginWrapper){ loginWrapper.remove(); } }); } $(function(){ articleName=window.location.pathname.split('/')[2]; getAuthUserDetails(); getMenuDetails(); if(articleName){ getLikes(); displayComments(); } //home button var home_trigger=$("#home_trigger"); if(home_trigger){ home_trigger.click(function(){ window.location="/"; }); } //login specific $("#loginWrapper").load("/login-template",function(){ var loginbtn=$("#login_btn"); if(loginbtn){ loginbtn.click(function(){ $("#login").css("display","block"); $("#login_message").css("visibility","hidden"); $("#register").css("display","none"); $("#login_form")[0].reset(); $("#register_form")[0].reset(); $("#loginWrapper").fadeIn(function(){ $("#login_un").focus(); }); }); } var loginWrapper=$("#loginWrapper"); if(loginWrapper){ loginWrapper.click(function(e){ if(e.target.id=="loginWrapper"){ $(this).hide(); } }); loginWrapper.keyup(function(e) { if (e.keyCode === 27){ $(this).hide(); } }); var login_close=$(".login_close"); if(login_close){ login_close.click(function(){ loginWrapper.hide(); }); } } var reg_trigger=$("#register_trigger"); if(reg_trigger){ reg_trigger.click(function(){ $("#login").fadeOut(function(){ $("#register").fadeIn(); var reg_submit=$("#register_submit"); reg_submit.prop("disabled",false); reg_submit.css("cursor","pointer"); reg_submit.val("Register"); $("#register_un").focus(); $("#register_message").css("visibility","hidden"); $("#login_form")[0].reset(); }); }); } var lgn_trigger=$("#login_trigger"); if(lgn_trigger){ lgn_trigger.click(function(){ $("#register").fadeOut(function(){ $("#login").fadeIn(); $("#login_un").focus(); $("#login_message").css("visibility","hidden"); $("#register_form")[0].reset(); }); }); } var lgn_form=$("#login_form"); if(lgn_form){ var lgn_submit=$("#login_submit"); var lgn_message=$("#login_message"); lgn_form.submit(function(e){ e.preventDefault(); lgn_submit.val("Please Wait..."); lgn_submit.css("cursor","wait"); var data=JSON.stringify($(this).serializeObject()); $.ajax({ method: "POST", url: rootURL+"/login", data: data, contentType: "application/json" }).done(function(res){ if(res==="admin"){ window.location="/admin"; }else{ window.location.reload(); } }).fail(function(xhr){ lgn_submit.val("Login"); lgn_submit.css("cursor","pointer"); if(xhr.status===400){ lgn_message.css("visibility","visible").html("<div class='alert-error'>Please provide valid values then try again!</div>"); }else{ lgn_message.css("visibility","visible").html("<div class='alert-error'>"+xhr.responseText+"</div>"); } }); }); } var reg_form=$("#register_form"); if(reg_form){ var reg_submit=$("#register_submit"); var reg_message=$("#register_message"); $("#register_un").keyup(function(){ var register_un_val=$(this).val(); if(register_un_val.length>=25){ reg_message.css("visibility","visible").html("<div class='alert-note'>Note: Maximum of 25 characters allowed!</div>"); } }); $("#register_un").change(function(){ var register_un_val=$(this).val(); var un_pattern=/^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$/; if(!un_pattern.test(register_un_val)){ reg_message.css("visibility","visible").html("<div class='alert-error'>Only alphanumeric characters or single hyphens (not at the beginning or end) are allowed as username!</div>"); }else{ if(register_un_val.length<=25){ reg_message.html("&nbsp;"); reg_message.css("visibility","hidden"); } } }); reg_form.submit(function(e){ e.preventDefault(); reg_submit.val("Please Wait..."); reg_submit.css("cursor","wait"); var data=JSON.stringify($(this).serializeObject()); $.ajax({ method: "POST", url: rootURL+"/register", data: data, contentType: "application/json" }).done(function(res){ reg_submit.val("Registered!"); reg_submit.prop("disabled",true); reg_submit.css("cursor","not-allowed"); reg_message.css("visibility","visible").html("<div class='alert-success'>"+res+"</div>"); }).fail(function(xhr){ reg_submit.val("Register"); reg_submit.css("cursor","pointer"); if(xhr.status===400){ reg_message.css("visibility","visible").html("<div class='alert-error'>Please provide valid values then try again!</div>"); }else{ reg_message.css("visibility","visible").html("<div class='alert-error'>Username or Email already exist! Fail to register the user!</div>"); } }); }); } }); //blog specific var blog_content=$("#blog_content"); if(blog_content.length>0){ $.getJSON(rootURL+"/blog-posts").done(function(data){ if(data.length>0){ var list=""; for(var i=0;i<data.length;i++){ var post_date=new Date(data[i].date); var article=$(data[i].content).text(); var article_link=rootURL+"/articles/"+data[i].article_name; list+="<div class='blog_post_wrapper'><div class='blog_headings'><a href='"+article_link+"'>"+data[i].title+"</a></div><div class='post_date'>"+post_date.toDateString()+"</div><div class='blog_posts'>"+article+"........<a href='"+article_link+"'>more&gt;&gt;</a></div></div>"; } $(".blogLoader").fadeOut(function(){ blog_content.html(list); }); } }).fail(function(){ blog_content.html("<li><div class='alert-error'><span class='glyphicon glyphicon-exclamation-sign' aria-hidden='true'></span> Fail to load blog posts!<div></li>"); }); } //skill specific var prg=$(".prg_value"); if(prg){ prg.each(function(){ var _this=$(this); var prg_value=Math.round(((_this.width()/_this.parent().width())*100)*100)/100; $(this).css("width","0").animate({width:prg_value+"%"},1200,function(){ $(".prg_text").fadeIn(); }); }); } });<file_sep>/README.md # [IMAD 2016 Application](https://anantajitjg-imad-2016.herokuapp.com/) This web application is developed as part of the Introduction to Modern Application Development(IMAD) 2016 Course. IMAD is an online course offered by IIT Madras & Hasura. <http://www.imad.tech/> ![IMAD Application](https://cloud.githubusercontent.com/assets/22009263/20518910/e577962a-b0c6-11e6-98da-d606bb182462.png) ## Developer **Anantajit** - <https://anantajitjg.github.io> - <https://github.com/anantajitjg> ## Credits - Dr. <NAME> - Faculty, IIT Madras - <NAME> - Head of Engineering, Hasura - IMAD Team <file_sep>/ui/js/admin.js //get admin details function getAdminDetails() { $.getJSON(rootURL + "/get-user-details").done(function (data) { displayUser(data); }); } $(function () { getAdminDetails(); //home button for admin var home_trigger = $("#home_trigger"); if (home_trigger.length > 0) { home_trigger.click(function () { window.location = "/admin"; }); } //initialize tiny mce if (typeof (tinymce) !== 'undefined') { tinymce.init({ selector: 'textarea', height: 500, contextmenu: false, plugins: [ 'advlist autolink lists link image charmap print preview hr anchor pagebreak', 'searchreplace wordcount visualblocks visualchars code fullscreen', 'insertdatetime media nonbreaking save table contextmenu directionality', 'emoticons paste textcolor colorpicker textpattern imagetools codesample toc' ], toolbar1: 'undo redo | insert | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image', toolbar2: 'print preview media | forecolor backcolor emoticons | codesample', browser_spellcheck: true }); } //add page var add_page_form = $("#add_page_form"); if (add_page_form.length > 0) { var add_page_submit = $("#add_page_submit"); var add_page_message = $(".user_message"); add_page_form.submit(function (e) { e.preventDefault(); add_page_submit.val("Please wait...."); var articleTitle = $("#page_title").val(); var articleType = $("input[name=type]:checked").val(); var article = tinyMCE.activeEditor.getContent(); var dataObj = {title: articleTitle, type: articleType, content: article}; data = JSON.stringify(dataObj); $.ajax({ method: "POST", url: rootURL + "/add-page", data: data, contentType: "application/json" }).done(function (res) { add_page_message.css("visibility", "visible").html("<div class='alert-success'>Successfully added!</div>"); $("#add_page_form")[0].reset(); }).fail(function () { add_page_message.css("visibility", "visible").html("<div class='alert-error'>Fail to add page!</div>"); }).always(function () { add_page_submit.val("Add Article"); }); }); } //edit page var edit_page_title = $("#edit_page_title"); if (edit_page_title.length > 0) { $.getJSON(rootURL + "/get-articles").done(function (data) { var list = "<option value=''>--choose--</option>"; for (var i = 0; i < data.length; i++) { list += "<option value='" + data[i].article_name + "'>" + data[i].title + "</option>"; } edit_page_title.html(list); }); edit_page_title.change(function () { var article = this.value; $.getJSON(rootURL + "/get-article", {articleName: article}).done(function (data) { tinyMCE.activeEditor.setContent(data[0].content); $("#edit_page_id").val(data[0].id); }); }); var edit_page_form = $("#edit_page_form"); var edit_page_submit = $("#edit_page_submit"); var edit_page_message = $(".user_message"); edit_page_form.submit(function (e) { e.preventDefault(); edit_page_submit.val("Please wait...."); var article = tinyMCE.activeEditor.getContent(); var articleID = $("#edit_page_id").val(); var dataObj = {id: articleID, content: article}; data = JSON.stringify(dataObj); $.ajax({ method: "POST", url: rootURL + "/update-page", data: data, contentType: "application/json" }).done(function (res) { edit_page_message.css("visibility", "visible").html("<div class='alert-success'>Successfully Updated!</div>"); }).fail(function () { edit_page_message.css("visibility", "visible").html("<div class='alert-error'>Fail to add page!</div>"); }).always(function () { edit_page_submit.val("Update"); }); }); } });
c0bc711f6337c21b8a1d3780c8d0b5fce11533dd
[ "JavaScript", "Markdown" ]
8
JavaScript
anantajitjg/imad-2016-app
3c362331f41946c5b12d2b98c6f26fa8a0ba7bdd
c4b35723da9a7559f4fbc3cc40fcabe2d7c0d141
refs/heads/master
<repo_name>fahadishaque786/FoodHubLatest<file_sep>/FoodHub/platforms/android/assets/www/js/controller/SellerController.js 'use strict'; foodHub.controller('SellerCtrl', [ 'UserService', 'toastr', function(UserService, toastr) { var self = this; self.item = { itemName : '', quantity : '', deliveryTime : '', cost : '', deliveryType : '' }; self.ItemImage; self.saveItem = function(form) { toastr.clear(); if (form.$valid) { //var file = new File([self.ItemImage], "name"); //var byt = file.getAsBinary(); //alert(file); alert(self.ItemImage); } else { toastr.error('Please provide valid information.'); console.log("form contains some errors...hahahha...."); } }; /** * **************************** photo capturing of item: * **************************** */ function onPhotoDataSuccess(imageData) { // Get image handle // var smallImage = document.getElementById('smallImage'); // Unhide image elements // smallImage.style.display = 'block'; // Show the captured photo // The inline CSS rules are used to resize the image // smallImage.src = imageData; self.ItemImage = imageData; } function onPhotoFileSuccess(imageData) { // Get image handle console.log(JSON.stringify(imageData)); // Get image handle // var smallImage = document.getElementById('smallImage'); // Unhide image elements // smallImage.style.display = 'block'; // Show the captured photo // The inline CSS rules are used to resize the image // smallImage.src = imageData; self.ItemImage = imageData; } self.onPhotoURISuccess = function(imageURI) { // Uncomment to view the image file URI // console.log(imageURI); // Get image handle // var largeImage = document.getElementById('largeImage'); // Unhide image elements // largeImage.style.display = 'block'; // Show the captured photo // The inline CSS rules are used to resize the image // largeImage.src = imageURI; } self.capturePhotoWithData = function() { // Take picture using device camera and retrieve image as // base64-encoded // string navigator.camera.getPicture(onPhotoDataSuccess, onFail, { quality : 50 }); } self.capturePhotoWithFile = function() { navigator.camera.getPicture(onPhotoFileSuccess, onFail, { quality : 50, destinationType : Camera.DestinationType.DATA_URL, sourceType : Camera.PictureSourceType.PHOTOLIBRARY }); } self.apturePhotoWithFile = function() { navigator.camera.getPicture(onPhotoFileSuccess, onFail, { quality : 50, destinationType : Camera.DestinationType.DATA_URL, sourceType : Camera.PictureSourceType.PHOTOLIBRARY }); } // A button will call this function // self.getPhoto = function(source) { // Retrieve image file location from specified source navigator.camera.getPicture(onPhotoURISuccess, onFail, { quality : 50, destinationType : destinationType.DATA_URL, sourceType : source }); } // Called if something bad happens. // function onFail(message) { alert('Failed because: ' + message); } } ]);<file_sep>/FoodHub/www/js/controller/LoginController.js foodHub.controller('LoginCtrl',['UserService','toastr','$scope','$window','$location','$rootScope','$localStorage', function(UserService, toastr,$scope,$window,$location,$rootScope,$localStorage) { var self = this; $scope.user = {id: '', fullName: '', userName: '', email: '', password: '',authToken:''}; $scope.userName=''; $scope.db = window.openDatabase("foodhub", '1', 'foodhub db', 1024*1024*100); UserService.db = $scope.db; $scope.flag; $scope.validateUser = function(form) { toastr.clear(); if(form.userName.$error.required) { toastr.info('user name is required'); } else if(form.userName.$error.minlength) { toastr.info('Username minimum length required is 4'); } else if(form.password.$error.required) { toastr.info('password is required'); } else if(form.password.$error.minlength) { toastr.info('Password minimum length required is 4'); } else if(form.$valid) { var len; var authTokenFound = false; $scope.db.transaction(function(transaction) { console.log($scope.user.userName); transaction.executeSql("SELECT * FROM users ", [], function(transaction,results) { if(results.rows.length>0) { for(var i=0;i<results.rows.length;i++) { console.log("---> id: "+results.rows[i].id+" --> username: "+results.rows[i].username); } } transaction.executeSql("SELECT auth_token FROM users where username=? and auth_token is not null ", [$scope.user.userName], function(transaction,results) { if(results.rows.length>0) { console.log("authentication token found... login is successfull"); $scope.userName = $scope.user.userName; UserService.userName = $scope.user.userName; console.log('UserService.userName'+UserService.userName); toastr.info('login successful'); $localStorage.username=results.rows[0].username; $scope.flag = true; $location.path('/home'); $scope.$digest(); } else { console.log("authentication token not found... login is not successfull... now calling web service to validate the user"); UserService.validateUser($scope.user).then( function(d) { $scope.user.id = d.id; console.log($scope.user.id); $scope.user.email = d.email; console.log($scope.user.email); $scope.user.authToken = d.authToken; console.log($scope.user.authToken); $scope.user.fullName = d.fullName; console.log($scope.user.fullName); if(!($scope.user.authToken==null || $scope.user.authToken==undefined)) { $scope.db.transaction(function(transaction) { var executeQuery = "update users set auth_token = null"; transaction.executeSql(executeQuery, [] , function(transaction, result) { console.log('updatde users auth tokens null'); executeQuery = "INSERT INTO users (id,fullname,username,email,auth_token) VALUES (?,?,?,?,?)"; transaction.executeSql(executeQuery, [$scope.user.id,$scope.user.fullName,$scope.user.userName,$scope.user.email,$scope.user.authToken] , function(transaction, result) { console.log('record is inserted'); UserService.userName = $scope.user.userName; console.log('UserService.userName'+UserService.userName); $localStorage.username=$scope.user.userName; // $scope.$apply(function() { $scope.flag = true; // }); // $rootScope.$digest(); $location.path('/home'); $scope.$digest(); }, function(error) { console.log('Error occurred in insertion'+error); console.log('updating the user'); executeQuery = "update users set auth_token=? where username=?"; transaction.executeSql(executeQuery, [$scope.user.authToken,$scope.user.userName] , function(transaction, result) { console.log('record is updated'); $scope.userName = $scope.user.userName; toastr.info('login successful'); UserService.userName = $scope.user.userName; console.log('UserService.userName'+UserService.userName); $localStorage.username=$scope.user.userName; // $scope.$apply(function() { $scope.flag = true; $scope.$digest(); // }); // $rootScope.$digest(); $location.path('/home'); $scope.$digest(); }, function(error) { console.log('Error occurred in updation'+error); }); }); }, function(error) { console.log('Error occurred in updatde users auth tokens null'+error); }); }); } else { toastr.info('invalid credentials'); } }, function(errResponse) { console.error('Error while validating user'); } ); } }, function(error) { console.log('Error occurred in selectio'+error); /*$scope.flag = false;*/ }); }); }, function(error) { console.log("error in selection"); /*$scope.flag = false;*/ }); } }; $scope.logout = function() { console.log("in logout function"); console.log("username"+UserService.userName); //alert("in logout function"); $scope.db.transaction(function(transaction) { transaction.executeSql("update users set auth_token=null where username=?", [UserService.userName], function(transaction, result) { console.log('record is update'); $scope.user.userName = UserService.userName; UserService.logoutUser($scope.user).then( function(d) { console.log(d); toastr.info('logout successful'); //$scope.$apply(function() { $scope.flag = false; //}); //$rootScope.$digest(); $location.path('/login'); $scope.$digest(); }, function(errResponse){ console.error('Error while validating user'); } ); }, function(error) { console.log('Error occurred in update'+error); }); }); }; $scope.isUserLogin = function() { //alert("checking login"); $scope.db.transaction(function(transaction) { transaction.executeSql("SELECT * FROM users where auth_token is not null ", [], function(transaction,results) { if(results.rows.length>0) { //alert(" checking localstorage "+$localStorage.username); //alert(" userName " + results.rows[0].username); UserService.userName = results.rows[0].username; console.log("user is already login"); $localStorage.username=results.rows[0].username; //$scope.$apply(function() { $scope.flag = true; $scope.$digest(); //}); //$rootScope.$digest(); //alert(" record mill gaya hai"+$localStorage.username); } else { //alert("user is not login"); $localStorage.username=""; // $scope.$apply(function() { $scope.flag = false; $scope.$digest(); // }); //$rootScope.$digest(); //alert(" record nai mila"); } }, function(error) { //alert("user is not login"); //$scope.$apply(function() { /*$scope.flag = false;*/ //}); //$scope.$digest(); //alert(" error a gaya hai record fetch karnay main "); }); }); } }]);<file_sep>/FoodHub/www/js/routing/ui-router.js foodHub.config([ '$routeProvider', function($routeProvider) { $routeProvider .when('/', { templateUrl : 'view/welcome.html' }) .when('/profile', { templateUrl : 'view/editProfile.html', controller : 'ProfileCtrl' }) .when('/resetPassword', { templateUrl : 'view/resetPassword.html', controller : 'ResetPassCtrl' }) .when('/login', { templateUrl : 'view/login.html', controller : 'LoginCtrl' }) .when('/seller', { templateUrl : 'view/seller.html', controller : 'SellerCtrl' }) .when('/home', { templateUrl : 'view/home.html' }) .when('/register', { templateUrl : 'view/register.view.html', controller : 'RegistrationCtrl' }) .when('/search', { templateUrl : 'view/search.html' }) }]);<file_sep>/FoodHub/platforms/android/assets/www/js/controller/RegistrationController.js foodHub.controller('RegistrationCtrl',['UserService','toastr', function(UserService,toastr) { var self = this; self.user = {id: '', fullName: '', userName: '', email: '', password: ''}; self.registerNewUser = function(form){ toastr.clear(); if(form.fullName.$error.required){ toastr.info('full name is required'); }else if(form.fullName.$error.minlength){ toastr.info('Minimum length required is 3'); }else if(form.userName.$error.required){ toastr.info('user name is required'); }else if(form.userName.$error.minlength){ toastr.info('Minimum length required is 5'); }else if(form.email.$invalid){ toastr.info('email is invalid'); }else if(form.userName.$error.required){ toastr.info('email is required'); }else if(form.password.$error.required){ toastr.info('password is required'); }else if(form.password.$error.minlength){ toastr.info('Minimum length required is 5'); } if(form.$valid){ UserService.createUser(self.user).then( function(d) { console.log(d); if(d == "added"){ toastr.success('You have don...'); }else if(d == "unExist"){ toastr.info('Provided user name already exist.'); }else if(d == "emailExist"){ toastr.info('Provided email already exist.'); } }, function(errResponse){ console.error('Error while creating user'); toastr.error('Failed to create, try again'); } ); }else{ console.log("form contains some errors...hahahha...."); } }; }]);<file_sep>/FoodHub/www/js/controller/SellerController.js 'use strict'; foodHub.controller('SellerCtrl', [ 'UserService', 'toastr','$scope', function(UserService, toastr,$scope) { var self = this; self.item = { id : '0', name : '', quantity : '', cost : '', deliveryType : '', deliveryTime : '', base64Image : '', latitude : '', longitude : '', userId : '' }; $scope.stepsModel = []; self.saveItem = function(form) { toastr.clear(); if (form.$valid) { var dd = angular.toJson(self.item); UserService.saveProduct(self.item).then(function (response) { toastr.warning(response); }); } else { toastr.error('Please provide valid information.'); console.log("form contains some errors...hahahha...."); } }; /** * **************************** photo capturing of item: * **************************** */ function onPhotoDataSuccess(imageData) { // Get image handle // var smallImage = document.getElementById('smallImage'); // Unhide image elements // smallImage.style.display = 'block'; // Show the captured photo // The inline CSS rules are used to resize the image // smallImage.src = imageData; self.ItemImage = imageData; //document.getElementById('ss').src=imageData; var blob = new Blob([imageData], {type: "image/jpg"}); var reader = new FileReader(); reader.onload = $scope.imageIsLoaded; reader.readAsDataURL(blob); } function onPhotoFileSuccess(imageData) { // Get image handle console.log(imageData); // Get image handle // var smallImage = document.getElementById('smallImage'); // Unhide image elements // smallImage.style.display = 'block'; // Show the captured photo // The inline CSS rules are used to resize the image // smallImage.src = imageData; self.ItemImage = imageData; //document.getElementById('ss').src=imageData; var blob = new Blob([imageData], {type: "image/jpg"}); var reader = new FileReader(); reader.onload = $scope.imageIsLoaded; reader.readAsDataURL(blob); } $scope.imageIsLoaded = function(e){ $scope.$apply(function() { $scope.stepsModel.push(e.target.result); }); } self.onPhotoURISuccess = function(imageURI) { // Uncomment to view the image file URI // console.log(imageURI); // Get image handle // var largeImage = document.getElementById('largeImage'); // Unhide image elements // largeImage.style.display = 'block'; // Show the captured photo // The inline CSS rules are used to resize the image // largeImage.src = imageURI; } self.capturePhotoWithCamera = function() { // Take picture using device camera and retrieve image as // base64-encoded // string navigator.camera.getPicture(onPhotoDataSuccess, onFail, { quality : 50 }); } self.capturePhotoWithFile = function() { navigator.camera.getPicture(onPhotoFileSuccess, onFail, { quality : 50, destinationType : Camera.DestinationType.DATA_URL, sourceType : Camera.PictureSourceType.PHOTOLIBRARY }); } self.apturePhotoWithFile = function() { navigator.camera.getPicture(onPhotoFileSuccess, onFail, { quality : 50, destinationType : Camera.DestinationType.DATA_URL, sourceType : Camera.PictureSourceType.PHOTOLIBRARY }); } // A button will call this function // self.getPhoto = function(source) { // Retrieve image file location from specified source navigator.camera.getPicture(onPhotoURISuccess, onFail, { quality : 50, destinationType : destinationType.DATA_URL, sourceType : source }); } // Called if something bad happens. // function onFail(message) { alert('Failed because: ' + message); } } ]);<file_sep>/FoodHub/www/js/facebook.js // APP FACEBOOK ID var appId = '1516434941703425'; //CONFIGURE URL IN FACEBOOK APP->Internet por celular->Mobile Site URL //var redirectUrl = 'http://ntrenat.elnucleo.org/ok.html'; var redirectUrl = 'http://localhost:9090/get/3b7d1c01b28ae330651dada7b9c85be1/redirect.html'; // APP FACEBOOK PERMISSIONS var permissions = 'email,publish_actions'; var facebook = { //Function facebook login onFacebookLogin: function(option) { var authorize_url = "https://m.facebook.com/dialog/oauth?"; authorize_url += "client_id=" + appId; authorize_url += "&redirect_uri=" + redirectUrl; authorize_url += "&display=touch"; authorize_url += "&response_type=token"; authorize_url += "&type=user_agent"; if(permissions !== '') { authorize_url += "&scope=" + permissions; } option = (option)?option:'location=no'; var appInBrowser = window.open(authorize_url, '_blank', option); appInBrowser.addEventListener('loadstop', function(location) { //alert('yeh kia'); //alert(location.url); //alert(location.url.indexOf("access_token")); if(location.url.indexOf("http://localhost:9090/setVars.html") != -1) { // alert('setVars sy values nkalo'); var fbDataArray = getJsonFromUrl(location.url); if (fbDataArray['email'].indexOf('@') != -1) { // alert(" email " + fbDataArray['email'] +" id "+fbDataArray['id']); var db = window.openDatabase("foodhub", '1', 'foodhub db', 1024*1024*100); db.transaction(function(transaction) { var executeQuery = "INSERT INTO users (id,username,email,auth_token) VALUES (?,?,?,?)"; transaction.executeSql(executeQuery, [fbDataArray['id'],fbDataArray['email'],fbDataArray['email'],fbDataArray['id']] , function(transaction, result) { // alert('record is inserted'); window.close(); window.location = "home.html"; }, function(error) { console.log('Error occurred in insertion'+error); console.log('updating the user'); executeQuery = "update users set auth_token=? where username=?"; transaction.executeSql(executeQuery, [fbDataArray['id'],fbDataArray['email']] , function(transaction, result) { //alert('record is updated'); console.log('login successful'); window.close(); window.location = "home.html"; }, function(error) { console.log('Error occurred in updation'+error); }); }); }); } else { // alert('Access Denied'); $('#userData').html('<div style="color: red; text-align:center; height: 50px; width: 300px; margin: 0px auto; font-size: 25px; margin-top: 10px;">ACCESS DENIED!</div>'); } } if (location.url.indexOf("access_token") !== -1) { // alert('wtf'); // Success var access_token = location.url.match(/access_token=(.*)$/)[1].split('&expires_in')[0]; // alert(access_token); window.localStorage.setItem('facebook_accessToken', access_token); //this.onFacebookGetInfo(); appInBrowser.close(); } if (location.url.indexOf("error_reason=user_denied") !== -1) { // User denied window.localStorage.setItem('facebook_accessToken', null); appInBrowser.close(); } function getJsonFromUrl(urlString) { var parameterQuery = urlString.split("?"); var data = parameterQuery[1].split("&"); var result = {}; for(var i=0; i<data.length; i++) { var item = data[i].split("="); result[item[0]] = decodeURIComponent(item[1]); } return result; } }); }, //Function logout onFacebookLogout: function() { var logout_url = encodeURI("https://www.facebook.com/logout.php?next=" + redirectUrl + "&access_token=" + window.localStorage.getItem('facebook_accessToken')); var appInBrowser = window.open(logout_url, '_blank', 'hidden=yes,location=no'); appInBrowser.addEventListener('loadstart', function(location) { if(location.url == logout_url) { // Do nothing } else if(location.url === redirectUrl + '#_=_' || location.url === redirectUrl) { window.localStorage.setItem('facebook_accessToken', null); appInBrowser.close(); } }); }, //Function check With Login onFacebookCheckWithLogin: function() { var access_token = window.localStorage.getItem('facebook_accessToken'); var url = "https://graph.facebook.com/me?access_token=" + access_token; $.getJSON(url, function() { facebook.onFacebookLogin('hidden=yes,location=no'); }) .error(function() { facebook.onFacebookLogin(); }); }, //Function get info onFacebookGetInfo: function() { alert('get info'); if(window.localStorage.getItem('facebook_accessToken') === null) { return false; } var url = "https://graph.facebook.com/me?access_token=" + window.localStorage.getItem('facebook_accessToken'); $.getJSON(url, function(data) { window.localStorage.setItem('facebook_uid', data.id); }) .error(function() { window.localStorage.setItem('facebook_accessToken', null); window.localStorage.setItem('facebook_uid', null); }); }, /* Function post feed Param post object: {message: 'Lorem lipsum', link: 'http://ntrenat.elnucleo.org', picture: 'http://ntrenat.elnucleo.org/logo.png', name: 'Esto es un nombre', caption: 'ntrenat.elnucleo.org', description: 'lorem lipsum'} */ onFacebookPostFeed: function(post) { if(window.localStorage.getItem('facebook_accessToken') === null) { return false; } var url = "https://graph.facebook.com/me/feed?access_token="+window.localStorage.getItem('facebook_accessToken'); $.post(url, post) .error(function() { window.localStorage.setItem('facebook_accessToken', null); window.localStorage.setItem('facebook_uid', null); }); } }; <file_sep>/FoodHub/www/js/service/services.js (function () { 'use strict'; angular .module('foodHub') .factory('UserService', UserService); UserService.$inject = ['$http']; function UserService($http) { var service = {}; var userName = ""; service.ResetPassword = ResetPassword; service.createUser = createUser; service.validateUser = validateUser; service.logoutUser = logoutUser; return service; function ResetPassword(pass, token, id) { return $http.get('http://localhost:8080/RestWS/jaxrs/users/resetPassword?token='+token+'&pass='+pass+'id='+id).then(handleSuccess, handleError('Error resetting password service')); } function createUser(user) { return $http({ method : "POST", url : "http://localhost:8080/RestWS/jaxrs/users/register", data : angular.toJson(user), headers : { 'Content-Type' : 'application/json' } }) .then(handleSuccess, handleError('Error while creating user')); } function validateUser(user) { console.log(angular.toJson(user)); userName=user.userName; console.log(userName); return $http({ method : "POST", url : "http://localhost:8080/RestWS/jaxrs/users/validate", data : angular.toJson(user), headers : { 'Content-Type' : 'application/json' } }) .then(handleSuccess, handleError('Error while creating user')); } function logoutUser(user) { console.log(angular.toJson(user)); userName; console.log("user object username "); console.log("service username "+userName); return $http({ method : "POST", url : "http://localhost:8080/RestWS/jaxrs/users/logout", data : angular.toJson(user), headers : { 'Content-Type' : 'application/json' } }) .then(handleSuccess, handleError('Error while creating user')); } function handleSuccess(res) { return res.data; } function handleError(error) { return function () { return { success: false, message: error }; }; } } })();
0aeabc550bd6403ba5c9a267ebfd9eb9f83f3663
[ "JavaScript" ]
7
JavaScript
fahadishaque786/FoodHubLatest
cdd11b9c44ac717800de50a9756a91389b70b6b6
af65abab38070780bd01a87e64c384501ff4bbb9
refs/heads/main
<repo_name>cyanBone/nsq<file_sep>/go.mod module github.com/cyanBone/nsq go 1.16 require github.com/nsqio/go-nsq v1.0.8 <file_sep>/nsq.go package nsq import ( "github.com/nsqio/go-nsq" "sync" "time" ) type Producer struct { mu sync.Mutex //参数锁 nsqAddress string producer *nsq.Producer } func (p *Producer) init() error { var err error if p.producer != nil && p.producer.Ping() == nil { return nil } p.mu.Lock() defer p.mu.Unlock() if p.producer != nil && p.producer.Ping() == nil { return nil } p.producer, err = nsq.NewProducer(p.nsqAddress, nsq.NewConfig()) if err != nil { return err } p.producer.SetLogger(nil, 0) return nil } func (p *Producer) Publish(topic string, message []byte) error { err := p.init() if err != nil { return err } if message == nil { return nil } return p.producer.Publish(topic, message) } func (p *Producer) Stop() { if p.producer != nil { p.producer.Stop() } } type handle struct { handle func(message []byte) error } func (hm *handle) HandleMessage(msg *nsq.Message) error { return hm.handle(msg.Body) } type Consumer struct { nsqAddress string consumer *nsq.Consumer } func (nc *Consumer) Consumer(topic string, channel string, thread int, handler func(message []byte) error) error { var err error cfg := nsq.NewConfig() cfg.LookupdPollInterval = time.Second * 15 nc.consumer, err = nsq.NewConsumer(topic, channel, cfg) if err != nil { return err } nc.consumer.SetLogger(nil, 0) nc.consumer.AddConcurrentHandlers(&handle{handle: handler}, thread) return nc.consumer.ConnectToNSQD(nc.nsqAddress) } func (nc *Consumer) Stop() { if nc.consumer != nil { nc.consumer.Stop() } } // 创建nsq消费者 func NewConsumer(connection string) *Consumer { return &Consumer{nsqAddress: connection} } // 创建nsq生产者 func NewProducer(connection string) *Producer { return &Producer{nsqAddress: connection} }
3ba52ccde7ff698d989adcfa65f100b6a5b38db9
[ "Go", "Go Module" ]
2
Go Module
cyanBone/nsq
564e2364413377cba4c8b1efd1e85286c2b3baf8
badc16b1a08407db7543d0f262a450dd972016d1
refs/heads/master
<repo_name>piyushmittal20/cuesportsindia<file_sep>/src/csi/home/admin.py from django.contrib import admin from .models import Sponser admin.site.register(Sponser) # Register your models here. <file_sep>/src/csi/tournament/models.py from django.db import models from datetime import datetime SPORT_CHOICES = ( ('Billiards','BILLIARDS'), ('Snooker', 'SNOOKER'), ('6Reds', '6REDS'), ('10Reds','10REDS'), ('Pool','POOL'), ('Carrom','CARROM'), ) EVENT_CHOICES = ( ('IBSF','IBSF'), ('ACBS','ACBS'), ('National','NATIONAL'), ('Invitation','INVITATION'), ('Open Entry','OPEN ENTRY'), ('Professional','PROFESSIONAL'), ) class Tournament(models.Model): id = models.AutoField(primary_key=True) tournament_name = models.CharField(max_length=50, default="") event_category = models.CharField(max_length=50, choices = EVENT_CHOICES,default="") sports_category = models.CharField(max_length=50, choices = SPORT_CHOICES,default="") entry_fee = models.IntegerField(default=0) prize_money = models.IntegerField(default=0) tournament_image1 = models.ImageField(upload_to='tournament/images') tournament_image2 = models.ImageField(upload_to='tournament/images',blank=True) tournament_venue = models.TextField() tournament_startdate = models.DateTimeField(null=True) tournament_enddate = models.DateTimeField(null=True) tournament_desc = models.TextField() # bank details bank_name = models.CharField(max_length=500, default="") last_date_of_entry = models.DateTimeField(null=True) account_number = models.PositiveBigIntegerField(default=0) ifsc_code = models.CharField(max_length=100, blank=True) paytm_number = models.CharField(max_length=15,default="") # contact details # name1 = models.CharField(max_length=100,default="",) # name2 = models.CharField(max_length=100, default="",blank=True) # name3 = models.CharField(max_length=100, default="",blank=True) # name4 = models.CharField(max_length=100, default="",blank=True) # contact_num1 = models.charField(max_length=15,default="") # contact_num2 = models.charField(max_length=15,default="",blank=True) # contact_num3 = models.charField(max_length=15,default="",blank=True) # contact_num4 = models.charField(max_length=15,default="",blank=True) def __str__(self): return self.tournament_name<file_sep>/src/csi/tournament/migrations/0003_auto_20201218_1506.py # Generated by Django 3.1.4 on 2020-12-18 09:36 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('tournament', '0002_auto_20201217_1537'), ] operations = [ migrations.AlterField( model_name='tournament', name='sports_category', field=models.CharField(choices=[('Billiards', 'BILLIARDS'), ('Snooker', 'SNOOKER'), ('6Reds', '6REDS'), ('10Reds', '10REDS'), ('Pool', 'POOL'), ('Carrom', 'CARROM')], default='', max_length=50), ), ] <file_sep>/src/csi/home/migrations/0001_initial.py # Generated by Django 3.1.4 on 2020-12-18 09:36 from django.db import migrations, models class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.CreateModel( name='Sponser', fields=[ ('id', models.AutoField(primary_key=True, serialize=False)), ('name', models.CharField(max_length=100)), ('Banner', models.ImageField(upload_to='home/images')), ('url', models.URLField()), ], ), ] <file_sep>/src/csi/home/views.py from django.shortcuts import render from tournament.models import Tournament from news.models import Newse from .models import Sponser from datetime import datetime # Create your views here. def index(request): tour = Tournament.objects.all().order_by("tournament_startdate") # news_featured = Newse.objects.filter(news_category='Featured').order_by('-id')[0], news_featured = { 'news1' : Newse.objects.filter(news_category='Featured').order_by('-id')[0], # 'news2' : Newse.objects.filter(news_category='Featured').order_by('-id')[1], # 'news3' : Newse.objects.filter(news_category='Featured').order_by('-id')[2] } news_latest = Newse.objects.filter(news_category='Latest').order_by("-timestamp")[0:4] spons1 = Sponser.objects.all()[0:5] spons2 = Sponser.objects.all()[5:] today = datetime.now() params = {'spons1':spons1,'spons2':spons2,'tour': tour,'today':today,'news_featured':news_featured,'news_latest':news_latest} return render(request,"home/index.html",params) def tournaments(request, myid): tourview = Tournament.objects.filter(id=myid) params = {'tourview': tourview[0]} return render(request, "tounament/tournaments.html", params) def events(request): event = Tournament.objects.values('id','tournament_name','tournament_startdate').order_by("tournament_startdate") params = {'event': event} return render(request,"home/events.html",params) def about(request): def contact(request): pass <file_sep>/src/csi/news/migrations/0001_initial.py # Generated by Django 3.1.4 on 2020-12-17 09:21 from django.db import migrations, models class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.CreateModel( name='Newse', fields=[ ('id', models.AutoField(primary_key=True, serialize=False)), ('news_category', models.CharField(choices=[('Latest', 'LATEST'), ('Featured', 'FEATURED')], default='', max_length=50)), ('news_title', models.CharField(default='', max_length=50)), ('news_desc', models.TextField(default='')), ('news_image', models.ImageField(null=True, upload_to='mycsi/images')), ('timestamp', models.DateTimeField(null=True)), ], ), ] <file_sep>/src/csi/news/models.py from django.db import models from datetime import datetime NEWS_CATEGORY = ( ('Latest','LATEST'), ('Featured', 'FEATURED'), ) # Create your models here. class Newse(models.Model): id = models.AutoField(primary_key=True) news_category = models.CharField(max_length=50, choices = NEWS_CATEGORY,default="") news_title = models.CharField(max_length=50,default="") news_desc = models.TextField(default="") news_image = models.ImageField(upload_to='news/images',blank=True) timestamp = models.DateTimeField(null=True) def __str__(self): return self.news_title<file_sep>/src/csi/home/models.py from django.db import models # Create your models here. class Sponser(models.Model): id = models.AutoField(primary_key=True) name = models.CharField(max_length=100) Banner = models.ImageField(upload_to="home/images") url = models.URLField(max_length=200) def __str__(self): return self.name <file_sep>/src/csi/tournament/migrations/0002_auto_20201217_1537.py # Generated by Django 3.1.4 on 2020-12-17 10:07 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('tournament', '0001_initial'), ] operations = [ migrations.RemoveField( model_name='tournament', name='Destination_category', ), migrations.RemoveField( model_name='tournament', name='bank_address', ), migrations.RemoveField( model_name='tournament', name='contact_num1', ), migrations.RemoveField( model_name='tournament', name='contact_num2', ), migrations.RemoveField( model_name='tournament', name='name1', ), migrations.RemoveField( model_name='tournament', name='name2', ), migrations.RemoveField( model_name='tournament', name='sport_category', ), migrations.AddField( model_name='tournament', name='event_category', field=models.CharField(choices=[('IBSF', 'IBSF'), ('ACBS', 'ACBS'), ('National', 'NATIONAL'), ('Invitation', 'INVITATION'), ('Open Entry', 'OPEN ENTRY'), ('Professional', 'PROFESSIONAL')], default='', max_length=50), ), migrations.AddField( model_name='tournament', name='sports_category', field=models.CharField(choices=[('Billiards', 'BILLIARDS'), ('ACBS', 'ACBS'), ('Snooker', 'SNOOKER'), ('6RED', '6RED'), ('Pool', 'POOL'), ('Carrom', 'CARROM')], default='', max_length=50), ), migrations.AddField( model_name='tournament', name='tournament_image2', field=models.ImageField(blank=True, upload_to='tournament/images'), ), migrations.AlterField( model_name='tournament', name='ifsc_code', field=models.CharField(blank=True, max_length=100), ), migrations.AlterField( model_name='tournament', name='paytm_number', field=models.CharField(default='', max_length=15), ), migrations.AlterField( model_name='tournament', name='tournament_image1', field=models.ImageField(upload_to='tournament/images'), ), ] <file_sep>/src/csi/news/admin.py from django.contrib import admin from .models import Newse admin.site.register(Newse) # Register your models here. <file_sep>/src/csi/news/migrations/0002_auto_20201217_1537.py # Generated by Django 3.1.4 on 2020-12-17 10:07 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('news', '0001_initial'), ] operations = [ migrations.AlterField( model_name='newse', name='news_image', field=models.ImageField(blank=True, default='', upload_to='news/images'), preserve_default=False, ), ] <file_sep>/src/csi/home/urls.py from django.urls import path from. import views urlpatterns=[ path('',views.index,name="home"), # path('/about',views.contact,name="home-about"), # path('/contact',views.contact,name="home-contact"), path('event/',views.events,name="home-event"), ]<file_sep>/src/csi/tournament/migrations/0001_initial.py # Generated by Django 3.1.4 on 2020-12-17 09:21 from django.db import migrations, models class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.CreateModel( name='Tournament', fields=[ ('id', models.AutoField(primary_key=True, serialize=False)), ('tournament_name', models.CharField(default='', max_length=50)), ('sport_category', models.CharField(choices=[('Billiards', 'BILLIARDS'), ('Snooker', 'SNOOKER'), ('Pool', 'POOL')], default='', max_length=50)), ('Destination_category', models.CharField(choices=[('National', 'NATIONAL'), ('INTERNATIONAL', 'INTERNATIONAL')], default='', max_length=50)), ('entry_fee', models.IntegerField(default=0)), ('prize_money', models.IntegerField(default=0)), ('tournament_image1', models.ImageField(upload_to='mycsi/images')), ('tournament_venue', models.TextField()), ('tournament_startdate', models.DateTimeField(null=True)), ('tournament_enddate', models.DateTimeField(null=True)), ('tournament_desc', models.TextField()), ('bank_name', models.CharField(default='', max_length=500)), ('bank_address', models.TextField(default='')), ('last_date_of_entry', models.DateTimeField(null=True)), ('account_number', models.PositiveBigIntegerField(default=0)), ('ifsc_code', models.PositiveBigIntegerField(default=0)), ('paytm_number', models.PositiveBigIntegerField(default=0)), ('name1', models.CharField(default='', max_length=100)), ('name2', models.CharField(default='', max_length=100)), ('contact_num1', models.PositiveBigIntegerField(default=0)), ('contact_num2', models.PositiveBigIntegerField(default=0)), ], ), ]
7f0eab9fa02c586dd9b95c26237d41dee4880e0b
[ "Python" ]
13
Python
piyushmittal20/cuesportsindia
a35df6564d4228c27d4a7adb5b9bf4a7a1421617
b740a75b22229391f9a78d70fe85b674d77169ee
refs/heads/master
<file_sep>namespace TestApp.src { class SecondTable { private readonly int _ID; private readonly double _Xs; private readonly double _Ys; private readonly double _Xe; private readonly double _Ye; public SecondTable(string id, string xs, string ys, string xe, string ye) { if (!int.TryParse(id, out _ID)) _ID = 0; if (!double.TryParse(xs, out _Xs)) _Xs = 0; if (!double.TryParse(ys, out _Ys)) _Ys = 0; if (!double.TryParse(xe, out _Xe)) _Xe = 0; if (!double.TryParse(ye, out _Ye)) _Ye = 0; } public int ID { get { return _ID; } } public double Xs { get { return _Xs; } } public double Ys { get { return _Ys; } } public double Xe { get { return _Xe; } } public double Ye { get { return _Ye; } } } } <file_sep>namespace TestApp.src { class FirstTable { private readonly int _ID; private readonly double _X; private readonly double _Y; public FirstTable(string id, string x, string y) { if (!int.TryParse(id, out _ID)) _ID = 0; if (!double.TryParse(x, out _X)) _X = 0; if (!double.TryParse(y, out _Y)) _Y = 0; } public int ID { get { return _ID; } } public double X { get { return _X; } } public double Y { get { return _Y; } } } } <file_sep>using System; using System.Collections.Generic; using System.IO; using System.Linq; using TestApp.src; namespace TestApp { class Program { /*Формат таблицы: ID - X - Y*/ static List<FirstTable> mainPoints = new List<FirstTable>(); /*Формат таблицы: ID - Xs - Ys - Xe - Ye*/ static List<SecondTable> segPoints = new List<SecondTable>(); /*Путь к папке с программой*/ static string path = AppDomain.CurrentDomain.BaseDirectory; /*Результат*/ static double Result = 0; static void Main(string[] args) { /*Чтение данных из таблиц (формат таблиц (MS-DOS) .csv)*/ try { using (var reader = new StreamReader($"{path}firstTable.csv")) { while (!reader.EndOfStream) { var line = reader.ReadLine().Split(';').ToList(); mainPoints.Add(new FirstTable(line[0], line[1], line[2])); } mainPoints.RemoveAt(0);//удаление шапки } using (var reader = new StreamReader($"{path}secondTable.csv")){ while (!reader.EndOfStream) { var line = reader.ReadLine().Split(';').ToList(); segPoints.Add(new SecondTable(line[0], line[1], line[2], line[3], line[4])); } segPoints.RemoveRange(0,2); } } catch { Console.WriteLine($"Ошибка, не удалось прочесть одну из таблиц"); } foreach (var item in segPoints) CheckLine(item); Console.WriteLine($"Результат: {Result}"); Console.ReadKey(); } /*Проверка на принадлежность отрезка к фигуре и вычисления его длины*/ static void CheckLine(SecondTable item) { int check = 0; /* 0 - отрезок вне фигуры 1 - отрезок пересекает фигуру 2 - отрезок полностью внутри фигуры */ double _x = 0, _y = 0; bool startIn = false, endIn = false; if (pnpoly(item.Xs, item.Ys)) { startIn = true; check++; } if (pnpoly(item.Xe, item.Ye)) { endIn = true; check++; } if (check == 1) { var a = GetXY(item); _x = a[0]; _y = a[1]; a.Clear(); } /*длина отрезка = √((X2-X1)²+(Y2-Y1)²)*/ if (check == 2) Result += Math.Sqrt(Math.Pow(Math.Abs(item.Xe - item.Xs), 2) + Math.Pow(Math.Abs(item.Ye - item.Ys), 2)); else if (check == 1 && startIn) Result += Math.Sqrt(Math.Pow(Math.Abs(_x - item.Xs), 2) + Math.Pow(Math.Abs(_y - item.Ys), 2)); else if (check == 1 && endIn) Result += Math.Sqrt(Math.Pow(Math.Abs(item.Xe - _x), 2) + Math.Pow(Math.Abs(item.Ye - _y), 2)); } /*Вычисление точки пересечения*/ static List<double> GetXY(SecondTable item) { double xi1 = item.Xs, xi2 = item.Xe, yi1 = item.Ys, yi2 = item.Ye; double x = 0, y = 0, tmp, k1, k2, b1, b2; /* Чтобы вычислить правильные угловые коэффициенты, * должно выполняться условие x1 ≤ x2 и x3 ≤ x4. * Если нет - то необходимо поменять местами пары координат отрезков. */ if (xi1 > xi2) { tmp = xi1; xi1 = xi2; xi2 = tmp; tmp = yi1; yi1 = yi2; yi2 = tmp; } /*Определяем угловой коэффициент в уравнении прямой*/ if (yi1 == yi2) k1 = 0; else k1 = (yi2 - yi1) / (xi2 - xi1); b1 = yi1 - k1 * xi1;//Вычисление свободного члена в уравнении прямой for (int i = 0; i < mainPoints.Count - 1; i++) { int j = i + 1 != mainPoints.Count ? i++ : 0;//Вычисление второй вершины грани фигуры double xm1 = mainPoints[i].X, xm2 = mainPoints[j].X, ym1 = mainPoints[i].Y, ym2 = mainPoints[j].Y; if (xm1 >= xm2) { tmp = xm1; xm1 = xm2; xm2 = tmp; tmp = ym1; ym1 = ym2; ym2 = tmp; } if (ym2 == ym1) k2 = 0; else k2 = (ym2 - ym1) / (xm2 - xm1); if (k1 == k2) continue;//Проверка отрезков на параллельность b2 = ym1 - k2 * xm1; x = (b2 - b1) / (k1 - k2); y = k1*x + b1; /*Проверка на принадлежность точки к отрезку*/ if ((x < Math.Max(xi1, xm1)) || (x > Math.Min(xi2, xm2))) continue; else if ((xi1 <= xm2 && xm2 <= xi2)||(xi1 <= xm1 && xm1 <= xi2)){ break; } } List<double> XY = new List<double>(); XY.Add(x); XY.Add(y); return XY; } /*Проверка точки на принадлежность*/ static bool pnpoly(double x, double y) { var npol = mainPoints.Count(); var xp = mainPoints.Select(f => f.X).ToArray(); var yp = mainPoints.Select(f => f.Y).ToArray(); bool c = false; for (int i = 0, j = npol - 1; i < npol; j = i++) if ((((yp[i] <= y) && (y < yp[j])) || ((yp[j] <= y) && (y < yp[i]))) && (((yp[j] - yp[i]) != 0) && (x > ((xp[j] - xp[i]) * (y - yp[i]) / (yp[j] - yp[i]) + xp[i])))) c = !c; return c; } } }
a4c2e0a0741d61e1238aea6893567a7571642427
[ "C#" ]
3
C#
Bal4ss/testUnit1
93382b8cc3d043fbb1c8a349075d3239831d13f1
ee45609c6afef471efd3862b3d0fb5a1cf2dcc0b
refs/heads/master
<file_sep>library(ggplot2) library(ggthemes) library(lubridate) library(dplyr) library(tidyr) library(DT) library(scales) library(data.table) colors = c("#CC1011", "#665555", "#05a399", "#cfcaca", "#f5e840", "#0683c9", "#e075b0") files = list.files() uber <- rbindlist(lapply(list.files(), fread)) head(uber) #formatting the Date/Time column and then creating day, month, year columns as factors uber$`Date/Time` = as.POSIXct(uber$`Date/Time`, format = "%m/%d/%Y %H:%M:%S") uber$Time <- format(as.POSIXct(uber$`Date/Time`, format = "%m/%d/%Y %H:%M:%S"), format="%H:%M:%S") uber$Date.Time <- ymd_hms(uber$`Date/Time`) uber$day <- factor(day(uber$`Date/Time`)) uber$month <- factor(month(uber$`Date/Time`, label = TRUE)) uber$year <- factor(year(uber$`Date/Time`)) uber$dayofweek <- factor(wday(uber$`Date/Time`, label = TRUE)) uber$hour = factor(hour(hms(uber$Time))) uber$minute = factor(minute(hms(uber$Time))) uber$second = factor(second(hms(uber$Time))) #Plotting trips by hours uber_hour = uber %>% group_by(hour) %>% summarise(Total = n()) datatable(uber_hour) ggplot(uber_hour, aes(hour, Total)) + geom_bar(stat = 'identity', fill = 'green', color = 'yellow') + ggtitle('Trips Every Hour') + theme(legend.position = 'none') + scale_y_continuous(labels = comma) uber_month_hour <- uber %>% group_by(month,hour) %>% summarise(Total_rides = n()) ggplot(uber_month_hour, aes(hour, Total_rides, fill = month))+ geom_bar(stat = 'identity') + ggtitle('Trips for Every Hour in a Month') + theme(legend.position = 'none') + scale_y_continuous(labels = comma) day_trips = uber %>% group_by(day) %>% summarise(Total = n()) datatable(day_trips) ggplot(day_trips, aes(day, Total)) + geom_bar(stat = 'identity') + ggtitle('Trips Everyday') + theme(legend.position = 'none') + scale_y_continuous(labels = comma) day_month_trip = uber %>% group_by(month, day) %>% summarise(Total = n()) ggplot(day_month_trip, aes(day, Total, fill = month)) + geom_bar(stat = 'identity') + ggtitle('Trips By Day and Month')+ theme(legend.position = 'none')+ scale_y_continuous(labels = comma)+ scale_fill_manual(values = colors) #Now let's find Number of trips per month uber_month = uber %>% group_by(month) %>% summarise(Total = n()) ggplot(uber_month, aes(month, Total, fill = month)) + geom_bar(stat = 'identity') + ggtitle('Total Trips in a Month') + theme(legend.position = 'none') + scale_y_continuous(labels = comma)+ scale_fill_manual(values = colors) ggplot(uber, aes(Base)) + geom_bar(fill = 'blue')+ scale_y_continuous(labels = comma) + ggtitle('Trips By Bases') #Trips per Days of the week ggplot(uber, aes(Base, fill = dayofweek))+ geom_bar(position = 'dodge')+ scale_y_continuous(labels = comma)+ scale_fill_manual(values = colors) #Now let's try some heatmaps uber_day_hour = uber%>% group_by(day, hour) %>% summarise(Total = n()) ggplot(uber_day_hour, aes(day, hour, fill = Total))+ geom_tile(color = 'black')+ ggtitle('Hour and Day Heatmap') #Now let create some map visualizations min_lat <- 40.5774 max_lat <- 40.9176 min_long <- -74.15 max_long <- -73.7004 ggplot(uber, aes(Lon, Lat, color = Base)) + geom_point(size = 1)+ scale_x_continuous(limits = c(min_long, max_long)) + scale_y_continuous(limits = c(min_lat, max_lat)) <file_sep># Uber_Data_Analysis This project is about analysing uber rides in New York from April, 2014 to September, 2014.
0e153590e81416eacb879c0c69576e98643ba5c9
[ "Markdown", "R" ]
2
R
Anthony-Osei/Uber_Data_Analysis
48734aac688bfdd1523d3d9382c4679f38264776
b885f1cb73f83982ad43c48df6e0c51de1ae7541
refs/heads/master
<file_sep>/* * @Author: GZY * @Date: 2016-11-17 16:29:00 * @Last Modified by: GZY * @Last Modified time: 2016-11-17 16:32:36 */ 'use strict'; (function (){ })()
d815a83a5abb2ce1888142dbafe41a23144e428c
[ "JavaScript" ]
1
JavaScript
zy-gu/js
7befb1535d59523b5d74d43720967f6071a696d1
c47972b2bf6c2fa15b9b37d9a066bbcbf61f53ee
refs/heads/master
<file_sep>create table users ( email varchar(255) primary key, created_at timestamp default now() ); insert into users (email) values ('<EMAIL>'); insert into users(email) values ('<EMAIL>'); select * from users order by created_at desc; select count(*) from users; -- find the earliest date a user joined select date_format(created_at, '%M %D %Y') from users order by created_at asc limit 1; -- find the email of the earlierst user select email, created_at from users order by created_at limit 1; -- or select email from users where created_at = (select min(created_at) from users); -- find users - month joined select monthname(created_at) month, count(*) count from users group by month order by count; -- find yahoo emails select count(email) from users where email like '%yahoo.com'; -- calc nunber of users for each email host select case when email like '%gmail.com' then 'gmail' when email like '%yahoo.com' then 'yahoo' when email like '%hotmail.com' then 'hotmail' else 'other' end as provider, count(*) as count from users group by provider order by count desc; <file_sep>const express = require('express'); const app = express(); const port = 3000; app.set('view engine', 'ejs'); app.use(express.static(__dirname + '/public')); const bodyParser = require('body-parser'); //to parse body of post request to extract data from post request app.use(bodyParser.urlencoded({extended: true})); const mysql = require('mysql'); const connection = mysql.createConnection({ host: 'localhost', user: 'root', password: '123', database: 'join_us' }); app.get('/', (req, res) => { //find count of users in the db //respond with count const q = 'select count(*) as count from users'; connection.query(q, (err, results)=>{ if(err) throw err; const count = results[0].count; res.render('home', {data: count}); }); }); app.get('/joke', (req, res) => { const joke = 'dog'; res.send(joke); console.log('requested joke route'); }); app.get('/random_num', (req, res) => { const num = Math.floor(Math.random() * 10) + 1; res.send(''+ num); }); app.post('/register', (req, res)=>{ const email=req.body.email; const q = 'insert into users set email = ?'; connection.query(q, email, (err, results, fields)=>{ if(err) throw err; console.log(results); res.redirect('/'); }) }); app.listen(port, () => console.log(`Server running on port ${port}`));
dff39b1a341aa7f4e98c7f3f75c024482a91d2da
[ "JavaScript", "SQL" ]
2
SQL
vadzimk/node_sql
eb4441523f4dbf1533a54b6fc140b26ab3a1eb4b
a38be048d21284598bd2859cb859ed561f67e9f9
refs/heads/master
<file_sep><?php namespace App; use Illuminate\Database\Eloquent\Model; class Service extends Model { protected $fillable = ['title', 'description', 'price', 'location', 'time', 'rating_provider', 'rating_client', 'categories', 'client_id']; public function client() { return $this->belongsTo('App\Client'); } public function provider() { return $this->hasOne('App\Provider'); } public function proposals() { return $this->hasMany('App\Proposal'); } } <file_sep><?php namespace App\Http\Controllers; use App\Service; use Illuminate\Http\Request; class ServiceController extends Controller { public function index() { $services = Service::paginate(10); return view('services.index', compact('services')); } public function category(Request $request) { $category= $request->input('categories'); $price= $request->input('price'); $location= $request->input('location'); // return $category; $All_service = Service::all(); $result=Service::where(['category'=>$category,'price'=>$price,'location'=>$location])->get(); return $result ; // return $this->index($result); // return view('Service.all_service', compact('All_service','category')); } } <file_sep><?php /* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | Here is where you can register web routes for your application. These | routes are loaded by the RouteServiceProvider within a group which | contains the "web" middleware group. Now create something great! | */ use App\Client; use App\Provider; use App\Service; use App\Proposal; Route::get('/', function () { return view('welcome'); }); Route::get('/dashboard', 'ClientController@dashboard')->name('dashboard'); Route::get('/dashboard/create', 'ClientController@create')->name('service.create'); Route::post('/dashboard/save', 'ClientController@save'); Route::get('/services/{service}', 'ClientController@show'); Route::post('/category','ServiceController@category')->name('category'); Route::get('/services', 'ServiceController@index')->name('services'); //Route::resource('home', 'ClientController'); Auth::routes(); Route::get('/home', 'HomeController@index')->name('home'); <file_sep><?php namespace App; use Illuminate\Database\Eloquent\Model; class Provider extends Model { // protected $fillable = ['name', 'email', 'age', 'image', 'phone', 'id', 'user_id', 'role']; public function providers() { return $this->belongsTo('App\Service'); } public function proposal() { return $this->hasOne('App\Proposal'); } } <file_sep><?php namespace App\Http\Controllers; use App\Client; use App\Service; use App\User; use Illuminate\Http\Request; use Illuminate\Support\Facades\Auth; class ClientController extends Controller { public function __construct() { $this->middleware('auth'); } public function dashboard() { // return Auth::id(); // // TODO: fix bug handle if user not exist $role = Auth::user()->role; if ($role == 'client') redirect('/'); $user = Client::findOrFail(Auth::id()); // logged user id; $services = $user->services()->paginate(9); return view('client.dashboard', compact('services')); } public function create() { return view('client.create-service'); } public function save(Request $request) { $this->validate($request, [ 'title' => 'required', 'description' => 'required', 'price' => 'required', 'location' => 'required', 'time' => 'required', 'category' => 'required' ]); Service::create([ 'title' => $request->title, 'description' => $request->description, 'price' => $request->price, 'location' => $request->location, 'time' => $request->time, 'category' => $request->category, 'client_id' => Auth::id() ]); return redirect('/home'); } public function show($id) { $service = Service::findOrFail($id); return view('/client/service', compact('service')); } }
136c88335eccb2aaa53f622c6dfdd745706e62d2
[ "PHP" ]
5
PHP
be5dmetack/laravel_services
c718ceba46d7f8f52b4c0395d89cbd841a5b651d
0070d3f9357f51bcbde3f04d68aad6130d6dd692
refs/heads/master
<file_sep>-- -------------------------------------------------------- -- Host: localhost -- Server version: 10.5.10-MariaDB-log - mariadb.org binary distribution -- Server OS: Win64 -- HeidiSQL Version: 10.2.0.5599 -- -------------------------------------------------------- /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET NAMES utf8 */; /*!50503 SET NAMES utf8mb4 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -- Dumping structure for table pr.payrates CREATE TABLE IF NOT EXISTS `payrates` ( `idPayRates` int(11) NOT NULL AUTO_INCREMENT, `PayRateName` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL, `value` double NOT NULL, `TaxPercentage` double NOT NULL, `PayType` int(11) NOT NULL, `PayAmount` double NOT NULL, `PT-Level` double NOT NULL, PRIMARY KEY (`idPayRates`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table pr.payrates: ~0 rows (approximately) /*!40000 ALTER TABLE `payrates` DISABLE KEYS */; /*!40000 ALTER TABLE `payrates` ENABLE KEYS */; -- Dumping structure for table pr.employee CREATE TABLE IF NOT EXISTS `employee` ( `idEmployee` int(11) NOT NULL, `EmployeeNumber` int(11) DEFAULT NULL, `LastName` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL, `FirstName` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL, `SSN` int(11) DEFAULT NULL, `PayRate` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `PayRates_idPayRates` int(11) DEFAULT NULL, `VacationDays` int(11) NOT NULL DEFAULT 0, `PaidToDays` double NOT NULL DEFAULT 0, `PaidLastYear` double NOT NULL DEFAULT 0, KEY `employee_payrates_idpayrates_foreign` (`PayRates_idPayRates`), CONSTRAINT `employee_payrates_idpayrates_foreign` FOREIGN KEY (`PayRates_idPayRates`) REFERENCES `payrates` (`idPayRates`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Dumping data for table pr.employee: ~11 rows (approximately) /*!40000 ALTER TABLE `employee` DISABLE KEYS */; INSERT INTO `employee` (`idEmployee`, `EmployeeNumber`, `LastName`, `FirstName`, `SSN`, `PayRate`, `PayRates_idPayRates`, `VacationDays`, `PaidToDays`, `PaidLastYear`) VALUES (15, NULL, 'Zieme', 'Dannie', NULL, '99123983', NULL, 2, 813.38, 6454), (6, NULL, 'Macejkovic', 'Martina', NULL, '3594055', NULL, 4, 96454.09, 14482), (78, NULL, 'Armstrong', 'Felicity', NULL, '9', NULL, 4, 2664.73, 7781), (30, NULL, 'O\'Keefe', 'Lyla', NULL, '712018550', NULL, 0, 40801.55, 12049), (84, NULL, 'Schiller', 'Raheem', NULL, '6058', NULL, 2, 65188.23, 10413), (38, NULL, 'Pfannerstill', 'Lynn', NULL, '1', NULL, 1, 28822.81, 10204), (90, NULL, 'Osinski', 'Chyna', NULL, '71098', NULL, 1, 4271.04, 12572), (56, NULL, 'Rau', 'Milo', NULL, '3780480', NULL, 0, 37937.96, 10611), (25, NULL, 'Renner', 'Keon', NULL, '66380457', NULL, 5, 43666.12, 9772), (66, NULL, 'Terry', 'Torey', NULL, '449738043', NULL, 2, 1609.27, 8638), (100, NULL, '<NAME>', '<NAME>', NULL, NULL, NULL, 0, 0, 0); /*!40000 ALTER TABLE `employee` ENABLE KEYS */; /*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */; /*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; <file_sep><?php namespace Database\Seeders; use DateTime; use Illuminate\Database\Seeder; class DatabaseSeeder extends Seeder { /** * Seed the application's database. * * @return void */ public function run() { \App\Models\HRM_Personal::factory(10)->create()->each(function ($employee) { $now = new DateTime(); $factory = \App\Models\HRM_Employment::factory()->create([ 'Employee_ID' => $employee->Employee_ID, ]); $hiredate = $factory->Hire_Date; $daysTillNow = $now->diff($hiredate)->format('%a'); $workingDays = rand(0, $daysTillNow); // <= Days from recruiment date $paidLastYear = rand(5000, 15000); $paidToDays = round($paidLastYear / 365 * $workingDays, 2); \App\Models\PR_Employee::factory()->create([ 'idEmployee' => $employee->Employee_ID, 'FirstName' => $employee->First_Name, 'LastName' => $employee->Last_Name, 'PaidToDays' => $paidToDays, 'PaidLastYear' => $paidLastYear, ]); }); } } <file_sep><?php namespace App\Http\Controllers; use App\Models\PR_Employee; use App\Models\HRM_Personal; use App\Models\HRM_Employment; class NotificationController extends Controller { public function benefit() { $list = HRM_Personal::where('benefits_old', '!=', 0)->get(); return view('notifications.benefit', compact('list')); } public function daysoff() { $allowed = 3; $list = PR_Employee::where('VacationDays', '>', $allowed)->orderBy('VacationDays', 'DESC')->get(); return view('notifications.daysoff', compact('list', 'allowed')); } public function fullyear() { $list = HRM_Employment::where('Hire_Date', '<', now()->subDays(365))->orderBy('Hire_Date', 'ASC')->get(); return view('notifications.fullyear', compact('list')); } public function birthday() { $list = HRM_Personal::whereMonth('Birthday', date_format(now(), "m"))->orderBy('Employee_id', 'ASC')->get(); return view('notifications.birthday', compact('list')); } } <file_sep><?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreatePrEmployeesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::connection('mysql')->create('Employee', function (Blueprint $table) { $table->integer('idEmployee'); $table->integer('EmployeeNumber')->nullable(); $table->string('LastName', 45); $table->string('FirstName', 45); $table->integer('SSN')->nullable(); $table->string('PayRate', 40)->nullable(); $table->integer('PayRates_idPayRates')->nullable(); $table->foreign('PayRates_idPayRates')->references('idPayRates')->on('PayRates'); $table->integer('VacationDays')->default(0); $table->double('PaidToDays')->default(0); $table->double('PaidLastYear')->default(0); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::connection('mysql')->dropIfExists('employees'); } } <file_sep><?php use Illuminate\Support\Facades\Route; /* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | Here is where you can register web routes for your application. These | routes are loaded by the RouteServiceProvider within a group which | contains the "web" middleware group. Now create something great! | */ Route::get('/', [App\Http\Controllers\HomeController::class, 'index'])->name('home'); Route::get('php', function () { echo phpinfo(); }); Route::get('notifcations/benefit', [App\Http\Controllers\NotificationController::class, 'benefit'])->name('notifications.benefit'); Route::get('notifcations/daysoff', [App\Http\Controllers\NotificationController::class, 'daysoff'])->name('notifications.daysoff'); Route::get('notifcations/fullyear', [App\Http\Controllers\NotificationController::class, 'fullyear'])->name('notifications.fullyear'); Route::get('notifcations/birthday', [App\Http\Controllers\NotificationController::class, 'birthday'])->name('notifications.birthday'); Route::get('users', [App\Http\Controllers\UserController::class, 'index'])->name('users.index'); Route::get('users/create', [App\Http\Controllers\UserController::class, 'create'])->name('users.create'); Route::post('users/create', [App\Http\Controllers\UserController::class, 'store'])->name('users.store'); Route::get('users/{id}', [App\Http\Controllers\UserController::class, 'edit'])->name('users.edit'); Route::post('users/{id}', [App\Http\Controllers\UserController::class, 'update'])->name('users.update'); Route::post('users/remove/{id}', [App\Http\Controllers\UserController::class, 'destroy'])->name('users.destroy'); Route::get('statics/totalearnings', [App\Http\Controllers\StaticController::class, 'totalearnings'])->name('statics.totalearnings'); Route::get('statics/vacationdays', [App\Http\Controllers\StaticController::class, 'vacationdays'])->name('statics.vacationdays'); Route::get('statics/averagebenefits', [App\Http\Controllers\StaticController::class, 'averagebenefits'])->name('statics.averagebenefits'); <file_sep><?php namespace App\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Factories\HasFactory; class HRM_Employment extends Model { use HasFactory; protected $connection = 'sqlsrv'; protected $table = 'Employment'; public $timestamps = false; public $primaryKey = 'Employee_id'; protected $fillable = [ 'Employee_ID', 'Employment_Status', 'Hire_Date', 'Workers_Comp_Code', 'Termination_Date', 'Rehire_Date', 'Last_Review_Date', ]; public function employee() { return $this->belongsTo(HRM_Personal::class, 'Employee_ID', 'Employee_ID'); } } <file_sep><?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreatePRPayRatesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::connection('mysql')->create('PayRates', function (Blueprint $table) { $table->integer('idPayRates')->autoIncrement(); $table->string('PayRateName', 40); $table->double('value'); $table->double('TaxPercentage'); $table->integer('PayType'); $table->double('PayAmount'); $table->double('PT-Level'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::connection('mysql')->dropIfExists('PayRates'); } } <file_sep><?php namespace Database\Factories; use App\Models\HRM_Personal; use Illuminate\Database\Eloquent\Factories\Factory; class HRM_PersonalFactory extends Factory { /** * The name of the factory's corresponding model. * * @var string */ protected $model = HRM_Personal::class; /** * Define the model's default state. * * @return array */ public function definition() { $benefits = $this->faker->randomNumber(4); $benefits_old = rand(0, 1) == 0 ? 0 : $this->faker->randomNumber(4); return [ 'Employee_ID' => $this->faker->randomNumber(2), 'First_Name' => $this->faker->firstName, 'Last_Name' => $this->faker->lastName, 'Birthday' => $this->faker->date('Y-m-d', '2000-12-31'), 'Address1' => $this->faker->streetAddress(), 'City' => $this->faker->city, 'State' => $this->faker->state, 'Zip' => '10000', 'Email' => $this->faker->email, 'Phone_Number' => $this->faker->e164PhoneNumber, 'Gender' => rand(0, 1), 'Shareholder_Status' => rand(0, 1), 'Ethnicity' => $this->faker->words(2, true), 'Birthday' => $this->faker->dateTimeThisCentury() 'Benefits' => $benefits, 'Benefits_old' => $benefits_old, ]; } } <file_sep><?php namespace Database\Factories; use App\Models\PR_Employee; use Illuminate\Database\Eloquent\Factories\Factory; class PR_EmployeeFactory extends Factory { /** * The name of the factory's corresponding model. * * @var string */ protected $model = PR_Employee::class; /** * Define the model's default state. * * @return array */ public function definition() { $paidLastYear = rand(5000, 15000); return [ 'LastName' => $this->faker->lastName, 'FirstName' => $this->faker->firstName, 'PayRate' => $this->faker->randomNumber, 'VacationDays' => $this->faker->numberBetween(0, 5), 'PaidToDays' => rand($paidLastYear, $paidLastYear * 3), 'PaidLastYear' => $paidLastYear, ]; } } <file_sep><?php namespace App\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Factories\HasFactory; class PR_Employee extends Model { use HasFactory; protected $connection = 'mysql'; protected $table = 'Employee'; public $timestamps = false; public $primaryKey = 'idEmployee'; protected $fillable = [ 'idEmployee', 'EmployeeNumber', 'LastName', 'FirstName', 'SSN', 'PayRate', 'PayRates_idPayRates', 'VacationDays', 'PaidToDays', 'PaidLastYear', ]; } <file_sep><?php namespace App\Http\Controllers; use App\Models\PR_Employee; use App\Models\HRM_Personal; class StaticController extends Controller { public function totalearnings() { $query = PR_Employee::query(); $total = $query->sum('PaidToDays'); $list = $query->orderBy('PaidToDays', 'DESC')->get(); return view('statics.totalearnings', compact('list', 'total')); } public function vacationdays() { $list = PR_Employee::orderBy('idEmployee', 'ASC')->get(); return view('statics.vacationdays', compact('list')); } public function averagebenefits() { $query = HRM_Personal::query(); $average = $query->avg('benefits'); $list = $query->get(); return view('statics.averagebenefits', compact('list', 'average')); } } <file_sep><?php namespace App\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Factories\HasFactory; class HRM_Personal extends Model { use HasFactory; protected $connection = 'sqlsrv'; protected $table = 'Personal'; public $timestamps = false; public $primaryKey = 'Employee_id'; protected $fillable = [ 'Employee_ID', 'First_Name', 'Last_Name', 'Middle_Initial', 'Address1', 'Address2', 'City', 'State', 'Zip', 'Email', 'Phone_Number', 'Social_Security_Number', 'Drivers_License', 'Marital_Status', 'Gender', 'Shareholder_Status', 'Benefit_Plans', 'Ethnicity', 'RecruitmentDate', 'Benefits', 'Benefits_old', 'Birthday', ]; public function employement() { return $this->hasOne(HRM_Employment::class, 'Employee_ID', 'Employee_ID'); } } <file_sep><?php namespace App\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Factories\HasFactory; class PR_PayRate extends Model { use HasFactory; protected $connection = 'mysql'; protected $table = 'PayRates'; public $timestamps = false; public $primaryKey = 'idPayRates'; protected $fillable = [ 'PayRateName', 'value', 'TaxPercentage', 'PayType', 'PayAmount', 'PT-Level', ]; public function employee() { return $this->belongsTo(PR_Employee::class); } } <file_sep><?php namespace App\Http\Controllers; use App\Models\PR_Employee; use App\Models\HRM_Personal; use Illuminate\Http\Request; use App\Models\HRM_Employment; class UserController extends Controller { public function index() { $list = HRM_Personal::all(); return view('users.index', compact('list')); } public function create() { return view('users.create'); } public function store(Request $request) { $request->validate([ 'firstname' => 'required|string|max:45', 'lastname' => 'required|string|max:45', 'email' => 'required|email|max:45|unique:\App\Models\HRM_Personal,email', 'birthday' => 'required|date', 'gender' => 'required|integer|between:0,1', 'address' => 'required|string', 'phonenumber' => 'required|string|max:13', 'ethnicity' => 'required|string|max:45', 'shareholder_status' => 'required|integer|between:0,1', 'hiredate' => 'required|date', ]); $request = $request->only([ 'id', 'firstname', 'lastname', 'email', 'birthday', 'gender', 'address', 'phonenumber', 'ethnicity', 'shareholder_status', 'hiredate', ]); if ($request != null) { $id = $request['id']; $firstname = $request['firstname']; $lastname = $request['lastname']; $email = $request['email']; $birthday = date('Y-m-d', strtotime($request['birthday'])); $gender = $request['gender']; $address = $request['address']; $phonenumber = $request['phonenumber']; $ethnicity = $request['ethnicity']; $shareholder_status = $request['shareholder_status']; $hiredate = date('Y-m-d H:i:s.v', strtotime($request['hiredate'])); HRM_Personal::create([ 'Employee_ID' => $id, 'First_Name' => $firstname, 'Last_Name' => $lastname, 'Email' => $email, 'Birthday' => $birthday, 'Gender' => $gender, 'Address1' => $address, 'Phone_Number' => $phonenumber, 'Ethnicity' => $ethnicity, 'Shareholder_Status' => $shareholder_status, ]); HRM_Employment::create([ 'Employee_ID' => $id, 'Hire_Date' => $hiredate, ]); PR_Employee::create([ 'idEmployee' => $id, 'FirstName' => $firstname, 'LastName' => $lastname, 'VacationDays' => 0, 'PaidToDays' => 0, 'PaidLastYear' => 0, ]); return redirect()->back()->with('message', 'Created!'); } return redirect()->back()->with('message', 'Error!'); } public function edit($id) { $employee = HRM_Personal::find($id); if ($employee != null) { return view('users.edit', compact('employee')); } echo "<script>window.location.href='".route('users.index')."';alert('Employee not found!');</script>"; } public function update(Request $request, $id) { $request->validate([ 'firstname' => 'required|string|max:45', 'lastname' => 'required|string|max:45', 'email' => 'required|email|max:45|unique:\App\Models\HRM_Personal,email,'.$id.',Employee_ID', 'birthday' => 'required|date', 'gender' => 'required|integer|between:0,1', 'address' => 'required|string', 'phonenumber' => 'required|string|max:13', 'ethnicity' => 'required|string|max:45', 'shareholder_status' => 'required|integer|between:0,1', 'hiredate' => 'required|date', ]); $request = $request->only([ 'firstname', 'lastname', 'email', 'birthday', 'gender', 'address', 'phonenumber', 'ethnicity', 'shareholder_status', 'hiredate', ]); $hrm_personal = HRM_Personal::where('Employee_ID', $id); $hrm_employment = HRM_Employment::where('Employee_ID', $id); $pr_employee = PR_Employee::where('idEmployee', $id); if ($request != null && $hrm_personal->count() != 0 && $pr_employee->count() != 0) { $firstname = $request['firstname']; $lastname = $request['lastname']; $email = $request['email']; $birthday = date('Y-m-d', strtotime($request['birthday'])); $gender = $request['gender']; $address = $request['address']; $phonenumber = $request['phonenumber']; $ethnicity = $request['ethnicity']; $shareholder_status = $request['shareholder_status']; $hiredate = date('Y-m-d H:i:s.v', strtotime($request['hiredate'])); $hrm_personal->update([ 'First_Name' => $firstname, 'Last_Name' => $lastname, 'Email' => $email, 'Birthday' => $birthday, 'Gender' => $gender, 'Address1' => $address, 'Phone_Number' => $phonenumber, 'Ethnicity' => $ethnicity, 'Shareholder_Status' => $shareholder_status, ]); $hrm_employment->update([ 'Hire_Date' => $hiredate, ]); $pr_employee->update([ 'FirstName' => $firstname, 'LastName' => $lastname, ]); return redirect()->back()->with('message', 'Updated!'); } return redirect()->back()->with('message', 'Error!'); } public function destroy($id) { HRM_Employment::where('Employee_ID', $id)->delete(); HRM_Personal::where('Employee_ID', $id)->delete(); PR_Employee::where('idEmployee', $id)->delete(); echo "<script>window.location.href='".route('users.index')."';alert('Deleted!');</script>"; } }
1a4668319bb5f5d5eb13e1c5d74f62f9c2f5e661
[ "SQL", "PHP" ]
14
SQL
CMU-CS-445-HIS-Group-6/CEO_MeMo
e10d28279efc845baef3f2088e75bf5282628244
e2b867b1d6e9c939721111ea29b0ad0a45955a4c
refs/heads/master
<repo_name>LeonanML/UIStudies<file_sep>/app/src/main/java/studies/projects/muller/uistudies01/MainActivity.kt package studies.projects.muller.uistudies01 import android.content.Intent import android.net.Uri import android.support.v7.app.AppCompatActivity import android.os.Bundle import kotlinx.android.synthetic.main.activity_main.* class MainActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) textViewVersion.setOnClickListener{ val url = "https://github.com/LeonanML/UIStudies" val uri = Uri.parse(url) val intents = Intent(Intent.ACTION_VIEW, uri) startActivity(intents) } } } <file_sep>/README.md # UIStudies por <NAME> ![Rocket Logo](https://raw.githubusercontent.com/LeonanML/UIStudies/master/app/src/main/res/drawable/rocket.png) Este repositório é referente a um estudo de criação de interfaces usando Android Studio Objetivos: - Aprender - Praticar - Evoluir - # Versões V.0.01 - MainActivity: uma tela simples de login ![Print da tela inicial](https://image.ibb.co/mBAJrV/Screenshot-1.png) - Paleta de cores ![Paleta de Cores](https://image.ibb.co/f80koA/Screenshot-2.png) # Proximos Passos - Criação de tela de cadastro - Tela de carregamento # Notas - minSdkVersion 21 > email: <EMAIL> > > > > > >
0e2acc99ee237267175b292dfdbe2adb3c5069e1
[ "Markdown", "Kotlin" ]
2
Kotlin
LeonanML/UIStudies
abd886d0bb4ed5c3bb0e04bafedee1973d7a64d8
e9e0c22a803de1d81c333820810691a0d62b09ff
refs/heads/master
<repo_name>luohoward/web_portfolio<file_sep>/static/files/assignment1.2/src/Tests/chessPieceTest.java package Tests; import org.junit.Test; import Models.*; import static org.junit.Assert.*; /** * Created by Howard on 2/8/2016. * A test class for chessPiece * Tests the color, living status and movement as well as the geass ability in cc and lelouch */ public class chessPieceTest { /* Testing to make sure that a function can gets the color of a piece */ @Test public void testGetColor() throws Exception { pawn testPiece1 = new pawn(true); pawn testPiece2 = new pawn(false); assertEquals(testPiece1.getColor(), true); assertEquals(testPiece2.getColor(), false); } /* Tests whether or not a piece is living also tests set dead and set alive */ @Test public void testIsAlive() throws Exception { pawn testPiece1 = new pawn(true); pawn testPiece2 = new pawn(false); //when you first declare a piece, it is set to alive assertEquals(testPiece1.isAlive(), true); assertEquals(testPiece2.isAlive(), true); //set the piece to dead testPiece1.setDead(); testPiece2.setDead(); //run isAlive again. This should return false assertEquals(testPiece1.isAlive(), false); assertEquals(testPiece2.isAlive(), false); //set the piece back to alive testPiece1.setAlive(); testPiece2.setAlive(); //run isAlive again. This should return true assertEquals(testPiece1.isAlive(), true); assertEquals(testPiece1.isAlive(), true); } /* test whether or not the piece can move into the same location as it originally was in whether or not the piece can attack his own men whether or not the piece can attack other color pieces make sure you cant go off board the function can evaluate to be true */ @Test public void testBaseTest() throws Exception { chessGame testGame = new chessGame(false); //test whether or not the piece can move into the same location as it originally was in assertEquals(testGame.board.accessSquare(7,7).occupiedBy().baseTest(7, 7, 7, 7), false); //test whether or not the piece can attack his own men assertEquals(testGame.board.accessSquare(0, 0).occupiedBy().baseTest(0, 0, 1, 0), false); //remove pieces in between and see whether or not the piece can attack other color pieces testGame.board.accessSquare(0, 7).removePiece(); testGame.board.accessSquare(0, 1).removePiece(); assertEquals(testGame.board.accessSquare(0, 0).occupiedBy().baseTest(0, 0, 0, 7), true); //see if going off the board is valid assertEquals(testGame.board.accessSquare(0, 0).occupiedBy().baseTest(0, 0, 0, 9), false); assertEquals(testGame.board.accessSquare(0, 0).occupiedBy().baseTest(0, 0, 0, -1), false); assertEquals(testGame.board.accessSquare(0, 0).occupiedBy().baseTest(0, 0, -1, 7), false); assertEquals(testGame.board.accessSquare(0, 0).occupiedBy().baseTest(0, 0, 9, 7), false); //if nothing else the function should evaluate to be true assertEquals(testGame.board.accessSquare(0, 0).occupiedBy().baseTest(0, 0, 0, 3), true); } /* test to make sure that the bishops move no matter what direction is valid if the absolute value of fromX - toX == abs fromY -toY Also test to make sure that the bishop can't jump over other pieces tests the jumped over function */ @Test public void testBishopMovement() throws Exception { chessGame testGame = new chessGame(false); clearBoard(testGame.board); bishop testBishop1 = new bishop(true); testGame.board.accessSquare(4, 4).addPiece(testBishop1); //test to make sure that the bishops move no matter what direction is valid if the absolute value //of fromX - toX == abs fromY -toY assertEquals(testBishop1.bishopMovement(4, 4, 5, 5), true); assertEquals(testBishop1.bishopMovement(4, 4, 3, 3), true); assertEquals(testBishop1.bishopMovement(4, 4, 3, 5), true); assertEquals(testBishop1.bishopMovement(4, 4, 3, 5), true); //test to make sure that the bishop cant move in a pattern not in the motion of a bishop assertEquals(testBishop1.bishopMovement(4, 4, 5, 6), false); //test to make sure that a bishop cant jump over and pieces bishop testBishop2 = new bishop(false); testGame.board.accessSquare(3, 3).addPiece(testBishop2); assertEquals(testBishop2.bishopMovement(3, 3, 6, 6), false); assertEquals(testBishop1.bishopMovement(4, 4, 0, 0), false); bishop testBishop3 = new bishop(false); testGame.board.accessSquare(3, 5).addPiece(testBishop3); assertEquals(testBishop3.bishopMovement(3, 5, 6, 2), false); assertEquals(testBishop1.bishopMovement(4, 4, 1, 7), false); } //check the knights movement to make sure that the knights movement is valid @Test public void testKnightMovement() throws Exception { chessGame testGame = new chessGame(false); clearBoard(testGame.board); knight testKnight1 = new knight(true); testGame.board.accessSquare(4, 4).addPiece(testKnight1); //the knights movement must be abs fromX - toX = 2 and abs fromY - toY = 1 or fromX - toX = 1 and fromY - toY = 2 assertEquals(testKnight1.knightMovement(4, 4, 2, 3), true); assertEquals(testKnight1.knightMovement(4, 4, 2, 5), true); assertEquals(testKnight1.knightMovement(4, 4, 3, 2), true); assertEquals(testKnight1.knightMovement(4, 4, 3, 6), true); assertEquals(testKnight1.knightMovement(4, 4, 5, 6), true); assertEquals(testKnight1.knightMovement(4, 4, 5, 2), true); assertEquals(testKnight1.knightMovement(4, 4, 6, 3), true); assertEquals(testKnight1.knightMovement(4, 4, 6, 5), true); //check to make sure you arent making non characteristic moves assertEquals(testKnight1.knightMovement(4, 4, 6, 6), false); } /* Checks to make sure the rooks movements is valid and that it isnt jumping over pieces tests the function jumpedOver */ @Test public void testRookMovement() throws Exception { chessGame testGame = new chessGame(false); clearBoard(testGame.board); rook testRook1 = new rook(true); testGame.board.accessSquare(4, 4).addPiece(testRook1); //checks the make sure the rooks movements are valid assertEquals(testRook1.rookMovement(4, 4, 4, 0), true); assertEquals(testRook1.rookMovement(4, 4, 0, 4), true); assertEquals(testRook1.rookMovement(4, 4, 4, 6), true); assertEquals(testRook1.rookMovement(4, 4, 6, 4), true); assertEquals(testRook1.rookMovement(4, 4, 6, 6), false); //add pieces to check jumpedOver with rook testRook2 = new rook(false); testGame.board.accessSquare(4, 3).addPiece(testRook2); rook testRook3 = new rook(false); testGame.board.accessSquare(3, 4).addPiece(testRook3); rook testRook4 = new rook(false); testGame.board.accessSquare(3, 3).addPiece(testRook4); //check to make sure you cant jump over any pieces in any direction assertEquals(testRook1.rookMovement(4, 4, 4, 0), false); assertEquals(testRook1.rookMovement(4, 4, 0, 4), false); assertEquals(testRook2.rookMovement(3, 3, 5, 3), false); assertEquals(testRook2.rookMovement(3, 3, 3, 5), false); } /* Test to make sure the kings movements are valid */ @Test public void testKingMovement() throws Exception { chessGame testGame = new chessGame(false); clearBoard(testGame.board); king testKing1 = new king(true); testGame.board.accessSquare(4, 4).addPiece(testKing1); //the king should be able to move one space in any direction he chooses if the board is empty assertEquals(testKing1.kingMovement(4, 4, 3, 5), true); assertEquals(testKing1.kingMovement(4, 4, 4, 5), true); assertEquals(testKing1.kingMovement(4, 4, 5, 5), true); assertEquals(testKing1.kingMovement(4, 4, 3, 4), true); assertEquals(testKing1.kingMovement(4, 4, 5, 4), true); assertEquals(testKing1.kingMovement(4, 4, 3, 3), true); assertEquals(testKing1.kingMovement(4, 4, 4, 3), true); assertEquals(testKing1.kingMovement(4, 4, 5, 3), true); //the king should not be able to do these moves assertEquals(testKing1.kingMovement(4, 4, 2, 4), false); assertEquals(testKing1.kingMovement(4, 4, 6, 5), false); } /* Tests to make sure that the pawns movements are valid */ @Test public void testPawnMovement() throws Exception { chessGame testGame = new chessGame(false); clearBoard(testGame.board); pawn testPawn1 = new pawn(true); testGame.board.accessSquare(4, 4).addPiece(testPawn1); //pawns cant move backwards //also checks firstMove and if that works if there is no piece //also checks if you can move diagonally if there is no piece to take assertEquals(testPawn1.pawnMovement(4, 4, 4, 2, true), false); assertEquals(testPawn1.pawnMovement(4, 4, 4, 3, false), false); assertEquals(testPawn1.pawnMovement(4, 4, 4, 6, true), true); assertEquals(testPawn1.pawnMovement(4, 4, 4, 6, false), false); assertEquals(testPawn1.pawnMovement(4, 4, 5, 5, false), false); chessPlayer.setTurn(false); pawn testPawn2 = new pawn(false); testGame.board.accessSquare(5, 5).addPiece(testPawn2); //check the same thing except with a blackpawn assertEquals(testPawn2.pawnMovement(5, 5, 5, 7, true), false); assertEquals(testPawn2.pawnMovement(5, 5, 5, 6, false), false); assertEquals(testPawn2.pawnMovement(5, 5, 5, 3, true), true); assertEquals(testPawn2.pawnMovement(5, 5, 5, 4, false), true); //check if you can capture if there is a piece but also check is you can capture without a piece assertEquals(testPawn2.pawnMovement(5, 5, 4, 4, false), true); assertEquals(testPawn2.pawnMovement(5, 5, 6, 4, false), false); //checks if white can capture now too chessPlayer.setTurn(true); assertEquals(testPawn1.pawnMovement(4, 4, 5, 5, false), true); assertEquals(testPawn1.pawnMovement(4, 4, 3, 5, false), false); //checks to make sure you cant jump over a piece or move where a piece is pawn testPawn3 = new pawn(false); testGame.board.accessSquare(4, 5).addPiece(testPawn3); assertEquals(testPawn1.pawnMovement(4, 4, 4, 5, false), false); assertEquals(testPawn1.pawnMovement(4, 4, 4, 6, true), false); chessPlayer.setTurn(false); pawn testPawn4 = new pawn(true); testGame.board.accessSquare(5, 4).addPiece(testPawn4); assertEquals(testPawn2.pawnMovement(5, 5, 5, 4, false), false); assertEquals(testPawn2.pawnMovement(5, 5, 5, 3, true), false); } /* This test assumes that kingMovement has already been tested. As such we dont need to move lelouch since he inherits from king */ @Test public void testlelouch() throws Exception { chessGame testGame = new chessGame(false); clearBoard(testGame.board); lelouch testLelouch = new lelouch(true); testGame.board.accessSquare(4, 4).addPiece(testLelouch); testGame.board.accessSquare(0, 0).addPiece(new rook(true)); //cant geass your own pieces assertEquals(testLelouch.geass(4, 4, 0, 0, 3, 0), false); testGame.board.accessSquare(1, 1).addPiece(new queen(false)); //cant geass to non valid moves assertEquals(testLelouch.geass(4, 4, 1, 1, 3, 0), false); //cant geass to capture your own pieces assertEquals(testLelouch.geass(4, 4, 1, 1, 0, 0), false); testGame.board.accessSquare(0, 0).occupiedBy().setColor(false); //cant geass into check assertEquals(testLelouch.geass(4, 4, 1, 1, 0, 0), false); clearBoard(testGame.board); testGame.board.accessSquare(4, 4).addPiece(testLelouch); testGame.board.accessSquare(4, 1).addPiece(new king(false)); testGame.board.accessSquare(2, 2).addPiece(new knight(false)); //cant geass the king directly assertEquals(testLelouch.geass(4, 4, 4, 1, 4, 2), false); //cant geass twice in a row assertEquals(testLelouch.geass(4, 4, 2, 2, 4, 3), true); assertEquals(testLelouch.geass(4, 4, 4, 3, 5, 5), false); testGame.board.accessSquare(3, 2).addPiece(new bishop(false)); //cant make a piece kill the king assertEquals(testLelouch.geass(4, 4, 3, 2, 4 , 1), false); } /* This test assumes that rookMovement and bishopMovement has already been tested. As such we dont need to move cc since he inherits from queen */ @Test public void testcc() throws Exception { chessGame testGame = new chessGame(false); clearBoard(testGame.board); cc testCC = new cc(true); testGame.board.accessSquare(3, 3).addPiece(new rook(false)); testGame.board.accessSquare(3, 5).addPiece(new rook(true)); //make sure that the piece that cc geasses is valid and that she cant geass out of her range //make sure she doesnt geass her own pieces assertEquals(testCC.geass(4, 4, 3, 5), false); assertEquals(testCC.geass(4, 4, 3, 3), true); assertEquals(testCC.geass(4, 4, 5, 5), false); assertEquals(testCC.geass(4, 4, 1, 1), false); } /* A function that clears the board for testing purposes */ public void clearBoard(chessBoard b) { for(int i = 0; i < 8; i++) { for(int j = 0; j < 8; j++) { b.accessSquare(i, j).removePiece(); } } } }<file_sep>/static/files/assignment2.1/test_graph.rb require_relative "graph_node" require "test/unit" require 'json' require './graph' # A test class for graph class # NOTE: testing saving to JSON is not done. Just look at the JSON for that class TestGraph < Test::Unit::TestCase # A test for flight distance and population that tests the min, max and avg def test_statistics init_test # Find the max and the edge corresponding to it longest_edge = @graph.get_longest_flight assert_equal(longest_edge.get_ports[0], 'SYD') assert_equal(longest_edge.get_ports[1], 'LAX') assert_equal(longest_edge.get_distance, 12051) # Find the min and the edge corresponding to it shortest_edge = @graph.get_shortest_flight assert_equal(shortest_edge.get_ports[0], 'WAS') assert_equal(shortest_edge.get_ports[1], 'NYC') assert_equal(shortest_edge.get_distance, 334) # Find the avg distance avg = @graph.get_average_flight assert_equal(avg, 2300) #find the max population and the city corresponding to it largest_pop_city = @graph.get_biggest_city assert_equal(largest_pop_city.get_name, 'Tokyo') assert_equal(largest_pop_city.get_population, 34000000) #find the min population and the city corresponding to it smallest_pop_city = @graph.get_smallest_city assert_equal(smallest_pop_city.get_name, 'Essen') assert_equal(smallest_pop_city.get_population, 589900) #find the avg population avg = @graph.get_average_pop assert_equal(avg, 11796143) end # A test for continents def test_continents init_test # Check if the length of continents serviced is correct and the content is too continents = @graph.get_continents assert_equal(continents['Australia'], ['Sydney']) assert_equal(continents['Australia'].length, 1) assert_equal(continents['Asia'].length, 19) end # a test for hub_cities function def test_hub_cities init_test hub_cities = @graph.get_hub_cities(5) assert_equal(hub_cities.length, 16) hub_cities = @graph.get_hub_cities(6) assert_equal(hub_cities.length, 2) assert_equal(hub_cities[0][0], "HKG") assert_equal(hub_cities[1][0], "IST") hub_cities = @graph.get_hub_cities(7) assert_equal(hub_cities.length, 0) end # test all adding removing and editing functions def test_add_remove_edit init_test new_city = Hash.new() new_city['code'] = "TST" new_city['name'] = "Test" new_city['country'] = "Test" new_city['continent'] = "Antarctica" new_city['timezone'] = "9" new_city['coordinates'] = {"N" => 44, "W" => 80} new_city['population'] = 900 new_city['region'] = 1 # test to make sure that adding works and that you can access what you've added @graph.add_city(new_city) test_city = @graph.get_smallest_city assert_equal(test_city.get_name, 'Test') assert_equal(test_city.get_population, 900) # test to make sure that editing works and that you can access what you've edited new_city['name'] = "Test2" @graph.edit_city(new_city) test_city = @graph.get_smallest_city assert_equal(test_city.get_name, 'Test2') # test to make sure that removing and that you can no longer access what you've removed @graph.remove_city("TST") test_city = @graph.get_smallest_city assert_equal(test_city.get_name, 'Essen') assert_equal(test_city.get_population, 589900) # test to make sure that adding an edge works and that you can access it new_edge = Hash.new() new_edge['ports'] = ['CHI', 'NYC'] new_edge['distance'] = 1 @graph.add_edge(new_edge) test_edge = @graph.get_shortest_flight assert_equal(test_edge.get_ports[0], 'CHI') assert_equal(test_edge.get_ports[1], 'NYC') assert_equal(test_edge.get_distance, 1) # test to make sure that remove an edge and that you can no longer access it @graph.remove_edge('CHI', 'NYC') test_edge = @graph.get_shortest_flight assert_equal(test_edge.get_ports[0], 'WAS') assert_equal(test_edge.get_ports[1], 'NYC') assert_equal(test_edge.get_distance, 334) end #tests to make sure that calculating distance cost and time can be done def test_calc_distance_cost_time init_test # run djikstras to generate a valid list and pass it into calc_distance_cost_time test_path = @graph.djikstras("CHI", "NYC") distance, cost, time = @graph.calc_distance_cost_time(test_path) assert_equal(distance, 2175) assert_equal(cost, 683.7) assert_equal(time, 6) # testing to make sure it handles invalid things distance, cost, time = @graph.calc_distance_cost_time([]) assert_equal(distance, 0) assert_equal(cost, 0) assert_equal(time, 0) distance, cost, time = @graph.calc_distance_cost_time(["NYC"]) assert_equal(distance, 0) assert_equal(cost, 0) assert_equal(time, 0) distance, cost, time = @graph.calc_distance_cost_time(["NYC, CHI"]) assert_equal(distance, 0) assert_equal(cost, 0) assert_equal(time, 0) end # test to make sure that djikstras works def test_djikstra init_test # make sure that djikstras runs on valid inputs test_path = @graph.djikstras("CHI", "NYC") assert_equal(test_path, ["CHI", "ATL", "WAS", "NYC"]) #make sure that djikstra doesnt take bad inputs test_path = @graph.djikstras("ASDF", "JHKG") assert_equal(test_path, []) test_path = @graph.djikstras("NYC", "JHKG") assert_equal(test_path, []) test_path = @graph.djikstras("ASDF", "NYC") assert_equal(test_path, []) #make sure djikstra is sensitive to adding edges new_edge = Hash.new() new_edge['ports'] = ['CHI', 'NYC'] new_edge['distance'] = 1 @graph.add_edge(new_edge) test_path = @graph.djikstras("CHI", "NYC") assert_equal(test_path, ["CHI", "NYC"]) end # a function called at the beginning of every function to initialize it def init_test file = File.read('map_data.json') data_hash = JSON.parse(file) @graph = Graph.new() @graph.init_cities(data_hash['metros']) @graph.init_edges(data_hash['routes']) end end<file_sep>/static/files/assignment0/digitClassification.py import sys import copy import math def main(): labelDict = {} imageDict = {} numberTest = [] numberTrain = [] pClass = {} trainingDict0 = {} trainingDict1 = {} testingDict = {} postTestDict = {} ###initialize a labelDict to have the indices and the total count of the indices ie {1: 50}### ##this makes it easy to calculate pClass### with open('traininglabels', 'r') as labels: numberTrain = [x.strip('\r\n') for x in labels.readlines()] for i in range(len(numberTrain)): if numberTrain[i] not in labelDict: labelDict[numberTrain[i]] = 1 else: labelDict[numberTrain[i]] = labelDict[numberTrain[i]] + 1 ###initialize a dictionary to contain images mapped to whatever value it corresponds to### with open('trainingimages', 'r') as images: img = [x.strip('\r\n') for x in images.readlines()] idxTr = 0 for i in range(len(img)): if i % 28 == 0: if numberTrain[idxTr] not in imageDict: imageDict[numberTrain[idxTr]] = [] image = [] for j in range(28): image.append([]) for k in range(28): image[j].append(img[i + j][k]) imageDict[numberTrain[idxTr]].append(image) else: image = [] for j in range(28): image.append([]) for k in range(28): image[j].append(img[i + j][k]) imageDict[numberTrain[idxTr]].append(image) idxTr = idxTr + 1 # print(len(numberTrain)) ###calculate P(class) for all integers 0 - 9### for i in labelDict.keys(): pClass[i] = float(labelDict[i])/float(len(numberTrain)) ##run training for every key in imageDict to get an average image in trainingDict1 and trainingDict0### for key in imageDict.keys(): training(key, imageDict, trainingDict0, trainingDict1) with open('testlabels', 'r') as labels: numberTest = [x.strip('\r\n') for x in labels.readlines()] ###initialize a dictionary to contain images mapped to whatever value it corresponds to### with open('testimages', 'r') as images: img = [x.strip('\r\n') for x in images.readlines()] idxTr = 0 for i in range(len(img)): if i % 28 == 0: if numberTest[idxTr] not in testingDict: testingDict[numberTest[idxTr]] = [] image = [] for j in range(28): image.append([]) for k in range(28): image[j].append(img[i + j][k]) testingDict[numberTest[idxTr]].append(image) else: image = [] for j in range(28): image.append([]) for k in range(28): image[j].append(img[i + j][k]) testingDict[numberTest[idxTr]].append(image) idxTr = idxTr + 1 ###run testing to make a postTestDict### for key in testingDict.keys(): postTestDict[key] = [] testing(key, testingDict, trainingDict0, trainingDict1, pClass, postTestDict) for key in postTestDict.keys(): max = -10000000000 indMax = -1 min = 1000000000 indMin = -1 for i in range(len(postTestDict[key])): if max < postTestDict[key][i][key]: max = postTestDict[key][i][key] indMax = i elif min > postTestDict[key][i][key]: min = postTestDict[key][i][key] indMin = i # print(key) # print("") for line in testingDict[key][indMax]: s = "" for char in line: s = s + char # print(s) # print("") for line in testingDict[key][indMin]: s = "" for char in line: s = s + char # print(s) # print("") ##evaluate evaluate to get a confusionMatrix### confusionMatrix = evaluate(postTestDict) for line in confusionMatrix: print line ###calculate the oddsRatios### oddsRatios(confusionMatrix, trainingDict0, trainingDict1) ###calculate training by P(Fij = f | class) = ### ###(number of times pixel (i,j) has value f in training examples from this class) / ### ###(Total # of training examples from this class).### def training(key, imageDict, trainingDict0, trainingDict1): probMap0 = [] for i in range(28): probMap0.append([]) for j in range(28): probMap0[i].append(0) probMap1 = [] for i in range(28): probMap1.append([]) for j in range(28): probMap1[i].append(0) for i in range(len(probMap0)): for j in range(len(probMap0[i])): numF0 = 0 numF1 = 0 for image in imageDict[key]: if image[i][j] == "+" or image[i][j] == "#": numF1 += 1 else: numF0 += 1 #V is set to a va;lue of 2 because you have 0 through 1 and k is a value arbitrarily chosen### ###in this case, 1 was best because it limits the number of variance between the denominator and numerator from the actual value### k = 1 probMap1[i][j] = float(numF1 + k) / float(len(imageDict[key]) + (k * 2)) probMap0[i][j] = float(numF0 + k) / float(len(imageDict[key]) + (k * 2)) trainingDict1[key] = probMap1 trainingDict0[key] = probMap0 ###testing which is calculated as### ###log P(class) + log P(f1,1 | class) + log P(f1,2 | class) + ... + log P(f28,28 | class)### def testing(key, testingDict, trainingDict0, trainingDict1, pClass, postTestDict): for image in testingDict[key]: d = {} for dictKey in testingDict.keys(): logSum = math.log(pClass[key]) for i in range(28): for j in range(28): if image[i][j] == "+" or image[i][j] == "#": logSum = logSum + math.log(trainingDict1[dictKey][i][j]) else: logSum = logSum + math.log(trainingDict0[dictKey][i][j]) d[dictKey] = logSum postTestDict[key].append(d) ###evaluate a confusionMatrix by taking the max of every value that you've gotten from training### def evaluate(postTestDict): confusionMatrix = [] for i in range(10): confusionMatrix.append([]) for j in range(10): confusionMatrix[i].append(0) keysList = [int(key) for key in postTestDict.keys()] keysList.sort() for key in keysList: for i in range(len(postTestDict[str(key)])): max = -10000000 k = -1 for j in postTestDict[str(key)][i].keys(): if max < postTestDict[str(key)][i][j]: k = j max = postTestDict[str(key)][i][j] confusionMatrix[key][int(k)] = confusionMatrix[key][int(k)] + 1 for i in range(10): l = len(postTestDict[str(i)]) for j in range(10): confusionMatrix[i][j] = float(confusionMatrix[i][j])/float(l) return confusionMatrix ###calculate the oddsRatios### def oddsRatios(confusionMatrix, trainingDict0, trainingDict1): l = [[[0, 0], 0] for x in range(4)] for i in range(10): for j in range(10): if i != j: for k in range(4): if l[k][1] < confusionMatrix[i][j]: l[k][0] = [i, j] l[k][1] = confusionMatrix[i][j] break for i in range(4): first = copy.deepcopy(trainingDict1[str(l[i][0][0])]) second = copy.deepcopy(trainingDict1[str(l[i][0][1])]) third = copy.deepcopy(trainingDict1[str(l[i][0][0])]) for j in range(len(first)): for k in range(len(first[j])): a = first[j][k] b = second[j][k] first[j][k] = math.log(a) second[j][k] = math.log(b) third[j][k] = math.log(a/b) for j in range(len(first)): for k in range(len(first[j])): if first[j][k] < 1 and first[j][k] > -1: first[j][k] = "8" elif first[j][k] >= 1: first[j][k] = " " else: first[j][k] = " " if second[j][k] < 1 and second[j][k] > -1: second[j][k] = "8" elif second[j][k] >= 1: second[j][k] = " " else: second[j][k] = " " for j in range(len(third)): for k in range(len(third[j])): if third[j][k] < 1.1 and third[j][k] >= 0.9: third[j][k] = " " elif third[j][k] >= 1.1 or (third[j][k] < 0.9 and third[j][k] >= 0): third[j][k] = "+" else: third[j][k] = "-" main() <file_sep>/Endpoint.py import os # A class that serves as an endpoint gathering the file content for the file def get_content(filename): """ :param filename: the name of the file :return: A list that represents the file separated by newline characters """ print filename print os.getcwd() + "\n" f = open(filename, 'r').read().split('\n') return f<file_sep>/static/files/assignment2.1/city.rb # A class that represents the city # This class contains the graph node which represents the city in the CS Air project # This class contains class variables code, name, country, continent, timezone, coordinates, population and region require './graph_node' class City < GraphNode def initialize(node) @code = node['code'] @name = node['name'] @country = node['country'] @continent = node['continent'] @timezone = node['timezone'] @coordinates = node['coordinates'] @population = node['population'] @region = node['region'] end # Getters for the independent class variables for a specific GraphNode def get_code return @code end def get_name return @name end def get_country return @country end def get_continent return @continent end def get_timezone return @timezone end def get_coordinates return @coordinates end def get_population return @population end def get_region return @region end # Setters for the independent class variables for a specific GraphNode def set_code(code) @code = code end def set_name(name) @name = name end def set_country(country) @country = country end def set_continent(continent) @continent = continent end def set_timezone(timezone) @timezone = timezone end def set_coordinates(coordinates) @coordinates = coordinates end def set_population(population) @population = population end def set_region(region) @region = region end # Used in Part 3.2 where the user requests data about a specific city # and gets everything from the database regarding it def print_information puts "Code: #{@code}" puts "Name: #{@name}" puts "Country: #{@country}" puts "Continent: #{@continent}" puts "Time Zone: #{@timezone}" puts "Coordinates: #{@coordinates}" puts "Population: #{@population}" puts "Region #{@region}" end end<file_sep>/static/files/assignment2.1/test_node.rb require_relative "graph_node" require "test/unit" require 'json' require './graph' # A testing class for graph node class TestNode < Test::Unit::TestCase # A test that checks if the properties of the first index of the cities aligns # with the actual values of it # This also tests graph construction and add_cities from the graph class def test_simple file = File.read('map_data.json') data_hash = JSON.parse(file) @graph = Graph.new() @graph.init_cities(data_hash['metros']) city = @graph.get_city[0] assert_equal(city.get_code, 'SCL') assert_equal(city.get_name, 'Santiago') assert_equal(city.get_country, 'CL') assert_equal(city.get_continent, 'South America') assert_equal(city.get_timezone, -4) assert_equal(city.get_coordinates, {"S"=>33, "W"=>71}) assert_equal(city.get_population, 6000000) assert_equal(city.get_region, 1) end end<file_sep>/static/files/assignment1.2/src/Controller/chessController.java package Controller; import javax.swing.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.ArrayList; import View.*; import Models.*; /** * Created by Howard on 2/15/2016. * A Controller class that regulates interaction between the Game (Model) and View (view) */ public class chessController { /* Variables used for initializing the classes as described below or used in view and game represent the view and game which the controller takes care of makeGeass and isGeassGame are both used to make a game geass style or regular style whitesMoves and blackMoves are used to store the moves that black and white have made whiteUndo and blackUndo are used so that a player can only undo once movePiece, fromX and fromY represent the piece and the location you are trying to get to moveX and moveY are used in case the user is playing geass chess and wants to geass with lelouch */ private chessView view; private chessGame game; private boolean makeGeass; private boolean isGeassGame; public boolean useGeass; public ArrayList<moves> whitesMoves; public ArrayList<moves> blackMoves; public boolean whiteUndo; public boolean blackUndo; chessPiece movePiece; int fromX; int fromY; int moveX; int moveY; /* A constructor for the chessController class that initializes to default values and adds listeners to the buttons that need them NOTE: the listener for the squares is purposely not initialized at first */ public chessController(chessView c) { view = c; game = null; makeGeass = false; isGeassGame = false; movePiece = null; fromX = -1; fromY = -1; moveX = -1; moveY = -1; view.addForfeitListener(new forfeitListener()); view.addGameListener(new newGameListener()); view.addGeassListener(new geassGameListener()); view.addRestartListener(new restartListener()); view.addChangeNameButton(new setNameListener()); view.addDispScoreButton(new dispScoreListener()); view.addUndoButton(new undoButtonListener()); } /* A function that reset the default values used after making moves or using an invalid one or making a new game */ public void resetDefaults() { movePiece = null; fromX = -1; fromY = -1; moveX = -1; moveY = -1; useGeass = false; } /* A function used in displaying the score that is used in the dispScore button */ public void displayScore() { String dispString = view.p1Name + ": " + view.p1Score + "\n" + view.p2Name + ": " + view.p2Score; JOptionPane.showMessageDialog(view.getGui(), dispString); } /* A function used to set the names of both black and white Also it resets the scores of the players since 2 new players are playing */ public void setName() { String p1Name = JOptionPane.showInputDialog("Enter White's name: "); String p2Name = JOptionPane.showInputDialog("Enter Black's name: "); view.p1Name = p1Name; view.p2Name = p2Name; view.p1Score = 0; view.p2Score = 0; } /* A function that allows the user to forfeit the game. Rules: Player must confirm they want to forfeit before actually forfeiting the game used in the forfeit button */ public void forfeit() { if (game != null) { //confirm the forfeit before you actually forfeit int reply = JOptionPane.showConfirmDialog(view.getGui(), "Are you sure you want to forfeit?", "Forfeit", JOptionPane.YES_NO_OPTION); if (reply == JOptionPane.YES_OPTION) { //change the players scores corresponding to the win if (chessPlayer.getTurn()) { view.p2Score++; } else { view.p1Score++; } game = null; } } } /* A function that allows the user to restart the game Rules: Both users must consent per the prompt This function is used in restart, new game and geass game if the game is not null (There is a game being played at the moment) */ public void restart() { if(game != null) { //confirm the restart int reply = JOptionPane.showConfirmDialog(view.getGui(), "Do Both Players want to restart?", "Restart", JOptionPane.YES_NO_OPTION); if (reply == JOptionPane.YES_OPTION) { startGame(); } } else { startGame(); } } /* A function that allows the user to undo a move used in the undo button Rules: Undoes a move for both black and white and gives the turn to whoevers turn it should be. However you can only use this once per game ie you cant spam it if youre contrinually getting crushed Also a pawns first move is not reinitialized so you can't jump 2 anymore On the plus side it robs the opposing pawn of his first move too The reason for this is that you technically made your first move with that pawn Lastly a geass can not be undone but you can rewind to 1 turn before the geass */ public void undo() { if(game != null) { if(chessPlayer.getTurn() && whiteUndo == false && whitesMoves.size() >= 1 && blackMoves.size() >= 1) { undoHelper(); whiteUndo = true; } else if(!chessPlayer.getTurn() && blackUndo == false && whitesMoves.size() >= 1 && blackMoves.size() >= 1) { undoHelper(); blackUndo = true; } else { JOptionPane.showMessageDialog(view.getGui(), "Can't undo"); } } } /* A helper function that actually undoes the move by backtracking in both the interface and the back end */ public void undoHelper() { moves m = whitesMoves.get(whitesMoves.size() - 1); game.backtrack(m.fromX, m.fromY, m.toX, m.toY, m.moved, m.captured); view.backtrack(m.fromX, m.fromY, m.toX, m.toY, m.captured); m = blackMoves.get(blackMoves.size() - 1); game.backtrack(m.fromX, m.fromY, m.toX, m.toY, m.moved, m.captured); view.backtrack(m.fromX, m.fromY, m.toX, m.toY, m.captured); } /* A helper function that helps with restarting the game. Starts the game by making a new game */ public void startGame() { game = new chessGame(makeGeass); view.game = game; //initialize the interface view.makeGame(); //set the buttons to work for(int i = 0; i < view.chessSquares.length; i++) { for(int j = 0; j < view.chessSquares[i].length; j++) { view.addSquareListener(new squareListener(), i, j); } } whitesMoves = new ArrayList<moves>(); blackMoves = new ArrayList<moves>(); whiteUndo = false; blackUndo = false; view.getGui().revalidate(); view.getGui().repaint(); //run a thread within the game loop new gameThread().start(); //this is for if you actually hit this point. both new game and geass buttons set makeGeass even if they dont restart //however this changes geassGame which you use later in move since you restarted at this point isGeassGame = makeGeass; resetDefaults(); } //check if your king is in check public boolean checkCheck() { int[] kingsLocation = game.findKing(); return ((king)game.board.accessSquare(kingsLocation[0], kingsLocation[1]).occupiedBy()).inCheck(kingsLocation[0], kingsLocation[1]); } /* A listener that is added to the forfeit button when the controller is created Adds the functionality of forfeit to the button */ class forfeitListener implements ActionListener { public void actionPerformed(ActionEvent e) { forfeit(); view.getGui().revalidate(); view.getGui().repaint(); } } /* A listener that is added to the restart button when the controller is created Adds the functionality of restart to the button */ class restartListener implements ActionListener { public void actionPerformed(ActionEvent e) { restart(); } } /* A listener that is added to the newGame button when the controller is created Adds the functionality of restart to the button Allows you to make a game without geass */ class newGameListener implements ActionListener { public void actionPerformed(ActionEvent e) { makeGeass = false; restart(); } } /* A listener that is added to the newGame button when the controller is created Adds the functionality of restart to the button Allows you to make a game with geass */ class geassGameListener implements ActionListener { public void actionPerformed(ActionEvent e) { makeGeass = true; restart(); } } /* A listener that is added to the setName button when the controller is created Adds the functionality of setName to the button */ class setNameListener implements ActionListener { public void actionPerformed(ActionEvent e) { setName(); } } /* A listener that is added to the dispScore button when the controller is created Adds the functionality of dispScore to the button */ class dispScoreListener implements ActionListener { public void actionPerformed(ActionEvent e) { displayScore(); } } /* A listener that is added to the undo button when the controller is created Adds the functionality of undo to the button */ class undoButtonListener implements ActionListener { public void actionPerformed(ActionEvent e) { undo(); } } /* A listener that is added to every individual square on the board when the game is started */ class squareListener implements ActionListener { public void actionPerformed(ActionEvent e) { //dont do anything if the game is null. There is no game to play if(game != null) { for(int i = 0; i < view.chessSquares.length; i++) { for(int j = 0; j < view.chessSquares.length; j++) { //find the square that was clicked if(view.chessSquares[i][j].equals(e.getSource())) { //if the piece you select is null and the square is occupied you can set that piece and store //the x and y locations that it's from if(movePiece == null && game.board.accessSquare(i, j).isOccupied()) { if(game.board.accessSquare(i, j).occupiedBy().getColor() != chessPlayer.getTurn()) { //tell user to select a piece of valid color JOptionPane.showMessageDialog(view.getGui(), "Select a piece of the correct color"); } else { movePiece = game.board.accessSquare(i, j).occupiedBy(); fromX = i; fromY = j; } if(movePiece instanceof lelouch || movePiece instanceof cc) { //if you're playing geass chess you have to ask the user if they want to use geass //if they do useGeass it true int reply = JOptionPane.showConfirmDialog(view.getGui(), "Geass?", null, JOptionPane.YES_NO_OPTION); if (reply == JOptionPane.YES_OPTION) { useGeass = true; } else { useGeass = false; } } } //the person will now select where they want to move the piece in question else if(movePiece != null) { //if the user wants to use geass if(isGeassGame && useGeass) { //if the piece is cc and you geass //change the icon and turn if geass is valid //then reset the default value of movepiece if(movePiece instanceof cc) { boolean valid = ((cc)movePiece).geass(fromX, fromY, i, j); if(valid) { view.ccChangeIcon(i, j); chessPlayer.setTurn(!chessPlayer.getTurn()); if(checkCheck()) { //if cc has geassed a piece such that the opposing king is now in check alert the player JOptionPane.showMessageDialog(view.getGui(), "Check"); } } else { JOptionPane.showMessageDialog(view.getGui(), "Invalid Geass"); } resetDefaults(); } if(movePiece instanceof lelouch) { //if the piece is lelouch and you geass //change the icon and turn if geass is valid //then reset the default value of movepiece if(moveX == -1 && moveY == -1) { moveX = i; moveY = j; } else { boolean valid = ((lelouch)movePiece).geass(fromX, fromY, moveX, moveY, i, j); if(valid) { view.normalChangeIcon(moveX, moveY, i, j); chessPlayer.setTurn(!chessPlayer.getTurn()); if(checkCheck()) { //if lelouch has geassed a piece such taht it is now threatening the king //alert the player JOptionPane.showMessageDialog(view.getGui(), "Check"); } } else { JOptionPane.showMessageDialog(view.getGui(), "Invalid Geass"); } resetDefaults(); } } } else { //move said piece //if the move was valid you want to set turn and change icon //then reset the default values chessPiece captured = game.board.accessSquare(i, j).occupiedBy(); boolean valid = game.movePiece(movePiece, fromX, fromY, i, j); if(valid) { //add the move to whiteMoves and blackMoves so that it can be undone later if(chessPlayer.getTurn()) { whitesMoves.add(new moves(fromX, fromY, i, j, movePiece, captured)); } else { blackMoves.add(new moves(fromX, fromY, i, j, movePiece, captured)); } view.normalChangeIcon(fromX, fromY, i, j); chessPlayer.setTurn(!chessPlayer.getTurn()); if(checkCheck()) { JOptionPane.showMessageDialog(view.getGui(), "Check"); } } else { JOptionPane.showMessageDialog(view.getGui(), "Invalid Move"); } resetDefaults(); } } } } } } } } /* A thread that runs the game loop Changes scores of players if checkmate does nothing if stalemate NOTE: This thread crashes if you forfeit or restart in the middle of the game since you set the game it was working with to null */ class gameThread extends Thread { public void run() { game.playGame(); if(game.checkmate()) { JOptionPane.showMessageDialog(view.getGui(), "Checkmate"); if (chessPlayer.getTurn()) { //white lost view.p2Score++; } else { view.p1Score++; } } else if(game.stalemate()) { JOptionPane.showMessageDialog(view.getGui(), "Stalemate"); } game = null; } } } <file_sep>/static/files/assignment2.1/test_edge.rb require_relative "graph_node" require "test/unit" require 'json' require './graph' # A testing class for edge class TestEdge < Test::Unit::TestCase # A test that checks if the properties of the first index of the edges aligns # with the actual values of it # This also tests graph construction and add_edges from the graph class def test_simple file = File.read('map_data.json') data_hash = JSON.parse(file) @graph = Graph.new() @graph.init_edges(data_hash['routes']) edge = @graph.get_edge[0] assert_equal(edge.get_ports[0], 'SCL') assert_equal(edge.get_ports[1], 'LIM') assert_equal(edge.get_distance, 2453) end end<file_sep>/SQL_interaction.py import sqlite3 import time import os.path def create_comments_table(): """ Creates a table for comments. Never actaully called """ conn = sqlite3.connect('comments.db') print 'opened database' conn.execute('''CREATE TABLE Comments ( filename TEXT NOT NULL, content TEXT NOT NULL, time TEXT NOT NULL );''') print 'Table created successfully' conn.close() def create_keywords_table(): """ Creates a table for keywords. Never actually called """ conn = sqlite3.connect('comments.db') print 'opened database' conn.execute('''CREATE TABLE Words ( word TEXT NOT NULL, replace TEXT NOT NULL );''') print 'Table created successfully' conn.close() def insert_keywords_table(): """ inserts the keywords into the database. Never actually called """ base_dir = os.path.dirname(os.path.abspath(__file__)) db_path = os.path.join(base_dir, "comments.db") conn = sqlite3.connect(db_path) print 'opened database' conn.execute('''INSERT INTO Words(word, replace) VALUES (?, ?)''', ("hello", "welcome")) conn.commit() conn.execute('''INSERT INTO Words(word, replace) VALUES (?, ?)''', ("bye bye", "see ya nerd")) conn.commit() conn.execute('''INSERT INTO Words(word, replace) VALUES (?, ?)''', ("whats up", "welcome")) conn.commit() conn.execute('''INSERT INTO Words(word, replace) VALUES (?, ?)''', ("wtf", "i don't get this")) conn.commit() conn.execute('''INSERT INTO Words(word, replace) VALUES (?, ?)''', ("omg", "this is awesome")) conn.commit() print 'Values inserted successfully' conn.close() def insert_comment(filename, content): """ inserts the comment into the database :param filename = the name of the file :param content = the content of the comment taken from the textbox """ if content is None or len(content) == 0 or filename is None or len(filename) == 0: return content = check_words(content) base_dir = os.path.dirname(os.path.abspath(__file__)) db_path = os.path.join(base_dir, "comments.db") conn = sqlite3.connect(db_path) # By using a ? instead of %s or something similar you are in effect preventing against a SQL Injection # sqlite execute has it's own checks built into it conn.execute('''INSERT INTO Comments(filename, content, time) VALUES (?, ?, ?)''', (filename, content, time.asctime(time.localtime(time.time())))) conn.commit() conn.close() def get_file_comments(filename): """ gets the comments for a a file as a list :param filename: the name of the file :return: the comments that the user has given """ base_dir = os.path.dirname(os.path.abspath(__file__)) db_path = os.path.join(base_dir, "comments.db") conn = sqlite3.connect(db_path) comment_list = [] # there isn't really a need to sanitize this input for comments since filename is not under the control of the user # regardless execute would sanitize it for you if we had to sanitize it for entry in conn.execute('''SELECT * FROM Comments WHERE filename = ?''', (filename,)): comment_list.append(entry) conn.close() return comment_list def clear_database(): """ Wipes the database. Never called. Used for testing """ base_dir = os.path.dirname(os.path.abspath(__file__)) db_path = os.path.join(base_dir, "comments.db") conn = sqlite3.connect(db_path) conn.execute('''DELETE FROM Comments''') conn.commit() conn.close() def check_words(content): """ Checks if the words are in the keywords and replaces them if they are :param content = the string comment :return content = the revised content """ base_dir = os.path.dirname(os.path.abspath(__file__)) db_path = os.path.join(base_dir, "comments.db") conn = sqlite3.connect(db_path) for entry in conn.execute('''SELECT * FROM Words'''): if entry[0] in content: content = content.replace(entry[0], entry[1]) return content <file_sep>/static/files/assignment1.0/src/king.java /** * Created by Howard on 2/3/2016. */ /* TODO: Implement Castling */ public class king extends chessPiece { public king(int x, int y, boolean white) { super(x, y, white); } /* a function that determines whether or not the king can move to the indicated square The king can move one space in any direction he wants The restriction on the king is that he can not take a piece of his own color Moving into check is covered in chessGame.java */ @Override public boolean isValid(int fromX, int fromY, int toX, int toY) { if(fromX == toX && fromY == toY) { return false; } if(toX < 0 || toX > 7 || toY < 0 || toY > 7) { return false; } if(Math.abs(toX - fromX) < 2 && Math.abs(toY - fromY) < 2) { if(chessGame.board.accessSquare(toX,toY).isOccupied() && chessGame.board.accessSquare(toX,toY).occupiedBy().getColor() == super.getColor()) { return false; } else { return true; } } else { return false; } } /* a function that determines whether or not the king is in check */ public boolean inCheck(int x, int y) { if(x < 0 || x > 7 || y < 0 || y > 7) { return true; } if(super.getColor() == false) { for(int i = 0; i < chessGame.white.pieces.size(); i++) { chessPiece currPiece = chessGame.white.pieces.get(i); if(currPiece.isValid(currPiece.getX(), currPiece.getY(), x, y)) { return true; } } return false; } else { for(int i = 0; i < chessGame.black.pieces.size(); i++) { chessPiece currPiece = chessGame.black.pieces.get(i); if (currPiece.isValid(currPiece.getX(), currPiece.getY(), x, y)) { return true; } } return false; } } } <file_sep>/static/files/assignment1.0/src/pawn.java /** * Created by Howard on 2/3/2016. */ public class pawn extends chessPiece { /* TODO: Implement En Passant and Promotion */ public boolean firstMove; public pawn(int x, int y, boolean white) { super(x, y, white); firstMove = true; } /* This function ensures that a pawns movement is valid Pawns cannot move backwards On the first move a pawn can jump 2 spaces, 1 space or capture Moves following the first move are 1 space movements or captures A Pawn cannot take a piece in front of him A Pawn cannot take a piece thats his own color A Pawn cannot jump over pieces */ @Override public boolean isValid(int fromX, int fromY, int toX, int toY) { if(fromX == toX && fromY == toY) { return false; } if(toX < 0 || toX > 7 || toY < 0 || toY > 7) { return false; } if(toY <= fromY && super.getColor() == true) { return false; } if(toY >= fromY && super.getColor() == false) { return false; } if(firstMove == true) { if(super.getColor() == true) { if(toX != fromX) { if ((toY == fromY + 1) && ((toX == fromX + 1) || (toX == fromX - 1)) && chessGame.board.accessSquare(toX,toY).isOccupied()) { if(chessGame.board.accessSquare(toX, toY).occupiedBy().getColor() == false) { return true; } else { return false; } } else { return false; } } else { if (toY == fromY + 1 && !chessGame.board.accessSquare(toX,toY).isOccupied()) { return true; } else if (toY == fromY + 2 && !chessGame.board.accessSquare(toX,toY).isOccupied()) { return true; } else { return false; } } } else { if(toX != fromX) { if ((toY == fromY - 1) && ((toX == fromX + 1) || (toX == fromX - 1)) && chessGame.board.accessSquare(toX,toY).isOccupied()) { if(chessGame.board.accessSquare(toX, toY).occupiedBy().getColor() == true) { return true; } else { return false; } } else { return false; } } else { if (toY == fromY - 1 && !chessGame.board.accessSquare(toX,toY).isOccupied()) { return true; } else if (toY == fromY - 2 && !chessGame.board.accessSquare(toX,toY).isOccupied()) { return true; } else { return false; } } } } else { if(super.getColor() == true) { if(toX != fromX) { if ((toY == fromY + 1) && ((toX == fromX + 1) || (toX == fromX - 1)) && chessGame.board.accessSquare(toX,toY).isOccupied()) { if(chessGame.board.accessSquare(toX, toY).occupiedBy().getColor() == false) { return true; } else { return false; } } else { return false; } } else { if (toY == fromY + 1 && !chessGame.board.accessSquare(toX,toY).isOccupied()) { return true; } else { return false; } } } else { if(toX != fromX) { if ((toY == fromY - 1) && ((toX == fromX + 1) || (toX == fromX - 1)) && chessGame.board.accessSquare(toX,toY).isOccupied()) { if(chessGame.board.accessSquare(toX, toY).occupiedBy().getColor() == false) { return true; } else { return false; } } else { return false; } } else { if (toY == fromY - 1 && !chessGame.board.accessSquare(toX,toY).isOccupied()) { return true; } else { return false; } } } } } } <file_sep>/models/Entry.py class Entry: """ A Model class that defines an entry """ def __init__(self, kind, name, size, commit): """ Constructor for entry class :param kind: The type of commit as a string :param name: The name of the file commited as a string :param size: The size of the object. If its 0 it means you're looking at a directory :param commit: An ordered dict with revision, author and date all as strings except revision which is an int """ self.kind = kind self.name = name self.size = size self.commit = commit self.msg = "" self.all_commits = [] self.file_type = self.det_file_type(name) def det_file_type(self, name): """ Determines the filetype for an object :param name: the name of the object :return: A string representing the type """ file_path = name.split('/') if '.' in file_path[len(file_path) - 1] and '.' != file_path[len(file_path) - 1][0] and 'json' not in file_path[len(file_path) - 1]: return "Code/Markup Language" elif 'json' in file_path[len(file_path) - 1]: return "JSON" else: return "Other" <file_sep>/static/files/assignment1.1/src/chessSquareTest.java import org.junit.Test; import static org.junit.Assert.*; /** * Created by Howard on 2/8/2016. * Tests a chessSquare. Functions are pretty self explanatory */ public class chessSquareTest { /* Tests the isOccupied function At first, every piece on the board should be null so this should return false Then you test this function for both white and black pieces This function also tests the removePiece and addPiece functions */ @Test public void testIsOccupied() throws Exception { chessBoard testBoard = new chessBoard(); for(int i = 0 ; i < 8; i++) { for(int j = 0; j < 8; j++) { //check to make sure no squares are occupied assertEquals(testBoard.accessSquare(i, j).isOccupied(), false); } } king testPiece1 = new king(true); pawn testPiece2 = new pawn(false); //add pieces and see if the piece occupies the square that you set it to occupy testBoard.accessSquare(0, 0).addPiece(testPiece1); testBoard.accessSquare(1, 1).addPiece(testPiece2); assertEquals(testBoard.accessSquare(0, 0).isOccupied(), true); assertEquals(testBoard.accessSquare(1, 1).isOccupied(), true); //remove pieces and make sure the square is set back to not occupied testBoard.accessSquare(0, 0).removePiece(); testBoard.accessSquare(1, 1).removePiece(); assertEquals(testBoard.accessSquare(0, 0).isOccupied(), false); assertEquals(testBoard.accessSquare(1, 1).isOccupied(), false); } /* Tests the occupiedBy function At first, every piece on the board should be null Then you test this function for both white and black pieces This function also tests the addPiece and removePiece function */ @Test public void testOccupiedBy() throws Exception { chessBoard testBoard = new chessBoard(); for(int i = 0 ; i < 8; i++) { for(int j = 0; j < 8; j++) { //since there are no pieces on an empty chessboard, it should be null assertEquals(testBoard.accessSquare(i, j).occupiedBy(), null); } } king testPiece1 = new king(true); pawn testPiece2 = new pawn(false); testBoard.accessSquare(0, 0).addPiece(testPiece1); testBoard.accessSquare(1, 1).addPiece(testPiece2); //add and see if a piece occupies the square assertEquals(testBoard.accessSquare(0, 0).occupiedBy(), testPiece1); assertEquals(testBoard.accessSquare(1, 1).occupiedBy(), testPiece2); testBoard.accessSquare(0, 0).removePiece(); testBoard.accessSquare(1, 1).removePiece(); //remove and see if a piece occupied the square assertEquals(testBoard.accessSquare(0, 0).occupiedBy(), null); assertEquals(testBoard.accessSquare(1, 1).occupiedBy(), null); } }<file_sep>/tests/test_commit.py import unittest from SVN_Parse import * class TestCommit(unittest.TestCase): def test_filetype(self): """ Tests the integrity of the file type function making sure that every entry in log paths is a dict that has key @action, @king and #text :return: """ svn_log = get_xml('svn_log.xml') list_log = parse_log(svn_log['log']['logentry']) for log in list_log: for dict in log.paths: self.assertEqual('@action' in dict, True) self.assertEqual('@kind' in dict, True) self.assertEqual('#text' in dict, True) if __name__ == '__main__': unittest.main()<file_sep>/models/Commit.py import collections class Commit: """ A model class that defines a commit """ def __init__(self, revision, author, date, paths, msg): """ Initializes the commit class :param revision: the revision represented as an int :param author: whoever wrote the file represented as a string :param date: The date it was committed represented as a string :param paths: The adds and commits. Either passed in as a dict or list of dicts which must be standardized :param msg: The commit message :return: """ self.revision = revision self.author = author self.date = date self.paths = self.convert_paths_to_list(paths) self.msg = msg def convert_paths_to_list(self, paths): """ Right now paths is a list of dicts or a dict but we dont know which The purpose of this function is to standardize it so we have a standardized list of dicts with the keys of the dicts in order :param paths: Path is either some dict or a list of dicts right now :return: Return paths but as a standardized list of dicts """ uniform_path = [] if type(paths['path']) == collections.OrderedDict: path_dict = {} for k, v in paths['path'].items(): path_dict[k] = v uniform_path.append(path_dict) else: for p in paths['path']: path_dict = {} for k, v in p.items(): path_dict[k] = v uniform_path.append(path_dict) return uniform_path <file_sep>/static/files/assignment2.1/graph.rb # Created by Howard on 2/24/2016 # A class that represents the graph # There is a list of edges representing flights and a list of nodes as cities require './graph_node' require './edge' require './city' require 'json' class Graph # Initializes the edges and cities at first to be empty lists def initialize @edges = [] @cities = [] end # Getters for edges and cities def get_edge return @edges end def get_city return @cities end # Adds the cities to the map. The Node Dict contains nodes which are dictionaries themselves # For further documentation see city.rb def init_cities(node_dict) for node in node_dict do @cities.push(City.new(node)) end end # Adds edges to the map. The Edge Dict contains edges which are dictionaries themselves # For further documentation see edge.rb def init_edges(edge_dict) for edge in edge_dict do @edges.push(Edge.new(edge)) end end # Prints a list of all the cities and codes that correspond to all of the cities def print_cities for i in 0..@cities.length - 1 do puts "#{@cities[i].get_code}: #{@cities[i].get_name}" end end # Prints the information of a specific city given an abbreviation # if the city is found it will also print the corresponding edges that include the destination # else it will print a message saying the city was not found # Param: # name = abbreviation of the city you are trying to get def get_specific_city_info(name) found = false for i in 0..@cities.length - 1 do if name == @cities[i].get_code found = true @cities[i].print_information puts "Non-stop Flights:" # Print the edges of the city name for j in 0..@edges.length - 1 do if name.eql?(@edges[j].get_ports[0]) || name.eql?(@edges[j].get_ports[1]) puts "#{@edges[j].get_ports[0]}, #{@edges[j].get_ports[1]}" end end end end # The situation that the city was not found in the network if !found puts "#{name} was not found in the CSAir network" end end # returns the shortest flight in the network by looping through the network and seeing if the distance is smaller than the min for every node def get_shortest_flight shortest_edge = @edges[0] for i in 1..@edges.length - 1 do if shortest_edge.get_distance > @edges[i].get_distance shortest_edge = @edges[i] end end return shortest_edge end # returns the longest flight in the network by looping through the network and seeing if the distance is larger than the max for every node def get_longest_flight longest_edge = @edges[0] for i in 1..@edges.length - 1 do if longest_edge.get_distance < @edges[i].get_distance longest_edge = @edges[i] end end return longest_edge end # gets the average flight in the network by summing the edge distance up and then dividing it by the number of edges def get_average_flight avg = 0 for i in 0..@edges.length - 1 do avg += @edges[i].get_distance end avg /= @edges.length return avg end # returns the largest population in the network by looping through the cities and seeing if the population is larger than the max for every city def get_biggest_city largest_pop_city = @cities[0] for i in 1..@cities.length - 1 do if largest_pop_city.get_population < @cities[i].get_population largest_pop_city = @cities[i] end end return largest_pop_city end # returns the smallest population in the network by looping through the cities and seeing if the population is smaller than the min for every city def get_smallest_city smallest_pop_city = @cities[0] for i in 1..@cities.length - 1 do if smallest_pop_city.get_population > @cities[i].get_population smallest_pop_city = @cities[i] end end return smallest_pop_city end # gets the average in the network by summing the populations up and then dividing it by the number of vertices def get_average_pop avg = 0 for i in 0..@cities.length - 1 do avg += @cities[i].get_population end avg /= @cities.length return avg end # Get the continents that CS Air services but also the cities on each continent def get_continents # Create a hashtable for each continent and map it to a list with the city in it # Else push the city onto an existing list continents = Hash.new() for i in 0..@cities.length - 1 do if continents.has_key?(@cities[i].get_continent) then continents[@cities[i].get_continent].push(@cities[i].get_name) else continents[@cities[i].get_continent] = [@cities[i].get_name] end end return continents end # Gets hub cities >= specified number_ports in the map with the most edges coming out of them # Param: # number_ports = the minimum number of flights you need to have a hub city # Return: # most_flights = a list with tuples that correspond to the city and the number of flights incoming and outgoing def get_hub_cities(number_ports) # make a hashtable that will store the number of flights from or to each city # add 1 to the hashtable if the city exists in it # else initialize it to 1 hubs = Hash.new() for i in 0..@edges.length - 1 do if hubs.has_key?(@edges[i].get_ports[0]) hubs[@edges[i].get_ports[0]] += 1 else hubs[@edges[i].get_ports[0]] = 1 end if hubs.has_key?(@edges[i].get_ports[1]) hubs[@edges[i].get_ports[1]] += 1 else hubs[@edges[i].get_ports[1]] = 1 end end # create a list that is expanded on by an infinite loop that will break if it cant find a value greater than number_ports # else it will keep going most_flights = [] while 1 do key = nil for j in 0..hubs.keys.length - 1 do if hubs[hubs.keys[j]] >= number_ports key = hubs.keys[j] end end if key == nil break else most_flights.push([key, hubs[key]]) hubs.delete(key) end end # return most_flights so that it can be printed in main return most_flights end # a function that provides sanitation for the city_info unlike init_city # Param: # city_info = a cities information in the form of a hashmap def add_city(city_info) # if the city is already in cities, do nothing for i in 0..@cities.length - 1 do if @cities[i].get_name.eql?(city_info['name']) || @cities[i].get_code.eql?(city_info['code']) return end end # sanitation check population to make sure it isnt negative if city_info['population'] > 0 @cities.push(City.new(city_info)) end end # a function that provides sanitation for the edge_info unlike init_edge # Param: # edge_info = a edges information in the form of a hashmap def add_edge(edge_info) # makes sure that the edge doesnt already exist in edges for i in 0..@edges.length - 1 do if @edges[i].get_ports[0].eql?(edge_info['ports'][0]) && @edges[i].get_ports[1].eql?(edge_info['ports'][1]) return end end # Make sure the edge has a distance of some value if edge_info['distance'] > 0 @edges.push(Edge.new(edge_info)) end end # function that removes a city from the list of cities # Param: # city_abbreviation = a city's abbreviation that is pattern matched before it's dropped def remove_city(city_abbreviation) for i in 0..@cities.length - 1 do if city_abbreviation.eql?(@cities[i].get_code) @cities.delete_at(i) for j in 0..@edges.length - 1 do if @edges[j].get_ports[0].eql?(city_abbreviation) || @edges[j].get_ports[1].eql?(city_abbreviation) @edges.delete_at(j) end end end end end # function that removes an edge from the list of edges # NOTE: This removes both matches ie will remove (NYC, CHI) and (CHI, NYC) if given CHI and NYC # Param: # city1 = the first city in the edge # city2 = the second city in the edge def remove_edge(city1, city2) for i in 0..@edges.length - 1 do if city1.eql?(@edges[i].get_ports[0]) && city2.eql?(@edges[i].get_ports[1]) @edges.delete_at(i) elsif city1.eql?(@edges[i].get_ports[1]) && city2.eql?(@edges[i].get_ports[0]) @edges.delete_at(i) end end end # function that allows the user to edit a city # Param: # edit = the city that is edited represented as a hashmap def edit_city(edit) for i in 0..@cities.length - 1 do if @cities[i].get_code.eql?(edit['code']) && edit['population'] > 0 @cities[i].set_code(edit['code']) @cities[i].set_name(edit['name']) @cities[i].set_country(edit['country']) @cities[i].set_continent(edit['continent']) @cities[i].set_timezone(edit['timezone']) @cities[i].set_coordinates(edit['coordinates']) @cities[i].set_population(edit['population']) @cities[i].set_region(edit['region']) end end end # A function that creates a JSON object for you # Param: # data_sources = the first thing in the parameter for temp (the actual sources) def convert_json(data_sources) save_json = { "data sources" => data_sources, "metros" => hashify_cities, "routes" => hashify_edges, } File.open("temp.json", "w") do |f| f.write(JSON.pretty_generate(save_json)) end end # A function that helps when creating the JSON Object # This function creates a hashtable of cities so the JSON returns that and not a hashtable of memory pointers # Returns: # cities_list = a list filled with cities hashtables def hashify_cities cities_list = [] for i in 0..@cities.length - 1 do # Code the keys in for the appropriate values temp_hash = { "code" => @cities[i].get_code, "name" => @cities[i].get_name, "country" => @cities[i].get_country, "continent" => @cities[i].get_continent, "timezone" => @cities[i].get_timezone, "coordinates" => @cities[i].get_coordinates, "population" => @cities[i].get_population, "region" => @cities[i].get_region, } cities_list.push(temp_hash) end return cities_list end # A function that helps when creating the JSON Object # This function creates a hashtable of edges so the JSON returns that and not a hashtable of memory pointers # Returns: # edges_list = a list filled with edge hashtables def hashify_edges edges_list = [] for i in 0..@edges.length - 1 do # Code the keys in for the appropriate values temp_hash = { "ports" => @edges[i].get_ports, "distance" => @edges[i].get_distance, } edges_list.push(temp_hash) end return edges_list end # a function that calculates the distance along a path of edges # it calculates the total cost of a path by taking a rate for every km on a flight but subtracting rate by .05 every trip # it calculates the time by computing layover time and how long the trip takes # Does not handle cycles # Param: # path = the actual path a flight takes represented as a list # Returns: # total distance, total cost rounded to 2 and total time rounded def calc_distance_cost_time(path) total_distance = 0 cost_rate = 0.35 total_cost = 0 total_time = 0.0 # run it the length - 2 times since you need to check i and i+1 every time to make sure its valid for i in 0..path.length - 2 valid_edge = nil for j in 0..@edges.length - 1 if path[i].eql?(@edges[j].get_ports[0]) && path[i+1].eql?(@edges[j].get_ports[1]) valid_edge = @edges[j] end end # if you don't have a valid edge, you can't do anything so inform the user and return 0, 0, 0 if valid_edge == nil puts "Path was invalid" return 0, 0, 0 else # add to your total distance that you need to travel total_distance += valid_edge.get_distance # cost rate rule discussed in 2.3 if cost_rate > 0 total_cost += valid_edge.get_distance * cost_rate cost_rate -= 0.05 end # wasnt really sure what to do for this...just decided to divide it by 500 if less than 400 # add to time rule discussed in 2.3 if valid_edge.get_distance < 400 total_time += valid_edge.get_distance/500 else total_time += 400/500 + (valid_edge.get_distance - 400)/750 end outgoing_flights = 0 for i in 0..@edges.length[1] if valid_edge.get_ports[1].eql?(@edges[i].get_ports[0]) outgoing_flights += 1 end end if outgoing_flights -= 12 total_time += 2 - (outgoing_flights * (1/6)) end end end return total_distance, total_cost.round(2), total_time.round end # a function that runs Djikstras algorithm given a source and a destination # thank god i remember 374 # Params: # Source and dest - source and destination used in Djikstras to find the shortest path # Return: # A list of nodes so that you can run it through calc_distance_cost_time in main def djikstras(source, dest) temp_cities = [] node = nil # find the source value and set distance to 0 # else just init_djikstras found in graph # also push onto temp_cities to make sure that you arent changing the actual value of class variable cities for i in 0..@cities.length - 1 temp_cities.push(@cities[i]) temp_cities[i].init_djikstra if source == temp_cities[i].get_code node = temp_cities[i] node.set_distance(0) end end # the source was invalid if node == nil return [] end # 2 cases you would exit. 1. When there is nothing left in the list and 2. When the dest is already the minimum weight vertex while temp_cities != [] # Find the minimum weight vertex to begin with node = temp_cities[0] index_node = 0 for i in 0..temp_cities.length - 1 if node.get_distance > temp_cities[i].get_distance node = temp_cities[i] index_node = i end end # When the dest is already the minimum weight vertex there is no further need to compute if node.get_code == dest break end # Delete the city from the temp_city array temp_cities.delete_at(index_node) # Take all the outgoing edges and add that value to your node for i in 0..@edges.length - 1 if @edges[i].get_ports[0].eql?(node.get_code) # Take all the outgoing edges and add that value to your node alternate_distance = node.get_distance + @edges[i].get_distance v_node = nil # get the node at the end of the edge for j in 0..temp_cities.length - 1 if @edges[i].get_ports[1].eql?(temp_cities[j].get_code) v_node = temp_cities[j] end end # provided that that node isn't null and that alternate_Distance is shorter than that notes distance # set the node's previous and distance if v_node != nil && alternate_distance < v_node.get_distance v_node.set_distance(alternate_distance) v_node.set_prev(node) end end end end # initialize a placeholder for the end such that you can backtrack through your route after you're done and make a list # corresponding to your route list_nodes = [] placeholder = nil for i in 0..@cities.length - 1 if @cities[i].get_code == dest placeholder = @cities[i] end end # dest is invalid if placeholder == nil return [] end # Backtrack using get_prev and add it to the array while placeholder.get_prev != nil list_nodes.unshift(placeholder.get_code) placeholder = placeholder.get_prev end list_nodes.unshift(source) return list_nodes end end<file_sep>/tests/test_sql.py import unittest from SQL_interaction import * class TestSQL(unittest.TestCase): def test_insert_and_get_file_comments(self): """ tests if inserting and getting works """ clear_database() create_comments_table() create_keywords_table() insert_keywords_table() insert_comment("test", "nerd") comments = get_file_comments("test") self.assertEqual(comments[0][1], "nerd") insert_comment("test", "Something else") comments = get_file_comments("test") self.assertEqual(comments[1][1], "Something else") clear_database() os.remove("comments.db") def test_check_words(self): """ Tests to make sure that words get replaced :return: """ str = "hello" str = check_words(str) self.assertEqual('welcome', str) str = "hellohello" str = check_words(str) self.assertEqual('welcomewelcome', str) str = check_words("oi") self.assertEqual('oi', str) <file_sep>/tests/test_entry.py import unittest from models.Entry import Entry class TestEntry(unittest.TestCase): def test_filetype(self): """ Test the integrity of the entry function file_type() :return: """ test_entry = Entry("file", "test", "0", 0) self.assertEqual(test_entry.file_type, 'Other') test_entry = Entry("file", "test.json", "0", 0) self.assertEqual(test_entry.file_type, 'JSON') test_entry = Entry("file", "test.java", "0", 0) self.assertEqual(test_entry.file_type, 'Code/Markup Language') if __name__ == '__main__': unittest.main()<file_sep>/static/files/assignment2.0/graph.rb # Created by Howard on 2/24/2016 # A class that represents the graph # There is a list of edges representing flights and a list of nodes as cities require './graph_node' require './edge' class Graph # Initializes the edges and cities at first to be empty lists def initialize @edges = [] @cities = [] end # Getters for edges and cities def get_edge return @edges end def get_city return @cities end # Adds the cities to the map. The Node Dict contains nodes which are dictionaries themselves # For further documentation see graph_node.rb def add_cities(node_dict) for node in node_dict do @cities.push(GraphNode.new(node)) end end # Adds edges to the map. The Edge Dict contains edges which are dictionaries themselves # For further documentation see edge.rb def add_edges(edge_dict) for edge in edge_dict do @edges.push(Edge.new(edge)) end end # Prints a list of all the cities and codes that correspond to all of the cities def get_cities for i in 0..@cities.length - 1 do puts "#{@cities[i].get_code}: #{@cities[i].get_name}" end end # Prints the information of a specific city given an abbreviation # if the city is found it will also print the corresponding edges that include the destination # else it will print a message saying the city was not found # name - abbreviation of the city you are trying to get def get_specific_city_info(name) found = false for i in 0..@cities.length - 1 do if name == @cities[i].get_code found = true @cities[i].print_information puts "Non-stop Flights:" # Print the edges of the city name for j in 0..@edges.length - 1 do if name.eql?(@edges[j].get_ports[0]) || name.eql?(@edges[j].get_ports[1]) puts "#{@edges[j].get_ports[0]}, #{@edges[j].get_ports[1]}" end end end end # The situation that the city was not found in the network if !found puts "#{name} was not found in the CSAir network" end end # returns the shortest flight in the network by looping through the network and seeing if the distance is smaller than the min for every node def get_shortest_flight shortest_edge = @edges[0] for i in 1..@edges.length - 1 do if shortest_edge.get_distance > @edges[i].get_distance shortest_edge = @edges[i] end end puts "The shortest flight is from #{shortest_edge.get_ports[0]} to #{shortest_edge.get_ports[1]}" puts "It takes #{shortest_edge.get_distance} miles to get there" end # returns the longest flight in the network by looping through the network and seeing if the distance is larger than the max for every node def get_longest_flight longest_edge = @edges[0] for i in 1..@edges.length - 1 do if longest_edge.get_distance < @edges[i].get_distance longest_edge = @edges[i] end end puts "The longest flight is from #{longest_edge.get_ports[0]} to #{longest_edge.get_ports[1]}" puts "It takes #{longest_edge.get_distance} miles to get there" end # gets the average flight in the network by summing the edge distance up and then dividing it by the number of edges def get_average_flight avg = 0 for i in 0..@edges.length - 1 do avg += @edges[i].get_distance end avg /= @edges.length puts "The average flight distance is #{avg}" end # returns the largest population in the network by looping through the cities and seeing if the population is larger than the max for every city def get_biggest_city largest_pop_city = @cities[0] for i in 1..@cities.length - 1 do if largest_pop_city.get_population < @cities[i].get_population largest_pop_city = @cities[i] end end puts "The City with the Largest Population is #{largest_pop_city.get_name}" puts "It has #{largest_pop_city.get_population} people" end # returns the smallest population in the network by looping through the cities and seeing if the population is smaller than the min for every city def get_smallest_city smallest_pop_city = @cities[0] for i in 1..@cities.length - 1 do if smallest_pop_city.get_population > @cities[i].get_population smallest_pop_city = @cities[i] end end puts "The City with the Smallest Population is #{smallest_pop_city.get_name}" puts "It has #{smallest_pop_city.get_population} people" end # gets the average in the network by summing the populations up and then dividing it by the number of vertices def get_average_pop avg = 0 for i in 0..@cities.length - 1 do avg += @cities[i].get_population end avg /= @cities.length puts "The average population of all cities served by CSAir is #{avg}" end # Get the continents that CS Air services but also the cities on each continent def get_continents # Create a hashtable for each continent and map it to a list with the city in it # Else push the city onto an existing list continents = Hash.new() for i in 0..@cities.length - 1 do if continents.has_key?(@cities[i].get_continent) then continents[@cities[i].get_continent].push(@cities[i].get_name) else continents[@cities[i].get_continent] = [@cities[i].get_name] end end # print out the continent and the citys that are on the continent # if it is the last city, print a key for the continent to aid the interface for i in 0..continents.keys.length - 1 do puts "#{continents.keys[i]}: " for j in 0..continents[continents.keys[i]].length - 1 do if j != continents[continents.keys[i]].length - 1 then print "#{continents[continents.keys[i]][j]}, " $stdout.flush else puts "#{continents[continents.keys[i]][j]}" end end end end # Gets 3 hub cities in the map with the most edges coming out of them def get_hub_cities # make a hashtable that will store the number of flights from or to each city # add 1 to the hashtable if the city exists in it # else initialize it to 1 hubs = Hash.new() for i in 0..@edges.length - 1 do if hubs.has_key?(@edges[i].get_ports[0]) hubs[@edges[i].get_ports[0]] += 1 else hubs[@edges[i].get_ports[0]] = 1 end if hubs.has_key?(@edges[i].get_ports[1]) hubs[@edges[i].get_ports[1]] += 1 else hubs[@edges[i].get_ports[1]] = 1 end end # organize the hashtable by finding the input with the key with the most inputs and removing it from the dictionary after adding it to the hubs most_flights = [] for i in 0..2 do key = hubs.keys[0] for j in 1..hubs.keys.length - 1 do if hubs[hubs.keys[j]] > hubs[key] key = hubs.keys[j] end end most_flights.push(key) hubs.delete(key) end # print the 3 hubs with the most travel data for i in 0..2 do puts most_flights[i] end end end<file_sep>/static/files/assignment1.2/src/Models/chessBoard.java package Models; /** * Created by Howard on 2/3/2016. * The board is created originally containing no pieces * The board must be created before the players can be */ public class chessBoard { public chessSquare[][] board; /* Make a board that has 8 x 8 empty squares The squares are later filled when you make the player */ public chessBoard() { board = new chessSquare [8][8]; for(int i = 0; i < board.length; i++) { for(int j = 0; j < board[i].length; j++) { board[i][j] = new chessSquare(); } } } /* Access one specific square at any given moment */ public chessSquare accessSquare(int x, int y) { if(x >= 0 && x < 8 && y < 8 && y >= 0) { return board[x][y]; } else { return null; } } } <file_sep>/web_portfolio.py from flask import Flask, render_template, request from SVN_Parse import * from SQL_interaction import get_file_comments, insert_comment from Endpoint import * # By default flask will prevent xss attacks by configuring Jinja2 to autoescape all values on the page # For more info visit http://damyanon.net/flask-series-security/ app = Flask(__name__) @app.route('/') def main(): """ Used to boot up the index page """ dict_parse = get_projects() return render_template('index.html', dict_parse=dict_parse) @app.route('/project/<key>') def project(key): """ Used to boot up the project page """ dict_parse = get_projects() return render_template('project.html', key=key, dict_parse=dict_parse) @app.route('/comment', methods=['POST']) def comment(): """ Used in ajax call """ filename = request.values.get('filename', None) content = request.values.get('content', None) insert_comment(filename, content) return 'done' @app.route('/content', methods=['GET']) def content(): """ Used as an endpoint to retrieve the content of a file """ print "bye" dict_parse = get_projects() key = request.values.get('key', None) name = request.values.get('filename', None) for i in dict_parse[key]: if i.name == name: title = name.split('/')[len(name.split('/')) - 1] comments = get_file_comments(name) filename = "./files/" + name f = get_content(filename) return render_template('detail.html', key=key, file_info=i, title=title, comments=comments, content=f) @app.route('/details/<path:key>/<path:name>') def details(key, name): """ Used to boot up the file page """ print "hi" dict_parse = get_projects() for i in dict_parse[key]: if i.name == name: title = name.split('/')[len(name.split('/')) - 1] comments = get_file_comments(name) filename = "./files/" + name f = get_content(filename) return render_template('detail.html', key=key, file_info=i, title=title, comments=comments, content=f) if __name__ == '__main__': app.run(debug=True) <file_sep>/tests/test_parse.py import unittest from SVN_Parse import * import collections class TestCommit(unittest.TestCase): def test_getxml(self): """ Checks the integrity of the getxml function by making sure that it equals the same thing every time """ svn_log = get_xml('svn_log.xml') xmltodict.unparse(svn_log) test_log = get_xml('svn_log.xml') self.assertEqual(test_log, svn_log) svn_list = get_xml('svn_list.xml') xmltodict.unparse(svn_log) test_list = get_xml('svn_list.xml') self.assertEqual(svn_list, test_list) def test_parse_log(self): """ Integrity checks types to make sure that they are uniform throughout the whole array """ svn_log = get_xml('svn_log.xml') list_log = parse_log(svn_log['log']['logentry']) self.assertEqual(len(list_log), 27) for commit in list_log: self.assertEqual(type(commit.revision), unicode) self.assertEqual(type(commit.author), unicode) self.assertEqual(type(commit.date), unicode) self.assertEqual(type(commit.paths), list) def test_parse_list(self): """ Integrity checks types to make sure that they are uniform throughout the whole array """ svn_list = get_xml('svn_list.xml') list_parse = parse_list(svn_list['lists']['list']['entry']) self.assertEqual(len(list_parse), 451) for entry in list_parse: self.assertEqual(type(entry.kind), unicode) self.assertEqual(type(entry.name), unicode) self.assertEqual(type(entry.commit), collections.OrderedDict) self.assertEqual('@revision' in entry.commit, True) self.assertEqual('author' in entry.commit, True) self.assertEqual('date' in entry.commit, True) self.assertEqual(type(entry.msg), str) self.assertEqual(type(entry.all_commits), list) self.assertEqual(type(entry.file_type), str) def test_set_file_msg(self): """ Integrity checks that msg cannot be "" after calling this function """ svn_log = get_xml('svn_log.xml') list_log = parse_log(svn_log['log']['logentry']) svn_list = get_xml('svn_list.xml') list_parse = parse_list(svn_list['lists']['list']['entry']) set_file_msg(list_log, list_parse) for entry in list_parse: self.assertNotEqual(entry.msg, "") def test_set_all_commits(self): """ Integrity checks that all_commits cannot be [] after calling this function """ svn_log = get_xml('svn_log.xml') list_log = parse_log(svn_log['log']['logentry']) svn_list = get_xml('svn_list.xml') list_parse = parse_list(svn_list['lists']['list']['entry']) set_file_msg(list_log, list_parse) set_all_commits(list_log, list_parse) for entry in list_parse: self.assertNotEqual(entry.all_commits, []) if __name__ == '__main__': unittest.main()<file_sep>/static/files/assignment1.0/src/chessSquare.java /** * Created by Howard on 2/3/2016. */ /* a class that represents a square on a board in a chess game This class contains getters and setters */ public class chessSquare { private boolean occupied; private chessPiece piece; public chessSquare() { occupied = false; piece = null; } public boolean isOccupied() { return occupied; } public void addPiece(chessPiece p) { if( p != null) { occupied = true; piece = p; } } public void removePiece() { occupied = false; piece = null; } public chessPiece occupiedBy() { return piece; } } <file_sep>/static/files/assignment1.1/src/chessInterface.java /** * Created by Howard on 2/10/2016. * Based on http://stackoverflow.com/questions/21142686/making-a-robust-resizable-swing-chess-gui * Also based a lot on CS125 MP-PhotoScoop * An Interface class so that the user has some graphical interface while playing chess * This is a STATIC class so far. YOU CANNOT MOVE PIECES */ import java.awt.*; import java.awt.image.BufferedImage; import javax.swing.*; import javax.swing.border.LineBorder; import java.io.File; import javax.imageio.ImageIO; public class chessInterface { private static final JPanel gui = new JPanel(new BorderLayout(3, 3)); private JButton[][] chessSquares = new JButton[8][8]; private JPanel board; public static final int KING = 0, QUEEN = 1, ROOK = 2, KNIGHT = 3, BISHOP = 4, PAWN = 5; public static final int[] STARTING_ROW = { ROOK, KNIGHT, BISHOP, QUEEN, KING, BISHOP, KNIGHT, ROOK }; /* A constructor for gui that initializes the chessSquare, board and gui */ chessInterface() { //create the board as a new GridLayout and add it to GUI //also make sure all the squares are actually square board = new JPanel(new GridLayout(0, 8)); board.setBorder(new LineBorder(Color.BLACK)); gui.add(board); Insets buttonMargin = new Insets(0,0,0,0); //make the squares and set the square colors for (int i = 0; i < chessSquares.length; i++) { for (int j = 0; j < chessSquares[i].length; j++) { JButton b = new JButton(); b.setMargin(buttonMargin); ImageIcon icon = new ImageIcon(new BufferedImage(64, 64, BufferedImage.TYPE_INT_ARGB)); b.setIcon(icon); if ((j % 2 == 1 && i % 2 == 1) || (j % 2 == 0 && i % 2 == 0)) { b.setBackground(Color.BLACK); } else { b.setBackground(Color.WHITE); } chessSquares[i][j] = b; } } //add the squares to the board for (int i = 0; i < 8; i++) { for (int j = 0; j < 8; j++) { board.add(chessSquares[j][i]); } } //get the images of the pieces and then set the pieces on the board Image[][] pieceImages = initPieceImages(); setPieces(pieceImages); } /* Initializing the chessimages from the cs242chessimg.png file This file was taken from http://i.stack.imgur.com/memI0.png Since ImageIO can potentially fail, we need a try catch loop */ private Image[][] initPieceImages() { try { Image[][] pieceImages = new Image[2][6]; BufferedImage img = ImageIO.read(new File("cs242chessimg.png")); for(int i = 0; i < 2; i++) { for(int j = 0; j < 6; j++) { pieceImages[i][j] = img.getSubimage(j * 64, i * 64, 64, 64); } } return pieceImages; } catch(Exception e) { e.printStackTrace(); System.exit(1); } return null; } /* A getter than returns gui. Used when calling it from main to add it to the window */ public JPanel getGui() { return gui; } /* Set the pieces in the order that they go in Param pieceImages are the images that have been created in initPieceImages */ private void setPieces(Image[][] pieceImages) { if(pieceImages != null) { // set up the black pieces in the back row for (int i = 0; i < STARTING_ROW.length; i++) { chessSquares[i][7].setIcon(new ImageIcon(pieceImages[0][STARTING_ROW[i]])); } //set up the blackpieces in the front row for (int i = 0; i < STARTING_ROW.length; i++) { chessSquares[i][6].setIcon(new ImageIcon(pieceImages[0][PAWN])); } // set up the white pieces in the front row for (int i = 0; i < STARTING_ROW.length; i++) { chessSquares[i][1].setIcon(new ImageIcon(pieceImages[1][PAWN])); } //set up the white pieces in the back row for (int i = 0; i < STARTING_ROW.length; i++) { chessSquares[i][0].setIcon(new ImageIcon(pieceImages[1][STARTING_ROW[i]])); } } } public static void main(String[] args) { Runnable r = new Runnable() { public void run() { //make a chess interface and make sure it can exit chessInterface ci = new chessInterface(); JFrame window = new JFrame("Assignment 1.1"); window.add(ci.getGui()); window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); //these two lines are the lines in charge of the gui display //without them the gui will not appear window.pack(); window.setVisible(true); } }; SwingUtilities.invokeLater(r); } } <file_sep>/SVN_Parse.py from models.Commit import Commit from models.Entry import Entry import xmltodict import os import collections def get_xml(file_path): """ Opens a file and gets the contained xml :param file_path: The path to the file :return xml: A dictionary that is passed through xmltodict. Used to make it feel like working with json """ os.chdir('C:\Users\Howard\PycharmProjects\web_portfolio\static') xml_file = open(file_path, 'r') xml = xml_file.read() xml_file.close() xml = xmltodict.parse(xml) return xml def get_projects(): """ A function that gets the projects done :return: make_dictionary_log(list_parse) See function below """ svn_log = get_xml('svn_log.xml') list_log = parse_log(svn_log['log']['logentry']) svn_list = get_xml('svn_list.xml') list_parse = parse_list(svn_list['lists']['list']['entry']) set_file_msg(list_log, list_parse) set_all_commits(list_log, list_parse) return make_dictionary_log(list_parse) def parse_log(svn_log): """ A function that parses a dict of svn_log and returns a list of commits :param svn_log: A list representing an XML log of svn_log.xml :return: commits: A list of dicts corresponding to commits with revision, author, dates, paths, msgs filled out """ commits = [] for dict in svn_log: dict_commit = [] for key, value in dict.items(): dict_commit.append(value) commits.append(Commit(dict_commit[0], dict_commit[1], dict_commit[2], dict_commit[3], dict_commit[4])) return commits def parse_list(svn_list): """ A function that parses a dict of svn_list and returns a list of entries :param svn_list: A list representing an XML log of svn_list.xml :return: commits: A list of dicts corresponding to commits with kind, name and commit filled out """ entries = [] for dict in svn_list: dict_entry = [] for key, value in dict.items(): dict_entry.append(value) if len(dict_entry) == 3: entries.append(Entry(dict_entry[0], dict_entry[1], 0, dict_entry[2])) elif len(dict_entry) == 4: entries.append(Entry(dict_entry[0], dict_entry[1], dict_entry[2], dict_entry[3])) return entries def set_file_msg(list_log, list_parse): """ Set messages in the files by finding the right message to put in there (Most recent) :param list_log: A list of logs that contains the messages that you want to get :param list_parse: The list of files that need to have their messages set :return: """ for entry in list_parse: for log in list_log: if entry.commit['@revision'] == log.revision and entry.commit['author'] == log.author and entry.commit['date'] == log.date: entry.msg = log.msg def set_all_commits(list_log, list_parse): """ Set commits in the files by appending to a list in order of commit :param list_log: A list of logs that contains the commits that you want to get :param list_parse: The list of files that need to have their commits set """ for entry in list_parse: for log in list_log: for files in log.paths: if files['#text'].lower() == ('/' + log.author + '/' + entry.name).lower(): entry.all_commits.append([log.revision, log.author, log.date, log.msg]) if entry.all_commits == []: entry.all_commits.append([entry.commit['@revision'], entry.commit['author'], entry.commit['date'], entry.msg]) def make_dictionary_log(list_parse): """ A function that makes a dictionary out of list_parse so its easier to work with in jinja :param list_parse: A list of set entries that must be made into a dict :return: dictionary_log a dict mapping projects to files """ dictionary_log = collections.OrderedDict() for elem in list_parse: key_dict = elem.name.split('/') if len(key_dict) == 1: dictionary_log[key_dict[0]] = [elem] else: dictionary_log[key_dict[0]].append(elem) return dictionary_log <file_sep>/static/files/assignment0/modDigitClassification.py import sys import copy import math def vectorSubtraction(list1, list2): if len(list1) != len(list2): return [-1] else: list3 = [0 for x in range(len(list1))] for i in range(len(list3)): list3[i] = list1[i] - list2[i] return list3 def vectorAddition(list1, list2): if len(list1) != len(list2): return [-1] else: list3 = [0 for x in range(len(list1))] for i in range(len(list3)): list3[i] = list1[i] + list2[i] return list3 def scalarProduct(scalingVal, list1): list2 = copy.deepcopy(list1) for i in range(len(list2)): list2[i] = list2[i] * scalingVal return list2 def dotProduct(list1, list2): if len(list1) != len(list2): return -1 else: sum = 0 for i in range(len(list1)): sum = sum + (list1[i] * list2[i]) return sum def main(): trainingLabels = [] trainingInstances = [] testLabels = [] testInstances = [] weights = {} # occurences = {} with open('traininglabels', 'r') as labels: trainingLabels = [int(x.strip('\r\n')) for x in labels.readlines()] # for i in range(len(trainingLabels)): # if int(trainingLabels[i]) not in occurences: # occurences[int(trainingLabels[i])] = 1 # else: # occurences[int(trainingLabels[i])] = occurences[trainingLabels[i]] + 1 with open('trainingimages', 'r') as images: img = [x.strip('\r\n') for x in images.readlines()] for i in range(len(img)): if i % 28 == 0: imageInstance = [] for j in range(28): for k in range(28): if img[i+j][k] == "+" or img[i+j][k] == "#": imageInstance.append(1) else: imageInstance.append(0) trainingInstances.append(imageInstance) for i in range(10): weightInstance = [] for j in range(784): #subject to change weightInstance.append(0) weights[i] = weightInstance perceptron(trainingLabels, trainingInstances, weights) with open('testlabels', 'r') as labels: testLabels = [int(x.strip('\r\n')) for x in labels.readlines()] with open('testimages', 'r') as testImages: img = [x.strip('\r\n') for x in testImages.readlines()] for i in range(len(img)): if i % 28 == 0: imageInstance = [] for j in range(28): for k in range(28): if img[i+j][k] == "+" or img[i+j][k] == "#": imageInstance.append(1) else: imageInstance.append(0) testInstances.append(imageInstance) postTest = testing(weights, testInstances, testLabels) confusionMatr = confusionMatrix(postTest, testLabels) sum = 0 for i in range(10): sum = sum + confusionMatr[i][i] print(sum/10) for line in confusionMatr: print(line) def perceptron(trainingLabels, trainingInstances, weights): # subject to change for epoch in range(1): alpha = float(1)/float(1 + epoch) for i in range(len(trainingLabels)): classifier = [] for j in range(10): classifier.append(dotProduct(weights[j], trainingInstances[i])) c = -1 max = -1 for j in range(10): if classifier[j] > max: c = j max = classifier[j] if c != trainingLabels[i]: weights[c] = vectorSubtraction(weights[c], scalarProduct(alpha, trainingInstances[i])) weights[trainingLabels[i]] = vectorAddition(weights[trainingLabels[i]], scalarProduct(alpha, trainingInstances[i])) # checkAccuracy(trainingLabels, trainingInstances, weights) def testing(weights, testInstances, testLabels): postTest = [] for i in range(len(testInstances)): d = [] for j in range(10): d.append(dotProduct(weights[j], testInstances[i])) postTest.append(d) return postTest def confusionMatrix(postTest, testLabels): confusionMatrix = [] for i in range(10): confusionMatrix.append([]) for j in range(10): confusionMatrix[i].append(0) numInstances = [0 for x in range(10)] for i in range(len(testLabels)): numInstances[testLabels[i]] = numInstances[testLabels[i]] + 1 for i in range(len(postTest)): max = -100000000 indexMax = -1 for j in range(len(postTest[i])): if max < postTest[i][j]: max = postTest[i][j] indexMax = j confusionMatrix[testLabels[i]][indexMax] = confusionMatrix[testLabels[i]][indexMax] + 1 for i in range(10): for j in range(10): if numInstances[i] != 0: confusionMatrix[i][j] = float(confusionMatrix[i][j])/float(numInstances[i]) return confusionMatrix def checkAccuracy(trainingLabels, trainingInstances, weights): postTest = testing(weights, trainingInstances, trainingLabels) confusionMatr = confusionMatrix(postTest, trainingLabels) sum = 0 accuracy = "" for i in range(10): sum = sum + confusionMatr[i][i] accuracy = accuracy + str(i) + ": " + str(confusionMatr[i][i]) + " " accuracy = accuracy + "average: " + str(sum/10) print(accuracy) main() <file_sep>/static/files/assignment1.0/src/knight.java /** * Created by Howard on 2/3/2016. */ public class knight extends chessPiece { public knight(int x, int y, boolean white) { super(x, y, white); } /* this function makes sure that a knights movement is valid The knight is the only piece that can jump over another piece As such, the only restriction on it is that it's movement is an L and that he can't take pieces of his own color */ @Override public boolean isValid(int fromX, int fromY, int toX, int toY) { if(fromX == toX && fromY == toY) { return false; } if(toX < 0 || toX > 7 || toY < 0 || toY > 7) { return false; } if((Math.abs(toX - fromX) == 2 && Math.abs(toY - fromY) == 1) || (Math.abs(toX - fromX) == 1 && Math.abs(toY - fromY) == 2)) { if(chessGame.board.accessSquare(toX,toY).isOccupied() && chessGame.board.accessSquare(toX,toY).occupiedBy().getColor() != super.getColor()) { return true; } else if(!chessGame.board.accessSquare(toX,toY).isOccupied()) { return true; } else { return false; } } else { return false; } } } <file_sep>/static/files/assignment2.0/test_graph.rb require_relative "graph_node" require "test/unit" require 'json' require './graph' # A test class for graph class # NOTE: A lot of the logic from the class is duplicated since in the class, we dont actually return anything ever # making this hard to test since we just print usually # Hub Cities, get_cities and get_specific_city_info are not tested since they all directly work with stdout class TestGraph < Test::Unit::TestCase # A test for flight distance that tests the min, max and avg def test_flightDist file = File.read('map_data.json') data_hash = JSON.parse(file) @graph = Graph.new() @graph.add_cities(data_hash['metros']) @graph.add_edges(data_hash['routes']) @edges = @graph.get_edge @cities = @graph.get_city # Find the max and the edge corresponding to it longest_edge = @edges[0] for i in 1..@edges.length - 1 do if longest_edge.get_distance < @edges[i].get_distance longest_edge = @edges[i] end end assert_equal(longest_edge.get_ports[0], 'SYD') assert_equal(longest_edge.get_ports[1], 'LAX') assert_equal(longest_edge.get_distance, 12051) # Find the min and the edge corresponding to it shortest_edge = @edges[0] for i in 1..@edges.length - 1 do if shortest_edge.get_distance > @edges[i].get_distance shortest_edge = @edges[i] end end assert_equal(shortest_edge.get_ports[0], 'WAS') assert_equal(shortest_edge.get_ports[1], 'NYC') assert_equal(shortest_edge.get_distance, 334) # Find the avg distance avg = 0 for i in 0..@edges.length - 1 do avg += @edges[i].get_distance end avg /= @edges.length assert_equal(avg, 2300) end # A test for population that tests the min, max and avg def test_population file = File.read('map_data.json') data_hash = JSON.parse(file) @graph = Graph.new() @graph.add_cities(data_hash['metros']) @graph.add_edges(data_hash['routes']) @edges = @graph.get_edge @cities = @graph.get_city #find the max population and the city corresponding to it largest_pop_city = @cities[0] for i in 1..@cities.length - 1 do if largest_pop_city.get_population < @cities[i].get_population largest_pop_city = @cities[i] end end assert_equal(largest_pop_city.get_name, 'Tokyo') assert_equal(largest_pop_city.get_population, 34000000) #find the min population and the city corresponding to it smallest_pop_city = @cities[0] for i in 1..@cities.length - 1 do if smallest_pop_city.get_population > @cities[i].get_population smallest_pop_city = @cities[i] end end assert_equal(smallest_pop_city.get_name, 'Essen') assert_equal(smallest_pop_city.get_population, 589900) #find the avg population avg = 0 for i in 0..@cities.length - 1 do avg += @cities[i].get_population end avg /= @cities.length assert_equal(avg, 11796143) end #A test for continents that only tests australia def testContinents file = File.read('map_data.json') data_hash = JSON.parse(file) @graph = Graph.new() @graph.add_cities(data_hash['metros']) @graph.add_edges(data_hash['routes']) @edges = @graph.get_edge @cities = @graph.get_city continents = Hash.new() for i in 0..@cities.length - 1 do if continents.has_key?(@cities[i].get_continent) then continents[@cities[i].get_continent].push(@cities[i].get_name) else continents[@cities[i].get_continent] = [@cities[i].get_name] end end assert_equal(continents['Australia'], ['Sydney']) end end<file_sep>/static/files/assignment2.1/graph_node.rb # Created by Howard on 2/24/2016 # a class that city is inherited from for cities. Used for Djikstra's algorithm class GraphNode # basically never called def initialize(node) end # In Djikstras algorithm, we set the distance to be infinity and prev to be null at first def init_djikstra @distance = Float::INFINITY @prev = nil end # getters and setters def set_distance(distance) @distance = distance end def set_prev(node) @prev = node end def get_distance return @distance end def get_prev return @prev end end<file_sep>/static/files/assignment1.2/src/Models/knight.java package Models; /** * Created by Howard on 2/3/2016. * A Knight class for assignment 1.0 that implements the movement of the knight piece in chess */ public class knight extends chessPiece { //a constructor for a knight piece public knight(boolean white) { super(white); } /* this function makes sure that a knights movement is valid The knight is the only piece that can jump over another piece As such, the only restriction on it is that it's movement is an L and that he can't take pieces of his own color */ @Override public boolean isValid(int fromX, int fromY, int toX, int toY) { return baseTest(fromX, fromY, toX, toY) && knightMovement(fromX, fromY, toX, toY); } } <file_sep>/static/files/assignment1.2/src/Tests/chessBoardTest.java package Tests; import org.junit.Test; import Models.*; import static org.junit.Assert.*; /** * Created by Howard on 2/8/2016. * A test for a chessBoard * Although the board is relatively simple */ public class chessBoardTest { //make sure that the board works and its initialized properly @Test public void constructor() throws Exception { chessBoard board = new chessBoard(); assertNotNull(board); for(int i = 0; i < 8; i++) { for(int j = 0; j < 8; j++) { //the individual squares have to be initialized. They can't be null assertNotNull(board.accessSquare(i, j)); } } } //make sure that invalid spaces off board return null //try accessing a valid square after that and see if it returns null //lastly add a piece to the square and check if occupiedBy does not returns null @Test public void testAccessSquare() throws Exception { chessBoard board = new chessBoard(); assertEquals(board.accessSquare(-1, 0), null); assertEquals(board.accessSquare(0, -1), null); assertEquals(board.accessSquare(8, 0), null); assertEquals(board.accessSquare(0, 8), null); assertEquals(board.accessSquare(0, 0).occupiedBy(), null); pawn testPiece = new pawn(true); board.accessSquare(0, 0).addPiece(testPiece); assertNotNull(board.accessSquare(0, 0).occupiedBy()); } }<file_sep>/static/files/assignment2.0/graph_node.rb # Created by Howard on 2/24/2016 # A class that represents the graph node # This class contains the graph node which represents the city in the CS Air project # This class contains class variables code, name, country, continent, timezone, coordinates, population and region class GraphNode def initialize(node) @code = node['code'] @name = node['name'] @country = node['country'] @continent = node['continent'] @timezone = node['timezone'] @coordinates = node['coordinates'] @population = node['population'] @region = node['region'] end # Getters for the independent class variables for a specific GraphNode def get_code return @code end def get_name return @name end def get_country return @country end def get_continent return @continent end def get_timezone return @timezone end def get_coordinates return @coordinates end def get_population return @population end def get_region return @region end # Used in Part 3.2 where the user requests data about a specific city # and gets everything from the database regarding it def print_information puts "Code: #{@code}" puts "Name: #{@name}" puts "Country: #{@country}" puts "Continent: #{@continent}" puts "Time Zone: #{@timezone}" puts "Coordinates: #{@coordinates}" puts "Population: #{@population}" puts "Region #{@region}" end end<file_sep>/static/files/assignment2.1/edge.rb # Created by Howard on 2/23/2016 # A class that represents an edge # This class contains the class variables ports and length # ports represent the edges that are being connected by the edge # distance represents how long the edge is class Edge # An initialization function that takes a hashtable parsed from a JSON # The ports represent the 2 vertices that the edge connects # The distance represents the length of the edge which is required for running Djikstra's Algorithm later def initialize(node) @ports = node['ports'] @distance = node['distance'] end # Getters for the ports and distance def get_ports return @ports end def get_distance return @distance end end
7b445172d5fdd9dce1f4b8a2643ba71f41e4afe7
[ "Java", "Python", "Ruby" ]
33
Java
luohoward/web_portfolio
23f9ea0d53a79d434dceba8fc902bb2186ef6921
0090c60998847274769638a6ff367d5d8c675b69
refs/heads/main
<file_sep>// // APIService.swift // PokemonApp // // Created by <NAME> on 08/07/21. // import Foundation let baseURL : String = "https://raw.githubusercontent.com/robert-z/simple-pokemon-json-api" class APIService { func fetchPokemons(completion :@escaping ([Pokemon]) ->()){ let url:URL = URL(string:baseURL + "/master/data/pokemon.json")! URLSession.shared.dataTask(with:url) {data, _, _ in guard let data = data else { return } DispatchQueue.main.async { do{ let pokemon = try JSONDecoder().decode([Pokemon].self, from:data) print("pokemon : \(pokemon)") completion(pokemon) }catch{ print(error.localizedDescription) } } }.resume() } } <file_sep>// // Pokemon.swift // PokemonApp // // Created by <NAME> on 08/07/21. // import SwiftUI import SDWebImageSwiftUI struct PokemonCard: View { let poke : Pokemon var body: some View { ZStack(alignment: .bottom){ let urlString = URL(string: "\(baseURL)/master/public/" + poke.variations[0].image) WebImage(url: urlString).resizable() // Image("bla").resizable() .aspectRatio(contentMode: .fit) .cornerRadius(20) .shadow(radius: 20) .padding() PokemonbgText(pokemonName:poke.name) } } } struct Pokemon_Previews: PreviewProvider { static var previews: some View { PokemonCard(poke: Pokemon(name:"Pikachu", num: 1, link: "", variations: [])) } } <file_sep>// // PokemonList.swift // PokemonApp // // Created by <NAME> on 08/07/21. // import SwiftUI struct PokemonList: View { let pokemons: [Pokemon] var body: some View { List{ ForEach(pokemons){ poke in PokemonCard(poke: poke) .listRowBackground(Color.clear) } } } } struct PokemonList_Previews: PreviewProvider { static var previews: some View { PokemonList(pokemons:[]) } } <file_sep># PokemonApp # SWIFTUI and MVVM architecture <img width="428" alt="" src= "https://user-images.githubusercontent.com/8912602/124917299-457fc780-e011-11eb-9c22-f1bfabd4e333.png"> <file_sep>// // PokemonbgText.swift // PokemonApp // // Created by <NAME> on 08/07/21. // import SwiftUI struct PokemonbgText: View { let pokemonName: String var body: some View { Text(pokemonName).font(.largeTitle).fontWeight(/*@START_MENU_TOKEN@*/.bold/*@END_MENU_TOKEN@*/).multilineTextAlignment(.center).shadow(radius: 25).padding() } } struct PokemonbgText_Previews: PreviewProvider { static var previews: some View { PokemonbgText(pokemonName: "") } } <file_sep>// // File.swift // PokemonApp // // Created by <NAME> on 08/07/21. // import Foundation class PokemonViewModel: ObservableObject{ @Published var pokemons:[Pokemon]? init() { fetchPokemon() } func fetchPokemon(){ APIService().fetchPokemons{ poke in self.pokemons = poke } } } <file_sep>// // Pokemon.swift // PokemonApp // // Created by <NAME> on 08/07/21. // import Foundation struct Pokemon:Decodable, Identifiable{ var id: UUID{ get{ UUID() } } let name : String let num: Int let link:String let variations : [PokeVariation] } struct PokeVariation:Decodable { let name:String let description: String let image:String }
82574a705030e53cf9fca95ec939e7541f8b24cf
[ "Swift", "Markdown" ]
7
Swift
malisanjay5433/PokemonApp
844876806d67d341273dbecdf7a8f31129cc68aa
8125f785d7d7bd5e43e6f95448acfd8e301f669b
refs/heads/master
<file_sep>/* 88""Yb 88""Yb dP"Yb 888888 dP"Yb 88""Yb 88 dP"Yb dP""b8 88 dP 88__dP 88__dP dP Yb 88 dP Yb 88__dP 88 dP Yb dP `" 88odP 88""" 88"Yb Yb dP 88 Yb dP 88""Yb 88 .o Yb dP Yb 88"Yb 88 88 Yb YbodP 88 YbodP 88oodP 88ood8 YbodP YboodP 88 Yb ' 080 114 111 116 111 098 108 111 099 107 01010000 01110010 01101111 01110100 01101111 01000010 01101100 01101111 01100011 01101011 <EMAIL> */ var postion='all positions' var postions=['QB','RB','WR','TE','K','DEF','all positions'] var ApiUrl='/php/simple.php?url=https://172.16.31.10:4545/' var fnName = '' var playerIdInFocus, playerIdInFocusWeek; var levelOneUrl; var levelTwoUrl; var levelTwoName; var levelTwoSubhead; // Leaderboard: 0, // award: 1 var REFREASHTYPE = 0 var defaultWeek = REFREASHTYPE === 0 ? 'all weeks' : 'any week' var week=defaultWeek // var APIRunning=false var awardsCall; function getCurrentWeek(){ $.get( ApiUrl+"week", function( data ) { console.log(data) var item = JSON.stringify(data.contents) var list = JSON.parse(item) return list.week }) } function parseLevelThree(d){ //$('#fnPlayerInFocus').text(d.data[0].FIRST + " " +d.data[0].LAST + " Result: "+d.data[0].RESULT ); for (var i=0; i < d.data.length; i ++) { $('#toLeader').append("\ <div class='list-group-item btn btn-raised'>\ <div class='row-picture'>\ <img class='circle' src='https://raw.githubusercontent.com/google/material-design-icons/master/action/ios/ic_account_circle.imageset/ic_account_circle_3x.png' alt='icon'>\ </div>\ <div class='row-content'>\ <h4 class='list-group-item-heading'>\ <span id='theName'>"+d.data[i].FANTASYNAME+"</span>\ </h4>\ <p class='list-group-item-text'>Projection: "+d.data[i].PROJECTION + " Award: "+d.data[i].AWARD +"</p>\ </div>\ </div>" ); $('#loader').hide(); } } function fillLevelThree(){ $('#toLeader').empty() $('#pickers').hide(); $('#loader').show(); var outGoingUrl = ApiUrl+'fantasy/nfl/'+ playerIdInFocus + '/week/' + playerIdInFocusWeek console.log(outGoingUrl) $.ajax({ url: outGoingUrl, }).done(function(data) { var item = JSON.stringify(data.contents) var list = JSON.parse(item) parseLevelThree(list); //Back Button $("#backButton").remove(); $("#toLeader").prepend("<a href='#' id='backButton'>Back</a>"); $('#backButton').click(function(){ refillAwards(); }); }); } function parseLeaderboard(d){ for (var i in d) { $('#toLeader').append("\ <div id='fnPlayerName' class='list-group-item btn btn-raised'>\ <div class='row-picture'>\ <img class='circle' src='https://raw.githubusercontent.com/google/material-design-icons/master/action/ios/ic_account_circle.imageset/ic_account_circle_3x.png' alt='icon'>\ </div>\ <div class='row-content'><h4 class='list-group-item-heading'>\ <span id='theName'>"+d[i].name+"</span>\ </h4><p id='score' class='list-group-item-text'>"+d[i].score+"</p></h4>\ </div>\ </div>" ); } $('#loader').hide(); } function removeSpaces(str){ return str.replace(/\s/g, "") } function replaceAmp(str){ return str.replace( /&/g,"%26"); } function getLeaderBoard(ur){ console.log(ur); $('#toLeader').empty() $('#loader').show(); $.ajax({ url: ur, }).done(function(data) { var item = JSON.stringify(data.contents) var list = JSON.parse(item) parseLeaderboard(list); }); } function parseAward(d){ for (var i=0; i < d.data.length; i ++) { $('#toLeader').append("\ <div id='pnlPlayerName' class='list-group-item btn btn-raised' alt='"+d.data[i].PLAYERID +"' week='"+ d.data[i].WEEK +"' team='"+d.data[i].TEAM + "' >\ <div class='row-picture'>\ <img class='circle' src='/artwork/inhouse/teams/"+ d.data[i].TEAM +".PNG' alt='icon'>\ </div>\ <div class='row-content'>\ <h4 class='list-group-item-heading'>\ <span id='theName'>"+d.data[i].FIRSTNAME+ " " +d.data[i].LASTNAME+ " Week " + d.data[i].WEEK + "</span>\ </h4>\ <p class='list-group-item-text'>Projection: "+d.data[i].PROJECTION + " Result: "+d.data[i].RESULT +"</p>\ <p id='playerHelper' pos='"+ d.data[i].POS+"' res='"+d.data[i].RESULT+"' >Award: "+d.data[i].AWARD+"</p>\ </div>\ </div>" ); } $('#loader').hide(); } function checkDefaultWeek(){ REFREASHTYPE === 0 ? defaultWeek = 'all weeks' : defaultWeek = 'any week' } function resetPickers(){ fillPickers(); } function refillAwards(){ var changeName = $('#theName',this).text() $('#fnPlayerInFocus').text(levelTwoName ); $('#headerSubText').text(levelTwoSubhead); $('#toLeader').empty(); $('#loader').show(); // awards?week=16&position=TE $.ajax({ url: awardsCall, }).done(function(data) { var item = JSON.stringify(data.contents) var list = JSON.parse(item) parseAward(list); //Back Button $("#backButton").remove(); $("#toLeader").prepend("<a href='#' id='backButton'>Back</a>"); $('#backButton').click(function(){ fillLeaderboard(); fillPickers(); //fillPickers(); }); }) } function fillPickers(){ $("#backButton").remove(); checkDefaultWeek(); $('#selWeek').empty(); $('#selPos').empty(); for (var i=1; i<=16;i++ ){ if (i !== 16){ $('#selWeek').append('<option>'+i+'</option>') }else{ $('#selWeek').append('<option>'+defaultWeek+'</option>') } } // for (var i=0; i < postions.length;i++){ // $('#selPos').append('<option>'+postions[i]+'</option>') // } $('#selPos').val('all positions'); $('#selWeek').val(defaultWeek); week=defaultWeek console.log(defaultWeek) postion='all positions' // resetPickers(); } function setLeaderbordUrl(){ var tr = $('#selPos').val(); postion = $('#selPos').val(); week = $('#selWeek').val(); console.log(tr) if (REFREASHTYPE === 0 ){ if( tr === "all positions" ){ if ( week === "all weeks") awardsCall = ApiUrl + 'fantasy/leaders' else awardsCall = ApiUrl + 'fantasy/leaders?week=' + week } else { awardsCall = ApiUrl + 'fantasy/leaders?week=' + week +'&position=' + postion } }else{ if ( week === "all weeks") awardsCall = ApiUrl + 'fantasy/players/' + fnName + '/awards' else awardsCall = ApiUrl + 'fantasy/players/' + fnName + '/awards?week=' + week } REFREASHTYPE === 0 ? getLeaderBoard(awardsCall) : refillAwards() } function fillLeaderboard(){ $('#fnPlayerInFocus').empty(); $('#headerSubText').empty(); getLeaderBoard(levelOneUrl); } $( document ).ready(function(){ levelOneUrl = ApiUrl+'fantasy/leaders?position='+postion+'&week='+week; $('#toLeader').btsListFilter('#searchinput', {itemChild: 'span'}); fillPickers(); fillLeaderboard(); $('#selWeek').change(function(){ week = $(this).val(); postion = $( '#selPos' ).val(); REFREASHTYPE === 0 ? awardsCall = ApiUrl + 'fantasy/leaders?week=' + week //+'&position=' + postion : awardsCall = ApiUrl + 'fantasy/players/' + fnName + '/awards?week=' + week //'/awards?position=' + postion + '&week=' + week REFREASHTYPE === 0 ? setLeaderbordUrl() : refillAwards() ; }); $('#selPos').change(function(){ postion = $( this ).val(); week = $('#selWeek').val(); REFREASHTYPE === 0 ? awardsCall = ApiUrl + 'fantasy/leaders?week=' + week +'&position=' + postion : awardsCall = ApiUrl + 'fantasy/players/' + fnName + '/awards?position=' + postion + '&week=' + week REFREASHTYPE === 0 ? setLeaderbordUrl() : refillAwards(); }) $('#toLeader').on('click','#pnlPlayerName',function() { playerIdInFocus = $(this).attr('alt') playerIdInFocusWeek = $(this).attr('week') $('#fnPlayerInFocus').text('Player Name: ' + $('#theName',this).text() + ' ('+ $('#playerHelper',this).attr('pos') +") "+ $(this).attr('team') ); $('#headerSubText').text("Week: " + playerIdInFocusWeek + " Fantasy Points: " + $('#playerHelper',this).attr('res') ); $('#toLeader').empty(); fillLevelThree(); }); $('#toLeader').on('click','#fnPlayerName',function() { fnName = $('#theName',this).text(); levelTwoName = 'Fantasy Name: ' + fnName; levelTwoSubhead = "Balance: " + $('#score',this).text(); REFREASHTYPE = 1; // resetPickers(); postion = $( '#selPos' ).val(); week = $('#selWeek').val(); awardsCall = ApiUrl + 'fantasy/players/' + fnName + '/awards?week=' + week //+'&position=' + postion; setLeaderbordUrl(); refillAwards(); }); }); <file_sep>/* * 88""Yb 88""Yb dP"Yb 888888 dP"Yb 88""Yb 88 dP"Yb dP""b8 88 dP * 88__dP 88__dP dP Yb 88 dP Yb 88__dP 88 dP Yb dP `" 88odP * 88""" 88"Yb Yb dP 88 Yb dP 88""Yb 88 .o Yb dP Yb 88"Yb * 88 88 Yb YbodP 88 YbodP 88oodP 88ood8 YbodP YboodP 88 Yb ' * 080 114 111 116 111 098 108 111 099 107 * 01010000 01110010 01101111 01110100 01101111 01000010 01101100 01101111 01100011 01101011 * * <EMAIL> * * If you are reading this please feel free to use this in your own project * But if you could give back (pull requests ect) to protoblock that would * be great ! */ /*! Set up the folder or the link to the store where the app is hosted at. FIXME more ssl and security needs to go here. */ function setDownloadLink(){ var OS=getOS(); var CPU=getCPU(); var folder,distro; // for non linux based os if(OS === "MacOS" || OS === "Windows") { folder="/Downloads/"+OS+"/"+CPU+"/protoblock."+setEx() } else if (OS === "Android") { folder = "https://play.google.com/store/apps/details?id=org.proto.protoblock" } // else if(OS === "MacOS") // { // if ( getMacVersion() === "Supported" ){ // distro=getPackageManger(); // folder="/Downloads/"+OS+"/"+CPU+"/"+distro+"/protoblock."+distro // }else{ // folder="/Old%20OSX%20Version"; // } // } // buggy else if ( OS === "iPhone" || OS === "iPad" ) { folder="https://itunes.apple.com/us/app/protoblock-2016/id1133758199?ls=1&mt=8" } else { distro=getPackageManger(); folder="/Downloads/"+OS+"/"+CPU+"/"+distro+"/protoblock."+distro } return folder; } function getMacVersion(){ var t = navigator.appVersion; var tl = t.substring(t.lastIndexOf("OS X")+4); var te = tl.substring(0,tl.indexOf(")")).replace(/_/g,"") ; var tle = te.substring(0,5); var pI = parseInt( tle , 10 ); osxVersion = pI if( pI >= 1007 ) { return "Supported" } else { return "UnSupported" } } /*! Set MISC buttons and Text after all things are loaded and we have all the information that is needed */ function setButtons(stringer){ var DLLInk=setDownloadLink(); $('#test').text('Download Protoblock for ' + stringer) if ( stringer === "Android") { $('#test').attr("href","https://play.google.com/store/apps/details?id=org.proto.protoblock"); } else if ( stringer === "iPhone" || stringer === "iPad" ) { DLLInk = "https://itunes.apple.com/us/app/protoblock-2016/id1133758199" $('#test').attr("href","https://itunes.apple.com/us/app/protoblock-2016/id1133758199"); } else { $('#test').attr("href",DLLInk); } $('#theOS').text('Download Protoblock for ' + stringer) $('#theOS').attr("href",DLLInk) } /* Simple function to open up the error dialog if there is no OS support */ function openErrorModal(){ $("#otherDL").modal({ backdrop: 'static', keyboard: false }); } /* Returns the Operating stystems file exstention type */ function setEx(){ var ex; switch(getOS()){ case "Windows": ex = "exe" break case "MacOS": ex = "dmg" break; case "Android": ex = "apk" break; case "iPhone" || "iPad": ex = "app" break; } return ex; } /* Returns the Operating system string */ function getOS(){ var OSName="Unknown OS"; if (navigator.appVersion.indexOf("Win")!=-1) OSName="Windows"; if (navigator.appVersion.indexOf("Mac")!=-1) OSName="MacOS"; if (navigator.appVersion.indexOf("X11")!=-1) OSName="Unix"; if (navigator.appVersion.indexOf("Linux")!=-1) OSName="Linux"; if( navigator.userAgent.indexOf("Android")!=-1) OSName="Android"; if( navigator.userAgent.indexOf("iPhone")!=-1)OSName="iPhone"; if(navigator.userAgent.indexOf("iPad")!=-1)OSName="iPad"; if(navigator.userAgent.indexOf("iPod")!=-1)OSName="iPod"; if(navigator.userAgent.indexOf("BlackBerry")!=-1)OSName="BlackBerry"; return OSName; } /* Returns the arch for the os in focus */ function getCPU(){ var arch; switch(window.navigator.platform){ case "MacIntel": arch="64"; break; case "Win16": arch="32"; break; case "Win32": arch="64"; break; case "Linux i686": arch="32"; break; case "Linux x86_64": arch="64"; break ; case "Linux armv7l": arch="arm"; break; // FIXME I have no clue what this comes back as .. Yet case "iPhone": arch="" break default : arch =window.navigator.platform break; } return arch; } /* This is for Linux systems only it returns the packagemanagement type, FIXME add in a thing for snap packages in Ubuntu */ function getPackageManger(){ var distro="Unknown" if(navigator.userAgent.indexOf("Ubuntu")!=-1)distro="deb"; if(navigator.userAgent.indexOf("ubuntu")!=-1)distro="deb"; if(navigator.userAgent.indexOf("Debian")!=-1)distro="deb"; if(navigator.userAgent.indexOf("Arch")!=-1)distro="pkgman"; if(navigator.userAgent.indexOf("Debian")!=-1)distro="deb"; if(navigator.userAgent.indexOf("CentOS")!=-1)distro="rpm"; if(navigator.userAgent.indexOf("Fedora")!=-1)distro="rpm"; if(navigator.userAgent.indexOf("Gentoo")!=-1)distro="portage"; if(navigator.userAgent.indexOf("Mint")!=-1)distro="deb"; if(navigator.userAgent.indexOf("Mandriva")!=-1)distro="rpm"; if(navigator.userAgent.indexOf("Red Hat")!=-1)distro="rpm"; if(navigator.userAgent.indexOf("SUSE")!=-1)distro="‎zypper"; if(navigator.userAgent.indexOf("Sabayon")!=-1)distro="entropy"; if(navigator.userAgent.indexOf("slax")!=-1)distro="sourceCode"; if(navigator.userAgent.indexOf("slackware")!=-1)distro="sourceCode"; return distro; } /* INIT() this is the init function that is called to start looking for Host OS things */ function init(){ var OS=getOS(); setButtons(OS); // mFile=setDownloadLink(); // var OS=getOS(); // if ( OS === "Android"){ // setButtons("Android") // } // else if(OS === "iPad" || OS === "iPhone") // { // setButtons(OS); // } // else // { // $.get(mFile) // .done(function() { // setButtons(OS) // }).fail(function() { // openErrorModal(); // }) // } // setButtons(OS); } $(document).ready(function(){ init(); // Close the error dialog and force the browser to go back to the home page. $("#errorCloseButton").click(function(){ window.location.replace("http://protoblock.com"); }); // Send the enduser over to the blog and its mailing list so that they can get updates // on mac progress $("#errorSignUp").click(function(){ window.location.replace("http://blog.protoblock.com/2016/07/08/iphone-and-ipad-updates/"); }); // close the error dialog and open the "download others" dialog $("#errorToggle").click(function(){ $("#errorPopup").modal('toggle'); $("#otherDL").modal('show'); }); }); <file_sep><?PHP // Change these configuration options if needed, see above descriptions for info. $enable_jsonp = false; $enable_native = false; $valid_url_regex = '/.*/'; $url = $_GET['url']; // stupid encode bug $url = str_replace( " " , "%20", $url); // $url = str_replace( "&", "%26" , $url); if ( !$url ) { // Passed url not specified. $contents = 'ERROR: url not specified'; $status = array( 'http_code' => 'ERROR' ); } else if ( !preg_match( $valid_url_regex, $url ) ) { // Passed url doesn't match $valid_url_regex. $contents = 'ERROR: invalid url'; $status = array( 'http_code' => 'ERROR' ); } else { $ch = curl_init( $url ); if ( strtolower($_SERVER['REQUEST_METHOD']) == 'post' ) { curl_setopt( $ch, CURLOPT_POST, true ); curl_setopt( $ch, CURLOPT_POSTFIELDS, $_POST ); } if ( $_GET['send_cookies'] ) { $cookie = array(); foreach ( $_COOKIE as $key => $value ) { $cookie[] = $key . '=' . $value; } if ( $_GET['send_session'] ) { $cookie[] = SID; } $cookie = implode( '; ', $cookie ); curl_setopt( $ch, CURLOPT_COOKIE, $cookie ); } curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, true ); curl_setopt( $ch, CURLOPT_HEADER, true ); curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true ); //have to add this as trading football is not trading.football any more curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); // curl_setopt( $ch, CURLOPT_FOLLOWLOCATION ,true); // curl_setopt( $ch, CURLOPT_USERAGENT ,"spider"); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // curl_setopt($ch, CURLOPT_VERBOSE, TRUE); curl_setopt( $ch, CURLOPT_USERAGENT, $_GET['user_agent'] ? $_GET['user_agent'] : $_SERVER['HTTP_USER_AGENT'] ); list( $header, $contents ) = preg_split( '/([\r\n][\r\n])\\1/', curl_exec( $ch ), 2 ); $status = curl_getinfo( $ch ); // Debug // printf( $url ); // printf("\n"); // print curl_error($ch); curl_close( $ch ); } // Split header text into an array. $header_text = preg_split( '/[\r\n]+/', $header ); if ( $_GET['mode'] == 'native' ) { if ( !$enable_native ) { $contents = 'ERROR: invalid mode'; $status = array( 'http_code' => 'ERROR' ); } // Propagate headers to response. foreach ( $header_text as $header ) { if ( preg_match( '/^(?:Content-Type|Content-Language|Set-Cookie):/i', $header ) ) { header( $header ); } } print $contents; print 'head' + $header; } else { // $data will be serialized into JSON data. $data = array(); // Propagate all HTTP headers into the JSON data object. if ( $_GET['full_headers'] ) { $data['headers'] = array(); foreach ( $header_text as $header ) { preg_match( '/^(.+?):\s+(.*)$/', $header, $matches ); if ( $matches ) { $data['headers'][ $matches[1] ] = $matches[2]; } } } // Propagate all cURL request / response info to the JSON data object. if ( $_GET['full_status'] ) { $data['status'] = $status; } else { $data['status'] = array(); $data['status']['http_code'] = $status['http_code']; } // Set the JSON data object contents, decoding it from JSON if possible. $decoded_json = json_decode( $contents ); $data['contents'] = $decoded_json ? $decoded_json : $contents; // Generate appropriate content-type header. $is_xhr = strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest'; header( 'Content-type: application/' . ( $is_xhr ? 'json' : 'x-javascript' ) ); // Get JSONP callback. $jsonp_callback = $enable_jsonp && isset($_GET['callback']) ? $_GET['callback'] : null; // Generate JSON/JSONP string $json = json_encode( $data ); print $jsonp_callback ? "$jsonp_callback($json)" : $json; } ?> <file_sep>$(document).ready(function(){ $('#pb-navbtn').click(function(){ $(this).toggleClass('open'); }); });<file_sep>/* 88""Yb 88""Yb dP"Yb 888888 dP"Yb 88""Yb 88 dP"Yb dP""b8 88 dP 88__dP 88__dP dP Yb 88 dP Yb 88__dP 88 dP Yb dP `" 88odP 88""" 88"Yb Yb dP 88 Yb dP 88""Yb 88 .o Yb dP Yb 88"Yb 88 88 Yb YbodP 88 YbodP 88oodP 88ood8 YbodP YboodP 88 Yb ' 080 114 111 116 111 098 108 111 099 107 01010000 01110010 01101111 01110100 01101111 01000010 01101100 01101111 01100011 01101011 <EMAIL> */ var postion='all positions' var postions=['QB','RB','WR','TE','K','DEF','all positions'] var ApiUrl='/php/simple.php?url=https://172.16.58.3:4545/' var playerInView var isFirst=true; var $_GET = {}; document.location.search.replace(/\??(?:([^=]+)=([^&]*)&?)/g, function () { function decode(s) { return decodeURIComponent(s.split("+").join(" ")); } $_GET[decode(arguments[1])] = decode(arguments[2]); }); function toJSDate (dateTime) { console.log(dateTime); var dateTime = dateTime.substring(0,dateTime.lastIndexOf('.')); var dateTime = dateTime.split("T"); var date = dateTime[0].split("-"); var time = dateTime[1].split(":"); // console.log(dateTime); // console.log(date); // console.log(time); //(year, month, day, hours, minutes, seconds, milliseconds) // var jsDate = new Date(date[0], date[1], date[2], time[0], time[1], time[2], 0); // jsDate = new Date(dateTime) // console.log(jsDate); //return jsDate.toLocaleDateString() + " " + jsDate.toLocaleTimeString(); return date[1] / 1 + "/" + date[2]; // return jsDate.toString(); } function parseTheTicks(d){ var priceSet = []; var ticSet = []; for (var i = 0; i < d.length; i++) { var dd = d[i].tictime ticSet.push(toJSDate(dd)) priceSet.push(d[i].price) } var lineChartData = { labels: ticSet, datasets: [{ label: "My First dataset", fillColor: "rgba(220,220,220,0.2)", strokeColor: "rgba(220,220,220,1)", pointColor: "rgba(220,220,220,1)", pointStrokeColor: "#fff", pointHighlightFill: "#fff", pointHighlightStroke: "rgba(220,220,220,1)", data: priceSet //[randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor()] } //, // { // label: "My Second dataset", // fillColor: "rgba(151,187,205,0.2)", // strokeColor: "rgba(151,187,205,1)", // pointColor: "rgba(151,187,205,1)", // pointStrokeColor: "#fff", // pointHighlightFill: "#fff", // pointHighlightStroke: "rgba(151,187,205,1)", // data: priceSet // //[randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor()] // } ] } $("#canvas").remove(); $("#chartContainer").append("<canvas style='background: rgb(16, 53, 88) ;width:100%' id='canvas' ></canvas>"); var ctx = document.getElementById("canvas").getContext("2d"); window.myLine = new Chart(ctx).Line(lineChartData, { animation: true, animationEasing: "easeOutQuint", scaleGridLineColor: "rgba(255,255,255,.5)", scaleLineColor: "rgba(255,255,255,.8)", scaleFontColor: "rgba(255,255,255,.7)", responsive: true, maintainAspectRatio: true }); } function fillChart(){ var outgoingWeekUrl = ApiUrl+"week"; $.ajax({ url: outgoingWeekUrl, }).done(function(data) { var weekItem = JSON.stringify(data.contents) var weekList = JSON.parse(weekItem) var outGoingUrl = ApiUrl+'ticks/'+playerInView+'/week/'+weekList.week; //console.log(outGoingUrl); $.ajax({ url: outGoingUrl, }).done(function(data) { var item = JSON.stringify(data.contents) var list = JSON.parse(item) parseTheTicks(list); }); }); } function parseRight(d){ // fill the right table $('#upsideRow').append ( "<tr><td>" + d[0].bidsize + "</td><td>" + d[0].bid + "</td><td>" + d[0].ask + "</td><td>" + d[0].asksize + "</td><td>" + d[0].last + "</td><td>" + d[0].lastsize + "</td></tr>" ) $('#volHolder').append("<h3 style='color:#333!important; text-align: center;'><b>Volume: </b>" + d[0].volume + "<h3>") $('#openHolder').append("<h3 style='color:#333!important; text-align: center;'><b>Move from open: </b>"+ d[0].change + "<h3>") $('#resultsHolder').append("<h3 style='color:#333!important; text-align: center;'><b>" + (d[0].symbol.slice(-1) == "s" ? ( "20" + d[0].symbol.slice(-3,-1) + " Total ") : ("Week " + d[0].symbol.slice(-1) ) + "Fantasy Points:</b> "+ d[0].price + "<h3>") } function fillRight(){ $('#upsideRow').empty(); $('#volHolder').empty(); $('#openHolder').empty(); $('#resultsHolder').empty(); var outGoingUrl = ApiUrl+'l1snap/' + playerInView $.ajax({ url: outGoingUrl, }).done(function(data) { var item = JSON.stringify(data.contents) var list = JSON.parse(item) parseRight(list); fillChart(); }); } function parseLeftTable(d){ if (isFirst===true && !$_GET['symbol']){ var team = d[0].team if ( team === "") team = "FA" playerInView = d[0].symbol $('#rightTitle').append("\ <h2 style='color:#333!important; text-align: center;'><b>" + d[0].firstname + " " + d[0].lastname + " (" + team + ", " + d[0].pos + ")" + " </b></h2>") } // $('#upOrDown').append("\ // \ // \ // ") if (isFirst && !$_GET['symbol']) { fillRight(); } for (var i=0; i < d.length; i ++) { var team = d[i].team if ( team == "") team = "FA" if ($_GET['symbol'] == d[i].symbol && isFirst){ $('#rightTitle').append("\ <h2 style='color:#333!important; text-align: center;'><b>" + d[i].firstname + " " + d[i].lastname + " (" + team + ", " + d[i].pos + ")" + " </b></h2>"); } $('#leftTable').append("\ <tr id='playerToFocus' alt='" +d[i].symbol+ "'>\ <td id='firstRowPlayer' alt='"+d[i].firstname + " " + d[i].lastname + " (" + team + ", " + d[i].pos + ")" +"'>"+ d[i].firstname + " " + d[i].lastname + " ( " + team + ", " + d[i].pos + " ) </td>\ <td>"+ d[i].symbol+" </td>\ <td>"+ d[i].last+" </td>\ <td>"+ d[i].volume+" </td>\ <td>"+ d[i].change+" </td>\ </td>\ " ); } $("#upSideTable").tablesorter(); $("#upSideTable th").addClass("headerSortUp"); $("#upSideTable th").addClass("headerSortDown"); } function fillLeftTable(){ $('#leftTable').empty() var outGoingUrl = ApiUrl+'playerquotes' $.ajax({ url: outGoingUrl, }).done(function(data) { var item = JSON.stringify(data.contents) var list = JSON.parse(item) console.log(list) parseLeftTable(list); }); } // https://172.16.58.3:4545/ playerquotes $( document ).ready(function(){ $('#leftTable').on('click','#playerToFocus',function() { isFirst=false; $('#rightTitle').empty(); playerInView = $(this).attr('alt'); // console.log( $('#firstRowPlayer' ,this).attr( 'alt' ) ); var playerAtGlance = $('#firstRowPlayer' ,this).attr( 'alt' ) $('#rightTitle').append("\ <h2 style='color:#333!important; text-align: center;'><b>" + playerAtGlance + " </b></h2>"); // console.log(playerInView); fillRight(); // $('#leftTable').empty() /*var outGoingUrl = ApiUrl+'playerquotes' $.ajax({ url: outGoingUrl, }).done(function(data) { var item = JSON.stringify(data.contents) var list = JSON.parse(item) parseLeftTable(list); });*/ }); fillLeftTable(); if ($_GET['symbol']){ playerInView = $_GET['symbol']; fillRight(); } });
c5ee8c5f745214763f3747fee2049e8353d52d08
[ "JavaScript", "PHP" ]
5
JavaScript
protoblock/website
a4493a66da6797a7aec221fd6de9175425d7be73
e072de79b681329b4ead3d8a336d374af0014092